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

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.

Automating Level imports from Blender to Godot

  Recently I've been making some levels in Blender an importing them into Godot. There are only about 7 or 8 shaders for each level, not counting dynamic objects which will be added later. But to improve rendering performance, it can be a good idea to split the meshes up into sections. At that point you might be faced with a list like this: Or it might be even more chaotic, if you didn't use simple names for the objects in your level. So it can take a long time to sort out all the meshes, make them unique and add textures and so on. Blender imports with simple Blender textures, or with placeholder materials. This is sometimes OK, but if your Godot shaders are very different to those used by Blender, it means applying new materials to every mesh object in the level when you import the scene. I found that during the design process, I was importing and readying a level several times before I was happy with the final layout. So at first I was wasting a lot of time. In Blender, I us

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