-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnamelookup.py
More file actions
37 lines (36 loc) · 1.23 KB
/
namelookup.py
File metadata and controls
37 lines (36 loc) · 1.23 KB
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
31
32
33
34
35
36
37
pronounceableNames = {
"adamth3walker": "adam the walker",
"akogarezephyr": "Ah-Ko-Gah-Ray zephyr",
"arcana": "arcayna",
"atmospherium": "atmosphirium",
"a-zu-ra": "ah-zoo-ra",
"beetie swelle": "beedee swell",
"blastron": "blast tron",
"cii": "see",
"cjthemusicdude": "CJ the music dude",
"darthpolly": "darth polly",
"draconiator": "druh cone ee ator",
"dusthillguy": "dusthill guy",
"gercr": "jer",
"johnfn": "john FN",
"koekepan": "kookah pawn",
"mcmiagblackmanisgod": "my cutie mark is a gun, black man is god",
"mirby": "murby",
"misael.k": "me-sigh-ale ka",
"neukatalyst": "new catalyst",
"omgitslewis": "oh em gee it's lewis",
"patashu": "pat-a-shoe",
"sci": "sigh",
"seventhelement": "seventh element",
"shadow psyclone": "shadow cyclone",
"somasis": "so may sis",
"somasismakesbadstuff": "so may sis makes bad stuff",
"supaspeedstrut": "supa speed strut",
"suzumebachi": "sue-zoo-may-bah-chee",
"trancient": "tran-see-ent",
"wolfofsadness": "wolf of sadness"
}
def GetPronounceableName(baseName):
if baseName.lower() in pronounceableNames.keys():
return pronounceableNames[baseName.lower()]
else: return baseName