Add natures.json

This commit is contained in:
Feufochmar 2019-10-26 11:50:17 +02:00
parent 6a2b5b2647
commit 316640aefa
2 changed files with 26 additions and 2 deletions

View File

@ -151,7 +151,9 @@ For each cell:
- a `+` indicate the species are compatible but there is no known name the crossbreed
- another `string` indicate the species are compatible and the string is the name of the crossbreed
## word-lists.json
A dictionary of words classified by categories.
## word-lists.json, natures.json
Dictionaries of words classified by categories.
* `natures.json` is specific to personnality traits.
* `word-lists.json` contain generic categories used for generating various character traits.
The root is an `object` whose fields indicate the name of the category and associated values are `list` of `string` containing the different words of the category.

22
natures.json Normal file
View File

@ -0,0 +1,22 @@
{
"argumentative": ["argumentative", "antagonistic", "articulate", "garrulous", "hot-tempered", "overbearing"],
"arrogant": ["arrogant", "aloof", "elitist", "haughty", "proud", "rude"],
"capricious": ["capricious", "impulsive", "irreverent", "lusty", "madcap", "mischievous"],
"careless": ["careless", "absent-minded", "dreamy", "insensitive", "lacking common sense", "thoughtless"],
"courageous": ["courageous", "brave", "craven", "fearless", "obsequious", "shy"],
"curious": ["curious", "inquisitive", "intellectual", "keen", "perceptive", "prying"],
"exacting": ["exacting", "driven", "harsh", "perfectionist", "punctual", "stern"],
"friendly": ["friendly", "compassionate", "easy-going", "forgiving", "kind-hearted", "trusting"],
"generous": ["generous", "charitable", "extravagant", "kind", "spendthrift", "wastrel"],
"greedy": ["greedy", "avaricious", "covetous", "hard-hearted", "miserly", "thrifty"],
"moody": ["moody", "compulsive", "gloomy", "irritable", "morose", "vengeful"],
"naive": ["naive", "gullible", "hick", "honest", "innocent", "truthful"],
"opinionated": ["opinionated", "biased", "bigoted", "blustering", "hide-bound", "narrow-minded"],
"optimistic": ["optimistic", "cheerful", "diplomatic", "foolhardy", "happy", "pleasant"],
"pessimistic": ["pessimistic", "cynical", "depressing", "fatalistic", "realistic", "sarcastic"],
"quiet": ["quiet", "laconic", "mousy", "retiring", "secretive", "soft-spoken"],
"sober": ["sober", "dull", "level-headed", "ponderous", "practical", "reverent"],
"suspicious": ["suspicious", "cautious", "deceitful", "nervous", "paranoid", "scheming"],
"uncivilized": ["uncivilized", "barbaric", "boorish", "crude", "graceless", "uncultured"],
"violent": ["violent", "cruel", "immoral", "jealous", "sadistic", "warlike"]
}