forked from SPGWr/mplus.subcreation.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
enchants.py
211 lines (186 loc) · 8.9 KB
/
enchants.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
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
enchant_mapping = {}
# Battle for Azeroth Enchanting
## Weapon Enchants
enchant_mapping["5950"] = {"id": 153480,
"name": "Gale-Force Striking"}
enchant_mapping["6149"] = {"id": 168592,
"name": "Oceanic Restoration"}
enchant_mapping["6150"] = {"id": 168598,
"name": "Naga Hide"}
enchant_mapping["5946"] = {"id": 153476,
"name": "Coastal Surge"}
enchant_mapping["5948"] = {"id": 153478,
"name": "Siphoning"}
enchant_mapping["5949"] = {"id": 153479,
"name": "Torrent of Elements"}
enchant_mapping["6148"] = {"id": 168596,
"name": "Force Multiplier"}
enchant_mapping["6112"] = {"id": 168593,
"name": "Machinist's Brilliance"}
enchant_mapping["5966"] = {"id": 168592,
"name": "Oceanic Restoration"}
enchant_mapping["5962"] = {"id": 159788,
"name": "Versatile Navigation"}
enchant_mapping["5966"] = {"id": 159789,
"name": "Stalwart Navigation"}
enchant_mapping["5965"] = {"id": 159785,
"name": "Deadly Navigation"}
enchant_mapping["5963"] = {"id": 159786,
"name": "Quick Navigation"}
enchant_mapping["5964"] = {"id": 159787,
"name": "Masterful Navigation"}
## Ring Enchants
enchant_mapping["5945"] = {"id" : 153445,
"name" : "Pact of Versatility"}
enchant_mapping["5944"] = {"id" : 153444,
"name" : "Pact of Mastery"}
enchant_mapping["6109"] = {"id" : 168447,
"name" : "Accord of Haste"}
enchant_mapping["6108"] = {"id" : 168446,
"name" : "Accord of Critical Strike"}
enchant_mapping["5943"] = {"id" : 153443,
"name" : "Pact of Haste"}
enchant_mapping["5942"] = {"id" : 153442,
"name" : "Pact of Critical Strike"}
enchant_mapping["6111"] = {"id" : 168449,
"name" : "Accord of Versatility"}
enchant_mapping["6110"] = {"id" : 168448,
"name" : "Accord of Mastery"}
enchant_mapping["5941"] = {"id" : 153441,
"name" : "Seal of Versatility"}
enchant_mapping["5938"] = {"id" : 153438,
"name" : "Seal of Critical Strike"}
enchant_mapping["5939"] = {"id" : 153439,
"name" : "Seal of Haste"}
enchant_mapping["5940"] = {"id" : 153440,
"name" : "Seal of Mastery"}
# Battle for Azeroth Engineering
## Eng. Belt Enhancements -- note this is by SPELL ID, since there's no item
enchant_mapping["5953"] = {"spell_id": 255940,
"name": "Personal Space Amplifier"}
enchant_mapping["5967"] = {"spell_id": 269123,
"name": "Miniaturized Plasma Shield"}
enchant_mapping["5952"] = {"spell_id": 255936,
"name": "Holographic Horror Projector"}
# Legacy Engineering
## Eng. Belt Enhancements -- note this is by SPELL ID, since there's no item
enchant_mapping["4223"] = {"spell_id": 55016,
"name": "Nitro Boosts"}
enchant_mapping["4222"] = {"spell_id": 67839,
"name": "Mind Amplification Dish"}
enchant_mapping["4214"] = {"spell_id": 84425,
"name": "Cardboard Assassin"}
enchant_mapping["3599"] = {"spell_id": 54736,
"name": "EMP Generator"}
enchant_mapping["3601"] = {"spell_id": 54793,
"name": "Frag Belt"}
enchant_mapping["4188"] = {"spell_id": 84427,
"name": "Grounded Plasma Shield"}
enchant_mapping["4187"] = {"spell_id": 84424,
"name": "Invisibility Field"}
enchant_mapping["4750"] = {"spell_id": 82200,
"name": "Spinal Healing Injector"}
enchant_mapping["5000"] = {"spell_id": 109099,
"name": "Watergliding Jets"}
# Shadowlands Enchanting
## Cloak
enchant_mapping["6208"] = {"id" : 177660,
"name" : "Soul Vitality"}
enchant_mapping["6204"] = {"id" : 172412,
"name" : "Fortified Leech"}
enchant_mapping["6203"] = {"id" : 172411,
"name" : "Fortified Avoidance"}
enchant_mapping["6202"] = {"id" : 172410,
"name" : "Fortified Speed"}
## Chest
enchant_mapping["6265"] = {"id" : 183738,
"name" : "Eternal Insight"}
enchant_mapping["6213"] = {"id" : 172418,
"name" : "Eternal Bulwark"}
enchant_mapping["6216"] = {"id" : 177716,
"name" : "Sacred Stats"}
enchant_mapping["6217"] = {"id" : 177715,
"name" : "Eternal Bounds"}
enchant_mapping["6230"] = {"id" : 177962,
"name" : "Eternal Stats"}
enchant_mapping["6214"] = {"id" : 177659,
"name" : "Eternal Skirmish"}
## Boots
enchant_mapping["6212"] = {"id" : 172413,
"name" : "Agile Soulwalker"}
enchant_mapping["6207"] = {"id" : 177661,
"name" : "Speed of Soul"}
enchant_mapping["6211"] = {"id" : 172419,
"name" : "Eternal Agility"}
## Bracers
enchant_mapping["6222"] = {"id" : 172416,
"name" : "Shaded Hearthing"}
enchant_mapping["6220"] = {"id" : 172415,
"name" : "Eternal Intellect"}
enchant_mapping["6219"] = {"id" : 172414,
"name" : "Illuminated Soul"}
## Gloves
enchant_mapping["6210"] = {"id" : 172408,
"name" : "Eternal Strength"}
enchant_mapping["6205"] = {"id" : 172406,
"name" : "Shadowlands Gathering"}
enchant_mapping["6209"] = {"id" : 172407,
"name" : "Strength of Soul"}
## Weapons
enchant_mapping["6228"] = {"id" : 172368,
"name" : "Sinful Revelation"}
enchant_mapping["6223"] = {"id" : 172370,
"name" : "Lightless Force"}
enchant_mapping["6227"] = {"id" : 172365,
"name" : "Ascended Vigor"}
enchant_mapping["6226"] = {"id" : 172367,
"name" : "Eternal Grace"}
enchant_mapping["6229"] = {"id" : 172366,
"name" : "Celestial Guidance"}
## Rings
enchant_mapping["6164"] = {"id" : 172361,
"name" : "Tenet of Critical Strike"}
enchant_mapping["6169"] = {"id" : 172360,
"name" : "Bargain of Versatility"}
enchant_mapping["6168"] = {"id" : 172363,
"name" : "Tenet of Mastery"}
enchant_mapping["6166"] = {"id" : 172362,
"name" : "Tenet of Haste"}
enchant_mapping["6165"] = {"id" : 172358,
"name" : "Bargain of Haste"}
enchant_mapping["6170"] = {"id" : 172364,
"name" : "Tenet of Versatility"}
enchant_mapping["6163"] = {"id" : 172357,
"name" : "Bargain of Critical Strike"}
enchant_mapping["6167"] = {"id" : 172359,
"name" : "Bargain of Mastery"}
# Shadowlands Engineering
## Eng. Belt Enhancements -- (note this is spell id, since there's no scroll)
enchant_mapping["6192"] = {"spell_id": 310495,
"name": "Dimensional Shifter"}
enchant_mapping["6193"] = {"spell_id": 310496,
"name": "Electro-Jump"}
enchant_mapping["6194"] = {"spell_id": 310497,
"name": "Damage Retaliator"}
# Death Knight Runeforging -- (note this is spell id, since there's no scroll)
enchant_mapping["3368"] = {"spell_id" : 53344,
"name" : "Fallen Crusader"}
enchant_mapping["3370"] = {"spell_id" : 53343,
"name" : "Razorice"}
enchant_mapping["6241"] = {"spell_id" : 326805,
"name" : "Sanguination"}
enchant_mapping["6244"] = {"spell_id" : 326977,
"name" : "Unending Thirst"}
enchant_mapping["6242"] = {"spell_id" : 326855,
"name" : "Spellwarding"}
enchant_mapping["6243"] = {"spell_id" : 326911,
"name" : "Hysteria"}
enchant_mapping["6245"] = {"spell_id" : 327082,
"name" : "Apocalypse"}
enchant_mapping["3847"] = {"spell_id" : 62158,
"name" : "Stoneskin Gargoyle"}
# Hunter Scopes (ty Gilbat)
enchant_mapping["6196"] = {"id": 172920,
"name" : "Optical Target Embiggener"}
enchant_mapping["6195"] = {"id": 172921,
"name" : "Infra-green Reflex Sight"}