-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcryptidnamelibrary.py
30 lines (29 loc) · 2.74 KB
/
cryptidnamelibrary.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
prefixes = {
"forest": ["Sylvan-", "Verdant-", "Arbor-", "Wilder-", "Feral-", "Deepwood-", "Emerald-", "Glade-", "Thicket-", "Timber-", "Woodland-"],
"mountain": ["Cliff-", "Stony-", "Peak-", "Summit-", "Alpine-", "Crag-", "Boulder-", "Granite-", "Ridge-", "Sky-"],
"desert": ["Dune-", "Sandy-", "Arid-", "Sunbaked-", "Nomad-", "Oasis-", "Mirage-", "Dust-", "Scorch-", "Canyon-"],
"arctic": ["Frost-", "Glacial-", "Polar-", "Tundra-", "Snow-", "Ice-", "Blizzard-", "Aurora-", "Permafrost-", "Winter-"],
"swamp": ["Fen-", "Marsh-", "Bog-", "Mire-", "Ooze-", "Murk-", "Quag-", "Sludge-", "Reedy-", "Croak-"],
"ocean": ["Aqua-", "Coral-", "Brine-", "Tidal-", "Deep-", "Abyss-", "Current-", "Wave-", "Kelp-", "Sea-"],
}
suffixes = {
"grass": ["vine", "leaf", "bloom", "root", "fern", "sprout", "petal", "thorn", "bulb", "reed"],
"fire": ["ember", "blaze", "flare", "scorch", "inferno", "cinder", "spark", "magma", "wildfire", "phoenix"],
"water": ["wave", "stream", "ripple", "torrent", "geyser", "fin", "scale", "bubble", "spray", "serpent"],
"electric": ["spark", "bolt", "zap", "thunder", "lightning", "pulse", "current", "shock", "volt", "storm"],
"rock": ["stone", "cliff", "boulder", "pebble", "gem", "slate", "granite", "quartz", "marble", "lava"],
"ground": ["earth", "dust", "sand", "clay", "mud", "tremor", "quake", "burrow", "mole", "gopher"],
"flying": ["wing", "feather", "talon", "beak", "soar", "glide", "swift", "hawk", "eagle", "falcon"],
"poison": ["venom", "toxin", "fang", "barb", "stinger", "ooze", "slime", "viper", "cobra", "scorpion"],
"bug": ["ant", "bee", "beetle", "moth", "worm", "mantis", "spider", "roach", "grub", "larva"],
"normal": ["paw", "claw", "fur", "tail", "hound", "feline", "rodent", "beast", "common", "plain"],
"ghost": ["specter", "phantom", "wraith", "spirit", "soul", "shadow", "haunt", "wisp", "ghoul", "poltergeist"],
"psychic": ["mind", "thought", "dream", "vision", "aura", "zenith", "psyche", "seer", "oracle", "esper"],
"dragon": ["drake", "wyvern", "serpent", "wyrm", "scale", "claw", "fang", "flame", "ancient", "legend"],
"dark": ["shadow", "night", "void", "raven", "onyx", "obsidian", "grim", "doom", "corrupt", "phantom"],
"steel": ["metal", "iron", "steel", "clang", "gear", "bolt", "plate", "armor", "shield", "robo"],
"fairy": ["pixie", "sprite", "nymph", "fae", "charm", "glitter", "bloom", "shimmer", "dream", "illusion"],
"space": ["star", "comet", "nova", "quasar", "nebula", "galaxy", "cosmic", "lunar", "solar", "void"],
"fungal": ["spore", "mycelium", "mushroom", "mold", "lichen", "toadstool", "fungus", "decay", "rot", "bloom"],
"hominid": ["sage", "chief", "shaman", "elder", "tribe", "clan", "hunter", "gatherer", "warrior", "leader"]
}