Skip to main content

Potions

A quick blog today to show off some of the potion models. In game they will have glow or sparkle effects, these are just the basic meshes with textures. I've made 30 unique potions for now. That should be enough to get started with. I've also set up a blend file with all I need to make more types later. The textures are just flat textures, I baked some matcap textures I designed on to a high poly version of the potion mesh.

Yummy, and not so yummy potions wait for the player to find... or make.

Because the game is going to be a pretty low magic setting, potions will be important. Don't expect to be carrying 30 potions of healing. Each potion you find will have a number of charges, or sips. The potion isn't used up until you've drained it dry.
 
For now potions are going to be assigned randomly each time you play. Don't expect a green vial to always be a healing potion, because it could change. Eventually I want to set up a fake "chemistry" for the world, where certain plants, or animal products can be combined to always get a predictable result. A character with alchemy skills will be able to research different materials to find out about their properties.
 
For example, red herbs can be mixed with green herbs to get brown herb powder, mix it with spider silk to make a potion of cure poison. I may in turn make this procedural so that it can be reset when you start a new game, so the whole "chemistry" of the world is stable for one game, but if you die and start again (not a very common thing in this game, but possible) you'll have to start your research over again.

If you like the look of the game (or if you don't) or if you have any suggestions, please post in the comments. I'd love to get some feedback about the game, even if it's just to say hurry up! :) If anyone would like to do an art asset swap, I'm also open to that if the assets are compatible.


Comments

Popular posts from this blog

Advice needed on tilesets...

I need some advice on which is the best way to handle building the dungeon. Right now I'm using prefabs for my dungeon, they have a north south east and west section for each "room": The basic tileset. This has several advantages, and also several disadvantages. Firstly I can have curved rooms, I can have tunnels and other interesting shapes. The tilesets can look quite nice with a little work. On the other hand I can't easily get the navigation data before building the map and once the map has been built I can't make changes to the layout, like having active pit traps or believable secret doors. Although the rooms are interesting, they are quite repetitive, and it takes a lot of effort to make even a few different variations. Also rooms are constrained to one size. A newer version of the tileset with a lot of variant parts for making more interesting rooms. To create a tile set is a real headache too. Planning how to lay out the UVs, trying to cra

Upstairs / Downstairs.

I've decided to make my prefabs multilevel. Later this should allow me to add pit traps and other great stuff. It also makes it easier to line up stairs so that you can exit them on the same co-ordinates where you entered them. The prefab editor is pretty much finished, it just needs some code for loading up prefabs from a saved dictionary, so that they can be checked or edited. The entries will need to be forwards compatible, so I'll be loading each tile and then translating the indexes to a new array, that way if I add extra indexes or extra info (like traps or puzzles) I'll be able to update existing prefabs to work with the new standard. Click for a video.

Video Diary 8

Things are moving along well, there's been a lot of progress on the action manager side of things. Actions have finally moved to the UI, so you can initiate actions by clicking the appropriate button. I've set up some dummy actions to show what happens visually when actions are taken, but the actual dice rolls and such are yet to be integrated. The UI objects are also being added, though some are non functional or empty at the moment. Click on the image to see this week's development video. Every time I add something big I also add about a dozen small things. Like the selection box visualization. Previously this was using render.drawline, and old fashioned Blender function which can be impossible to see at certain resolutions, or at certain frequencies. I replaced it with a function that adds planes of the right size and scale in the right location. I also made all characters a little bigger. I still need to do some work with vectors and final target locations t