forked from jordonwow/omnibar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OmniBar_TBC.lua
1800 lines (1292 loc) · 69.3 KB
/
OmniBar_TBC.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 addonName, addon = ...
addon.MAX_ARENA_SIZE = 5
addon.Shared = {}
addon.Resets = {
--[[ Cold Snap
- Ice Barrier
- Frost Ward
- Frost Nova
- Ice Block
- Icy Veins
- Summon Water Elemental
]]
[11958] = { 11426, 6143, 122, 45438, 12472, 31687 },
--[[ Preparation
- Evasion
- Sprint
- Vanish
- Cold Blood
- Shadowstep
- Premeditation
]]
[14185] = { 5277, 2983, 1856, 14177, 36554, 14183 },
--[[ Summon Felhunter
- Spell Lock
]]
[691] = { 19244 },
}
addon.Cooldowns = {
-- General
[42292] = { duration = 300, class = "GENERAL", icon = 133453 }, -- PvP Trinket
-- Priest
[17] = { duration = 4, class = "PRIEST" }, -- Power Word: Shield (Rank 1)
[592] = { parent = 17 }, -- Power Word: Shield (Rank 2)
[600] = { parent = 17 }, -- Power Word: Shield (Rank 3)
[3747] = { parent = 17 }, -- Power Word: Shield (Rank 4)
[6065] = { parent = 17 }, -- Power Word: Shield (Rank 5)
[6066] = { parent = 17 }, -- Power Word: Shield (Rank 6)
[10898] = { parent = 17 }, -- Power Word: Shield (Rank 7)
[10899] = { parent = 17 }, -- Power Word: Shield (Rank 8)
[10900] = { parent = 17 }, -- Power Word: Shield (Rank 9)
[10901] = { parent = 17 }, -- Power Word: Shield (Rank 10)
[25217] = { parent = 17 }, -- Power Word: Shield (Rank 11)
[25218] = { parent = 17 }, -- Power Word: Shield (Rank 12)
--[[ Fade Modifiers
- Improved Fade (Rank 1)
Decreases the cooldown of your Fade ability by 3 sec.
https://tbc.wowhead.com/spell=15274
- Improved Fade (Rank 2)
Decreases the cooldown of your Fade ability by 6 sec.
https://tbc.wowhead.com/spell=15311
- Quick Fade
Reduces the cooldown of your Fade ability by 2 sec.
https://tbc.wowhead.com/spell=18388
--]]
[586] = { duration = 30, class = "PRIEST", adjust = -6 }, -- Fade (Rank 1)
[9578] = { parent = 586 }, -- Fade (Rank 2)
[9579] = { parent = 586 }, -- Fade (Rank 3)
[9592] = { parent = 586 }, -- Fade (Rank 4)
[10941] = { parent = 586 }, -- Fade (Rank 5)
[10942] = { parent = 586 }, -- Fade (Rank 6)
[25429] = { parent = 586 }, -- Fade (Rank 7)
[724] = { duration = 360, class = "PRIEST" }, -- Lightwell (Rank 1)
[27870] = { parent = 724 }, -- Lightwell (Rank 2)
[27871] = { parent = 724 }, -- Lightwell (Rank 3)
[28275] = { parent = 724 }, -- Lightwell (Rank 4)
[2651] = { duration = 180, class = "PRIEST" }, -- Elune's Grace
[2944] = { duration = 180, class = "PRIEST" }, -- Devouring Plague (Rank 1)
[19276] = { parent = 2944 }, -- Devouring Plague (Rank 2)
[19277] = { parent = 2944 }, -- Devouring Plague (Rank 3)
[19278] = { parent = 2944 }, -- Devouring Plague (Rank 4)
[19279] = { parent = 2944 }, -- Devouring Plague (Rank 5)
[19280] = { parent = 2944 }, -- Devouring Plague (Rank 6)
[25467] = { parent = 2944 }, -- Devouring Plague (Rank 7)
[6346] = { duration = 180, class = "PRIEST" }, -- Fear Ward
--[[ Mind Blast Modifiers
- Improved Mind Blast (Rank 1)
Reduces the cooldown of your Mind Blast spell by 0.5 sec.
https://tbc.wowhead.com/spell=15273
- Improved Mind Blast (Rank 2)
Reduces the cooldown of your Mind Blast spell by 1 sec.
https://tbc.wowhead.com/spell=15312
- Improved Mind Blast (Rank 3)
Reduces the cooldown of your Mind Blast spell by 1.5 sec.
https://tbc.wowhead.com/spell=15313
- Improved Mind Blast (Rank 4)
Reduces the cooldown of your Mind Blast spell by 2 sec.
https://tbc.wowhead.com/spell=15314
- Improved Mind Blast (Rank 5)
Reduces the cooldown of your Mind Blast spell by 2.5 sec.
https://tbc.wowhead.com/spell=15316
--]]
[8092] = { duration = 8, class = "PRIEST", adjust = -2.5 }, -- Mind Blast (Rank 1)
[8102] = { parent = 8092 }, -- Mind Blast (Rank 2)
[8103] = { parent = 8092 }, -- Mind Blast (Rank 3)
[8104] = { parent = 8092 }, -- Mind Blast (Rank 4)
[8105] = { parent = 8092 }, -- Mind Blast (Rank 5)
[8106] = { parent = 8092 }, -- Mind Blast (Rank 6)
[10945] = { parent = 8092 }, -- Mind Blast (Rank 7)
[10946] = { parent = 8092 }, -- Mind Blast (Rank 8)
[10947] = { parent = 8092 }, -- Mind Blast (Rank 9)
[25372] = { parent = 8092 }, -- Mind Blast (Rank 10)
[25375] = { parent = 8092 }, -- Mind Blast (Rank 11)
--[[ Psychic Scream Modifiers
- Improved Psychic Scream (Rank 1)
Reduces the cooldown of your Psychic Scream spell by 2 sec.
https://tbc.wowhead.com/spell=15392
- Improved Psychic Scream (Rank 2)
Reduces the cooldown of your Psychic Scream spell by 4 sec.
https://tbc.wowhead.com/spell=15448
- Improved Psychic Scream
Reduces the cooldown of your Psychic Scream ability by 3 sec.
https://tbc.wowhead.com/spell=44297
--]]
[8122] = { duration = 30, class = "PRIEST", adjust = -3 }, -- Psychic Scream (Rank 1)
[8124] = { parent = 8122 }, -- Psychic Scream (Rank 2)
[10888] = { parent = 8122 }, -- Psychic Scream (Rank 3)
[10890] = { parent = 8122 }, -- Psychic Scream (Rank 4)
[10060] = { duration = 180, class = "PRIEST" }, -- Power Infusion
[10797] = { duration = 30, class = "PRIEST" }, -- Starshards (Rank 1)
[19296] = { parent = 10797 }, -- Starshards (Rank 2)
[19299] = { parent = 10797 }, -- Starshards (Rank 3)
[19302] = { parent = 10797 }, -- Starshards (Rank 4)
[19303] = { parent = 10797 }, -- Starshards (Rank 5)
[19304] = { parent = 10797 }, -- Starshards (Rank 6)
[19305] = { parent = 10797 }, -- Starshards (Rank 7)
[25446] = { parent = 10797 }, -- Starshards (Rank 8)
[13896] = { duration = 180, class = "PRIEST" }, -- Feedback (Rank 1)
[19271] = { parent = 13896 }, -- Feedback (Rank 2)
[19273] = { parent = 13896 }, -- Feedback (Rank 3)
[19274] = { parent = 13896 }, -- Feedback (Rank 4)
[19275] = { parent = 13896 }, -- Feedback (Rank 5)
[25441] = { parent = 13896 }, -- Feedback (Rank 6)
[13908] = { duration = 600, class = "PRIEST" }, -- Desperate Prayer (Rank 1)
[19236] = { parent = 13908 }, -- Desperate Prayer (Rank 2)
[19238] = { parent = 13908 }, -- Desperate Prayer (Rank 3)
[19240] = { parent = 13908 }, -- Desperate Prayer (Rank 4)
[19241] = { parent = 13908 }, -- Desperate Prayer (Rank 5)
[19242] = { parent = 13908 }, -- Desperate Prayer (Rank 6)
[19243] = { parent = 13908 }, -- Desperate Prayer (Rank 7)
[25437] = { parent = 13908 }, -- Desperate Prayer (Rank 8)
[14751] = { duration = 180, class = "PRIEST" }, -- Inner Focus
[15286] = { duration = 10, class = "PRIEST" }, -- Vampiric Embrace
[15473] = { duration = 1, class = "PRIEST" }, -- Shadowform
[15487] = { duration = 45, class = "PRIEST" }, -- Silence
[32379] = { duration = 12, class = "PRIEST" }, -- Shadow Word: Death (Rank 1)
[32996] = { parent = 32379 }, -- Shadow Word: Death (Rank 2)
[32548] = { duration = 300, class = "PRIEST" }, -- Symbol of Hope
[32676] = { duration = 120, class = "PRIEST" }, -- Consume Magic
[33076] = { duration = 10, class = "PRIEST" }, -- Prayer of Mending
[33206] = { duration = 120, class = "PRIEST" }, -- Pain Suppression
[34433] = { duration = 300, class = "PRIEST" }, -- Shadowfiend
[44041] = { duration = 30, class = "PRIEST" }, -- Chastise (Rank 1)
[44043] = { parent = 44041 }, -- Chastise (Rank 2)
[44044] = { parent = 44041 }, -- Chastise (Rank 3)
[44045] = { parent = 44041 }, -- Chastise (Rank 4)
[44046] = { parent = 44041 }, -- Chastise (Rank 5)
[44047] = { parent = 44041 }, -- Chastise (Rank 6)
-- Warlock
[603] = { duration = 60, class = "WARLOCK" }, -- Curse of Doom (Rank 1)
[30910] = { parent = 603 }, -- Curse of Doom (Rank 2)
[1122] = { duration = 3600, class = "WARLOCK" }, -- Inferno
[5484] = { duration = 40, class = "WARLOCK" }, -- Howl of Terror (Rank 1)
[17928] = { parent = 5484 }, -- Howl of Terror (Rank 2)
[6229] = { duration = 30, class = "WARLOCK" }, -- Shadow Ward (Rank 1)
[11739] = { parent = 6229 }, -- Shadow Ward (Rank 2)
[11740] = { parent = 6229 }, -- Shadow Ward (Rank 3)
[28610] = { parent = 6229 }, -- Shadow Ward (Rank 4)
[6353] = { duration = 60, class = "WARLOCK" }, -- Soul Fire (Rank 1)
[17924] = { parent = 6353 }, -- Soul Fire (Rank 2)
[27211] = { parent = 6353 }, -- Soul Fire (Rank 3)
[30545] = { parent = 6353 }, -- Soul Fire (Rank 4)
--[[ Death Coil Modifiers
- Improved Death Coil
Decreases the cooldown of Death Coil by 15%.
https://tbc.wowhead.com/spell=24487
--]]
[6789] = { duration = 120, class = "WARLOCK" }, -- Death Coil (Rank 1)
[17925] = { parent = 6789 }, -- Death Coil (Rank 2)
[17926] = { parent = 6789 }, -- Death Coil (Rank 3)
[27223] = { parent = 6789 }, -- Death Coil (Rank 4)
[17877] = { duration = 15, class = "WARLOCK" }, -- Shadowburn (Rank 1)
[18867] = { parent = 17877 }, -- Shadowburn (Rank 2)
[18868] = { parent = 17877 }, -- Shadowburn (Rank 3)
[18869] = { parent = 17877 }, -- Shadowburn (Rank 4)
[18870] = { parent = 17877 }, -- Shadowburn (Rank 5)
[18871] = { parent = 17877 }, -- Shadowburn (Rank 6)
[27263] = { parent = 17877 }, -- Shadowburn (Rank 7)
[30546] = { parent = 17877 }, -- Shadowburn (Rank 8)
[17962] = { duration = 10, class = "WARLOCK" }, -- Conflagrate (Rank 1)
[18930] = { parent = 17962 }, -- Conflagrate (Rank 2)
[18931] = { parent = 17962 }, -- Conflagrate (Rank 3)
[18932] = { parent = 17962 }, -- Conflagrate (Rank 4)
[27266] = { parent = 17962 }, -- Conflagrate (Rank 5)
[30912] = { parent = 17962 }, -- Conflagrate (Rank 6)
[18288] = { duration = 180, class = "WARLOCK" }, -- Amplify Curse
[18540] = { duration = 3600, class = "WARLOCK" }, -- Ritual of Doom
[18708] = { duration = 900, class = "WARLOCK" }, -- Fel Domination
[29858] = { duration = 300, class = "WARLOCK" }, -- Soulshatter
[29893] = { duration = 300, class = "WARLOCK" }, -- Ritual of Souls
[30283] = { duration = 20, class = "WARLOCK" }, -- Shadowfury (Rank 1)
[30413] = { parent = 30283 }, -- Shadowfury (Rank 2)
[30414] = { parent = 30283 }, -- Shadowfury (Rank 3)
-- Warlock Pets
[3716] = { duration = 5, class = "WARLOCK" }, -- Torment (Rank 1)
[7809] = { parent = 3716 }, -- Torment (Rank 2)
[7810] = { parent = 3716 }, -- Torment (Rank 3)
[7811] = { parent = 3716 }, -- Torment (Rank 4)
[11774] = { parent = 3716 }, -- Torment (Rank 5)
[11775] = { parent = 3716 }, -- Torment (Rank 6)
[27270] = { parent = 3716 }, -- Torment (Rank 7)
[4511] = { duration = 10, class = "WARLOCK" }, -- Phase Shift
[6360] = { duration = 4, class = "WARLOCK" }, -- Soothing Kiss (Rank 1)
[7813] = { parent = 6360 }, -- Soothing Kiss (Rank 2)
[11784] = { parent = 6360 }, -- Soothing Kiss (Rank 3)
[11785] = { parent = 6360 }, -- Soothing Kiss (Rank 4)
[27275] = { parent = 6360 }, -- Soothing Kiss (Rank 5)
--[[ Lash of Pain Modifiers
- Improved Lash of Pain (Rank 1)
Reduces the cooldown of your Succubus' Lash of Pain spell by 3 sec.
https://tbc.wowhead.com/spell=18128
- Improved Lash of Pain (Rank 2)
Reduces the cooldown of your Succubus' Lash of Pain spell by 6 sec.
https://tbc.wowhead.com/spell=18129
--]]
[7814] = { duration = 12, class = "WARLOCK", adjust = -6 }, -- Lash of Pain (Rank 1)
[7815] = { parent = 7814 }, -- Lash of Pain (Rank 2)
[7816] = { parent = 7814 }, -- Lash of Pain (Rank 3)
[11778] = { parent = 7814 }, -- Lash of Pain (Rank 4)
[11779] = { parent = 7814 }, -- Lash of Pain (Rank 5)
[11780] = { parent = 7814 }, -- Lash of Pain (Rank 6)
[27274] = { parent = 7814 }, -- Lash of Pain (Rank 7)
[17735] = { duration = 120, class = "WARLOCK" }, -- Suffering (Rank 1)
[17750] = { parent = 17735 }, -- Suffering (Rank 2)
[17751] = { parent = 17735 }, -- Suffering (Rank 3)
[17752] = { parent = 17735 }, -- Suffering (Rank 4)
[27271] = { parent = 17735 }, -- Suffering (Rank 5)
[33701] = { parent = 17735 }, -- Suffering (Rank 6)
[19244] = { duration = 24, class = "WARLOCK", default = true }, -- Spell Lock (Rank 1)
[19647] = { parent = 19244 }, -- Spell Lock (Rank 2)
[19505] = { duration = 8, class = "WARLOCK" }, -- Devour Magic (Rank 1)
[19731] = { parent = 19505 }, -- Devour Magic (Rank 2)
[19734] = { parent = 19505 }, -- Devour Magic (Rank 3)
[19736] = { parent = 19505 }, -- Devour Magic (Rank 4)
[27276] = { parent = 19505 }, -- Devour Magic (Rank 5)
[27277] = { parent = 19505 }, -- Devour Magic (Rank 6)
-- Shaman
[421] = { duration = 6, class = "SHAMAN" }, -- Chain Lightning (Rank 1)
[930] = { parent = 421 }, -- Chain Lightning (Rank 2)
[2860] = { parent = 421 }, -- Chain Lightning (Rank 3)
[10605] = { parent = 421 }, -- Chain Lightning (Rank 4)
[25439] = { parent = 421 }, -- Chain Lightning (Rank 5)
[25442] = { parent = 421 }, -- Chain Lightning (Rank 6)
[556] = { duration = 900, class = "SHAMAN" }, -- Astral Recall
[1535] = { duration = 15, class = "SHAMAN" }, -- Fire Nova Totem (Rank 1)
[8498] = { parent = 1535 }, -- Fire Nova Totem (Rank 2)
[8499] = { parent = 1535 }, -- Fire Nova Totem (Rank 3)
[11314] = { parent = 1535 }, -- Fire Nova Totem (Rank 4)
[11315] = { parent = 1535 }, -- Fire Nova Totem (Rank 5)
[25546] = { parent = 1535 }, -- Fire Nova Totem (Rank 6)
[25547] = { parent = 1535 }, -- Fire Nova Totem (Rank 7)
[2062] = { duration = 1200, class = "SHAMAN" }, -- Earth Elemental Totem
[2484] = { duration = 15, class = "SHAMAN" }, -- Earthbind Totem
[2825] = { duration = 600, class = "SHAMAN" }, -- Bloodlust
[2894] = { duration = 1200, class = "SHAMAN" }, -- Fire Elemental Totem
[5730] = { duration = 30, class = "SHAMAN" }, -- Stoneclaw Totem (Rank 1)
[6390] = { parent = 5730 }, -- Stoneclaw Totem (Rank 2)
[6391] = { parent = 5730 }, -- Stoneclaw Totem (Rank 3)
[6392] = { parent = 5730 }, -- Stoneclaw Totem (Rank 4)
[10427] = { parent = 5730 }, -- Stoneclaw Totem (Rank 5)
[10428] = { parent = 5730 }, -- Stoneclaw Totem (Rank 6)
[25525] = { parent = 5730 }, -- Stoneclaw Totem (Rank 7)
--[[ Earth Shock Modifiers
- Reverberation (Rank 1)
Reduces the cooldown of your Shock spells by 0.2 sec.
https://tbc.wowhead.com/spell=16040
- Reverberation (Rank 2)
Reduces the cooldown of your Shock spells by 0.4 sec.
https://tbc.wowhead.com/spell=16113
- Reverberation (Rank 3)
Reduces the cooldown of your Shock spells by 0.6 sec.
https://tbc.wowhead.com/spell=16114
- Reverberation (Rank 4)
Reduces the cooldown of your Shock spells by 0.8 sec.
https://tbc.wowhead.com/spell=16115
- Reverberation (Rank 5)
Reduces the cooldown of your Shock spells by 1 sec.
https://tbc.wowhead.com/spell=16116
--]]
[8042] = { duration = 5, class = "SHAMAN", default = true }, -- Earth Shock (Rank 1)
[8044] = { parent = 8042 }, -- Earth Shock (Rank 2)
[8045] = { parent = 8042 }, -- Earth Shock (Rank 3)
[8046] = { parent = 8042 }, -- Earth Shock (Rank 4)
[10412] = { parent = 8042 }, -- Earth Shock (Rank 5)
[10413] = { parent = 8042 }, -- Earth Shock (Rank 6)
[10414] = { parent = 8042 }, -- Earth Shock (Rank 7)
[25454] = { parent = 8042 }, -- Earth Shock (Rank 8)
-- Flame Shock shares cooldown
[8050] = { parent = 8042 }, -- Flame Shock (Rank 1)
[8052] = { parent = 8042 }, -- Flame Shock (Rank 2)
[8053] = { parent = 8042 }, -- Flame Shock (Rank 3)
[10447] = { parent = 8042 }, -- Flame Shock (Rank 4)
[10448] = { parent = 8042 }, -- Flame Shock (Rank 5)
[29228] = { parent = 8042 }, -- Flame Shock (Rank 6)
[25457] = { parent = 8042 }, -- Flame Shock (Rank 7)
-- Frost Shock shares cooldown
[8056] = { parent = 8042 }, -- Frost Shock (Rank 1)
[8058] = { parent = 8042 }, -- Frost Shock (Rank 2)
[10472] = { parent = 8042 }, -- Frost Shock (Rank 3)
[10473] = { parent = 8042 }, -- Frost Shock (Rank 4)
[25464] = { parent = 8042 }, -- Frost Shock (Rank 5)
--[[ Grounding Totem Modifiers
- Guardian Totems (Rank 1)
Increases the amount of damage reduced by your Stoneskin Totem and Windwall Totem by 10%
and reduces the cooldown of your Grounding Totem by 1 sec.
https://tbc.wowhead.com/spell=16258
- Guardian Totems (Rank 2)
Increases the amount of damage reduced by your Stoneskin Totem and Windwall Totem by 20%
and reduces the cooldown of your Grounding Totem by 2 sec.
https://tbc.wowhead.com/spell=16293
- Improved Grounding Totem
Reduces the cooldown of your Grounding Totem ability by 1.5 sec.
https://tbc.wowhead.com/spell=44299
--]]
[8177] = { duration = 15, class = "SHAMAN", adjust = -2 }, -- Grounding Totem
[16166] = { duration = 180, class = "SHAMAN" }, -- Elemental Mastery
--[[ Nature's Swiftness Modifiers
- Improved Nature's Swiftness
Reduces the cooldown on your Nature's Swiftness ability by 24 sec.
https://tbc.wowhead.com/spell=37211
- Nature's Swiftness Cooldown Reduction
Reduces the cooldown of your Nature's Swiftness ability by 24 sec.
https://tbc.wowhead.com/spell=38466
- Nature's Swiftness Cooldown Reduction
Reduces the cooldown on your Nature's Swiftness ability by 24 sec.
https://tbc.wowhead.com/spell=38499
--]]
[16188] = { duration = 180, class = "SHAMAN" }, -- Nature's Swiftness
[16190] = { duration = 300, class = "SHAMAN" }, -- Mana Tide Totem
--[[ Stormstrike Modifiers
- Shaman Stormstrike Cooldown Reduction (Rank 1)
Reduces the cooldown of your Stormstrike ability by 1 sec.
https://tbc.wowhead.com/spell=33018
--]]
[17364] = { duration = 10, class = "SHAMAN" }, -- Stormstrike
--[[ Reincarnation Modifiers
- Improved Reincarnation (Rank 1)
Reduces the cooldown of your Reincarnation spell by 10 min
and increases the amount of health and mana you reincarnate with by an additional 10%.
https://tbc.wowhead.com/spell=16184
- Improved Reincarnation (Rank 2)
Reduces the cooldown of your Reincarnation spell by 20 min
and increases the amount of health and mana you reincarnate with by an additional 20%.
https://tbc.wowhead.com/spell=16209
- Reduced Reincarnation Cooldown
Reduces the cooldown of Reincarnation by 10 minutes.
https://tbc.wowhead.com/spell=27797
--]]
[20608] = { duration = 3600, class = "SHAMAN", adjust = -1200 }, -- Reincarnation
[30823] = { duration = 120, class = "SHAMAN" }, -- Shamanistic Rage
[32182] = { duration = 600, class = "SHAMAN" }, -- Heroism
-- Paladin
[498] = { duration = 300, class = "PALADIN" }, -- Divine Protection (Rank 1)
[5573] = { parent = 498 }, -- Divine Protection (Rank 2)
--[[ Lay on Hands Modifiers
- Improved Lay on Hands (Rank 1)
Gives the target of your Lay on Hands spell a 15% bonus to their armor value from items for 2 min.
In addition, the cooldown for your Lay on Hands spell is reduced by 10 min.
https://tbc.wowhead.com/spell=20234
- Improved Lay on Hands (Rank 2)
Gives the target of your Lay on Hands spell a 30% bonus to their armor value from items for 2 min.
In addition, the cooldown for your Lay on Hands spell is reduced by 20 min.
https://tbc.wowhead.com/spell=20235
- Lay Hands
Reduces cooldown on your Lay on Hands by 12 min.
https://tbc.wowhead.com/spell=28774
--]]
[633] = { duration = 3600, class = "PALADIN", adjust = -1200 }, -- Lay on Hands (Rank 1)
[2800] = { parent = 633 }, -- Lay on Hands (Rank 2)
[10310] = { parent = 633 }, -- Lay on Hands (Rank 3)
[27154] = { parent = 633 }, -- Lay on Hands (Rank 4)
--[[ Divine Shield Modifiers
- Sacred Duty (Rank 1)
Increases your total Stamina by 3%, reduces the cooldown of your Divine Shield spell by 30 sec
and reduces the attack speed penalty by 50%.
https://tbc.wowhead.com/spell=31848
- Sacred Duty (Rank 2)
Increases your total Stamina by 6%, reduces the cooldown of your Divine Shield spell by 60 sec
and reduces the attack speed penalty by 100%.
https://tbc.wowhead.com/spell=31849
--]]
[642] = { duration = 300, class = "PALADIN" }, -- Divine Shield (Rank 1)
[1020] = { parent = 642 }, -- Divine Shield (Rank 2)
--[[ Hammer of Justice Modifiers
- Improved Hammer of Justice (Rank 1)
Decreases the cooldown of your Hammer of Justice spell by 5 sec.
https://tbc.wowhead.com/spell=20487
- Improved Hammer of Justice (Rank 2)
Decreases the cooldown of your Hammer of Justice spell by 10 sec.
https://tbc.wowhead.com/spell=20488
- Improved Hammer of Justice (Rank 3)
Decreases the cooldown of your Hammer of Justice spell by 15 sec.
https://tbc.wowhead.com/spell=20489
- Hammer of Justice Cooldown Reduction
Reduces the cooldown of your Hammer of Justice by 10 sec.
https://tbc.wowhead.com/spell=23302
--]]
[853] = { duration = 60, class = "PALADIN", adjust = -15 }, -- Hammer of Justice (Rank 1)
[5588] = { parent = 853 }, -- Hammer of Justice (Rank 2)
[5589] = { parent = 853 }, -- Hammer of Justice (Rank 3)
[10308] = { parent = 853 }, -- Hammer of Justice (Rank 4)
[879] = { duration = 15, class = "PALADIN" }, -- Exorcism (Rank 1)
[5614] = { parent = 879 }, -- Exorcism (Rank 2)
[5615] = { parent = 879 }, -- Exorcism (Rank 3)
[10312] = { parent = 879 }, -- Exorcism (Rank 4)
[10313] = { parent = 879 }, -- Exorcism (Rank 5)
[10314] = { parent = 879 }, -- Exorcism (Rank 6)
[27138] = { parent = 879 }, -- Exorcism (Rank 7)
--[[ Blessing of Protection Modifiers
- Guardian's Favor (Rank 1)
Reduces the cooldown of your Blessing of Protection by 60 sec
and increases the duration of your Blessing of Freedom by 2 sec.
https://tbc.wowhead.com/spell=20174
- Guardian's Favor (Rank 2)
Reduces the cooldown of your Blessing of Protection by 120 sec
and increases the duration of your Blessing of Freedom by 4 sec.
https://tbc.wowhead.com/spell=20175
--]]
[1022] = { duration = 300, class = "PALADIN", adjust = -120 }, -- Blessing of Protection (Rank 1)
[5599] = { parent = 1022 }, -- Blessing of Protection (Rank 2)
[10278] = { parent = 1022 }, -- Blessing of Protection (Rank 3)
--[[ Blessing of Freedom Modifiers
- Guardian's Favor (Rank 1)
Reduces the cooldown of your Blessing of Protection by 60 sec
and increases the duration of your Blessing of Freedom by 2 sec.
https://tbc.wowhead.com/spell=20174
- Guardian's Favor (Rank 2)
Reduces the cooldown of your Blessing of Protection by 120 sec
and increases the duration of your Blessing of Freedom by 4 sec.
https://tbc.wowhead.com/spell=20175
--]]
[1044] = { duration = 25, class = "PALADIN" }, -- Blessing of Freedom
[2812] = { duration = 60, class = "PALADIN" }, -- Holy Wrath (Rank 1)
[10318] = { parent = 2812 }, -- Holy Wrath (Rank 2)
[27139] = { parent = 2812 }, -- Holy Wrath (Rank 3)
[2878] = { duration = 30, class = "PALADIN" }, -- Turn Undead (Rank 1)
[5627] = { parent = 2878 }, -- Turn Undead (Rank 2)
[6940] = { duration = 30, class = "PALADIN" }, -- Blessing of Sacrifice (Rank 1)
[20729] = { parent = 6940 }, -- Blessing of Sacrifice (Rank 2)
[27147] = { parent = 6940 }, -- Blessing of Sacrifice (Rank 3)
[27148] = { parent = 6940 }, -- Blessing of Sacrifice (Rank 4)
[10326] = { duration = 30, class = "PALADIN" }, -- Turn Evil
[19752] = { duration = 3600, class = "PALADIN" }, -- Divine Intervention
[20066] = { duration = 60, class = "PALADIN" }, -- Repentance
[26573] = { duration = 8, class = "PALADIN" }, -- Consecration (Rank 1)
[20116] = { parent = 26573 }, -- Consecration (Rank 2)
[20922] = { parent = 26573 }, -- Consecration (Rank 3)
[20923] = { parent = 26573 }, -- Consecration (Rank 4)
[20924] = { parent = 26573 }, -- Consecration (Rank 5)
[27173] = { parent = 26573 }, -- Consecration (Rank 6)
--[[ Divine Favor Modifiers
- Divine Favor Cooldown
Reduces the cooldown on your Divine Favor ability by 15 sec.
https://tbc.wowhead.com/spell=37183
--]]
[20216] = { duration = 120, class = "PALADIN" }, -- Divine Favor
--[[ Judgement Modifiers
- Improved Judgement (Rank 1)
Decreases the cooldown of your Judgement spell by 1 sec.
https://tbc.wowhead.com/spell=25956
- Improved Judgement (Rank 2)
Decreases the cooldown of your Judgement spell by 2 sec.
https://tbc.wowhead.com/spell=25957
--]]
[20271] = { duration = 10, class = "PALADIN", adjust = -2 }, -- Judgement
[20473] = { duration = 15, class = "PALADIN" }, -- Holy Shock (Rank 1)
[20929] = { parent = 20473 }, -- Holy Shock (Rank 2)
[20930] = { parent = 20473 }, -- Holy Shock (Rank 3)
[27174] = { parent = 20473 }, -- Holy Shock (Rank 4)
[33072] = { parent = 20473 }, -- Holy Shock (Rank 5)
[20925] = { duration = 10, class = "PALADIN" }, -- Holy Shield (Rank 1)
[20927] = { parent = 20925 }, -- Holy Shield (Rank 2)
[20928] = { parent = 20925 }, -- Holy Shield (Rank 3)
[27179] = { parent = 20925 }, -- Holy Shield (Rank 4)
[24275] = { duration = 6, class = "PALADIN" }, -- Hammer of Wrath (Rank 1)
[24274] = { parent = 24275 }, -- Hammer of Wrath (Rank 2)
[24239] = { parent = 24275 }, -- Hammer of Wrath (Rank 3)
[27180] = { parent = 24275 }, -- Hammer of Wrath (Rank 4)
--[[ Righteous Defense Modifiers
- Reduced Righteous Defense Cooldown
Reduces the cooldown on your Righteous Defense ability by 2 sec.
https://tbc.wowhead.com/spell=37181
--]]
[31789] = { duration = 15, class = "PALADIN" }, -- Righteous Defense
[31842] = { duration = 180, class = "PALADIN" }, -- Divine Illumination
[31884] = { duration = 180, class = "PALADIN" }, -- Avenging Wrath
[31935] = { duration = 30, class = "PALADIN" }, -- Avenger's Shield (Rank 1)
[32699] = { parent = 31935 }, -- Avenger's Shield (Rank 2)
[32700] = { parent = 31935 }, -- Avenger's Shield (Rank 3)
[35395] = { duration = 6, class = "PALADIN" }, -- Crusader Strike
-- Hunter
[781] = { duration = 5, class = "HUNTER" }, -- Disengage (Rank 1)
[14272] = { parent = 781 }, -- Disengage (Rank 2)
[14273] = { parent = 781 }, -- Disengage (Rank 3)
[27015] = { parent = 781 }, -- Disengage (Rank 4)
[1495] = { duration = 5, class = "HUNTER" }, -- Mongoose Bite (Rank 1)
[14269] = { parent = 1495 }, -- Mongoose Bite (Rank 2)
[14270] = { parent = 1495 }, -- Mongoose Bite (Rank 3)
[14271] = { parent = 1495 }, -- Mongoose Bite (Rank 4)
[36916] = { parent = 1495 }, -- Mongoose Bite (Rank 5)
--[[ Freezing Trap Modifiers
- Resourcefulness (Rank 1)
Reduces the mana cost of all traps and melee abilities by 20% and reduces the cooldown of all traps by 2 sec.
https://tbc.wowhead.com/spell=34491
- Resourcefulness (Rank 2)
Reduces the mana cost of all traps and melee abilities by 40% and reduces the cooldown of all traps by 4 sec.
https://tbc.wowhead.com/spell=34492
- Resourcefulness (Rank 3)
Reduces the mana cost of all traps and melee abilities by 60% and reduces the cooldown of all traps by 6 sec.
https://tbc.wowhead.com/spell=34493
- Trap Cooldown
Reduces the cooldown on your traps by 4 sec.
https://tbc.wowhead.com/spell=37481
--]]
[1499] = { duration = 30, class = "HUNTER", adjust = -6 }, -- Freezing Trap (Rank 1)
[14310] = { parent = 1499 }, -- Freezing Trap (Rank 2)
[14311] = { parent = 1499 }, -- Freezing Trap (Rank 3)
[1510] = { duration = 60, class = "HUNTER" }, -- Volley (Rank 1)
[14294] = { parent = 1510 }, -- Volley (Rank 2)
[14295] = { parent = 1510 }, -- Volley (Rank 3)
[27022] = { parent = 1510 }, -- Volley (Rank 4)
[1513] = { duration = 30, class = "HUNTER" }, -- Scare Beast (Rank 1)
[14326] = { parent = 1513 }, -- Scare Beast (Rank 2)
[14327] = { parent = 1513 }, -- Scare Beast (Rank 3)
[1543] = { duration = 20, class = "HUNTER" }, -- Flare
--[[ Multi-Shot Modifiers
- Improved Multi-Shot
Reduces the cooldown of your Multi-Shot ability by 1 sec.
https://tbc.wowhead.com/spell=44292
--]]
[2643] = { duration = 10, class = "HUNTER" }, -- Multi-Shot (Rank 1)
[14288] = { parent = 2643 }, -- Multi-Shot (Rank 2)
[14289] = { parent = 2643 }, -- Multi-Shot (Rank 3)
[14290] = { parent = 2643 }, -- Multi-Shot (Rank 4)
[25294] = { parent = 2643 }, -- Multi-Shot (Rank 5)
[27021] = { parent = 2643 }, -- Multi-Shot (Rank 6)
[2973] = { duration = 6, class = "HUNTER" }, -- Raptor Strike (Rank 1)
[14260] = { parent = 2973 }, -- Raptor Strike (Rank 2)
[14261] = { parent = 2973 }, -- Raptor Strike (Rank 3)
[14262] = { parent = 2973 }, -- Raptor Strike (Rank 4)
[14263] = { parent = 2973 }, -- Raptor Strike (Rank 5)
[14264] = { parent = 2973 }, -- Raptor Strike (Rank 6)
[14265] = { parent = 2973 }, -- Raptor Strike (Rank 7)
[14266] = { parent = 2973 }, -- Raptor Strike (Rank 8)
[27014] = { parent = 2973 }, -- Raptor Strike (Rank 9)
[3034] = { duration = 15, class = "HUNTER" }, -- Viper Sting (Rank 1)
[14279] = { parent = 3034 }, -- Viper Sting (Rank 2)
[14280] = { parent = 3034 }, -- Viper Sting (Rank 3)
[27018] = { parent = 3034 }, -- Viper Sting (Rank 4)
--[[ Arcane Shot Modifiers
- Improved Arcane Shot (Rank 1)
Reduces the cooldown of your Arcane Shot by 0.2 sec.
https://tbc.wowhead.com/spell=19454
- Improved Arcane Shot (Rank 2)
Reduces the cooldown of your Arcane Shot by 0.4 sec.
https://tbc.wowhead.com/spell=19455
- Improved Arcane Shot (Rank 3)
Reduces the cooldown of your Arcane Shot by 0.6 sec.
https://tbc.wowhead.com/spell=19456
- Improved Arcane Shot (Rank 4)
Reduces the cooldown of your Arcane Shot by 0.8 sec.
https://tbc.wowhead.com/spell=19457
- Improved Arcane Shot (Rank 5)
Reduces the cooldown of your Arcane Shot by 1 sec.
https://tbc.wowhead.com/spell=19458
--]]
[3044] = { duration = 6, class = "HUNTER", adjust = -1 }, -- Arcane Shot (Rank 1)
[14281] = { parent = 3044 }, -- Arcane Shot (Rank 2)
[14282] = { parent = 3044 }, -- Arcane Shot (Rank 3)
[14283] = { parent = 3044 }, -- Arcane Shot (Rank 4)
[14284] = { parent = 3044 }, -- Arcane Shot (Rank 5)
[14285] = { parent = 3044 }, -- Arcane Shot (Rank 6)
[14286] = { parent = 3044 }, -- Arcane Shot (Rank 7)
[14287] = { parent = 3044 }, -- Arcane Shot (Rank 8)
[27019] = { parent = 3044 }, -- Arcane Shot (Rank 9)
--[[ Rapid Fire Modifiers
- Striker's Rapid Fire Bonus
Reduces the cooldown of your Rapid Fire ability by 2 minutes.
https://tbc.wowhead.com/spell=26174
- Rapid Killing (Rank 1)
Reduces the cooldown of your Rapid Fire ability by 1 min. In addition, after killing an opponent that yields
experience or honor, your next Aimed Shot, Arcane Shot or Auto Shot causes 10% additional damage. Lasts 20 sec.
https://tbc.wowhead.com/spell=34948
- Rapid Killing (Rank 2)
Reduces the cooldown of your Rapid Fire ability by 2 min.
In addition, after killing an opponent that yields experience or honor, your next Aimed Shot, Arcane Shot or
Auto Shot causes 20% additional damage. Lasts 20 sec.
https://tbc.wowhead.com/spell=34949
--]]
[3045] = { duration = 300, class = "HUNTER", adjust = -120 }, -- Rapid Fire
--[[ Concussive Shot Modifiers
- Concussive Shot Cooldown Reduction
Reduces the cooldown of your Concussive Shot by 1 sec.
https://tbc.wowhead.com/spell=23158
- Improved Concussive Shot
Decreases the cooldown of Concussive Shot by 1 sec.
https://tbc.wowhead.com/spell=24465
--]]
[5116] = { duration = 12, class = "HUNTER", adjust = -1 }, -- Concussive Shot
--[[ Feign Death Modifiers
- Improved Feign Death
Decreases the cooldown of Feign Death by 2 sec.
https://tbc.wowhead.com/spell=24432
--]]
[5384] = { duration = 30, class = "HUNTER" }, -- Feign Death
--[[ Immolation Trap Modifiers
- Resourcefulness (Rank 1)
Reduces the mana cost of all traps and melee abilities by 20% and reduces the cooldown of all traps by 2 sec.
https://tbc.wowhead.com/spell=34491
- Resourcefulness (Rank 2)
Reduces the mana cost of all traps and melee abilities by 40% and reduces the cooldown of all traps by 4 sec.
https://tbc.wowhead.com/spell=34492
- Resourcefulness (Rank 3)
Reduces the mana cost of all traps and melee abilities by 60% and reduces the cooldown of all traps by 6 sec.
https://tbc.wowhead.com/spell=34493
- Trap Cooldown
Reduces the cooldown on your traps by 4 sec.
https://tbc.wowhead.com/spell=37481
--]]
[13795] = { duration = 30, class = "HUNTER", adjust = -6 }, -- Immolation Trap (Rank 1)
[14302] = { parent = 13795 }, -- Immolation Trap (Rank 2)
[14303] = { parent = 13795 }, -- Immolation Trap (Rank 3)
[14304] = { parent = 13795 }, -- Immolation Trap (Rank 4)
[14305] = { parent = 13795 }, -- Immolation Trap (Rank 5)
[27023] = { parent = 13795 }, -- Immolation Trap (Rank 6)
--[[ Frost Trap Modifiers
- Resourcefulness (Rank 1)
Reduces the mana cost of all traps and melee abilities by 20% and reduces the cooldown of all traps by 2 sec.
https://tbc.wowhead.com/spell=34491
- Resourcefulness (Rank 2)
Reduces the mana cost of all traps and melee abilities by 40% and reduces the cooldown of all traps by 4 sec.
https://tbc.wowhead.com/spell=34492
- Resourcefulness (Rank 3)
Reduces the mana cost of all traps and melee abilities by 60% and reduces the cooldown of all traps by 6 sec.
https://tbc.wowhead.com/spell=34493
- Trap Cooldown
Reduces the cooldown on your traps by 4 sec.
https://tbc.wowhead.com/spell=37481
--]]
[13809] = { duration = 30, class = "HUNTER", adjust = -6 }, -- Frost Trap
--[[ Explosive Trap Modifiers
- Resourcefulness (Rank 1)
Reduces the mana cost of all traps and melee abilities by 20% and reduces the cooldown of all traps by 2 sec.
https://tbc.wowhead.com/spell=34491
- Resourcefulness (Rank 2)
Reduces the mana cost of all traps and melee abilities by 40% and reduces the cooldown of all traps by 4 sec.
https://tbc.wowhead.com/spell=34492
- Resourcefulness (Rank 3)
Reduces the mana cost of all traps and melee abilities by 60% and reduces the cooldown of all traps by 6 sec.
https://tbc.wowhead.com/spell=34493
- Trap Cooldown
Reduces the cooldown on your traps by 4 sec.
https://tbc.wowhead.com/spell=37481
--]]
[13813] = { duration = 30, class = "HUNTER", adjust = -6 }, -- Explosive Trap (Rank 1)
[14316] = { parent = 13813 }, -- Explosive Trap (Rank 2)
[14317] = { parent = 13813 }, -- Explosive Trap (Rank 3)
[27025] = { parent = 13813 }, -- Explosive Trap (Rank 4)
[20736] = { duration = 8, class = "HUNTER" }, -- Distracting Shot (Rank 1)
[14274] = { parent = 20736 }, -- Distracting Shot (Rank 2)
[15629] = { parent = 20736 }, -- Distracting Shot (Rank 3)
[15630] = { parent = 20736 }, -- Distracting Shot (Rank 4)
[15631] = { parent = 20736 }, -- Distracting Shot (Rank 5)
[15632] = { parent = 20736 }, -- Distracting Shot (Rank 6)
[27020] = { parent = 20736 }, -- Distracting Shot (Rank 7)
[19263] = { duration = 300, class = "HUNTER" }, -- Deterrence
[19306] = { duration = 5, class = "HUNTER" }, -- Counterattack (Rank 1)
[20909] = { parent = 19306 }, -- Counterattack (Rank 2)
[20910] = { parent = 19306 }, -- Counterattack (Rank 3)
[27067] = { parent = 19306 }, -- Counterattack (Rank 4)
[19386] = { duration = 120, class = "HUNTER" }, -- Wyvern Sting (Rank 1)
[24132] = { parent = 19386 }, -- Wyvern Sting (Rank 2)
[24133] = { parent = 19386 }, -- Wyvern Sting (Rank 3)
[27068] = { parent = 19386 }, -- Wyvern Sting (Rank 4)
[19434] = { duration = 6, class = "HUNTER" }, -- Aimed Shot (Rank 1)
[20900] = { parent = 19434 }, -- Aimed Shot (Rank 2)
[20901] = { parent = 19434 }, -- Aimed Shot (Rank 3)
[20902] = { parent = 19434 }, -- Aimed Shot (Rank 4)
[20903] = { parent = 19434 }, -- Aimed Shot (Rank 5)
[20904] = { parent = 19434 }, -- Aimed Shot (Rank 6)
[27065] = { parent = 19434 }, -- Aimed Shot (Rank 7)
[19503] = { duration = 30, class = "HUNTER" }, -- Scatter Shot
[19574] = { duration = 120, class = "HUNTER" }, -- Bestial Wrath
[19577] = { duration = 60, class = "HUNTER" }, -- Intimidation
[19801] = { duration = 20, class = "HUNTER" }, -- Tranquilizing Shot
[23989] = { duration = 300, class = "HUNTER" }, -- Readiness
[34026] = { duration = 5, class = "HUNTER" }, -- Kill Command
[34477] = { duration = 120, class = "HUNTER" }, -- Misdirection
[34490] = { duration = 20, class = "HUNTER" }, -- Silencing Shot
--[[ Snake Trap Modifiers
- Resourcefulness (Rank 1)
Reduces the mana cost of all traps and melee abilities by 20% and reduces the cooldown of all traps by 2 sec.
https://tbc.wowhead.com/spell=34491
- Resourcefulness (Rank 2)
Reduces the mana cost of all traps and melee abilities by 40% and reduces the cooldown of all traps by 4 sec.
https://tbc.wowhead.com/spell=34492
- Resourcefulness (Rank 3)
Reduces the mana cost of all traps and melee abilities by 60% and reduces the cooldown of all traps by 6 sec.
https://tbc.wowhead.com/spell=34493
- Trap Cooldown
Reduces the cooldown on your traps by 4 sec.
https://tbc.wowhead.com/spell=37481
--]]
[34600] = { duration = 30, class = "HUNTER", adjust = -6 }, -- Snake Trap
-- Hunter Pets
[1742] = { duration = 5, class = "HUNTER" }, -- Cower (Rank 1)
[1753] = { parent = 1742 }, -- Cower (Rank 2)
[1754] = { parent = 1742 }, -- Cower (Rank 3)
[1755] = { parent = 1742 }, -- Cower (Rank 4)
[1756] = { parent = 1742 }, -- Cower (Rank 5)
[16697] = { parent = 1742 }, -- Cower (Rank 6)
[27048] = { parent = 1742 }, -- Cower (Rank 7)
[2649] = { duration = 5, class = "HUNTER" }, -- Growl (Rank 1)
[14916] = { parent = 2649 }, -- Growl (Rank 2)
[14917] = { parent = 2649 }, -- Growl (Rank 3)
[14918] = { parent = 2649 }, -- Growl (Rank 4)
[14919] = { parent = 2649 }, -- Growl (Rank 5)
[14920] = { parent = 2649 }, -- Growl (Rank 6)
[14921] = { parent = 2649 }, -- Growl (Rank 7)
[27047] = { parent = 2649 }, -- Growl (Rank 8)