57 lines
3.5 KiB
Python
57 lines
3.5 KiB
Python
"""renpy
|
|
init python:
|
|
"""
|
|
|
|
SYNONYMS = {
|
|
'happy': set(["amused", "animated", "beaming", "beatific", "blessed",
|
|
"blissful", "blithe", "blithesome", "boisterous", "bouncy",
|
|
"breezy", "bright", "bubbly", "buoyant", "carefree",
|
|
"cheerful", "cheery", "chipper", "chirpy", "chuffed",
|
|
"comfortable", "content", "contented", "convivial",
|
|
"delighted", "delirious", "ebullient", "ecstatic",
|
|
"effervescent", "elated", "enchanted", "enraptured",
|
|
"enthusiastic", "euphoric", "exhilarated", "exultant",
|
|
"exuberant", "felicitous", "festive", "fortunate",
|
|
"fulfilled", "genial", "glad", "gladdened", "gleeful",
|
|
"glowing", "good-humored", "good-natured", "gratified",
|
|
"halcyon", "happy", "heartened", "high-spirited", "hopeful",
|
|
"jaunty", "jocose", "jocular", "jocund", "jolly", "jovial",
|
|
"joyful", "joyous", "jubilant", "lighthearted", "lively",
|
|
"lucky", "merry", "mirthful", "optimistic", "overjoyed",
|
|
"peaceful", "peppy", "perky", "playful", "pleasant",
|
|
"pleased", "positive", "pumped", "radiant", "rapt",
|
|
"rapturous", "rejoicing", "relaxed", "sanguine", "satisfied",
|
|
"serene", "smiling", "sparkling", "spirited", "sprightly",
|
|
"stoked", "sunny", "thrilled", "tickled", "tranquil",
|
|
"triumphant", "unclouded", "untroubled", "upbeat",
|
|
"vivacious", "winsome", "zestful", "zippy"]),
|
|
"sad": set(["unhappy", "sorrowful", "dejected", "depressed", "downcast",
|
|
"miserable", "gloomy", "despondent", "melancholy", "woeful",
|
|
"forlorn", "heartbroken", "blue", "doleful", "lugubrious",
|
|
"somber", "disconsolate", "wretched", "heavy-hearted", "low",
|
|
"crestfallen"]),
|
|
"surprised": set(["astonished", "amazed", "startled", "stunned",
|
|
"thunderstruck", "confounded", "staggered",
|
|
"flabbergasted", "shocked", "awestruck", "speechless",
|
|
"dumbfounded", "jolted"]),
|
|
"embarrassed": set(["ashamed", "humiliated", "mortified", "abashed",
|
|
"self-conscious", "sheepish", "chagrined", "awkward",
|
|
"flustered", "red-faced", "discomfited", "discomposed",
|
|
"rattled"]),
|
|
"flirty": set(["coquettish", "playful", "amorous", "provocative",
|
|
"teasing", "frisky", "saucy", "coy", "seductive",
|
|
"suggestive", "vampish", "dallying", "skittish"]),
|
|
"angry": set(["irate", "furious", "incensed", "enraged", "wrathful",
|
|
"annoyed", "irritated", "fuming", "livid", "indignant",
|
|
"cross", "vexed", "seething", "maddened", "choleric",
|
|
"resentful", "piqued", "infuriated"]),
|
|
"thinking": set(["pondering", "contemplating", "reflecting", "meditating",
|
|
"ruminating", "deliberating", "mulling", "considering",
|
|
"pensive", "cogitating", "brooding", "cerebral",
|
|
"introspective", "analytical"]),
|
|
"confused": set(["puzzled", "baffled", "perplexed", "muddled",
|
|
"bewildered", "disoriented", "nonplussed", "befuddled",
|
|
"dazed", "flummoxed", "stumped", "mystified", "addled",
|
|
"discombobulated"]),
|
|
}
|