Dictator Brown sounds like some bad ass corporate type who is developing bioweapons and losses hies temper with easy.
So, Levi, is this thing just putting together strings, or are you putting together several attributes, and concatenating a string from these attributes to give a name, while also generating things like stats and abilitys?
I've got a mad-libs sort of thing going. Villains get random powers, and those powers contain a core word. For super-strength, my coreword is strength.
strength has the following words associated:
nouns: muscle,strength,arm,fist
adjectives: big,huge,giant,strong,mighty,uber
persons:man,bodybuilder,monster
My problem is that this isn't a lot of variety in the names from just that, so I also have a stock list of nouns/adjectives/persons/colours. Unfortunately my stock list is much bigger than the tiny list I think up when I make a power, so statistically those strength related terms don't really show up that often.
Probably a better way of doing it is to tell it to specially choose at least one term from the my strength terms when generating the name, but I'm running out of time to program things like that.
My madlibs are kind of neat though, here are my madlibs for generating villain names:
#n: noun
#p: Person
#adj: adjective
#c: color
#To put normal text, just preface with a colon. So "The " would be ':The '
libs = [['n',': ','p'], #Noun-Man
['p',': ','n'],
['n','n'],
[':The ', 'n','n'],
[':The ','n'],
[':The ','adj',': ','n'],
[':The ','adj',': ','p'],
[':The ','c',': ','p'],
[':The ','c',': ','n'],
['adj',': ','n'],
['adj',': ','p'],
['p',': of the ','adj',': ','n'],
['p',': of the ','c',': ','n'],
['c',': ','n'],
['c',': ','p'],
['p',': ','c']
]
My game is currently playable, but I still have a lot of details to do and I'm not sure how much I can fit in by the end of tuesday.
Things missing so far:
- Lots of skills
- Lots of powers
- Examining a square
- Catchphrases
Also, part way through I realized a major flaw in this game. You don't actually play any of the heroes, they move around by themselves. As the leader "Dr Brain" you can telepathically give orders, but that is about it. I kind of feel bad about that, but oh well. I'll see if I can figure out a way to make it more interesting.