-
Notifications
You must be signed in to change notification settings - Fork 9
/
Constants_Cata.lua
1848 lines (1784 loc) · 71.5 KB
/
Constants_Cata.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 tbl_sort, select, string_lower = table.sort, select, string.lower
local GetSpellInfo = GetSpellInfo
local GetItemInfo = GetItemInfo
local Gladdy = LibStub("Gladdy")
local L = Gladdy.L
local AURA_TYPE_DEBUFF, AURA_TYPE_BUFF = AURA_TYPE_DEBUFF, AURA_TYPE_BUFF
Gladdy.expansion = "Wrath"
Gladdy.CLASSES = { "MAGE", "PRIEST", "DRUID", "SHAMAN", "PALADIN", "WARLOCK", "WARRIOR", "HUNTER", "ROGUE", "DEATHKNIGHT" }
table.sort(Gladdy.CLASSES, function(a, b) return a > b end)
tbl_sort(Gladdy.CLASSES)
Gladdy.RACES[#Gladdy.RACES + 1] = "Goblin"
tbl_sort(Gladdy.RACES)
local specSpells = {
[GetSpellInfo(55050)] = L["Blood"], -- Heart Strike
[GetSpellInfo(55233)] = L["Blood"], -- Vampiric Blood
[GetSpellInfo(49028)] = L["Blood"], -- Dancing Rune Weapon
[GetSpellInfo(53138)] = L["Blood"], -- Abomination's Might
[GetSpellInfo(77513)] = L["Blood"], -- Blood Shield
[GetSpellInfo(77535)] = L["Blood"], -- Blood Shield
[GetSpellInfo(49222)] = L["Blood"], -- Bone Shield
[GetSpellInfo(53137)] = L["Blood"], -- Abomination's Might
[GetSpellInfo(79893)] = L["Blood"], -- Bloodworm
[GetSpellInfo(96171)] = L["Blood"], -- Will of the Necropolis
[GetSpellInfo(81162)] = L["Blood"], -- Will of the Necropolis
[GetSpellInfo(48982)] = L["Blood"], -- Rune Tap
[GetSpellInfo(49143)] = L["Frost"], -- Frost Strike
[GetSpellInfo(50435)] = L["Frost"], -- Chilblains
[GetSpellInfo(50434)] = L["Frost"], -- Chilblains
[GetSpellInfo(51271)] = L["Frost"], -- Pillar of Frost
[GetSpellInfo(49203)] = L["Frost"], -- Hungering Cold
[GetSpellInfo(49184)] = L["Frost"], -- Howling Blast
[GetSpellInfo(55610)] = L["Frost"], -- Improved Icy Talons
[GetSpellInfo(51124)] = L["Frost"], -- Killing Machine
[GetSpellInfo(51271)] = L["Frost"], -- Pillar of Frost
[GetSpellInfo(55090)] = L["Unholy"], -- Scourge Strike
[GetSpellInfo(65142)] = L["Unholy"], -- Ebon Plague
[GetSpellInfo(51052)] = L["Unholy"], -- Anti-Magic Zone
[GetSpellInfo(49206)] = L["Unholy"], -- Summon Gargoyle
[GetSpellInfo(66803)] = L["Unholy"], -- Desolation
[GetSpellInfo(66802)] = L["Unholy"], -- Desolation
[GetSpellInfo(66801)] = L["Unholy"], -- Desolation
[GetSpellInfo(66800)] = L["Unholy"], -- Desolation
[GetSpellInfo(63583)] = L["Unholy"], -- Desolation
[GetSpellInfo(49194)] = L["Unholy"], -- Unholy Blight (debuff)
[GetSpellInfo(51460)] = L["Unholy"], -- Runic Corruption
[GetSpellInfo(49016)] = L["Unholy"], -- Unholy Frenzy
[GetSpellInfo(91342)] = L["Unholy"], -- Shadow Infusion
[GetSpellInfo(63560)] = L["Unholy"], -- Dark Transformation
--
[GetSpellInfo(24858)] = L["Balance"], -- Moonkin Form
[GetSpellInfo(50516)] = L["Balance"], -- Typhoon
[GetSpellInfo(61391)] = L["Balance"], -- Typoon Dazed (Debuff)
[GetSpellInfo(48505)] = L["Balance"], -- Starfall
[GetSpellInfo(48391)] = L["Balance"], -- Owlkin Frenzy
[GetSpellInfo(48517)] = L["Balance"], -- Eclipse Solar
[GetSpellInfo(48518)] = L["Balance"], -- Eclipse Lunar
[GetSpellInfo(60433)] = L["Balance"], -- Earth and Moon
[GetSpellInfo(33831)] = L["Balance"], -- Force of Nature
[GetSpellInfo(24907)] = L["Balance"], -- Moonkin Aura
[GetSpellInfo(93402)] = L["Balance"], -- Sunfire (cast)
[GetSpellInfo(93400)] = L["Balance"], -- Shooting Stars
[GetSpellInfo(81006)] = L["Balance"], -- Lunar Shower
[GetSpellInfo(81288)] = L["Balance"], -- Fungal Growth (debuff)
[GetSpellInfo(81281)] = L["Balance"], -- Fungal Growth (debuff)
[GetSpellInfo(78675)] = L["Balance"], -- Solar Beam
[GetSpellInfo(88751)] = L["Balance"], -- Wild Mushroom: Detonate
[GetSpellInfo(24932)] = L["Feral"], -- Leader of the Pack
[GetSpellInfo(58180)] = L["Feral"], -- Infected Wounds
[GetSpellInfo(58179)] = L["Feral"], -- Infected Wounds
[GetSpellInfo(33876)] = L["Feral"], -- Mangle (Cat)
[GetSpellInfo(33878)] = L["Feral"], -- Mangle (Bear)
[GetSpellInfo(50334)] = L["Feral"], -- Berserk (Bear)
[GetSpellInfo(81016)] = L["Feral"], -- Stampede
[GetSpellInfo(81022)] = L["Feral"], -- Stampede
[GetSpellInfo(81017)] = L["Feral"], -- Stampede
[GetSpellInfo(81021)] = L["Feral"], -- Stampede
[GetSpellInfo(51185)] = L["Feral"], -- King of the Jungle
[GetSpellInfo(61336)] = L["Feral"], -- Survival Instincts
[GetSpellInfo(80313)] = L["Feral"], -- Pulverize
[GetSpellInfo(49377)] = L["Feral"], -- Feral Charge (cast)
[GetSpellInfo(33891)] = L["Restoration"], -- Tree of Life
[GetSpellInfo(48438)] = L["Restoration"], -- Wild Growth
[GetSpellInfo(18562)] = L["Restoration"], -- Swiftmend
[GetSpellInfo(45283)] = L["Restoration"], -- R3
[GetSpellInfo(45282)] = L["Restoration"], -- R2
[GetSpellInfo(45281)] = L["Restoration"], -- R1
[GetSpellInfo(48504)] = L["Restoration"], -- Living Seed
[GetSpellInfo(17116)] = L["Restoration"], -- Nature's Swiftness
[GetSpellInfo(81093)] = L["Restoration"], -- Fury of Stormrage
[GetSpellInfo(81262)] = L["Restoration"], -- Efflorescence
--
[GetSpellInfo(19574)] = L["BeastMastery"], -- Bestial Wrath
[GetSpellInfo(53257)] = L["BeastMastery"], -- Cobra Strikes
[GetSpellInfo(34471)] = L["BeastMastery"], -- Beast within
[GetSpellInfo(75447)] = L["BeastMastery"], -- Ferocious Inspiration
[GetSpellInfo(19577)] = L["BeastMastery"], -- Intimidation
[GetSpellInfo(94006)] = L["BeastMastery"], -- Killing Streak R1
[GetSpellInfo(94007)] = L["BeastMastery"], -- Killing Streak R2
[GetSpellInfo(82692)] = L["BeastMastery"], -- Focus Fire
[GetSpellInfo(82726)] = L["BeastMastery"], -- Fervor
[GetSpellInfo(19506)] = L["Marksmanship"], -- Trueshot Aura
[GetSpellInfo(53209)] = L["Marksmanship"], -- Chimera Shot
[GetSpellInfo(34490)] = L["Marksmanship"], -- Silencing Shot
[GetSpellInfo(63468)] = L["Marksmanship"], -- Piercing Shots
[GetSpellInfo(53220)] = L["Marksmanship"], -- Improved Steady Shot
[GetSpellInfo(19434)] = L["Marksmanship"], -- Aimed Shot
[GetSpellInfo(88691)] = L["Marksmanship"], -- Marked for Death
[GetSpellInfo(83559)] = L["Marksmanship"], -- Posthaste
[GetSpellInfo(82925)] = L["Marksmanship"], -- Ready, Set, Aim...
[GetSpellInfo(23989)] = L["Marksmanship"], -- Readiness
[GetSpellInfo(82897)] = L["Marksmanship"], -- Resistance is Futile!
[GetSpellInfo(82921)] = L["Marksmanship"], -- Bombardment
[GetSpellInfo(413848)] = L["Marksmanship"], -- Piercing Shots (debuff)
[GetSpellInfo(63468)] = L["Marksmanship"], -- Piercing Shots (debuff)
[GetSpellInfo(35101)] = L["Marksmanship"], -- Concussive Barrage (debuff)
[GetSpellInfo(19386)] = L["Survival"], -- Wyvern Sting
[GetSpellInfo(63672)] = L["Survival"], -- Black Arrow (debuff)
[GetSpellInfo(3674)] = L["Survival"], -- Black Arrow
[GetSpellInfo(53301)] = L["Survival"], -- Explosive Shot
[GetSpellInfo(34837)] = L["Survival"], -- Rank 5 Master Tactician
[GetSpellInfo(34836)] = L["Survival"], -- Rank 4 Master Tactician
[GetSpellInfo(34835)] = L["Survival"], -- Rank 3 Master Tactician
[GetSpellInfo(34834)] = L["Survival"], -- Rank 2 Master Tactician
[GetSpellInfo(34833)] = L["Survival"], -- Rank 1 Master Tactician
[GetSpellInfo(64420)] = L["Survival"], -- Sniper Training R3
[GetSpellInfo(64419)] = L["Survival"], -- Sniper Training R2
[GetSpellInfo(64418)] = L["Survival"], -- Sniper Training R1
[GetSpellInfo(19306)] = L["Survival"], -- Counterattack
[GetSpellInfo(56453)] = L["Survival"], -- Lock and Load
[GetSpellInfo(53290)] = L["Survival"], -- Hunting Party
--
[GetSpellInfo(31589)] = L["Arcane"], -- Slow
[GetSpellInfo(44425)] = L["Arcane"], -- Arcane Barrage
[GetSpellInfo(12042)] = L["Arcane"], -- Arcane Power
[GetSpellInfo(44413)] = L["Arcane"], -- Incanter's Absorption
[GetSpellInfo(83098)] = L["Arcane"], -- Improved Mana Gem
[GetSpellInfo(54646)] = L["Arcane"], -- Focus Magic
[GetSpellInfo(57531)] = L["Arcane"], -- Arcane Potency
[GetSpellInfo(57529)] = L["Arcane"], -- Arcane Potency
[GetSpellInfo(12043)] = L["Arcane"], -- Presence of Mind
[GetSpellInfo(82930)] = L["Arcane"], -- Arcane Tactics
[GetSpellInfo(44457)] = L["Fire"], -- Living Bomb
[GetSpellInfo(31661)] = L["Fire"], -- Dragon's Breath
[GetSpellInfo(83853)] = L["Fire"], -- Combustion (debuff)
[GetSpellInfo(48108)] = L["Fire"], -- Hot Streak
[GetSpellInfo(64346)] = L["Fire"], -- Fiery Payback
[GetSpellInfo(54741)] = L["Fire"], -- Firestarter
[GetSpellInfo(11113)] = L["Fire"], -- Blast wave
[GetSpellInfo(11366)] = L["Fire"], -- Pyroblast
[GetSpellInfo(83582)] = L["Fire"], -- Pyromaniac
[GetSpellInfo(22959)] = L["Fire"], -- Critical Mass
[GetSpellInfo(11113)] = L["Fire"], -- Blast Wave
[GetSpellInfo(87023)] = L["Fire"], -- Cauterize
[GetSpellInfo(11426)] = L["Frost"], -- Ice Barrier
[GetSpellInfo(44572)] = L["Frost"], -- Deep Freeze
[GetSpellInfo(31687)] = L["Frost"], -- Summon Water Elemental
[GetSpellInfo(55080)] = L["Frost"], -- Shattered Barrier (R1)
[GetSpellInfo(83073)] = L["Frost"], -- Shattered Barrier (R2)
[GetSpellInfo(44544)] = L["Frost"], -- Fingers of Frost
[GetSpellInfo(57761)] = L["Frost"], -- Brain Freeze
[GetSpellInfo(92283)] = L["Frost"], -- Frostfire Orb
[GetSpellInfo(44544)] = L["Frost"], -- Fingers of Frost
[GetSpellInfo(12472)] = L["Frost"], -- Icy Veins
[GetSpellInfo(11958)] = L["Frost"], -- Cold Snap
[GetSpellInfo(63095)] = L["Frost"], -- Ice Barrier (Glyph)
--
[GetSpellInfo(20473)] = L["Holy"], -- Holy Shock
[GetSpellInfo(53563)] = L["Holy"], -- Beacon of Light
[GetSpellInfo(31842)] = L["Holy"], -- Divine Favor
[GetSpellInfo(43741)] = L["Holy"], -- Light's Grace
[GetSpellInfo(53657)] = L["Holy"], -- Judgements of the Pure
[GetSpellInfo(53656)] = L["Holy"], -- Judgements of the Pure
[GetSpellInfo(53655)] = L["Holy"], -- Judgements of the Pure
[GetSpellInfo(54149)] = L["Holy"], -- Infusion of Light
[GetSpellInfo(85222)] = L["Holy"], -- Light of Dawn
[GetSpellInfo(31821)] = L["Holy"], -- Aura Mastery
[GetSpellInfo(20050)] = L["Holy"], -- Conviction
[GetSpellInfo(85497)] = L["Holy"], -- Speed of Light
[GetSpellInfo(88819)] = L["Holy"], -- Daybreak
[GetSpellInfo(85509)] = L["Holy"], -- Denounce
[GetSpellInfo(20925)] = L["Protection"], -- Holy Shield
[GetSpellInfo(31935)] = L["Protection"], -- Avenger's Shield
[GetSpellInfo(53595)] = L["Protection"], -- Hammer of the Righteous
[GetSpellInfo(68055)] = L["Protection"], -- Judgements of the Just
[GetSpellInfo(20132)] = L["Protection"], -- Redoubt
[GetSpellInfo(20131)] = L["Protection"], -- Redoubt
[GetSpellInfo(20128)] = L["Protection"], -- Redoubt
[GetSpellInfo(31850)] = L["Protection"], -- Ardent Defender
[GetSpellInfo(63529)] = L["Protection"], -- Dazed - Avenger's Shield (debuff)
[GetSpellInfo(85416)] = L["Protection"], -- Grand Crusader
[GetSpellInfo(53600)] = L["Protection"], -- Shield of the Righteous
[GetSpellInfo(20177)] = L["Protection"], -- Reckoning
[GetSpellInfo(85433)] = L["Protection"], -- Sacred Duty
[GetSpellInfo(70940)] = L["Protection"], -- Divine Guardian
[GetSpellInfo(26017)] = L["Protection"], -- Vindication (debuff)
[GetSpellInfo(35395)] = L["Retribution"], -- Crusader Strike
[GetSpellInfo(53385)] = L["Retribution"], -- Divine Storm
[GetSpellInfo(20066)] = L["Retribution"], -- Repentance
[GetSpellInfo(59578)] = L["Retribution"], -- The Art of War
[GetSpellInfo(85256)] = L["Retribution"], -- Templar's Verdict
[GetSpellInfo(85696)] = L["Retribution"], -- Zealotry
[GetSpellInfo(87173)] = L["Retribution"], -- Long Arm of the Law
[GetSpellInfo(96263)] = L["Retribution"], -- Sacred Shield
[GetSpellInfo(85673)] = L["Retribution"], -- Word of Glory
--
[GetSpellInfo(10060)] = L["Discipline"], -- Power Infusion
[GetSpellInfo(33206)] = L["Discipline"], -- Pain Suppression
[GetSpellInfo(45242)] = L["Discipline"], -- Focused Will
[GetSpellInfo(45241)] = L["Discipline"], -- Focused Will
[GetSpellInfo(47753)] = L["Discipline"], -- Divine Aegis
[GetSpellInfo(47930)] = L["Discipline"], -- Grace (R1)
[GetSpellInfo(77613)] = L["Discipline"], -- Grace (R2)
[GetSpellInfo(59889)] = L["Discipline"], -- Borrowed Time
[GetSpellInfo(59888)] = L["Discipline"], -- Borrowed Time
[GetSpellInfo(59887)] = L["Discipline"], -- Borrowed Time
[GetSpellInfo(89485)] = L["Discipline"], -- Inner Focus
[GetSpellInfo(62618)] = L["Discipline"], -- Power Word: Barrier
[GetSpellInfo(96267)] = L["Discipline"], -- Strength of Soul
[GetSpellInfo(96266)] = L["Discipline"], -- Strength of Soul
[GetSpellInfo(81751)] = L["Discipline"], -- Attonement (Heal)
[GetSpellInfo(34861)] = L["Holy"], -- Circle of Healing
[GetSpellInfo(724)] = L["Holy"], -- Lightwell
[GetSpellInfo(7001)] = L["Holy"], -- Lightwell Heal
[GetSpellInfo(33143)] = L["Holy"], -- Blessed Resilience
[GetSpellInfo(65081)] = L["Holy"], -- Body and Soul
[GetSpellInfo(64128)] = L["Holy"], -- Body and Soul
[GetSpellInfo(63735)] = L["Holy"], -- Serendipity
[GetSpellInfo(63731)] = L["Holy"], -- Serendipity
[GetSpellInfo(47788)] = L["Holy"], -- Guardian Spirit
[GetSpellInfo(27827)] = L["Holy"], -- Spirit of Redemption
[GetSpellInfo(14751)] = L["Holy"], -- Chakra
[GetSpellInfo(81206)] = L["Holy"], -- Chakra: Sanctuary
[GetSpellInfo(81209)] = L["Holy"], -- Chakra: Chastise
[GetSpellInfo(81208)] = L["Holy"], -- Chakra: Serenity
[GetSpellInfo(89912)] = L["Holy"], -- Chakra: Flow
[GetSpellInfo(88625)] = L["Holy"], -- Chastise (cast)
[GetSpellInfo(15473)] = L["Shadow"], -- Shadowform
[GetSpellInfo(34914)] = L["Shadow"], -- Vampiric Touch
[GetSpellInfo(33198)] = L["Shadow"], -- Misery
[GetSpellInfo(33197)] = L["Shadow"], -- Misery
[GetSpellInfo(33196)] = L["Shadow"], -- Misery
[GetSpellInfo(64044)] = L["Shadow"], -- Psychic Horror
[GetSpellInfo(47585)] = L["Shadow"], -- Dispersion
[GetSpellInfo(15286)] = L["Shadow"], -- Vampiric Embrace
[GetSpellInfo(15487)] = L["Shadow"], -- Silence
[GetSpellInfo(77487)] = L["Shadow"], -- Shadow orb
[GetSpellInfo(81292)] = L["Shadow"], -- Mind Melt
[GetSpellInfo(87532)] = L["Shadow"], -- Shadowy Apparition
[GetSpellInfo(49868)] = L["Shadow"], -- Mind Quickening
[GetSpellInfo(87204)] = L["Shadow"], -- Sin and Punishment (Horror)
--
[GetSpellInfo(1329)] = L["Assassination"], -- Mutilate
[GetSpellInfo(58427)] = L["Assassination"], -- Overkill (buff after stealth)
[GetSpellInfo(58426)] = L["Assassination"], -- Overkill
[GetSpellInfo(60177)] = L["Assassination"], -- Hunger For Blood
[GetSpellInfo(52910)] = L["Assassination"], -- Turn the Tables
[GetSpellInfo(52915)] = L["Assassination"], -- Turn the Tables
[GetSpellInfo(52914)] = L["Assassination"], -- Turn the Tables
[GetSpellInfo(14177)] = L["Assassination"], -- Cold Blood
[GetSpellInfo(79140)] = L["Assassination"], -- Vendetta
[GetSpellInfo(93068)] = L["Assassination"], -- Master Poisoner
[GetSpellInfo(13750)] = L["Combat"], -- Adrenaline Rush
[GetSpellInfo(51690)] = L["Combat"], -- Killing Spree
[GetSpellInfo(58683)] = L["Combat"], -- Savage Combat
[GetSpellInfo(58684)] = L["Combat"], -- Savage Combat
[GetSpellInfo(13877)] = L["Combat"], -- Blade Flurry
[GetSpellInfo(31125)] = L["Combat"], -- Blade Twisting (debuff)
[GetSpellInfo(84748)] = L["Combat"], -- Bandith's Guile (debuff)
[GetSpellInfo(51680)] = L["Combat"], -- Throwing Specialization
[GetSpellInfo(84617)] = L["Combat"], -- Revealing Strike
[GetSpellInfo(84745)] = L["Combat"], -- Shallow Insight
[GetSpellInfo(36554)] = L["Subtlety"], -- Shadowstep
[GetSpellInfo(36563)] = L["Subtlety"], -- Shadowstep
[GetSpellInfo(51713)] = L["Subtlety"], -- Shadow Dance
[GetSpellInfo(14183)] = L["Subtlety"], -- Premeditation
[GetSpellInfo(51693)] = L["Subtlety"], -- Waylay
[GetSpellInfo(31666)] = L["Subtlety"], -- Master of Subtlety
[GetSpellInfo(16511)] = L["Subtlety"], -- Hemorrhage
[GetSpellInfo(51698)] = L["Subtlety"], -- Honor Among Thieves
[GetSpellInfo(45182)] = L["Subtlety"], -- Cheat Death
[GetSpellInfo(14185)] = L["Subtlety"], -- Preparation
[GetSpellInfo(31666)] = L["Subtlety"], -- Master of Subtlety
[GetSpellInfo(51701)] = L["Subtlety"], -- Honor Among Thieves
--
[GetSpellInfo(77746)] = L["Elemental"], -- Totem Wrath
[GetSpellInfo(51490)] = L["Elemental"], -- Thunderstorm
[GetSpellInfo(16166)] = L["Elemental"], -- Elemental Mastery
[GetSpellInfo(64695)] = L["Elemental"], -- Earthgrab (debuff)
[GetSpellInfo(52179)] = L["Elemental"], -- Astral Shift
[GetSpellInfo(51470)] = L["Elemental"], -- Elemental Oath (R2)
[GetSpellInfo(51466)] = L["Elemental"], -- Elemental Oath (R1)
[GetSpellInfo(61882)] = L["Elemental"], -- Knockdown
[GetSpellInfo(16246)] = L["Elemental"], -- Clearcasting
[GetSpellInfo(51480)] = L["Elemental"], -- Lava Flows R1
[GetSpellInfo(51481)] = L["Elemental"], -- Lava Flows
[GetSpellInfo(51482)] = L["Elemental"], -- Lava Flows
[GetSpellInfo(65264)] = L["Elemental"], -- Lava Flows
[GetSpellInfo(17364)] = L["Enhancement"], -- Stormstrike
[GetSpellInfo(60103)] = L["Enhancement"], -- Lava Lash
[GetSpellInfo(30823)] = L["Enhancement"], -- Shamanistic Rage
[GetSpellInfo(53817)] = L["Enhancement"], -- Maelstrom Weapon
[GetSpellInfo(51533)] = L["Enhancement"], -- Feral Spirit
[GetSpellInfo(97620)] = L["Enhancement"], -- Seasoned Winds (Nature, buff)
[GetSpellInfo(97619)] = L["Enhancement"], -- SW (Frost)
[GetSpellInfo(97621)] = L["Enhancement"], -- SW (Arcane)
[GetSpellInfo(97622)] = L["Enhancement"], -- SW (Shadow)
[GetSpellInfo(97618)] = L["Enhancement"], -- SW (Fire)
[GetSpellInfo(63685)] = L["Enhancement"], -- Freeze (debuff)
[GetSpellInfo(974)] = L["Restoration"], -- Earth Shield
[GetSpellInfo(61295)] = L["Restoration"], -- Riptide
[GetSpellInfo(51886)] = L["Restoration"], -- Cleanse Spirit
[GetSpellInfo(16190)] = L["Restoration"], -- Mana Tide Totem
[GetSpellInfo(53390)] = L["Restoration"], -- Tidal Waves
[GetSpellInfo(31616)] = L["Restoration"], -- Nature's Guardian
[GetSpellInfo(16236)] = L["Restoration"], -- Ancestral Fortitude (buff)
[GetSpellInfo(16188)] = L["Restoration"], -- Nature's Swiftness
[GetSpellInfo(98008)] = L["Restoration"], -- Soul Link Totem
[GetSpellInfo(51564)] = L["Restoration"], -- Tidal Waves
[GetSpellInfo(51562)] = L["Restoration"], -- Tidal Waves
[GetSpellInfo(51563)] = L["Restoration"], -- Tidal Waves
[GetSpellInfo(105284)] = L["Restoration"], -- Ancestral Vigor
[GetSpellInfo(51945)] = L["Restoration"], -- Earthliving
[GetSpellInfo(52752)] = L["Restoration"], -- Ancestral Awakening (SPELL_HEAL)
--
[GetSpellInfo(30108)] = L["Affliction"], -- Unstable Affliction
[GetSpellInfo(48181)] = L["Affliction"], -- Haunt
[GetSpellInfo(64371)] = L["Affliction"], -- Eradication (R3)
[GetSpellInfo(64370)] = L["Affliction"], -- Eradication (R2)
[GetSpellInfo(64368)] = L["Affliction"], -- Eradication (R1)
[GetSpellInfo(18223)] = L["Affliction"], -- Curse of Exhaustion (cast)
[GetSpellInfo(86121)] = L["Affliction"], -- Soul Swap (cast)
[GetSpellInfo(17941)] = L["Affliction"], -- Shadow Trance (buff)
[GetSpellInfo(31117)] = L["Affliction"], -- Unstable Affliction (Silence)
[GetSpellInfo(60947)] = L["Affliction"], -- Nightmare (debuff)
[GetSpellInfo(32386)] = L["Affliction"], -- Shadow Embrace (debuff)
[GetSpellInfo(47193)] = L["Demonology"], -- Demonic Empowerment
[GetSpellInfo(63167)] = L["Demonology"], -- Decimation (R2)
[GetSpellInfo(63165)] = L["Demonology"], -- Decimation (R1)
[GetSpellInfo(30146)] = L["Demonology"], -- Summon Felguard
[GetSpellInfo(47241)] = L["Demonology"], -- Metamorphosis Buff
[GetSpellInfo(59672)] = L["Demonology"], -- Metamorphosis Cast
[GetSpellInfo(53646)] = L["Demonology"], -- Demonic Pact (buff)
[GetSpellInfo(71521)] = L["Demonology"], -- Hand of Gul'dan
[GetSpellInfo(47383)] = L["Demonology"], -- Molten Core (buff)
[GetSpellInfo(84740)] = L["Demonology"], -- Demonic Knowledge
[GetSpellInfo(17962)] = L["Destruction"], -- Conflagrate
[GetSpellInfo(30283)] = L["Destruction"], -- Shadowfury
[GetSpellInfo(50796)] = L["Destruction"], -- Chaos bolt
[GetSpellInfo(54277)] = L["Destruction"], -- Backdraft
[GetSpellInfo(54276)] = L["Destruction"], -- Backdraft
[GetSpellInfo(54274)] = L["Destruction"], -- Backdraft
[GetSpellInfo(34936)] = L["Destruction"], -- Backlash
[GetSpellInfo(85383)] = L["Destruction"], -- Improved Soulfire (buff)
[GetSpellInfo(17877)] = L["Destruction"], -- Shadowburn (cast)
[GetSpellInfo(29341)] = L["Destruction"], -- Shadowburn (buff)
[GetSpellInfo(79621)] = L["Destruction"], -- burning ember (debuff)
[GetSpellInfo(91711)] = L["Destruction"], -- Nether Ward (buff)
[GetSpellInfo(54375)] = L["Destruction"], -- Nether Protection (Nature)
[GetSpellInfo(54372)] = L["Destruction"], -- NP (Frost)
[GetSpellInfo(54371)] = L["Destruction"], -- NP (Fire)
[GetSpellInfo(54370)] = L["Destruction"], -- NP (Holy)
[GetSpellInfo(54374)] = L["Destruction"], -- NP (Shadow)
[GetSpellInfo(54373)] = L["Destruction"], -- NP (Arcane)
[GetSpellInfo(47283)] = L["Destruction"], -- Empowered Imp (buff)
[GetSpellInfo(80240)] = L["Destruction"], -- Bane of Havoc (cast/debuff)
--
[GetSpellInfo(12294)] = L["Arms"], -- Mortal strike
[GetSpellInfo(46924)] = L["Arms"], -- Bladestorm
[GetSpellInfo(29842)] = L["Arms"], -- Second Wind (R2)
[GetSpellInfo(29841)] = L["Arms"], -- Second Wind (R1)
[GetSpellInfo(65156)] = L["Arms"], -- Juggernaut (buff)
[GetSpellInfo(64976)] = L["Arms"], -- Juggernaut
[GetSpellInfo(52437)] = L["Arms"], -- Sudden Death
[GetSpellInfo(46857)] = L["Arms"], -- Trauma (debuff)
[GetSpellInfo(60503)] = L["Arms"], -- Taste for Blood
[GetSpellInfo(23694)] = L["Arms"], -- Improved Harmstring
[GetSpellInfo(85730)] = L["Arms"], -- Deadly Calm
[GetSpellInfo(30070)] = L["Arms"], -- Blood Frenzy (debuff)
[GetSpellInfo(84584)] = L["Arms"], -- Slaughter
[GetSpellInfo(57518)] = L["Arms"], -- Enrage
[GetSpellInfo(85388)] = L["Arms"], -- Throwdown
[GetSpellInfo(23881)] = L["Fury"], -- Bloodthirst
[GetSpellInfo(60970)] = L["Fury"], -- Heroic Fury
[GetSpellInfo(56112)] = L["Fury"], -- Furious Attacks
[GetSpellInfo(46916)] = L["Fury"], -- Bloodsurge
[GetSpellInfo(12966)] = L["Fury"], -- Flurry
[GetSpellInfo(12292)] = L["Fury"], -- Death Wish
[GetSpellInfo(12880)] = L["Fury"], -- Enrage
[GetSpellInfo(85386)] = L["Fury"], -- Die by the Sword
[GetSpellInfo(85288)] = L["Fury"], -- Raging Blow
[GetSpellInfo(29801)] = L["Fury"], -- Rampage
[GetSpellInfo(60970)] = L["Fury"], -- Heroic Fury
[GetSpellInfo(56112)] = L["Fury"], -- Furious Attacks
[GetSpellInfo(85738)] = L["Fury"], -- Meat Cleaver
[GetSpellInfo(46916)] = L["Fury"], -- Bloodsurge (aura)
[GetSpellInfo(20243)] = L["Protection"], -- Devastate
[GetSpellInfo(46968)] = L["Protection"], -- Shockwave
[GetSpellInfo(50720)] = L["Protection"], -- Vigilance
[GetSpellInfo(46947)] = L["Protection"], -- Safeguard (R2)
[GetSpellInfo(46946)] = L["Protection"], -- Safeguard (R1)
[GetSpellInfo(50227)] = L["Protection"], -- Sword and Board
[GetSpellInfo(12976)] = L["Protection"], -- Last Stand (buff)
[GetSpellInfo(57514)] = L["Protection"], -- Enrage (buff)
[GetSpellInfo(46945)] = L["Protection"], -- Safeguard (cast)
[GetSpellInfo(50227)] = L["Protection"], -- Sword and board (buff)
[GetSpellInfo(12809)] = L["Protection"], -- Concussion blow (debuff)
}
--[[local specSpellsOld = {
-- WARRIOR
[GetSpellInfo(47486)] = L["Arms"], -- Mortal Strike
[GetSpellInfo(46924)] = L["Arms"], -- Bladestorm
[GetSpellInfo(23881)] = L["Fury"], -- Bloodthirst
[GetSpellInfo(12809)] = L["Protection"], -- Concussion Blow
[GetSpellInfo(47498)] = L["Protection"], -- Devastate
[GetSpellInfo(46968)] = L["Protection"], -- Shockwave
[GetSpellInfo(50720)] = L["Protection"], -- Vigilance
-- PALADIN
[GetSpellInfo(48827)] = L["Protection"], -- Avenger's Shield
[GetSpellInfo(48825)] = L["Holy"], -- Holy Shock
[GetSpellInfo(53563)] = L["Holy"], -- Beacon of Light
[GetSpellInfo(35395)] = L["Retribution"], -- Crusader Strike
[GetSpellInfo(66006)] = L["Retribution"], -- Divine Storm
[GetSpellInfo(20066)] = L["Retribution"], -- Repentance
-- ROGUE
[GetSpellInfo(48666)] = L["Assassination"], -- Mutilate
[GetSpellInfo(14177)] = L["Assassination"], -- Cold Blood
[GetSpellInfo(51690)] = L["Combat"], -- Killing Spree
[GetSpellInfo(13877)] = L["Combat"], -- Blade Flurry
[GetSpellInfo(13750)] = L["Combat"], -- Adrenaline Rush
[GetSpellInfo(36554)] = L["Subtlety"], -- Shadowstep
[GetSpellInfo(48660)] = L["Subtlety"], -- Hemorrhage
[GetSpellInfo(51713)] = L["Subtlety"], -- Shadow Dance
-- PRIEST
[GetSpellInfo(53007)] = L["Discipline"], -- Penance
[GetSpellInfo(10060)] = L["Discipline"], -- Power Infusion
[GetSpellInfo(33206)] = L["Discipline"], -- Pain Suppression
[GetSpellInfo(34861)] = L["Holy"], -- Circle of Healing
[GetSpellInfo(15487)] = L["Shadow"], -- Silence
[GetSpellInfo(48160)] = L["Shadow"], -- Vampiric Touch
-- DEATHKNIGHT
[GetSpellInfo(55262)] = L["Blood"], -- Heart Strike
[GetSpellInfo(49203)] = L["Frost"], -- Hungering Cold
[GetSpellInfo(55268)] = L["Frost"], -- Frost Strike
[GetSpellInfo(51411)] = L["Frost"], -- Howling Blast
[GetSpellInfo(55271)] = L["Unholy"], -- Scourge Strike
-- MAGE
[GetSpellInfo(44781)] = L["Arcane"], -- Arcane Barrage
[GetSpellInfo(55360)] = L["Fire"], -- Living Bomb
[GetSpellInfo(42950)] = L["Fire"], -- Dragon's Breath
[GetSpellInfo(42945)] = L["Fire"], -- Blast Wave
[GetSpellInfo(44572)] = L["Frost"], -- Deep Freeze
-- WARLOCK
[GetSpellInfo(59164)] = L["Affliction"], -- Haunt
[GetSpellInfo(47843)] = L["Affliction"], -- Unstable Affliction
[GetSpellInfo(59672)] = L["Demonology"], -- Metamorphosis
[GetSpellInfo(47193)] = L["Demonology"], -- Demonic Empowerment
[GetSpellInfo(47996) .. " Felguard"] = L["Demonology"], -- Intercept Felguard
[GetSpellInfo(59172)] = L["Destruction"], -- Chaos Bolt
[GetSpellInfo(47847)] = L["Destruction"], -- Shadowfury
-- SHAMAN
[GetSpellInfo(59159)] = L["Elemental"], -- Thunderstorm
[GetSpellInfo(16166)] = L["Elemental"], -- Elemental Mastery
[GetSpellInfo(51533)] = L["Enhancement"], -- Feral Spirit
[GetSpellInfo(30823)] = L["Enhancement"], -- Shamanistic Rage
[GetSpellInfo(17364)] = L["Enhancement"], -- Stormstrike
[GetSpellInfo(61301)] = L["Restoration"], -- Riptide
[GetSpellInfo(51886)] = L["Restoration"], -- Cleanse Spirit
-- HUNTER
[GetSpellInfo(19577)] = L["Beast Mastery"], -- Intimidation
[GetSpellInfo(34490)] = L["Marksmanship"], -- Silencing Shot
[GetSpellInfo(53209)] = L["Marksmanship"], -- Chimera Shot
[GetSpellInfo(60053)] = L["Survival"], -- Explosive Shot
[GetSpellInfo(49012)] = L["Survival"], -- Wyvern Sting
-- DRUID
[GetSpellInfo(53201)] = L["Balance"], -- Starfall
[GetSpellInfo(50516)] = L["Balance"], -- Typhoon
[GetSpellInfo(24858)] = L["Balance"], -- Moonkin Form
[GetSpellInfo(48566)] = L["Feral"], -- Mangle (Cat)
[GetSpellInfo(48564)] = L["Feral"], -- Mangle (Bear)
[GetSpellInfo(50334) .. " Feral"] = L["Feral"], -- Berserk
[GetSpellInfo(18562)] = L["Restoration"], -- Swiftmend
[GetSpellInfo(17116)] = L["Restoration"], -- Nature's Swiftness
[GetSpellInfo(33891)] = L["Restoration"], -- Tree of Life
[GetSpellInfo(53251)] = L["Restoration"], -- Wild Growth
}]]
function Gladdy:GetSpecSpells()
return specSpells
end
local importantAuras = {
--- Crowd control
[33786] = { -- Cyclone
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 33786 },
},
[2637] = { -- Hibernate
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 2637 },
},
[6770] = { -- Sap
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 6770 },
},
[2094] = { -- Blind
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 2094 },
},
[5782] = { -- Fear
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 5782 },
},
[6789] = { -- Death Coil Warlock
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 6789 },
},
[6358] = { -- Seduction
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 6358 },
},
[5484] = { -- Howl of Terror
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 5484 },
},
[5246] = { -- Intimidating Shout
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 5246 },
},
[8122] = { -- Psychic Scream
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 8122 },
},
[64044] = { -- Psychic Horror
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 64044 },
},
[118] = { -- Polymorph
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 118, 61305, 61780, 61721, 28271, 28272 },
texture = 136071,
textureSpell = 118,
},
[51514] = { -- Hex
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 51514 },
},
[710] = { -- Banish
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 710 },
},
[605] = { -- Mind Control
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 605 },
},
[1513] = { -- Scare Beast
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 1513 },
},
[9484] = { -- shackle undead
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 9484 },
},
[39796] = { -- Stoneclaw Stun
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 39796 },
},
[2812] = { -- Holy Wrath
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 2812 },
},
[10326] = { -- Turn Evil
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 10326 },
},
[3355] = { -- Freezing Trap
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 1499, 3355 },
},
[83046] = { -- Improved polymorph
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 83046 },
},
--- Roots
[87193] = { -- Paralysis
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 87193, 87194 },
},
[50245] = { -- Pin (hunter pet)
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 50245 },
},
[54706] = { -- Venom Web Spray (hunter pet)
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 54706 },
},
[83302] = { -- Improved Cone of Cold
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 83302 },
},
[91807] = { -- Shambling Rush, Root
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 91807 },
},
[64695] = { -- Earthgrab Shaman
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 64695 },
},
[19306] = { -- Counterattack
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 19306 },
},
-- Entangling Roots
[339] = {
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 339, 19975 },
},
[122] = { -- Frost Nova
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 122, 55080 },
},
[33395] = { -- Freeze (Water Elemental)
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 33395, 63685 },
},
[55080] = { -- Shattered Barrier
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 83073 },
},
[16979] = { -- Feral Charge
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 16979, 45334 },
},
[23694] = { -- Improved Hamstring
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 23694 },
},
[4167] = { -- Web (Hunter Pet)
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 4167 },
},
[47168] = { -- Improved Wingclip
track = AURA_TYPE_DEBUFF,
priority = 30,
spellIDs = { 47168 },
},
--- Stuns and incapacitates
[87204] = { -- Sin and Punishment
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 87204 },
},
[54786] = { -- Demon Leap
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 54786 },
},
[60995] = { -- Demon Charge
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 60995 },
},
[90337] = { -- Bad Manner
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 90337 },
},
[88625] = { -- Holy Word: Chastise
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 88625 },
},
[85388] = { -- Throwdown
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 85388 },
},
[89766] = { -- Axe Toss (Felguard)
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 89766 },
},
[82691] = { -- Ring of Frost
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 82691 },
},
[91797] = { -- Monstrous Blow (Dark Transformation)
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 91797 },
},
[93986] = { -- Aura of Foreboding
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 93986 },
},
[5211] = { -- Bash
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 5211 },
},
[1833] = { -- Cheap Shot
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 1833 },
},
[408] = { -- Kidney Shot
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 408 },
},
[1776] = { -- Gouge
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 1776 },
},
[44572] = { -- Deep Freeze
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 44572 },
},
[19386] = { -- Wyvern Sting
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 19386 },
},
[19503] = { -- Scatter Shot
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 19503 },
},
[9005] = { -- Pounce
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 9005 },
},
[22570] = { -- Maim
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 22570 },
},
[853] = { -- Hammer of Justice
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 853 },
},
[20066] = { -- Repentance
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 20066 },
},
[46968] = { -- Shockwave
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 46968 },
},
[49203] = { -- Hungering Cold
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 49203 },
},
[91800] = { -- Gnaw (dk pet stun)
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 47481, 91800 },
},
[30283] = { -- Shadowfury Stun
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 30283 },
},
[20549] = { -- War Stomp
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 20549 },
},
[7922] = { -- Charge Stun
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 7922 },
texture = 132337,
textureSpell = 100,
},
[20253] = { -- Intercept Stun
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 20253 },
texture = 132307,
textureSpell = 20252,
},
[12809] = { -- Concussion Blow
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 12809 },
},
[12355] = { -- Impact
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 12355 },
},
[19577] = {-- Intimidation
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 19577, 24394 },
},
[31661] = { -- Dragon's Breath
track = AURA_TYPE_DEBUFF,
priority = 40,
spellIDs = { 31661 },
},
--- Silences
[81261] = { -- Solar Beam
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 81261, 78675 },
},
[31935] = { -- Avenger's Shield
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 31935 },
},
[93985] = { -- Skull Bash
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 93985 },
},
[55021] = { -- Improved Counterspell
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 55021 },
},
[15487] = { -- Silence
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 15487 },
},
[34490] = { -- Silencing Shot
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 34490 },
},
[18425] = { -- Improved Kick
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 18425 },
},
[47476] = { -- Strangulate
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 47476 },
},
[18498] = { -- Silenced - Gag Order
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 18498 },
},
[31117] = { -- Unstable Affliction Silence (GetSpellInfo returns "Unstable Affliction")
track = AURA_TYPE_DEBUFF,
altName = select(1, GetSpellInfo(31117)) .. " Silence",
priority = 20,
spellIDs = { 31117 },
},
[24259] = { -- Spell Lock (Felhunter)
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 24259 },
},
[28730] = { -- Arcane Torrent
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 28730 },
},
[1330] = { -- Garrote - Silence
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 1330 },
},
[87023] = { -- Cauterize
track = AURA_TYPE_DEBUFF,
priority = 10,
spellIDs = { 87023 },
},
--- Disarms
[676] = { -- Disarm
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 676 },
},
[51722] = { -- Dismantle
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 51722 },
},
[64058] = { -- Psychic Horror Disarm
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 64058 },
},
[91644] = { -- Snapch Disarm
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 91644 },
},
[64346] = { -- Fiery Payback
track = AURA_TYPE_DEBUFF,
priority = 20,
spellIDs = { 64346 },
},
--- Buffs
[44544] = { -- Fingers of Frost
track = AURA_TYPE_BUFF,
priority = 35,
spellIDs = { 44544 },
},
[69369] = { -- Predator's Swiftness
track = AURA_TYPE_BUFF,
priority = 35,
spellIDs = { 69369 },
},
[22812] = { -- Barkskin
track = AURA_TYPE_BUFF,
priority = 25,
spellIDs = { 22812 },
},
[33891] = { -- Tree of Life
track = AURA_TYPE_BUFF,
priority = 25,
spellIDs = { 33891 },
},
[3411] = { -- Intervene
track = AURA_TYPE_BUFF,
priority = 25,
spellIDs = { 3411 },
},
[55694] = { -- Enraged Regeneration
track = AURA_TYPE_BUFF,
priority = 25,
spellIDs = { 55694 },
},
[55233] = { -- Vampiric Blood