forked from BigWigsMods/Transcriptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpellBlacklist.lua
2347 lines (2347 loc) · 78.8 KB
/
SpellBlacklist.lua
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
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local n, tbl = ...
tbl.blacklist = {
[17] = true, -- Power Word: Shield
[53] = true, -- Backstab
[66] = true, -- Invisibility
[99] = true, -- Incapacitating Roar
[100] = true, -- Charge
[116] = true, -- Frostbolt
[118] = true, -- Polymorph
[120] = true, -- Cone of Cold
[122] = true, -- Frost Nova
[130] = true, -- Slow Fall
[133] = true, -- Fireball
[136] = true, -- Mend Pet
[139] = true, -- Renew
[172] = true, -- Corruption
[339] = true, -- Entangling Roots
[348] = true, -- Immolate
[355] = true, -- Taunt
[370] = true, -- Purge
[408] = true, -- Kidney Shot
[475] = true, -- Remove Curse
[498] = true, -- Divine Protection
[527] = true, -- Purify
[528] = true, -- Dispel Magic
[546] = true, -- Water Walking
[585] = true, -- Smite
[586] = true, -- Fade
[589] = true, -- Shadow Word: Pain
[596] = true, -- Prayer of Healing
[605] = true, -- Mind Control
[633] = true, -- Lay on Hands
[642] = true, -- Divine Shield
[686] = true, -- Shadow Bolt
[688] = true, -- Summon Imp
[691] = true, -- Summon Felhunter
[697] = true, -- Summon Voidwalker
[698] = true, -- Ritual of Summoning
[703] = true, -- Garrote
[740] = true, -- Tranquility
[755] = true, -- Health Funnel
[768] = true, -- Cat Form
[772] = true, -- Rend
[774] = true, -- Rejuvenation
[781] = true, -- Disengage
[783] = true, -- Travel Form
[845] = true, -- Cleave
[853] = true, -- Hammer of Justice
[871] = true, -- Shield Wall
[883] = true, -- Call Pet 1
[974] = true, -- Earth Shield
[980] = true, -- Agony
[982] = true, -- Revive Pet
[1022] = true, -- Blessing of Protection
[1044] = true, -- Blessing of Freedom
[1064] = true, -- Chain Heal
[1079] = true, -- Rip
[1122] = true, -- Summon Infernal
[1160] = true, -- Demoralizing Shout
[1329] = true, -- Mutilate
[1330] = true, -- Garrote - Silence
[1449] = true, -- Arcane Explosion
[1459] = true, -- Arcane Intellect
[1464] = true, -- Slam
[1490] = true, -- Chaos Brand
[1543] = true, -- Flare
[1680] = true, -- Whirlwind
[1706] = true, -- Levitate
[1715] = true, -- Hamstring
[1719] = true, -- Recklessness
[1766] = true, -- Kick
[1776] = true, -- Gouge
[1784] = true, -- Stealth
[1822] = true, -- Rake
[1833] = true, -- Cheap Shot
[1850] = true, -- Dash
[1856] = true, -- Vanish
[1943] = true, -- Rupture
[1953] = true, -- Blink
[1966] = true, -- Feint
[2006] = true, -- Resurrection
[2050] = true, -- Holy Word: Serenity
[2060] = true, -- Heal
[2061] = true, -- Flash Heal
[2094] = true, -- Blind
[2098] = true, -- Dispatch
[2120] = true, -- Flamestrike
[2139] = true, -- Counterspell
[2379] = true, -- Speed
[2383] = true, -- Find Herbs
[2484] = true, -- Earthbind Totem
[2565] = true, -- Shield Block
[2580] = true, -- Find Minerals
[2641] = true, -- Dismiss Pet
[2643] = true, -- Multi-Shot
[2645] = true, -- Ghost Wolf
[2649] = true, -- Growl
[2782] = true, -- Remove Corruption
[2818] = true, -- Deadly Poison
[2823] = true, -- Deadly Poison
[2908] = true, -- Soothe
[2948] = true, -- Scorch
[2983] = true, -- Sprint
[3110] = true, -- Firebolt
[3355] = true, -- Freezing Trap
[3408] = true, -- Crippling Poison
[3409] = true, -- Crippling Poison
[3600] = true, -- Earthbind
[3714] = true, -- Path of Frost
[3716] = true, -- Consuming Shadows
[4987] = true, -- Cleanse
[5019] = true, -- Shoot
[5116] = true, -- Concussive Shot
[5143] = true, -- Arcane Missiles
[5171] = true, -- Slice and Dice
[5176] = true, -- Wrath
[5211] = true, -- Mighty Bash
[5215] = true, -- Prowl
[5217] = true, -- Tiger's Fury
[5221] = true, -- Shred
[5225] = true, -- Track Humanoids
[5246] = true, -- Intimidating Shout
[5277] = true, -- Evasion
[5302] = true, -- Revenge!
[5308] = true, -- Execute
[5394] = true, -- Healing Stream Totem
[5487] = true, -- Bear Form
[5672] = true, -- Healing Stream
[5697] = true, -- Unending Breath
[5740] = true, -- Rain of Fire
[5782] = true, -- Fear
[6197] = true, -- Eagle Eye
[6201] = true, -- Create Healthstone
[6262] = true, -- Healthstone
[6343] = true, -- Thunder Clap
[6353] = true, -- Soul Fire
[6358] = true, -- Seduction
[6360] = true, -- Whiplash
[6552] = true, -- Pummel
[6572] = true, -- Revenge
[6673] = true, -- Battle Shout
[6770] = true, -- Sap
[6788] = true, -- Weakened Soul
[6789] = true, -- Mortal Coil
[6795] = true, -- Growl
[6807] = true, -- Maul
[6940] = true, -- Blessing of Sacrifice
[7328] = true, -- Redemption
[7384] = true, -- Overpower
[7814] = true, -- Lash of Pain
[7870] = true, -- Lesser Invisibility
[8004] = true, -- Healing Surge
[8042] = true, -- Earth Shock
[8092] = true, -- Mind Blast
[8122] = true, -- Psychic Scream
[8143] = true, -- Tremor Totem
[8212] = true, -- Giant Growth
[8676] = true, -- Ambush
[8679] = true, -- Wound Poison
[8680] = true, -- Wound Poison
[8690] = true, -- Hearthstone
[8921] = true, -- Moonfire
[8936] = true, -- Regrowth
[9484] = true, -- Shackle Undead
[9512] = true, -- Restore Energy
[11196] = true, -- Recently Bandaged
[11327] = true, -- Vanish
[11366] = true, -- Pyroblast
[11426] = true, -- Ice Barrier
[12042] = true, -- Arcane Power
[12051] = true, -- Evocation
[12294] = true, -- Mortal Strike
[12323] = true, -- Piercing Howl
[12472] = true, -- Icy Veins
[12654] = true, -- Ignite
[12975] = true, -- Last Stand
[13750] = true, -- Adrenaline Rush
[13819] = true, -- Summon Warhorse
[13877] = true, -- Blade Flurry
[14914] = true, -- Holy Fire
[15286] = true, -- Vampiric Embrace
[15407] = true, -- Mind Flay
[15487] = true, -- Silence
[16739] = true, -- Orb of Deception
[16827] = true, -- Claw
[16870] = true, -- Clearcasting
[16953] = true, -- Primal Fury
[16979] = true, -- Wild Charge
[17253] = true, -- Bite
[17364] = true, -- Stormstrike
[17735] = true, -- Suffering
[17767] = true, -- Shadow Bulwark
[17877] = true, -- Shadowburn
[17962] = true, -- Conflagrate
[18499] = true, -- Berserker Rage
[18562] = true, -- Swiftmend
[19236] = true, -- Desperate Prayer
[19434] = true, -- Aimed Shot
[19483] = true, -- Immolation
[19505] = true, -- Devour Magic
[19574] = true, -- Bestial Wrath
[19577] = true, -- Intimidation
[19647] = true, -- Spell Lock
[19710] = true, -- Well Fed
[19750] = true, -- Flash of Light
[20243] = true, -- Devastate
[20271] = true, -- Judgment
[20473] = true, -- Holy Shock
[20484] = true, -- Rebirth
[20572] = true, -- Blood Fury
[20589] = true, -- Escape Artist
[20707] = true, -- Soulstone
[21169] = true, -- Reincarnation
[21562] = true, -- Power Word: Fortitude
[22568] = true, -- Ferocious Bite
[22570] = true, -- Maim
[22703] = true, -- Infernal Awakening
[22812] = true, -- Barkskin
[22842] = true, -- Frenzied Regeneration
[23034] = true, -- Battle Standard
[23161] = true, -- Dreadsteed
[23214] = true, -- Summon Charger
[23881] = true, -- Bloodthirst
[23920] = true, -- Spell Reflection
[23922] = true, -- Shield Slam
[24275] = true, -- Hammer of Wrath
[24394] = true, -- Intimidation
[24423] = true, -- Bloody Screech
[24450] = true, -- Prowl
[24858] = true, -- Moonkin Form
[25771] = true, -- Forbearance
[26064] = true, -- Shell Shield
[26297] = true, -- Berserking
[26573] = true, -- Consecration
[27243] = true, -- Seed of Corruption
[27576] = true, -- Mutilate
[27827] = true, -- Spirit of Redemption
[28517] = true, -- Rejuvenation Potion
[28880] = true, -- Gift of the Naaru
[29166] = true, -- Innervate
[29722] = true, -- Incinerate
[29893] = true, -- Create Soulwell
[30108] = true, -- Unstable Affliction
[30146] = true, -- Summon Felguard
[30151] = true, -- Pursuit
[30213] = true, -- Legion Strike
[30283] = true, -- Shadowfury
[30449] = true, -- Spellsteal
[30451] = true, -- Arcane Blast
[30455] = true, -- Ice Lance
[31224] = true, -- Cloak of Shadows
[31589] = true, -- Slow
[31661] = true, -- Dragon's Breath
[31687] = true, -- Summon Water Elemental
[31707] = true, -- Waterbolt
[31821] = true, -- Aura Mastery
[31850] = true, -- Ardent Defender
[31884] = true, -- Avenging Wrath
[31935] = true, -- Avenger's Shield
[32182] = true, -- Heroism
[32216] = true, -- Victorious
[32375] = true, -- Mass Dispel
[32379] = true, -- Shadow Word: Death
[32390] = true, -- Shadow Embrace
[32546] = true, -- Binding Heal
[32612] = true, -- Invisibility
[32645] = true, -- Envenom
[32752] = true, -- Summoning Disorientation
[33076] = true, -- Prayer of Mending
[33206] = true, -- Pain Suppression
[33395] = true, -- Freeze
[33763] = true, -- Lifebloom
[33891] = true, -- Incarnation: Tree of Life
[33917] = true, -- Mangle
[34026] = true, -- Kill Command
[34428] = true, -- Victory Rush
[34433] = true, -- Shadowfiend
[34477] = true, -- Misdirection
[34861] = true, -- Holy Word: Sanctify
[34914] = true, -- Vampiric Touch
[35079] = true, -- Misdirection
[35395] = true, -- Crusader Strike
[36213] = true, -- Angered Earth
[36554] = true, -- Shadowstep
[40120] = true, -- Travel Form
[41425] = true, -- Hypothermia
[41635] = true, -- Prayer of Mending
[42650] = true, -- Army of the Dead
[42651] = true, -- Army of the Dead
[43265] = true, -- Death and Decay
[43308] = true, -- Find Fish
[44425] = true, -- Arcane Barrage
[44457] = true, -- Living Bomb
[44535] = true, -- Spirit Heal
[44544] = true, -- Fingers of Frost
[44614] = true, -- Flurry
[45053] = true, -- Disdain
[45058] = true, -- Evasive Maneuvers
[45181] = true, -- Cheated Death
[45182] = true, -- Cheating Death
[45242] = true, -- Focused Will
[45334] = true, -- Immobilized
[45438] = true, -- Ice Block
[45524] = true, -- Chains of Ice
[45544] = true, -- First Aid
[46924] = true, -- Bladestorm
[46968] = true, -- Shockwave
[47528] = true, -- Mind Freeze
[47536] = true, -- Rapture
[47540] = true, -- Penance
[47541] = true, -- Death Coil
[47568] = true, -- Empower Rune Weapon
[47585] = true, -- Dispersion
[47788] = true, -- Guardian Spirit
[48018] = true, -- Demonic Circle
[48020] = true, -- Demonic Circle: Teleport
[48045] = true, -- Mind Sear
[48107] = true, -- Heating Up
[48108] = true, -- Hot Streak!
[48181] = true, -- Haunt
[48265] = true, -- Death's Advance
[48438] = true, -- Wild Growth
[48707] = true, -- Anti-Magic Shell
[48743] = true, -- Death Pact
[48778] = true, -- Acherus Deathcharger
[48792] = true, -- Icebound Fortitude
[49020] = true, -- Obliterate
[49028] = true, -- Dancing Rune Weapon
[49143] = true, -- Frost Strike
[49184] = true, -- Howling Blast
[49206] = true, -- Summon Gargoyle
[49376] = true, -- Wild Charge
[49576] = true, -- Death Grip
[49821] = true, -- Mind Sear
[49966] = true, -- Smack
[49998] = true, -- Death Strike
[50245] = true, -- Pin
[50259] = true, -- Dazed
[50769] = true, -- Revive
[50842] = true, -- Blood Boil
[51124] = true, -- Killing Machine
[51271] = true, -- Pillar of Frost
[51399] = true, -- Death Grip
[51460] = true, -- Runic Corruption
[51485] = true, -- Earthgrab Totem
[51490] = true, -- Thunderstorm
[51505] = true, -- Lava Burst
[51533] = true, -- Feral Spirit
[51690] = true, -- Killing Spree
[51714] = true, -- Razorice
[51723] = true, -- Fan of Knives
[51886] = true, -- Cleanse Spirit
[51963] = true, -- Gargoyle Strike
[52150] = true, -- Raise Dead
[52174] = true, -- Heroic Leap
[52437] = true, -- Sudden Death
[52610] = true, -- Savage Roar
[53209] = true, -- Chimaera Shot
[53271] = true, -- Master's Call
[53365] = true, -- Unholy Strength
[53385] = true, -- Divine Storm
[53390] = true, -- Tidal Waves
[53480] = true, -- Roar of Sacrifice
[53563] = true, -- Beacon of Light
[53595] = true, -- Hammer of the Righteous
[53600] = true, -- Shield of the Righteous
[54049] = true, -- Shadow Bite
[54149] = true, -- Infusion of Light
[54216] = true, -- Master's Call
[54680] = true, -- Monstrous Bite
[54861] = true, -- Nitro Boosts
[55001] = true, -- Parachute
[55078] = true, -- Blood Plague
[55090] = true, -- Scourge Strike
[55095] = true, -- Frost Fever
[55164] = true, -- Swift Spectral Gryphon
[55173] = true, -- Swift Flying Wisp
[55233] = true, -- Vampiric Blood
[55342] = true, -- Mirror Image
[56222] = true, -- Dark Command
[56641] = true, -- Steady Shot
[57330] = true, -- Horn of Winter
[57723] = true, -- Exhaustion
[57755] = true, -- Heroic Throw
[57934] = true, -- Tricks of the Trade
[57984] = true, -- Fire Blast
[57994] = true, -- Wind Shear
[58180] = true, -- Infected Wounds
[58450] = true, -- Agility
[58867] = true, -- Spirit Leap
[58875] = true, -- Spirit Walk
[58984] = true, -- Shadowmeld
[59052] = true, -- Rime
[59542] = true, -- Gift of the Naaru
[59543] = true, -- Gift of the Naaru
[59544] = true, -- Gift of the Naaru
[59545] = true, -- Gift of the Naaru
[59547] = true, -- Gift of the Naaru
[59548] = true, -- Gift of the Naaru
[59628] = true, -- Tricks of the Trade
[59638] = true, -- Frostbolt
[59752] = true, -- Will to Survive
[60103] = true, -- Lava Lash
[60229] = true, -- Strength
[60233] = true, -- Agility
[60234] = true, -- Intellect
[61295] = true, -- Riptide
[61336] = true, -- Survival Instincts
[61391] = true, -- Typhoon
[61684] = true, -- Dash
[61882] = true, -- Earthquake
[61999] = true, -- Raise Ally
[62124] = true, -- Hand of Reckoning
[62305] = true, -- Master's Call
[62618] = true, -- Power Word: Barrier
[63106] = true, -- Siphon Life
[63560] = true, -- Dark Transformation
[63619] = true, -- Shadowcrawl
[64044] = true, -- Psychic Horror
[64695] = true, -- Earthgrab
[64843] = true, -- Divine Hymn
[64844] = true, -- Divine Hymn
[64901] = true, -- Symbol of Hope
[65081] = true, -- Body and Soul
[65116] = true, -- Stoneform
[66906] = true, -- Argent Charger
[68992] = true, -- Darkflight
[69369] = true, -- Predatory Swiftness
[70242] = true, -- "Bravado" Cologne
[72968] = true, -- Precious's Ribbon
[73325] = true, -- Leap of Faith
[73326] = true, -- Tabard of the Lightbringer
[73685] = true, -- Unleash Life
[73920] = true, -- Healing Rain
[75531] = true, -- Gnomeregan Pride
[77130] = true, -- Purify Spirit
[77472] = true, -- Healing Wave
[77489] = true, -- Echo of Light
[77505] = true, -- Earthquake
[77535] = true, -- Blood Shield
[77575] = true, -- Outbreak
[77758] = true, -- Thrash
[77761] = true, -- Stampeding Roar
[77762] = true, -- Lava Surge
[77764] = true, -- Stampeding Roar
[78674] = true, -- Starsurge
[78675] = true, -- Solar Beam
[79140] = true, -- Vendetta
[79206] = true, -- Spiritwalker's Grace
[80240] = true, -- Havoc
[80313] = true, -- Pulverize
[80353] = true, -- Time Warp
[80354] = true, -- Temporal Displacement
[80396] = true, -- Illusion
[81141] = true, -- Crimson Scourge
[81256] = true, -- Dancing Rune Weapon
[81262] = true, -- Efflorescence
[81340] = true, -- Sudden Doom
[82326] = true, -- Holy Light
[82691] = true, -- Ring of Frost
[82841] = true, -- Rock Bash
[83242] = true, -- Call Pet 2
[83243] = true, -- Call Pet 3
[83244] = true, -- Call Pet 4
[83245] = true, -- Call Pet 5
[84342] = true, -- Loot-A-Rang
[84714] = true, -- Frozen Orb
[84963] = true, -- Inquisition
[85222] = true, -- Light of Dawn
[85256] = true, -- Templar's Verdict
[85288] = true, -- Raging Blow
[85739] = true, -- Whirlwind
[85948] = true, -- Festering Strike
[86659] = true, -- Guardian of Ancient Kings
[87023] = true, -- Cauterize
[87024] = true, -- Cauterized
[87204] = true, -- Sin and Punishment
[87840] = true, -- Running Wild
[88082] = true, -- Fireball
[88084] = true, -- Arcane Blast
[88423] = true, -- Nature's Cure
[88625] = true, -- Holy Word: Chastise
[89479] = true, -- Guild Battle Standard
[89751] = true, -- Felstorm
[89753] = true, -- Felstorm
[89766] = true, -- Axe Toss
[89808] = true, -- Singe Magic
[90328] = true, -- Spirit Walk
[90361] = true, -- Spirit Mend
[90626] = true, -- Guild Battle Standard
[90628] = true, -- Guild Battle Standard
[90898] = true, -- Tendrils of Darkness
[90985] = true, -- Dead Winds
[91021] = true, -- Find Weakness
[91352] = true, -- Polarization
[91797] = true, -- Monstrous Blow
[91800] = true, -- Gnaw
[91807] = true, -- Shambling Rush
[92089] = true, -- Grace
[93402] = true, -- Sunfire
[93622] = true, -- Gore
[94719] = true, -- The Innkeeper's Daughter
[96231] = true, -- Rebuke
[96243] = true, -- Invisibility
[97462] = true, -- Rallying Cry
[97463] = true, -- Rallying Cry
[98008] = true, -- Spirit Link Totem
[98444] = true, -- Vrykul Drinking Horn
[100130] = true, -- Furious Slash
[100780] = true, -- Tiger Palm
[100784] = true, -- Blackout Kick
[101285] = true, -- Summon the Black Brewmaiden
[101545] = true, -- Flying Serpent Kick
[101546] = true, -- Spinning Crane Kick
[101568] = true, -- Dark Succor
[101643] = true, -- Transcendence
[102342] = true, -- Ironbark
[102351] = true, -- Cenarion Ward
[102352] = true, -- Cenarion Ward
[102359] = true, -- Mass Entanglement
[102383] = true, -- Wild Charge
[102401] = true, -- Wild Charge
[102417] = true, -- Wild Charge
[102543] = true, -- Incarnation: King of the Jungle
[102558] = true, -- Incarnation: Guardian of Ursoc
[102560] = true, -- Incarnation: Chosen of Elune
[102659] = true, -- Arrow of Time
[102793] = true, -- Ursol's Vortex
[104316] = true, -- Call Dreadstalkers
[104317] = true, -- Wild Imp
[104318] = true, -- Fel Firebolt
[104773] = true, -- Unending Resolve
[105174] = true, -- Hand of Gul'dan
[105421] = true, -- Blinding Light
[105693] = true, -- Flask of Falling Leaves
[105771] = true, -- Charge
[105809] = true, -- Holy Avenger
[106785] = true, -- Swipe
[106830] = true, -- Thrash
[106839] = true, -- Skull Bash
[106898] = true, -- Stampeding Roar
[106951] = true, -- Berserk
[107079] = true, -- Quaking Palm
[107428] = true, -- Rising Sun Kick
[107570] = true, -- Storm Bolt
[107574] = true, -- Avatar
[108194] = true, -- Asphyxiate
[108199] = true, -- Gorefiend's Grasp
[108211] = true, -- Leeching Poison
[108238] = true, -- Renewal
[108271] = true, -- Astral Shift
[108280] = true, -- Healing Tide Totem
[108281] = true, -- Ancestral Guidance
[108366] = true, -- Soul Leech
[108416] = true, -- Dark Pact
[108446] = true, -- Soul Link
[108503] = true, -- Grimoire of Sacrifice
[108839] = true, -- Ice Floes
[108843] = true, -- Blazing Speed
[108853] = true, -- Fire Blast
[109128] = true, -- Charge
[109132] = true, -- Roll
[109248] = true, -- Binding Shot
[109304] = true, -- Exhilaration
[109746] = true, -- Titanic Strength
[110168] = true, -- Bitter Brew
[110744] = true, -- Divine Star
[110959] = true, -- Greater Invisibility
[110960] = true, -- Greater Invisibility
[111240] = true, -- Blindside
[111400] = true, -- Burning Rush
[111685] = true, -- Summon Infernal
[111759] = true, -- Levitate
[111771] = true, -- Demonic Gateway
[111898] = true, -- Grimoire: Felguard
[112042] = true, -- Threatening Presence
[112866] = true, -- Summon Fel Imp
[112867] = true, -- Summon Voidlord
[112870] = true, -- Summon Wrathguard
[113656] = true, -- Fists of Fury
[113724] = true, -- Ring of Frost
[113746] = true, -- Mystic Touch
[113858] = true, -- Dark Soul: Instability
[113860] = true, -- Dark Soul: Misery
[113862] = true, -- Greater Invisibility
[113899] = true, -- Demonic Gateway
[113900] = true, -- Demonic Gateway
[113942] = true, -- Demonic Gateway
[114014] = true, -- Shuriken Toss
[114018] = true, -- Shroud of Concealment
[114050] = true, -- Ascendance
[114051] = true, -- Ascendance
[114052] = true, -- Ascendance
[114074] = true, -- Lava Beam
[114108] = true, -- Soul of the Forest
[114158] = true, -- Light's Hammer
[114165] = true, -- Holy Prism
[114250] = true, -- Selfless Healer
[114255] = true, -- Surge of Light
[114282] = true, -- Treant Form
[114923] = true, -- Nether Tempest
[115008] = true, -- Chi Torpedo
[115072] = true, -- Expel Harm
[115078] = true, -- Paralysis
[115080] = true, -- Touch of Death
[115098] = true, -- Chi Wave
[115151] = true, -- Renewing Mist
[115175] = true, -- Soothing Mist
[115176] = true, -- Zen Meditation
[115181] = true, -- Breath of Fire
[115191] = true, -- Stealth
[115192] = true, -- Subterfuge
[115203] = true, -- Fortifying Brew
[115276] = true, -- Sear Magic
[115295] = true, -- Guard
[115308] = true, -- Ironskin Brew
[115310] = true, -- Revival
[115313] = true, -- Summon Jade Serpent Statue
[115315] = true, -- Summon Black Ox Statue
[115356] = true, -- Windstrike
[115450] = true, -- Detox
[115546] = true, -- Provoke
[115750] = true, -- Blinding Light
[115767] = true, -- Deep Wounds
[115804] = true, -- Mortal Wounds
[115834] = true, -- Shroud of Concealment
[116011] = true, -- Rune of Power
[116014] = true, -- Rune of Power
[116095] = true, -- Disable
[116189] = true, -- Provoke
[116670] = true, -- Vivify
[116680] = true, -- Thunder Focus Tea
[116705] = true, -- Spear Hand Strike
[116706] = true, -- Disable
[116768] = true, -- Blackout Kick!
[116841] = true, -- Tiger's Lust
[116844] = true, -- Ring of Peace
[116847] = true, -- Rushing Jade Wind
[116849] = true, -- Life Cocoon
[116858] = true, -- Chaos Bolt
[116888] = true, -- Shroud of Purgatory
[116947] = true, -- Earthbind
[117014] = true, -- Elemental Blast
[117405] = true, -- Binding Shot
[117526] = true, -- Binding Shot
[117588] = true, -- Meteor
[117679] = true, -- Incarnation
[117828] = true, -- Backdraft
[117952] = true, -- Crackling Jade Lightning
[118000] = true, -- Dragon Roar
[118038] = true, -- Die by the Sword
[118291] = true, -- Fire Elemental
[118297] = true, -- Immolate
[118323] = true, -- Earth Elemental
[118337] = true, -- Harden Skin
[118345] = true, -- Pulverize
[118455] = true, -- Beast Cleave
[118522] = true, -- Elemental Blast: Critical Strike
[118699] = true, -- Fear
[118779] = true, -- Victory Rush
[118905] = true, -- Static Charge
[118922] = true, -- Posthaste
[119085] = true, -- Chi Torpedo
[119381] = true, -- Leg Sweep
[119415] = true, -- Blink
[119582] = true, -- Purifying Brew
[119611] = true, -- Renewing Mist
[119905] = true, -- Singe Magic
[119907] = true, -- Shadow Bulwark
[119909] = true, -- Seduction
[119910] = true, -- Spell Lock
[119914] = true, -- Axe Toss
[120360] = true, -- Barrage
[120517] = true, -- Halo
[120679] = true, -- Dire Beast
[120694] = true, -- Dire Beast
[120954] = true, -- Fortifying Brew
[121093] = true, -- Gift of the Naaru
[121118] = true, -- Dire Beast
[121153] = true, -- Blindside
[121183] = true, -- Contemplation
[121253] = true, -- Keg Smash
[121411] = true, -- Crimson Tempest
[121471] = true, -- Shadow Blades
[121536] = true, -- Angelic Feather
[121557] = true, -- Angelic Feather
[122278] = true, -- Dampen Harm
[122281] = true, -- Healing Elixir
[122470] = true, -- Touch of Karma
[122783] = true, -- Diffuse Magic
[122804] = true, -- Dire Beast
[123040] = true, -- Mindbender
[123254] = true, -- Twist of Fate
[123586] = true, -- Flying Serpent Kick
[123725] = true, -- Breath of Fire
[123904] = true, -- Invoke Xuen, the White Tiger
[123981] = true, -- Perdition
[123986] = true, -- Chi Burst
[124007] = true, -- Tiger Leap
[124009] = true, -- Tiger Lust
[124036] = true, -- Anglers Fishing Raft
[124216] = true, -- Well Fed
[124273] = true, -- Heavy Stagger
[124274] = true, -- Moderate Stagger
[124275] = true, -- Light Stagger
[124280] = true, -- Touch of Karma
[124430] = true, -- Shadowy Insight
[124503] = true, -- Gift of the Ox
[124506] = true, -- Gift of the Ox
[124682] = true, -- Enveloping Mist
[125050] = true, -- Fetch
[125282] = true, -- Kafa Boost
[125439] = true, -- Revive Battle Pets
[126311] = true, -- Surface Trot
[126389] = true, -- Goblin Glider
[126476] = true, -- Predation
[126664] = true, -- Charge
[126935] = true, -- Crate Restored Artifact
[127230] = true, -- Visions of Insanity
[127797] = true, -- Ursol's Vortex
[127923] = true, -- Now is the time!
[127928] = true, -- Reflection of Torment
[127967] = true, -- Drunken Evasiveness
[129250] = true, -- Power Word: Solace
[131347] = true, -- Glide
[131474] = true, -- Fishing
[131894] = true, -- A Murder of Crows
[132157] = true, -- Holy Nova
[132168] = true, -- Shockwave
[132169] = true, -- Storm Bolt
[132403] = true, -- Shield of the Righteous
[132404] = true, -- Shield Block
[132578] = true, -- Invoke Niuzao, the Black Ox
[132764] = true, -- Dire Beast
[134477] = true, -- Threatening Presence
[134522] = true, -- Dressed to Kill
[135299] = true, -- Tar Trap
[135700] = true, -- Clearcasting
[137619] = true, -- Marked for Death
[137639] = true, -- Storm, Earth, and Fire
[138121] = true, -- Storm, Earth, and Fire
[138123] = true, -- Storm, Earth, and Fire
[138130] = true, -- Storm, Earth, and Fire
[138927] = true, -- Burning Essence
[139546] = true, -- Combo Point
[143625] = true, -- Brawling Champion
[144787] = true, -- Moonfang Shroud
[145152] = true, -- Bloodtalons
[145205] = true, -- Efflorescence
[145255] = true, -- Aspect of Moonfang
[146739] = true, -- Corruption
[147193] = true, -- Shadowy Apparition
[147362] = true, -- Counter Shot
[147367] = true, -- Weaponmaster
[147732] = true, -- Frostbrand
[147833] = true, -- Intervene
[148447] = true, -- Winds of Time
[152108] = true, -- Cataclysm
[152173] = true, -- Serenity
[152175] = true, -- Whirling Dragon Punch
[152262] = true, -- Seraphim
[152277] = true, -- Ravager
[152279] = true, -- Breath of Sindragosa
[152280] = true, -- Defile
[153561] = true, -- Meteor
[153595] = true, -- Comet Storm
[153626] = true, -- Arcane Orb
[154796] = true, -- Touch of Elune - Day
[154797] = true, -- Touch of Elune - Night
[154953] = true, -- Internal Bleeding
[155158] = true, -- Meteor Burn
[155625] = true, -- Moonfire
[155722] = true, -- Rake
[155777] = true, -- Rejuvenation (Germination)
[155835] = true, -- Bristling Fur
[156064] = true, -- Greater Draenic Agility Flask
[156070] = true, -- Draenic Intellect Flask
[156071] = true, -- Draenic Strength Flask
[156079] = true, -- Greater Draenic Intellect Flask
[156080] = true, -- Greater Draenic Strength Flask
[156426] = true, -- Draenic Intellect Potion
[156779] = true, -- Neural Silencer
[156910] = true, -- Beacon of Faith
[157153] = true, -- Cloudburst Totem
[157228] = true, -- Owlkin Frenzy
[157299] = true, -- Storm Elemental
[157319] = true, -- Storm Elemental
[157331] = true, -- Wind Gust
[157348] = true, -- Call Lightning
[157375] = true, -- Eye of the Storm
[157644] = true, -- Fireball
[157736] = true, -- Immolate
[157980] = true, -- Supernova
[157981] = true, -- Blast Wave
[157982] = true, -- Tranquility
[157997] = true, -- Ice Nova
[158486] = true, -- Safari Hat
[159786] = true, -- Molten Hide
[160018] = true, -- Gruesome Bite
[160029] = true, -- Resurrecting
[160048] = true, -- Stone Armor
[160058] = true, -- Thick Hide
[160067] = true, -- Web Spray
[160331] = true, -- Blood Elf Illusion
[160889] = true, -- Well Fed
[161354] = true, -- Polymorph
[162243] = true, -- Demon's Bite
[162264] = true, -- Metamorphosis
[162530] = true, -- Refreshing Jade Wind
[162794] = true, -- Chaos Strike
[163201] = true, -- Execute
[163505] = true, -- Rake
[164273] = true, -- Lone Wolf
[164812] = true, -- Moonfire
[164815] = true, -- Sunfire
[164862] = true, -- Flap
[165185] = true, -- Bloodclaw Charm
[165822] = true, -- Haste
[165961] = true, -- Travel Form
[166592] = true, -- Vindicator's Armor Polish Kit
[167105] = true, -- Colossus Smash
[167898] = true, -- Find Timber
[170397] = true, -- Rapid Adaptation
[171253] = true, -- Garrison Hearthstone
[173183] = true, -- Elemental Blast: Haste
[173184] = true, -- Elemental Blast: Mastery
[173266] = true, -- Mecha-Blast Rocket
[175841] = true, -- Draenic Water Walking
[176151] = true, -- Whispers of Insanity
[176898] = true, -- Gnomebulation
[178266] = true, -- Hallowed Ground
[179057] = true, -- Chaos Nova
[180612] = true, -- Recently Used Death Strike
[180750] = true, -- Well Fed
[183218] = true, -- Hand of Hindrance
[183752] = true, -- Disrupt
[183998] = true, -- Light of the Martyr
[184362] = true, -- Enrage
[184364] = true, -- Enraged Regeneration
[184367] = true, -- Rampage
[184575] = true, -- Blade of Justice
[184662] = true, -- Shield of Vengeance
[185123] = true, -- Throw Glaive
[185245] = true, -- Torment
[185311] = true, -- Crimson Vial
[185313] = true, -- Shadow Dance
[185358] = true, -- Arcane Shot
[185422] = true, -- Shadow Dance
[185438] = true, -- Shadowstrike
[185478] = true, -- Defense Draught
[185562] = true, -- Darkmoon Firewater
[185565] = true, -- Poisoned Knife
[185736] = true, -- Well Fed
[185763] = true, -- Pistol Shot
[186254] = true, -- Bestial Wrath
[186257] = true, -- Aspect of the Cheetah
[186258] = true, -- Aspect of the Cheetah
[186263] = true, -- Shadow Mend
[186265] = true, -- Aspect of the Turtle
[186270] = true, -- Raptor Strike
[186289] = true, -- Aspect of the Eagle
[186387] = true, -- Bursting Shot
[186401] = true, -- Sign of the Skirmisher
[186406] = true, -- Sign of the Critter
[187146] = true, -- Tome of Secrets
[187174] = true, -- Jewel of Hellfire
[187464] = true, -- Shadow Mend
[187650] = true, -- Freezing Trap
[187698] = true, -- Tar Trap
[187707] = true, -- Muzzle
[187708] = true, -- Carve
[187748] = true, -- Brazier of Awakening
[187827] = true, -- Metamorphosis
[187874] = true, -- Crash Lightning
[187878] = true, -- Crash Lightning
[188016] = true, -- Ancient Healing Potion
[188027] = true, -- Potion of Deadly Grace
[188028] = true, -- Potion of the Old War
[188031] = true, -- Flask of the Whispered Pact
[188033] = true, -- Flask of the Seventh Demon
[188034] = true, -- Flask of the Countless Armies
[188035] = true, -- Flask of Ten Thousand Scars
[188089] = true, -- Earthen Spike
[188196] = true, -- Lightning Bolt
[188290] = true, -- Death and Decay
[188370] = true, -- Consecration
[188389] = true, -- Flame Shock
[188443] = true, -- Chain Lightning
[188499] = true, -- Blade Dance
[188501] = true, -- Spectral Sight
[188592] = true, -- Fire Elemental
[188616] = true, -- Earth Elemental
[189363] = true, -- Burning Blade
[190319] = true, -- Combustion
[190336] = true, -- Conjure Refreshment
[190356] = true, -- Blizzard
[190411] = true, -- Whirlwind
[190446] = true, -- Brain Freeze
[190456] = true, -- Ignore Pain
[190784] = true, -- Divine Steed
[190925] = true, -- Harpoon
[190927] = true, -- Harpoon
[190984] = true, -- Wrath
[191034] = true, -- Starfall
[191587] = true, -- Virulent Plague
[191634] = true, -- Stormkeeper
[191837] = true, -- Essence Font
[191840] = true, -- Essence Font
[192058] = true, -- Capacitor Totem
[192081] = true, -- Ironfur
[192090] = true, -- Thrash
[192106] = true, -- Lightning Shield
[192222] = true, -- Liquid Magma Totem
[192225] = true, -- Coin of Many Faces
[192226] = true, -- Liquid Magma Totem
[192249] = true, -- Storm Elemental
[193065] = true, -- Masochism
[193287] = true, -- Visage of the Vrykul
[193315] = true, -- Sinister Strike
[193316] = true, -- Roll the Bones
[193331] = true, -- Call Dreadstalkers
[193332] = true, -- Call Dreadstalkers
[193333] = true, -- Helheim Spirit Memory
[193345] = true, -- Barnacle-Encrusted Gem
[193356] = true, -- Broadside
[193357] = true, -- Ruthless Precision
[193358] = true, -- Grand Melee
[193359] = true, -- True Bearing
[193455] = true, -- Cobra Shot
[193456] = true, -- Gaze of the Legion
[193530] = true, -- Aspect of the Wild
[193534] = true, -- Steady Focus
[193538] = true, -- Alacrity
[193641] = true, -- Elaborate Planning
[193786] = true, -- Rockbiter
[193796] = true, -- Flametongue
[194084] = true, -- Flametongue
[194153] = true, -- Starfire
[194223] = true, -- Celestial Alignment
[194249] = true, -- Voidform
[194310] = true, -- Festering Wound
[194384] = true, -- Atonement
[194407] = true, -- Spitting Cobra
[194509] = true, -- Power Word: Radiance
[194594] = true, -- Lock and Load
[194627] = true, -- Now is the Time!
[194632] = true, -- Lust for Battle
[194679] = true, -- Rune Tap
[194844] = true, -- Bonestorm
[194879] = true, -- Icy Talons
[194913] = true, -- Glacial Advance
[195072] = true, -- Fel Rush
[195181] = true, -- Bone Shield
[195182] = true, -- Marrowrend
[195292] = true, -- Death's Caress
[195452] = true, -- Nightblade
[195457] = true, -- Grappling Hook
[195627] = true, -- Opportunity
[195630] = true, -- Elusive Brawler
[195645] = true, -- Wing Clip
[195676] = true, -- Displacement
[195901] = true, -- Adapted
[196099] = true, -- Grimoire of Sacrifice
[196277] = true, -- Implosion
[196361] = true, -- Bloodworm
[196364] = true, -- Unstable Affliction
[196414] = true, -- Eradication
[196447] = true, -- Channel Demonfire
[196555] = true, -- Netherwalk
[196608] = true, -- Eye of the Tiger
[196718] = true, -- Darkness
[196725] = true, -- Refreshing Jade Wind
[196727] = true, -- Provoke
[196733] = true, -- Special Delivery
[196741] = true, -- Hit Combo
[196742] = true, -- Whirling Dragon Punch
[196770] = true, -- Remorseless Winter
[196782] = true, -- Outbreak
[196819] = true, -- Eviscerate
[196834] = true, -- Frostbrand
[196840] = true, -- Frost Shock
[196881] = true, -- Feral Lunge
[196884] = true, -- Feral Lunge
[196910] = true, -- Raise Skulker
[196937] = true, -- Ghostly Strike
[196941] = true, -- Judgment of Light
[196980] = true, -- Master of Shadows
[197003] = true, -- Maneuverability
[197051] = true, -- Mind-Numbing Poison
[197214] = true, -- Sundering
[197268] = true, -- Ray of Hope
[197277] = true, -- Judgment
[197548] = true, -- Strength of Soul
[197561] = true, -- Avenger's Valor
[197625] = true, -- Moonkin Form
[197626] = true, -- Starsurge
[197628] = true, -- Starfire
[197630] = true, -- Sunfire
[197690] = true, -- Defensive Stance
[197721] = true, -- Flourish