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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
# pylint: disable=invalid-name,missing-docstring
"""
gamelocker.strings
(internal) A collection of mappings between strings returned by the API
and their common names.
Currently Vainglory-specific only.
"""
class VaingloryStrings(object):
heroes = {
"*Adagio*": "Adagio",
"*Alpha*": "Alpha",
"*Ardan*": "Ardan",
"*Baron*": "Baron",
"*Blackfeather*": "Blackfeather",
"*Catherine*": "Catherine",
"*Celeste*": "Celeste",
"*Flicker*": "Flicker",
"*Fortress*": "Fortress",
"*Glaive*": "Glaive",
"*Gwen*": "Gwen",
"*Hero009*": "Krul",
"*Hero010*": "Skaarf",
"*Hero016*": "Rona",
"*Idris*": "Idris",
"*Joule*": "Joule",
"*Kestrel*": "Kestrel",
"*Koshka*": "Koshka",
"*Lance*": "Lance",
"*Lyra*": "Lyra",
"*Ozo*": "Ozo",
"*Petal*": "Petal",
"*Phinn*": "Phinn",
"*Reim*": "Reim",
"*Ringo*": "Ringo",
"*Samuel*": "Samuel",
"*SAW*": "SAW",
"*Sayoc*": "Taka",
"*Skye*": "Skye",
"*Vox*": "Vox"
}
items = {
"Aftershock": "Aftershock",
"Armor2": "Coat of Plates",
"Armor3": "Metal Jacket",
"Armor Shredder": "Bonesaw",
"Atlas Pauldron": "Atlas Pauldron",
"AttackSpeed1": "Swift Shooter",
"AttackSpeed2": "Blazing Salvo",
"BarbedNeedle": "Barbed Needle",
"Boots1": "Sprint Boots",
"Boots2": "Travel Boots",
"Boots3": "Journey Boots",
"BreakingPoint": "Breaking Point",
"Broken Myth": "Broken Myth",
"Clockwork": "Clockwork",
"Cogwheel": "Chronograph",
"Contraption": "Contraption",
"Cooldown1": "Hourglass",
"Critical": "Tyrant's Monocle",
"Crucible": "Crucible",
"Crystal1": "Crystal Bit",
"Crystal2": "Eclipse Prism",
"Crystal3": "Shatterglass",
"Crystal Matrix": "Alternating Current",
"Echo": "Echo",
"EveOfHarvest": "Eve of Harvest",
"Flare": "Flare",
"Flaregun": "Flare Gun",
"Fountain of Renewal": "Fountain of Renewal",
"Frostburn": "Frostburn",
"Halcyon Chargers": "Halcyon Chargers",
"Health2": "Dragonheart",
"Heavy Prism": "Heavy Prism",
"Heavy Steel": "Heavy Steel",
"IronguardContract": "Ironguard Contract",
"Lifewell": "Lifespring",
"Light Armor": "Light Armor",
"Light Shield": "Light Shield",
"LuckyStrike": "Lucky Strike",
"Minion Candy": "Minion Candy",
"MinionsFoot": "Minion's Foot",
"Mulled Wine": "Halcyon Potion",
"NullwaveGauntlet": "Nullwave Gauntlet",
"Oakheart": "Oakheart",
"PiercingShard": "Piercing Shard",
"PiercingSpear": "Piercing Spear",
"PoisonedShiv": "Poisoned Shiv",
"Protector Contract": "Protector Contract",
"Reflex Block": "Reflex Block",
"Scout Trap": "Scout Trap",
"Serpent Mask": "Serpent Mask",
"Shield 2": "Kinetic Shield",
"Shiversteel": "Shiversteel",
"Six Sins": "Six Sins",
"SlumberingHusk": "Slumbering Husk",
"Steam Battery": "Energy Battery",
"Stormcrown": "Stormcrown",
"StormguardBanner": "Stormguard Banner",
"Tension Bow": "Tension Bow",
"Tornado Trigger": "Tornado Trigger",
"Void Battery": "Void Battery",
"War Treads": "War Treads",
"Weapon3": "Sorrowblade",
"Weapon Blade": "Weapon Blade"
}
item_ids = {
"*1000_Item_HalcyonPotion*": "Halcyon Potion",
"*1002_Item_WeaponBlade*": "Weapon Blade",
"*1003_Item_CrystalBit*": "Crystal Bit",
"*1004_Item_SwiftShooter*": "Swift Shooter",
"*1005_Item_SixSins*": "Six Sins",
"*1009_Item_EclipsePrism*": "Eclipse Prism",
"*1010_Item_BlazingSalvo*": " Blazing Salvo",
"*1012_Item_Sorrowblade*": "Sorrowblade",
"*1013_Item_Shatterglass*": "Shatterglass",
"*1014_Item_TornadoTrigger*": "Tornado Trigger",
"*1015_Item_Oakheart*": "Oakheart",
"*1016_Item_Dragonheart*": "Dragonheart",
"*1017_Item_LightArmor*": "Light Armor",
"*1022_Item_CoatOfPlates*": "Coat of Plates",
"*1024_Item_MetalJacket*": "Metal Jacket",
"*1025_Item_EnergyBattery*": "Energy Battery",
"*1026_Item_Hourglass*": "Hourglass",
"*1027_Item_VoidBattery*": "Void Battery",
"*1028_Item_Chronograph*": "Chronograph",
"*1029_Item_Clockwork*": "Clockwork",
"*1030_Item_SprintBoots*": "Sprint Boots",
"*1032_Item_TravelBoots*": "Travel Boots",
"*1034_Item_SerpentMask*": "Serpent Mask",
"*1035_Item_TensionBow*": "Tension Bow",
"*1038_Item_Flare*": "Flare",
"*1039_Item_Bonesaw*": "Bonesaw",
"*1041_Item_MinionCandy*": "Minion Candy",
"*1042_Item_Shiversteel*": "Shiversteel",
"*1043_Item_ReflexBlock*": "Reflex Block",
"*1044_Item_Frostburn*": "Frostburn",
"*1045_Item_FountainOfRenewal*": "Fountain of Renewal",
"*1046_Item_Crucible*": "Crucible",
"*1047_Item_JourneyBoots*": "Journey Boots",
"*1049_Item_TyrantsMonocle*": "Tyrant's Monocle",
"*1050_Item_Aftershock*": "Aftershock",
"*1052_Item_WeaponInfusion*": "Weapon Infusion",
"*1053_Item_CrystalInfusion*": "Crystal Infusion",
"*1054_Item_ScoutTrap*": "Scout Trap",
"*1055_Item_BrokenMyth*": "Broken Myth",
"*1056_Item_WarTreads*": "War Treads",
"*1057_Item_AtlasPauldron*": "Atlas Pauldron",
"*1059_Item_BookOfEulogies*": "Book of Eulogies",
"*1060_Item_BarbedNeedle*": "Barbed Needle",
"*1061_Item_LightShield*": "Light Shield",
"*1062_Item_KineticShield*": "Kinetic Shield",
"*1063_Item_Aegis*": "Aegis",
"*1064_Item_Lifespring*": "Lifespring",
"*1065_Item_HeavySteel*": "Heavy Steel",
"*1066_Item_PiercingSpear*": "Piercing Spear",
"*1067_Item_BreakingPoint*": "Breaking Point",
"*1068_Item_LuckyStrike*": "Lucky Strike",
"*1069_Item_AlternatingCurrent*": "Alternating Current",
"*1070_Item_PiercingShard*": "Piercing Shard",
"*1071_Item_EveOfHarvest*": "Eve of Harvest",
"*1072_Item_HeavyPrism*": "Heavy Prism",
"*1073_Item_IronguardContract*": "Ironguard Contract",
"*1074_Item_StormguardBanner*": "Stormguard Banner",
"*1079_Item_Contraption*": "Contraption",
"*1080_Item_MinionsFoot*": "Minion's Foot",
"*1084_Item_ProtectorContract*": "Protector Contract",
"*1087_Item_HalcyonChargers*": "Halcyon Chargers",
"*1088_Item_Flaregun*": "Flare Gun",
"*1090_Item_Stormcrown*": "Stormcrown",
"*1092_Item_PoisonedShiv*": "Poisoned Shiv",
"*1095_Item_NullwaveGauntlet*": "Nullwave Gauntlet",
"*1097_Item_Echo*": "Echo",
"*1105_Item_SlumberingHusk*": "Slumbering Husk"
}
def pretty(string):
"""Returns prettified hero or item or original string."""
if string in VaingloryStrings.heroes:
return VaingloryStrings.heroes[string]
if string in VaingloryStrings.items:
return VaingloryStrings.items[string]
if string in VaingloryStrings.item_ids:
return VaingloryStrings.item_ids[string]
return string
|