-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathMultiBotTalent.lua
More file actions
1550 lines (1545 loc) · 64.8 KB
/
MultiBotTalent.lua
File metadata and controls
1550 lines (1545 loc) · 64.8 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
MultiBot.data.talent = {}
-- ARROWS --
MultiBot.data.talent.arrows = {
["DeathKnight"] = {
[1] = {
[1] = "7, 1, 4, Down_Arrow_Short",
[2] = "8, 2, 4, Down",
[3] = "8, 2, 5, Down_Arrow"
},
[2] = {
[1] = "1, 1, 2, Down_Arrow",
[2] = "7, 1, 4, Down",
[3] = "7, 1, 5, Down_Arrow",
},
[3] = {
[1] = "13, 4, 5, Down_Arrow",
[2] = "18, 2, 7, Down_Arrow_Short",
[3] = "20, 4, 7, Down_Arrow_Short",
[4] = "25, 2, 9, Down_Arrow_Short"
}
},
["Druid"] = {
[1] = {
[1] = "4, 3, 2, Down_Left_Arrow",
[2] = "4, 2, 3, Down_Arrow_Short",
[3] = "13, 3, 5, Right_Arrow_Short",
[4] = "18, 1, 7, Down_Right_Arrow",
[5] = "18, 3, 7, Right_Arrow_Short",
[6] = "18, 2, 8, Down_Arrow"
},
[2] = {
[1] = "8, 4, 3, Down_Left_Arrow",
[2] = "8, 3, 4, Down_Arrow_Short",
[3] = "10, 2, 5, Down_Arrow",
[4] = "19, 1, 7, Down_Right_Arrow",
[5] = "19, 3, 7, Right_Arrow_Short",
[6] = "19, 2, 8, Down_Arrow",
[7] = "26, 3, 9, Right_Arrow_Short",
[8] = "28, 3, 10, Right_Arrow_Short"
},
[3] = {
[1] = "6, 3, 3, Down_Arrow_Short",
[2] = "7, 1, 4, Down_Arrow",
[3] = "11, 3, 5, Down_Arrow",
[4] = "13, 2, 6, Down_Arrow",
[5] = "20, 2, 9, Down_Arrow_Short",
[6] = "23, 3, 9, Right_Arrow_Short",
[7] = "23, 2, 10, Down_Arrow"
}
},
["Hunter"] = {
[1] = {
[1] = "11, 3, 5, Down_Arrow",
[2] = "13, 2, 6, Down_Arrow",
[3] = "17, 1, 8, Down_Arrow_Short",
[4] = "18, 2, 8, Down_Arrow",
[5] = "21, 3, 9, Down_Arrow_Short"
},
[2] = {
[1] = "6, 3, 3, Down_Arrow_Short",
[2] = "14, 2, 6, Down_Arrow",
[3] = "15, 3, 6, Down_Arrow",
[4] = "21, 2, 9, Down_Arrow_Short",
},
[3] = {
[1] = "8, 1, 4, Down_Arrow",
[2] = "10, 3, 4, Down_Arrow",
[3] = "15, 2, 6, Down_Arrow",
[4] = "17, 1, 7, Down_Arrow_Short",
[5] = "20, 2, 8, Down_Arrow_Short",
[6] = "21, 3, 8, Down",
[7] = "21, 3, 9, Down_Arrow",
[8] = "25, 2, 10, Down_Arrow"
}
},
["Mage"] = {
[1] = {
[1] = "16, 3, 5, Down_Left_Arrow",
[2] = "16, 2, 6, Down_Arrow_Short",
[3] = "19, 2, 7, Down_Arrow_Short",
[4] = "22, 2, 8, Down_Arrow_Short"
},
[2] = {
[1] = "9, 3, 4, Down_Arrow",
[2] = "15, 2, 6, Down_Arrow",
[3] = "20, 2, 8, Down_Arrow",
[4] = "25, 1, 9, Left_Arrow_Short"
},
[3] = {
[1] = "14, 1, 5, Down_Right_Arrow",
[2] = "14, 2, 6, Down_Arrow",
[3] = "20, 1, 7, Left_Arrow_Short",
[4] = "25, 3, 9, Right_Arrow_Short"
}
},
["Paladin"] = {
[1] = {
[1] = "7, 2, 4, Down_Arrow",
[2] = "13, 2, 6, Down_Arrow",
[3] = "18, 2, 8, Down",
[4] = "18, 2, 9, Down_Arrow"
},
[2] = {
[1] = "6, 1, 4, Down_Arrow_Short",
[2] = "12, 2, 6, Down_Arrow",
[3] = "17, 2, 8, Down_Arrow",
[4] = "22, 2, 10, Down_Arrow_Short"
},
[3] = {
[1] = "7, 2, 4, Down",
[2] = "7, 2, 5, Down_Arrow",
[3] = "18, 2, 8, Down_Arrow_Short",
}
},
["Priest"] = {
[1] = {
[1] = "9, 3, 4, Down_Arrow",
[2] = "14, 2, 6, Down_Arrow"
},
[2] = {
[1] = "5, 3, 3, Down_Arrow",
[2] = "13, 2, 6, Down_Arrow"
},
[3] = {
[1] = "1, 2, 1, Right_Arrow_Short",
[2] = "7, 1, 4, Down_Arrow",
[3] = "14, 3, 5, Right_Arrow_Short",
[4] = "14, 2, 6, Down_Arrow",
[5] = "19, 1, 7, Down_Right_Arrow",
[6] = "19, 2, 8, Down_Arrow",
[7] = "24, 2, 10, Down_Arrow"
}
},
["Rogue"] = {
[1] = {
[1] = "3, 3, 2, Down_Arrow",
[2] = "13, 2, 6, Down_Arrow_Short",
[3] = "19, 2, 8, Down_Arrow",
},
[2] = {
[1] = "3, 3, 2, Down_Arrow",
[2] = "5, 2, 3, Down_Arrow_Short",
[3] = "15, 2, 6, Down_Arrow_Short",
[4] = "20, 2, 8, Down_Arrow"
},
[3] = {
[1] = "9, 4, 3, Down_Left",
[2] = "9, 4, 4, Down_Arrow",
[3] = "14, 2, 6, Down_Arrow",
[4] = "20, 2, 8, Down_Arrow_Short"
}
},
["Shaman"] = {
[1] = {
[1] = "7, 2, 4, Down_Arrow",
[2] = "8, 3, 4, Down",
[3] = "8, 3, 5, Down_Arrow",
[4] = "12, 2, 6, Down_Arrow",
[5] = "16, 2, 8, Down_Arrow_Short"
},
[2] = {
[1] = "5, 2, 3, Down_Arrow",
[2] = "14, 2, 6, Down_Arrow",
[3] = "20, 1, 7, left_Arrow_Short",
[4] = "20, 2, 8, Down_Arrow_Short",
[5] = "21, 3, 8, Down_Arrow_Short"
},
[3] = {
[1] = "10, 2, 5, Down",
[2] = "10, 2, 6, Down_Arrow",
[3] = "15, 3, 7, Down_Arrow_Short",
[4] = "23, 3, 9, Right_Arrow_Short"
}
},
["Warlock"] = {
[1] = {
[1] = "10, 3, 4, Down_Arrow",
[2] = "15, 2, 6, Down_Arrow_Short",
[3] = "20, 2, 8, Down_Arrow",
[4] = "25, 3, 9, Right_Arrow_Short"
},
[2] = {
[1] = "12, 1, 4, Down_Right_Arrow",
[2] = "9, 2, 4, Down_Arrow_Short",
[3] = "10, 3, 4, Down_Arrow_Short",
[4] = "12, 2, 5, Down_Arrow",
[5] = "16, 2, 7, Down_Arrow_Short",
[6] = "21, 1, 8, Down_Right_Arrow"
},
[3] = {
[1] = "8, 3, 4, Down_Arrow",
[2] = "9, 1, 5, Down_Arrow_Short",
[3] = "13, 2, 6, Down_Arrow",
[4] = "17, 1, 7, Down_Right",
[5] = "17, 1, 8, Down_Arrow",
[6] = "18, 3, 8, Down_Arrow_Short"
}
},
["Warrior"] = {
[1] = {
[1] = "9, 4, 3, Right_Arrow_Short",
[2] = "14, 2, 6, Down_Arrow",
[3] = "21, 2, 8, Down_Arrow_Short"
},
[2] = {
[1] = "14, 2, 6, Down_Arrow",
[2] = "19, 3, 7, Down_Left",
[3] = "19, 2, 8, Down_Arrow",
[4] = "19, 3, 8, Down_Arrow"
},
[3] = {
[1] = "14, 2, 6, Down_Arrow",
[2] = "23, 2, 10, Down_Arrow_Short"
}
}
}
-- TALENTS --
MultiBot.data.talent.talents = {
["DeathKnight"] = {
[1] = {
[1] = "0, 1, 1, inv_axe_68, 48979, 49483",
[2] = "0, 2, 1, spell_deathknight_subversion, 48997, 49490, 49491",
[3] = "0, 3, 1, ability_upgrademoonglaive, 49182, 49500, 49501, 55225, 55226",
[4] = "0, 1, 2, inv_shoulder_36, 48978, 49390, 49391, 49392, 49393",
[5] = "0, 2, 2, ability_rogue_bloodyeye, 49004, 49508, 49509",
[6] = "0, 3, 2, inv_sword_68, 55107, 55108",
[7] = "0, 1, 3, spell_deathknight_runetap, 48982",
[8] = "0, 2, 3, spell_deathknight_darkconviction, 48987, 49477, 49478, 49479, 49480",
[9] = "0, 3, 3, inv_sword_62, 49467, 50033, 50034",
[10] = "7, 1, 4, spell_deathknight_runetap, 48985, 49488, 49489",
[11] = "0, 3, 4, spell_deathknight_spelldeflection, 49145, 49495, 49497",
[12] = "0, 4, 4, spell_deathknight_vendetta, 49015, 50154, 55136",
[13] = "0, 1, 5, spell_deathknight_deathstrike, 48977, 49394, 49395",
[14] = "0, 3, 5, spell_misc_warsongfocus, 49006, 49526, 50029",
[15] = "0, 4, 5, ability_hunter_rapidkilling, 49005",
[16] = "8, 2, 6, ability_backstab, 48988, 49503, 49504",
[17] = "0, 3, 6, ability_warrior_intensifyrage, 53137, 53138",
[18] = "0, 1, 7, spell_shadow_soulleech, 49027, 49542, 49543",
[19] = "0, 2, 7, spell_deathknight_bladedarmor, 49016",
[20] = "0, 3, 7, spell_deathknight_bloodpresence, 50365, 50371",
[21] = "0, 1, 8, spell_deathknight_butcher2, 62905, 62908",
[22] = "0, 2, 8, spell_shadow_painspike, 49018, 49529, 49530",
[23] = "0, 3, 8, spell_shadow_lifedrain, 55233",
[24] = "0, 1, 9, ability_creature_cursed_02, 49189, 50149, 50150",
[25] = "0, 2, 9, inv_weapon_shortblade_40, 55050",
[26] = "0, 3, 9, spell_deathknight_classicon, 49023, 49533, 49534",
[27] = "0, 2, 10, spell_nature_reincarnation, 61154, 61155, 61156, 61157, 61158",
[28] = "0, 2, 11, inv_sword_07, 49028"
},
[2] = {
[1] = "0, 1, 1, spell_deathknight_icetouch, 49175, 50031, 51456",
[2] = "0, 2, 1, spell_arcane_arcane01, 49455, 50147",
[3] = "0, 3, 1, spell_holy_devotion, 49042, 49786, 49787, 49788, 49789",
[4] = "0, 2, 2, spell_frost_manarecharge, 55061, 55062",
[5] = "0, 3, 2, spell_shadow_darkritual, 49140, 49661, 49662, 49663, 49664",
[6] = "0, 4, 2, ability_dualwield, 49226, 50137, 50138",
[7] = "1, 1, 3, spell_deathknight_icytalons, 50880, 50884, 50885, 50886, 50887",
[8] = "0, 2, 3, spell_shadow_raisedead, 49039",
[9] = "0, 3, 3, inv_weapon_hand_18, 51468, 51472, 51473",
[10] = "0, 2, 4, inv_sword_122, 51123, 51127, 51128, 51129, 55130",
[11] = "0, 3, 4, spell_frost_frostshock, 49149, 50115",
[12] = "0, 4, 4, spell_shadow_twilight, 49137, 49657",
[13] = "0, 2, 5, inv_chest_mail_04, 49186, 51108, 51109",
[14] = "0, 3, 5, spell_nature_removedisease, 49471, 49790, 49791",
[15] = "0, 4, 5, spell_shadow_soulleech_2, 49796",
[16] = "7, 1, 6, spell_deathknight_icytalons, 55610",
[17] = "0, 2, 6, inv_sword_112, 49024, 49538",
[18] = "0, 3, 6, spell_frost_freezingbreath, 49188, 56822, 59057",
[19] = "0, 1, 7, spell_frost_wisp, 50040, 50041, 50043",
[20] = "0, 2, 7, inv_staff_15, 49203",
[21] = "0, 3, 7, spell_deathknight_frostpresence, 50384, 50385",
[22] = "0, 1, 8, ability_dualwieldspecialization, 65661, 66191, 66192",
[23] = "0, 2, 8, inv_weapon_shortblade_79, 54639, 54638, 54637",
[24] = "0, 3, 8, inv_armor_helm_plate_naxxramas_raidwarrior_c_01, 51271",
[25] = "0, 1, 9, spell_fire_elementaldevastation, 49200, 50151, 50152",
[26] = "0, 2, 9, spell_deathknight_empowerruneblade2, 49143",
[27] = "0, 3, 9, inv-sword_53, 50187, 50190, 50191",
[28] = "0, 2, 10, spell_nature_tranquility, 49202, 50127, 50128, 50129, 50130",
[29] = "0, 2, 11, spell_frost_arcticwinds, 49184",
},
[3] = {
[1] = "0, 1, 1, spell_deathknight_plaguestrike, 51745, 51746",
[2] = "0, 2, 1, spell_shadow_burningspirit, 48962, 49567, 49568",
[3] = "0, 3, 1, spell_nature_mirrorimage, 55129, 55130, 55131, 55132, 55133",
[4] = "0, 1, 2, spell_shadow_shadowwordpain, 49036, 49562",
[5] = "0, 2, 2, spell_shadow_deathanddecay, 48963, 49564, 49565",
[6] = "0, 3, 2, spell_deathknight_strangulate, 49588, 49589",
[7] = "0, 4, 2, spell_deathknight_gnaw_ghoul, 48965, 49571, 49572",
[8] = "0, 1, 3, spell_shadow_plaguecloud, 49013, 55236, 55237",
[9] = "0, 2, 3, inv_weapon_shortblade_60, 51459, 51462, 51463, 51464, 51465",
[10] = "0, 3, 3, ability_creature_disease_02, 49158",
[11] = "0, 2, 4, spell_deathknight_summondeathcharger, 49146, 51267",
[12] = "0, 3, 4, ability_criticalstrike, 49219, 49627, 49628",
[13] = "0, 4, 4, spell_deathknight_armyofthedead, 55620, 55623",
[14] = "0, 1, 5, spell_shadow_contagion, 49194",
[15] = "0, 2, 5, spell_shadow_shadowandflame, 49220, 49633, 49635, 49636, 49638",
[16] = "0, 3, 5, spell_shadow_shadesofdarkness, 49223, 49599",
[17] = "0, 1, 6, spell_shadow_shadowfiend, 55666, 55667",
[18] = "0, 2, 6, spell_shadow_antimagicshell, 49224, 49610, 49611",
[19] = "0, 3, 6, spell_shadow_shadetruesight, 49208, 56834, 56835",
[20] = "13, 4, 6, spell_shadow_animatedead, 52143",
[21] = "0, 1, 7, spell_shadow_unholyfrenzy, 66799, 66814, 66815, 66816, 66817",
[22] = "18, 2, 7, spell_deathknight_antimagiczone, 51052",
[23] = "0, 3, 7, spell_deathknight_unholypresence, 50391, 50392",
[24] = "20, 4, 7, ability_ghoulfrenzy, 63560",
[25] = "0, 2, 8, spell_nature_nullifydisease, 49032, 49631, 49632",
[26] = "0, 3, 8, inv_chest_leather_13, 49222",
[27] = "0, 1, 9, spell_shadow_callofbone, 49217, 49654, 49655",
[28] = "25, 2, 9, ability_creature_cursed_03, 51099, 51160, 51161",
[29] = "0, 3, 9, spell_deathknight_scourgestrike, 55090",
[30] = "0, 2, 10, inv_weapon_halberd14, 50117, 50118, 50119, 50120, 50121",
[31] = "0, 2, 11, ability_hunter_pet_bat, 49206",
}
},
["Druid"] = {
[1] = {
[1] = "0, 2, 1, spell_nature_abolishmagic, 16814, 16815, 16816, 16817, 16818",
[2] = "0, 3, 1, spell_arcane_arcane03, 57810, 57811, 57812, 57813, 57814",
[3] = "0, 1, 2, spell_nature_sentinal, 16845, 16846, 16847",
[4] = "0, 2, 2, inv_staff_01, 35363, 35364",
[5] = "0, 4, 2, spell_nature_starfall, 16821, 16822",
[6] = "0, 1, 3, spell_nature_thorns, 16836, 16839, 16840",
[7] = "4, 2, 3, spell_nature_naturesblessing, 16880, 61345, 61346",
[8] = "4, 3, 3, spell_nature_natureguardian, 57865",
[9] = "0, 4, 3, spell_nature_naturetouchgrow, 16819, 16820",
[10] = "0, 2, 4, spell_nature_purge, 16909, 16910, 16911, 16912, 16913",
[11] = "0, 3, 4, spell_arcane_starfire, 16850, 16923, 16924",
[12] = "0, 1, 5, ability_druid_lunarguidance, 33589, 33590, 33591",
[13] = "0, 2, 5, spell_nature_insectswarm, 5570",
[14] = "13, 3, 5, spell_nature_insectswarm, 57849, 57850, 57851",
[15] = "0, 1, 6, ability_druid_dreamstate, 33597, 33599, 33956",
[16] = "0, 2, 6, spell_nature_moonglow, 16896, 16897, 16899",
[17] = "0, 3, 6, ability_druid_balanceofpower, 33592, 33596",
[18] = "0, 2, 7, spell_nature_forceofnature, 24858",
[19] = "18, 3, 7, ability_druid_improvedmoonkinform, 48384, 48395, 48396",
[20] = "0, 4, 7, spell_nature_faeriefire, 33600, 33601, 33602",
[21] = "18, 1, 8, ability_druid_owlkinfrenzy, 48389, 48392, 48393",
[22] = "0, 3, 8, ability_druid_twilightswrath, 33603, 33604, 33605, 33606, 33607",
[23] = "0, 1, 9, ability_druid_eclipse, 48516, 48521, 48525",
[24] = "18, 2, 9, ability_druid_typhoon, 50516",
[25] = "0, 3, 9, ability_druid_forceofnature, 33831",
[26] = "0, 4, 9, ability_druid_galewinds, 48488, 48514",
[27] = "0, 2, 10, ability_druid_earthandsky, 48506, 48510, 48511",
[28] = "0, 2, 11, ability_druid_starfall, 48505",
},
[2] = {
[1] = "0, 2, 1, ability_hunter_pet_hyena, 16934, 16935, 16936, 16937, 16938",
[2] = "0, 3, 1, ability_druid_demoralizingroar, 16858, 16859, 16860, 16861, 16862",
[3] = "0, 1, 2, ability_ambush, 16947, 16948, 16949",
[4] = "0, 2, 2, ability_druid_ravage, 16998, 16999",
[5] = "0, 3, 2, inv_misc_pelt_bear_03, 16929, 16930, 16931",
[6] = "0, 1, 3, spell_nature_spiritwolf, 17002, 24866",
[7] = "0, 2, 3, ability_druid_tigersroar, 61336",
[8] = "0, 3, 3, inv_misc_monsterclaw_04, 16942, 16943, 16944",
[9] = "0, 1, 4, spell_shadow_vampiricaura, 16966, 16968",
[10] = "0, 2, 4, ability_hunter_pet_cat, 16972, 16974, 16975",
[11] = "8, 3, 4, ability_racial_cannibalize, 37116, 37117",
[12] = "8, 4, 4, ability_druid_primalprecision, 48409, 48410",
[13] = "0, 1, 5, ability_druid_bash, 16940, 16941",
[14] = "0, 3, 5, ability_hunter_pet_bear, 49377",
[15] = "0, 4, 5, ability_druid_healinginstincts, 33872, 33873",
[16] = "0, 1, 6, ability_bullrush, 57878, 57880, 57881",
[17] = "10, 2, 6, spell_holy_blessingofagility, 17003, 17004, 17005, 17006, 24894",
[18] = "0, 3, 6, ability_druid_enrage, 33853, 33855, 33856",
[19] = "0, 2, 7, spell_nature_unyeildingstamina, 17007",
[20] = "19, 3, 7, spell_nature_unyeildingstamina, 34297, 34300",
[21] = "0, 4, 7, ability_druid_primaltenacity, 33851, 33852, 33957",
[22] = "19, 1, 8, ability_druid_challangingroar, 57873, 57876, 57877",
[23] = "0, 3, 8, ability_druid_predatoryinstincts, 33859, 33866, 33867",
[24] = "0, 4, 8, ability_druid_infectedwound, 48483, 48484, 48485",
[25] = "0, 1, 9, ability_druid_kingofthejungle, 48492, 48494, 48495",
[26] = "19, 2, 9, ability_druid_mangle2, 33917",
[27] = "26, 3, 9, ability_druid_mangle2, 48532, 48489, 48491",
[28] = "0, 2, 10, ability_druid_primalagression, 48432, 48433, 48434, 51268, 51269",
[29] = "28, 3, 10, ability_druid_rake, 63503",
[30] = "0, 2, 11, ability_druid_berserk, 50334",
},
[3] = {
[1] = "0, 1, 1, spell_nature_regeneration, 17050, 17051",
[2] = "0, 2, 1, spell_nature_healingwavegreater, 17063, 17065, 17066",
[3] = "0, 3, 1, spell_holy_blessingofstamina, 17056, 17058, 17059, 17060, 17061",
[4] = "0, 1, 2, spell_nature_healingtouch, 17069, 17070, 17071, 17072, 17073",
[5] = "0, 2, 2, ability_eyeoftheowl, 17118, 17119, 17120",
[6] = "0, 3, 2, spell_nature_wispsplode, 16833, 16834, 16835",
[7] = "0, 1, 3, spell_frost_windwalkon, 17106, 17107, 17108",
[8] = "0, 2, 3, spell_nature_crystalball, 16864",
[9] = "6, 3, 3, ability_druid_mastershapeshifter, 48411, 48412",
[10] = "0, 2, 4, spell_holy_elunesgrace, 24968, 24969, 24970, 24971, 24972",
[11] = "0, 3, 4, spell_nature_rejuvenation, 17111, 17112, 17113",
[12] = "7, 1, 5, spell_nature_ravenform, 17116",
[13] = "0, 2, 5, spell_nature_protectionformnature, 17104, 24943, 24944, 24945, 24946",
[14] = "0, 4, 5, spell_nature_tranquility, 17123, 17124",
[15] = "0, 1, 6, ability_druid_empoweredtouch, 33879, 33880",
[16] = "11, 3, 6, spell_nature_resistnature, 17074, 17075, 17076, 17077, 17078",
[17] = "0, 1, 7, spell_nature_giftofthewaterspirit, 34151, 34152, 34153",
[18] = "13, 2, 7, inv_relics_idolofrejuvenation, 18562",
[19] = "0, 3, 7, ability_druid_naturalperfection, 33881, 33882, 33883",
[20] = "0, 2, 8, ability_druid_empoweredrejuvination, 33886, 33887, 33888, 33889, 33890",
[21] = "0, 3, 8, ability_druid_giftoftheearthmother, 48496, 48499, 48500",
[22] = "0, 1, 9, ability_druid_replenish, 48539, 48544, 48545",
[23] = "20, 2, 9, ability_druid_treeoflife, 65139",
[24] = "23, 3, 9, ability_druid_improvedtreeform, 48535, 48536, 48537",
[25] = "0, 1, 10, spell_nature_stoneclawtotem, 63410, 63411",
[26] = "0, 3, 10, ability_druid_manatree, 51179, 51180, 51181, 51182, 51183",
[27] = "23, 2, 11, ability_druid_flourish, 48438"
}
},
["Hunter"] = {
[1] = {
[1] = "0, 2, 1, spell_nature_ravenform, 19552, 19553, 19554, 19555, 19556",
[2] = "0, 3, 1, spell_nature_reincarnation, 19583, 19584, 19585, 19586, 19587",
[3] = "0, 1, 2, ability_hunter_silenthunter, 35029, 35030",
[4] = "0, 2, 2, ability_hunter_aspectofthemonkey, 19549, 19550, 19551",
[5] = "0, 3, 2, inv_misc_pelt_bear_03, 19609, 19610, 19612",
[6] = "0, 4, 2, ability_hunter_beastsoothe, 24443, 19575",
[7] = "0, 1, 3, ability_mount_jungletiger, 19559, 19560",
[8] = "0, 2, 3, ability_hunter_aspectmastery, 53265",
[9] = "0, 3, 3, ability_bullrush, 19616, 19617, 19618, 19619, 19620",
[10] = "0, 2, 4, ability_hunter_mendpet, 19572, 19573",
[11] = "0, 3, 4, inv_misc_monsterclaw_04, 19598, 19599, 19600, 19601, 19602",
[12] = "0, 1, 5, ability_druid_demoralizingroar, 19578, 20895",
[13] = "0, 2, 5, ability_devour, 19577",
[14] = "0, 4, 5, spell_nature_abolishmagic, 19590, 19592",
[15] = "0, 1, 6, ability_hunter_animalhandler, 34453, 34454",
[16] = "11, 3, 6, inv_misc_monsterclaw_03, 19621, 19622, 19623, 19624, 19625",
[17] = "0, 1, 7, ability_hunter_ferociousinspiration, 34455, 34459, 34460",
[18] = "13, 2, 7, ability_druid_ferociousbite, 19574",
[19] = "0, 3, 7, ability_hunter_catlikereflexes, 34462, 34464, 34465",
[20] = "17, 1, 8, ability_hunter_invigeration, 53252, 53253",
[21] = "0, 3, 8, ability_hunter_serpentswiftness, 34466, 34467, 34468, 34469, 34470",
[22] = "0, 1, 9, ability_hunter_longevity, 53262, 53263, 53264",
[23] = "18, 2, 9, ability_hunter_beastwithin, 34692",
[24] = "21, 3, 9, ability_hunter_cobrastrikes, 53256, 53259, 53260",
[25] = "0, 2, 10, ability_hunter_separationanxiety, 56314, 56315, 56316, 56317, 56318",
[26] = "0, 2, 11, ability_hunter_beastmastery, 53270"
},
[2] = {
[1] = "0, 1, 1, spell_frost_stun, 19407, 19412",
[2] = "0, 2, 1, ability_hunter_focusedaim, 53620, 53621, 53622",
[3] = "0, 3, 1, ability_searingarrow, 19426, 19427, 19429, 19430, 19431",
[4] = "0, 1, 2, ability_hunter_zenarchery, 34482, 34483, 34484",
[5] = "0, 2, 2, ability_hunter_snipershot, 19421, 19422, 19423",
[6] = "0, 3, 2, ability_piercedamage, 19485, 19487, 19488, 19489, 19490",
[7] = "0, 1, 3, ability_hunter_goforthethroat, 34950, 34954",
[8] = "0, 2, 3, ability_impalingbolt, 19454, 19455, 19456",
[9] = "6, 3, 3, inv_spear_07, 19434",
[10] = "0, 4, 3, ability_hunter_rapidkilling, 34948, 34949",
[11] = "0, 2, 4, ability_hunter_quickshot, 19464, 19465, 19466",
[12] = "0, 3, 4, spell_frost_wizardmark, 19416, 19417, 19418, 19419, 19420",
[13] = "0, 1, 5, spell_arcane_starfire, 35100, 35102",
[14] = "0, 2, 5, ability_hunter_readiness, 23989",
[15] = "0, 3, 5, ability_upgrademoonglaive, 19461, 19462, 24691",
[16] = "0, 1, 6, ability_hunter_combatexperience, 34475, 34476",
[17] = "0, 4, 6, inv_weapon_rifle_06, 19507, 19508, 19509",
[18] = "0, 1, 7, ability_hunter_piercingshots, 53234, 53237, 53238",
[19] = "14, 2, 7, ability_trueshot, 19506",
[20] = "15, 3, 7, ability_upgrademoonglaive, 35104, 35110, 35111",
[21] = "0, 2, 8, ability_hunter_mastermarksman, 34485, 34486, 34487, 34488, 34489",
[22] = "0, 3, 8, ability_hunter_rapidregeneration, 53228, 53232",
[23] = "0, 1, 9, ability_hunter_wildquiver, 53215, 53216, 53217",
[24] = "21, 2, 9, ability_theblackarrow, 34490",
[25] = "0, 3, 9, ability_hunter_improvedsteadyshot, 53221, 53222, 53224",
[26] = "0, 2, 10, ability_hunter_assassinate, 53241, 53243, 53244, 53245, 53246",
[27] = "0, 2, 11, ability_hunter_chimerashot2, 53209"
},
[3] = {
[1] = "0, 1, 1, ability_hunter_improvedtracking, 52783, 52785, 52786, 52787, 52788",
[2] = "0, 2, 1, ability_townwatch, 19498, 19499, 19500",
[3] = "0, 3, 1, ability_racial_bloodrage, 19159, 19160",
[4] = "0, 1, 2, ability_kick, 19290, 19294, 24283",
[5] = "0, 2, 2, spell_nature_stranglevines, 19184, 19387, 19388",
[6] = "0, 3, 2, ability_ensnare, 19376, 63457, 63458",
[7] = "0, 4, 2, ability_hunter_survivalinstincts, 34494, 34496",
[8] = "0, 1, 3, spell_shadow_twilight, 19255, 19256, 19257, 19258, 19259",
[9] = "0, 2, 3, ability_golemstormbolt, 19503",
[10] = "0, 3, 3, ability_parry, 19295, 19297, 19298",
[11] = "0, 4, 3, ability_rogue_feigndeath, 19286, 19287",
[12] = "0, 2, 4, inv_misc_bomb_05, 56333, 56336, 56337",
[13] = "0, 4, 4, ability_hunter_lockandload, 56342, 56343, 56344",
[14] = "8, 1, 5, ability_hunter_huntervswild, 56339, 56340, 56341",
[15] = "0, 2, 5, spell_holy_blessingofstamina, 19370, 19371, 19373",
[16] = "10, 3, 5, ability_warrior_challange, 19306",
[17] = "0, 1, 6, spell_nature_invisibilty, 19168, 19180, 19181, 24296, 24297",
[18] = "0, 3, 6, ability_hunter_resourcefulness, 34491, 34492, 34493",
[19] = "17, 1, 7, ability_rogue_findweakness, 34500, 34502, 34503",
[20] = "15, 2, 7, inv_spear_02, 19386",
[21] = "0, 3, 7, ability_hunter_thrillofthehunt, 34497, 34498, 34499",
[22] = "0, 1, 8, ability_hunter_mastertactitian, 34506, 34507, 34508, 34838, 34839",
[23] = "20, 2, 8, ability_hunter_potentvenom, 53295, 53296, 53297",
[24] = "0, 1, 9, ability_hunter_pointofnoescape, 53298, 53299",
[25] = "0, 2, 9, spell_shadow_painspike, 3674",
[26] = "0, 4, 9, ability_hunter_longshots, 53302, 53303, 53304",
[27] = "21, 3, 10, ability_hunter_huntingparty, 53290, 53291, 53292",
[28] = "25, 2, 11, ability_hunter_explosiveshot, 53301"
}
},
["Mage"] = {
[1] = {
[1] = "0, 1, 1, spell_holy_dispelmagic, 11210, 12592",
[2] = "0, 2, 1, spell_holy_devotion, 11222, 12839, 12840",
[3] = "0, 3, 1, spell_nature_starfall, 11237, 12463, 12464, 16769, 16770",
[4] = "0, 1, 2, spell_arcane_arcaneresilience, 28574, 54658, 54659",
[5] = "0, 2, 2, spell_nature_astralrecalgroup, 29441, 29444",
[6] = "0, 3, 2, spell_shadow_manaburn, 11213, 12574, 12575, 12576, 12577",
[7] = "0, 1, 3, spell_nature_abolishmagic, 11247, 12606",
[8] = "0, 2, 3, spell_nature_wispsplode, 11242, 12467, 12469",
[9] = "0, 3, 3, ability_mage_studentofthemind, 44397, 44398, 44399",
[10] = "0, 4, 3, spell_arcane_studentofmagic, 54646",
[11] = "0, 1, 4, spell_shadow_detectlesserinvisibility, 11252, 12605",
[12] = "0, 2, 4, spell_frost_iceshock, 11255, 12598",
[13] = "0, 3, 4, spell_shadow_siphonmana, 18462, 18463, 18464",
[14] = "0, 4, 4, ability_mage_tormentoftheweak, 29447, 55339, 55340",
[15] = "0, 1, 5, spell_arcane_blink, 31569, 31570",
[16] = "0, 2, 5, spell_nature_enchantarmor, 12043",
[17] = "0, 4, 5, spell_shadow_charm, 11232, 12500, 12501, 12502, 12503",
[18] = "0, 1, 6, spell_arcane_prismaticcloak, 31574, 31575, 54354",
[19] = "16, 2, 6, spell_shadow_teleport, 15058, 15059, 15060",
[20] = "16, 3, 6, spell_arcane_arcanepotency, 31571, 31572",
[21] = "0, 1, 7, spell_nature_starfall, 31579, 31582, 31583",
[22] = "19, 2, 7, spell_nature_lightning, 12042",
[23] = "0, 3, 7, ability_mage_incantersabsorbtion, 44394, 44395, 44396",
[24] = "22, 2, 8, ability_mage_potentspirit, 44378, 44379",
[25] = "0, 3, 8, spell_arcane_mindmastery, 31584, 31585, 31586, 31587, 31588",
[26] = "0, 2, 9, spell_nature_slow, 31589",
[27] = "0, 3, 9, ability_mage_missilebarrage, 44404, 54486, 54488, 54489, 54490",
[28] = "0, 2, 10, ability_mage_netherwindpresence, 44400, 44402, 44403",
[29] = "0, 3, 10, spell_arcane_arcanetorrent, 35578, 35581",
[30] = "0, 2, 11, ability_mage_arcanebarrage, 44425"
},
[2] = {
[1] = "0, 1, 1, spell_fire_fireball, 11078, 11080",
[2] = "0, 2, 1, spell_fire_flameshock, 18459, 18460, 54734",
[3] = "0, 3, 1, spell_fire_flamebolt, 11069, 12338, 12339, 12340, 12341",
[4] = "0, 1, 2, spell_fire_incinerate, 11119, 11120, 12846, 12847, 12848",
[5] = "0, 2, 2, spell_fire_totemofwrath, 54747, 54749",
[6] = "0, 3, 2, ability_mage_worldinflames, 11108, 12349, 12350",
[7] = "0, 1, 3, spell_fire_flare, 11100, 12353",
[8] = "0, 2, 3, spell_fire_meteorstorm, 11103, 12357, 12358",
[9] = "0, 3, 3, spell_fire_fireball02, 11366",
[10] = "0, 4, 3, spell_fire_fire, 11083, 12351",
[11] = "0, 1, 4, spell_fire_soulburn, 11095, 12872, 12873",
[12] = "0, 2, 4, spell_fire_firearmor, 11094, 13043",
[13] = "0, 4, 4, spell_fire_masterofelements, 29074, 29075, 29076",
[14] = "0, 1, 5, spell_fire_playingwithfire, 31638, 31639, 31640",
[15] = "0, 2, 5, spell_nature_wispheal, 11115, 11367, 11368",
[16] = "9, 3, 5, spell_holy_excorcism_02, 11113",
[17] = "0, 1, 6, spell_fire_burningspeed, 31641, 31642",
[18] = "0, 3, 6, spell_fire_immolation, 11124, 12378, 12398, 12399, 12400",
[19] = "0, 1, 7, spell_fire_burnout, 34293, 34295, 34296",
[20] = "15, 2, 7, spell_fire_sealoffire, 11129",
[21] = "0, 3, 7, spell_fire_moltenblood, 31679, 31680",
[22] = "0, 1, 8, ability_mage_fierypayback, 64353, 64357",
[23] = "0, 3, 8, spell_fire_flamebolt, 31656, 31657, 31658",
[24] = "25, 1, 9, ability_mage_firestarter, 44442, 44442",
[25] = "20, 2, 9, inv_misc_head_dragon_01, 31661",
[26] = "0, 3, 9, ability_mage_hotstreak, 44445, 44446, 44448",
[27] = "0, 2, 10, ability_mage_burnout, 44449, 44469, 44470, 44471, 44472",
[28] = "0, 2, 11, ability_mage_livingbomb, 44457"
},
[3] = {
[1] = "0, 1, 1, spell_frost_frostarmor, 11071, 12496, 12497",
[2] = "0, 2, 1, spell_frost_frostbolt02, 11070, 12473, 16763, 16765, 16766",
[3] = "0, 3, 1, spell_frost_icefloes, 31670, 31672, 55094",
[4] = "0, 1, 2, spell_frost_iceshard, 11207, 12672, 15047",
[5] = "0, 2, 2, spell_frost_frostward, 11189, 28332",
[6] = "0, 3, 2, spell_ice_magicdamage, 29438, 29439, 29440",
[7] = "0, 4, 2, spell_frost_wisp, 11175, 12569, 12571",
[8] = "0, 1, 3, spell_frost_frostbolt, 11151, 12952, 12953",
[9] = "0, 2, 3, spell_frost_coldhearted, 12472",
[10] = "0, 3, 3, spell_frost_icestorm, 11185, 12487, 12488",
[11] = "0, 1, 4, spell_shadow_darkritual, 16757, 16758",
[12] = "0, 2, 4, spell_frost_stun, 11160, 12518, 12519",
[13] = "0, 3, 4, spell_frost_frostshock, 11170, 12982, 12983",
[14] = "0, 2, 5, spell_frost_wizardmark, 11958",
[15] = "0, 3, 5, spell_frost_glacier, 11190, 12489, 12490",
[16] = "0, 4, 5, spell_frost_frozencore, 31667, 31668, 31669",
[17] = "14, 1, 6, ability_mage_coldasice, 55091, 55092",
[18] = "0, 3, 6, spell_frost_chillingblast, 11180, 28592, 28593",
[19] = "20, 1, 7, ability_mage_shattershield, 44745, 54787",
[20] = "14, 2, 7, spell_ice_lament, 11426",
[21] = "0, 3, 7, spell_frost_arcticwinds, 31674, 31675, 31676, 31677, 31678",
[22] = "0, 2, 8, spell_frost_frostbolt02, 31682, 31683",
[23] = "0, 3, 8, ability_mage_wintersgrasp, 44543, 44545",
[24] = "0, 1, 9, ability_mage_brainfreeze, 44546, 44548, 44549",
[25] = "0, 2, 9, spell_frost_summonwaterelemental_2, 31687",
[26] = "25, 3, 9, spell_frost_summonwaterelemental_2, 44557, 44560, 44561",
[27] = "0, 2, 10, ability_mage_chilledtothebone, 44566, 44567, 44568, 44570, 44571",
[28] = "0, 2, 11, ability_mage_deepfreeze, 44572"
}
},
["Paladin"] = {
[1] = {
[1] = "0, 2, 1, spell_arcane_blink, 20205, 20206, 20207, 20209, 20208",
[2] = "0, 3, 1, ability_thunderbolt, 20224, 20225, 20330, 20331, 20332",
[3] = "0, 1, 2, spell_holy_holybolt, 20237, 20238, 20239",
[4] = "0, 2, 2, spell_nature_sleep, 20257, 20258, 20259, 20260, 20261",
[5] = "0, 3, 2, spell_holy_unyieldingfaith, 9453, 25836",
[6] = "0, 1, 3, spell_holy_auramastery, 31821",
[7] = "0, 2, 3, spell_holy_greaterheal, 20210, 20212, 20213, 20214, 20215",
[8] = "0, 3, 3, spell_holy_layonhands, 20234, 20235",
[9] = "0, 1, 4, spell_holy_mindsooth, 20254, 20255, 20256",
[10] = "0, 3, 4, spell_holy_sealofwisdom, 20244, 20245",
[11] = "0, 4, 4, ability_paladin_blessedhands, 53660, 53661",
[12] = "0, 1, 5, spell_holy_pureofheart, 31822, 31823",
[13] = "7, 2, 5, spell_holy_heal, 20216",
[14] = "0, 3, 5, spell_holy_healingaura, 20359, 20360, 20361",
[15] = "0, 1, 6, spell_holy_purifyingpower, 31825, 31826",
[16] = "0, 3, 6, spell_holy_power, 5923, 5924, 5925, 5926, 25829",
[17] = "0, 1, 7, spell_holy_lightsgrace, 31833, 31835, 31836",
[18] = "13, 2, 7, spell_holy_searinglight, 20473",
[19] = "0, 3, 7, spell_holy_blessedlife, 31828, 31829, 31830",
[20] = "0, 1, 8, ability_paladin_sacredcleansing, 53551, 53552, 53553",
[21] = "0, 3, 8, spell_holy_holyguidance, 31837, 31838, 31839, 31840, 31841",
[22] = "0, 1, 9, spell_holy_divineillumination, 31842",
[23] = "0, 3, 9, ability_paladin_judgementofthepure, 53671, 53673, 54151, 54154, 54155",
[24] = "18, 2, 10, ability_paladin_infusionoflight, 53569, 53576",
[25] = "0, 3, 10, ability_paladin_enlightenedjudgements, 53556, 53557",
[26] = "0, 2, 11, ability_paladin_beaconoflight, 53563"
},
[2] = {
[1] = "0, 2, 1, spell_holy_blindingheal, 63646, 63647, 63648, 63649, 63650",
[2] = "0, 3, 1, ability_golemthunderclap, 20262, 20263, 20264, 20265, 20266",
[3] = "0, 1, 2, spell_holy_stoicism, 31844, 31845, 53519",
[4] = "0, 2, 2, spell_holy_sealofprotection, 20174, 20175",
[5] = "0, 3, 2, spell_magic_lesserinvisibilty, 20096, 20097, 20098, 20099, 20100",
[6] = "0, 1, 3, spell_holy_powerwordbarrier, 64205",
[7] = "0, 2, 3, spell_holy_sealoffury, 20468, 20469, 20470",
[8] = "0, 3, 3, spell_holy_devotion, 20143, 20144, 20145, 20146, 20147",
[9] = "6, 1, 4, spell_holy_powerwordbarrier, 53527, 53530",
[10] = "0, 2, 4, spell_holy_sealofmight, 20487, 20488",
[11] = "0, 3, 4, spell_holy_devotionaura, 20138, 20139, 20140",
[12] = "0, 2, 5, spell_nature_lightningshield, 20911",
[13] = "0, 3, 5, spell_holy_blessingofstrength, 20177, 20179, 20181, 20180, 20182",
[14] = "0, 1, 6, spell_holy_divineintervention, 31848, 31849",
[15] = "0, 3, 6, inv_sword_20, 20196, 20197, 20198",
[16] = "0, 1, 7, spell_holy_revivechampion, 31785, 33776",
[17] = "12, 2, 7, spell_holy_blessingofprotection, 20925",
[18] = "0, 3, 7, spell_holy_ardentdefender, 31850, 31851, 31852",
[19] = "0, 1, 8, ability_defend, 20127, 20130, 20135",
[20] = "0, 3, 8, spell_holy_weaponmastery, 31858, 31859, 31860",
[21] = "0, 1, 9, ability_paladin_touchedbylight, 53590, 53591, 53592",
[22] = "17, 2, 9, spell_holy_avengersshield, 31935",
[23] = "0, 3, 9, ability_paladin_gaurdedbythelight, 53583, 53585",
[24] = "22, 2, 10, ability_paladin_shieldofthetemplar, 53709, 53710, 53711",
[25] = "0, 3, 10, ability_paladin_judgementsofthejust, 53695, 53696",
[26] = "0, 2, 11, ability_paladin_hammeroftherighteous, 53595"
},
[3] = {
[1] = "0, 2, 1, ability_parry, 20060, 20061, 20062, 20063, 20064",
[2] = "0, 3, 1, spell_frost_windwalkon, 20101, 20102, 20103, 20104, 20105",
[3] = "0, 1, 2, spell_holy_righteousfury, 25956, 25957",
[4] = "0, 2, 2, spell_holy_holysmite, 20335, 20336, 20337",
[5] = "0, 3, 2, spell_holy_fistofjustice, 20042, 20045",
[6] = "0, 1, 3, spell_holy_vindication, 9452, 26016",
[7] = "0, 2, 3, spell_holy_retributionaura, 20117, 20118, 20119, 20120, 20121",
[8] = "0, 3, 3, ability_warrior_innerrage, 20375",
[9] = "0, 4, 3, spell_holy_persuitofjustice, 26022, 26023",
[10] = "0, 1, 4, spell_holy_eyeforaneye, 9799, 25988",
[11] = "0, 3, 4, spell_holy_holysmite, 32043, 35396, 35397",
[12] = "0, 4, 4, spell_holy_crusade, 31866, 31867, 31868",
[13] = "0, 1, 5, inv_hammer_04, 20111, 20112, 20113",
[14] = "0, 3, 5, spell_holy_mindvision, 31869",
[15] = "7, 2, 6, ability_racial_avatar, 20049, 20056, 20057",
[16] = "0, 3, 6, spell_holy_divinepurpose, 31871, 31872",
[17] = "0, 1, 7, ability_paladin_artofwar, 53486, 53488",
[18] = "0, 2, 7, spell_holy_prayerofhealing, 20066",
[19] = "0, 3, 7, ability_paladin_judgementofthewise, 31876, 31877, 31878",
[20] = "18, 2, 8, spell_holy_fanaticism, 31879, 31880, 31881",
[21] = "0, 3, 8, ability_paladin_sanctifiedwrath, 53375, 53376",
[22] = "0, 1, 9, ability_paladin_swiftretribution, 53379, 53484, 53648",
[23] = "0, 2, 9, spell_holy_crusaderstrike, 35395",
[24] = "0, 3, 9, ability_paladin_sheathoflight, 53501, 53502, 53503",
[25] = "0, 2, 10, ability_paladin_righteousvengeance, 53380, 53381, 53382",
[26] = "0, 2, 11, ability_paladin_divinestorm, 53385"
}
},
["Priest"] = {
[1] = {
[1] = "0, 2, 1, spell_magic_magearmor, 14522, 14788, 14789, 14790, 14791",
[2] = "0, 3, 1, spell_holy_sealofvengeance, 47586, 47587, 47588, 52802, 52803",
[3] = "0, 1, 2, spell_nature_manaregentotem, 14523, 14784, 14785",
[4] = "0, 2, 2, spell_holy_innerfire, 14747, 14770, 14771",
[5] = "0, 3, 2, spell_holy_wordfortitude, 14749, 14767",
[6] = "0, 4, 2, spell_nature_tranquility, 14531, 14774",
[7] = "0, 1, 3, spell_nature_sleep, 14521, 14776, 14777",
[8] = "0, 2, 3, spell_frost_windwalkon, 14751",
[9] = "0, 3, 3, spell_holy_powerwordshield, 14748, 14768, 14769",
[10] = "0, 1, 4, spell_holy_absolution, 33167, 33171, 33172",
[11] = "0, 2, 4, ability_hibernation, 14520, 14780, 14781",
[12] = "0, 4, 4, spell_shadow_manaburn, 14750, 14772",
[13] = "0, 1, 5, spell_holy_powerwordshield, 33201, 33202",
[14] = "0, 2, 5, spell_nature_enchantarmor, 18551, 18552, 18553, 18554, 18555",
[15] = "9, 3, 5, spell_holy_pureofheart, 63574",
[16] = "0, 1, 6, spell_shadow_focusedpower, 33186, 33190",
[17] = "0, 3, 6, spell_arcane_mindmastery, 34908, 34909, 34910",
[18] = "0, 1, 7, spell_arcane_focusedpower, 45234, 45243, 45244",
[19] = "14, 2, 7, spell_holy_powerinfusion, 10060",
[20] = "0, 3, 7, spell_holy_chastise, 63504, 63505, 63506",
[21] = "0, 1, 8, spell_holy_holyprotection, 57470, 57472",
[22] = "0, 2, 8, spell_holy_rapture, 47535, 47536, 47537",
[23] = "0, 3, 8, spell_holy_aspiration, 47507, 47508",
[24] = "0, 1, 9, spell_holy_devineaegis, 47509, 47511, 47515",
[25] = "0, 2, 9, spell_holy_painsupression, 33206",
[26] = "0, 3, 9, spell_holy_hopeandgrace, 47516, 47517",
[27] = "0, 2, 10, spell_holy_borrowedtime, 52795, 52797, 52798, 52799, 52800",
[28] = "0, 2, 11, spell_holy_penance, 47540"
},
[2] = {
[1] = "0, 1, 1, spell_holy_healingfocus, 14913, 15012",
[2] = "0, 2, 1, spell_holy_renew, 14908, 15020, 17191",
[3] = "0, 3, 1, spell_holy_sealofsalvation, 14889, 15008, 15009, 15010, 15011",
[4] = "0, 2, 2, spell_holy_spellwarding, 27900, 27901, 27902, 27903, 27904",
[5] = "0, 3, 2, spell_holy_sealofwrath, 18530, 18531, 18533, 18534, 18535",
[6] = "0, 1, 3, spell_holy_restoration, 19236",
[7] = "0, 2, 3, spell_holy_blessedrecovery, 27811, 27815, 27816",
[8] = "0, 4, 3, spell_holy_layonhands, 14892, 15362, 15363",
[9] = "0, 1, 4, spell_holy_purify, 27789, 27790",
[10] = "0, 2, 4, spell_holy_heal02, 14912, 15013, 15014",
[11] = "5, 3, 4, spell_holy_searinglightpriest, 14909, 15017",
[12] = "0, 1, 5, spell_holy_prayerofhealing02, 14911, 15018",
[13] = "0, 2, 5, inv_enchant_essenceeternallarge, 20711",
[14] = "0, 3, 5, spell_holy_spiritualguidence, 14901, 15028, 15029, 15030, 15031",
[15] = "0, 1, 6, spell_holy_surgeoflight, 33150, 33154",
[16] = "0, 3, 6, spell_nature_moonglow, 14898, 15349, 15354, 15355, 15356",
[17] = "0, 1, 7, spell_holy_fanaticism, 34753, 34859, 34860",
[18] = "13, 2, 7, spell_holy_summonlightwell, 724",
[19] = "0, 3, 7, spell_holy_blessedresillience, 33142, 33145, 33146",
[20] = "0, 1, 8, spell_holy_symbolofhope, 64127, 64129",
[21] = "0, 2, 8, spell_holy_greaterheal, 33158, 33159, 33160, 33161, 33162",
[22] = "0, 3, 8, spell_holy_serendipity, 63730, 63733, 63737",
[23] = "0, 1, 9, ability_paladin_infusionoflight, 63534, 63542, 63543",
[24] = "0, 2, 9, spell_holy_circleofrenewal, 34861",
[25] = "0, 3, 9, spell_holy_testoffaith, 47558, 47559, 47560",
[26] = "0, 2, 10, spell_holy_divineprovidence, 47562, 47564, 47565, 47566, 47567",
[27] = "0, 2, 11, spell_holy_guardianspirit, 47788"
},
[3] = {
[1] = "0, 1, 1, spell_shadow_requiem, 15270, 15335, 15336",
[2] = "1, 2, 1, spell_shadow_requiem, 15337, 15338",
[3] = "0, 3, 1, spell_shadow_twilight, 15259, 15307, 15308, 15309, 15310",
[4] = "0, 1, 2, spell_shadow_shadowward, 15318, 15272, 15320",
[5] = "0, 2, 2, spell_shadow_shadowwordpain, 15275, 15317",
[6] = "0, 3, 2, spell_shadow_burningspirit, 15260, 15327, 15328",
[7] = "0, 1, 3, spell_shadow_psychicscream, 15392, 15448",
[8] = "0, 2, 3, spell_shadow_unholyfrenzy, 15273, 15312, 15313, 15314, 15316",
[9] = "0, 3, 3, spell_shadow_siphonmana, 15407",
[10] = "0, 2, 4, spell_magic_lesserinvisibilty, 15274, 15311",
[11] = "0, 3, 4, spell_shadow_chilltouch, 17322, 17323",
[12] = "0, 4, 4, spell_shadow_blackplague, 15257, 15331, 15332",
[13] = "7, 1, 5, spell_shadow_impphaseshift, 15487",
[14] = "0, 2, 5, spell_shadow_unsummonbuilding, 15286",
[15] = "14, 3, 5, spell_shadow_improvedvampiricembrace, 27839, 27840",
[16] = "0, 4, 5, spell_nature_focusedmind, 33213, 33214, 33215",
[17] = "0, 1, 6, spell_shadow_skull, 14910, 33371",
[18] = "0, 3, 6, spell_shadow_devouringplague, 63625, 63626, 63627",
[19] = "14, 2, 7, spell_shadow_shadowform, 15473",
[20] = "0, 3, 7, spell_shadow_shadowpower, 33221, 33222, 33223, 33224, 33225",
[21] = "19, 1, 8, spell_shadow_summonvoidwalker, 47569, 47570",
[22] = "0, 3, 8, spell_shadow_misery, 33191, 33192, 33193",
[23] = "0, 1, 9, spell_shadow_psychichorrors, 64044",
[24] = "19, 2, 9, spell_holy_stoicism, 34914",
[25] = "0, 3, 9, spell_shadow_painandsuffering, 47580, 47581, 47582",
[26] = "0, 3, 10, spell_shadow_mindtwisting, 47573, 47577, 47578, 51166, 51167",
[27] = "24, 2, 11, spell_shadow_dispersion, 47585"
}
},
["Rogue"] = {
[1] = {
[1] = "0, 1, 1, ability_rogue_eviscerate, 14162, 14163, 14164",
[2] = "0, 2, 1, ability_fiegndead, 14144, 14148",
[3] = "0, 3, 1, ability_racial_bloodrage, 14138, 14139, 14140, 14141, 14142",
[4] = "0, 1, 2, ability_druid_disembowel, 14156, 14160, 14161",
[5] = "0, 2, 2, ability_rogue_bloodsplatter, 51632, 51633",
[6] = "0, 4, 2, ability_backstab, 13733, 13865, 13866",
[7] = "0, 1, 3, spell_nature_earthbindtotem, 14983",
[8] = "0, 2, 3, ability_warrior_riposte, 14168, 14169",
[9] = "3, 3, 3, ability_criticalstrike, 14128, 14132, 14135, 14136, 14137",
[10] = "0, 2, 4, ability_rogue_feigndeath, 16513, 16514, 16515",
[11] = "0, 3, 4, ability_poisons, 14113, 14114, 14115, 14116, 14117",
[12] = "0, 1, 5, ability_rogue_fleetfooted, 31208, 31209",
[13] = "0, 2, 5, spell_ice_lament, 14177",
[14] = "0, 3, 5, ability_rogue_kidneyshot, 14174, 14175, 14176",
[15] = "0, 4, 5, ability_rogue_quickrecovery, 31244, 31245",
[16] = "13, 2, 6, spell_shadow_chilltouch, 14186, 14190, 14193, 14194, 14195",
[17] = "0, 3, 6, spell_shadow_deathscream, 14158, 14159",
[18] = "0, 1, 7, ability_rogue_deadlybrew, 51625, 51626",
[19] = "0, 2, 7, ability_hunter_rapidkilling, 58426",
[20] = "0, 3, 7, ability_rogue_deadenednerves, 31380, 31382, 31383",
[21] = "0, 1, 8, ability_rogue_focusedattacks, 51634, 51635, 51636",
[22] = "0, 3, 8, ability_rogue_findweakness, 31234, 31235, 31236",
[23] = "0, 1, 9, ability_creature_poison_06, 31226, 31227, 58410",
[24] = "19, 2, 9, ability_rogue_shadowstrikes, 34412",
[25] = "0, 3, 9, ability_rogue_turnthetables, 51627, 51628, 51629",
[26] = "0, 2, 10, ability_rogue_cuttothechase, 51664, 51665, 51667, 51668, 51669",
[27] = "0, 2, 11, ability_rogue_hungerforblood, 51662"
},
[2] = {
[1] = "0, 1, 1, ability_gouge, 13741, 13793, 13792",
[2] = "0, 2, 1, spell_shadow_ritualofsacrifice, 13732, 13863",
[3] = "0, 3, 1, ability_dualwield, 13715, 13848, 13849, 13851, 13852",
[4] = "0, 1, 2, ability_rogue_slicedice, 14165, 14166",
[5] = "0, 2, 2, ability_parry, 13713, 13853, 13854",
[6] = "0, 4, 2, ability_marksmanship, 13705, 13832, 13843, 13844, 13845",
[7] = "0, 1, 3, spell_shadow_shadowward, 13742, 13872",
[8] = "5, 2, 3, ability_warrior_challange, 14251",
[9] = "3, 3, 3, inv_weapon_shortblade_05, 13706, 13804, 13805, 13806, 13807",
[10] = "0, 1, 4, ability_kick, 13754, 13867",
[11] = "0, 2, 4, ability_rogue_sprint, 13743, 13875",
[12] = "0, 3, 4, spell_nature_invisibilty, 13712, 13788, 13789",
[13] = "0, 4, 4, ability_racial_avatar, 18427, 18428, 18429, 61330, 61331",
[14] = "0, 1, 5, inv_mace_01, 13709, 13800, 13801, 13802, 13803",
[15] = "0, 2, 5, ability_warrior_punishingblow, 13877",
[16] = "0, 3, 5, inv_sword_27, 13960, 13961, 13962, 13963, 13964",
[17] = "15, 2, 6, spell_holy_blessingofstrength, 30919, 30920",
[18] = "0, 3, 6, ability_rogue_bladetwisting, 31124, 31126",
[19] = "0, 1, 7, ability_warrior_revenge, 31122, 31123, 61329",
[20] = "0, 2, 7, spell_shadow_shadowworddominate, 13750",
[21] = "0, 3, 7, ability_rogue_nervesofsteel, 31130, 31131",
[22] = "0, 1, 8, ability_rogue_throwingspecialization, 5952, 51679",
[23] = "0, 3, 8, inv_weapon_shortblade_38, 35541, 35550, 35551, 35552, 35553",
[24] = "0, 1, 9, ability_rogue_unfairadvantage, 51672, 51674",
[25] = "20, 2, 9, ability_rogue_surpriseattack, 32601",
[26] = "0, 3, 9, ability_creature_disease_03, 51682, 58413",
[27] = "0, 2, 10, ability_rogue_preyontheweak, 51685, 51686, 51687, 51688, 51689",
[28] = "0, 2, 11, ability_warrior_focusedrage, 57841"
},
[3] = {
[1] = "0, 1, 1, ability_warrior_decisivestrike, 14179, 58422, 58423, 58424, 58425",
[2] = "0, 2, 1, spell_shadow_charm, 13958, 13970, 13971",
[3] = "0, 3, 1, ability_warrior_warcry, 14057, 14072",
[4] = "0, 1, 2, ability_rogue_feint, 30892, 30893",
[5] = "0, 2, 2, ability_sap, 14076, 14094",
[6] = "0, 3, 2, ability_stealth, 13975, 14062, 14063",
[7] = "0, 1, 3, spell_magic_lesserinvisibilty, 13981, 14066",
[8] = "0, 2, 3, spell_shadow_curse, 14278",
[9] = "0, 3, 3, inv_sword_17, 14171, 14172, 14173",
[10] = "0, 1, 4, spell_nature_mirrorimage, 13983, 14070, 14071",
[11] = "0, 2, 4, spell_shadow_fumble, 13976, 13979, 13980",
[12] = "0, 3, 4, ability_rogue_ambush, 14079, 14080",
[13] = "0, 1, 5, ability_ambush, 30894, 30895",
[14] = "0, 2, 5, spell_shadow_antishadow, 14185",
[15] = "0, 3, 5, spell_shadow_summonsuccubus, 14082, 14083",
[16] = "9, 4, 5, spell_shadow_lifedrain, 48660",
[17] = "0, 1, 6, ability_rogue_masterofsubtlety, 31221, 31222, 31223",
[18] = "0, 3, 6, inv_weapon_crossbow_11, 30902, 30903, 30904, 30905, 30906",
[19] = "0, 1, 7, ability_rogue_envelopingshadows, 31211, 31212, 31213",
[20] = "14, 2, 7, spell_shadow_possession, 14183",
[21] = "0, 3, 7, ability_rogue_cheatdeath, 31228, 31229, 31230",
[22] = "20, 2, 8, ability_rogue_sinistercalling, 31216, 31217, 31218, 31219, 31220",
[23] = "0, 3, 8, ability_rogue_waylay, 51692, 51696",
[24] = "0, 1, 9, ability_rogue_honoramongstthieves, 51698, 51700, 51701",
[25] = "0, 2, 9, ability_rogue_shadowstep, 36554",
[26] = "0, 3, 9, ability_rogue_wrongfullyaccused, 58414, 58415",
[27] = "0, 2, 10, ability_rogue_slaughterfromtheshadows, 51708, 51709, 51710, 51711, 51712",
[28] = "0, 2, 11, ability_rogue_shadowdance, 51713"
}
},
["Shaman"] = {
[1] = {
[1] = "0, 2, 1, spell_nature_wispsplode, 16039, 16109, 16110, 16111, 16112",
[2] = "0, 3, 1, spell_fire_fireball, 16035, 16105, 16106, 16107, 16108",
[3] = "0, 1, 2, spell_fire_immolation, 16038, 16160, 16161",
[4] = "0, 2, 2, spell_nature_spiritarmor, 28996, 28997, 28998",
[5] = "0, 3, 2, spell_fire_elementaldevastation, 30160, 29179, 29180",
[6] = "0, 1, 3, spell_frost_frostward, 16040, 16113, 16114, 16115, 16116",
[7] = "0, 2, 3, spell_shadow_manaburn, 16164",
[8] = "0, 3, 3, spell_fire_volcano, 16089, 60184, 60185, 60186, 60188",
[9] = "0, 1, 4, spell_fire_sealoffire, 16086, 16544",
[10] = "0, 4, 4, spell_shadow_soulleech_2, 29062, 29064, 29065",
[11] = "0, 1, 5, spell_nature_stormreach, 28999, 29000",
[12] = "7, 2, 5, spell_nature_callstorm, 16041",
[13] = "0, 4, 5, spell_nature_unrelentingstorm, 30664, 30665, 30666",
[14] = "0, 1, 6, spell_nature_elementalprecision_1, 30672, 30673, 30674",
[15] = "8, 3, 6, spell_lightning_lightningbolt01, 16578, 16579, 16580, 16581, 16582",
[16] = "12, 2, 7, spell_nature_wispheal, 16166",
[17] = "0, 3, 7, spell_shaman_stormearthfire, 51483, 51485, 51486",
[18] = "0, 1, 8, spell_fire_blueflamering, 63370, 63372",
[19] = "16, 2, 8, spell_shaman_elementaloath, 51466, 51470",
[20] = "0, 3, 8, spell_nature_lightningoverload, 30675, 30678, 30679",
[21] = "0, 1, 9, spell_shaman_astralshift, 51474, 51478, 51479",
[22] = "0, 2, 9, spell_fire_totemofwrath, 30706",
[23] = "0, 3, 9, spell_shaman_lavaflow, 51480, 51481, 51482",
[24] = "0, 2, 10, spell_unused2, 62097, 62098, 62099, 62100, 62101",
[25] = "0, 2, 11, spell_shaman_thunderstorm, 51490"
},
[2] = {
[1] = "0, 1, 1, spell_nature_earthbindtotem, 16259, 16295, 52456",
[2] = "0, 2, 1, spell_nature_stoneclawtotem, 16043, 16130",
[3] = "0, 3, 1, spell_shadow_grimward, 17485, 17486, 17487, 17488, 17489",
[4] = "0, 1, 2, spell_nature_stoneskintotem, 16258, 16293",
[5] = "0, 2, 2, ability_thunderbolt, 16255, 16302, 16303, 16304, 16305",
[6] = "0, 3, 2, spell_nature_spiritwolf, 16262, 16287",
[7] = "0, 4, 2, spell_nature_lightningshield, 16261, 16290, 51881",
[8] = "0, 1, 3, spell_fire_flametounge, 16266, 29079, 29080",
[9] = "0, 3, 3, spell_nature_elementalabsorption, 43338",
[10] = "0, 4, 3, spell_nature_mirrorimage, 16254, 16271, 16272",
[11] = "5, 2, 4, ability_ghoulfrenzy, 16256, 16281, 16282, 16283, 16284",
[12] = "0, 3, 4, spell_holy_devotion, 16252, 16306, 16307, 16308, 16309",
[13] = "0, 1, 5, spell_nature_windfury, 29192, 29193",
[14] = "0, 2, 5, ability_parry, 16268",
[15] = "0, 3, 5, spell_nature_bloodlust, 51883, 51884, 51885",
[16] = "0, 1, 6, spell_nature_unleashedrage, 30802, 30808, 30809",
[17] = "0, 3, 6, ability_hunter_swiftstrike, 29082, 29084, 29086",
[18] = "0, 4, 6, spell_fire_bluecano, 63373, 63374",
[19] = "20, 1, 7, ability_dualwieldspecialization, 30816, 30818, 30819",
[20] = "14, 2, 7, ability_dualwield, 30798",
[21] = "0, 3, 7, ability_shaman_stormstrike, 17364",
[22] = "0, 1, 8, spell_shaman_staticshock, 51525, 51526, 51527",
[23] = "20, 2, 8, ability_shaman_lavalash, 60103",
[24] = "21, 3, 8, spell_shaman_improvedstormstrike, 51521, 51522",
[25] = "0, 1, 9, spell_nature_mentalquickness, 30812, 30813, 30814",
[26] = "0, 2, 9, spell_nature_shamanrage, 30823",
[27] = "0, 3, 9, spell_nature_earthelemental_totem, 51523, 51524",
[28] = "0, 2, 10, spell_shaman_maelstromweapon, 51528, 51529, 51530, 51531, 51532",
[29] = "0, 2, 11, spell_shaman_feralspirit, 51533"
},
[3] = {
[1] = "0, 2, 1, spell_nature_magicimmunity, 16182, 16226, 16227, 16228, 16229",
[2] = "0, 3, 1, spell_nature_moonglow, 16173, 16222, 16223, 16224, 16225",
[3] = "0, 1, 2, spell_nature_reincarnation, 16184, 16209",
[4] = "0, 2, 2, spell_nature_healingtouch, 29187, 29189, 29191",
[5] = "0, 3, 2, spell_frost_manarecharge, 16179, 16214, 16215, 16216, 16217",
[6] = "0, 1, 3, ability_shaman_watershield, 16180, 16196, 16198",
[7] = "0, 2, 3, spell_nature_healingwavelesser, 16181, 16230, 16232",
[8] = "0, 3, 3, spell_frost_frostbolt, 55198",
[9] = "0, 4, 3, spell_nature_undyingstrength, 16176, 16235, 16240",
[10] = "0, 2, 4, spell_nature_manaregentotem, 16187, 16205, 16206",
[11] = "0, 3, 4, spell_nature_tranquility, 16194, 16218, 16219, 16220, 16221",
[12] = "0, 1, 5, spell_nature_healingway, 29206, 29205, 29202",
[13] = "0, 3, 5, spell_nature_ravenform, 16188",
[14] = "0, 4, 5, spell_nature_focusedmind, 30864, 30865, 30866",
[15] = "0, 3, 6, spell_frost_wizardmark, 16178, 16210, 16211, 16212, 16213",
[16] = "0, 1, 7, spell_nature_natureguardian, 30881, 30883, 30884, 30885, 30886",
[17] = "10, 2, 7, spell_frost_summonwaterelemental, 16190",
[18] = "15, 3, 7, ability_shaman_cleansespirit, 51886",
[19] = "0, 1, 8, spell_shaman_blessingofeternals, 51554, 51555",
[20] = "0, 2, 8, spell_nature_healingwavegreater, 30872, 30873",
[21] = "0, 3, 8, spell_nature_natureblessing, 30867, 30868, 30869",
[22] = "0, 1, 9, spell_shaman_ancestralawakening, 51556, 51557, 51558",
[23] = "0, 2, 9, spell_nature_skinofearth, 974",
[24] = "23, 3, 9, spell_nature_skinofearth, 51560, 51561",
[25] = "0, 2, 10, spell_shaman_tidalwaves, 51562, 51563, 51564, 51565, 51566",
[26] = "0, 2, 11, spell_nature_riptide, 61295"
}
},
["Warlock"] = {
[1] = {
[1] = "0, 1, 1, spell_shadow_curseofsargeras, 18827, 18829",
[2] = "0, 2, 1, spell_shadow_unsummonbuilding, 18174, 18175, 18176",
[3] = "0, 3, 1, spell_shadow_abominationexplosion, 17810, 17811, 17812, 17813, 17814",
[4] = "0, 1, 2, spell_shadow_curseofmannoroth, 18179, 18180",
[5] = "0, 2, 2, spell_shadow_haunting, 18213, 18372",
[6] = "0, 3, 2, spell_shadow_burningspirit, 18182, 18183",
[7] = "0, 4, 2, spell_shadow_lifedrain02, 17804, 17805",
[8] = "0, 1, 3, spell_shadow_possession, 53754, 53759",
[9] = "0, 2, 3, spell_shadow_fingerofdeath, 17783, 17784, 17785",
[10] = "0, 3, 3, spell_shadow_contagion, 18288",
[11] = "0, 1, 4, spell_shadow_callofbone, 18218, 18219",
[12] = "0, 2, 4, spell_shadow_twilight, 18094, 18095",
[13] = "0, 4, 4, spell_shadow_abominationexplosion, 32381, 32382, 32383",
[14] = "0, 1, 5, spell_shadow_shadowembrace, 32385, 32387, 32392, 32393, 32394",
[15] = "0, 2, 5, spell_shadow_requiem, 63108",
[16] = "10, 3, 5, spell_shadow_grimward, 18223",
[17] = "0, 1, 6, spell_shadow_summonfelhunter, 54037, 54038",
[18] = "15, 2, 6, spell_shadow_shadetruesight, 18271, 18272, 18273, 18274, 18275",
[19] = "0, 1, 7, ability_warlock_eradication, 47195, 47196, 47197",
[20] = "0, 2, 7, spell_shadow_painfulafflictions, 30060, 30061, 30062, 30063, 30064",
[21] = "0, 3, 7, spell_shadow_darkritual, 18220",
[22] = "0, 1, 8, spell_shadow_deathscream, 30054, 30057",
[23] = "0, 3, 8, spell_shadow_curseofachimonde, 32477, 32483, 32484",
[24] = "0, 1, 9, spell_shadow_deathsembrace, 47198, 47199, 47200",
[25] = "20, 2, 9, spell_shadow_unstableaffliction_3, 30108",
[26] = "25, 3, 9, spell_shadow_unstableaffliction_2, 58435",
[27] = "0, 2, 10, ability_warlock_everlastingaffliction, 47201, 47202, 47203, 47204, 47205",
[28] = "0, 2, 11, ability_warlock_haunt, 48181"
},
[2] = {
[1] = "0, 1, 1, inv_stone_04, 18692, 18693",
[2] = "0, 2, 1, spell_shadow_summonimp, 18694, 18695, 18696",
[3] = "0, 3, 1, spell_shadow_metamorphosis, 18697, 18698, 18699",
[4] = "0, 4, 1, spell_shadow_felmending, 47230, 47231",
[5] = "0, 1, 2, spell_shadow_lifedrain, 18703, 18704",
[6] = "0, 2, 2, spell_shadow_summonvoidwalker, 18705, 18706, 18707",
[7] = "0, 3, 2, spell_holy_magicalsentry, 18731, 18743, 18744",
[8] = "0, 1, 3, spell_shadow_summonsuccubus, 18754, 18755, 18756",
[9] = "0, 2, 3, spell_shadow_gathershadows, 19028",
[10] = "0, 3, 3, spell_nature_removecurse, 18708",
[11] = "0, 4, 3, spell_shadow_ragingscream, 30143, 30144, 30145",
[12] = "9, 2, 4, spell_shadow_shadowworddominate, 18769, 18770, 18771, 18772, 18773",
[13] = "10, 3, 4, spell_shadow_impphaseshift, 18709, 18710",
[14] = "12, 1, 5, spell_shadow_manafeed, 30326",
[15] = "0, 3, 5, inv_ammo_firetar, 18767, 18768",
[16] = "12, 2, 6, spell_shadow_shadowpact, 23785, 23822, 23823, 23824, 23825",
[17] = "0, 3, 6, ability_warlock_moltencore, 47245, 47246, 47247",
[18] = "0, 1, 7, spell_shadow_demonicfortitude, 30319, 30320, 30321",