forked from nullfoxh/PlateBuffer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
auras.lua
3172 lines (3142 loc) · 117 KB
/
auras.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
--[[
PlateBuffer
Nameplate auras for Wow TBC 2.4.3
https://github.com/nullfoxh
AuraData
Aura Database based on and expanded from LibAuraInfo-1.0 by Cyprias ([email protected])
http://www.wowace.com/addons/libaurainfo-1-0/
]]--
PBAD = {}
PBAD.debuffTypes = {
none = 0,
Magic = 1,
Disease = 2,
Poison = 3,
Curse = 4,
[0] = "none",
[1] = "Magic",
[2] = "Disease",
[3] = "Poison",
[4] = "Curse",
}
PBAD.auraInfo = {
[67] = "10;1", --Vindication (Rank 1)
[118] = "50;1", --Polymorph (Rank 1)
[130] = "30;1", --Slow Fall
[131] = "600;0", --Water Breathing
[132] = "600;1", --Detect Invisibility
[168] = "1800;0", --Frost Armor (Rank 1)
[324] = "600;1", --Lightning Shield (Rank 1)
[339] = "12;1", --Entangling Roots (Rank 1)
[355] = "3;0", --Taunt
[498] = "12;1", --Divine Protection
[546] = "600;0", --Water Walking
[552] = "12;1", --Abolish Disease
[588] = "1800;0", --Inner Fire (Rank 1)
[602] = "1800;0", --Inner Fire (Rank 3)
[604] = "600;1", --Dampen Magic (Rank 1)
[605] = "60;1", --Mind Control
[642] = "12;1", --Divine Shield
[643] = "0;0", --Devotion Aura (Rank 3)
[673] = "3600;0", --Lesser Armor
[694] = "6;0", --Mocking Blow
[706] = "1800;0", --Demon Armor (Rank 1)
[768] = "0;0", --Cat Form (Shapeshift)
[770] = "300;1", --Faerie Fire
[782] = "600;1", --Thorns (Rank 2)
[783] = "0;0", --Travel Form (Shapeshift)
[871] = "12;0", --Shield Wall
[905] = "600;1", --Lightning Shield (Rank 3)
[976] = "600;1", --Shadow Protection (Rank 1)
[982] = "3;0", --Revive Pet
[1006] = "1800;0", --Inner Fire (Rank 4)
[1032] = "0;0", --Devotion Aura (Rank 5)
[1038] = "10;1", --Hand of Salvation
[1044] = "6;1", --Hand of Freedom
[1066] = "0;0", --Aquatic Form (Shapeshift)
[1075] = "600;1", --Thorns (Rank 3)
[1126] = "1800;1", --Mark of the Wild (Rank 1)
[1161] = "6;0", --Challenging Shout
[1243] = "1800;1", --Power Word: Fortitude (Rank 1)
[1244] = "1800;1", --Power Word: Fortitude (Rank 2)
[1245] = "1800;1", --Power Word: Fortitude (Rank 3)
[1330] = "3;0", --Garrote - Silence
[1459] = "1800;1", --Arcane Intellect (Rank 1)
[1460] = "1800;1", --Arcane Intellect (Rank 2)
[1461] = "1800;1", --Arcane Intellect (Rank 3)
[1513] = "20;1", --Scare Beast (Rank 1)
[1539] = "10;0", --Feed Pet
[1543] = "0;0", --Flare
[1604] = "4;0", --Dazed
[1706] = "120;1", --Levitate
[1715] = "15;0", --Hamstring 1
[1719] = "12;0", --Recklessness
[1776] = "4;0", --Gouge
[1784] = "0;0", --Stealth
[1833] = "4;0", --Cheap Shot
[1953] = "1;0", --Blink
[2094] = "10;0", --Blind
[2367] = "3600;0", --Lesser Strength
[2374] = "3600;0", --Lesser Agility
[2378] = "3600;0", --Health
[2479] = "30;0", --Honorless Target
[2565] = "10;0", --Shield Block
[2584] = "0;0", --Waiting to Resurrect
[2645] = "0;1", --Ghost Wolf
[2791] = "1800;1", --Power Word: Fortitude (Rank 4)
[2825] = "40;1", --Bloodlust
[2893] = "12;1", --Abolish Poison
[2895] = "0;0", --Wrath of Air Totem
[3034] = "8;3", --Viper Sting
[3043] = "20;3", --Scorpid Sting
[3045] = "15;0", --Rapid Fire
[3166] = "3600;0", --Lesser Intellect
[3355] = "20;1", --Freezing Trap Effect (Rank 1)
[3409] = "12;3", --Crippling Poison
[3436] = "300;2", --Wandering Plague
[3600] = "45;1", --Earthbind
[3714] = "600;0", --Path of Frost
[4167] = "4;1", --Web (Rank 1)
[4511] = "0;0", --Phase Shift
[5116] = "4;0", --Concussive Shot
[5118] = "0;0", --Aspect of the Cheetah
[5209] = "6;0", --Challenging Roar
[5215] = "0;0", --Prowl
[5229] = "10;0", --Enrage
[5232] = "1800;1", --Mark of the Wild (Rank 2)
[5234] = "1800;1", --Mark of the Wild (Rank 4)
[5384] = "360;0", --Feign Death
[5484] = "6;1", --Howl of Terror (Rank 1)
[5487] = "0;0", --Bear Form (Shapeshift)
[5697] = "600;0", --Unending Breath
[5760] = "10;3", --Mind-numbing Poison
[6150] = "12;0", --Quick Shots
[6196] = "0;0", --Far Sight
[6215] = "20;1", --Fear (Rank 3)
[6307] = "0;0", --Blood Pact (Rank 1)
[6346] = "180;1", --Fear Ward
[6358] = "15;1", --Seduction
[6562] = "0;0", --Heroic Presence (Racial Passive)
[6653] = "0;0", --Dire Wolf
[6756] = "1800;1", --Mark of the Wild (Rank 3)
[6770] = "60;0", --Sap (Rank 1)
[6774] = "6;0", --Slice and Dice (Rank 2)
[6788] = "15;0", --Weakened Soul
[6795] = "3;0", --Growl
[7178] = "1800;0", --Water Breathing (Rank 1)
[7300] = "1800;0", --Frost Armor (Rank 2)
[7301] = "1800;0", --Frost Armor (Rank 3)
[7302] = "1800;0", --Ice Armor (Rank 1)
[7321] = "5;1", --Chilled (Rank 1)
[7353] = "60;0", --Cozy Fire
[7744] = "0;0", --Will of the Forsaken (Racial)
[7804] = "0;0", --Blood Pact (Rank 2)
[7870] = "300;0", --Lesser Invisibility
[7922] = "2;0", --Charge Stun (1.5 seconds)
[8178] = "0;0", --Grounding Totem Effect (Rank 1)
[8212] = "1200;0", --Enlarge
[8219] = "3600;0", --Flip Out
[8220] = "3600;0", --Flip Out
[8221] = "3600;0", --Yaaarrrr
[8222] = "3600;0", --Yaaarrrr
[8326] = "0;0", --Ghost
[8385] = "3600;1", --Swift Wind
[8395] = "0;0", --Emerald Raptor
[8515] = "0;0", --Windfury Totem (Rank 1)
[8643] = "6;0", --Kidney Shot (Rank 2)
[8647] = "30;0", --Expose Armor
[8907] = "1800;1", --Mark of the Wild (Rank 5)
[8914] = "600;1", --Thorns (Rank 4)
[8983] = "4;0", --Bash (Rank 3)
[9484] = "30;1", --Shackle Undead (Rank 1)
[9485] = "40;1", --Shackle Undead (Rank 2)
[9634] = "0;0", --Dire Bear Form (Shapeshift)
[9756] = "600;1", --Thorns (Rank 5)
[9884] = "1800;1", --Mark of the Wild (Rank 6)
[9885] = "1800;1", --Mark of the Wild (Rank 7)
[10060] = "15;1", --Power Infusion
[10156] = "1800;1", --Arcane Intellect (Rank 4)
[10157] = "1800;1", --Arcane Intellect (Rank 5)
[10219] = "1800;0", --Ice Armor (Rank 3)
[10220] = "1800;0", --Ice Armor (Rank 4)
[10278] = "10;1", --Hand of Protection (Rank 3)
[10290] = "0;0", --Devotion Aura (Rank 2)
[10291] = "0;0", --Devotion Aura (Rank 4)
[10293] = "0;0", --Devotion Aura (Rank 7)
[10298] = "0;0", --Retribution Aura (Rank 2)
[10299] = "0;0", --Retribution Aura (Rank 3)
[10300] = "0;0", --Retribution Aura (Rank 4)
[10301] = "0;0", --Retribution Aura (Rank 5)
[10308] = "6;1", --Hammer of Justice (Rank 4)
[10326] = "20;1", --Turn Evil
[10431] = "600;1", --Lightning Shield (Rank 6)
[10796] = "0;0", --Turquoise Raptor
[10799] = "0;0", --Violet Raptor
[10890] = "8;1", --Psychic Scream (Rank 4)
[10894] = "18;1", --Shadow Word: Pain (Rank 8)
[10901] = "30;1", --Power Word: Shield (Rank 10)
[10937] = "1800;1", --Power Word: Fortitude (Rank 5)
[10938] = "1800;1", --Power Word: Fortitude (Rank 6)
[10951] = "1800;0", --Inner Fire (Rank 5)
[10952] = "1800;0", --Inner Fire (Rank 6)
[10955] = "50;1", --Shackle Undead (Rank 3)
[10957] = "1200;1", --Shadow Protection (Rank 2)
[10958] = "600;1", --Shadow Protection (Rank 3)
[11196] = "60;0", --Recently Bandaged
[11305] = "15;0", --Sprint (Rank 3)
[11549] = "120;0", --Battle Shout (Rank 4)
[11719] = "12;4", --Curse of Tongues (Rank 2)
[11733] = "1800;0", --Demon Armor (Rank 3)
[12042] = "15;1", --Arcane Power
[12043] = "0;1", --Presence of Mind
[12051] = "8;0", --Evocation
[12169] = "5;0", --Shield Block
[12323] = "6;0", --Piercing Howl
[12328] = "30;0", --Sweeping Strikes
[12472] = "20;1", --Icy Veins
[12494] = "5;1", --Frostbite
[12536] = "15;1", --Clearcasting
[12544] = "1800;1", --Frost Armor
[12579] = "15;1", --Winter's Chill
[12654] = "4;1", --Ignite
[12721] = "6;0", --Deep Wounds
[12809] = "5;0", --Concussion Blow
[12970] = "15;0", --Flurry (Rank 5)
[12976] = "20;0", --Last Stand
[13159] = "0;0", --Aspect of the Pack
[13163] = "0;0", --Aspect of the Monkey
[13165] = "0;0", --Aspect of the Hawk (Rank 1)
[13443] = "15;0", --Rend
[13750] = "15;0", --Adrenaline Rush
[13810] = "0;0", --Frost Trap Aura
[13877] = "15;0", --Blade Flurry
[14149] = "20;0", --Remorseless (Rank 2)
[14177] = "0;0", --Cold Blood
[14203] = "12;0", --Enrage (Rank 4)
[14267] = "0;0", --Horde Flag
[14268] = "0;0", --Alliance Flag
[14278] = "7;0", --Ghostly Strike
[14308] = "20;1", --Freezing Trap Effect (Rank 2)
[14309] = "20;1", --Freezing Trap Effect (Rank 3)
[14318] = "0;0", --Aspect of the Hawk (Rank 2)
[14319] = "0;0", --Aspect of the Hawk (Rank 3)
[14320] = "0;0", --Aspect of the Hawk (Rank 4)
[14321] = "0;0", --Aspect of the Hawk (Rank 5)
[14322] = "0;0", --Aspect of the Hawk (Rank 6)
[14325] = "120;1", --Hunter's Mark (Rank 4)
[14751] = "0;1", --Inner Focus
[14752] = "1800;1", --Divine Spirit (Rank 1)
[14818] = "1800;1", --Divine Spirit (Rank 2)
[14819] = "1800;1", --Divine Spirit (Rank 3)
[14893] = "15;1", --Inspiration (Rank 1)
[15007] = "600;0", --Resurrection Sickness (assuming level 20+)
[15258] = "15;1", --Shadow Weaving (Rank 1)
[15271] = "15;1", --Spirit Tap (Rank 1)
[15286] = "1800;0", --Vampiric Embrace
[15359] = "15;1", --Inspiration (Rank 3)
[15473] = "0;0", --Shadowform
[15487] = "5;1", --Silence
[15571] = "4;0", --Dazed
[15588] = "0;1", --Thunderclap
[15708] = "0;0", --Mortal Strike
[16166] = "30;1", --Elemental Mastery
[16188] = "0;1", --Nature's Swiftness
[16236] = "15;1", --Ancestral Fortitude (Rank 2)
[16237] = "15;1", --Ancestral Fortitude (Rank 3)
[16246] = "15;1", --Clearcasting
[16280] = "15;0", --Flurry (Rank 5)
[16468] = "0;3", --Mother's Milk
[16491] = "6;0", --Blood Craze
[16509] = "15;0", --Rend
[16567] = "600;4", --Tainted Mind
[16591] = "600;1", --Noggenfogger Elixir
[16593] = "15;1", --Noggenfogger Elixir
[16595] = "600;1", --Noggenfogger Elixir
[16609] = "3600;0", --Warchief's Blessing
[16857] = "300;1", --Faerie Fire (Feral)
[16870] = "15;1", --Clearcasting
[16886] = "3;1", --Nature's Grace
[17116] = "0;1", --Nature's Swiftness
[17229] = "0;0", --Winterspring Frostsaber
[17364] = "12;0", --Stormstrike
[17465] = "0;0", --Green Skeletal Warhorse
[17481] = "0;0", --Rivendare's Deathcharger
[17539] = "7200;0", --Greater Arcane Elixir
[17619] = "0;0", --Alchemist's Stone
[17670] = "0;0", --Argent Dawn Commission
[17800] = "30;1", --Shadow Mastery
[17928] = "8;1", --Howl of Terror (Rank 2)
[17941] = "10;1", --Shadow Trance
[17962] = "6;0", --Conflagrate
[18118] = "5;1", --Aftermath
[18223] = "12;4", --Curse of Exhaustion
[18499] = "10;0", --Berserker Rage
[18647] = "30;1", --Banish (Rank 2)
[18657] = "40;1", --Hibernate (Rank 2)
[18708] = "15;1", --Fel Domination
[18990] = "0;0", --Brown Kodo
[19136] = "0;0", --Stormbolt
[19263] = "5;0", --Deterrence
[19503] = "4;0", --Scatter Shot
[19506] = "0;0", --Trueshot Aura
[19574] = "10;0", --Bestial Wrath
[19579] = "0;0", --Spirit Bond (Rank 1)
[19615] = "8;0", --Frenzy Effect (Rank 1)
[19683] = "900;0", --Tame Armored Scorpid
[19742] = "600;1", --Blessing of Wisdom (Rank 1)
[19746] = "0;0", --Concentration Aura
[19821] = "5;1", --Arcane Bomb
[19835] = "600;1", --Blessing of Might (Rank 3)
[19836] = "600;1", --Blessing of Might (Rank 4)
[19837] = "600;1", --Blessing of Might (Rank 5)
[19838] = "1800;1", --Blessing of Might (Rank 6)
[19853] = "600;1", --Blessing of Wisdom (Rank 4)
[19899] = "0;0", --Fire Resistance Aura (Rank 2)
[20005] = "5;0", --Chilled
[20007] = "15;0", --Holy Strength
[20053] = "30;1", --Vengeance
[20066] = "60;1", --Repentance
[20132] = "10;0", --Redoubt
[20164] = "1800;0", --Seal of Justice
[20165] = "1800;0", --Seal of Light
[20166] = "1800;0", --Seal of Wisdom
[20170] = "2;0", --Stun
[20178] = "8;0", --Reckoning
[20184] = "20;1", --Judgement of Justice
[20185] = "20;1", --Judgement of Light (Rank 1)
[20186] = "20;1", --Judgement of Wisdom (Rank 1)
[20216] = "0;1", --Divine Favor
[20217] = "600;1", --Blessing of Kings
[20230] = "12;0", --Retaliation
[20236] = "15;1", --Lay on Hands (Rank 2)
[20253] = "3;0", --Intercept (Rank 1)
[20375] = "1800;0", --Seal of Command
[20511] = "8;0", --Intimidating Shout
[20549] = "2;0", --War Stomp (Racial)
[20572] = "15;0", --Blood Fury (Racial)
[20578] = "10;0", --Cannibalize
[20736] = "6;0", --Distracting Shot
[20911] = "600;1", --Blessing of Sanctuary
[21084] = "1800;0", --Seal of Righteousness
[21183] = "20;0", --Heart of the Crusader (Rank 1)
[21553] = "10;0", --Mortal Strike (Rank 4)
[21564] = "3600;1", --Prayer of Fortitude (Rank 2)
[21850] = "3600;1", --Gift of the Wild (Rank 2)
[22717] = "0;0", --Black War Steed
[22718] = "0;0", --Black War Kodo
[22719] = "0;0", --Black Battlestrider
[22720] = "0;0", --Black War Ram
[22721] = "0;0", --Black War Raptor
[22722] = "0;0", --Red Skeletal Warhorse
[22723] = "0;0", --Black War Tiger
[22724] = "0;0", --Black War Wolf
[22782] = "1800;0", --Mage Armor (Rank 2)
[22812] = "12;1", --Barkskin
[22842] = "10;0", --Frenzied Regeneration
[22888] = "7200;0", --Rallying Cry of the Dragonslayer
[22911] = "0;0", --Charge
[22959] = "30;1", --Improved Scorch
[23028] = "3600;1", --Arcane Brilliance (Rank 1)
[23033] = "0;0", --Battle Standard
[23036] = "0;0", --Battle Standard
[23161] = "0;0", --Dreadsteed (Summon)
[23214] = "0;0", --Charger (Summon)
[23219] = "0;0", --Swift Mistsaber
[23221] = "0;0", --Swift Frostsaber
[23227] = "0;0", --Swift Palomino
[23228] = "0;0", --Swift White Steed
[23229] = "0;0", --Swift Brown Steed
[23238] = "0;0", --Swift Brown Ram
[23239] = "0;0", --Swift Gray Ram
[23240] = "0;0", --Swift White Ram
[23241] = "0;0", --Swift Blue Raptor
[23242] = "0;0", --Swift Olive Raptor
[23243] = "0;0", --Swift Orange Raptor
[23246] = "0;0", --Purple Skeletal Warhorse
[23247] = "0;0", --Great White Kodo
[23248] = "0;0", --Great Gray Kodo
[23249] = "0;0", --Great Brown Kodo
[23250] = "0;0", --Swift Brown Wolf
[23251] = "0;0", --Swift Timber Wolf
[23252] = "0;0", --Swift Gray Wolf
[23333] = "0;0", --Warsong Flag
[23335] = "0;0", --Silverwing Flag
[23338] = "0;0", --Swift Stormsaber
[23451] = "10;0", --Speed
[23493] = "10;0", --Restoration
[23509] = "0;0", --Frostwolf Howler
[23510] = "0;0", --Stormpike Battle Charger
[23511] = "30;0", --Demoralizing Shout
[23693] = "120;0", --Stormpike's Salvation
[23694] = "5;0", --Improved Hamstring
[23885] = "8;0", --Bloodthirst
[23920] = "5;0", --Spell Reflection
[23978] = "10;0", --Speed
[24242] = "0;0", --Swift Razzashi Raptor
[24252] = "0;0", --Swift Zulian Tiger
[24259] = "3;1", --Spell Lock
[24378] = "60;0", --Berserking
[24398] = "600;1", --Water Shield (Rank 7)
[24450] = "0;0", --Prowl (Rank 1)
[24452] = "0;0", --Prowl (Rank 2)
[24529] = "0;0", --Spirit Bond (Rank 2)
[24711] = "3600;0", --Ninja Costume
[24735] = "3600;0", --Ghost Costume
[24858] = "0;0", --Moonkin Form (Shapeshift)
[24907] = "0;0", --Moonkin Aura
[24932] = "0;0", --Leader of the Pack
[25046] = "2;1", --Arcane Torrent (Racial)
[25163] = "0;0", --Oozeling's Disgusting Aura
[25228] = "0;0", --Soul Link
[25291] = "600;1", --Blessing of Might (Rank 7)
[25296] = "0;0", --Aspect of the Hawk (Rank 7)
[25312] = "1800;1", --Divine Spirit (Rank 5)
[25389] = "1800;1", --Power Word: Fortitude (Rank 7)
[25392] = "3600;1", --Prayer of Fortitude (Rank 3)
[25433] = "600;1", --Shadow Protection (Rank 4)
[25472] = "600;1", --Lightning Shield (Rank 9)
[25771] = "120;0", --Forbearance
[25780] = "120;1", --Righteous Fury
[25804] = "900;0", --Rumsey Rum Black Label
[25809] = "12;3", --Crippling Poison (Rank 1)
[25810] = "12;3", --Mind-numbing Poison
[25898] = "1800;1", --Greater Blessing of Kings
[25899] = "1800;1", --Greater Blessing of Sanctuary
[26004] = "1800;0", --Mistletoe
[26013] = "900;0", --Deserter
[26017] = "10;1", --Vindication (Rank 2)
[26297] = "10;0", --Berserking (Racial)
[26669] = "15;0", --Evasion (Rank 2)
[26864] = "15;0", --Hemorrhage (Rank 4)
[26888] = "10;0", --Vanish (Rank 3)
[26990] = "1800;1", --Mark of the Wild (Rank 8)
[26991] = "3600;1", --Gift of the Wild (Rank 3)
[26992] = "600;1", --Thorns (Rank 7)
[27044] = "0;0", --Aspect of the Hawk (Rank 8)
[27089] = "30;0", --Drink
[27124] = "1800;0", --Ice Armor (Rank 5)
[27126] = "1800;1", --Arcane Intellect (Rank 6)
[27127] = "3600;1", --Arcane Brilliance (Rank 2)
[27142] = "600;1", --Blessing of Wisdom (Rank 7)
[27143] = "1800;1", --Greater Blessing of Wisdom (Rank 3)
[27149] = "0;0", --Devotion Aura (Rank 8)
[27150] = "0;0", --Retribution Aura (Rank 6)
[27151] = "0;0", --Shadow Resistance Aura (Rank 4)
[27152] = "0;0", --Frost Resistance Aura (Rank 4)
[27268] = "0;0", --Blood Pact (Rank 6)
[27813] = "6;1", --Blessed Recovery (Rank 1)
[27818] = "6;1", --Blessed Recovery (Rank 3)
[27827] = "15;0", --Spirit of Redemption
[27828] = "6;1", --Focused Casting (Rank 2)
[27841] = "1800;1", --Divine Spirit (Rank 4)
[28093] = "15;0", --Lightning Speed
[28176] = "1800;0", --Fel Armor (Rank 1)
[28497] = "3600;0", --Mighty Agility
[28520] = "7200;0", --Flask of Relentless Assault
[28730] = "2;1", --Arcane Torrent (Racial)
[28878] = "0;0", --Heroic Presence (Racial Passive)
[29131] = "10;0", --Bloodrage
[29166] = "10;1", --Innervate
[29177] = "10;0", --Elemental Devastation (Rank 2)
[29178] = "10;0", --Elemental Devastation (Rank 3)
[29348] = "3600;0", --Goldenmist Special Brew
[29703] = "6;0", --Dazed
[29801] = "0;0", --Rampage (Passive)
[29842] = "10;0", --Second Wind (Rank 2)
[30070] = "0;0", --Blood Frenzy (Rank 2)
[30708] = "0;0", --Totem of Wrath
[30802] = "0;0", --Unleashed Rage (Rank 1)
[30809] = "0;0", --Unleashed Rage (Rank 3)
[30823] = "15;0", --Shamanistic Rage
[31224] = "5;0", --Cloak of Shadows
[31579] = "0;0", --Arcane Empowerment (Rank 1)
[31583] = "0;0", --Arcane Empowerment (Rank 3)
[31589] = "15;1", --Slow
[31616] = "10;0", --Nature's Guardian
[31661] = "3;1", --Dragon's Breath (Rank 1)
[31665] = "6;0", --Master of Subtlety
[31790] = "3;0", --Righteous Defense
[31801] = "1800;0", --Seal of Vengeance
[31803] = "15;1", --Holy Vengeance (Rank 1)
[31821] = "6;0", --Aura Mastery
[31834] = "15;1", --Light's Grace
[31842] = "15;1", --Divine Illumination
[31884] = "20;1", --Avenging Wrath
[32182] = "40;1", --Heroism
[32223] = "0;0", --Crusader Aura
[32243] = "0;0", --Tawny Wind Rider
[32244] = "0;0", --Blue Wind Rider
[32245] = "0;0", --Green Wind Rider
[32246] = "0;0", --Swift Red Wind Rider
[32295] = "0;0", --Swift Green Wind Rider
[32297] = "0;0", --Swift Purple Wind Rider
[32388] = "0;1", --Shadow Embrace
[32390] = "0;1", --Shadow Embrace
[32391] = "0;1", --Shadow Embrace
[32600] = "10;0", --Avoidance
[32612] = "0;0", --Invisibility
[32851] = "10;0", --Demonic Frenzy
[32999] = "3600;1", --Prayer of Spirit (Rank 2)
[33041] = "3;1", --Dragon's Breath (Rank 2)
[33042] = "3;1", --Dragon's Breath (Rank 3)
[33043] = "3;1", --Dragon's Breath (Rank 4)
[33197] = "24;0", --Misery (Rank 2)
[33198] = "24;0", --Misery (Rank 3)
[33206] = "8;1", --Pain Suppression
[33256] = "1800;0", --Well Fed
[33263] = "1800;0", --Well Fed
[33268] = "1800;0", --Well Fed
[33280] = "0;0", --Corporal
[33357] = "15;0", --Dash (Rank 3)
[33395] = "8;1", --Freeze
[33660] = "0;0", --Swift Pink Hawkstrider
[33697] = "15;0", --Blood Fury (Racial)
[33721] = "3600;0", --Spellpower Elixir
[33736] = "600;1", --Water Shield (Rank 8)
[33763] = "7;1", --Lifebloom (Rank 1)
[33786] = "6;0", --Cyclone
[33891] = "0;0", --Tree of Life (Shapeshift)
[33943] = "0;0", --Flight Form (Shapeshift)
[34027] = "30;0", --Kill Command (Rank 1)
[34074] = "0;0", --Aspect of the Viper
[34123] = "0;0", --Tree of Life (Passive)
[34321] = "10;0", --Call of the Nexus
[34471] = "18;0", --The Beast Within
[34477] = "30;0", --Misdirection
[34490] = "3;1", --Silencing Shot
[34501] = "7;1", --Expose Weakness
[34655] = "8;3", --Deadly Poison
[34767] = "0;0", --Summon Charger (Summon)
[34769] = "0;0", --Summon Warhorse (Summon)
[34790] = "0;0", --Dark War Talbuk
[34795] = "0;0", --Red Hawkstrider
[34837] = "8;0", --Master Tactician (Rank 5)
[34896] = "0;0", --Cobalt War Talbuk
[34897] = "0;0", --White War Talbuk
[34898] = "0;0", --Silver War Talbuk
[34899] = "0;0", --Tan War Talbuk
[34936] = "8;1", --Backlash
[35020] = "0;0", --Blue Hawkstrider
[35025] = "0;0", --Swift Green Hawkstrider
[35027] = "0;0", --Swift Purple Hawkstrider
[35028] = "0;0", --Swift Warstrider
[35098] = "20;0", --Rapid Killing (Rank 1)
[35099] = "20;0", --Rapid Killing (Rank 2)
[35101] = "4;0", --Concussive Barrage
[35696] = "0;0", --Demonic Knowledge
[35706] = "0;0", --Master Demonologist
[35713] = "0;0", --Great Blue Elekk
[35714] = "0;0", --Great Purple Elekk
[36032] = "6;0", --Arcane Blast
[36444] = "0;0", --Wintergrasp Water
[36554] = "3;0", --Shadowstep
[36563] = "10;0", --Shadowstep
[37795] = "0;0", --Recruit
[38384] = "8;1", --Cone of Cold
[39315] = "0;0", --Cobalt Riding Talbuk
[39316] = "0;0", --Dark Riding Talbuk
[39317] = "0;0", --Silver Riding Talbuk
[39319] = "0;0", --White Riding Talbuk
[39374] = "1200;1", --Prayer of Shadow Protection (Rank 2)
[39439] = "10;0", --Aura of the Crusader
[39627] = "3600;0", --Elixir of Draenic Wisdom
[39796] = "3;1", --Stoneclaw Stun
[39800] = "0;0", --Red Riding Nether Ray
[39802] = "0;0", --Silver Riding Nether Ray
[40120] = "0;0", --Swift Flight Form (Shapeshift)
[40623] = "3600;0", --Apexis Vibrations
[40625] = "5400;0", --Apexis Emanations
[41252] = "0;0", --Raven Lord
[41425] = "30;0", --Hypothermia
[41514] = "0;0", --Azure Netherwing Drake
[41516] = "0;0", --Purple Netherwing Drake
[42138] = "7200;0", --Brewfest Enthusiast
[42292] = "0;0", --PvP Trinket
[42650] = "4;0", --Army of the Dead
[42842] = "9;1", --Frostbolt (Rank 16)
[42891] = "0;0", --Pyroblast (Rank 12)
[42917] = "8;1", --Frost Nova (Rank 6)
[42931] = "11;1", --Cone of Cold (Rank 8)
[42949] = "5;1", --Dragon's Breath (Rank 5)
[42950] = "5;1", --Dragon's Breath (Rank 6)
[42995] = "1800;1", --Arcane Intellect (Rank 7)
[43002] = "3600;1", --Arcane Brilliance (Rank 3)
[43008] = "1800;0", --Ice Armor (Rank 6)
[43010] = "30;1", --Fire Ward (Rank 7)
[43012] = "30;1", --Frost Ward (Rank 7)
[43015] = "600;1", --Dampen Magic (Rank 7)
[43020] = "60;1", --Mana Shield (Rank 9)
[43024] = "1800;0", --Mage Armor (Rank 6)
[43038] = "60;1", --Ice Barrier (Rank 7)
[43039] = "60;1", --Ice Barrier (Rank 8)
[43045] = "1800;0", --Molten Armor (Rank 2)
[43046] = "1800;0", --Molten Armor (Rank 3)
[43180] = "30;0", --Food
[43183] = "30;0", --Drink
[43196] = "1800;1", --Armor (Rank 6)
[43265] = "0;0", --Death and Decay (Rank 1)
[43680] = "60;0", --Idle
[43681] = "60;0", --Inactive
[43688] = "0;0", --Amani War Bear
[43751] = "10;0", --Energized
[43771] = "3600;0", --Well Fed
[43900] = "0;0", --Swift Brewfest Ram
[43927] = "0;0", --Cenarion War Hippogryph
[44151] = "0;0", --Turbo-Charged Flying Machine
[44153] = "0;0", --Flying Machine
[44401] = "15;1", --Missile Barrage
[44413] = "10;1", --Incanter's Absorption
[44521] = "0;0", --Preparation
[44535] = "6;0", --Spirit Heal
[44572] = "5;1", --Deep Freeze
[44795] = "0;0", --Parachute
[45182] = "3;0", --Cheating Death
[45241] = "8;1", --Focused Will (Rank 2)
[45242] = "8;1", --Focused Will (Rank 3)
[45282] = "8;1", --Natural Perfection (Rank 2)
[45283] = "8;1", --Natural Perfection (Rank 3)
[45334] = "4;0", --Feral Charge Effect
[45373] = "7200;0", --Bloodberry
[45438] = "10;1", --Ice Block
[45472] = "60;0", --Parachute
[45524] = "10;1", --Chains of Ice
[45529] = "20;0", --Blood Tap
[45544] = "8;0", --First Aid (Rank 15)
[45548] = "30;0", --Food
[46168] = "0;0", --Pet Biscuit
[46199] = "0;0", --X-51 Nether-Rocket X-TREME
[46356] = "300;0", --Blood Elf Illusion
[46604] = "4;1", --Ice Block
[46628] = "0;0", --Swift White Hawkstrider
[46833] = "15;0", --Wrath of Elune
[46857] = "60;0", --Trauma (Rank 2)
[46916] = "5;0", --Slam!
[46924] = "6;0", --Bladestorm
[46968] = "4;0", --Shockwave
[46987] = "4;1", --Frostbolt
[46989] = "4;1", --Improved Blink
[47241] = "30;0", --Metamorphosis
[47436] = "120;0", --Battle Shout (Rank 9)
[47437] = "30;0", --Demoralizing Shout (Rank 8)
[47440] = "120;0", --Commanding Shout (Rank 3)
[47465] = "15;0", --Rend (Rank 10)
[47476] = "5;1", --Strangulate
[47481] = "3;0", --Gnaw
[47486] = "10;0", --Mortal Strike (Rank 8)
[47502] = "30;0", --Thunder Clap (Rank 9)
[47585] = "6;0", --Dispersion
[47610] = "12;1", --Frostfire Bolt (Rank 2)
[47753] = "12;1", --Divine Aegis (Rank 1)
[47811] = "15;1", --Immolate (Rank 11)
[47813] = "18;1", --Corruption (Rank 10)
[47823] = "15;0", --Hellfire (Rank 5)
[47836] = "18;1", --Seed of Corruption (Rank 3)
[47843] = "15;1", --Unstable Affliction (Rank 5)
[47847] = "3;1", --Shadowfury (Rank 5)
[47855] = "15;0", --Drain Soul (Rank 6)
[47856] = "9;0", --Health Funnel (Rank 9)
[47857] = "5;1", --Drain Life (Rank 9)
[47860] = "3;1", --Death Coil (Rank 6)
[47864] = "24;4", --Curse of Agony (Rank 9)
[47865] = "300;4", --Curse of the Elements (Rank 5)
[47883] = "900;0", --Soulstone Resurrection
[47889] = "1800;0", --Demon Armor (Rank 8)
[47891] = "30;1", --Shadow Ward (Rank 6)
[47893] = "1800;0", --Fel Armor (Rank 4)
[47930] = "15;1", --Grace
[47982] = "0;0", --Blood Pact (Rank 7)
[47983] = "180;1", --Fire Shield (Rank 7)
[47986] = "30;1", --Sacrifice (Rank 9)
[47988] = "6;0", --Consume Shadows (Rank 9)
[47990] = "15;1", --Suffering (Rank 8)
[47995] = "3;0", --Intercept (Rank 4)
[48018] = "360;0", --Demonic Circle: Summon
[48024] = "0;0", --Headless Horseman's Mount
[48027] = "0;0", --Black War Elekk
[48040] = "1800;0", --Inner Fire (Rank 8)
[48065] = "30;1", --Power Word: Shield (Rank 13)
[48066] = "30;1", --Power Word: Shield (Rank 14)
[48068] = "15;1", --Renew (Rank 14)
[48073] = "1800;1", --Divine Spirit (Rank 6)
[48074] = "3600;1", --Prayer of Spirit (Rank 3)
[48090] = "45;0", --Demonic Pact
[48101] = "1800;1", --Stamina (Level 6)
[48111] = "30;1", --Prayer of Mending (Rank 3)
[48125] = "18;1", --Shadow Word: Pain (Rank 12)
[48135] = "7;1", --Holy Fire (Rank 11)
[48156] = "3;0", --Mind Flay (Rank 9)
[48160] = "15;1", --Vampiric Touch (Rank 5)
[48161] = "1800;1", --Power Word: Fortitude (Rank 8)
[48162] = "3600;1", --Prayer of Fortitude (Rank 4)
[48168] = "1800;0", --Inner Fire (Rank 9)
[48169] = "600;1", --Shadow Protection (Rank 5)
[48170] = "1200;1", --Prayer of Shadow Protection (Rank 3)
[48263] = "0;0", --Frost Presence
[48265] = "0;0", --Unholy Presence
[48266] = "0;0", --Blood Presence
[48300] = "24;2", --Devouring Plague (Rank 9)
[48301] = "10;1", --Mind Trauma
[48391] = "10;0", --Owlkin Frenzy
[48418] = "0;0", --Master Shapeshifter
[48420] = "0;0", --Master Shapeshifter
[48421] = "0;0", --Master Shapeshifter
[48422] = "0;0", --Master Shapeshifter
[48441] = "15;1", --Rejuvenation (Rank 15)
[48443] = "21;1", --Regrowth (Rank 12)
[48446] = "0;0", --Tranquility (Rank 6)
[48447] = "7;0", --Tranquility (Rank 7)
[48450] = "7;1", --Lifebloom (Rank 2)
[48451] = "7;1", --Lifebloom (Rank 3)
[48463] = "12;1", --Moonfire (Rank 14)
[48467] = "0;0", --Hurricane (Rank 5)
[48468] = "14;1", --Insect Swarm (Rank 7)
[48469] = "1800;1", --Mark of the Wild (Rank 9)
[48470] = "3600;1", --Gift of the Wild (Rank 4)
[48504] = "15;0", --Living Seed
[48517] = "15;0", --Eclipse (Solar)
[48518] = "15;0", --Eclipse (Lunar)
[48560] = "30;0", --Demoralizing Roar (Rank 8)
[48564] = "60;0", --Mangle (Bear) (Rank 5)
[48566] = "60;0", --Mangle (Cat) (Rank 5)
[48568] = "15;0", --Lacerate (Rank 3)
[48574] = "9;0", --Rake (Rank 7)
[48660] = "15;0", --Hemorrhage (Rank 5)
[48671] = "16;0", --Rupture (Rank 8)
[48672] = "16;0", --Rupture (Rank 9)
[48674] = "6;0", --Deadly Throw (Rank 3)
[48675] = "18;0", --Garrote (Rank 9)
[48676] = "18;0", --Garrote (Rank 10)
[48707] = "5;0", --Anti-Magic Shell
[48778] = "0;0", --Acherus Deathcharger (Summon)
[48792] = "12;0", --Icebound Fortitude
[48817] = "3;1", --Holy Wrath (Rank 5)
[48827] = "10;1", --Avenger's Shield (Rank 5)
[48836] = "5;0", --Vengeful Justice
[48931] = "1800;1", --Blessing of Might (Rank 9)
[48932] = "600;1", --Blessing of Might (Rank 10)
[48933] = "1800;1", --Greater Blessing of Might (Rank 4)
[48934] = "1800;1", --Greater Blessing of Might (Rank 5)
[48935] = "600;1", --Blessing of Wisdom (Rank 8)
[48936] = "600;1", --Blessing of Wisdom (Rank 9)
[48938] = "1800;1", --Greater Blessing of Wisdom (Rank 5)
[48942] = "0;0", --Devotion Aura (Rank 10)
[48943] = "0;0", --Shadow Resistance Aura (Rank 5)
[48945] = "0;0", --Frost Resistance Aura (Rank 5)
[48947] = "0;0", --Fire Resistance Aura (Rank 5)
[48952] = "10;1", --Holy Shield (Rank 6)
[48989] = "15;1", --Mend Pet (Rank 9)
[48990] = "15;1", --Mend Pet (Rank 10)
[49000] = "15;3", --Serpent Sting (Rank 11)
[49001] = "15;3", --Serpent Sting (Rank 12)
[49010] = "30;3", --Wyvern Sting (Rank 6)
[49012] = "30;3", --Wyvern Sting (Rank 6)
[49016] = "30;0", --Hysteria
[49028] = "12;0", --Dancing Rune Weapon
[49039] = "10;0", --Lichborne
[49050] = "10;0", --Aimed Shot (Rank 9)
[49054] = "15;1", --Immolation Trap (Rank 8)
[49065] = "0;0", --Explosive Trap Effect (Rank 6)
[49203] = "10;1", --Hungering Cold (Rank 1)
[49206] = "0;0", --Summon Gargoyle
[49222] = "300;0", --Bone Shield
[49231] = "8;0", --Earth Shock (Rank 10)
[49233] = "18;1", --Flame Shock (Rank 9)
[49236] = "8;1", --Frost Shock (Rank 7)
[49280] = "600;1", --Lightning Shield (Rank 10)
[49281] = "600;1", --Lightning Shield (Rank 11)
[49284] = "600;1", --Earth Shield (Rank 5)
[49322] = "0;0", --Swift Zhevra
[49379] = "0;0", --Great Brewfest Kodo
[49560] = "3;0", --Death Grip
[49759] = "0;0", --Teleport
[49800] = "12;0", --Rip (Rank 9)
[49802] = "6;0", --Maim (Rank 2)
[49803] = "4;0", --Pounce (Rank 5)
[49804] = "18;0", --Pounce Bleed (Rank 5)
[49938] = "0;0", --Death and Decay (Rank 4)
[50213] = "6;0", --Tiger's Fury (Rank 6)
[50227] = "5;0", --Sword and Board
[50259] = "3;0", --Dazed
[50334] = "15;0", --Berserk
[50411] = "3;0", --Dazed
[50421] = "20;0", --Scent of Blood
[50436] = "10;0", --Icy Clutch
[50449] = "30;1", --Bloody Vengeance
[50461] = "0;0", --Anti-Magic Zone
[50510] = "0;2", --Crypt Fever
[50511] = "120;4", --Curse of Weakness (Rank 9)
[50518] = "2;0", --Ravage (Rank 1)
[50519] = "2;0", --Sonic Blast (Rank 1)
[50536] = "10;0", --Unholy Blight
[50589] = "13;0", --Immolation Aura (Demon)
[50613] = "2;1", --Arcane Torrent (Racial)
[50989] = "3;0", --Flame Breath
[51124] = "30;0", --Killing Machine
[51271] = "20;0", --Unbreakable Armor
[51470] = "0;0", --Elemental Oath (Rank 2)
[51514] = "30;4", --Hex
[51585] = "8;0", --Blade Twisting
[51690] = "2;0", --Killing Spree
[51693] = "8;0", --Waylay
[51713] = "6;0", --Shadow Dance
[51722] = "10;0", --Dismantle
[51724] = "60;0", --Sap (Rank 4)
[51726] = "0;2", --Ebon Plague
[51735] = "15;2", --Ebon Plague
[52000] = "12;1", --Earthliving (Rank 6)
[52127] = "600;1", --Water Shield (Rank 1)
[52129] = "600;1", --Water Shield (Rank 2)
[52131] = "600;1", --Water Shield (Rank 3)
[52134] = "600;1", --Water Shield (Rank 4)
[52136] = "600;1", --Water Shield (Rank 5)
[52179] = "0;0", --Astral Shift
[52418] = "0;0", --Carrying Seaforium
[52437] = "10;0", --Sudden Death
[52459] = "10;0", --End of Round
[52610] = "34;0", --Savage Roar (Rank 1) (note this duration changes by combo points, 14, 19, 24, 29, 34)
[52910] = "8;0", --Turn the Tables
[53023] = "5;0", --Mind Sear (Rank 2)
[53137] = "0;0", --Abomination's Might (Rank 1)
[53138] = "0;0", --Abomination's Might (Rank 2)
[53148] = "1;0", --Charge
[53200] = "0;0", --Starfall (Rank 3)
[53201] = "10;0", --Starfall (Rank 4)
[53220] = "12;0", --Improved Steady Shot
[53227] = "6;0", --Typhoon (Rank 5)
[53251] = "7;1", --Wild Growth (Rank 4)
[53257] = "10;0", --Cobra Strikes
[53283] = "30;0", --Food
[53284] = "1800;0", --Well Fed
[53307] = "600;1", --Thorns (Rank 8)
[53308] = "27;1", --Entangling Roots (Rank 8)
[53312] = "45;1", --Nature's Grasp (Rank 8)
[53313] = "27;1", --Entangling Roots (Rank 8)
[53338] = "300;1", --Hunter's Mark (Rank 5)
[53365] = "15;0", --Unholy Strength
[53390] = "15;1", --Tidal Waves
[53401] = "20;0", --Rabid
[53403] = "0;0", --Rabid Power
[53426] = "5;0", --Lick Your Wounds
[53434] = "20;0", --Call of the Wild
[53477] = "3;0", --Taunt
[53480] = "12;0", --Roar of Sacrifice
[53515] = "8;1", --Owl's Focus
[53517] = "9;1", --Roar of Recovery
[53547] = "4;1", --Pin (Rank 5)
[53548] = "4;1", --Pin (Rank 6)
[53563] = "60;1", --Beacon of Light
[53601] = "30;1", --Sacred Shield (Rank 1)
[53657] = "60;0", --Judgements of the Pure (Rank 3)
[53659] = "10;0", --Sacred Cleansing
[53736] = "1800;0", --Seal of Corruption
[53742] = "15;1", --Blood Corruption (Rank 1)
[53746] = "3600;0", --Wrath Elixir
[53748] = "3600;0", --Mighty Strength
[53749] = "3600;0", --Guru's Elixir
[53751] = "3600;0", --Elixir of Mighty Fortitude
[53752] = "3600;0", --Lesser Flask of Toughness
[53755] = "3600;0", --Flask of the Frost Wyrm
[53758] = "3600;0", --Flask of Stoneblood
[53760] = "3600;0", --Flask of Endless Rage
[53768] = "0;0", --Haunted
[53806] = "600;0", --Pygmy Oil
[53817] = "30;1", --Maelstrom Weapon
[53908] = "15;0", --Speed
[54043] = "0;0", --Retribution Aura (Rank 7)
[54131] = "5;0", --Bloodthirsty
[54149] = "15;0", --Infusion of Light (Rank 2)
[54152] = "60;0", --Judgements of the Pure (Rank 4)
[54153] = "60;0", --Judgements of the Pure (Rank 5)
[54203] = "12;1", --Sheath of Light
[54212] = "3600;0", --Flask of Pure Mojo
[54277] = "15;1", --Backdraft
[54370] = "8;1", --Nether Protection
[54371] = "8;1", --Nether Protection
[54372] = "8;1", --Nether Protection
[54373] = "8;1", --Nether Protection
[54374] = "8;1", --Nether Protection
[54375] = "8;1", --Nether Protection
[54428] = "15;1", --Divine Plea
[54499] = "20;0", --Heart of the Crusader (Rank 3)
[54501] = "6;0", --Consume Shadows
[54508] = "15;0", --Demonic Empowerment
[54643] = "20;0", --Teleport
[54646] = "1800;1", --Focus Magic
[54648] = "10;1", --Focus Magic
[54726] = "0;0", --Winged Steed of the Ebon Blade
[54727] = "0;0", --Winged Steed of the Ebon Blade
[54753] = "0;0", --White Polar Bear
[54758] = "12;0", --Hyperspeed Acceleration
[54833] = "10;1", --Glyph of Innervate
[54839] = "10;0", --Purified Spirit
[54861] = "5;0", --Nitro Boosts
[55001] = "30;0", --Parachute
[55018] = "10;0", --Sonic Awareness
[55021] = "4;1", --Silenced - Improved Counterspell (Rank 2)
[55078] = "15;2", --Blood Plague
[55080] = "8;1", --Shattered Barrier
[55095] = "15;2", --Frost Fever
[55166] = "20;1", --Tidal Force
[55233] = "10;0", --Vampiric Blood
[55277] = "15;0", --Stoneclaw Totem
[55360] = "12;1", --Living Bomb (Rank 3)
[55428] = "5;0", --Lifeblood (Rank 1)
[55480] = "5;0", --Lifeblood (Rank 2)
[55502] = "5;0", --Lifeblood (Rank 5)
[55503] = "5;0", --Lifeblood (Rank 6)
[55531] = "0;0", --Mechano-hog
[55610] = "0;0", --Improved Icy Talons
[55629] = "0;0", --First Lieutenant
[55637] = "15;0", --Lightweave
[55694] = "10;0", --Enraged Regeneration
[55711] = "600;0", --Weakened Heart
[55741] = "0;0", --Desecration
[55817] = "3600;0", --Eck Residue
[56222] = "3;0", --Dark Command
[56453] = "12;0", --Lock and Load
[56520] = "600;1", --Blessing of Might (Rank 10)
[56654] = "0;0", --Rapid Recuperation
[57073] = "30;0", --Drink
[57100] = "3600;0", --Well Fed
[57102] = "3600;0", --Well Fed
[57111] = "3600;0", --Well Fed
[57286] = "3600;0", --Well Fed
[57288] = "3600;0", --Well Fed
[57291] = "3600;0", --Well Fed
[57294] = "3600;0", --Well Fed
[57325] = "3600;0", --Well Fed
[57327] = "3600;0", --Well Fed
[57329] = "3600;0", --Well Fed
[57330] = "120;0", --Horn of Winter (Rank 1)
[57332] = "3600;0", --Well Fed
[57334] = "3600;0", --Well Fed
[57348] = "0;0", --Carrying an RP-GG
[57350] = "6;1", --Illusionary Barrier
[57356] = "3600;0", --Well Fed
[57358] = "3600;0", --Well Fed
[57365] = "3600;0", --Well Fed
[57367] = "3600;0", --Well Fed
[57371] = "3600;0", --Well Fed
[57399] = "3600;0", --Well Fed
[57457] = "0;0", --Kindred Spirits
[57458] = "0;0", --Kindred Spirits
[57475] = "0;0", --Kindred Spirits
[57482] = "0;0", --Kindred Spirits
[57485] = "0;0", --Kindred Spirits
[57516] = "12;0", --Enrage (Rank 2)
[57522] = "12;0", --Enrage (Rank 5)
[57524] = "120;1", --Metanoia
[57531] = "0;1", --Arcane Potency
[57564] = "0;0", --Fel Intelligence (Rank 2)
[57566] = "0;0", --Fel Intelligence (Rank 4)
[57567] = "0;0", --Fel Intelligence (Rank 5)
[57623] = "120;0", --Horn of Winter (Rank 2)
[57663] = "0;0", --Totem of Wrath
[57669] = "15;0", --Replenishment
[57723] = "600;0", --Exhaustion
[57724] = "600;0", --Sated
[57761] = "15;1", --Fireball!
[57819] = "0;0", --Argent Champion
[57820] = "0;0", --Ebon Champion
[57821] = "0;0", --Champion of the Kirin Tor
[57822] = "0;0", --Wyrmrest Champion
[57933] = "6;0", --Tricks of the Trade
[57934] = "30;0", --Tricks of the Trade
[57940] = "0;0", --Essence of Wintergrasp
[57960] = "600;1", --Water Shield (Rank 9)
[57970] = "12;3", --Deadly Poison IX (Rank 9)
[57974] = "15;3", --Wound Poison VI (Rank 6)
[57975] = "15;3", --Wound Poison VII (Rank 7)
[57993] = "6;3", --Envenom (Rank 4)
[58045] = "0;0", --Essence of Wintergrasp
[58179] = "12;2", --Infected Wounds
[58181] = "12;2", --Infected Wounds
[58363] = "10;0", --Glyph of Revenge
[58371] = "180;0", --Recently Slain
[58374] = "10;0", --Glyph of Blocking
[58427] = "20;0", --Overkill
[58449] = "1800;1", --Strength (Rank 8)
[58450] = "1800;1", --Agility (Rank 7)
[58499] = "7200;0", --Happy
[58500] = "7200;0", --Angry
[58511] = "45;0", --Rotten Apple Aroma
[58514] = "45;0", --Rotten Banana Aroma
[58519] = "45;0", --Spit
[58549] = "0;0", --Tenacity
[58555] = "0;0", --Great Honor
[58556] = "0;0", --Greater Honor
[58557] = "0;0", --Greatest Honor
[58567] = "30;0", --Sunder Armor (Rank 1)
[58578] = "20;0", --Icy Talons
[58591] = "15;0", --Stoneclaw Totem
[58597] = "6;1", --Sacred Shield (Rank 1)
[58600] = "10;0", --Restricted Flight Area
[58610] = "10;1", --Lava Breath (Rank 5)
[58611] = "10;1", --Lava Breath (Rank 6)
[58617] = "10;0", --Glyph of Heart Strike
[58646] = "0;0", --Strength of Earth (Rank 8)
[58655] = "0;0", --Flametongue Totem (Rank 8)
[58683] = "0;0", --Savage Combat (Rank 2)
[58729] = "0;0", --Spiritual Immunity
[58730] = "9;0", --Restricted Flight Area
[58744] = "0;0", --Frost Resistance (Rank 6)
[58754] = "0;0", --Stoneskin (Rank 10)
[58777] = "0;0", --Mana Spring (Rank 8)
[58799] = "8;0", --Frostbrand Attack (Rank 9)
[58861] = "2;0", --Bash (Rank 1)
[58875] = "15;0", --Spirit Walk
[58882] = "6;0", --Rapid Recuperation
[58914] = "30;0", --Kill Command (Rank 1)
[59000] = "8;1", --Improved Spirit Tap (Rank 2)
[59052] = "0;1", --Freezing Fog
[59164] = "12;1", --Haunt (Rank 4)
[59542] = "15;0", --Gift of the Naaru (Racial)