Skip to main content

Vermin.

Some of the new small monsters.

Every RPG has different stages of character development, or acts;
  • Act I the noobs. 
  • Act II the experienced party. 
  • Act III the epic characters.
  • Act IV the demigods.
My own favorite stage is the first one. Everything can be dangerous to your party, every piece of treasure is potentially useful, every roleplaying quest seems worth doing just to try and grab some XP without fighting.

After that the experienced party part is still pretty fun, as you try to tweak your characters' skills and equipment, trying to get the most from your team or single character if you're playing a solo game.

Epic characters are only fun if you got them to that point yourself. Being dumped in to a campaign with a pre-written high level character is a pain (There are so many things about the character that just don't fit your "style") and even so I often end up restarting once I get to this point just to see if I can do "better" at making my characters now I understand the game mechanics more fully.

Beyond epic the game gets mighty boring. You've already got a couple of + 5 swords and platemail of demonic regeneration. Your character can defeat any enemy unless they have a special instant kill attack or you get hit with some kind of mind control attack which takes away control of the player, and neither of them are fun. What can you do with roleplaying? You went to the deepest level of hell last weak and killed a greater daemon. Two weeks ago you killed a minor god and stole the key to the underworld. What's left to do? Oh, the inn keeper has some rats in his cellar. Oh dear.

Anyway, what I'm aiming at with my own project is to try to keep gameplay within the first two Acts of player development. When you get to Act III it's time to hang up your sword and move on to a possible future game. Epic characters are not within the scope of this project (though there may be a future expansion to cover them).

That means I have to flesh out the early game a lot more than is usually done. Act I has to go on more than the 20 minutes it usually takes, and it has to be interesting. In so many game systems level 1 or 2 characters are so weak and defenseless it's just a matter of luck who survives or not. Most of even the lowest level monsters have a good chance of killing a level 1 character with one attack.

So I'm working on some special weak monsters for low level encounters.

These monsters are very puny. They can't really do enough damage to kill you unless you're very careless. They have a number of nuisance attacks however, such as mild venom or diseased bites. These will force the player to take steps to avoid them but won't doom the party to death if they can't get away, for example if a mob is guarding the only entrance to the next level.

You could consider these enemies to be level zero. There will be a chance of some tougher enemies spawning alone in the early levels, perhaps guarding some choice items of treasure, but mostly game play will be about trying to avoid these nasty critters until you've had a chance to get a few experience points and grab some basic gear.

Of course, this is all theory, we'll see how it turns out when the game is actually working properly. I took some giant steps towards that point today with a rewrite of some of the core code. Things are already looking a lot tidier and things are in place so that I can proceed with moving some of the functions (such as tile reveal and lighting control) off in to dedicated scripts where they won't be interfering so much with the basic workings of movement and combat.

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