-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenrage.lua
More file actions
642 lines (641 loc) · 18.9 KB
/
enrage.lua
File metadata and controls
642 lines (641 loc) · 18.9 KB
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
local lib = LibStub("LibDispel")
if not lib or lib._enrageLoaded then return end
lib._enrageLoaded = true
-- updated at 2025-08-05
-- https://www.wowhead.com/spells/dispel-type:9
lib.enrage = {
[4146] = "Enraged Howl",
[8269] = "Frenzy",
[8599] = "Enrage",
[15061] = "Enrage",
[15716] = "Enrage",
[16791] = "Furious Anger",
[18499] = "Berserker Rage",
[18501] = "Enrage",
[19451] = "Enrage",
[19812] = "Enrage",
[22428] = "Enrage",
[23128] = "Enrage",
[23257] = "Demonic Enrage",
[23342] = "Enrage",
[24689] = "Aspect of Thekal",
[26041] = "Enrage",
[26051] = "Enrage",
[28371] = "Enrage",
[29340] = "Whip Rage",
[30485] = "Enrage",
[31540] = "Enrage",
[31915] = "Enrage",
[32714] = "Enrage",
[33958] = "Enrage",
[34392] = "Stinger Rage",
[34670] = "Enrage",
[34971] = "Frenzy",
[37605] = "Enrage",
[37648] = "Enrage",
[37975] = "Enrage",
[38046] = "Enrage",
[38166] = "Enrage",
[38664] = "Enrage",
[39031] = "Enrage",
[39575] = "Charge Rage",
[40076] = "Electric Spur",
[40601] = "Fury",
[41254] = "Enrage",
[41364] = "Seethe",
[41447] = "Enrage",
[42705] = "Enrage",
[42745] = "Enrage",
[43139] = "Enrage",
[43292] = "Incite Rage",
[43664] = "Unholy Brand",
[47399] = "Enrage",
[48138] = "Enrage",
[48142] = "Enrage",
[48193] = "Enrage",
[48702] = "Fervor",
[49029] = "Fixated",
[50420] = "Enrage",
[50636] = "Tormented Roar",
[51170] = "Enraged Assault",
[51513] = "Enrage",
[52071] = "Killing Rage",
[52262] = "Cornered and Enraged!",
[52309] = "Warrior's Will",
[52461] = "Unstoppable Enrage",
[52470] = "Enrage",
[52537] = "Fixate",
[53361] = "Frenzy",
[54356] = "Unstoppable Enrage",
[54427] = "Enrage",
[54475] = "Rampage",
[54781] = "Frenzied Dive",
[55285] = "Enrage",
[55462] = "Storm's Fury",
[56646] = "Enrage",
[56729] = "Frenzied Leap",
[56769] = "Red Frenzy",
[57733] = "Draconic Rage",
[58942] = "Draconic Rage",
[59465] = "Brood Rage",
[59694] = "Unholy Rage",
[59697] = "Enrage",
[59707] = "Enrage",
[59828] = "Enrage",
[60075] = "Enrage",
[60177] = "Hunger For Blood",
[60430] = "Molten Fury",
[61369] = "Enrage",
[63147] = "Sara's Anger",
[63227] = "Enrage",
[66092] = "Determination",
[66759] = "Frothing Rage",
[67233] = "Flurry of Blows",
[68541] = "Enrage",
[69052] = "Unholy Frenzy",
[70371] = "Enrage",
[72143] = "Enrage",
[72203] = "Tortured Enrage",
[75998] = "Enrage",
[76100] = "Enrage",
[76487] = "Wild Beatdown",
[76816] = "Feed Pet",
[76862] = "Enrage",
[77238] = "Charged Fists",
[78722] = "Enrage",
[78943] = "Enrage",
[79420] = "Frenzy",
[80084] = "Enrage",
[80158] = "Rage",
[80467] = "Enrage",
[81173] = "Frenzy",
[81706] = "Venomous Rage",
[81772] = "Overtime",
[82033] = "Fel Ragamania",
[82759] = "Mixture of Harnessed Rage",
[86736] = "Enrage",
[90045] = "Indomitable",
[91668] = "Unstable Strength",
[101109] = "Rage of Ragnaros",
[101110] = "Rage of Ragnaros",
[102134] = "Enrage",
[102989] = "Beatdown",
[106925] = "Consuming Bite",
[108169] = "Enrage",
[109889] = "Enrage",
[111220] = "Berserker Rage",
[111418] = "Unflinching Resolve",
[115006] = "Hozen Rage",
[115430] = "Enrage",
[115639] = "Salivate",
[116863] = "Kafa Rush",
[116958] = "Kafa Rush",
[117837] = "Delirious",
[118139] = "Enraged Mother",
[118507] = "Sha Inspiration",
[119629] = "Enrage",
[120093] = "Incite Frenzy",
[123914] = "Treant's Rage",
[123936] = "Angry",
[124019] = "Blood Rage",
[124172] = "Will of the Empress",
[124309] = "Berserking Howl",
[124840] = "Enrage Hatchling",
[124976] = "Titanic Strength",
[125738] = "Swamp Rodent Surprise",
[125864] = "Hard Worker",
[126075] = "Ferocity",
[126254] = "Feral Instincts",
[126370] = "Enrage",
[126410] = "Reckless Zeal",
[127823] = "Enrage",
[127955] = "Bloody Rage",
[128006] = "Frenzied for Blood",
[128231] = "Berserker Rage",
[128248] = "Flip Out",
[128809] = "Wounded Pride",
[129016] = "Enrage",
[129874] = "Brewrific",
[130196] = "Enrage",
[130202] = "Desperate Rage",
[131150] = "Blood Crazed",
[132710] = "Wrath of Ogudei",
[134983] = "Frenzied Assault",
[135524] = "Combat Momentum",
[135548] = "Blood Rage",
[135569] = "Nimble Hands",
[135698] = "Unleashed Anger",
[137334] = "Rage of Kros",
[140108] = "Rage of the Zandalari",
[141663] = "Primal Rage",
[142760] = "Dire Rage",
[145554] = "Enrage",
[145692] = "Enrage",
[145974] = "Enrage",
[148295] = "Bloody Rage",
[148852] = "Rampage",
[150759] = "Ferocious Yell",
[151553] = "Dominate Slave",
[151965] = "Slaver's Rage",
[153909] = "Frenzy",
[154017] = "Blackrock Rabies",
[154543] = "Squealing Terror",
[154982] = "Enrage",
[155198] = "Savage Howl",
[155208] = "Savage Howl",
[155620] = "Burning Rage",
[156314] = "Enrage",
[157346] = "Flurry",
[158304] = "Protective Rage",
[158337] = "Frenzy",
[158456] = "Last of the Herd",
[159479] = "Furious Roar",
[159748] = "Furious Roar",
[161601] = "Enraged",
[163121] = "Held to Task",
[163483] = "Enrage",
[164257] = "Enrage",
[164324] = "Determination",
[164811] = "Enrage",
[164835] = "Bloodletting Howl",
[165213] = "Enraged Growth",
[165512] = "Laughing Skull",
[168620] = "Might of the Warsong",
[172360] = "Enrage",
[172781] = "Enrage",
[173238] = "Iron Battle-Rage",
[173950] = "Enraged",
[174427] = "Enrage Grublings",
[175192] = "Enrage",
[175337] = "Enrage",
[175463] = "Sadistic Frenzy",
[175586] = "Protective Frenzy",
[175743] = "Blood Rage",
[176023] = "Getting Angry",
[176048] = "Enrage",
[176214] = "Mighty!",
[176396] = "Shadowflame Axes",
[177152] = "Victory Rush",
[178658] = "Enrage",
[180643] = "Enrage - Battle Pet",
[181516] = "Furious Assault",
[182367] = "Reckless Power",
[183418] = "Tormented Rage",
[183883] = "Howl of Rage",
[184039] = "Protective Fury",
[184359] = "Fury",
[184362] = "Enrage",
[185997] = "Adrenaline",
[188480] = "Enrage",
[188504] = "Blood Scent",
[189061] = "Fellust",
[190225] = "Enrage",
[201279] = "Enrage",
[201983] = "Frenzy",
[206725] = "Incite Frenzy",
[207342] = "Disoriented",
[207680] = "Enrage",
[207865] = "Bone-rattling Howl",
[211477] = "Ferocity",
[214037] = "Enrage",
[214613] = "Riled Up!",
[216363] = "Enrage",
[218121] = "Enrage",
[219121] = "Enraged Roar",
[219913] = "Violent Eruption",
[222022] = "Enrage",
[222042] = "Enrage",
[224604] = "Enrage",
[225998] = "Commanding Shout",
[226737] = "Ettin Rage",
[228318] = "Enrage",
[229904] = "Enraged Mother",
[231903] = "Mood Swings",
[233210] = "Whip Rage",
[237689] = "Enrage",
[245566] = "Enrage",
[247546] = "Battle Shout",
[250828] = "Incited",
[255276] = "Cannibal Rage",
[255824] = "Fanatic's Rage",
[256085] = "Rabid",
[257260] = "Enrage",
[257476] = "Bestial Wrath",
[257559] = "Fury",
[257609] = "Enrage",
[257739] = "Blind Rage",
[257741] = "Blind Rage",
[257899] = "Painful Motivation",
[258463] = "Enrage",
[259275] = "Blood Rage",
[259281] = "Shrink",
[259284] = "Blood Rage",
[259291] = "Shrink",
[259313] = "Gluttonous Rage",
[259318] = "Abyssal Might",
[259975] = "Enrage",
[260087] = "Feeding Frenzy",
[260355] = "Enrage",
[260373] = "Consuming Bite",
[261175] = "Battle Rage",
[261893] = "Enrage",
[262036] = "Kaja'mite Withdrawl",
[262092] = "Inhale Vapors",
[263187] = "Bloody Rage",
[264064] = "Berserking",
[265081] = "Warcry",
[265319] = "Taz'dingo!",
[265633] = "Bloodied Frenzy",
[265770] = "Battle Roar",
[266095] = "Enrage",
[266209] = "Wicked Frenzy",
[266267] = "Enraged",
[269093] = "Blood Frenzy",
[269976] = "Ancestral Fury",
[270016] = "Released Inihibitors",
[270296] = "Battle Roar",
[271369] = "Enrage",
[272347] = "Inner Strength",
[272369] = "Killer Instinct",
[272888] = "Ferocity",
[273422] = "Enrage",
[273623] = "Feral Rage",
[273809] = "Idol of Rage",
[273874] = "Enrage",
[274377] = "Fighting Dirty",
[274780] = "Berserking",
[275034] = "Bestial Howl",
[275091] = "Enrage",
[275370] = "Riled Up!",
[275667] = "Enrage",
[276699] = "Warcry",
[276873] = "War Cry",
[277038] = "Battle Rage",
[277203] = "War Cry",
[277342] = "Bestial Wrath",
[277424] = "Hunter Toxin",
[277451] = "Overtime!",
[277573] = "Enrage",
[277799] = "Roar of the Pride",
[278990] = "Bloodshot Rage",
[282122] = "Abominable Enrage",
[282500] = "Rapid Growth",
[289200] = "Unliving Ferocity",
[294312] = "Rabble Rouse",
[296199] = "Enraged",
[296429] = "Making It Look Good",
[297138] = "Vengeful Frenzy",
[297152] = "Enrage",
[297942] = "Blood in the Water",
[299067] = "Agitate",
[299432] = "Malfunction: Inhibitor Failure!",
[299992] = "Hot Blooded",
[300414] = "Enrage",
[301973] = "Twilight Fury",
[302006] = "Twilight Fury",
[302302] = "Hunger",
[303198] = "Abyssal Rage",
[303244] = "Queen's Command",
[304178] = "Enrage",
[307506] = "Enrage",
[308887] = "Inspire",
[308998] = "Improve Morale",
[309455] = "Embiggened",
[311086] = "Enrage",
[312622] = "Withdraw",
[312693] = "N'Zoth's Blessing",
[313675] = "Enrage",
[313945] = "Psionic Frenzy",
[314217] = "War Cry",
[314383] = "Fanatical Zeal",
[314466] = "Enrage",
[314599] = "Fighting Dirty",
[315697] = "Ferocity",
[316133] = "Enrage",
[316618] = "Enraging Toxin",
[316856] = "Rage of the Stoneborn",
[317553] = "Enrage",
[319132] = "Unholy Frenzy",
[319147] = "Enrage",
[319966] = "Unraveling Frenzy",
[320012] = "Unholy Frenzy",
[320703] = "Seething Rage",
[321220] = "Frenzy",
[321820] = "Enrage",
[322144] = "Unholy Frenzy",
[322540] = "Berserker Rage",
[322888] = "Unravel Flesh",
[322930] = "Rabid Frenzy",
[323599] = "Enrage",
[323610] = "Unwavering Sacrifice",
[323641] = "Rabid Frenzy",
[324737] = "Enraged",
[325891] = "Consumed Sin",
[326054] = "Voracious Appetite",
[326450] = "Loyal Beasts",
[327155] = "Vengeful Rage",
[328062] = "Feather Fury",
[328846] = "Dying Rage",
[329296] = "Dread Wrath",
[329989] = "Enrage",
[330401] = "Frenzy",
[330631] = "Enrage",
[331347] = "Unstoppable Frenzy",
[331510] = "Death Wish",
[332169] = "Enrage",
[333227] = "Undying Rage",
[333241] = "Raging Tantrum",
[333892] = "Hateful Fetish",
[333929] = "Bestial Howl",
[334470] = "Motivated",
[334800] = "Enrage",
[334967] = "Angering Shriek",
[337419] = "Shadowsplinter Rage",
[337557] = "Molten Rage",
[338847] = "Unholy Frenzy",
[340117] = "Enraging Anguish",
[340146] = "Charged Attacks",
[340309] = "Deepscar's Frenzy",
[340727] = "Frenzy of the Baroness",
[341176] = "Void Frenzy",
[341316] = "Sun Fury",
[342139] = "Battle Trance",
[346340] = "Unbound Ferocity",
[346627] = "Enrage Shadehound",
[347490] = "Fury of the Ages",
[347840] = "Feral",
[348022] = "Irate",
[350605] = "Repulsive Pennant",
[353706] = "Rowdy",
[354077] = "Raging",
[355057] = "Cry of Mrrggllrrgg",
[355417] = "Primal Roar",
[355782] = "Force Multiplier",
[356133] = "Super Saison",
[356460] = "Enrage",
[357017] = "Consume Wrath",
[357131] = "Warlord's Rage",
[357369] = "Sharpen Steel",
[357926] = "Bouncing Frenzy",
[358264] = "Fury",
[358762] = "Raging Whirlwind",
[358864] = "Warlord's Rage",
[359668] = "Frenzied Bite",
[359768] = "Strength of the Pack",
[360857] = "Battle Frenzy",
[362333] = "Geofused Strength",
[363123] = "Frenzy",
[363222] = "Raging",
[363797] = "Order: Destruction",
[365187] = "Reckless Rage",
[365338] = "Strength of the Pack",
[368416] = "Temper Tantrum",
[368477] = "Temper Tantrum",
[368511] = "Prime Rage",
[369241] = "Death Rage",
[369788] = "Battle Cry",
[369806] = "Reckless Rage",
[370194] = "[DNT] Death Rage",
[371562] = "Rampaging Assault",
[371875] = "Fired Up",
[372441] = "Insatiable Hunger",
[372553] = "Bloodthirsty Howl",
[373549] = "Evasive Maneuvers",
[373802] = "Frenzy",
[373946] = "Leaping Retreat",
[374898] = "Enrage",
[375359] = "Frenzy!",
[375694] = "Storm Savagery",
[375999] = "Lesser Frenzy",
[377384] = "Boiling Rage",
[377389] = "Call of the Flock",
[377502] = "Enmrgl",
[378063] = "Blood Crazed",
[378066] = "Bathe in Flames",
[378993] = "Fury of the Matriarch",
[379033] = "Vicious Howl",
[381275] = "Enraged",
[382555] = "Ragestorm",
[382570] = "Bugstorm",
[383067] = "Raging Kin",
[383693] = "Hunt Prey",
[383823] = "Rally the Clan",
[383900] = "Void Empowerment",
[384100] = "Berserker Shout",
[384102] = "Berserker Shout",
[384764] = "Feeding Frenzy",
[385827] = "Bloody Rage",
[387039] = "Fury of the Nokhud",
[387614] = "Chant of the Dead",
[387653] = "Craze Magic Overload",
[387756] = "Blubberwall's Fury",
[388475] = "Frenzied Rage",
[388532] = "Tidal Fury",
[388535] = "Wild Flailing",
[389276] = "Chant of Fury",
[389947] = "Fury of the Nokhud",
[390938] = "Agitation",
[391195] = "Boil",
[392692] = "Quillboar Pride",
[393251] = "Frantic Acceleration",
[393382] = "Enrage",
[393465] = "Savage Reprisal",
[393731] = "Battle Howl",
[393793] = "Bladestorm",
[393886] = "Enflamed Desperation",
[394033] = "Rampant Growth",
[394413] = "Hungering Rage",
[394429] = "Wild Nokhud Rage",
[394563] = "Violent Roar",
[394573] = "Frigid Fury",
[394717] = "River's Rage",
[394831] = "Let's Get Dangerous!",
[395819] = "Deathless Rage",
[396018] = "Fit of Rage",
[396645] = "Wild Instinct",
[396684] = "Speedy Bugstorm",
[396690] = "Ambiguous Flight",
[397410] = "Enraged Regeneration",
[397807] = "Command: Aggression",
[398385] = "Burning Rage",
[398410] = "Furious Strength",
[399073] = "Queen's Command",
[400108] = "Diplomacy Fails - Fight Until the End",
[400120] = "Elemental Enrage",
[400462] = "Titanic Fury",
[400490] = "Molten Furnace",
[400883] = "Inflame Aggression",
[401373] = "Enrage",
[402095] = "Command: Protection",
[402766] = "Brutal Retaliation",
[403890] = "Toxic Diffusion",
[404898] = "Vicious Howl",
[405668] = "Battle Cry",
[406772] = "Enraged",
[406778] = "Mounting Aggression",
[406802] = "Predatory Focus",
[408749] = "Mrrrgle Shrrlt",
[411405] = "Spirit Rage",
[412269] = "Feral Frenzy",
[412271] = "Feral Frenzy",
[412279] = "Feral Frenzy",
[412695] = "Relentless Hunger",
[413552] = "Tempest Tantrum",
[415558] = "Wolfheart",
[417409] = "Blood Venom",
[417675] = "Biggin' Bling",
[417937] = "Crimson Demise",
[418621] = "Fanatic Devotion",
[418658] = "Enrage",
[419153] = "Fel Zealotry",
[419221] = "Bloodlust",
[419693] = "Flame Nourish",
[420817] = "Fury of the Kaldorei",
[423397] = "Molten Frenzy",
[424419] = "Battle Cry",
[424650] = "Panicked!",
[425704] = "Enrage",
[426035] = "Battle Cry",
[426618] = "Slithering Assault",
[427260] = "Lightning Surge",
[427341] = "Burning Rage",
[427638] = "Gorilla Flex",
[428291] = "Slithering Assault",
[431133] = "Limit Break",
[432074] = "Contaminating Good",
[433447] = "Enrage",
[435239] = "Rot Frenzy",
[440188] = "Queen's Fury",
[440288] = "Empowering Howl",
[441214] = "Spill Drink",
[441353] = "Bee-stial Wrath",
[441408] = "Thirsty",
[441645] = "Unnatural Bloodlust",
[442517] = "Asperity",
[444055] = "Blood Frenzy",
[444473] = "Hysteric Screech",
[445419] = "Bloodthirsty",
[445577] = "Frenzied Swarm",
[446519] = "Stampeding Bellow",
[446634] = "Worldbreaker Rampage [DNT]",
[447996] = "Storm Surge",
[448161] = "Enrage",
[448384] = "Battle Cry",
[448399] = "Battle Cry",
[448691] = "Predatory Focus",
[448859] = "Stout Rage",
[449125] = "Distraught",
[449204] = "Distraught",
[449339] = "Raging Tantrum",
[449481] = "Love Me Not...",
[449604] = "Gut and Carve",
[449821] = "Hulking Might",
[449937] = "Howl of the Alpha",
[450777] = "Stout Rage",
[451040] = "Rage",
[451112] = "Tactician's Rage",
[451379] = "Reckless Tactic",
[451837] = "Earthen Rage",
[452235] = "Preyseeker's Shriek",
[453038] = "Asperity",
[453919] = "Blood Frenzy",
[453972] = "Sanguine Rage",
[454625] = "Killer Instinct",
[454632] = "Enrage",
[455062] = "Riled Up!",
[455281] = "Feeding Frenzy",
[455307] = "Abyssal Rage",
[455869] = "Battle Rage",
[456140] = "Bladestorm",
[456183] = "Fury of the Crusade",
[456255] = "Claw Fury",
[456362] = "Empower Minions",
[456468] = "Embrace the Void",
[456513] = "Battle Rage",
[456654] = "Frenzied Rage",
[456664] = "Rallying Cry",
[456883] = "Enmrgl!",
[457973] = "Zekvir's Fury",
[458097] = "Stalker's Bladework",
[458692] = "Burning Rage",
[458890] = "Frenzy",
[458920] = "Feeding Frenzy",
[463061] = "Bloodthirsty Cackle",
[465749] = "Resilient Roar",
[465811] = "Maternal Rage",
[466908] = "Stimulant",
[471186] = "Bloodthirsty",
[472335] = "Angry!",
[473021] = "Pacifist Rig",
[473165] = "Riled Up",
[473533] = "Ferocious Howl",
[473984] = "Focused",
[474001] = "Bathe in Blood",
[1213139] = "Overtime!",
[1213497] = "Me Go Mad",
[1215054] = "Pacifist Rig",
[1215084] = "Darkfuse Cocktail",
[1215975] = "Juice It Up!",
[1216852] = "Lumbering Rage",
[1217971] = "Me Go Mad",
[1217972] = "Bloodlust",
[1218086] = "Bloodlust",
[1219201] = "Berserker Roar",
[1219209] = "Berserker Roar",
[1220472] = "Overcharge",
[1221133] = "Hungering Rage",
[1222265] = "Wild Bond",
[1223079] = "Bestial Howl",
[1226946] = "Blind Madness",
[1226995] = "Under Cover of Darkness",
[1230601] = "Unstable Core",
[1231047] = "Improve Morale",
[1231333] = "Rally the Pack",
[1231506] = "Vengeful Fury",
[1232661] = "Barnyard Frenzy",
[1239668] = "Rough Kisses",
[1240027] = "Unbound Fury",
[1241599] = "Rally the Pack",
[1242074] = "Intensifying Aggression",
[1244446] = "Force Multiplier"
}