forked from jordonwow/omnibar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOmniBar_Mainline.lua
698 lines (592 loc) · 44.6 KB
/
OmniBar_Mainline.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
local addonName, addon = ...
addon.MAX_ARENA_SIZE = 3
addon.Shared = {}
addon.Resets = {
--[[ Grimoire: Felhunter
- Spell Lock
]]
[111897] = { 119910 },
[133] = { { spellID = 190319, amount = 3 } }
}
addon.Cooldowns = {
-- Death Knight
[47528] = { default = true, duration = 15, class = "DEATHKNIGHT" }, -- Mind Freeze
[48265] = { duration = 45, class = "DEATHKNIGHT" }, -- Death's Advance
[48707] = { duration = 60, class = "DEATHKNIGHT" }, -- Anti-Magic Shell
[49576] = { duration = 25, class = "DEATHKNIGHT", charges = 2 }, -- Death Grip
[51052] = { duration = 120, class = "DEATHKNIGHT" }, -- Anti-Magic Zone
[61999] = { duration = 600, class = "DEATHKNIGHT" }, -- Raise Ally
[77606] = { duration = 20, class = "DEATHKNIGHT" }, -- Dark Simulacrum
[212552] = { duration = 60, class = "DEATHKNIGHT" }, -- Wraith Walk
[47476] = { duration = 60, class = "DEATHKNIGHT" }, -- Strangulate
-- Blood
[49028] = { duration = 120, class = "DEATHKNIGHT", specID = { 250 } }, -- Dancing Rune Weapon
[55233] = { duration = 90, class = "DEATHKNIGHT", specID = { 250 } }, -- Vampiric Blood
[108199] = { duration = 120, class = "DEATHKNIGHT", specID = { 250 } }, -- Gorefiend's Grasp
[194679] = { duration = 25, class = "DEATHKNIGHT", specID = { 250 }, charges = 2 }, -- Rune Tap
[194844] = { duration = 60, class = "DEATHKNIGHT", specID = { 250 } }, -- Bonestorm
[203173] = { duration = 15, class = "DEATHKNIGHT", specID = { 250 } }, -- Death Chain
[205223] = { duration = 45, class = "DEATHKNIGHT", specID = { 250 } }, -- Consumption
[206931] = { duration = 30, class = "DEATHKNIGHT", specID = { 250 } }, -- Blooddrinker
[206977] = { duration = 120, class = "DEATHKNIGHT", specID = { 250 } }, -- Blood Mirror
[219809] = { duration = 60, class = "DEATHKNIGHT", specID = { 250 } }, -- Tombstone
[221562] = { duration = 45, class = "DEATHKNIGHT", specID = { 250, 252 } }, -- Asphyxiate (Blood)
[108194] = { parent = 221562 }, -- Asphyxiate (Unholy)
[221699] = { duration = 60, class = "DEATHKNIGHT", specID = { 250 }, charges = 2 }, -- Blood Tap
-- Frost
[47568] = { duration = 120, class = "DEATHKNIGHT", specID = { 251 }, charges = 2 }, -- Empower Rune Weapon
[207127] = { parent = 47568 }, -- Hungering Rune Weapon
[48792] = { duration = 180, class = "DEATHKNIGHT", specID = { 251, 252 } }, -- Icebound Fortitude
[51271] = { duration = 45, class = "DEATHKNIGHT", specID = { 251 } }, -- Pillar of Frost
[152279] = { duration = 120, class = "DEATHKNIGHT", specID = { 251} }, -- Breath of Sindragosa
[196770] = { duration = 20, class = "DEATHKNIGHT", specID = { 251 } }, -- Remorseless Winter
[204143] = { duration = 45, class = "DEATHKNIGHT", specID = { 251 } }, -- Killing Machine
[204160] = { duration = 45, class = "DEATHKNIGHT", specID = { 251 } }, -- Chill Streak
[207167] = { duration = 60, class = "DEATHKNIGHT", specID = { 251} }, -- Blinding Sleet
[207256] = { duration = 90, class = "DEATHKNIGHT", specID = { 251} }, -- Obliteration
[279302] = { duration = 180, class = "DEATHKNIGHT", specID = { 251} }, -- Frostwyrm's Fury
-- Unholy
[42650] = { duration = 480, class = "DEATHKNIGHT", specID = { 252 } }, -- Army of the Dead
[63560] = { duration = 60, class = "DEATHKNIGHT", specID = { 252 } }, -- Dark Transformation
[43265] = { duration = 30, class = "DEATHKNIGHT", specID = { 252 } }, -- Death and Decay
[152280] = { parent = 43265 }, -- Defile
[47481] = { duration = 90, class = "DEATHKNIGHT", specID = { 252 } }, -- Gnaw (Ghoul)
[47482] = { duration = 30, class = "DEATHKNIGHT", specID = { 252 } }, -- Leap (Ghoul)
[49206] = { duration = 180, class = "DEATHKNIGHT", specID = { 252 } }, -- Summon Gargoyle
[207349] = { parent = 49206 }, -- Dark Arbiter
[91802] = { duration = 30, class = "DEATHKNIGHT", specID = { 252 } }, -- Shambling Rush (Ghoul)
[207289] = { duration = 120, class = "DEATHKNIGHT", specID = { 252 } }, -- Unholy Frenzy
[207319] = { duration = 60, class = "DEATHKNIGHT", specID = { 252 } }, -- Corpse Shield
[220143] = { duration = 90, class = "DEATHKNIGHT", specID = { 252 } }, -- Apocalypse
-- Demon Hunter
[179057] = { duration = 60, class = "DEMONHUNTER" }, -- Chaos Nova
[183752] = { default = true, duration = 15, class = "DEMONHUNTER" }, -- Disrupt
[188499] = { duration = 9, class = "DEMONHUNTER" }, -- Blade Dance
[188501] = { duration = 30, class = "DEMONHUNTER" }, -- Spectral Sight
[191427] = { duration = 105, class = "DEMONHUNTER" }, -- Metamorphosis
[187827] = { parent = 191427, duration = 180 }, -- Metamorphosis (Vengeance)
[162264] = { parent = 191427 }, -- Metamorphosis
[196718] = { duration = 180, class = "DEMONHUNTER" }, -- Darkness
[198013] = { duration = 30, class = "DEMONHUNTER" }, -- Eye Beam
[198793] = { duration = 25, class = "DEMONHUNTER" }, -- Vengeful Retreat
[203704] = { duration = 60, class = "DEMONHUNTER" }, -- Mana Break
[205604] = { duration = 60, class = "DEMONHUNTER" }, -- Reverse Magic
[206649] = { duration = 45, class = "DEMONHUNTER" }, -- Eye of Leotheras
[206803] = { duration = 60, class = "DEMONHUNTER" }, -- Rain from Above
[212800] = { duration = 60, class = "DEMONHUNTER" }, -- Blur
[196555] = { parent = 212800, duration = 90 }, -- Netherwalk
[214743] = { duration = 60, class = "DEMONHUNTER" }, -- Soul Carver
[207407] = { parent = 214743 }, -- Soul Carver (Vengeance)
[221527] = { duration = 45, class = "DEMONHUNTER" }, -- Imprison
[323639] = { duration = 90, class = "DEMONHUNTER" }, -- The Hunt
-- Havoc
[201467] = { duration = 60, class = "DEMONHUNTER", specID = { 577 } }, -- Fury of the Illidari
[206491] = { duration = 120, class = "DEMONHUNTER", specID = { 577 } }, -- Nemesis
[211881] = { duration = 30, class = "DEMONHUNTER", specID = { 577, 581 } }, -- Fel Eruption
-- Vengeance
[202137] = { duration = 60, class = "DEMONHUNTER", specID = { 581 } }, -- Sigil of Silence
[202138] = { duration = 120, class = "DEMONHUNTER", specID = { 581 } }, -- Sigil of Chains
[204021] = { duration = 60, class = "DEMONHUNTER", specID = { 581 } }, -- Fiery Brand
[204596] = { duration = 30, class = "DEMONHUNTER", specID = { 581 } }, -- Sigil of Flame
[205629] = { duration = 30, class = "DEMONHUNTER", specID = { 581 } }, -- Demonic Trample
[205630] = { duration = 90, class = "DEMONHUNTER", specID = { 581 } }, -- Illidan's Grasp
[207684] = { duration = 90, class = "DEMONHUNTER", specID = { 581 } }, -- Sigil of Misery
[207810] = { duration = 120, class = "DEMONHUNTER", specID = { 581 } }, -- Nether Bond
[263648] = { duration = 20, class = "DEMONHUNTER", specID = { 581 } }, -- Soul Barrier
-- Priest
[586] = { duration = 30, class = "PRIEST" }, -- Fade
[213602] = { parent = 586, duration = 45 }, -- Greater Fade
[32375] = { duration = 45, class = "PRIEST" }, -- Mass Dispel
[323673] = { duration = 45, class = "PRIEST" }, -- Mindgames
[316262] = { duration = 90, class = "PRIEST" }, -- Thoughtsteal
[32379] = { duration = 15, class = "PRIEST" }, -- Shadow Word: Death
-- Discipline
[8122] = { duration = 30, class = "PRIEST", specID = { 256, 257, 258 } }, -- Psychic Scream
[10060] = { duration = 120, class = "PRIEST", specID = { 256, 258 } }, -- Power Infusion
[33206] = { duration = 180, class = "PRIEST", specID = { 256 } }, -- Pain Suppression
[34433] = { duration = 180, class = "PRIEST", specID = { 256, 258 } }, -- Shadowfiend
[123040] = { parent = 34433, duration = 60 }, -- Mindbender (Discipline)
[200174] = { parent = 34433, duration = 60 }, -- Mindbender (Shadow)
[47536] = { duration = 90, class = "PRIEST", specID = { 256 } }, -- Rapture
[62618] = { duration = 180, class = "PRIEST", specID = { 256 } }, -- Power Word: Barrier
[73325] = { duration = 90, class = "PRIEST", specID = { 256, 257, 258 } }, -- Leap of Faith
[197862] = { duration = 60, class = "PRIEST", specID = { 256 } }, -- Archangel
[197871] = { duration = 60, class = "PRIEST", specID = { 256 } }, -- Dark Archangel
[204263] = { duration = 45, class = "PRIEST", specID = { 256, 257 } }, -- Shining Force
[527] = { duration = 8, class = "PRIEST", specID = { 256, 257 }, charges = 2 }, -- Purify
-- Holy
[19236] = { duration = 90, class = "PRIEST", specID = { 256, 257 } }, -- Desperate Prayer
[47788] = { duration = 180, class = "PRIEST", specID = { 257 } }, -- Guardian Spirit
[64843] = { duration = 180, class = "PRIEST", specID = { 257 } }, -- Divine Hymn
[64901] = { duration = 300, class = "PRIEST", specID = { 257 } }, -- Symbol of Hope
[196762] = { duration = 30, class = "PRIEST", specID = { 257 } }, -- Inner Focus
[197268] = { duration = 60, class = "PRIEST", specID = { 257 } }, -- Ray of Hope
[200183] = { duration = 120, class = "PRIEST", specID = { 257 } }, -- Apotheosis
[213610] = { duration = 30, class = "PRIEST", specID = { 257 } }, -- Holy Ward
[215769] = { duration = 300, class = "PRIEST", specID = { 257 } }, -- Spirit of Redemption
[88625] = { duration = 60, class = "PRIEST", specID = { 257 } }, -- Holy Word: Chastise
-- Shadow
[15286] = { duration = 120, class = "PRIEST", specID = { 258 } }, -- Vampiric Embrace
[15487] = { duration = 45, class = "PRIEST", specID = { 258 } }, -- Silence
[47585] = { duration = 120, class = "PRIEST", specID = { 258 } }, -- Dispersion
[64044] = { duration = 45, class = "PRIEST", specID = { 258 } }, -- Psychic Horror
[108968] = { duration = 300, class = "PRIEST", specID = { 258 } }, -- Void Shift
[193223] = { duration = 240, class = "PRIEST", specID = { 258 } }, -- Surrender to Madness
[205065] = { duration = 45, class = "PRIEST", specID = { 258 } }, -- Void Torrent
[205369] = { duration = 30, class = "PRIEST", specID = { 258 } }, -- Mind Bomb
[211522] = { duration = 45, class = "PRIEST", specID = { 258 } }, -- Psyfiend
-- Paladin
[633] = { duration = 600, class = "PALADIN" }, -- Lay on Hands
[642] = { duration = 300, class = "PALADIN" }, -- Divine Shield
[853] = { duration = 60, class = "PALADIN" }, -- Hammer of Justice
[1022] = { duration = 300, class = "PALADIN", charges = 2 }, -- Blessing of Protection
[204018] = { parent = 1022, duration = 180 }, -- Blessing of Spellwarding
[1044] = { duration = 25, class = "PALADIN", charges = 2 }, -- Blessing of Freedom
[20066] = { duration = 15, class = "PALADIN" }, -- Repentance
[31884] = { duration = 120, class = "PALADIN" }, -- Avenging Wrath
[31842] = { parent = 31884 }, -- Avenging Wrath (Holy)
[216331] = { parent = 31884 }, -- Avenging Crusader
[224668] = { parent = 31884 }, -- Crusade
[231895] = { parent = 31884 }, -- Crusade
[115750] = { duration = 90, class = "PALADIN" }, -- Blinding Light
[304971] = { duration = 60, class = "PALADIN" }, -- Divine Toll
[316958] = { duration = 240, class = "PALADIN" }, -- Ashen Hollow
-- Holy
[498] = { duration = 60, class = "PALADIN", specID = { 65, 66 } }, -- Divine Protection
[6940] = { duration = 120, class = "PALADIN", specID = { 65, 66 }, charges = 2 }, -- Blessing of Sacrifice
[31821] = { duration = 180, class = "PALADIN", specID = { 65 } }, -- Aura Mastery
[105809] = { duration = 90, class = "PALADIN", specID = { 65 } }, -- Holy Avenger
[114158] = { duration = 60, class = "PALADIN", specID = { 65 } }, -- Light's Hammer
[200652] = { duration = 90, class = "PALADIN", specID = { 65 } }, -- Tyr's Deliverance
[210294] = { duration = 25, class = "PALADIN", specID = { 65 } }, -- Divine Favor
[214202] = { duration = 30, class = "PALADIN", specID = { 65 }, charges = 2 }, -- Rule of Law
[4987] = { duration = 8, class = "PALADIN", specID = { 65 } }, -- Cleanse
-- Protection
[31850] = { duration = 120, class = "PALADIN", specID = { 66 } }, -- Ardent Defender
[31935] = { default = true, duration = 15, class = "PALADIN", specID = { 66 } }, -- Avenger's Shield
[86659] = { duration = 300, class = "PALADIN", specID = { 66 } }, -- Guardian of Ancient Kings
[228049] = { parent = 86659 }, -- Guardian of the Forgotten Queen
[96231] = { default = true, duration = 15, class = "PALADIN", specID = { 66, 70 } }, -- Rebuke
[152262] = { duration = 45, class = "PALADIN", specID = { 66 } }, -- Seraphim
[190784] = { duration = 45, class = "PALADIN", specID = { 66 } }, -- Divine Steed
[209202] = { duration = 60, class = "PALADIN", specID = { 66 } }, -- Eye of Tyr
[215652] = { duration = 45, class = "PALADIN", specID = { 66 } }, -- Shield of Virtue
-- Retribution
[184662] = { duration = 120, class = "PALADIN", specID = { 70 } }, -- Shield of Vengeance
[204939] = { duration = 60, class = "PALADIN", specID = { 70 } }, -- Hammer of Reckoning
[205191] = { duration = 60, class = "PALADIN", specID = { 70 } }, -- Eye for an Eye
[205273] = { duration = 45, class = "PALADIN", specID = { 70 } }, -- Wake of Ashes
[210220] = { duration = 180, class = "PALADIN", specID = { 70 } }, -- Holy Wrath
[210256] = { duration = 45, class = "PALADIN", specID = { 70 } }, -- Blessing of Sanctuary
-- Druid
[1850] = { duration = 120, class = "DRUID" }, -- Dash
[252216] = { parent = 1850, duration = 45 }, -- Tiger Dash
[5211] = { duration = 50, class = "DRUID" }, -- Mighty Bash
[20484] = { duration = 600, class = "DRUID" }, -- Rebirth
[102280] = { duration = 30, class = "DRUID" }, -- Displacer Beast
[102359] = { duration = 30, class = "DRUID" }, -- Mass Entanglement
[102401] = { duration = 15, class = "DRUID" }, -- Wild Charge
[132469] = { duration = 30, class = "DRUID" }, -- Typhoon
[323764] = { duration = 120, class = "DRUID" }, -- Convoke the Spirits
-- Balance
[22812] = { duration = { default = 60, [104] = 35 }, class = "DRUID", specID = { 102, 104, 105 } }, -- Barkskin
[29166] = { duration = 180, class = "DRUID", specID = { 102, 105 } }, -- Innervate
[78675] = { default = true, duration = 60, class = "DRUID", specID = { 102 } }, -- Solar Beam
[102560] = { duration = 180, class = "DRUID", specID = { 102 } }, -- Incarnation: Chosen of Elune
[108238] = { duration = 120, class = "DRUID", specID = { 102, 103, 105 } }, -- Renewal
[194223] = { duration = 180, class = "DRUID", specID = { 102 } }, -- Celestial Alignment
[202425] = { duration = 45, class = "DRUID", specID = { 102 } }, -- Warrior of Elune
[202770] = { duration = 60, class = "DRUID", specID = { 102 } }, -- Fury of Elune
[205636] = { duration = 60, class = "DRUID", specID = { 102 } }, -- Force of Nature
[209749] = { duration = 30, class = "DRUID", specID = { 102 } }, -- Faerie Swarm
-- Feral
[5217] = { duration = 30, class = "DRUID", specID = { 103 } }, -- Tiger's Fury
[22570] = { duration = 20, class = "DRUID", specID = { 103 } }, -- Maim
[61336] = { duration = { default = 180, [104] = 120 }, class = "DRUID", specID = { 103, 104 }, charges = 2 }, -- Survival Instincts
[102543] = { duration = 180, class = "DRUID", specID = { 103 } }, -- Incarnation: King of the Jungle
[106839] = { default = true, duration = 15, class = "DRUID", specID = { 103, 104 } }, -- Skull Bash
[106898] = { duration = 120, class = "DRUID", specID = { 103, 104 } }, -- Stampeding Roar
[106951] = { duration = 180, class = "DRUID", specID = { 103 } }, -- Berserk
[202060] = { duration = 45, class = "DRUID", specID = { 103 } }, -- Elune's Guidance
[203242] = { duration = 60, class = "DRUID", specID = { 103 } }, -- Rip and Tear
[210722] = { duration = 75, class = "DRUID", specID = { 103 } }, -- Ashamane's Frenzy
-- Guardian
[99] = { duration = 30, class = "DRUID", specID = { 104 } }, -- Incapacitating Roar
[22842] = { duration = 36, class = "DRUID", specID = { 104 } }, -- Frenzied Regeneration
[102558] = { duration = 180, class = "DRUID", specID = { 104 } }, -- Incarnation: Guardian of Ursoc
[200851] = { duration = 90, class = "DRUID", specID = { 104 } }, -- Rage of the Sleeper
[202246] = { duration = 15, class = "DRUID", specID = { 104 } }, -- Overrun
[204066] = { duration = 90, class = "DRUID", specID = { 104 } }, -- Lunar Beam
-- Restoration
[740] = { duration = 180, class = "DRUID", specID = { 105} }, -- Tranquility
[18562] = { duration = 25, class = "DRUID", specID = { 105}, charges = 2 }, -- Swiftmend
[33891] = { duration = 180, class = "DRUID", specID = { 105} }, -- Incarnation: Tree of Life
[102342] = { duration = 90, class = "DRUID", specID = { 105} }, -- Ironbark
[102351] = { duration = 30, class = "DRUID", specID = { 105} }, -- Cenarion Ward
[102793] = { duration = 60, class = "DRUID", specID = { 105} }, -- Ursol's Vortex
[197721] = { duration = 90, class = "DRUID", specID = { 105} }, -- Flourish
[201664] = { duration = 60, class = "DRUID", specID = { 105} }, -- Demoralizing Roar
[203651] = { duration = 45, class = "DRUID", specID = { 105} }, -- Overgrowth
[305497] = { duration = 45, class = "DRUID", specID = { 102, 103, 105} }, -- Thorns
[208253] = { duration = 90, class = "DRUID", specID = { 105} }, -- Essence of G'Hanir
[88423] = { duration = 8, class = "DRUID", specID = { 105 } }, -- Nature's Cure
-- Warrior
[100] = { duration = 20, class = "WARRIOR" }, -- Charge
[147833] = {duration = 30, class = "WARRIOR" }, -- Intervene
[1719] = { duration = 90, class = "WARRIOR" }, -- Recklessness
[6544] = { duration = 30, class = "WARRIOR", charges = 2 }, -- Heroic Leap
[6552] = { default = true, duration = 15, class = "WARRIOR" }, -- Pummel
[18499] = { duration = 60, class = "WARRIOR" }, -- Berserker Rage
[23920] = { duration = 25, class = "WARRIOR" }, -- Spell Reflection
[213915] = { parent = 23920, duration = 30 }, -- Mass Spell Reflection
[216890] = { parent = 23920 }, -- Spell Reflection (Arms, Fury)
[46968] = { duration = 40, class = "WARRIOR" }, -- Shockwave
[107570] = { duration = 30, class = "WARRIOR" }, -- Storm Bolt
[107574] = { duration = 90, class = "WARRIOR" }, -- Avatar
[236077] = { duration = 45, class = "WARRIOR" }, -- Disarm
[236236] = { parent = 236077 }, -- Disarm (Protection)
[307865] = { duration = 60, class = "WARRIOR" }, -- Spear of Bastion
-- Arms
[5246] = { duration = 90, class = "WARRIOR", specID = { 71, 72 } }, -- Intimidating Shout
[97462] = { duration = 180, class = "WARRIOR", specID = { 71, 72, 73 } }, -- Rallying Cry
[118038] = { duration = 120, class = "WARRIOR", specID = { 71 } }, -- Die by the Sword
[167105] = { duration = 45, class = "WARRIOR", specID = { 71 } }, -- Colossus Smash
[262161] = { parent = 167105 }, -- Warbreaker
[197690] = { duration = 10, class = "WARRIOR", specID = { 71 } }, -- Defensive Stance
[198817] = { duration = 45, class = "WARRIOR", specID = { 71 } }, -- Sharpen Blade
[227847] = { duration = 60, class = "WARRIOR", specID = { 71, 72 } }, -- Bladestorm (Arms)
[46924] = { parent = 227847 }, -- Bladestorm (Fury)
[152277] = { parent = 227847 }, -- Ravager
[236273] = { duration = 60 , class = "WARRIOR", specID = { 71 } }, -- Duel
[236320] = { duration = 90, class = "WARRIOR", specID = { 71 } }, -- War Banner
-- Fury
[184364] = { duration = 120, class = "WARRIOR", specID = { 72 } }, -- Enraged Regeneration
[205545] = { duration = 45, class = "WARRIOR", specID = { 72 } }, -- Odyn's Fury
-- Protection
[871] = { duration = 240, class = "WARRIOR", specID = { 73 } }, -- Shield Wall
[1160] = { duration = 45, class = "WARRIOR", specID = { 73 } }, -- Demoralizing Shout
[12975] = { duration = 180, class = "WARRIOR", specID = { 73 } }, -- Last Stand
[118000] = { duration = 35, class = "WARRIOR", specID = { 73 } }, -- Dragon Roar
[206572] = { duration = 20, class = "WARRIOR", specID = { 73 } }, -- Dragon Charge
[213871] = { duration = 15, class = "WARRIOR", specID = { 73 } }, -- Bodyguard
[228920] = { duration = 60, class = "WARRIOR", specID = { 73 } }, -- Ravager
-- Warlock
[1122] = { duration = 180, class = "WARLOCK" }, -- Summon Infernal
[6358] = { duration = 30, class = "WARLOCK" }, -- Seduction
[115268] = { parent = 6358 }, -- Mesmerize
[6360] = { duration = 25, class = "WARLOCK" }, -- Whiplash
[115770] = { parent = 6360 }, -- Fellash
[6789] = { duration = 45, class = "WARLOCK" }, -- Mortal Coil
[20707] = { duration = 600, class = "WARLOCK" }, -- Soulstone
[30283] = { duration = 60, class = "WARLOCK" }, -- Shadowfury
[104773] = { duration = 180, class = "WARLOCK" }, -- Unending Resolve
[108416] = { duration = 60, class = "WARLOCK" }, -- Dark Pact
[108501] = { duration = 90, class = "WARLOCK" }, -- Grimoire of Service
[111896] = { duration = 90, class = "WARLOCK" }, -- Grimoire: Succubus
[119910] = { default = true, duration = 24, class = "WARLOCK" }, -- Spell Lock (Command Demon)
[19647] = { parent = 119910 }, -- Spell Lock (Felhunter)
[119911] = { parent = 119910 }, -- Optical Blast (Command Demon)
[115781] = { parent = 119910 }, -- Optical Blast (Observer)
[132409] = { parent = 119910 }, -- Spell Lock (Grimoire of Sacrifice)
[171138] = { parent = 119910 }, -- Shadow Lock (Doomguard)
[171139] = { parent = 119910 }, -- Shadow Lock (Grimoire of Sacrifice)
[171140] = { parent = 119910 }, -- Shadow Lock (Command Demon)
[171152] = { duration = 60, class = "WARLOCK" }, -- Meteor Strike
[196098] = { duration = 120, class = "WARLOCK" }, -- Soul Harvest
[199890] = { duration = 15, class = "WARLOCK" }, -- Curse of Tongues
[199892] = { duration = 20, class = "WARLOCK" }, -- Curse of Weakness
[199954] = { duration = 45, class = "WARLOCK" }, -- Curse of Fragility
[212295] = { duration = 45, class = "WARLOCK" }, -- Nether Ward
[221703] = { duration = 30, class = "WARLOCK" }, -- Casting Circle
-- Affliction
[5484] = { duration = 40, class = "WARLOCK", specID = { 265 } }, -- Howl of Terror
[48181] = { duration = 15, class = "WARLOCK", specID = { 265 } }, -- Haunt
[86121] = { duration = 20, class = "WARLOCK", specID = { 265 } }, -- Soul Swap
[113860] = { duration = 120, class = "WARLOCK", specID = { 265 } }, -- Dark Soul: Misery
[205179] = { duration = 45, class = "WARLOCK", specID = { 265 } }, -- Phantom Singularity
[205180] = { duration = 180, class = "WARLOCK", specID = { 265 } }, -- Summon Darkglare
-- Demonology
[89751] = { duration = 45, class = "WARLOCK", specID = { 266 } }, -- Felstorm
[115831] = { parent = 89751 }, -- Wrathstorm
[89766] = { duration = 30, class = "WARLOCK", specID = { 266 } }, -- Axe Toss
[201996] = { duration = 90, class = "WARLOCK", specID = { 266 } }, -- Call Observer
[265187] = { duration = 90, class = "WARLOCK", specID = { 266 } }, -- Summon Demonic Tyrant
[205181] = { duration = 14, class = "WARLOCK", specID = { 266 }, charges = 2 }, -- Shadowflame
[211714] = { duration = 45, class = "WARLOCK", specID = { 266 } }, -- Thal'kiel's Consumption
[212459] = { duration = 90, class = "WARLOCK", specID = { 266 } }, -- Call Fel Lord
[212619] = { duration = 24, class = "WARLOCK", specID = { 266 } }, -- Call Felhunter
[212623] = { duration = 15, class = "WARLOCK", specID = { 266 } }, -- Singe Magic
-- Destruction
[17962] = { duration = 12, class = "WARLOCK", specID = { 267 }, charges = 2 }, -- Conflagrate
[80240] = { duration = 30, class = "WARLOCK", specID = { 267 } }, -- Havoc
[113858] = { duration = 120, class = "WARLOCK", specID = { 267 } }, -- Dark Soul: Instability
[152108] = { duration = 45, class = "WARLOCK", specID = { 267 } }, -- Cataclysm
[196447] = { duration = 15, class = "WARLOCK", specID = { 267 } }, -- Channel Demonfire
[196586] = { duration = 45, class = "WARLOCK", specID = { 267 }, charges = 3 }, -- Dimensional Rift
[212284] = { duration = 45, class = "WARLOCK", specID = { 267 } }, -- Firestone
-- Shaman
[204361] = { duration = 60, class = "SHAMAN" }, -- Bloodlust
[204362] = { parent = 204361 }, -- Heroism
[20608] = { duration = 1800, class = "SHAMAN" }, -- Reincarnation
[51485] = { duration = 30, class = "SHAMAN" }, -- Earthgrab Totem
[51514] = { duration = { default = 30, [264] = 10 }, class = "SHAMAN" }, -- Hex
[196932] = { parent = 51514 }, -- Voodoo Totem
[210873] = { parent = 51514 }, -- Hex (Compy)
[211004] = { parent = 51514 }, -- Hex (Spider)
[211010] = { parent = 51514 }, -- Hex (Snake)
[211015] = { parent = 51514 }, -- Hex (Cockroach)
[269352] = { parent = 51514 }, -- Hex (Skeletal Hatchling)
[277778] = { parent = 51514 }, -- Hex (Zandalari Tendonripper)
[277784] = { parent = 51514 }, -- Hex (Wicker Mongrel)
[309328] = { parent = 51514 }, -- Hex (Living Honey)
[57994] = { default = true, duration = 12, class = "SHAMAN" }, -- Wind Shear
[108271] = { duration = 90, class = "SHAMAN" }, -- Astral Shift
[210918] = { parent = 108271, duration = 45 }, -- Ethereal Form
[114049] = { duration = 180, class = "SHAMAN" }, -- Ascendance
[114050] = { parent = 114049 }, -- Ascendance (Elemental)
[114051] = { parent = 114049 }, -- Ascendance (Enhancement)
[114052] = { parent = 114049 }, -- Ascendance (Restoration)
[192058] = { duration = 60, class = "SHAMAN" }, -- Capacitor
[192077] = { duration = 120, class = "SHAMAN" }, -- Wind Rush Totem
[204330] = { duration = 45, class = "SHAMAN" }, -- Skyfury Totem
[204331] = { duration = 45, class = "SHAMAN" }, -- Counterstrike Totem
[204332] = { duration = 30, class = "SHAMAN" }, -- Windfury Totem
[8143] = { duration = 60, class = "SHAMAN" }, -- Tremor Totem
-- Elemental
[16166] = { duration = 120, class = "SHAMAN", specID = { 262 } }, -- Elemental Mastery
[51490] = { duration = 45, class = "SHAMAN", specID = { 262 } }, -- Thunderstorm
[108281] = { duration = 120, class = "SHAMAN", specID = { 262, 264 } }, -- Ancestral Guidance
[192063] = { duration = 15, class = "SHAMAN", specID = { 262, 264 } }, -- Gust of Wind
[192222] = { duration = 60, class = "SHAMAN", specID = { 262 } }, -- Liquid Magma Totem
[198067] = { duration = 150, class = "SHAMAN", specID = { 262 } }, -- Fire Elemental
[192249] = { parent = 198067 }, -- Storm Elemental
[198103] = { duration = 120, class = "SHAMAN", specID = { 262 } }, -- Earth Elemental
[305485] = { duration = 30, class = "SHAMAN", specID = { 262 } }, -- Lightning Lasso
[191634] = { duration = 60, class = "SHAMAN", specID = { 262 } }, -- Stormkeeper
[326059] = { duration = 45, class = "SHAMAN", specID = { 262 } }, -- Primordial Wave
-- Enhancement
[58875] = { duration = 60, class = "SHAMAN", specID = { 263 } }, -- Spirit Walk
[196884] = { duration = 30, class = "SHAMAN", specID = { 263 } }, -- Feral Lunge
[197214] = { duration = 40, class = "SHAMAN", specID = { 263 } }, -- Sundering
[201898] = { duration = 45, class = "SHAMAN", specID = { 263 } }, -- Windsong
[204366] = { duration = 45, class = "SHAMAN", specID = { 263 } }, -- Thundercharge
[335903] = { duration = 60, class = "SHAMAN", specID = { 263 } }, -- Doom Winds
[320674] = { duration = 90, class = "SHAMAN", specID = { 263 } }, -- Chain Harvest
-- Restoration
[5394] = { duration = 30, class = "SHAMAN", specID = { 264 }, charges = 30 }, -- Healing Stream Totem
[79206] = { duration = 60, class = "SHAMAN", specID = { 264 } }, -- Spiritwalker's Grace
[98008] = { duration = 180, class = "SHAMAN", specID = { 264 } }, -- Spirit Link Totem
[204293] = { parent = 98008, duration = 60 }, -- Spirit Link
[108280] = { duration = 180, class = "SHAMAN", specID = { 264 } }, -- Healing Tide Totem
[157153] = { duration = 30, class = "SHAMAN", specID = { 264 } }, -- Cloudburst Totem
[198838] = { duration = 60, class = "SHAMAN", specID = { 264 } }, -- Earthen Wall Totem
[204336] = { duration = 30, class = "SHAMAN", specID = { 264 } }, -- Grounding Totem
[207399] = { duration = 300, class = "SHAMAN", specID = { 264 } }, -- Ancestral Protection Totem
[207778] = { duration = 45, class = "SHAMAN", specID = { 264 } }, -- Gift of the Queen
[77130] = { duration = 8, class = "SHAMAN", specID = { 264 } }, -- Purify Spirit
-- Hunter
[136] = { duration = 10, class = "HUNTER" }, -- Mend Pet
[1543] = { duration = 20, class = "HUNTER" }, -- Flare
[5384] = { duration = 30, class = "HUNTER" }, -- Feign Death
[53480] = { duration = 60, class = "HUNTER" }, -- Roar of Sacrifice
[109304] = { duration = 120, class = "HUNTER" }, -- Exhilaration (Beast Mastery, Survival)
[131894] = { duration = 60, class = "HUNTER" }, -- A Murder of Crows (Beast Mastery, Marksmanship)
[206505] = { parent = 131894 }, -- A Murder of Crows (Survival)
[186257] = { duration = { default = 180, [253] = 120, [255] = 144 }, class = "HUNTER" }, -- Aspect of the Cheetah
[186265] = { duration = { default = 180, [255] = 144 }, class = "HUNTER" }, -- Aspect of the Turtle
[187650] = { duration = 25, class = "HUNTER" }, -- Freezing Trap
[202914] = { duration = 60, class = "HUNTER" }, -- Spider Sting
[209997] = { duration = 30, class = "HUNTER" }, -- Play Dead
-- Beast Mastery
[781] = { duration = 20, class = "HUNTER", specID = { 253, 254 } }, -- Disengage
[19386] = { duration = 45, class = "HUNTER", specID = { 253, 254 } }, -- Wyvern Sting
[19574] = { duration = 75, class = "HUNTER", specID = { 253 } }, -- Bestial Wrath
[19577] = { duration = 60, class = "HUNTER", specID = { 253 } }, -- Intimidation
[109248] = { duration = 45, class = "HUNTER", specID = { 253, 254 } }, -- Binding Shot
[147362] = { default = true, duration = 24, class = "HUNTER", specID = { 253, 254 } }, -- Counter Shot
[193530] = { duration = 120, class = "HUNTER", specID = { 253 } }, -- Aspect of the Wild
[194386] = { duration = 90, class = "HUNTER", specID = { 253, 254 } }, -- Volley
[201430] = { duration = 180, class = "HUNTER", specID = { 253 } }, -- Stampede
[207068] = { duration = 60, class = "HUNTER", specID = { 253 } }, -- Titan's Thunder
[208652] = { duration = 30, class = "HUNTER", specID = { 253 } }, -- Dire Beast: Hawk
-- Marksmanship
[34477] = { duration = 30, class = "HUNTER", specID = { 254 } }, -- Misdirection
[186387] = { duration = 20, class = "HUNTER", specID = { 254 } }, -- Bursting Shot
[199483] = { duration = 60, class = "HUNTER", specID = { 254, 255 } }, -- Camouflage
[204147] = { duration = 20, class = "HUNTER", specID = { 254 } }, -- Windburst
[206817] = { duration = 30, class = "HUNTER", specID = { 254 } }, -- Sentinel
[209789] = { duration = 30, class = "HUNTER", specID = { 254 } }, -- Freezing Arrow
[213691] = { duration = 20, class = "HUNTER", specID = { 254 } }, -- Scatter Shot
-- Survival
[53271] = { duration = 45, class = "HUNTER", specID = { 255 } }, -- Master's Call
[186289] = { duration = 96, class = "HUNTER", specID = { 255 } }, -- Aspect of the Eagle
[187698] = { duration = 20, class = "HUNTER", specID = { 255 } }, -- Tar Trap
[187707] = { default = true, duration = 15, class = "HUNTER", specID = { 255 } }, -- Muzzle
[190925] = { duration = 20, class = "HUNTER", specID = { 255 } }, -- Harpoon
[191241] = { duration = 30, class = "HUNTER", specID = { 255 } }, -- Sticky Bomb
[191433] = { duration = 20, class = "HUNTER", specID = { 255 } }, -- Explosive Trap
[194407] = { duration = 90, class = "HUNTER", specID = { 255 } }, -- Spitting Cobra
[201078] = { duration = 90, class = "HUNTER", specID = { 255 } }, -- Snake Hunter
[203415] = { duration = 45, class = "HUNTER", specID = { 255 } }, -- Fury of the Eagle
[205691] = { duration = 120, class = "HUNTER", specID = { 255 } }, -- Dire Beast: Basilisk
[212640] = { duration = 25, class = "HUNTER", specID = { 255 } }, -- Mending Bandage
[266779] = { duration = 20, class = "HUNTER", specID = { 255 } }, -- Coordinated Assault
-- Mage
[66] = { duration = 300, class = "MAGE" }, -- Invisibility
[110959] = { parent = 66, duration = 75 }, -- Greater Invisibility
[1953] = { duration = 15, class = "MAGE"}, -- Blink
[212653] = { parent = 1953, duration = 20, charges = 2 }, -- Shimmer
[2139] = { default = true, duration = 24, class = "MAGE" }, -- Counterspell
[11426] = { duration = 25, class = "MAGE" }, -- Ice Barrier
[45438] = { duration = 300, class = "MAGE", charges = 2 }, -- Ice Block
[55342] = { duration = 120, class = "MAGE" }, -- Mirror Image
[80353] = { duration = 300, class = "MAGE" }, -- Time Warp
[108839] = { duration = 20, class = "MAGE", charges = 3 }, -- Ice Floes
[113724] = { duration = 45, class = "MAGE" }, -- Ring of Frost
[116011] = { duration = 40, class = "MAGE", charges = 2 }, -- Rune of Power
[198111] = { duration = 45, class = "MAGE" }, -- Temporal Shield
-- Arcane
[12042] = { duration = 90, class = "MAGE", specID = { 62 } }, -- Arcane Power
[12051] = { duration = 90, class = "MAGE", specID = { 62 } }, -- Evocation
[153626] = { duration = 20, class = "MAGE", specID = { 62 } }, -- Arcane Orb
[157980] = { duration = 25, class = "MAGE", specID = { 62 } }, -- Supernova
[195676] = { duration = 24, class = "MAGE", specID = { 62 } }, -- Displacement
[198158] = { duration = 60, class = "MAGE", specID = { 62 } }, -- Mass Invisibility
[205025] = { duration = 60, class = "MAGE", specID = { 62 } }, -- Presence of Mind
[224968] = { duration = 60, class = "MAGE", specID = { 62 } }, -- Mark of Aluneth
[30449] = { duration = 30, class = "MAGE", specID = { 62 } }, -- Spellsteal (Kleptomania)
-- Fire
[31661] = { duration = 20, class = "MAGE", specID = { 63 } }, -- Dragon's Breath
[108853] = { duration = 12, class = "MAGE", specID = { 63 }, charges = 2 }, -- Fire Blast
[153561] = { duration = 45, class = "MAGE", specID = { 63 } }, -- Meteor
[157981] = { duration = 25, class = "MAGE", specID = { 63 } }, -- Blast Wave
[190319] = { duration = 120, class = "MAGE", specID = { 63 } }, -- Combustion
[194466] = { duration = 45, class = "MAGE", specID = { 63 }, charges = 3 }, -- Phoenix's Flames
[205029] = { duration = 45, class = "MAGE", specID = { 63 } }, -- Flame On
-- Frost
[122] = { duration = 30, class = "MAGE", specID = { 64 }, charges = 2 }, -- Frost Nova
[12472] = { duration = 180, class = "MAGE", specID = { 64 } }, -- Icy Veins
[198144] = { parent = 12472, duration = 45 }, -- Ice Form
[31687] = { duration = 60, class = "MAGE", specID = { 64 } }, -- Summon Water Elemental
[84714] = { duration = 60, class = "MAGE", specID = { 64 } }, -- Frozen Orb
[153595] = { duration = 30, class = "MAGE", specID = { 64 } }, -- Comet Storm
[157997] = { duration = 25, class = "MAGE", specID = { 64 } }, -- Ice Nova
[205021] = { duration = 75, class = "MAGE", specID = { 64 } }, -- Ray of Frost
[214634] = { duration = 45, class = "MAGE", specID = { 64 } }, -- Ebonbolt
-- Rogue
[1725] = { duration = 30, class = "ROGUE" }, -- Distract
[1766] = { default = true, duration = 15, class = "ROGUE" }, -- Kick
[1856] = { duration = { default = 120, [261] = 30 }, class = "ROGUE" }, -- Vanish
[2983] = { duration = { default = 60, [259] = 51 }, class = "ROGUE" }, -- Sprint
[31224] = { duration = { default = 90, [259] = 81 }, class = "ROGUE" }, -- Cloak of Shadows
[57934] = { duration = 30, class = "ROGUE" }, -- Tricks of the Trade
[137619] = { duration = 40, class = "ROGUE" }, -- Marked for Death
[152150] = { duration = 20, class = "ROGUE" }, -- Death from Above
-- Assassination
[408] = { duration = 20, class = "ROGUE", specID = { 259, 261 } }, -- Kidney Shot
[703] = { duration = 6, class = "ROGUE", specID = { 259 } }, -- Garrote
[5277] = { duration = 120, class = "ROGUE", specID = { 259, 261 } }, -- Evasion
[36554] = { duration = 30, class = "ROGUE", specID = { 259, 261 } }, -- Shadowstep
[79140] = { duration = 120, class = "ROGUE", specID = { 259 } }, -- Vendetta
[192759] = { duration = 45, class = "ROGUE", specID = { 259 } }, -- Kingsbane
[200806] = { duration = 45, class = "ROGUE", specID = { 259 } }, -- Exsanguinate
[206328] = { duration = 25, class = "ROGUE", specID = { 259 } }, -- Shiv
-- Outlaw
[1776] = { duration = 15, class = "ROGUE", specID = { 260 } }, -- Gouge
[2094] = { duration = 120, class = "ROGUE", specID = { 260, 261 } }, -- Blind
[199743] = { parent = 2094, duration = 20 }, -- Parley
[13750] = { duration = 150, class = "ROGUE", specID = { 260 } }, -- Adrenaline Rush
[51690] = { duration = 120, class = "ROGUE", specID = { 260 } }, -- Killing Spree
[195457] = { duration = 30, class = "ROGUE", specID = { 260 } }, -- Grappling Hook
[198529] = { duration = 120, class = "ROGUE", specID = { 260 } }, -- Plunder Armor
[199754] = { duration = 120, class = "ROGUE", specID = { 260 } }, -- Riposte
[199804] = { duration = 30, class = "ROGUE", specID = { 260 } }, -- Between the Eyes
[202665] = { duration = 90, class = "ROGUE", specID = { 260 } }, -- Curse of the Dreadblades
[207777] = { duration = 45, class = "ROGUE", specID = { 260 } }, -- Dismantle
-- Subtlety
[121471] = { duration = 180, class = "ROGUE", specID = { 261 } }, -- Shadow Blades
[185313] = { duration = 60, class = "ROGUE", specID = { 261 }, charges = 3 }, -- Shadow Dance
[207736] = { duration = 120, class = "ROGUE", specID = { 261 } }, -- Shadowy Duel
[209782] = { duration = 60, class = "ROGUE", specID = { 261 } }, -- Goremaw's Bite
[212182] = { duration = 180, class = "ROGUE", specID = { 261 } }, -- Smoke Bomb
[213981] = { duration = 45, class = "ROGUE", specID = { 261 } }, -- Cold Blood
-- Monk
[109132] = { duration = 15, class = "MONK", charges = 3 }, -- Roll
[115008] = { parent = 109132 }, -- Chi Torpedo
[115078] = { duration = 45, class = "MONK" }, -- Paralysis
[116841] = { duration = 30, class = "MONK" }, -- Tiger's Lust
[116844] = { duration = 45, class = "MONK" }, -- Ring of Peace
[119381] = { duration = 60, class = "MONK" }, -- Leg Sweep
[119996] = { duration = 45, class = "MONK" }, -- Transcendence: Transfer
[122278] = { duration = 120, class = "MONK" }, -- Dampen Harm
[122783] = { duration = 120, class = "MONK" }, -- Diffuse Magic
[123986] = { duration = 30, class = "MONK" }, -- Chi Burst
[310454] = { duration = 120, class = "MONK" }, -- Weapons of Order
[325216] = { duration = 60, class = "MONK" }, -- Bonedust Brew
-- Brewmaster
[115203] = { duration = 105, class = "MONK", specID = { 268 } }, -- Fortifying Brew
[115399] = { duration = 90, class = "MONK", specID = { 268 } }, -- Black Ox Brew
[116705] = { default = true, duration = 15, class = "MONK", specID = { 268, 269 } }, -- Spear Hand Strike
[132578] = { duration = 180, class = "MONK", specID = { 268 } }, -- Invoke Niuzao, the Black Ox
[202162] = { duration = 45, class = "MONK", specID = { 268 } }, -- Guard
[202272] = { duration = 45, class = "MONK", specID = { 268 } }, -- Incendiary Brew
[202370] = { duration = 60, class = "MONK", specID = { 268 } }, -- Mighty Ox Kick
-- Windwalker
[101545] = { duration = 25, class = "MONK", specID = { 269 }, charges = 2 }, -- Flying Serpent Kick
[113656] = { duration = 24, class = "MONK", specID = { 269 } }, -- Fists of Fury
[115080] = { duration = 120, class = "MONK", specID = { 269 } }, -- Touch of Death
[152173] = { parent = 137639 }, -- Serenity
[115176] = { duration = 150, class = "MONK", specID = { 269 } }, -- Zen Meditation
[201325] = { parent = 115176, 180 }, -- Zen Meditation (Windwalker)
[115288] = { duration = 60, class = "MONK", specID = { 269 } }, -- Energizing Elixir
[122470] = { duration = 90, class = "MONK", specID = { 269 } }, -- Touch of Karma
[123904] = { duration = 120, class = "MONK", specID = { 269 } }, -- Invoke Xuen, the White Tiger
[137639] = { duration = 90, class = "MONK", specID = { 269 }, charges = 2 }, -- Storm, Earth, and Fire
[152175] = { duration = 24, class = "MONK", specID = { 269 } }, -- Whirling Dragon Punch
[201318] = { duration = 90, class = "MONK", specID = { 269 } }, -- Fortifying Elixir
-- Mistweaver
[115310] = { duration = 180, class = "MONK", specID = { 270 } }, -- Revival
[116680] = { duration = 30, class = "MONK", specID = { 270 } }, -- Thunder Focus Tea
[116849] = { duration = 120, class = "MONK", specID = { 270 } }, -- Life Cocoon
[197908] = { duration = 90, class = "MONK", specID = { 270 } }, -- Mana Tea
[198898] = { duration = 30, class = "MONK", specID = { 270 } }, -- Song of Chi-Ji
[115450] = { duration = 8, class = "MONK", specID = { 270 } }, -- Detox
-- Evoker
[351338] = { default = true, duration = 40, class = "EVOKER" }, -- Quell
[363916] = { duration = 90, class = "EVOKER", charges = 2 }, -- Obsidian Scales
[355689] = { duration = 90, class = "EVOKER"}, -- Landslide
[360995] = { duration = 24, class = "EVOKER" }, -- Verdant Embrace
[374251] = { duration = 60, class = "EVOKER" }, -- Cauterizing Flame
[370553] = { duration = 120, class = "EVOKER" }, -- Tip the Scales
[360806] = { duration = 15, class = "EVOKER" }, -- Sleep Walk
[374348] = { duration = 90, class = "EVOKER" }, -- Renewing Blaze
[370665] = { duration = 60, class = "EVOKER" }, -- Rescue
[372048] = { duration = 120, class = "EVOKER" }, -- Opressing Roar
[368432] = { duration = 9, class = "EVOKER" }, -- Unravel
[374229] = { duration = 120, class = "EVOKER" }, -- Zephyr
[374968] = { duration = 120, class = "EVOKER" }, -- Time Spiral
[357210] = { duration = 120, class = "EVOKER" }, -- Deep Breath
[357208] = { duration = 30, class = "EVOKER" }, -- Fire Breath
[355913] = { duration = 30, class = "EVOKER" }, -- Emerald Blossom
[383005] = { duration = 90, class = "EVOKER" }, -- Chrono Loop
[378464] = { duration = 90, class = "EVOKER" }, -- Nullifying Shroud
[370388] = { duration = 90, class = "EVOKER" }, -- Swoop Up
-- Devastation
[365585] = { duration = 10, class = "EVOKER", specID = { 1467 } }, -- Expunge
[359073] = { duration = 30, class = "EVOKER", specID = { 1467 } }, -- Eternity Surge
[375087] = { duration = 120, class = "EVOKER", specID = { 1467 } }, -- Dragonrage
[368847] = { duration = 20, class = "EVOKER", specID = { 1467 } }, -- Firestorm
[370452] = { duration = 15, class = "EVOKER", specID = { 1467 } }, -- Shattering Star
-- Preservation
[367364] = { duration = 9, class = "EVOKER", specID = { 1468 }, charges = 2 }, -- Reversion
[363534] = { duration = 240, class = "EVOKER", specID = { 1468 } }, -- Rewind
[367226] = { duration = 30, class = "EVOKER", specID = { 1468 } }, -- Spiritbloom
[357170] = { duration = 60, class = "EVOKER", specID = { 1468 } }, -- Time Dilation
[368412] = { duration = 120, class = "EVOKER", specID = { 1468 } }, -- Time of Need
[370960] = { duration = 180, class = "EVOKER", specID = { 1468 }}, -- Emerald Communion
[370537] = { duration = 90, class = "EVOKER", specID = { 1468 } }, -- Stasis
[359816] = { duration = 120, class = "EVOKER", specID = { 1468 } }, -- Dream Flight
[360823] = { duration = 8, class = "EVOKER", specID = { 1468 } }, -- Naturalize
[378441] = { duration = 120, class = "EVOKER", specID = { 1468 } }, -- Time Stop
[377509] = { duration = 90, class = "EVOKER", specID = { 1468 } }, -- Time Stop
}