-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathOmniBar_Wrath.lua
4628 lines (3270 loc) · 195 KB
/
OmniBar_Wrath.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 = {
-- PvP Trinket, Will of the Forsaken
{
spells = { 42292, 7744 },
amount = 45,
},
-- Freezing Arrow, Freezing Trap, Frost Trap
{
spells = { 60192, 1499, 14310, 14311, 13809 },
amount = { Survival = 22, default = 28 }
},
-- Immolation Trap, Explosive Trap
{
spells = { 13795, 14302, 14303, 14304, 14305, 27023, 49055, 49056, 13813, 14316, 14317, 27025, 49066, 49067 },
amount = { Survival = 22, default = 28 }
},
-- Aimed Shot, Multi-Shot
{
spells = { 19434, 20900, 20901, 20902, 20903, 20904, 27065, 49049, 49050, 2643, 14288, 14289, 14290, 25294, 27021, 49047, 49048 },
amount = 10,
},
-- Feral Charge - Bear, Feral Charge - Cat
{
spells = { 16979, 49376 },
amount = 15,
},
-- Recklessness, Shield Wall, Retaliation
{
spells = { 1719, 871, 20230 },
amount = 12
},
-- Avenging Wrath → Divine Protection, Divine Shield, Lay on Hands
{
triggers = { 31884 },
spells = { 498, 642, 633, 2800, 10310, 27154, 48788 },
amount = 30
},
}
addon.Resets = {
--[[ Cold Snap
- Ice Barrier
- Frost Ward
- Frost Nova
- Ice Block
- Icy Veins
- Summon Water Elemental
- Deep Freeze
- Cone of Cold
]]
[11958] = { 11426, 6143, 122, 45438, 12472, 31687, 44572, 120 },
--[[ Preparation
- Evasion
- Sprint
- Vanish
- Cold Blood
- Shadowstep
- Blade Flurry (Glyph of Preparation)
- Kick (Glyph of Preparation)
- Dismantle (Glyph of Preparation)
]]
[14185] = { 5277, 2983, 1856, 14177, 36554, 13877, 1766, 51722 },
--[[ Readiness
- Concussive Shot
- Kill Command
- Master's Call
- Scare Beast
- Arcane Shot
- Distracting Shot
- Flare
- Kill Shot
- Multi-Shot
- Rapid Fire
- Tranquilizing Shot
- Viper Sting
- Deterrence
- Disengage
- Explosive Trap
- Feign Death
- Freezing Arrow
- Freezing Trap
- Frost Trap
- Immolation Trap
- Misdirection
- Mongoose Bite
- Raptor Strike
- Snake Trap
- Aimed Shot
- Chimera Shot
- Silencing Shot
- Scatter Shot
]]
[23989] = { 5116, 34026, 53271, 1513, 3044, 20736, 1543, 53351, 2643, 3045, 19801, 3034, 19263, 781, 13813, 5384, 60192, 1499, 13809, 13795, 34477, 1495, 2973, 34600, 19434, 53209, 34490, 19503 },
--[[ Summon Felhunter
- Spell Lock
]]
[691] = { 19244 },
}
addon.Cooldowns = {
-- General
[42292] = { duration = 120, class = "GENERAL", icon = 133453 }, -- PvP Trinket
[7744] = { duration = 120, class = "GENERAL" }, -- Will of the Forsaken
[25046] = { duration = 120, class = "GENERAL" }, -- Arcane Torrent (Energy)
[28730] = { parent = 25046 }, -- Arcane Torrent (Mana)
[50613] = { parent = 25046 }, -- Arcane Torrent (Runic Power)
[20594] = { duration = 120, class = "GENERAL" }, -- Stoneform
[20549] = { duration = 120, class = "GENERAL" }, -- War Stomp
[26297] = { duration = 180, class = "GENERAL" }, -- Berserking
[20572] = { duration = 120, class = "GENERAL" }, -- Blood Fury
[33697] = { parent = 20572 },
[33702] = { parent = 20572 },
[54998] = { duration = 60, class = "GENERAL" }, -- Hand-Mounted Pyro Rocket
-- Priest
--[[ Fade Modifiers
- Veiled Shadows (Rank 1)
Decreases the cooldown of your Fade ability by 3 sec, and reduces the cooldown of your Shadowfiend ability by 1 minute.
https://www.wowhead.com/wotlk/spell=15274
- Veiled Shadows (Rank 2)
Decreases the cooldown of your Fade ability by 6 sec, and reduces the cooldown of your Shadowfiend ability by 2 minutes.
https://www.wowhead.com/wotlk/spell=15311
- Quick Fade
Reduces the cooldown of your Fade ability by 2 sec.
https://www.wowhead.com/wotlk/spell=18388
- Glyph of Fade
Reduces the cooldown of your Fade spell by 9 sec.
https://www.wowhead.com/wotlk/spell=55684
- Glyph of Fade
Reduces the cooldown of your Fade spell by 9 sec.
https://www.wowhead.com/wotlk/spell=56164
--]]
[586] = { duration = 30, class = "PRIEST", adjust = { Shadow = -15 } }, -- Fade
[724] = { duration = 180, class = "PRIEST" }, -- Lightwell (Rank 1)
[27870] = { parent = 724 }, -- Lightwell (Rank 2)
[27871] = { parent = 724 }, -- Lightwell (Rank 3)
[28275] = { parent = 724 }, -- Lightwell (Rank 4)
[48086] = { parent = 724 }, -- Lightwell (Rank 5)
[48087] = { parent = 724 }, -- Lightwell (Rank 6)
--[[ Fear Ward Modifiers
- Glyph of Fear Ward
Reduces cooldown and duration of Fear Ward by 60 sec.
https://www.wowhead.com/wotlk/spell=55678
- Glyph of Fear Ward
Reduces cooldown and duration of Fear Ward by 60 sec.
https://www.wowhead.com/wotlk/spell=56165
--]]
[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., and while in Shadowform your Mind Blast also has a 20% chance to reduce all healing done to the target by 20% for 10 sec.
https://www.wowhead.com/wotlk/spell=15273
- Improved Mind Blast (Rank 2)
Reduces the cooldown of your Mind Blast spell by 1 sec., and while in Shadowform your Mind Blast also has a 40% chance to reduce all healing done to the target by 20% for 10 sec.
https://www.wowhead.com/wotlk/spell=15312
- Improved Mind Blast (Rank 3)
Reduces the cooldown of your Mind Blast spell by 1.5 sec., and while in Shadowform your Mind Blast also has a 60% chance to reduce all healing done to the target by 20% for 10 sec.
https://www.wowhead.com/wotlk/spell=15313
- Improved Mind Blast (Rank 4)
Reduces the cooldown of your Mind Blast spell by 2 sec., and while in Shadowform your Mind Blast also has a 80% chance to reduce all healing done to the target by 20% for 10 sec.
https://www.wowhead.com/wotlk/spell=15314
- Improved Mind Blast (Rank 5)
Reduces the cooldown of your Mind Blast spell by 2.5 sec., and while in Shadowform your Mind Blast also has a 100% chance to reduce all healing done to the target by 20% for 10 sec.
https://www.wowhead.com/wotlk/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)
[48126] = { parent = 8092 }, -- Mind Blast (Rank 12)
[48127] = { parent = 8092 }, -- Mind Blast (Rank 13)
--[[ Psychic Scream Modifiers
- Improved Psychic Scream (Rank 1)
Reduces the cooldown of your Psychic Scream spell by 2 sec.
https://www.wowhead.com/wotlk/spell=15392
- Improved Psychic Scream (Rank 2)
Reduces the cooldown of your Psychic Scream spell by 4 sec.
https://www.wowhead.com/wotlk/spell=15448
- Improved Psychic Scream
Reduces the cooldown of your Psychic Scream ability by 3 sec.
https://www.wowhead.com/wotlk/spell=44297
- Glyph of Psychic Scream
Increases the duration of your Psychic Scream by 2 sec. and increases its cooldown by 8 sec.
https://www.wowhead.com/wotlk/spell=55676
- Glyph of Psychic Scream
Increases the duration of your Psychic Scream by 2 sec. and increases its cooldown by 8 sec.
https://www.wowhead.com/wotlk/spell=56177
--]]
[8122] = { duration = 30, class = "PRIEST", adjust = { Shadow = -7, default = -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)
--[[ Power Infusion Modifiers
- Aspiration (Rank 1)
Reduces the cooldown of your Inner Focus, Power Infusion, Pain Suppression and Penance spells by 10%.
https://www.wowhead.com/wotlk/spell=47507
- Aspiration (Rank 2)
Reduces the cooldown of your Inner Focus, Power Infusion, Pain Suppression and Penance spells by 20%.
https://www.wowhead.com/wotlk/spell=47508
--]]
[10060] = { duration = 120, class = "PRIEST", adjust = -24 }, -- Power Infusion
--[[ Inner Focus Modifiers
- Aspiration (Rank 1)
Reduces the cooldown of your Inner Focus, Power Infusion, Pain Suppression and Penance spells by 10%.
https://www.wowhead.com/wotlk/spell=47507
- Aspiration (Rank 2)
Reduces the cooldown of your Inner Focus, Power Infusion, Pain Suppression and Penance spells by 20%.
https://www.wowhead.com/wotlk/spell=47508
--]]
[14751] = { duration = 180, class = "PRIEST", adjust = -36 }, -- Inner Focus
[14914] = { duration = 10, class = "PRIEST" }, -- Holy Fire (Rank 1)
[15262] = { parent = 14914 }, -- Holy Fire (Rank 2)
[15263] = { parent = 14914 }, -- Holy Fire (Rank 3)
[15264] = { parent = 14914 }, -- Holy Fire (Rank 4)
[15265] = { parent = 14914 }, -- Holy Fire (Rank 5)
[15266] = { parent = 14914 }, -- Holy Fire (Rank 6)
[15267] = { parent = 14914 }, -- Holy Fire (Rank 7)
[15261] = { parent = 14914 }, -- Holy Fire (Rank 8)
[25384] = { parent = 14914 }, -- Holy Fire (Rank 9)
[48134] = { parent = 14914 }, -- Holy Fire (Rank 10)
[48135] = { parent = 14914 }, -- Holy Fire (Rank 11)
[15473] = { duration = 1, class = "PRIEST" }, -- Shadowform ()
[49868] = { parent = 15473 }, -- Shadowform ()
[15487] = { duration = 45, class = "PRIEST" }, -- Silence
[19236] = { duration = 120, class = "PRIEST" }, -- Desperate Prayer (Rank 1)
[19238] = { parent = 19236 }, -- Desperate Prayer (Rank 2)
[19240] = { parent = 19236 }, -- Desperate Prayer (Rank 3)
[19241] = { parent = 19236 }, -- Desperate Prayer (Rank 4)
[19242] = { parent = 19236 }, -- Desperate Prayer (Rank 5)
[19243] = { parent = 19236 }, -- Desperate Prayer (Rank 6)
[25437] = { parent = 19236 }, -- Desperate Prayer (Rank 7)
[48172] = { parent = 19236 }, -- Desperate Prayer (Rank 8)
[48173] = { parent = 19236 }, -- Desperate Prayer (Rank 9)
[32379] = { duration = 12, class = "PRIEST" }, -- Shadow Word: Death (Rank 1)
[32996] = { parent = 32379 }, -- Shadow Word: Death (Rank 2)
[48157] = { parent = 32379 }, -- Shadow Word: Death (Rank 3)
[48158] = { parent = 32379 }, -- Shadow Word: Death (Rank 4)
--[[ Prayer of Mending Modifiers
- Divine Providence (Rank 1)
Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Prayer of Healing, Divine Hymn and Prayer of Mending by 2%, and reduces the cooldown of your Prayer of Mending by 6%.
https://www.wowhead.com/wotlk/spell=47562
- Divine Providence (Rank 2)
Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Prayer of Healing, Divine Hymn and Prayer of Mending by 4%, and reduces the cooldown of your Prayer of Mending by 12%.
https://www.wowhead.com/wotlk/spell=47564
- Divine Providence (Rank 3)
Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Prayer of Healing, Divine Hymn and Prayer of Mending by 6%, and reduces the cooldown of your Prayer of Mending by 18%.
https://www.wowhead.com/wotlk/spell=47565
- Divine Providence (Rank 4)
Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Prayer of Healing, Divine Hymn and Prayer of Mending by 8%, and reduces the cooldown of your Prayer of Mending by 24%.
https://www.wowhead.com/wotlk/spell=47566
- Divine Providence (Rank 5)
Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Prayer of Healing, Divine Hymn and Prayer of Mending by 10%, and reduces the cooldown of your Prayer of Mending by 30%.
https://www.wowhead.com/wotlk/spell=47567
--]]
[33076] = { duration = 10, class = "PRIEST", adjust = { Holy = -3 } }, -- Prayer of Mending (Rank 1)
[48112] = { parent = 33076 }, -- Prayer of Mending (Rank 2)
[48113] = { parent = 33076 }, -- Prayer of Mending (Rank 3)
--[[ Pain Suppression Modifiers
- Aspiration (Rank 1)
Reduces the cooldown of your Inner Focus, Power Infusion, Pain Suppression and Penance spells by 10%.
https://www.wowhead.com/wotlk/spell=47507
- Aspiration (Rank 2)
Reduces the cooldown of your Inner Focus, Power Infusion, Pain Suppression and Penance spells by 20%.
https://www.wowhead.com/wotlk/spell=47508
--]]
[33206] = { duration = 180, class = "PRIEST", adjust = -36 }, -- Pain Suppression
--[[ Shadowfiend Modifiers
- Veiled Shadows (Rank 1)
Decreases the cooldown of your Fade ability by 3 sec, and reduces the cooldown of your Shadowfiend ability by 1 minute.
https://www.wowhead.com/wotlk/spell=15274
- Veiled Shadows (Rank 2)
Decreases the cooldown of your Fade ability by 6 sec, and reduces the cooldown of your Shadowfiend ability by 2 minutes.
https://www.wowhead.com/wotlk/spell=15311
--]]
[34433] = { duration = 300, class = "PRIEST", adjust = { Shadow = -120 } }, -- Shadowfiend
--[[ Circle of Healing Modifiers
- Divine Providence (Rank 1)
Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Prayer of Healing, Divine Hymn and Prayer of Mending by 2%, and reduces the cooldown of your Prayer of Mending by 6%.
https://www.wowhead.com/wotlk/spell=47562
- Divine Providence (Rank 2)
Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Prayer of Healing, Divine Hymn and Prayer of Mending by 4%, and reduces the cooldown of your Prayer of Mending by 12%.
https://www.wowhead.com/wotlk/spell=47564
- Divine Providence (Rank 3)
Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Prayer of Healing, Divine Hymn and Prayer of Mending by 6%, and reduces the cooldown of your Prayer of Mending by 18%.
https://www.wowhead.com/wotlk/spell=47565
- Divine Providence (Rank 4)
Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Prayer of Healing, Divine Hymn and Prayer of Mending by 8%, and reduces the cooldown of your Prayer of Mending by 24%.
https://www.wowhead.com/wotlk/spell=47566
- Divine Providence (Rank 5)
Increases the amount healed by Circle of Healing, Binding Heal, Holy Nova, Prayer of Healing, Divine Hymn and Prayer of Mending by 10%, and reduces the cooldown of your Prayer of Mending by 30%.
https://www.wowhead.com/wotlk/spell=47567
--]]
[34861] = { duration = 6, class = "PRIEST", adjust = { Holy = -1.8 } }, -- Circle of Healing (Rank 1)
[34863] = { parent = 34861 }, -- Circle of Healing (Rank 2)
[34864] = { parent = 34861 }, -- Circle of Healing (Rank 3)
[34865] = { parent = 34861 }, -- Circle of Healing (Rank 4)
[34866] = { parent = 34861 }, -- Circle of Healing (Rank 5)
[48088] = { parent = 34861 }, -- Circle of Healing (Rank 6)
[48089] = { parent = 34861 }, -- Circle of Healing (Rank 7)
--[[ Penance Modifiers
- Aspiration (Rank 1)
Reduces the cooldown of your Inner Focus, Power Infusion, Pain Suppression and Penance spells by 10%.
https://www.wowhead.com/wotlk/spell=47507
- Aspiration (Rank 2)
Reduces the cooldown of your Inner Focus, Power Infusion, Pain Suppression and Penance spells by 20%.
https://www.wowhead.com/wotlk/spell=47508
- Glyph of Penance
Reduces the cooldown of Penance by 2 sec.
https://www.wowhead.com/wotlk/spell=63235
- Glyph of Penance
Reduces the cooldown of Penance by 2 sec.
https://www.wowhead.com/wotlk/spell=63874
--]]
[47540] = { duration = 12, class = "PRIEST", adjust = -4 }, -- Penance (Rank 1)
[53005] = { parent = 47540 }, -- Penance (Rank 2)
[53006] = { parent = 47540 }, -- Penance (Rank 3)
[53007] = { parent = 47540 }, -- Penance (Rank 4)
--[[ Dispersion Modifiers
- Glyph of Dispersion
Reduces the cooldown on Dispersion by 45 sec.
https://www.wowhead.com/wotlk/spell=63229
- Glyph of Dispersion
Reduces the cooldown on Dispersion by 45 sec.
https://www.wowhead.com/wotlk/spell=63872
--]]
[47585] = { duration = 120, class = "PRIEST", adjust = -45 }, -- Dispersion
[47788] = { duration = 180, class = "PRIEST" }, -- Guardian Spirit
[64044] = { duration = 120, class = "PRIEST" }, -- Psychic Horror
[64843] = { duration = 480, class = "PRIEST" }, -- Divine Hymn
[64901] = { duration = 360, class = "PRIEST" }, -- Hymn of Hope
-- Warlock
--[[ Curse of Doom Modifiers
- Amplify Curse
Reduces the global cooldown of your Curses by 0.5 sec.
https://www.wowhead.com/wotlk/spell=18288
- Demonic Pact (Rank 1)
Increases your spell damage by 2%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 2% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47236
- Demonic Pact (Rank 2)
Increases your spell damage by 4%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 4% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47237
- Demonic Pact (Rank 3)
Increases your spell damage by 6%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 6% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47238
- Demonic Pact (Rank 4)
Increases your spell damage by 8%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 8% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47239
- Demonic Pact (Rank 5)
Increases your spell damage by 10%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 10% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47240
--]]
[603] = { duration = 60, class = "WARLOCK" }, -- Curse of Doom (Rank 1)
[30910] = { parent = 603 }, -- Curse of Doom (Rank 2)
[47867] = { parent = 603 }, -- Curse of Doom (Rank 3)
[698] = { duration = 120, class = "WARLOCK" }, -- Ritual of Summoning
[1122] = { duration = 600, class = "WARLOCK" }, -- Inferno
--[[ Howl of Terror Modifiers
- Glyph of Howl of Terror
Reduces the cooldown on your Howl of Terror spell by 8 sec.
https://www.wowhead.com/wotlk/spell=56217
--]]
[5484] = { duration = 40, class = "WARLOCK", adjust = { Affliction = -8 } }, -- 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)
[47890] = { parent = 6229 }, -- Shadow Ward (Rank 5)
[47891] = { parent = 6229 }, -- Shadow Ward (Rank 6)
--[[ Death Coil Modifiers
- Improved Death Coil
Decreases the cooldown of Death Coil by 15%.
https://www.wowhead.com/wotlk/spell=24487
- Demonic Pact (Rank 1)
Increases your spell damage by 2%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 2% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47236
- Demonic Pact (Rank 2)
Increases your spell damage by 4%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 4% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47237
- Demonic Pact (Rank 3)
Increases your spell damage by 6%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 6% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47238
- Demonic Pact (Rank 4)
Increases your spell damage by 8%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 8% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47239
- Demonic Pact (Rank 5)
Increases your spell damage by 10%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 10% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47240
--]]
[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)
[47859] = { parent = 6789 }, -- Death Coil (Rank 5)
[47860] = { parent = 6789 }, -- Death Coil (Rank 6)
--[[ Shadowburn Modifiers
- Demonic Pact (Rank 1)
Increases your spell damage by 2%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 2% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47236
- Demonic Pact (Rank 2)
Increases your spell damage by 4%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 4% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47237
- Demonic Pact (Rank 3)
Increases your spell damage by 6%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 6% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47238
- Demonic Pact (Rank 4)
Increases your spell damage by 8%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 8% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47239
- Demonic Pact (Rank 5)
Increases your spell damage by 10%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 10% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47240
--]]
[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)
[47826] = { parent = 17877 }, -- Shadowburn (Rank 9)
[47827] = { parent = 17877 }, -- Shadowburn (Rank 10)
--[[ Conflagrate Modifiers
- Demonic Pact (Rank 1)
Increases your spell damage by 2%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 2% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47236
- Demonic Pact (Rank 2)
Increases your spell damage by 4%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 4% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47237
- Demonic Pact (Rank 3)
Increases your spell damage by 6%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 6% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47238
- Demonic Pact (Rank 4)
Increases your spell damage by 8%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 8% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47239
- Demonic Pact (Rank 5)
Increases your spell damage by 10%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 10% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47240
--]]
[17962] = { duration = 10, class = "WARLOCK" }, -- Conflagrate
[18540] = { duration = 1800, class = "WARLOCK" }, -- Ritual of Doom
--[[ Fel Domination Modifiers
- Nemesis (Rank 1)
Reduces the cooldown of your Demonic Empowerment, Metamorphosis, and Fel Domination spells by 10%.
https://www.wowhead.com/wotlk/spell=63117
- Nemesis (Rank 2)
Reduces the cooldown of your Demonic Empowerment, Metamorphosis, and Fel Domination spells by 20%.
https://www.wowhead.com/wotlk/spell=63121
- Nemesis (Rank 3)
Reduces the cooldown of your Demonic Empowerment, Metamorphosis, and Fel Domination spells by 30%.
https://www.wowhead.com/wotlk/spell=63123
--]]
[18708] = { duration = 180, class = "WARLOCK", adjust = { Demonology = -54 } }, -- Fel Domination
[29858] = { duration = 180, class = "WARLOCK" }, -- Soulshatter
[29893] = { duration = 300, class = "WARLOCK" }, -- Ritual of Souls (Rank 1)
[58887] = { parent = 29893 }, -- Ritual of Souls (Rank 2)
--[[ Shadowfury Modifiers
- Demonic Pact (Rank 1)
Increases your spell damage by 2%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 2% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47236
- Demonic Pact (Rank 2)
Increases your spell damage by 4%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 4% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47237
- Demonic Pact (Rank 3)
Increases your spell damage by 6%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 6% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47238
- Demonic Pact (Rank 4)
Increases your spell damage by 8%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 8% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47239
- Demonic Pact (Rank 5)
Increases your spell damage by 10%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 10% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47240
- Backdraft
Cast time and global cooldown of your next three Destruction spell reduced by 10%.
https://www.wowhead.com/wotlk/spell=54274
- Backdraft
Cast time and global cooldown of your next three Destruction spell reduced by 20%.
https://www.wowhead.com/wotlk/spell=54276
- Backdraft
Cast time and global cooldown of your next three Destruction spell reduced by 30%.
https://www.wowhead.com/wotlk/spell=54277
--]]
[30283] = { duration = 20, class = "WARLOCK" }, -- Shadowfury (Rank 1)
[30413] = { parent = 30283 }, -- Shadowfury (Rank 2)
[30414] = { parent = 30283 }, -- Shadowfury (Rank 3)
[47846] = { parent = 30283 }, -- Shadowfury (Rank 4)
[47847] = { parent = 30283 }, -- Shadowfury (Rank 5)
--[[ Demonic Empowerment Modifiers
- Nemesis (Rank 1)
Reduces the cooldown of your Demonic Empowerment, Metamorphosis, and Fel Domination spells by 10%.
https://www.wowhead.com/wotlk/spell=63117
- Nemesis (Rank 2)
Reduces the cooldown of your Demonic Empowerment, Metamorphosis, and Fel Domination spells by 20%.
https://www.wowhead.com/wotlk/spell=63121
- Nemesis (Rank 3)
Reduces the cooldown of your Demonic Empowerment, Metamorphosis, and Fel Domination spells by 30%.
https://www.wowhead.com/wotlk/spell=63123
--]]
[47193] = { duration = 60, class = "WARLOCK", adjust = -18 }, -- Demonic Empowerment
--[[ Shadowflame Modifiers
- Demonic Pact (Rank 1)
Increases your spell damage by 2%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 2% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47236
- Demonic Pact (Rank 2)
Increases your spell damage by 4%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 4% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47237
- Demonic Pact (Rank 3)
Increases your spell damage by 6%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 6% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47238
- Demonic Pact (Rank 4)
Increases your spell damage by 8%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 8% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47239
- Demonic Pact (Rank 5)
Increases your spell damage by 10%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 10% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47240
- Backdraft (Rank 1)
When you cast Conflagrate, the cast time and global cooldown of your next three Destruction spells is reduced by 10%. Lasts 15 sec.
https://www.wowhead.com/wotlk/spell=47258
- Backdraft (Rank 2)
When you cast Conflagrate, the cast time and global cooldown of your next three Destruction spells is reduced by 20%. Lasts 15 sec.
https://www.wowhead.com/wotlk/spell=47259
- Backdraft (Rank 3)
When you cast Conflagrate, the cast time and global cooldown of your next three Destruction spells is reduced by 30%. Lasts 15 sec.
https://www.wowhead.com/wotlk/spell=47260
- Backdraft
Cast time and global cooldown of your next three Destruction spell reduced by 10%.
https://www.wowhead.com/wotlk/spell=54274
- Backdraft
Cast time and global cooldown of your next three Destruction spell reduced by 20%.
https://www.wowhead.com/wotlk/spell=54276
- Backdraft
Cast time and global cooldown of your next three Destruction spell reduced by 30%.
https://www.wowhead.com/wotlk/spell=54277
--]]
[47897] = { duration = 15, class = "WARLOCK" }, -- Shadowflame (Rank 1)
[61290] = { parent = 47897 }, -- Shadowflame (Rank 2)
--[[ Demonic Circle: Teleport Modifiers
- Glyph of Demonic Circle
Reduces the cooldown on Demonic Circle by 4 sec.
https://www.wowhead.com/wotlk/spell=63309
- Glyph of Demonic Circle
Reduces the cooldown on Demonic Circle by 4 sec.
https://www.wowhead.com/wotlk/spell=63937
--]]
[48020] = { duration = 30, class = "WARLOCK" }, -- Demonic Circle: Teleport
--[[ Haunt Modifiers
- Demonic Pact (Rank 1)
Increases your spell damage by 2%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 2% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47236
- Demonic Pact (Rank 2)
Increases your spell damage by 4%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 4% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47237
- Demonic Pact (Rank 3)
Increases your spell damage by 6%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 6% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47238
- Demonic Pact (Rank 4)
Increases your spell damage by 8%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 8% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47239
- Demonic Pact (Rank 5)
Increases your spell damage by 10%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 10% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47240
--]]
[48181] = { duration = 8, class = "WARLOCK" }, -- Haunt (Rank 1)
[59161] = { parent = 48181 }, -- Haunt (Rank 2)
[59163] = { parent = 48181 }, -- Haunt (Rank 3)
[59164] = { parent = 48181 }, -- Haunt (Rank 4)
[50581] = { duration = 6, class = "WARLOCK" }, -- Shadow Cleave
[50589] = { duration = 30, class = "WARLOCK" }, -- Immolation Aura
--[[ Chaos Bolt Modifiers
- Demonic Pact (Rank 1)
Increases your spell damage by 2%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 2% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47236
- Demonic Pact (Rank 2)
Increases your spell damage by 4%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 4% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47237
- Demonic Pact (Rank 3)
Increases your spell damage by 6%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 6% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47238
- Demonic Pact (Rank 4)
Increases your spell damage by 8%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 8% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47239
- Demonic Pact (Rank 5)
Increases your spell damage by 10%, and your pet's criticals apply the Demonic Pact effect to your party or raid members. Demonic Pact increases spell power by 10% of your Spell Damage for 45 sec. This effect has a 5 sec cooldown. Does not work on Enslaved demons.
https://www.wowhead.com/wotlk/spell=47240
- Backdraft
Cast time and global cooldown of your next three Destruction spell reduced by 10%.
https://www.wowhead.com/wotlk/spell=54274
- Backdraft
Cast time and global cooldown of your next three Destruction spell reduced by 20%.
https://www.wowhead.com/wotlk/spell=54276
- Backdraft
Cast time and global cooldown of your next three Destruction spell reduced by 30%.
https://www.wowhead.com/wotlk/spell=54277
- Glyph of Chaos Bolt
Reduces the cooldown on Chaos Bolt by 2 sec.
https://www.wowhead.com/wotlk/spell=63304
--]]
[50796] = { duration = 12, class = "WARLOCK" }, -- Chaos Bolt (Rank 1)
[59170] = { parent = 50796 }, -- Chaos Bolt (Rank 2)
[59171] = { parent = 50796 }, -- Chaos Bolt (Rank 3)
[59172] = { parent = 50796 }, -- Chaos Bolt (Rank 4)
[59671] = { duration = 15, class = "WARLOCK" }, -- Challenging Howl
-- 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)
[47984] = { parent = 3716 }, -- Torment (Rank 8)
[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)
[7812] = { duration = 60, class = "WARLOCK" }, -- Sacrifice (Rank 1)
[19438] = { parent = 7812 }, -- Sacrifice (Rank 2)
[19440] = { parent = 7812 }, -- Sacrifice (Rank 3)
[19441] = { parent = 7812 }, -- Sacrifice (Rank 4)
[19442] = { parent = 7812 }, -- Sacrifice (Rank 5)
[19443] = { parent = 7812 }, -- Sacrifice (Rank 6)
[27273] = { parent = 7812 }, -- Sacrifice (Rank 7)
[47985] = { parent = 7812 }, -- Sacrifice (Rank 8)
[47986] = { parent = 7812 }, -- Sacrifice (Rank 9)
--[[ Lash of Pain Modifiers
- Demonic Power (Rank 1)
Reduces the cooldown of your Succubus' Lash of Pain spell by 3 sec. and reduces the casting time of your Imp's Firebolt spell by 0.25 sec.
https://www.wowhead.com/wotlk/spell=18126
- Demonic Power (Rank 2)
Reduces the cooldown of your Succubus' Lash of Pain spell by 6 sec. and reduces the casting time of your Imp's Firebolt spell by 0.50 sec.
https://www.wowhead.com/wotlk/spell=18127
--]]
[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)
[47991] = { parent = 7814 }, -- Lash of Pain (Rank 8)
[47992] = { parent = 7814 }, -- Lash of Pain (Rank 9)
[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)
[47989] = { parent = 17735 }, -- Suffering (Rank 7)
[47990] = { parent = 17735 }, -- Suffering (Rank 8)
[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)
[48011] = { parent = 19505 }, -- Devour Magic (Rank 7)
[30151] = { duration = 30, class = "WARLOCK" }, -- Intercept (Rank 1)
[30194] = { parent = 30151 }, -- Intercept (Rank 2)
[30198] = { parent = 30151 }, -- Intercept (Rank 3)
[47996] = { parent = 30151 }, -- Intercept (Rank 4)
[30213] = { duration = 6, class = "WARLOCK" }, -- Cleave (Rank 1)
[30219] = { parent = 30213 }, -- Cleave (Rank 2)
[30223] = { parent = 30213 }, -- Cleave (Rank 3)
[47994] = { parent = 30213 }, -- Cleave (Rank 4)
[33698] = { duration = 5, class = "WARLOCK" }, -- Anguish (Rank 1)
[33699] = { parent = 33698 }, -- Anguish (Rank 2)
[33700] = { parent = 33698 }, -- Anguish (Rank 3)
[47993] = { parent = 33698 }, -- Anguish (Rank 4)
--[[ Shadow Bite Modifiers
- Improved Felhunter (Rank 1)
Your Felhunter regains 4% of its maximum mana each time it hits with its Shadow Bite ability and the cooldown on that ability is reduced by 2 sec. In addition, increases the effect of your Felhunter's Fel Intelligence by 5%.
https://www.wowhead.com/wotlk/spell=54037
- Improved Felhunter (Rank 2)
Your Felhunter regains 8% of its maximum mana each time it hits with its Shadow Bite ability and the cooldown on that ability is reduced by 4 sec. In addition, increases the effect of your Felhunter's Fel Intelligence by 10%.
https://www.wowhead.com/wotlk/spell=54038
--]]
[54049] = { duration = 6, class = "WARLOCK" }, -- Shadow Bite (Rank 1)
[54050] = { parent = 54049 }, -- Shadow Bite (Rank 2)
[54051] = { parent = 54049 }, -- Shadow Bite (Rank 3)
[54052] = { parent = 54049 }, -- Shadow Bite (Rank 4)
[54053] = { parent = 54049 }, -- Shadow Bite (Rank 5)
-- Shaman
--[[ Chain Lightning Modifiers
- Elemental Mastery
When activated, your next Lightning Bolt, Chain Lightning or Lava Burst spell becomes an instant cast spell. In addition, you gain 15% spell haste for 15 sec. Elemental Mastery shares a cooldown with Nature's Swiftness.
https://www.wowhead.com/wotlk/spell=16166
- Nature's Swiftness
When activated, your next Nature spell with a base casting time less than 10 sec. becomes an instant cast spell. Nature's Swiftness shares a cooldown with Elemental Mastery.
https://www.wowhead.com/wotlk/spell=16188
- Storm, Earth and Fire (Rank 1)
Reduces the cooldown of your Chain Lightning spell by .75 sec, your Earthbind Totem also has a 33% chance to root targets for 5 sec when cast and the periodic damage done by your Flame Shock is increased by 20%.
https://www.wowhead.com/wotlk/spell=51483
- Storm, Earth and Fire (Rank 2)
Reduces the cooldown of your Chain Lightning spell by 1.5 sec, your Earthbind Totem also has a 66% chance to root targets for 5 sec when cast and the periodic damage done by your Flame Shock is increased by 40%.
https://www.wowhead.com/wotlk/spell=51485
- Storm, Earth and Fire (Rank 3)
Reduces the cooldown of your Chain Lightning spell by 2.5 sec, your Earthbind Totem also has a 100% chance to root targets for 5 sec when cast and the periodic damage done by your Flame Shock is increased by 60%.
https://www.wowhead.com/wotlk/spell=51486
--]]
[421] = { duration = 6, class = "SHAMAN", adjust = { Elemental = -2.5 } }, -- 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)
[49270] = { parent = 421 }, -- Chain Lightning (Rank 7)
[49271] = { parent = 421 }, -- Chain Lightning (Rank 8)
--[[ Astral Recall Modifiers
- Glyph of Astral Recall
Cooldown of your Astral Recall spell reduced by 7.5 min.
https://www.wowhead.com/wotlk/spell=58058
- Glyph of Astral Recall
Cooldown of your Astral Recall spell reduced by 7.5 min.
https://www.wowhead.com/wotlk/spell=58260
--]]
[556] = { duration = 900, class = "SHAMAN" }, -- Astral Recall
--[[ Fire Nova Modifiers
- Improved Fire Nova (Rank 1)
Increases the damage done by your Fire Nova by 10% and reduces the cooldown by 2 sec.
https://www.wowhead.com/wotlk/spell=16086
- Improved Fire Nova (Rank 2)
Increases the damage done by your Fire Nova by 20% and reduces the cooldown by 4 sec.
https://www.wowhead.com/wotlk/spell=16544
- Glyph of Fire Nova
Reduces the cooldown of your Fire Nova spell by 3 seconds.
https://www.wowhead.com/wotlk/spell=55450
- Glyph of Fire Nova
Reduces the cooldown of your Fire Nova spell by 3 seconds.
https://www.wowhead.com/wotlk/spell=55544
--]]
[1535] = { duration = 10, class = "SHAMAN" }, -- Fire Nova (Rank 1)
[8498] = { parent = 1535 }, -- Fire Nova (Rank 2)
[8499] = { parent = 1535 }, -- Fire Nova (Rank 3)
[11314] = { parent = 1535 }, -- Fire Nova (Rank 4)
[11315] = { parent = 1535 }, -- Fire Nova (Rank 5)