From 316640aefaead16724f95d96a10b69eeca60a67b Mon Sep 17 00:00:00 2001 From: Feufochmar Date: Sat, 26 Oct 2019 11:50:17 +0200 Subject: [PATCH] Add natures.json --- README.md | 6 ++++-- natures.json | 22 ++++++++++++++++++++++ 2 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 natures.json diff --git a/README.md b/README.md index f82420c..4db49aa 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/natures.json b/natures.json new file mode 100644 index 0000000..7160ad7 --- /dev/null +++ b/natures.json @@ -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"] +}