forked from jordonwow/bigdebuffs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Retail.lua
629 lines (585 loc) · 37.8 KB
/
Retail.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
local addonName, addon = ...
if WOW_PROJECT_ID ~= WOW_PROJECT_MAINLINE then return end
local BUFF_DEFENSIVE = "buffs_defensive"
local BUFF_OFFENSIVE = "buffs_offensive"
local BUFF_OTHER = "buffs_other"
local BUFF_SPEED_BOOST = "buffs_speed_boost"
local DEBUFF_OFFENSIVE = "debuffs_offensive"
local INTERRUPT = "interrupts"
local CROWD_CONTROL = "cc"
local ROOT = "roots"
local IMMUNITY = "immunities"
local IMMUNITY_SPELL = "immunities_spells"
addon.Units = {
"player",
"pet",
"target",
"focus",
"party1",
"party2",
"party3",
"party4",
"arena1",
"arena2",
"arena3",
"arena4",
"arena5",
}
-- Show one of these when a big debuff is displayed
addon.WarningDebuffs = {
212183, -- Smoke Bomb
81261, -- Solar Beam
316099, -- Unstable Affliction
342938, -- Unstable Affliction
34914, -- Vampiric Touch
323673, -- Mindgames
}
-- Make sure we always see these debuffs, but don't make them bigger
addon.PriorityDebuffs = {
316099, -- Unstable Affliction
342938, -- Unstable Affliction
34914, -- Vampiric Touch
209749, -- Faerie Swarm
117405, -- Binding Shot
122470, -- Touch of Karma
208997, -- Counterstrike Totem
343294, -- Soul Reaper (Unholy)
323673, -- Mindgames
}
addon.Spells = {
-- Interrupts
[1766] = { type = INTERRUPT, duration = 5 }, -- Kick (Rogue)
[2139] = { type = INTERRUPT, duration = 6 }, -- Counterspell (Mage)
[6552] = { type = INTERRUPT, duration = 4 }, -- Pummel (Warrior)
[19647] = { type = INTERRUPT, duration = 6 }, -- Spell Lock (Warlock)
[132409] = { type = INTERRUPT, duration = 6, parent = 19647 }, -- Spell Lock (Warlock)
[47528] = { type = INTERRUPT, duration = 3 }, -- Mind Freeze (Death Knight)
[57994] = { type = INTERRUPT, duration = 3 }, -- Wind Shear (Shaman)
[91807] = { type = INTERRUPT, duration = 2 }, -- Shambling Rush (Death Knight)
[96231] = { type = INTERRUPT, duration = 4 }, -- Rebuke (Paladin)
[93985] = { type = INTERRUPT, duration = 4 }, -- Skull Bash (Feral/Guardian)
[116705] = { type = INTERRUPT, duration = 4 }, -- Spear Hand Strike (Monk)
[147362] = { type = INTERRUPT, duration = 3 }, -- Counter Shot (Hunter)
[183752] = { type = INTERRUPT, duration = 3 }, -- Disrupt (Demon Hunter)
[187707] = { type = INTERRUPT, duration = 3 }, -- Muzzle (Hunter)
[212619] = { type = INTERRUPT, duration = 6 }, -- Call Felhunter (Warlock)
[31935] = { type = INTERRUPT, duration = 3 }, -- Avenger's Shield (Paladin)
[217824] = { type = INTERRUPT, duration = 4 }, -- Shield of Virtue (Protection PvP Talent)
-- Death Knight
[47476] = { type = CROWD_CONTROL }, -- Strangulate
[48707] = { type = IMMUNITY_SPELL }, -- Anti-Magic Shell
[145629] = { type = BUFF_DEFENSIVE }, -- Anti-Magic Zone
[48265] = { type = BUFF_SPEED_BOOST }, -- Death's Advance
[48792] = { type = BUFF_DEFENSIVE }, -- Icebound Fortitude
[49039] = { type = BUFF_OTHER }, -- Lichborne
[81256] = { type = BUFF_DEFENSIVE }, -- Dancing Rune Weapon
[51271] = { type = BUFF_OFFENSIVE }, -- Pillar of Frost
[55233] = { type = BUFF_DEFENSIVE }, -- Vampiric Blood
[77606] = { type = DEBUFF_OFFENSIVE }, -- Dark Simulacrum
[63560] = { type = BUFF_OFFENSIVE }, -- Dark Transformation
[91800] = { type = CROWD_CONTROL }, -- Gnaw
[91797] = { type = CROWD_CONTROL, parent = 91800 }, -- Monstrous Blow
[108194] = { type = CROWD_CONTROL }, -- Asphyxiate
[221562] = { type = CROWD_CONTROL, parent = 108194 }, -- Asphyxiate (Blood)
[152279] = { type = BUFF_OFFENSIVE }, -- Breath of Sindragosa
[194679] = { type = BUFF_DEFENSIVE }, -- Rune Tap
[194844] = { type = BUFF_DEFENSIVE }, -- Bonestorm
[204080] = { type = ROOT }, -- Deathchill
[233395] = { type = ROOT, parent = 204080 }, -- when applied by Remorseless Winter
[204085] = { type = ROOT, parent = 204080 }, -- when applied by Chains of Ice
[47568] = { type = BUFF_OFFENSIVE }, -- Empower Rune Weapon
[207167] = { type = CROWD_CONTROL }, -- Blinding Sleet
[287254] = { type = CROWD_CONTROL }, -- Dead of Winter
[207289] = { type = BUFF_OFFENSIVE }, -- Unholy Assault
[212552] = { type = BUFF_SPEED_BOOST }, -- Wraith Walk
[219809] = { type = BUFF_DEFENSIVE }, -- Tombstone
[223929] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Necrotic Wound
[343294] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Soul Reaper
[321995] = { type = BUFF_OFFENSIVE }, -- Hypothermic Presence
[334693] = { type = CROWD_CONTROL }, -- Absolute Zero (Frost Legendary)
[206961] = { type = CROWD_CONTROL }, -- Tremble Before Me (Phearamones Legendary)
-- [91807] = { type = ROOT }, -- Shambling Rush (defined as Interrupt)
[210141] = { type = CROWD_CONTROL}, -- Zombie Explosion (Reanimation Unholy PvP Talent)
[288849] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Crypt Fever (Necromancer's Bargain Unholy PvP Talent)
[3714] = { type = BUFF_OTHER }, -- Path of Frost
[315443] = { type = BUFF_OFFENSIVE }, -- Abomination Limb (Necrolord Ability)
[311648] = { type = BUFF_OFFENSIVE }, -- Swarming Mist (Venthyr Ability)
-- Demon Hunter
[179057] = { type = CROWD_CONTROL }, -- Chaos Nova
[187827] = { type = BUFF_DEFENSIVE }, -- Metamorphosis - Vengeance
[162264] = { type = BUFF_OFFENSIVE }, -- Metamorphosis - Havoc
[188501] = { type = BUFF_OFFENSIVE }, -- Spectral Sight
[204490] = { type = CROWD_CONTROL }, -- Sigil of Silence
[205629] = { type = BUFF_DEFENSIVE }, -- Demonic Trample
[213491] = { type = CROWD_CONTROL }, -- Demonic Trample (short stun on targets)
[205630] = { type = CROWD_CONTROL }, -- Illidan's Grasp - Grab
[208618] = { type = CROWD_CONTROL, parent = 205630 }, -- Illidan's Grasp - Stun
[206649] = { type = DEBUFF_OFFENSIVE }, -- Eye of Leotheras
[206804] = { type = BUFF_OFFENSIVE }, -- Rain from Above (down)
[206803] = { type = IMMUNITY, parent = 206804 }, -- Rain from Above (up)
[207685] = { type = CROWD_CONTROL }, -- Sigil of Misery
[209426] = { type = BUFF_DEFENSIVE }, -- Darkness
[211881] = { type = CROWD_CONTROL }, -- Fel Eruption
[212800] = { type = BUFF_DEFENSIVE }, -- Blur
[196555] = { type = BUFF_DEFENSIVE }, -- Netherwalk
[217832] = { type = CROWD_CONTROL }, -- Imprison
[221527] = { type = CROWD_CONTROL, parent = 217832 }, -- Imprison (PvP Talent)
[203704] = { type = DEBUFF_OFFENSIVE }, -- Mana Break
[337567] = { type = BUFF_OFFENSIVE }, -- Chaotic Blades (Chaos Theory Legendary)
[323996] = { type = CROWD_CONTROL }, -- The Hunt (Night Fae Ability)
-- Druid
[99] = { type = CROWD_CONTROL }, -- Incapacitating Roar
[339] = { type = ROOT }, -- Entangling Roots
[170855] = { type = ROOT, parent = 339 }, -- Entangling Roots (Nature's Grasp)
[1850] = { type = BUFF_SPEED_BOOST }, -- Dash
[252216] = { type = BUFF_SPEED_BOOST, parent = 1850 }, -- Tiger Dash
[2637] = { type = CROWD_CONTROL }, -- Hibernate
[5211] = { type = CROWD_CONTROL }, -- Mighty Bash
[5217] = { type = BUFF_OFFENSIVE }, -- Tiger's Fury
[22812] = { type = BUFF_DEFENSIVE }, -- Barkskin
[22842] = { type = BUFF_DEFENSIVE }, -- Frenzied Regeneration
[29166] = { type = BUFF_OFFENSIVE }, -- Innervate
[33786] = { type = CROWD_CONTROL }, -- Cyclone
[33891] = { type = BUFF_OFFENSIVE }, -- Incarnation: Tree of Life (for the menu entry - "Incarnation" tooltip isn't informative)
[117679] = { type = BUFF_OFFENSIVE, parent = 33891 }, -- Incarnation (grants access to Tree of Life form)
[45334] = { type = ROOT }, -- Immobilized (Wild Charge in Bear Form)
[61336] = { type = BUFF_DEFENSIVE }, -- Survival Instincts
[81261] = { type = CROWD_CONTROL }, -- Solar Beam
[102342] = { type = BUFF_DEFENSIVE }, -- Ironbark
[102359] = { type = ROOT }, -- Mass Entanglement
[102543] = { type = BUFF_OFFENSIVE }, -- Incarnation: King of the Jungle
[102558] = { type = BUFF_OFFENSIVE }, -- Incarnation: Guardian of Ursoc
[102560] = { type = BUFF_OFFENSIVE }, -- Incarnation: Chosen of Elune
[106951] = { type = BUFF_OFFENSIVE }, -- Berserk (Feral)
[132158] = { type = BUFF_OFFENSIVE }, -- Nature's Swiftness
[155835] = { type = BUFF_DEFENSIVE }, -- Bristling Fur
[163505] = { type = CROWD_CONTROL }, -- Rake
[194223] = { type = BUFF_OFFENSIVE }, -- Celestial Alignment
[202425] = { type = BUFF_OFFENSIVE }, -- Warrior of Elune
[209749] = { type = CROWD_CONTROL }, -- Faerie Swarm
[203123] = { type = CROWD_CONTROL }, -- Maim
[305497] = { type = BUFF_DEFENSIVE }, -- Thorns (PvP Talent)
[50334] = { type = BUFF_DEFENSIVE }, -- Berserk (Guardian)
[127797] = { type = CROWD_CONTROL, nounitFrames = true, nonameplates = true }, -- Ursol's Vortex
[202244] = { type = CROWD_CONTROL }, -- Overrun (Guardian PvP Talent)
[247563] = { type = BUFF_DEFENSIVE }, -- Nature's Grasp (Resto Entangling Bark PvP Talent)
[106898] = { type = BUFF_SPEED_BOOST }, -- Stampeding Roar (from Human Form)
[77764] = { type = BUFF_SPEED_BOOST, parent = 106898 }, -- from Cat Form
[77761] = { type = BUFF_SPEED_BOOST, parent = 106898 }, -- from Bear Form
[319454] = { type = BUFF_OFFENSIVE }, -- Heart of the Wild
[108291] = { type = BUFF_OFFENSIVE, parent = 319454 }, -- with Balance Affinity
[108292] = { type = BUFF_OFFENSIVE, parent = 319454 }, -- with Feral Affinity
[108293] = { type = BUFF_OFFENSIVE, parent = 319454 }, -- with Guardian Affinity
[108294] = { type = BUFF_OFFENSIVE, parent = 319454 }, -- with Resto Affinity
[5215] = { type = BUFF_OTHER }, -- Prowl
[323764] = { type = BUFF_OFFENSIVE }, -- Convoke the Spirits (Night Fae Ability)
[323546] = { type = BUFF_OFFENSIVE }, -- Ravenous Frenzy (Venthyr Ability)
[338142] = { type = BUFF_OFFENSIVE }, -- Lone Empowerment (Kyrian Ability)
[327037] = { type = BUFF_DEFENSIVE }, -- Kindred Protection (Kyrian Ability)
[362486] = { type = IMMUNITY }, -- Keeper of the Grove
-- Hunter
[136] = { type = BUFF_DEFENSIVE }, -- Mend Pet
[1513] = { type = CROWD_CONTROL }, -- Scare Beast
[3355] = { type = CROWD_CONTROL }, -- Freezing Trap
[203337] = { type = CROWD_CONTROL, parent = 3355 }, -- Diamond Ice (Survival PvP Talent)
[5384] = { type = BUFF_DEFENSIVE }, -- Feign Death
[19574] = { type = BUFF_OFFENSIVE }, -- Bestial Wrath
[186254] = { type = BUFF_OFFENSIVE, parent = 19574 }, -- Bestial Wrath buff on the pet
[24394] = { type = CROWD_CONTROL }, -- Intimidation
[53480] = { type = BUFF_DEFENSIVE }, -- Roar of Sacrifice (PvP Talent)
[54216] = { type = BUFF_DEFENSIVE }, -- Master's Call
[117526] = { type = ROOT }, -- Binding Shot
[117405] = { type = ROOT, nounitFrames = true, nonameplates = true }, -- Binding Shot - aura when you're in the area
[118922] = { type = BUFF_SPEED_BOOST }, -- Posthaste
[131894] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- A Murder of Crows
[162480] = { type = ROOT }, -- Steel Trap
[186257] = { type = BUFF_SPEED_BOOST }, -- Aspect of the Cheetah
[203233] = { type = BUFF_SPEED_BOOST, parent = 186257 }, -- Hunting Pack (PvP Talent)
[186265] = { type = IMMUNITY }, -- Aspect of the Turtle
[186289] = { type = BUFF_OFFENSIVE }, -- Aspect of the Eagle
[193530] = { type = BUFF_OFFENSIVE }, -- Aspect of the Wild
[199483] = { type = BUFF_OTHER }, -- Camouflage
[202914] = { type = CROWD_CONTROL }, -- Spider Sting (Armed)
[202933] = { type = CROWD_CONTROL, parent = 202914 }, -- Spider Sting (Silenced)
[209997] = { type = BUFF_DEFENSIVE }, -- Play Dead
[212638] = { type = ROOT }, -- Tracker's Net
[213691] = { type = CROWD_CONTROL }, -- Scatter Shot
[357021] = { type = CROWD_CONTROL }, -- Consecutive Concussion
[260402] = { type = BUFF_OFFENSIVE }, -- Double Tap
[266779] = { type = BUFF_OFFENSIVE }, -- Coordinated Assault
[288613] = { type = BUFF_OFFENSIVE }, -- Trueshot
[190925] = { type = ROOT }, -- Harpoon
[202748] = { type = BUFF_DEFENSIVE }, -- Survival Tactics (PvP Talent)
[248519] = { type = IMMUNITY_SPELL }, -- Interlope (BM PvP Talent)
[356727] = { type = CROWD_CONTROL }, -- Spider Venom of Chimaeral Sting (Hunter PvP Talent)
-- Mage
[66] = { type = BUFF_OFFENSIVE }, -- Invisibility (Countdown)
[32612] = { type = BUFF_OFFENSIVE, parent = 66 }, -- Invisibility
[113862] = { type = BUFF_OFFENSIVE, parent = 66 }, -- Greater Invisibility
[118] = { type = CROWD_CONTROL }, -- Polymorph
[28271] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Turtle
[28272] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Pig
[61025] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Serpent
[61305] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Black Cat
[61721] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Rabbit
[61780] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Turkey
[126819] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Porcupine
[161353] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Polar Bear Cub
[161354] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Monkey
[161355] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Penguin
[161372] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Peacock
[277787] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Direhorn
[277792] = { type = CROWD_CONTROL, parent = 118 }, -- Polymorph Bumblebee
[122] = { type = ROOT }, -- Frost Nova
[33395] = { type = ROOT }, -- Freeze
[12042] = { type = BUFF_OFFENSIVE }, -- Arcane Power
[12051] = { type = BUFF_OFFENSIVE }, -- Evocation
[12472] = { type = BUFF_OFFENSIVE }, -- Icy Veins
[198144] = { type = BUFF_OFFENSIVE }, -- Ice Form
[31661] = { type = CROWD_CONTROL }, -- Dragon's Breath
[45438] = { type = IMMUNITY }, -- Ice Block
[41425] = { type = BUFF_OTHER }, -- Hypothermia
[342242] = { type = BUFF_OFFENSIVE }, -- Time Warp procced by Time Anomality (Arcane Talent)
[82691] = { type = CROWD_CONTROL }, -- Ring of Frost
[87023] = { type = BUFF_OTHER }, -- Cauterize
[108839] = { type = BUFF_OTHER }, -- Ice Floes
[342246] = { type = BUFF_DEFENSIVE }, -- Alter Time (Arcane)
[110909] = { type = BUFF_DEFENSIVE, parent = 342246 }, -- Alter Time (Fire/Frost)
[157997] = { type = ROOT }, -- Ice Nova
[190319] = { type = BUFF_OFFENSIVE }, -- Combustion
[198111] = { type = BUFF_DEFENSIVE }, -- Temporal Shield (Arcane PvP Talent)
[198158] = { type = BUFF_OFFENSIVE }, -- Mass Invisibility (Arcane PvP Talent)
[198065] = { type = BUFF_DEFENSIVE }, -- Prismatic Cloak (PvP Talent)
[205025] = { type = BUFF_OFFENSIVE }, -- Presence of Mind
[228600] = { type = ROOT }, -- Glacial Spike Root
[317589] = { type = CROWD_CONTROL }, -- Tormenting Backlash (Venthyr Ability)
[198121] = { type = ROOT }, -- Frostbite (Frost PvP Talent)
[130] = { type = BUFF_OTHER }, -- Slow Fall
[333100] = { type = BUFF_OFFENSIVE }, -- Firestorm (Fire Legendary)
[324220] = { type = BUFF_OFFENSIVE }, -- Deathborne (Necrolord Ability)
-- Monk
[115078] = { type = CROWD_CONTROL }, -- Paralysis
[115176] = { type = BUFF_DEFENSIVE }, -- Zen Meditation
[120954] = { type = BUFF_DEFENSIVE }, -- Fortifying Brew (Brewmaster)
[243435] = { type = BUFF_DEFENSIVE, parent = 120954 }, -- Fortifying Brew (Windwalker/Mistweaver)
[116706] = { type = ROOT }, -- Disable
[116841] = { type = BUFF_SPEED_BOOST }, -- Tiger's Lust
[337294] = { type = BUFF_DEFENSIVE }, -- Roll Out (Legendary)
[116849] = { type = BUFF_DEFENSIVE }, -- Life Cocoon
[119381] = { type = CROWD_CONTROL }, -- Leg Sweep
[324382] = { type = CROWD_CONTROL }, -- Clash
[122278] = { type = BUFF_DEFENSIVE }, -- Dampen Harm
[125174] = { type = BUFF_DEFENSIVE }, -- Touch of Karma (Buff)
[122470] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Touch of Karma (Debuff)
[122783] = { type = BUFF_DEFENSIVE }, -- Diffuse Magic
[137639] = { type = BUFF_OFFENSIVE }, -- Storm, Earth, and Fire
[152173] = { type = BUFF_OFFENSIVE }, -- Serenity
[198909] = { type = CROWD_CONTROL }, -- Song of Chi-Ji
[202162] = { type = BUFF_DEFENSIVE }, -- Avert Harm (Brew PvP Talent)
[202274] = { type = CROWD_CONTROL }, -- Incendiary Brew (Brew PvP Talent)
[209584] = { type = BUFF_DEFENSIVE }, -- Zen Focus Tea (MW PvP Talent)
[233759] = { type = CROWD_CONTROL }, -- Grapple Weapon (MW/WW PvP Talent)
[343249] = { type = BUFF_DEFENSIVE }, -- Escape from Reality (MW Monk Legendary)
[310454] = { type = BUFF_OFFENSIVE }, -- Weapons of Order (Kyrian Ability)
[202335] = { type = BUFF_OFFENSIVE }, -- Double Barrel (Brew PvP Talent) - "next cast will..." buff
[202346] = { type = CROWD_CONTROL }, -- Double Barrel (Brew PvP Talent)
[202248] = { type = IMMUNITY_SPELL }, -- Guided Meditation (Brew PvP Talent)
[213664] = { type = BUFF_DEFENSIVE }, -- Nimble Brew (Brew PvP Talent)
[132578] = { type = BUFF_DEFENSIVE }, -- Invoke Niuzao, the Black Ox
[344021] = { type = DEBUFF_OFFENSIVE }, -- Keefer's Skyreach
[353319] = { type = IMMUNITY_SPELL }, -- Peaceweaver
-- Paladin
[498] = { type = BUFF_DEFENSIVE }, -- Divine Protection
[642] = { type = IMMUNITY }, -- Divine Shield
[853] = { type = CROWD_CONTROL }, -- Hammer of Justice
[1022] = { type = BUFF_DEFENSIVE }, -- Blessing of Protection
[204018] = { type = BUFF_DEFENSIVE }, -- Blessing of Spellwarding
[1044] = { type = BUFF_DEFENSIVE }, -- Blessing of Freedom
[305395] = { type = BUFF_DEFENSIVE, parent = 1044 }, -- Blessing of Freedom with Unbound Freedom (PvP Talent)
[6940] = { type = BUFF_DEFENSIVE }, -- Blessing of Sacrifice
[199448] = { type = BUFF_DEFENSIVE }, -- Blessing of Sacrifice (Ultimate Sacrifice Holy PvP Talent)
[199450] = { type = BUFF_DEFENSIVE, parent = 199448 }, -- Ultimate Sacrifice (Holy PvP Talent) - debuff on the paladin
[20066] = { type = CROWD_CONTROL }, -- Repentance
[10326] = { type = CROWD_CONTROL }, -- Turn Evil
[25771] = { type = BUFF_OTHER }, -- Forbearance
[31821] = { type = BUFF_DEFENSIVE }, -- Aura Mastery
[31850] = { type = BUFF_DEFENSIVE }, -- Ardent Defender
[31884] = { type = BUFF_OFFENSIVE }, -- Avenging Wrath
[216331] = { type = BUFF_OFFENSIVE, parent = 31884 }, -- Avenging Crusader (Holy Talent)
[231895] = { type = BUFF_OFFENSIVE, parent = 31884 }, -- Crusade (Retribution Talent)
-- [31935] = { type = CROWD_CONTROL }, -- Avenger's Shield (defined as Interrupt)
[86659] = { type = BUFF_DEFENSIVE }, -- Guardian of Ancient Kings
[212641] = { type = BUFF_DEFENSIVE, parent = 86659 }, -- Guardian of Ancient Kings (Glyphed)
[228050] = { type = IMMUNITY }, -- Guardian of the Forgotten Queen (Protection PvP Talent)
[105809] = { type = BUFF_OFFENSIVE }, -- Holy Avenger
[105421] = { type = CROWD_CONTROL }, -- Blinding Light
[152262] = { type = BUFF_OFFENSIVE }, -- Seraphim
[184662] = { type = BUFF_DEFENSIVE }, -- Shield of Vengeance
[199545] = { type = BUFF_DEFENSIVE }, -- Steed of Glory (Protection PvP Talent)
[205191] = { type = BUFF_DEFENSIVE }, -- Eye for an Eye
[210256] = { type = BUFF_DEFENSIVE }, -- Blessing of Sanctuary (Ret PvP Talent)
[210294] = { type = BUFF_DEFENSIVE }, -- Divine Favor (Holy PvP Talent)
[215652] = { type = BUFF_OFFENSIVE }, -- Shield of Virtue (Protection PvP Talent) - "next cast will..." buff
-- [217824] = { type = CROWD_CONTROL }, -- Shield of Virtue (Protection PvP Talent) (defined as Interrupt)
[221883] = { type = BUFF_SPEED_BOOST }, -- Divine Steed (Human?) (Each race has its own buff, pulled from wowhead - some might be incorrect)
[221885] = { type = BUFF_SPEED_BOOST, parent = 221883 }, -- Divine Steed (Tauren?)
[221886] = { type = BUFF_SPEED_BOOST, parent = 221883 }, -- Divine Steed (Blood Elf?)
[221887] = { type = BUFF_SPEED_BOOST, parent = 221883 }, -- Divine Steed (Lightforged Draenei)
[254471] = { type = BUFF_SPEED_BOOST, parent = 221883 }, -- Divine Steed (?)
[254472] = { type = BUFF_SPEED_BOOST, parent = 221883 }, -- Divine Steed (?)
[254473] = { type = BUFF_SPEED_BOOST, parent = 221883 }, -- Divine Steed (?)
[254474] = { type = BUFF_SPEED_BOOST, parent = 221883 }, -- Divine Steed (?)
[276111] = { type = BUFF_SPEED_BOOST, parent = 221883 }, -- Divine Steed (Dwarf?)
[276112] = { type = BUFF_SPEED_BOOST, parent = 221883 }, -- Divine Steed (Dark Iron Dwarf?)
[343721] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Final Reckoning
[255941] = { type = CROWD_CONTROL }, -- Wake of Ashes stun
[157128] = { type = BUFF_DEFENSIVE }, -- Saved by the Light
-- Priest
[337661] = { type = BUFF_DEFENSIVE }, -- Translucent Image (Fade defensive Conduit)
[213602] = { type = IMMUNITY }, -- Greater Fade (Holy/Shadow PvP Talent)
[605] = { type = CROWD_CONTROL, priority = true }, -- Mind Control
[8122] = { type = CROWD_CONTROL }, -- Psychic Scream
[9484] = { type = CROWD_CONTROL }, -- Shackle Undead
[10060] = { type = BUFF_OFFENSIVE }, -- Power Infusion
[15487] = { type = CROWD_CONTROL }, -- Silence
[33206] = { type = BUFF_DEFENSIVE }, -- Pain Suppression
[47536] = { type = BUFF_DEFENSIVE }, -- Rapture
[109964] = { type = BUFF_DEFENSIVE, parent = 47536 }, -- Spirit Shell
[47585] = { type = BUFF_DEFENSIVE }, -- Dispersion
[47788] = { type = BUFF_DEFENSIVE }, -- Guardian Spirit
[64044] = { type = CROWD_CONTROL }, -- Psychic Horror
[64843] = { type = BUFF_DEFENSIVE }, -- Divine Hymn
[81782] = { type = BUFF_DEFENSIVE }, -- Power Word: Barrier
[87204] = { type = CROWD_CONTROL }, -- Sin and Punishment
[194249] = { type = BUFF_OFFENSIVE }, -- Voidform
[232707] = { type = BUFF_DEFENSIVE }, -- Ray of Hope (Holy PvP Talent)
[197862] = { type = BUFF_DEFENSIVE }, -- Archangel (Disc PvP Talent)
[197871] = { type = BUFF_OFFENSIVE }, -- Dark Archangel (Disc PvP Talent) - on the priest
[197874] = { type = BUFF_OFFENSIVE, parent = 197871 }, -- Dark Archangel (Disc PvP Talent) - on others
[199890] = { type = ROOT }, -- Curse of Tongues
[200183] = { type = BUFF_DEFENSIVE }, -- Apotheosis
[200196] = { type = CROWD_CONTROL }, -- Holy Word: Chastise
[200200] = { type = CROWD_CONTROL, parent = 200196 }, -- Holy Word: Chastise (Stun)
[205369] = { type = CROWD_CONTROL }, -- Mind Bomb (Countdown)
[226943] = { type = CROWD_CONTROL, parent = 205369 }, -- Mind Bomb (Disorient)
[213610] = { type = BUFF_DEFENSIVE }, -- Holy Ward
--[27827] = { type = BUFF_DEFENSIVE }, -- Spirit of Redemption
[215769] = { type = BUFF_DEFENSIVE }, -- Spirit of Redemption (Spirit of the Redeemer Holy PvP Talent)
[211336] = { type = BUFF_DEFENSIVE }, -- Archbishop Benedictus' Restitution (Holy Priest Revive Legendary)
[289655] = { type = BUFF_DEFENSIVE }, -- Holy Word: Concentration
[319952] = { type = BUFF_OFFENSIVE }, -- Surrender to Madness
[322431] = { type = BUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Thoughtsteal (Buff)
[322459] = { type = DEBUFF_OFFENSIVE }, -- Thoughtstolen (Shaman)
[322464] = { type = DEBUFF_OFFENSIVE, parent = 322459 }, -- Thoughtstolen (Mage)
[322442] = { type = DEBUFF_OFFENSIVE, parent = 322459 }, -- Thoughtstolen (Druid)
[322462] = { type = DEBUFF_OFFENSIVE, parent = 322459 }, -- Thoughtstolen (Priest - Holy)
[322457] = { type = DEBUFF_OFFENSIVE, parent = 322459 }, -- Thoughtstolen (Paladin)
[322463] = { type = DEBUFF_OFFENSIVE, parent = 322459 }, -- Thoughtstolen (Warlock)
[322461] = { type = DEBUFF_OFFENSIVE, parent = 322459 }, -- Thoughtstolen (Priest - Discipline)
[322458] = { type = DEBUFF_OFFENSIVE, parent = 322459 }, -- Thoughtstolen (Monk)
[322460] = { type = DEBUFF_OFFENSIVE, parent = 322459 }, -- Thoughtstolen (Priest - Shadow)
[323673] = { type = DEBUFF_OFFENSIVE }, -- Mindgames
[329543] = { type = BUFF_DEFENSIVE }, -- Divine Ascension (down)
[328530] = { type = IMMUNITY, parent = 329543 }, -- Divine Ascension (up)
[335467] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Devouring Plague
[34914] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Vampiric Touch
[453] = { type = BUFF_OTHER, noraidFrames = true }, -- Mind Soothe
[15286] = { type = BUFF_DEFENSIVE }, -- Vampiric Embrace
[19236] = { type = BUFF_DEFENSIVE }, -- Desperate Prayer
[111759] = { type = BUFF_OTHER }, -- Levitate
[325013] = { type = BUFF_OFFENSIVE }, -- Boon of the Ascended (Kyrian)
[65081] = { type = BUFF_SPEED_BOOST }, -- Body and Soul
[121557] = { type = BUFF_SPEED_BOOST }, -- Angelic Feather
[199845] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Psyflay (Psyfiend) debuff
-- Rogue
[408] = { type = CROWD_CONTROL }, -- Kidney Shot
[1330] = { type = CROWD_CONTROL }, -- Garrote - Silence
[1776] = { type = CROWD_CONTROL }, -- Gouge
[1833] = { type = CROWD_CONTROL }, -- Cheap Shot
[1966] = { type = BUFF_DEFENSIVE }, -- Feint
[2094] = { type = CROWD_CONTROL }, -- Blind
[2983] = { type = BUFF_SPEED_BOOST }, -- Sprint
[36554] = { type = BUFF_SPEED_BOOST }, -- Shadowstep
[5277] = { type = BUFF_DEFENSIVE }, -- Evasion
[6770] = { type = CROWD_CONTROL }, -- Sap
[11327] = { type = BUFF_DEFENSIVE }, -- Vanish
[13750] = { type = BUFF_OFFENSIVE }, -- Adrenaline Rush
[31224] = { type = IMMUNITY_SPELL }, -- Cloak of Shadows
[45182] = { type = BUFF_DEFENSIVE }, -- Cheating Death
[51690] = { type = BUFF_OFFENSIVE }, -- Killing Spree
[79140] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Vendetta
[121471] = { type = BUFF_OFFENSIVE }, -- Shadow Blades
[185422] = { type = BUFF_OFFENSIVE }, -- Shadow Dance
[207736] = { type = BUFF_OFFENSIVE }, -- Shadowy Duel
[212283] = { type = BUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Symbols of Death
[207777] = { type = CROWD_CONTROL }, -- Dismantle
[212183] = { type = CROWD_CONTROL }, -- Smoke Bomb (PvP Talent)
[212150] = { type = CROWD_CONTROL }, -- Cheap Tricks (Outlaw PvP Talent)
[199027] = { type = BUFF_DEFENSIVE }, -- Veil of Midnight (Subtlety PvP Talent)
[197003] = { type = BUFF_DEFENSIVE }, -- Maneuverability (PvP Talent)
[1784] = { type = BUFF_OTHER }, -- Stealth
[115191] = { type = BUFF_OTHER, parent = 1784 }, -- Stealth (with Subterfuge talented)
[115192] = { type = BUFF_OFFENSIVE }, -- Subterfuge
[256735] = { type = BUFF_OFFENSIVE }, -- Master Assassin
[340094] = { type = BUFF_OFFENSIVE }, -- Master Assassin's Mark (Legendary)
[345569] = { type = BUFF_OFFENSIVE }, -- Flagellation (Venthyr Ability)
[347037] = { type = BUFF_OFFENSIVE }, -- Sepsis (Night Fae Ability)
-- Shaman
[2645] = { type = BUFF_SPEED_BOOST, nounitFrames = true, nonameplates = true }, -- Ghost Wolf
[8178] = { type = IMMUNITY_SPELL }, -- Grounding Totem Effect (PvP Talent)
[208997] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Counterstrike Totem (PvP Talent)
[51514] = { type = CROWD_CONTROL }, -- Hex
[210873] = { type = CROWD_CONTROL, parent = 51514 }, -- Hex (Compy)
[211004] = { type = CROWD_CONTROL, parent = 51514 }, -- Hex (Spider)
[211010] = { type = CROWD_CONTROL, parent = 51514 }, -- Hex (Snake)
[211015] = { type = CROWD_CONTROL, parent = 51514 }, -- Hex (Cockroach)
[269352] = { type = CROWD_CONTROL, parent = 51514 }, -- Hex (Skeletal Hatchling)
[277778] = { type = CROWD_CONTROL, parent = 51514 }, -- Hex (Zandalari Tendonripper)
[277784] = { type = CROWD_CONTROL, parent = 51514 }, -- Hex (Wicker Mongrel)
[309328] = { type = CROWD_CONTROL, parent = 51514 }, -- Hex (Living Honey)
[58875] = { type = BUFF_SPEED_BOOST }, -- Spirit Walk
[79206] = { type = BUFF_OTHER }, -- Spiritwalker's Grace
[108281] = { type = BUFF_DEFENSIVE }, -- Ancestral Guidance
[64695] = { type = ROOT }, -- Earthgrab Totem
[77505] = { type = CROWD_CONTROL }, -- Earthquake (Stun)
[325174] = { type = BUFF_DEFENSIVE }, -- Spirit Link Totem
[204293] = { type = BUFF_DEFENSIVE, parent = 325174 }, -- Spirit Link (PvP Talent)
[108271] = { type = BUFF_DEFENSIVE }, -- Astral Shift
[210918] = { type = BUFF_DEFENSIVE, parent = 108271 }, -- Ethereal Form (Enhancement PvP Talent)
[114049] = { type = BUFF_OFFENSIVE }, -- Ascendance
[114050] = { type = BUFF_OFFENSIVE, parent = 114049 }, -- Ascendance (Elemental)
[114051] = { type = BUFF_OFFENSIVE, parent = 114049 }, -- Ascendance (Enhancement)
[114052] = { type = BUFF_DEFENSIVE, parent = 114049 }, -- Ascendance (Restoration)
[118345] = { type = CROWD_CONTROL }, -- Pulverize
[118337] = { type = BUFF_DEFENSIVE }, -- Harden Skin
[118905] = { type = CROWD_CONTROL }, -- Static Charge
[191634] = { type = BUFF_OFFENSIVE }, -- Stormkeeper (Ele)
[320137] = { type = BUFF_OFFENSIVE }, -- Stormkeeper (Enh)
[197214] = { type = CROWD_CONTROL }, -- Sundering
[201633] = { type = BUFF_DEFENSIVE }, -- Earthen Wall Totem
[204366] = { type = BUFF_OFFENSIVE }, -- Thundercharge (Enhancement PvP Talent)
[335903] = { type = BUFF_OFFENSIVE }, -- Doom Winds
[260881] = { type = BUFF_DEFENSIVE }, -- Spirit Wolf
[290641] = { type = BUFF_DEFENSIVE }, -- Ancestral Gift
[305485] = { type = CROWD_CONTROL }, -- Lightning Lasso (PvP Talent)
[305484] = { type = CROWD_CONTROL, parent = 305485 }, -- Lightning Lasso on stun-immune NPCs (PvP Talent)
[320125] = { type = BUFF_OFFENSIVE }, -- Echoing Shock
[546] = { type = BUFF_OTHER }, -- Water Walking
[333957] = { type = BUFF_OFFENSIVE }, -- Feral Spirit
[204361] = { type = BUFF_OFFENSIVE }, -- Bloodlust (Enhancement PvP Talent)
[204362] = { type = BUFF_OFFENSIVE, parent = 204361 }, -- Heroism (Enhancement PvP Talent)
[192082] = { type = BUFF_SPEED_BOOST }, -- Windrush Totem
[338036] = { type = BUFF_SPEED_BOOST }, -- Thunderous Paws (Conduit)
[327164] = { type = BUFF_OFFENSIVE }, -- Primordial Wave (Necrolord Ability)
[207495] = { type = BUFF_DEFENSIVE }, -- Ancestral Protection (Totem)
[207498] = { type = BUFF_DEFENSIVE, parent = 207495 }, -- Ancestral Protection (Player)
-- Warlock
[710] = { type = CROWD_CONTROL }, -- Banish
[5484] = { type = CROWD_CONTROL }, -- Howl of Terror
[6358] = { type = CROWD_CONTROL }, -- Seduction
[6789] = { type = CROWD_CONTROL }, -- Mortal Coil
[20707] = { type = BUFF_OTHER }, -- Soulstone
[22703] = { type = CROWD_CONTROL }, -- Infernal Awakening
[30283] = { type = CROWD_CONTROL }, -- Shadowfury
[89766] = { type = CROWD_CONTROL }, -- Axe Toss
[104773] = { type = BUFF_DEFENSIVE }, -- Unending Resolve
[108416] = { type = BUFF_DEFENSIVE }, -- Dark Pact
[111400] = { type = BUFF_SPEED_BOOST }, -- Burning Rush
[113860] = { type = BUFF_OFFENSIVE }, -- Dark Soul: Misery (Affliction)
[113858] = { type = BUFF_OFFENSIVE }, -- Dark Soul: Instability (Destruction)
[265273] = { type = BUFF_OFFENSIVE }, -- Demonic Power (Demonic Tyrant)
[118699] = { type = CROWD_CONTROL }, -- Fear
[196364] = { type = CROWD_CONTROL }, -- Unstable Affliction (Silence)
[212295] = { type = IMMUNITY_SPELL }, -- Nether Ward (PvP Talent)
[1098] = { type = CROWD_CONTROL }, -- Subjugate Demon
[234877] = { type = DEBUFF_OFFENSIVE }, -- Bane of Shadows (Affliction PvP Talent)
[316099] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Unstable Affliction
[342938] = { type = DEBUFF_OFFENSIVE, parent = 316099 }, -- Unstable Affliction (Affliction PvP Talent)
[30213] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Legion Strike
[200587] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Fel Fissure (PvP Talent)
[221705] = { type = BUFF_DEFENSIVE }, -- Casting Circle (PvP Talent)
[333889] = { type = BUFF_DEFENSIVE }, -- Fel Domination
[344566] = { type = BUFF_OFFENSIVE }, -- Rapid Contagion (Affliction PvP Talent)
[267171] = { type = BUFF_OFFENSIVE }, -- Demonic Strength
[267218] = { type = BUFF_OFFENSIVE }, -- Nether Portal
[80240] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Havoc
[200548] = { type = DEBUFF_OFFENSIVE, parent = 80240 }, -- Bane of Havoc (Destro PvP Talent)
[213688] = { type = CROWD_CONTROL }, -- Fel Cleave - Fel Lord stun (Demo PvP Talent)
[339412] = { type = BUFF_SPEED_BOOST }, -- Demonic Momentum (Conduit)
-- Warrior
[871] = { type = BUFF_DEFENSIVE }, -- Shield Wall
[1719] = { type = BUFF_OFFENSIVE }, -- Recklessness
[5246] = { type = CROWD_CONTROL }, -- Intimidating Shout
[316593] = { type = CROWD_CONTROL, parent = 5246 }, -- Menace (Prot Talent), main target
[316595] = { type = CROWD_CONTROL, parent = 5246 }, -- Menace (Prot Talent), other targets
[12975] = { type = BUFF_DEFENSIVE }, -- Last Stand
[18499] = { type = BUFF_OTHER }, -- Berserker Rage
[23920] = { type = IMMUNITY_SPELL }, -- Spell Reflection
[330279] = { type = IMMUNITY_SPELL, parent = 23920 }, -- Overwatch (PvP Talent)
[335255] = { type = IMMUNITY_SPELL, parent = 23920 }, -- Spell Reflection (Misshapen Mirror Legendary)
[132168] = { type = CROWD_CONTROL }, -- Shockwave
[97463] = { type = BUFF_DEFENSIVE }, -- Rallying Cry
[105771] = { type = ROOT }, -- Charge
[107574] = { type = BUFF_OFFENSIVE }, -- Avatar
[118038] = { type = BUFF_DEFENSIVE }, -- Die by the Sword
[132169] = { type = CROWD_CONTROL }, -- Storm Bolt
[147833] = { type = BUFF_DEFENSIVE }, -- Intervene
[184364] = { type = BUFF_DEFENSIVE }, -- Enraged Regeneration
[197690] = { type = BUFF_DEFENSIVE }, -- Defensive Stance
[208086] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Colossus Smash
[213871] = { type = BUFF_DEFENSIVE }, -- Bodyguard (Prot PvP Talent)
[227847] = { type = IMMUNITY }, -- Bladestorm (Arms)
[46924] = { type = IMMUNITY, parent = 227847 }, -- Bladestorm (Fury)
[236077] = { type = CROWD_CONTROL }, -- Disarm (PvP Talent)
[199042] = { type = ROOT }, -- Thunderstruck (Prot PvP Talent)
[236273] = { type = CROWD_CONTROL }, -- Duel (Arms PvP Talent)
[236321] = { type = BUFF_DEFENSIVE }, -- War Banner (PvP Talent)
[262228] = { type = BUFF_OFFENSIVE }, -- Deadly Calm
[199085] = { type = CROWD_CONTROL }, -- Warpath (Prot PvP Talent)
[198817] = { type = BUFF_OFFENSIVE }, -- Sharpen Blade (Arms PvP Talent) - "next cast will..." buff
[198819] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Mortal Strike when applied with Sharpen Blade (50% healing reduc)
[202164] = { type = BUFF_SPEED_BOOST }, -- Bounding Stride
[325886] = { type = CROWD_CONTROL }, -- Ancient Aftershock (Night Fae Ability)
[326062] = { type = CROWD_CONTROL, parent = 325886 }, -- Ancient Aftershock (Night Fae Ability) - periodic
[307871] = { type = CROWD_CONTROL, nounitFrames = true, nonameplates = true }, -- Spear of Bastion (Kyrian Ability)
[324143] = { type = BUFF_OFFENSIVE }, -- Conqueror's Banner (Necrolord Ability) - on the warrior
[325862] = { type = BUFF_OFFENSIVE, parent = 324143 }, -- Conqueror's Banner (Necrolord Ability) - on others
-- Other
[115804] = { type = DEBUFF_OFFENSIVE, nounitFrames = true, nonameplates = true }, -- Mortal Wounds
[34709] = { type = BUFF_OTHER }, -- Shadow Sight
[345231] = { type = BUFF_DEFENSIVE }, -- Gladiator's Emblem
[314646] = { type = BUFF_OTHER }, -- Drink (40k mana vendor item)
[348436] = { type = BUFF_OTHER, parent = 314646 }, -- (20k mana vendor item)
[167152] = { type = BUFF_OTHER, parent = 314646 }, -- Refreshment (mage food)
-- Racials
[20549] = { type = CROWD_CONTROL }, -- War Stomp
[107079] = { type = CROWD_CONTROL }, -- Quaking Palm
[255723] = { type = CROWD_CONTROL }, -- Bull Rush
[287712] = { type = CROWD_CONTROL }, -- Haymaker
[256948] = { type = BUFF_OTHER }, -- Spatial Rift
[65116] = { type = BUFF_DEFENSIVE }, -- Stoneform
[273104] = { type = BUFF_DEFENSIVE }, -- Fireblood
[58984] = { type = BUFF_DEFENSIVE }, -- Shadowmeld
-- Shadowlands: Covenant/Soulbind
[310143] = { type = BUFF_SPEED_BOOST }, -- Soulshape
[320224] = { type = BUFF_DEFENSIVE }, -- Podtender (Night Fae - Dreamweaver Trait)
[323524] = { type = IMMUNITY }, -- Ultimate Form (Necrolord - Marileth Trait)
[324263] = { type = CROWD_CONTROL }, -- Sulfuric Emission (Necrolord - Emeni Trait)
[327140] = { type = BUFF_OTHER }, -- Forgeborne Reveries (Necrolord - Bonesmith Heirmir Trait)
[330752] = { type = BUFF_DEFENSIVE }, -- Ascendant Phial (Kyrian - Kleia Trait)
[331866] = { type = CROWD_CONTROL }, -- Agent of Chaos (Venthyr - Nadjia Trait)
[332505] = { type = BUFF_OTHER }, -- Soulsteel Clamps (Kyrian - Mikanikos Trait)
[332506] = { type = BUFF_OTHER, parent = 332505 }, -- Soulsteel Clamps (Kyrian - Mikanikos Trait) - when moving
[332423] = { type = CROWD_CONTROL }, -- Sparkling Driftglobe Core (Kyrian - Mikanikos Trait)
[354051] = { type = ROOT }, -- Nimble Steps
-- Trinkets
[356567] = { type = CROWD_CONTROL }, -- Shackles of Malediction
[358259] = { type = CROWD_CONTROL }, -- Gladiator's Maledict
[362699] = { type = IMMUNITY_SPELL }, -- Gladiator's Resolve
[363522] = { type = BUFF_DEFENSIVE }, -- Gladiator's Eternal Aegis
-- Legacy (may be deprecated)
--[305252] = { type = CROWD_CONTROL }, -- Gladiator's Maledict
--[313148] = { type = CROWD_CONTROL }, -- Forbidden Obsidian Claw
-- Special
--[6788] = { type = "special", nounitFrames = true, noraidFrames = true }, -- Weakened Soul
}