Skip to main content

Social status

I'm going to be revisiting the way levels are designed, bringing along some knowledge that I picked up while doing some basic 2D tilesets for another of my projects. I'm not sure how it's going to turn out yet, but it could be much better than the current tilesets, and allow different heights in different areas of the level. I'll have to do a bit of testing to see if it works, but better to do it now before I get to much further in. This could be something that really adds to the design of the game.

Anyway, while doing that I've been working on the rule set. One thing that has opened up is the idea of professions, and what they mean to roleplaying.

In medieval times, social status was incredibly important. If a knight and his squire went on a quest, guess who would get all the credit, and guess who would do most of the work. If a man is in a battle and his bishop is there behind him, it would take complete panic for the man to run away before th bishop. If your king tells you to rid him of a troublesome priest, guess who's going to have no head in the morning.

With all that in mind, I'm working on a system of social status. There will be a range from AAA to X. (Though I'll probably augment this with an integer value to make it easier to code).



Where you are on the ladder will determine how others react to you, and to a certain extent, how you must react to others. This also fits in to the Faction idea I've been brewing up. The outlaw factions have ratings of XXX, XX or X. So an evil dragon would have more status than an evil priest within their own faction, but both would be below the merest beggar to a member of the lawful faction.

So far there are only two factions described here, Lawful and Outlaw, but later there will be other factions introduced such as revolutionaries, secret societies, cults etc... These will use a "secret" status factor, which could over ride your social status when dealing with other members of the faction. So for example, if a doctor was a member of a secret cult, he'd have to bow down to an evil priest of the cult even though the priest's position as an outlaw would usually make him less than scum.

It would be possible to disguise your social standing with the right skills, or even so, you'd be able to pose as a higher or lower member of your "band" without too much trouble when dealing with outsiders (so a beggar might pose as laborer in front of a Duke to avoid being flogged for vagrancy, or a prince could easily pretend to be a minor aristocrat when dealing with bandits if he wanted to reduce his ransom).

As usual one of the things I like about this system is how it helps to model a complex system with numbers, allowing me to open it up to procedural generation. It'll make it much easier to generate roleplay situations through the interactions of status and subordination.

It also makes some of the more interesting professions worth playing. Nominally priests are just religious scholars with few useful skills (They don't get healing spells or Undead Turning ability in this game), but their social status makes then good leaders able to bolster morale, and also good diplomats.

Later I'm going to revisit the table to define professions more clearly within the gameworld and to give starting bonuses and skills for each one.

Comments

Popular posts from this blog

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

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.

Make your game models POP with fake rim lighting.

I was watching one of my son's cartoons today and I noticed they models were using serious amounts of simulated rim lighting . Even though it wasn't a dark scene where you'd usually see such an effect, the result was actually quite effective. The white edge highlighting and ambient occluded creases give a kind of high contrast that is similar to, but different from traditional comic book ink work. I'll be honest, I don't know if there's a specific term for this effect in 3d design, since my major at university was in traditional art. I learned it as part of photography. You can find plenty of tutorials on "what is rim lighting" for photography. It basically means putting your main sources of light behind your subject so that they are lit around the edges. It can produce very arresting photographs, either with an obvious effect when used on a dark subject ... ..,or as part of a fully lit scene to add some subtle highlights. See ho