-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathConstants.lua
More file actions
executable file
·870 lines (867 loc) · 31.7 KB
/
Constants.lua
File metadata and controls
executable file
·870 lines (867 loc) · 31.7 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
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
---@class Data
local Data = ECSLoader:ImportModule("Data")
Data.PHYSICAL_SCHOOL = 1
Data.HOLY_SCHOOL = 2
Data.FIRE_SCHOOL = 3
Data.NATURE_SCHOOL = 4
Data.FROST_SCHOOL = 5
Data.SHADOW_SCHOOL = 6
Data.ARCANE_SCHOOL = 7
Data.WARRIOR = 1
Data.PALADIN = 2
Data.HUNTER = 3
Data.ROGUE = 4
Data.PRIEST = 5
Data.DEATHKNIGHT = 6
Data.SHAMAN = 7
Data.MAGE = 8
Data.WARLOCK = 9
Data.DRUID = 11
Data.Aura = {
AllowCastingManaRegeneration = {
[6117] = (ECS.IsWotlk and 0.5 or 0.3), -- Mage Armor rank 1
[12051] = 1, -- Evocation
[15271] = (ECS.IsWotlk and 0.83 or 0.5), -- Spirit Tap
[18371] = 0.5, -- Soul Siphon
[22782] = (ECS.IsWotlk and 0.5 or 0.3), -- Mage Armor rank 2
[22783] = (ECS.IsWotlk and 0.5 or 0.3), -- Mage Armor rank 3
[23684] = 1, -- Aura of the Blue Dragon
[27125] = (ECS.IsWotlk and 0.5 or 0.3), -- Mage Armor rank 4
[29166] = 1, -- Innervate
[32932] = 1, -- Sun Shield
[38346] = 0.15, -- Meditation
[43023] = 0.5, -- Mage Armor rank 5
[43024] = 0.5, -- Mage Armor rank 6
[49307] = 1, -- Full Mana Regen
[49694] = 0.17, -- Improved Spirit Tap 1/2
[59000] = 0.33, -- Improved Spirit Tap 2/2
[408261] = 0.5, -- Dreamstate
[412325] = 0.1, -- Enlightenment
[425124] = 1, -- Arcane Surge
[437357] = 1, -- Gneuromantic Meditation
[456195] = 1, -- Innervate
[468466] = 1, -- Unmaking the Simulacrum
[1213422] = 1, -- Aura of the Blue Dragon
},
CritReductionAll = {
[21183] = (ECS.IsWotlk and -1 or nil), -- Hearth of the Crusader
[30482] = 5, -- Molten Armor
[30708] = (ECS.IsWotlk and -3 or nil), -- totem of wrath
[31966] = -3, -- Physical Debuffs 2
[33143] = 1000, -- Blessed Resilience
[35915] = 5, -- Molten Armor
[43045] = 5, -- Molten Armor
[43046] = 5, -- Molten Armor
[45985] = 5, -- Flaming Touch
[51584] = -30, -- Icy Torrent
[53480] = 10000, -- Roar of Sacrifice
[54498] = -2, -- Hearth of the Crusader
[54499] = -3, -- Hearth of the Crusader
[57524] = -50, -- Metanoia
[61861] = 11, -- Arena 1 Resil
[62382] = -50, -- Brittle
[403816] = 6, -- metamorphosis
[428741] = 5, -- molten armor
[430432] = 5, -- battle hardened
},
CritReductionMelee = {
[47241] = 6, -- metamorphosis
[408680] = 6, -- way of earth
},
CritReductionSpell = {
[17794] = (ECS.IsWotlk and -1 or nil), -- Shadow Mastery 1/5
[17797] = (ECS.IsWotlk and -3 or nil), -- Shadow Mastery 2/5
[17798] = (ECS.IsWotlk and -2 or nil), -- Shadow Mastery 3/5
[17799] = (ECS.IsWotlk and -4 or nil), -- Shadow Mastery 4/5
[17800] = (ECS.IsWotlk and -5 or nil), -- Shadow Mastery 5/5
[22959] = (ECS.IsWotlk and -5 or nil), -- Improved Scorch
},
IsFeralForm = {
[768] = true, -- Cat Form
[5487] = true, -- Bear Form
[9634] = true, -- Dire Bear Form
},
IsLightningShield = {
[324] = true, -- Lightning Shield rank 1
[325] = true, -- Lightning Shield rank 2
[905] = true, -- Lightning Shield rank 3
[945] = true, -- Lightning Shield rank 4
[8134] = true, -- Lightning Shield rank 5
[10431] = true, -- Lightning Shield rank 6
[10432] = true, -- Lightning Shield rank 7
[25469] = true, -- Lightning Shield rank 8
[25472] = true, -- Lightning Shield rank 9
[26363] = true, -- Lightning Shield
[26364] = true, -- Lightning Shield
[26365] = true, -- Lightning Shield
[26366] = true, -- Lightning Shield
[26367] = true, -- Lightning Shield
[26369] = true, -- Lightning Shield
[26370] = true, -- Lightning Shield
[26371] = true, -- Lightning Shield
[26372] = true, -- Lightning Shield
[27635] = true, -- Lightning Shield
[32642] = true, -- Spore Cloud
[34828] = true, -- Water Shield
[35320] = true, -- Electric Skin
[49278] = true, -- Lightning Shield
[49279] = true, -- Lightning Shield
[49280] = true, -- Lightning Shield rank 10
[49281] = true, -- Lightning Shield rank 11
},
MP5 = {
[430] = 42, -- drink
[431] = 104, -- drink
[432] = 174, -- drink
[833] = 30, -- Green Tea
[1133] = 249, -- drink
[1135] = 332, -- drink
[1137] = 489, -- drink
[2639] = 70, -- food
[10250] = 800, -- drink
[16609] = 10, -- Warchief's Blessing
[18140] = 735, -- Blessed Sunfruit Juice
[18194] = (ECS.IsWotlk and 10 or 8), -- Mana Regeneration
[21172] = 75, -- Grip of Command
[21174] = 50, -- Aura of Battle
[22734] = 700, -- drink
[23698] = 735, -- Alterac Spring Water
[24363] = (ECS.IsWotlk and 15 or 12), -- Mana Regeneration
[24398] = 43, -- Water Shield Rank 1 TBC / 7 WOTLK
[25696] = 735, -- Drink
[25697] = 735, -- Old Enriched Manna Biscuit
[25701] = 75, -- Brain Food
[25703] = 135, -- Brain Food
[25887] = 210, -- Brain Food
[25889] = 300, -- Brain Food
[26261] = 735, -- Drink
[26402] = 735, -- Drink
[26473] = 367, -- drink
[26475] = 551, -- drink
[27089] = 240*5, -- Drink
[28145] = (ECS.IsWotlk and 14 or 11), -- Power of the Guardian
[28509] = (ECS.IsWotlk and 20 or 16), -- Greater Mana Regeneration
[28519] = (ECS.IsWotlk and 31 or 25), -- Flask of Mighty Restoration
[28795] = (ECS.IsWotlk and 35 or 28), -- Holy Power
[28804] = (ECS.IsWotlk and 30 or 24), -- Epiphany
[28820] = (ECS.IsWotlk and 19 or 15), -- Lightning Shield
[28824] = (ECS.IsWotlk and 35 or 28), -- Totemic Power
[29007] = 489, -- Drink
[29039] = 300, -- Fizzy Energy Drink
[31036] = (ECS.IsWotlk and 56 or 45), -- Verdant Flame
[31462] = 12, -- Moonwell Restoration
[32548] = 33, -- Symbol of Hope
[33265] = (ECS.IsWotlk and 10 or 8), -- well fed
[33736] = 50, -- Water Shield Rank 2 TBC / 8 WOTLK
[33774] = 735, -- Underspore Pod
[34291] = 850, -- drink
[34410] = 10, -- Hellscream's Warsong
[35095] = (ECS.IsWotlk and 26 or 21), -- Enlightenment
[37656] = (ECS.IsWotlk and 95 or 76), -- wisdom
[38437] = (ECS.IsWotlk and 19 or 15), -- Totemic Mastery
[40568] = (ECS.IsWotlk and 12 or 8), -- Unstable Flask of the Elder Only works in Blade's Edge Mountains Plateaus and Gruul's Lair.
[40582] = (ECS.IsWotlk and 12 or 8), -- Unstable Flask of the Elder Only works in Blade's Edge Mountains Plateaus and Gruul's Lair.
[41605] = (ECS.IsWotlk and 31 or 25), -- Mighty Restoration of Shattrath Only active in Tempest Keep, Serpentshrine Cavern, Caverns of Time: Mount Hyjal, Black Temple and the Sunwell Plateau.
[41610] = (ECS.IsWotlk and 31 or 25), -- Mighty Restoration of Shattrath Only active in Tempest Keep, Serpentshrine Cavern, Caverns of Time: Mount Hyjal, Black Temple and the Sunwell Plateau.
[42308] = 1250, -- brain food
[42312] = 1200, -- Brain Food
[43154] = 489, -- Drink
[43182] = 428*5, -- Drink
[43183] = 640*5, -- Drink
[43742] = (ECS.IsWotlk and 28 or 22), -- Grace of the Naaru
[44107] = 42, -- Brewfest Drink
[44109] = 104, -- Brewfest Drink
[44110] = 174, -- Brewfest Drink
[44111] = 249, -- Brewfest Drink
[44112] = 332, -- Brewfest Drink
[44113] = 489, -- Brewfest Drink
[44114] = 700, -- Brewfest Drink
[44115] = 1200, -- Brewfest Drink
[44116] = 1200, -- Brewfest Drink
[45019] = 332, -- Holiday Drink
[45020] = 1200, -- Holiday Drink
[46386] = (ECS.IsWotlk and 83 or 66), -- Luminous Bluetail
[46755] = 240, -- drink
[49472] = 240*5, -- Drink Coffee
[49623] = 125, -- Effervescence
[52051] = 91, -- Blessing of Zim'Rhuk within Zul'Drak, Gundrak, and Drak'Tharon Keep.
[52127] = 10, -- Water Shield rank 1
[52129] = 15, -- Water Shield rank 2
[52131] = 21, -- Water Shield rank 3
[52134] = 26, -- Water Shield rank 4
[52136] = 33, -- Water Shield rank 5
[52138] = 38, -- Water Shield rank 6
[52911] = 3200, -- Drink
[53373] = 1200, -- Thunderbrew's Hard Ale
[53764] = 30, -- Mighty Mana Regeneration
[54212] = 45, -- Flask of Pure Mojo
[57073] = 640*5, -- Drink
[57107] = 15, -- Well Fed
[57291] = 15, -- Well Fed
[57334] = 40, -- Well Fed
[57960] = 100, -- Water Shield rank 9
[59674] = 20, -- Moonshroud Residue
[60520] = 220, -- Spark of Life
[61268] = 2160, -- Mana Regeneration
[61830] = 428*5, -- Drink
[64356] = 3200, -- Drink
[64739] = 272, -- Show of Faith
[65003] = 220, -- Memories of Love
[65363] = 3200, -- Brewfest Drink
[67696] = 16, -- Energized
[67750] = 18, -- Energized
[69560] = 3200, -- Brewfest Drink
[69561] = 3200, -- Brewfest Drink
[71584] = 304, -- Revitalized
[72623] = 489, -- Drink
[355366] = 10, -- Warchief's Blessing
[370548] = 10, -- Skeletal Artifact
[430948] = 8, -- Arcane Recovery
[446396] = 12, -- Atal'ai Mojo of Life. This has no effect outside of Sunken Temple.
[446714] = 1104, -- Drink
[448084] = 12, -- Restless Dreams. The benefits of this flask only apply in areas under the influence of the nightmare.
[460939] = 10, -- Might of Stormwind
[460940] = 10, -- Might of Stormwind
[461632] = 1104, -- Stratholme Holy Water
[468767] = 851, -- drink
[473441] = 10, -- Might of Blackrock
[1213886] = 13, -- Flask of Unyielding Sorrow
[1220542] = 28, -- Holy Power
[1220685] = 28, -- Totemic Power
},
MP5Tooltip = {
[5677] = (ECS.IsWotlk and 5/2 or nil), -- Mana Spring rank 1
[10491] = (ECS.IsWotlk and 5/2 or nil), -- Mana Spring rank 2
[10493] = (ECS.IsWotlk and 5/2 or nil), -- Mana Spring rank 3
[10494] = (ECS.IsWotlk and 5/2 or nil), -- Mana Spring rank 4
[19742] = ((not ECS.IsClassic) and 1 or nil), -- Blessing of Wisdom rank 1
[19850] = ((not ECS.IsClassic) and 1 or nil), -- Blessing of Wisdom rank 2
[19852] = ((not ECS.IsClassic) and 1 or nil), -- Blessing of Wisdom rank 3
[19853] = ((not ECS.IsClassic) and 1 or nil), -- Blessing of Wisdom rank 4
[19854] = ((not ECS.IsClassic) and 1 or nil), -- Blessing of Wisdom rank 5
[25290] = ((not ECS.IsClassic) and 1 or nil), -- Blessing of Wisdom rank 6
[25569] = (ECS.IsWotlk and 5/2 or nil), -- Mana Spring rank 5
[25894] = ((not ECS.IsClassic) and 1 or nil), -- Greater Blessing of Wisdom rank 1
[25918] = ((not ECS.IsClassic) and 1 or nil), -- Greater Blessing of Wisdom rank 2
[27142] = 1, -- Blessing of Wisdom rank 7
[27143] = 1, -- Greater Blessing of Wisdom rank 3
[48935] = 1, -- Blessing of Wisdom rank 8
[48936] = 1, -- Blessing of Wisdom rank 9
[48937] = 1, -- Greater Blessing of Wisdom rank 4
[48938] = 1, -- Greater Blessing of Wisdom rank 5
[56521] = 1, -- Blessing of Wisdom
[58775] = 5/2, -- Mana Spring rank 6
[58776] = 5/2, -- Mana Spring rank 7
[58777] = 5/2, -- Mana Spring rank 8
},
PercentageMp5 = {
[12051] = ((not ECS.IsClassic) and 0.15/2*5 or nil), -- Evocation
[18792] = (ECS.IsClassic and 0.02/4 or 0.03/4)*5, -- Fel Energy
[24355] = 0.02*5, -- Drink
[24707] = 0.03*5, -- Food
[25990] = 0.05*5, -- Graccu's Mince Meat Fruitcake
[26263] = (ECS.IsClassic and 0.04 or 0.03)*5, -- Dim Sum
[29055] = 0.04*5, -- Refreshing Red Apple
[30024] = 0.2*5, -- Drink
[30254] = 0.05*5, -- Evocation
[30874] = 0.05*5, -- Gift of the Water Spirit
[34074] = 0.04/3*5, -- Aspect of the Viper
[35701] = 0.02/4*5, -- Touch of Shadow
[38549] = 0.03*5, -- Empowerment
[38730] = 0.09/2*5, -- Refreshing Mist
[52067] = 0.02/2*5, -- Aura of Regeneration
[53089] = 0.02*5, -- Worgen's Blood
[53517] = 0.1/3*5, -- Roar of Recovery
[54428] = 0.05/3*5, -- Divine Plea
[57056] = 0.02/5*5, -- Aura of Regeneration
[58026] = 0.1/2*5, -- Blessing of the Crusade
[61011] = 0.15/2*5, -- Improved Brilliance Aura
[74501] = 0.05*5, -- Brilliant Tactics
[74719] = 0.05*5, -- Brilliant Tactics
[74865] = 0.05*5, -- Boon of the Loa
[408510] = 0.02, -- Water Shield
[413083] = 0.15, -- Resilience of Nature
[415058] = 0.05/3*5, -- Guarded by the Light
[415423] = 0.1/3*5, -- Aspect of the Viper
[425294] = 0.06*5, -- Dispersion
[437324] = 0.02*5, -- Deep Slumber
[449879] = 0.06*5, -- Dream Fog
[1226808] = 0.05*5, -- Food
},
PeriodicallyGiveMana = {
[15604] = 150, -- Second Wind
[15822] = 20, -- Dreamless Sleep
[16191] = 170/3*5, -- Mana Tide
[16599] = 50, -- Blessing of Shahram
[17252] = 22, -- Mark of the Dragon Lord
[17328] = 15, -- Aura of Penitence
[17355] = 230/3*5, -- Mana Tide
[17360] = 290/3*5, -- Mana Tide
[17447] = 375, -- Circle of Flame
[18194] = 8, -- Mana Regeneration
[19634] = 50/3*5, -- Mana Rejuvenation
[21955] = 60, -- Razorlash Root
[23108] = 500, -- Blessing of Nordrassil
[23513] = 2500, -- Essence of the Red
[24268] = 60, -- Mar'li's Brain Boost
[24360] = 875, -- Greater Dreamless Sleep
[24884] = 200, -- Earthen Sigil
[25694] = 3, -- Well Fed
[25941] = 6, -- Well Fed
[26551] = 600, -- Jade Owl
[26600] = 300, -- Emerald Owl
[27996] = 50, -- Spellsurge
[28504] = 1500, -- Major Dreamless Sleep
[29040] = 6, -- Fizzy Energy Drink
[29882] = 875, -- Loose Mana
[31045] = 375, -- Talasite Owl
[35478] = 200, -- Drums of Restoration
[38929] = 400/3*5, -- Fel Mana
[45027] = 750, -- Revitalize
[45052] = 750, -- Evocation
[45860] = 1125, -- Breath: Revitalize
[46785] = 375, -- Seaspray Albatross
[53753] = 4500, -- Nightmare Slumber
[54833] = 450, -- Glyph of Innervate
[55740] = 2500, -- Essence of the Red
[71881] = 300, -- Invigoration
[71941] = 200/3*5, -- Twisted Nightmare
[351358] = 200, -- Greater Drums of Restoration
[434851] = 380, -- Minor Evocation
[435168] = 12, -- Guard of the Innovator
[446088] = 24, -- Leyline Attunement
[462858] = 750, -- Circle of Flame
},
PeriodicallyGiveManaTooltip = {
[5677] = ((not ECS.IsWotlk) and 5/2 or nil), -- Mana Spring rank 1
[10491] = ((not ECS.IsWotlk) and 5/2 or nil), -- Mana Spring rank 2
[10493] = ((not ECS.IsWotlk) and 5/2 or nil), -- Mana Spring rank 3
[10494] = ((not ECS.IsWotlk) and 5/2 or nil), -- Mana Spring rank 4
[19742] = (ECS.IsClassic and 1 or nil), -- Blessing of Wisdom rank 1
[19850] = (ECS.IsClassic and 1 or nil), -- Blessing of Wisdom rank 2
[19852] = (ECS.IsClassic and 1 or nil), -- Blessing of Wisdom rank 3
[19853] = (ECS.IsClassic and 1 or nil), -- Blessing of Wisdom rank 4
[19854] = (ECS.IsClassic and 1 or nil), -- Blessing of Wisdom rank 5
[24853] = 5/2, -- Mana Spring
[25290] = (ECS.IsClassic and 1 or nil), -- Blessing of Wisdom rank 6
[25569] = ((not ECS.IsWotlk) and 5/2 or nil), -- Mana Spring rank 5
[25894] = (ECS.IsClassic and 1 or nil), -- Greater Blessing of Wisdom rank 1
[25918] = (ECS.IsClassic and 1 or nil), -- Greater Blessing of Wisdom rank 2
},
SpellCrit = {
[24907] = ((not ECS.IsClassic) and 5 or nil), -- Moonkin Aura
[29177] = 6, -- Elemental Devastation Rank 2
[29178] = 9, -- Elemental Devastation Rank 3
[30165] = 3, -- Elemental Devastation Rank 1
[51466] = 3, -- Elemental Oath Rank 1
[51470] = 5, -- Elemental Oath Rank 2
},
SpellHaste = {
[1714] = -50, -- Curse of Tongues Rank 1
[3603] = -35, -- Distracting Pain
[5760] = -40, -- Mind-numbing Poison Rank 1
[7102] = -25, -- Contagion of Rot
[7103] = -25, -- Contagion of Rot
[7127] = -20, -- Wavering Will
[8140] = -50, -- Befuddlement
[8215] = 100, -- Rapid Cast
[8272] = -20, -- Mind Tremor
[8692] = -50, -- Mind-numbing Poison II Rank 2
[10348] = 100, -- Tune Up
[10651] = -20, -- Curse of the Eye
[10653] = -20, -- Curse of the Eye
[11398] = -60, -- Mind-numbing Poison III Rank 3
[11719] = -60, -- Curse of Tongues Rank 2
[12255] = -15, -- Curse of Tuten'kash
[12889] = -50, -- Curse of Tongues
[13338] = -50, -- Curse of Tongues
[14538] = -35, -- Aural Shock
[15470] = -50, -- Curse of Tongues
[17331] = -10, -- Fang of the Crystal Spider
[17633] = 66, -- Arcane Focus
[18173] = 100000, -- Burning Adrenaline
[18803] = 100000, -- Focus
[19365] = -50, -- Ancient Dread
[19779] = 26, -- Inspire
[22247] = -80, -- Suppression Aura
[22642] = -50, -- Brood Power: Bronze
[22710] = 100, -- Enlarge
[22909] = -50, -- Eye of Immol'thar
[23153] = -50, -- Brood Affliction: Blue
[23620] = 100000, -- Burning Adrenaline
[23723] = 33, -- Mind Quickening
[23733] = 33, -- Blinding Light
[24415] = -50, -- Slow
[25195] = -75, -- Curse of Tongues
[25516] = 11, -- Aura of Command
[25773] = 300, -- Will of Weavil
[25810] = -50, -- Mind-numbing Poison
[367987] = 101, -- Burning Adrenaline
[368615] = 30, -- Pulse Lightning
[370066] = 51, -- Visions of Madness
[370767] = 11, -- Essence of C'Thun
[370832] = 15, -- Gift of the Spider
[371206] = 100, -- Servant of Chaos
[402794] = -60, -- Curse of Tongues
[425121] = 20, -- Icy Veins
[427714] = 30, -- Backdraft
[429125] = 20, -- Icy Veins
[431060] = 100001, -- Flight Insurance
[437362] = 20, -- Hyperconductive Shock
[444046] = -50, -- Curse of Tongues
[446528] = 10, -- Echoes of Madness
[467141] = 33, -- Mind Quickening
[467522] = 33, -- Blinding Light
[469261] = 101, -- Burning Adrenaline
[474236] = 100000, -- Blessing of Ji'zhi
[1221578] = 25, -- Mark of the Master
[1226451] = 20, -- Emergency
[1227200] = 20, -- Wickedness
[1236220] = -50, -- Slow
},
}
Data.Enchant = {
BlockValue = {
[2583] = 15, -- Presence of Might
[2653] = 18, -- Enchant Shield - Tough Shield
[2655] = 15, -- Enchant Shield - Shield Block
[3849] = 81, -- Titanium Plating
[7633] = 15, -- Presence of Valor
},
Ids = {
BIZNICK_SCOPE = 2523, -- 3% Hit from Biznicks 247x128 Accurascope
},
MP5 = {
[2381] = 10, -- Enchant Chest - Greater Mana Restoration
[2565] = 4, -- Enchant Bracer - Mana Regeneration
[2590] = 4, -- Prophetic Aura
[2624] = 4, -- Minor Mana Oil
[2625] = 8, -- Lesser Mana Oil
[2629] = 12, -- Brilliant Mana Oil
[2656] = 4, -- Enchant Boots - Vitality
[2677] = 14, -- Superior Mana Oil
[2679] = 6, -- Enchant Bracer - Restore Mana Prime
[2715] = 4, -- Resilience of the Scourge
[2980] = 4, -- Greater Inscription of Faith
[2992] = 5, -- Inscription of the Oracle
[2993] = 6, -- Greater Inscription of the Oracle
[3001] = 7, -- Glyph of Renewal
[3150] = 6, -- Enchant Chest – Restore Mana Prime
[3244] = 7, -- Enchant Boots - Greater Vitality
[3298] = 19, -- Exceptional Mana Oil
[3807] = 5, -- Inscription of the Crag
[3809] = 8, -- Greater Inscription of the Crag
[3819] = 10, -- Arcanum of Blissful Mending
[3836] = 8, -- Master's Inscription of the Crag
[7099] = 12, -- Blackfathom Mana Oil. This effect only applies within Blackfathom Deeps.
},
}
Data.Gem = {
MP5 = {
[23106] = 2, -- Dazzling Deep Peridot
[23109] = 2, -- Royal Shadow Draenite
[23121] = 3, -- Lustrous Azure Moonstone
[24037] = 4, -- Lustrous Star of Elune
[24057] = 2, -- Royal Nightseye
[24065] = 2, -- Dazzling Talasite
[28465] = 2, -- Lustrous Zircon
[30550] = 2, -- Sundered Chrysoprase
[30560] = 2, -- Rune Covered Chrysoprase
[30589] = 2, -- Dazzling Chrysoprase
[30594] = 2, -- Effulgent Chrysoprase
[30603] = 2, -- Royal Tanzanite
[30606] = 2, -- Lambent Chrysoprase
[31864] = 1, -- Infused Shadow Draenite
[31865] = 2, -- Infused Nightseye
[32202] = 5, -- Lustrous Empyrean Sapphire
[32214] = 3, -- Infused Shadowsong Amethyst
[32216] = 3, -- Royal Shadowsong Amethyst
[32225] = 3, -- Dazzling Seaspray Emerald
[39927] = 6, -- Lustrous Chalcedony
[39942] = 3, -- Tenuous Shadow Crystal
[39943] = 3, -- Royal Shadow Crystal
[39944] = 3, -- Infused Shadow Crystal
[39984] = 3, -- Dazzling Dark Jade
[39985] = 3, -- Sundered Dark Jade
[39986] = 3, -- Lambent Dark Jade
[39988] = 3, -- Opaque Dark Jade
[39989] = 3, -- Energized Dark Jade
[40010] = 8, -- Lustrous Sky Sapphire
[40024] = 4, -- Tenuous Twilight Opal
[40027] = 4, -- Royal Twilight Opal
[40030] = 4, -- Infused Twilight Opal
[40094] = 4, -- Dazzling Forest Emerald
[40096] = 4, -- Sundered Forest Emerald
[40100] = 4, -- Lambent Forest Emerald
[40103] = 4, -- Opaque Forest Emerald
[40105] = 4, -- Energized Forest Emerald
[40121] = 10, -- Lustrous Majestic Zircon
[40131] = 5, -- Tenuous Dreadstone
[40134] = 5, -- Royal Dreadstone
[40137] = 5, -- Infused Dreadstone
[40175] = 5, -- Dazzling Eye of Zul
[40176] = 5, -- Sundered Eye of Zul
[40177] = 5, -- Lambent Eye of Zul
[40178] = 5, -- Opaque Eye of Zul
[40179] = 5, -- Energized Eye of Zul
[41376] = 11, -- Revitalizing Skyflare Diamond
[41440] = 7, -- Perfect Lustrous Chalcedony
[41454] = 4, -- Perfect Infused Shadow Crystal
[41459] = 4, -- Perfect Royal Shadow Crystal
[41462] = 4, -- Perfect Tenuous Shadow Crystal
[41463] = 4, -- Perfect Dazzling Dark Jade
[41465] = 4, -- Perfect Energized Dark Jade
[41469] = 4, -- Perfect Lambent Dark Jade
[41471] = 4, -- Perfect Opaque Dark Jade
[41477] = 4, -- Perfect Sundered Dark Jade
[42146] = 17, -- Lustrous Dragon's Eye
},
}
Data.Item = {
IsTimeworn = {
[233496] = true,
[233505] = true,
[233506] = true,
[233514] = true,
[233516] = true,
[233517] = true,
[233518] = true,
[233520] = true,
[233521] = true,
[233522] = true,
[233523] = true,
[233559] = true,
[233560] = true,
[233561] = true,
[233563] = true,
[233564] = true,
[233566] = true,
[233567] = true,
[233568] = true,
[233573] = true,
[233574] = true,
[233575] = true,
[233577] = true,
[233578] = true,
[233579] = true,
[233582] = true,
[233583] = true,
[233584] = true,
[233590] = true,
[233591] = true,
[233592] = true,
[233593] = true,
[233594] = true,
[233595] = true,
[233598] = true,
[233603] = true,
[233604] = true,
[233607] = true,
[233608] = true,
[233610] = true,
[233611] = true,
[233612] = true,
[233613] = true,
[233614] = true,
[233617] = true,
[233618] = true,
[233619] = true,
[233622] = true,
[233623] = true,
[233624] = true,
[233625] = true,
[233631] = true,
[233632] = true,
[233633] = true,
[233635] = true,
[233637] = true,
[233644] = true,
[233645] = true,
[233646] = true,
[234062] = true,
[234063] = true,
[234064] = true,
[234065] = true,
[234066] = true,
[234068] = true,
[234069] = true,
[234070] = true,
[234071] = true,
[234072] = true,
[234073] = true,
[234075] = true,
[234077] = true,
[234078] = true,
[234081] = true,
[234082] = true,
[234084] = true,
[234087] = true,
[234088] = true,
[234090] = true,
[234091] = true,
[234093] = true,
[234094] = true,
[234095] = true,
[234098] = true,
[234099] = true,
[234100] = true,
[234102] = true,
[234103] = true,
[234105] = true,
[234106] = true,
[234107] = true,
[234108] = true,
[234109] = true,
[234110] = true,
[234111] = true,
[234114] = true,
[234117] = true,
[234120] = true,
[234123] = true,
[234146] = true,
[234147] = true,
[234148] = true,
[234149] = true,
[234150] = true,
[234156] = true,
[234157] = true,
[234161] = true,
[234162] = true,
[234163] = true,
[234164] = true,
[234165] = true,
[234166] = true,
[234167] = true,
[234168] = true,
[234171] = true,
[234173] = true,
[234174] = true,
[234962] = true,
[234963] = true,
[235047] = true,
},
SpellHaste = {
[235874] = 2,
[236060] = 2,
[236062] = 2,
[236064] = 2,
[236077] = 1,
[236078] = 2,
[236079] = 2,
[236080] = 2,
[236081] = 2,
[236082] = 2,
[236083] = 2,
[236084] = 2,
[236085] = 1,
[236087] = 2,
[236088] = 2,
[236089] = 2,
[236090] = 2,
[236091] = 2,
[236092] = 2,
[236093] = 2,
[236094] = 2,
[236095] = 2,
[236115] = 2,
[236116] = 2,
[236117] = 2,
[236118] = 2,
[236119] = 2,
[236120] = 2,
[236121] = 2,
[236122] = 2,
[236123] = 2,
[236142] = 2,
[236143] = 2,
[236144] = 2,
[236145] = 2,
[236146] = 2,
[236147] = 2,
[236148] = 2,
[236149] = 2,
[236150] = 2,
[236151] = 1,
[236152] = 2,
[236153] = 2,
[236154] = 2,
[236155] = 2,
[236156] = 2,
[236157] = 1,
[236158] = 2,
[236159] = 2,
[236261] = 1,
[236264] = 1,
[236265] = 1,
[236267] = 2,
[236273] = 1,
[236275] = 1,
[236277] = 2,
[236289] = 1,
[236296] = 1,
[236298] = 2,
[236303] = 3,
[236305] = 4,
[236327] = 2,
[236328] = 2,
[236346] = 4,
[236347] = 2,
[236348] = 2,
[236400] = 4,
[236644] = 2,
[236645] = 1,
[240020] = 1,
[240021] = 2,
[240022] = 2,
[240039] = 2,
[240040] = 2,
[240041] = 3,
[240042] = 3,
[240043] = 3,
[240044] = 1,
[240045] = 1,
[240046] = 2,
[240047] = 3,
[240048] = 4,
[240049] = 2,
[240050] = 2,
[240051] = 2,
[240053] = 2,
[240054] = 2,
[240055] = 3,
[240056] = 3,
[240057] = 1,
[240058] = 2,
[240059] = 2,
[240092] = 2,
[240093] = 2,
[240096] = 2,
[240097] = 2,
[240098] = 3,
[240099] = 1,
[240100] = 2,
[240109] = 3,
[240110] = 3,
[240122] = 1,
[240123] = 2,
[240124] = 3,
[240125] = 1,
[240126] = 3,
[240127] = 1,
[240138] = 2,
[240139] = 2,
[240140] = 2,
[240141] = 2,
[240142] = 3,
[240143] = 2,
[240145] = 2,
[241002] = 2,
[241003] = 2,
[241006] = 2,
[241011] = 4,
[241017] = 1,
[241018] = 1,
[241031] = 1,
[241039] = 4,
[241153] = 4,
[241160] = 4,
[241161] = 3,
[241168] = 3,
[241176] = 3,
[241177] = 3,
[241181] = 4,
[241182] = 4,
[241183] = 3,
[242315] = 3,
[242317] = 3,
},
TimewornSpellHaste = {
[234016] = 2,
[234020] = 2,
[234024] = 2,
[234028] = 2,
[234032] = 2,
},
}
Data.setNames = {
AUGURS_REGALIA = "Augur's Regalia",
BLOODSOUL_EMBRACE = "Bloodsoul Embrace",
DAWN_OF_TRANSCENDENCE = "Dawn of Transcendence",
FEL_IRON_CHAIN = "Fel Iron Chain",
FREETHINKERS_ARMOR = "Freethinker's Armor",
GREEN_DRAGON_MAIL = "Green Dragon Mail",
HARUSPEXS_GARB = "Haruspex's Garb",
LIVING_GREEN_DRAGON_MAIL = "Living Green Dragon Mail",
PRIMAL_MOONCLOTH = "Primal Mooncloth",
STORMRAGE_RAIMENT = "Stormrage Raiment",
TEN_STORMS = "The Ten Storms",
THE_EARTHSHATTERER = "The Earthshatterer",
VESTMENTS_OF_TRANSCENDENCE = "Vestments of Transcendence",
WINDHAWK_ARMOR = "Windhawk Armor",
}
Data.Talent = {
-- keep-sorted start block=yes
[Data.DEATHKNIGHT] = {
-- keep-sorted start
BLOOD_GORGED = {61274,61275,61276,61277,61278},
VIRULENCE = {48962,49567,49568},
-- keep-sorted end
},
[Data.DRUID] = {
-- keep-sorted start
BALANCE_OF_POWER = {33592,33596},
INTENSITY_REFLECTION = {17106,17107,17108},
NATURAL_PERFECTION = {33881,33882,33883},
SURVIVAL_OF_THE_FITTEST = {33853,33855,33856},
-- keep-sorted end
},
[Data.MAGE] = {
-- keep-sorted start
ARCANE_FOCUS = {11222,12839,12840,12841,12842},
ARCANE_INSTABILITY = {15058,15059,15060},
ARCANE_MEDITATION = {14521,18463,18464},
CRITICAL_MASS = {11115,11367,11368},
ELEMENTAL_PRECISION = {29438,29439,29440},
PYROMANIAC = {34293,34295,34296},
-- keep-sorted end
},
[Data.PALADIN] = {
-- keep-sorted start
CONVICTION = {20117,20118,20119,20120,20121},
ENLIGHTENED_JUDGEMENTS = {53556,53557},
SANCTITY_OF_BATTLE = {32043,35396,35397},
-- keep-sorted end
},
[Data.PRIEST] = {
-- keep-sorted start
HOLY_POWER = {5923,5924,5925,5926,25829},
HOLY_SPECIALIZATION = {14889,15008,15009,15010,15011},
MEDITATION = {14521,14776,14777},
SHADOW_FOCUS = {15260,15327,15328},
SHADOW_RESILIENCE = {14910,33371},
-- keep-sorted end
},
[Data.ROGUE] = {
-- keep-sorted start
PRECISION = {13705,13832,13843,13844,13845},
SLEIGHT_OF_HAND = {30892,30893},
-- keep-sorted end
},
[Data.SHAMAN] = {
-- keep-sorted start
ELEMENTAL_PRECISION = {30672,30673,30674},
NATURES_GUIDANCE = {16180,16196,16198},
THUNDERING_STRIKES = {16255,16302,16303,16304,16305},
-- keep-sorted end
},
[Data.WARLOCK] = {
-- keep-sorted start
BACKLASH = {34935,34938,34939},
DEMONIC_RESILIENCE = {30319,30320,30321},
DEMONIC_TACTICS = {30242,30245,30246,30247,30248},
DEVASTATION = {18130,18131,18132,18133,18134},
SUPPRESSION = {18174,18175,18176},
-- keep-sorted end
},
-- keep-sorted end
}