-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbleed.lua
More file actions
1446 lines (1445 loc) · 42.7 KB
/
bleed.lua
File metadata and controls
1446 lines (1445 loc) · 42.7 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
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local lib = LibStub("LibDispel")
if not lib or lib._bleedLoaded then return end
lib._bleedLoaded = true
-- updated at 2024-07-27
-- https://www.wowhead.com/spells/school:0?filter=29;3;0
-- https://www.wowhead.com/spells/mechanic:15?filter=109;6;0
lib.bleed = {
[96] = "Dismember",
[703] = "Garrote",
[806] = "Fervor",
[1079] = "Rip",
[1943] = "Rupture",
[3147] = "Rend Flesh",
[5024] = "Flee",
[5597] = "Serious Wound",
[5598] = "Serious Wound",
[8818] = "Garrote",
[10266] = "Lung Puncture",
[11977] = "Rend",
[12054] = "Rend",
[13318] = "Rend",
[13443] = "Rend",
[13445] = "Rend",
[13493] = "Gnomish Death Ray",
[13738] = "Rend",
[14087] = "Rend",
[14118] = "Rend",
[14331] = "Vicious Rend",
[14874] = "Rupture",
[14903] = "Rupture",
[15583] = "Rupture",
[15860] = "Impale",
[15976] = "Puncture",
[16001] = "Impale",
[16095] = "Vicious Rend",
[16393] = "Rend",
[16403] = "Rend",
[16406] = "Rend",
[16509] = "Rend",
[17153] = "Rend",
[17504] = "Rend",
[18075] = "Rend",
[18078] = "Rend",
[18106] = "Rend",
[18200] = "Rend",
[18202] = "Rend",
[19307] = "Crystal of Zin-Malor",
[19771] = "Serrated Bite",
[19820] = "Mangle",
[21949] = "Rend",
[22639] = "Eskhandar's Rake",
[22689] = "Mangle",
[24049] = "Impale",
[24192] = "Speed Slash",
[24331] = "Rake",
[24332] = "Rake",
[25172] = "Merithra's Wake Visual DND",
[26025] = "Impale",
[26548] = "Impale",
[27555] = "Shred",
[27556] = "Rake",
[27638] = "Rake",
[28913] = "Flesh Rot",
[29458] = "Blizzard",
[29574] = "Rend",
[29578] = "Rend",
[29583] = "Impale",
[29906] = "Ravage",
[29935] = "Gaping Maw",
[30285] = "Eagle Claw",
[30639] = "Carnivorous Bite",
[31041] = "Mangle",
[31286] = "Lash",
[31410] = "Coral Cut",
[31481] = "Lung Burst",
[31956] = "Grievous Wound",
[31983] = "Earthgrab",
[32019] = "Gore",
[32686] = "Earthquake",
[32716] = "Impale",
[32901] = "Carnivorous Bite",
[33865] = "Singe",
[33912] = "Rip",
[33919] = "Earthquake",
[34451] = "Impale",
[35144] = "Vicious Rend",
[35321] = "Gushing Wound",
[36023] = "Deathblow",
[36240] = "Cave In",
[36332] = "Rake",
[36383] = "Carnivorous Bite",
[36590] = "Rip",
[36617] = "Gaping Maw",
[36789] = "Diminish Soul",
[36965] = "Rend",
[36991] = "Rend",
[37066] = "Garrote",
[37487] = "Blood Heal",
[37662] = "Rend",
[37937] = "Flayed Flesh",
[37973] = "Coral Cut",
[38056] = "Flesh Rip",
[38363] = "Gushing Wound",
[38772] = "Grievous Wound",
[38801] = "Grievous Wound",
[38810] = "Gaping Maw",
[38848] = "Diminish Soul",
[38944] = "Immolation",
[39061] = "Impale",
[39198] = "Carnivorous Bite",
[39215] = "Gushing Wound",
[39382] = "Carnivorous Bite",
[39837] = "Impaling Spine",
[40199] = "Flesh Rip",
[41092] = "Carnivorous Bite",
[41439] = "Mangle",
[41932] = "Carnivorous Bite",
[41940] = "Lacerating Bite",
[42005] = "Bloodboil",
[42395] = "Lacerating Slash",
[42397] = "Rend Flesh",
[42658] = "Sic'em!",
[43093] = "Grievous Throw",
[43104] = "Deep Wound",
[43153] = "Lynx Rush",
[43246] = "Rend",
[43931] = "Rend",
[43937] = "Grievous Wound",
[48105] = "Grievous Wound",
[48130] = "Gore",
[48261] = "Impale",
[48286] = "Grievous Slash",
[48880] = "Rend",
[48920] = "Grievous Bite",
[49678] = "Flesh Rot",
[49978] = "Claw Grasp",
[50432] = "Devour Ghoul",
[50729] = "Carnivorous Bite",
[50871] = "Savage Rend",
[51275] = "Gut Rip",
[52207] = "Devour Humanoid",
[52401] = "Gut Rip",
[52425] = "Head Trauma",
[52504] = "Lacerate",
[52696] = "Constricting Chains",
[52740] = "Hurl Weapon",
[52771] = "Wounding Strike",
[52873] = "Open Wound",
[53317] = "Rend",
[53322] = "Crushing Webs",
[53442] = "Claw Grasp",
[53499] = "Rake",
[53602] = "Dart",
[54433] = "Hostile Airspace",
[54668] = "Rake",
[54703] = "Rend",
[54708] = "Rend",
[54956] = "Impaling Charge",
[55102] = "Determined Gore",
[55249] = "Whirling Slash",
[55250] = "Whirling Slash",
[55276] = "Puncture",
[55550] = "Jagged Knife",
[55604] = "Death Plague",
[55622] = "Impale",
[55645] = "Death Plague",
[57661] = "Rip",
[58459] = "Impale",
[58517] = "Grievous Wound",
[58823] = "Constricting Chains",
[58830] = "Wounding Strike",
[58978] = "Impale",
[59007] = "Flesh Rot",
[59023] = "Puncturing Strike",
[59206] = "Hungering Essence of the Old God",
[59239] = "Rend",
[59256] = "Impale",
[59259] = "Hurl Weapon",
[59262] = "Grievous Wound",
[59263] = "Grievous Wound",
[59264] = "Gore",
[59268] = "Impale",
[59269] = "Carnivorous Bite",
[59343] = "Rend",
[59347] = "Crushing Webs",
[59349] = "Dart",
[59444] = "Determined Gore",
[59682] = "Grievous Wound",
[59691] = "Rend",
[59824] = "Whirling Slash",
[59825] = "Whirling Slash",
[59826] = "Puncture",
[59827] = "Impaling Charge",
[59989] = "Rip",
[61164] = "Impale",
[61385] = "Bear Trap",
[61896] = "Lacerate",
[62310] = "Impale",
[62318] = "Barbed Shot",
[62331] = "Impale",
[62418] = "Impale",
[62928] = "Impale",
[63468] = "Careful Aim",
[64374] = "Savage Pounce",
[64666] = "Savage Pounce",
[65033] = "Constricting Rend",
[65406] = "Rake",
[65450] = "Constrict",
[65912] = "Moonlight",
[66331] = "Impale",
[66620] = "Old Wounds",
[67280] = "Dagger Throw",
[68380] = "Overheating",
[69203] = "Vicious Bite",
[70432] = "Blood Sap",
[71257] = "Barbaric Strike",
[71623] = "Delirious Slash",
[71816] = "Constrict",
[71926] = "Rip",
[72050] = "Fiery Boulder",
[72132] = "Gushing Wound",
[72264] = "Delirious Slash",
[72385] = "Boiling Blood",
[73693] = "Arcing Slash",
[73998] = "Illegal Contact",
[74143] = "Little Big Flame Breath",
[74846] = "Bleeding Wound",
[75160] = "Bloody Rip",
[75161] = "Spinning Rake",
[75369] = "Consume",
[75388] = "Rusty Cut",
[75930] = "Mangle",
[76507] = "Claw Puncture",
[76524] = "Grievous Whirl",
[76594] = "Rend",
[77235] = "Impale",
[78340] = "Constrict",
[78842] = "Carnivorous Bite",
[78859] = "Elementium Spike Shield",
[79444] = "Impale",
[79455] = "Impaling Spine",
[79517] = "Broken Leg",
[79589] = "Constricting Chains",
[79828] = "Mangle",
[79829] = "Rip",
[80028] = "Bleeding Edge",
[80051] = "Grievous Wound",
[80145] = "Piercing Grip",
[81043] = "Razor Slice",
[81309] = "Cave-in",
[81568] = "Spinning Slash",
[81569] = "Spinning Slash",
[81690] = "Scent of Blood",
[82710] = "Ooze Cap",
[82753] = "Ritual of Bloodletting",
[82766] = "Eye Gouge",
[83783] = "Impale",
[84642] = "Puncture",
[85415] = "Mangle",
[86407] = "Opalescent Prison",
[86881] = "Crystal Barrage",
[87395] = "Serrated Slash",
[89212] = "Eagle Claw",
[89773] = "Mangle",
[90098] = "Axe to the Head",
[90880] = "Hooked Net",
[91348] = "Tenderize",
[92075] = "Gravity Core",
[92619] = "Backslash",
[93327] = "Entomb",
[93587] = "Ritual of Bloodletting",
[93675] = "Mortal Wound",
[95334] = "Elementium Spike Shield",
[96421] = "Impale",
[96570] = "Gaping Wound",
[97230] = "Magma Flow",
[97357] = "Gaping Wound",
[97380] = "Cave In",
[98282] = "Tiny Rend",
[99100] = "Mangle",
[99308] = "Gushing Wound",
[99693] = "Dinner Time",
[100024] = "Gushing Wound",
[102066] = "Flesh Rip",
[102925] = "Garrote",
[107567] = "Brutal Strike",
[111813] = "Impale",
[112896] = "Drain Blood",
[113344] = "Bloodbath",
[113855] = "Bleeding Wound",
[114056] = "Bloody Mess",
[114117] = "Monkey Tantrum",
[114184] = "Beatdown",
[114860] = "Rend",
[114881] = "Hawk Rend",
[115767] = "Deep Wounds",
[115871] = "Rake",
[117677] = "Headbutt",
[118146] = "Lacerate",
[119561] = "Bloodletting",
[119840] = "Serrated Blade",
[120166] = "Serrated Blade",
[120560] = "Rake",
[120699] = "Lynx Rush",
[120928] = "Cut You!",
[121100] = "Decapitating Swipe",
[121247] = "Impale",
[121411] = "Crimson Tempest",
[121479] = "Impaling Strike",
[121883] = "Getting Smashed",
[122962] = "Carnivorous Bite",
[123422] = "Arterial Bleeding",
[123852] = "Gored",
[124015] = "Gored",
[124341] = "Bloodletting",
[124678] = "Hacking Slash",
[124800] = "Pinch Limb",
[125099] = "Rake",
[125206] = "Rend Flesh",
[125624] = "Vicious Rend",
[126184] = "Gash",
[126376] = "Hidden Strike",
[126557] = "Cave In",
[126567] = "Cave In",
[126815] = "Gash",
[126901] = "Mortal Rend",
[126912] = "Grievous Whirl",
[126951] = "Deadly Throw",
[127872] = "Consume Flesh",
[127987] = "Bleeding Bite",
[128051] = "Serrated Slash",
[128903] = "Garrote",
[128965] = "Ground and Pound",
[129463] = "Crane Kick",
[130021] = "Harm Sphere",
[130191] = "Rake",
[130306] = "Ankle Bite",
[130785] = "My Eye!",
[130897] = "Vicious Bite",
[130934] = "Flutter Flies",
[131145] = "Bloody Prey",
[131662] = "Vicious Stabbing",
[133074] = "Puncture",
[133081] = "Rip",
[133254] = "Collision",
[133768] = "Arterial Cut",
[133800] = "Heavy Metal",
[134691] = "Impale",
[135060] = "Cave In",
[135345] = "Internal Bleeding",
[135528] = "Bleeding Wound",
[135688] = "Lieutenant Jacobson's Fetching Stick",
[135892] = "Razor Slice",
[136654] = "Rending Charge",
[136753] = "Slashing Talons",
[136923] = "Chomp",
[137497] = "Garrote",
[137509] = "Hail of Arrows",
[137604] = "Electrocution",
[138479] = "Flurry of Teeth",
[138549] = "Chained",
[138956] = "Dark Bite",
[139135] = "Leaping Rend",
[139340] = "Focused Gaze",
[139514] = "Bloodstorm",
[140274] = "Vicious Wound",
[140275] = "Rend",
[140276] = "Rend",
[140396] = "Rend",
[141223] = "Call the Shot",
[141467] = "Paper Cut",
[142171] = "Hemorrhagic Shadowstep",
[142484] = "Bloody Charge",
[142634] = "Butcher Cleave",
[142649] = "Devour",
[143198] = "Garrote",
[143373] = "Gene Splice",
[143567] = "Desiccating Sands",
[143638] = "Bonecracker",
[143940] = "Double Swipe",
[144113] = "Chomp",
[144263] = "Rend",
[144264] = "Rend",
[144304] = "Rend",
[144466] = "Magnetic Crush",
[144853] = "Carnivorous Bite",
[145218] = "Harden Flesh",
[145263] = "Chomp",
[145417] = "Rupture",
[145568] = "Bonecracker",
[145886] = "Bowls",
[146290] = "Caustic Pollen",
[146556] = "Pierce",
[146774] = "Barbed Net",
[146927] = "Rend",
[147396] = "Rake",
[147652] = "Greater Swipe",
[147653] = "Greater Swipe",
[147703] = "Burning Fury",
[147717] = "Blackflame Fury",
[148033] = "Grapple",
[148136] = "Lacerating Bite",
[148163] = "Marcio's Test Live Update [DNL]",
[148375] = "Brutal Hemorrhage",
[149185] = "Contusion",
[149212] = "Grievous Shield Bash",
[149722] = "Impale",
[149723] = "Impale",
[150634] = "Leviathan's Grip",
[150648] = "Femoral Tear",
[151094] = "Constricting Grasp",
[151471] = "Creeping Web",
[151475] = "Drain Life",
[152357] = "Rend",
[152623] = "Rend",
[152724] = "Lacerating Strike",
[153226] = "Deep Bite",
[153757] = "Fan of Blades",
[153907] = "Dervish",
[154489] = "Puncturing Horns",
[154953] = "Internal Bleeding",
[155065] = "Ripping Claw",
[155417] = "Kegstand Slam",
[155569] = "Injured",
[155701] = "Serrated Slash",
[155722] = "Rake",
[156006] = "Impale",
[156152] = "Gushing Wounds",
[156743] = "Impaled",
[157344] = "Vital Strike",
[157853] = "Aftershock",
[158115] = "Electrified Cloud",
[158143] = "Chakram",
[158150] = "Goring Swipe",
[158276] = "Consume Elemental",
[158288] = "Consume Elemental",
[158341] = "Gushing Wounds",
[158388] = "Iron Binding",
[158453] = "Rending Swipe",
[158661] = "Hurled Weapon",
[158667] = "Warleader's Spear",
[159113] = "Impale",
[159238] = "Shattered Bleed",
[161025] = "Arcane Sentry",
[161117] = "Puncturing Tusk",
[161229] = "Pounce",
[161765] = "Iron Axe",
[161967] = "Devouring Chomp",
[161982] = "Devouring Bite",
[162265] = "Bone Shards",
[162370] = "Crystalline Barrage",
[162487] = "Steel Trap",
[162594] = "Bloody Charge",
[162672] = "Goring Swipe",
[162921] = "Peck",
[162951] = "Lacerating Spines",
[163276] = "Shredded Tendons",
[163614] = "Flayed",
[163615] = "Lobotomize",
[163773] = "Bloody Maul",
[163900] = "Falling Rocks",
[164218] = "Double Slash",
[164427] = "Ravage",
[164648] = "Barbed Arrow Barrage",
[164942] = "Mud Pit",
[164950] = "Petrifying Breath",
[164953] = "Earthen Bolt",
[165308] = "Gushing Wound",
[166095] = "Cosmetic - Electric Explosion",
[166185] = "Rending Slash",
[166638] = "Gushing Wound",
[166639] = "Item - Druid T17 Feral 4P Bonus Proc Driver",
[166934] = "Maul",
[167334] = "Windfang Bite",
[167879] = "Chain Drag",
[167978] = "Jagged Edge",
[168392] = "Fangs of the Predator",
[169343] = "Cracked Earth",
[169584] = "Serrated Spines",
[170188] = "Impale",
[170367] = "Vicious Throw",
[170465] = "Crimson Slash",
[170650] = "Bone Breaker",
[170936] = "Talador Venom",
[171047] = "Impaling Thrust",
[171186] = "Peck",
[171539] = "Grievous Shield Bash",
[171957] = "Hemorrhage",
[172019] = "Stingtail Venom",
[172035] = "Thrash",
[172042] = "Bone Skewer",
[172139] = "Lacerating Bite",
[172366] = "Jagged Slash",
[172657] = "Serrated Edge",
[172889] = "Charging Slash",
[172963] = "Gatecrasher",
[173050] = "Gripping Vines",
[173113] = "Hatchet Toss",
[173192] = "Cave In",
[173237] = "Brutal Cleave",
[173299] = "Rip",
[173307] = "Serrated Spear",
[173324] = "Jagged Caltrops",
[173643] = "Drill Fist",
[173876] = "Rending Claws",
[174013] = "Piercing Dagger",
[174107] = "Foucsed Beam",
[174423] = "Pinning Spines",
[174425] = "Iron Shackles",
[174494] = "Optical Blast",
[174498] = "Optical Blast",
[174734] = "Axe to the Face!",
[174776] = "Greater Swipe",
[174820] = "Rending Claws",
[175014] = "Rupture",
[175020] = "Impaled",
[175156] = "Painful Pinch",
[175453] = "Bone Grinder",
[175461] = "Sadistic Slice",
[175747] = "Big Sharp Nasty Claws",
[176098] = "Phoenix Flames",
[176147] = "Ignite",
[176256] = "Talon Sweep",
[176552] = "Barbed Chain",
[176575] = "Consume Flesh",
[176609] = "Corroded Shard",
[176695] = "Bone Fragments",
[176735] = "Gore",
[176856] = "Monstrous Vines",
[177273] = "Fling Dagger",
[177337] = "Carnivorous Bite",
[177422] = "Thrash",
[178384] = "Heartbeat",
[179369] = "Crystalline Cage",
[180389] = "Heart Seeker",
[180880] = "Chain Grasp",
[181345] = "Foul Crush",
[181346] = "Lacerating Swipe",
[181533] = "Jagged Blade",
[182325] = "Phantasmal Wounds",
[182330] = "Coral Cut",
[182347] = "Impaling Coral",
[182795] = "Primal Mangle",
[182846] = "Thrash",
[183952] = "Shadow Claws",
[183989] = "Mortally Wounded",
[184025] = "Rending Claws",
[184090] = "Bloody Arc",
[184175] = "Primal Rake",
[184355] = "Bloodboil",
[185093] = "Eye Gouge",
[185539] = "Rapid Rupture",
[185698] = "Bloody Hack",
[185855] = "Lacerate",
[186191] = "Bloodletting Slash",
[186365] = "Sweeping Blade",
[186410] = "Immobilizing Bite",
[186547] = "Black Hole",
[186594] = "Laceration",
[186639] = "Big Sharp Nasty Teeth",
[186730] = "Exposed Wounds",
[187647] = "Bloodletting Pounce",
[187712] = "NLC Fight Pacing Tester",
[187819] = "Crush",
[188081] = "Crush",
[188087] = "Hellweaving",
[188283] = "Hemorrhage",
[188353] = "Rip",
[188755] = "Distilled Essence of Zanzil",
[188909] = "Fel Sunder",
[189035] = "Barbed Cutlass",
[189287] = "Grind",
[189780] = "Empowered Black Hole",
[190419] = "Bug Sprayer",
[190880] = "Chain Dummy Beam",
[191033] = "Bear Trap",
[191085] = "INTERNAL BOT - 10 Minute Drain",
[191153] = "Feral Swipe",
[191380] = "Mark of the Distant Army",
[191413] = "Bestial Ferocity",
[191482] = "INTERNAL BOT - 5 Minute Drain",
[191708] = "Devour",
[191977] = "Impaling Spear",
[192108] = "Glaive",
[192287] = "A Feast of Eyes",
[192925] = "Blood of the Assassinated",
[193092] = "Bloodletting Sweep",
[193234] = "Dancing Blade",
[193340] = "Fenri's Bite",
[193565] = "Glaive",
[193585] = "Bound",
[193607] = "Double Strike",
[193639] = "Bone Chomp",
[193941] = "Impaling Shard",
[193956] = "Barbed Web",
[194038] = "Gore",
[194118] = "Frenzied Gore",
[194636] = "Cursed Rend",
[194639] = "Rending Claws",
[194674] = "Barbed Spear",
[194888] = "Leech",
[194991] = "Fel Trap",
[195094] = "Coral Slash",
[195279] = "Bind",
[195303] = "Infectious Bite",
[195506] = "Razorsharp Axe",
[196111] = "Jagged Claws",
[196189] = "Bloody Talons",
[196313] = "Lacerating Talons",
[196376] = "Grievous Tear",
[196497] = "Ravenous Leap",
[196502] = "Lingering Gaze",
[197381] = "Exposed Wounds",
[197546] = "Brutal Glaive",
[198204] = "Leeching Spider",
[198827] = "Echo Slam",
[199108] = "Frantic Gore",
[199146] = "Bucking Charge",
[199337] = "Bear Trap",
[199460] = "Falling Rocks",
[199705] = "Devouring",
[199847] = "Grievous Wound",
[200182] = "Festering Rip",
[200620] = "Frantic Rip",
[200755] = "Furious Flurry",
[200814] = "Blood Claws",
[201687] = "Flesh Eating Snails",
[202045] = "Feral Swipe",
[202231] = "Leech",
[202390] = "Crusader's Fire",
[203493] = "Bear Trap",
[203898] = "Flanking Shred",
[204081] = "On the Trail",
[204175] = "Rend",
[204968] = "Hemoraging Barbs",
[205116] = "Destructive Whirlwind",
[205437] = "Laceration",
[206061] = "Arrow Pierce",
[206841] = "Fel Obelisk",
[206867] = "Backslash",
[207662] = "Nightmare Wounds",
[207690] = "Bloodlet",
[208470] = "Necrotic Thrash",
[208684] = "Dire Beast: Hawk",
[208724] = "Crushing Thrash",
[208945] = "Mangle",
[208946] = "Rip",
[209115] = "Nightmare Shards",
[209336] = "Mangle",
[209667] = "Blade Surge",
[209858] = "Necrotic Wound",
[210013] = "Bloodletting Slash",
[210723] = "Ashamane's Frenzy",
[211543] = "Devour",
[211672] = "Mutilated Flesh",
[211846] = "Bloodletting Lunge",
[213431] = "Gnawing Eagle",
[213537] = "Bloody Pin",
[213620] = "Cruel Slice",
[213933] = "Harpoon Swipe",
[213990] = "Shard Bore",
[214676] = "Razorsharp Teeth",
[215169] = "Insect Swarm",
[215311] = "Felblaze",
[215442] = "Shred",
[215506] = "Jagged Quills",
[215537] = "Trauma",
[215604] = "Dragon's Breath",
[215638] = "Leech",
[215721] = "Gut Slash",
[216263] = "Blood in the Water",
[216769] = "Glaive",
[217002] = "Bestial Choke",
[217023] = "Antler Gore",
[217041] = "Shred",
[217142] = "Mangle",
[217163] = "Rend",
[217200] = "Barbed Shot",
[217363] = "Ashamane's Frenzy",
[217369] = "Rake",
[217588] = "Brackish Blade",
[217868] = "Impale",
[217969] = "Grabbed",
[218506] = "Jagged Slash",
[218613] = "Brutal Slash",
[218853] = "Grievous Wound",
[219167] = "Chomp",
[219240] = "Bloody Ricochet",
[219339] = "Thrash",
[219642] = "Doom!",
[219680] = "Impale",
[220352] = "Jagged Debris",
[220642] = "Grab Withered",
[220713] = "Fresh Meat",
[220874] = "Lacerate",
[221326] = "Chaos Seed",
[221352] = "Cut the Flank",
[221422] = "Vicious Bite",
[221759] = "Feathery Stab",
[221770] = "Rend Flesh",
[222179] = "Peck",
[222491] = "Gutripper",
[222631] = "Chaos Pyre",
[223111] = "Rake",
[223572] = "Rend",
[223954] = "Rake",
[224083] = "Eliminate Bug",
[224428] = "Ancient Blade",
[224435] = "Ashamane's Rip",
[225312] = "Deep Slash",
[225484] = "Grievous Rip",
[225963] = "Bloodthirsty Leap",
[226389] = "Destructive Whirlwind",
[226730] = "Fel Slash",
[227742] = "Garrote",
[228007] = "Dancing Blade",
[228275] = "Rend",
[228281] = "Rend",
[228834] = "Jagged Shards",
[229024] = "Crush",
[229044] = "Black Hole",
[229127] = "Powershot",
[229265] = "Garrote",
[229923] = "Talon Rend",
[229951] = "Fel Obelisk",
[230011] = "Cruel Garrote",
[230920] = "Consuming Hunger",
[231003] = "Barbed Talons",
[231823] = "Flailing",
[231998] = "Jagged Abrasion",
[232135] = "Bloody Jab",
[232861] = "Fury of the Heavens",
[234459] = "Consuming Hunger",
[235832] = "Bloodletting Strike",
[235983] = "Melt Armor",
[236338] = "Boiling Tar",
[237194] = "Blade Dance",
[237346] = "Rend",
[237866] = "Bladestorm",
[238618] = "Fel Swipe",
[239642] = "Fel Burn",
[239947] = "Frost Breath",
[240349] = "Fel Flamestrike",
[240449] = "Grievous Wound",
[240539] = "Wild Bite",
[240559] = "Grievous Wound",
[240916] = "Armageddon Hail",
[241070] = "Bloodletting Strike",
[241092] = "Rend",
[241116] = "Impaling Harpoon",
[241212] = "Fel Slash",
[241465] = "Coral Cut",
[241644] = "Mangle",
[241859] = "Dancing Blade",
[241907] = "Blade Dance",
[241939] = "Inject Eggs",
[242376] = "Puncturing Strike",
[242828] = "Dire Thrash",
[242877] = "Bloody Expulsion",
[242926] = "Fan of Virulent Knives",
[242931] = "Rake",
[244040] = "Eskhandar's Rake",
[247318] = "Gushing Wound",
[247511] = "Defile",
[248172] = "Drakefang Butcher",
[251332] = "Rip",
[251768] = "Dread Scythe",
[251815] = "Edge of Obliteration",
[253384] = "Slaughter",
[253516] = "Hexabite",
[254268] = "Bloody Swipe",
[254280] = "Jagged Maw",
[254575] = "Rend",
[254901] = "Blood Frenzy",
[255299] = "Bloodletting",
[255434] = "Serrated Teeth",
[255595] = "Chomp",
[256076] = "Gut Shot",
[256077] = "Gore",
[256314] = "Barbed Strike",
[256476] = "Rending Whirl",
[256498] = "Peck",
[256715] = "Jagged Maw",
[256880] = "Bone Splinter",
[256897] = "Clamping Jaws",
[256914] = "Barbed Blade",
[256965] = "Thorned Barrage",
[257000] = "Heave Ho",
[257036] = "Feral Charge",
[257143] = "Earthen Hold",
[257250] = "Bramblepelt",
[257544] = "Jagged Cut",
[257790] = "Gutripper",
[257971] = "Leaping Thrash",
[258075] = "Itchy Bite",
[258134] = "Makeshift Shiv",
[258143] = "Rending Claws",
[258197] = "Cleave",
[258313] = "Handcuff",
[258718] = "Scratched!",
[258798] = "Razorsharp Teeth",
[258825] = "Vampiric Bite",
[258834] = "Edge of Annihilation",
[259160] = "Gore Rush",
[259220] = "Barbed Net",
[259328] = "Gory Whirl",
[259382] = "Shell Slash",
[259855] = "Fang",
[259873] = "Rip",
[259983] = "Pierce",
[260016] = "Itchy Bite",
[260025] = "Rending Whirl",
[260279] = "Gatling Gun",
[260400] = "Rend",
[260563] = "Gnaw",
[260582] = "Gushing Wound",
[260741] = "Jagged Nettles",
[261428] = "Hangman's Noose",
[261825] = "Gale Force",
[261882] = "Steel Jaw Trap",
[261976] = "Jagged Mandible",
[262115] = "Deep Wounds",
[262143] = "Ravenous Claws",
[262557] = "Rake",
[262677] = "Keelhaul",
[262875] = "Papercut",
[263144] = "Talon Slash",
[263958] = "A Knot of Snakes",
[264145] = "Shatter",
[264150] = "Shatter",
[264210] = "Jagged Mandible",
[264556] = "Tearing Strike",
[265019] = "Savage Cleave",
[265074] = "Rend",
[265165] = "Charging Gore",
[265232] = "Rend",
[265377] = "Hooked Snare",
[265533] = "Blood Maw",
[265948] = "Denticulated",
[266035] = "Bone Splinter",
[266191] = "Whirling Axe",
[266231] = "Severing Axe",
[266505] = "Rending Claw",
[267064] = "Bleeding",
[267080] = "Blight of G'huun",
[267103] = "Blight of G'huun",
[267523] = "Cutting Surge",
[268009] = "Earthquake",
[268796] = "Impaling Spear",
[269576] = "Master Marksman",
[270084] = "Axe Barrage",
[270124] = "Off with their head!",
[270139] = "Gore",
[270337] = "Blood Ravager",
[270343] = "Internal Bleeding",
[270404] = "Bladed Leaves",
[270487] = "Severing Blade",
[270488] = "Deep Wound",
[270524] = "Head Chop",
[270547] = "Blood in the Water",
[270979] = "Rend and Tear",
[271798] = "Click",
[272140] = "Iron Volley",
[272273] = "Rending Cleave",
[273436] = "Gore",
[273450] = "Mulching Strike",
[273470] = "Gut Shot",
[273624] = "Jagged Claws",
[273632] = "Gaping Maw",
[273900] = "Bramble Swipe",
[273909] = "Steelclaw Trap",
[273934] = "Creaming",
[274089] = "Rend",
[274309] = "Bloody Ravager",
[274557] = "INTERNAL BOT - 30 Sec Drain",
[274838] = "Feral Frenzy",
[275895] = "Rend of Kimbul",
[276868] = "Impale",
[277077] = "Big Sharp Nasty Teeth",
[277309] = "Jagged Maw",
[277431] = "Hunter Toxin",
[277432] = "Iron Volley",
[277517] = "Serrated Slash",
[277569] = "Bloodthirsty Rend",
[277579] = "Murderous Volley",
[277592] = "Blood Frenzy",
[277794] = "Paw Swipe",
[278175] = "Bramble Claw",
[278477] = "Endless Void",
[278570] = "Boils and Sores",
[278733] = "Deep Wound",
[278866] = "Carve and Spit",
[279133] = "Rend",
[279416] = "Butcher Cut",
[280286] = "Dagger in the Back",
[280321] = "Garrote",
[280518] = "Flamethrower",
[280569] = "Jagged Tear",
[280701] = "INTERNAL BOT - 2 Minute Drain",
[280940] = "Mangle",
[281711] = "Cut of Death",
[282444] = "Lacerating Claws",
[282592] = "Bleeding Wounds",
[282845] = "Bear Trap",
[283419] = "Rend",
[283667] = "Rupture",
[283668] = "Crimson Tempest",
[283700] = "Rake",
[283708] = "Rip",
[284158] = "Circular Saw",
[284185] = "Discouraging Swipe",
[284228] = "Barbed Shot",
[284263] = "Bouncing Blade",
[284781] = "Grievous Axe",
[285875] = "Rending Bite",
[286269] = "Mangle",
[287615] = "Path of Niuzao",
[288091] = "Gushing Wound",
[288265] = "Lacerate",
[288266] = "Mangle",
[288330] = "Kimbul's Razor Claw",
[288535] = "Rip",
[288539] = "Mangle",
[289292] = "Bestial Throw",
[289373] = "Lacerating Pounce",
[289459] = "Fan of Glaives",
[289772] = "Impale",
[289848] = "Rending Claw",
[290955] = "Grievous Axe",
[292348] = "Bloodletting",
[292473] = "Embrace of Kimbul",
[292611] = "Rake",
[292626] = "Rip",
[292942] = "Iron Shackles",
[293089] = "Jagged Hew",
[293670] = "Chainblade",
[294335] = "Flanking Shred",
[295008] = "Bloody Cleaver",
[295929] = "Rats!",
[296777] = "Bleeding Wound",
[299474] = "Ripping Slash",
[299502] = "Nanoslicer",
[300722] = "Flesh to Stone",
[302295] = "Slicing Claw",
[302474] = "Phantom Laceration",
[302945] = "BEES?!",
[303162] = "Carve Flesh",
[303396] = "Barbed Net",
[303867] = "Burning",
[305822] = "Mark of Blood",
[305968] = "Frenzy",
[307526] = "Blood Ravager",
[307909] = "Oppressive Chains",
[308342] = "Bore",
[308859] = "Carnivorous Bite",
[308886] = "Grasp of the Stonelord",
[308891] = "Jagged Chop",
[308938] = "Lacerating Swipe",
[309515] = "Occupied",
[310830] = "Disorienting Strike",
[311122] = "Jagged Wound",
[311744] = "Deep Wound",
[311748] = "Lacerating Swipe",
[312413] = "Gushing Wound",
[312523] = "Gushing Wound",
[312590] = "Bitten Hand",
[312816] = "Paper Cut",
[313366] = "FX Test Beam",
[313674] = "Jagged Wound",
[314160] = "Penetrating Lance",
[314568] = "Deep Wound",
[314847] = "Decapitate",
[315311] = "Ravage",
[315373] = "Glaive of Suffering",
[315699] = "Anima Drain",
[315711] = "Serrated Strike",
[315805] = "Crippler",
[317503] = "Corrupting Bind",
[317561] = "Swooping Lunge",
[317705] = "Binding Vines",
[318187] = "Gushing Wound",
[318992] = "Bladerang",
[319127] = "Gore",
[320007] = "Gash",
[320147] = "Bleeding",
[320200] = "Stitchneedle",
[320965] = "Deep Wound",
[321037] = "Grapple",
[321538] = "Bloodshed",
[321807] = "Boneflay",
[322796] = "Wicked Gash",
[323001] = "Glass Shards",
[323043] = "Bloodletting",
[323406] = "Jagged Gash",
[324149] = "Flayed Shot",
[324154] = "Dark Stride",
[324429] = "Onslaught",
[325021] = "Mistveil Tear",
[325022] = "Jagged Swipe",