-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpellIds.cs
1328 lines (1327 loc) · 73.9 KB
/
SpellIds.cs
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
using System;
namespace Simcraft
{
public partial class SimcraftImpl
{
public String A_Murder_of_Crows = "A Murder of Crows";
public String Absolve = "Absolve";
public String Adaptation = "Adaptation";
public String Adrenaline_Rush = "Adrenaline Rush";
public String Afterlife = "Afterlife";
public String Aftermath = "Aftermath";
public String Agony = "Agony";
public String Aimed_Shot = "Aimed Shot";
public String Alter_Time = "Alter Time";
public String Ambush = "Ambush";
public String Amplify_Magic = "Amplify Magic";
public String Ancestral_Guidance = "Ancestral Guidance";
public String Ancestral_Spirit = "Ancestral Spirit";
public String Ancestral_Swiftness = "Ancestral Swiftness";
public String Ancient_Fury = "Ancient Fury";
public String Ancient_Portal_Dalaran = "Ancient Portal: Dalaran";
public String Ancient_Teleport_Dalaran = "Ancient Teleport: Dalaran";
public String Ancient_Zandalari_Knowledge = "Ancient Zandalari Knowledge";
public String Angelic_Bulwark = "Angelic Bulwark";
public String Angelic_Feather = "Angelic Feather";
public String Anger_Management = "Anger Management";
public String Animal_Handler = "Animal Handler";
public String Anticipation = "Anticipation";
public String AntiMagic_Shell = "Anti-Magic Shell";
public String AntiMagic_Zone = "Anti-Magic Zone";
public String Aquatic_Form_Passive = "Aquatic Form Passive";
public String Arcane_Barrage = "Arcane Barrage";
public String Arcane_Blast = "Arcane Blast";
public String Arcane_Brilliance = "Arcane Brilliance";
public String Arcane_Charge = "Arcane Charge";
public String Arcane_Explosion = "Arcane Explosion";
public String Arcane_Mind = "Arcane Mind";
public String Arcane_Missiles = "Arcane Missiles";
public String Arcane_Orb = "Arcane Orb";
public String Arcane_Power = "Arcane Power";
public String Arcane_Shot = "Arcane Shot";
public String Arcane_Torrent = "Arcane_Torrent";
public String Archangel = "Archangel";
public String Archimondes_Darkness = "Archimonde's Darkness";
public String Arcing_Light = "Arcing Light";
public String Ardent_Defender = "Ardent Defender";
public String Army_of_the_Dead = "Army of the Dead";
public String Ascendance = "Ascendance";
public String Ascension = "Ascension";
public String Aspect_of_the_Cheetah = "Aspect of the Cheetah";
public String Aspect_of_the_Fox = "Aspect of the Fox";
public String Aspect_of_the_Pack = "Aspect of the Pack";
public String Asphyxiate = "Asphyxiate";
public String Assassins_Resolve = "Assassin's Resolve";
public String Astral_Communion = "Astral Communion";
public String Astral_Recall = "Astral Recall";
public String Astral_Shift = "Astral Shift";
public String Astral_Showers = "Astral Showers";
public String Astral_Storm = "Astral Storm";
public String Atonement = "Atonement";
public String Attack = "Attack";
public String Auspicious_Spirits = "Auspicious Spirits";
public String Avatar = "Avatar";
public String Avengers_Shield = "Avenger's Shield";
public String Avenging_Wrath = "Avenging Wrath";
public String Backdraft = "Backdraft";
public String Backstab = "Backstab";
public String Balance = "Balance";
public String Balance_of_Power = "Balance of Power";
public String Balance_Overrides_Passive = "Balance Overrides Passive";
public String Bandits_Guile = "Bandit's Guile";
public String Banish = "Banish";
public String Barkskin = "Barkskin";
public String Barrage = "Barrage";
public String Bastion_of_Defense = "Bastion of Defense";
public String Battle_Shout = "Battle Shout";
public String Battle_Stance = "Battle Stance";
public String Battle_Trance = "Battle Trance";
public String Beacon_of_Faith = "Beacon of Faith";
public String Beacon_of_Insight = "Beacon of Insight";
public String Beacon_of_Light = "Beacon of Light";
public String Bear_Form = "Bear Form";
public String Bear_Form_Passive = "Bear Form Passive";
public String Bear_Form_Passive_ = "Bear Form Passive 2";
public String Beast_Cleave = "Beast Cleave";
public String Beast_Lore = "Beast Lore";
public String Berserk = "Berserk";
public String Berserker_Rage = "Berserker Rage";
public String Berserking = "Berserking";
public String Bestial_Wrath = "Bestial Wrath";
public String Binding_Heal = "Binding Heal";
public String Binding_Shot = "Binding Shot";
public String Black_Arrow = "Black Arrow";
public String Blackout_Kick = "Blackout Kick";
public String Blade_Flurry = "Blade Flurry";
public String Bladed_Armor = "Bladed Armor";
public String Bladestorm = "Bladestorm";
public String Bladestorm_OffHand = "Bladestorm Off-Hand";
public String Blast_Wave = "Blast Wave";
public String Blazing_Speed = "Blazing Speed";
public String Blessing_of_Kings = "Blessing of Kings";
public String Blessing_of_Might = "Blessing of Might";
public String Blind = "Blind";
public String Blinding_Light = "Blinding Light";
public String Blindside = "Blindside";
public String Blink = "Blink";
public String Blink_Strikes = "Blink Strikes";
public String Blizzard = "Blizzard";
public String Block = "Block";
public String Blood_Boil = "Blood Boil";
public String Blood_Craze = "Blood Craze";
public String Blood_Fury = "Blood Fury";
public String Blood_Horror = "Blood Horror";
public String Blood_of_the_North = "Blood of the North";
public String Blood_Pact = "Blood Pact";
public String Blood_Plague = "Blood Plague";
public String Blood_Presence = "Blood Presence";
public String Blood_Rites = "Blood Rites";
public String Blood_Tap = "Blood Tap";
public String Bloodbath = "Bloodbath";
public String Bloodlust = "Bloodlust";
public String Bloodsurge = "Bloodsurge";
public String Bloodtalons = "Bloodtalons";
public String Bloodthirst = "Bloodthirst";
public String Bloodthirst_Heal = "Bloodthirst Heal";
public String Body_and_Soul = "Body and Soul";
public String Bombardment = "Bombardment";
public String Bone_Shield = "Bone Shield";
public String Borrowed_Time = "Borrowed Time";
public String Boundless_Conviction = "Boundless Conviction";
public String Brain_Freeze = "Brain Freeze";
public String Breath_of_Fire = "Breath of Fire";
public String Breath_of_Sindragosa = "Breath of Sindragosa";
public String Breath_of_the_Serpent = "Breath of the Serpent";
public String Brewing_Elusive_Brew = "Brewing: Elusive Brew";
public String Brewing_Mana_Tea = "Brewing: Mana Tea";
public String Brewing_Tigereye_Brew = "Brewing: Tigereye Brew";
public String Brewmaster_Training = "Brewmaster Training";
public String Bristling_Fur = "Bristling Fur";
public String Burning_Embers = "Burning Embers";
public String Burning_Rush = "Burning Rush";
public String Burst_of_Speed = "Burst of Speed";
public String Call_of_the_Elements = "Call of the Elements";
public String Call_Pet_ = "Call Pet 5";
public String Camouflage = "Camouflage";
public String Capacitor_Totem = "Capacitor Totem";
public String Careful_Aim = "Careful Aim";
public String Cascade = "Cascade";
public String Cat_Form = "Cat Form";
public String Cataclysm = "Cataclysm";
public String Cauterize = "Cauterize";
public String Celerity = "Celerity";
public String Celestial_Alignment = "Celestial Alignment";
public String Cenarion_Ward = "Cenarion Ward";
public String Censure = "Censure";
public String Chain_Heal = "Chain Heal";
public String Chain_Lightning = "Chain Lightning";
public String Chains_of_Ice = "Chains of Ice";
public String Chakra_Chastise = "Chakra: Chastise";
public String Chakra_Sanctuary = "Chakra: Sanctuary";
public String Chakra_Serenity = "Chakra: Serenity";
public String Chaos_Bolt = "Chaos Bolt";
public String Charge = "Charge";
public String Charging_Ox_Wave = "Charging Ox Wave";
public String Charred_Remains = "Charred remains";
public String Cheap_Shot = "Cheap Shot";
public String Cheat_Death = "Cheat Death";
public String Chi_Brew = "Chi Brew";
public String Chi_Burst = "Chi Burst";
public String Chi_Explosion = "Chi Explosion";
public String Chi_Shaping = "Chi Shaping";
public String Chi_Torpedo = "Chi Torpedo";
public String Chi_Wave = "Chi Wave";
public String Chilblains = "Chilblains";
public String Chimaera_Shot = "Chimaera Shot";
public String Circle_of_Healing = "Circle of Healing";
public String Clarity_of_Power = "Clarity of Power";
public String Clarity_of_Purpose = "Clarity of Purpose";
public String Clarity_of_Will = "Clarity of Will";
public String Claws_of_Shirvallah = "Claws of Shirvallah";
public String Cleanse = "Cleanse";
public String Cleanse_Spirit = "Cleanse Spirit";
public String Clearcasting = "Clearcasting";
public String Clemency = "Clemency";
public String Cloak_and_Dagger = "Cloak and Dagger";
public String Cloak_of_Shadows = "Cloak of Shadows";
public String Cloudburst_Totem = "Cloudburst Totem";
public String Cobra_Shot = "Cobra Shot";
public String Cobra_Strikes = "Cobra Strikes";
public String Cold_Snap = "Cold Snap";
public String Colossus_Smash = "Colossus Smash";
public String Combat_Conditioning = "Combat Conditioning";
public String Combat_Potency = "Combat Potency";
public String Combat_Readiness = "Combat Readiness";
public String Combo_Breaker = "Combo Breaker";
public String Combo_Breaker_Blackout_Kick = "Combo Breaker: Blackout Kick";
public String Combo_Breaker_Chi_Explosion = "Combo Breaker: Chi Explosion";
public String Combo_Breaker_Tiger_Palm = "Combo Breaker: Tiger Palm";
public String Combustion = "Combustion";
public String Comet_Storm = "Comet Storm";
public String Command_Demon = "Command Demon";
public String Commanding_Shout = "Commanding Shout";
public String Concussion_Blow = "Concussion Blow";
public String Concussive_Shot = "Concussive Shot";
public String Conductivity = "Conductivity";
public String Cone_of_Cold = "Cone of Cold";
public String Conflagrate = "Conflagrate";
public String Conjure_Refreshment = "Conjure Refreshment";
public String Conjure_Refreshment_Table = "Conjure Refreshment Table";
public String Consecration = "Consecration";
public String Control_Demon = "Control Demon";
public String Control_Pet = "Control Pet";
public String Control_Undead = "Control Undead";
public String Conversion = "Conversion";
public String Corruption = "Corruption";
public String Counter_Shot = "Counter Shot";
public String Counterspell = "Counterspell";
public String Crackling_Jade_Lightning = "Crackling Jade Lightning";
public String Crane_Style_Techniques = "Crane Style Techniques";
public String Crazed_Berserker = "Crazed Berserker";
public String Create_Healthstone = "Create Healthstone";
public String Create_Soulwell = "Create Soulwell";
public String Crimson_Scourge = "Crimson Scourge";
public String Crimson_Tempest = "Crimson Tempest";
public String Crippling_Poison = "Crippling Poison";
public String Crippling_Shadows = "Crippling Shadows";
public String Critical_Mass = "Critical Mass";
public String Critical_Strikes = "Critical Strikes";
public String Crouching_Tiger_Hidden_Chimaera = "Crouching Tiger, Hidden Chimaera";
public String Cruelty = "Cruelty";
public String Crusader_Strike = "Crusader Strike";
public String Cut_to_the_Chase = "Cut to the Chase";
public String Cyclone = "Cyclone";
public String Dalaran_Brilliance = "Dalaran Brilliance";
public String Dampen_Harm = "Dampen Harm";
public String Dancing_Rune_Weapon = "Dancing Rune Weapon";
public String Dark_Bargain = "Dark Bargain";
public String Dark_Command = "Dark Command";
public String Dark_Intent = "Dark Intent";
public String Dark_Regeneration = "Dark Regeneration";
public String Dark_Simulacrum = "Dark Simulacrum";
public String Dark_Soul = "Dark Soul";
public String Dark_Soul_Instability = "Dark Soul: Instability";
public String Dark_Soul_Knowledge = "Dark Soul: Knowledge";
public String Dark_Soul_Misery = "Dark Soul: Misery";
public String Dark_Succor = "Dark Succor";
public String Dark_Transformation = "Dark Transformation";
public String Dash = "Dash";
public String Daybreak = "Daybreak";
public String Deadly_Poison = "Deadly Poison";
public String Deadly_Throw = "Deadly Throw";
public String Death_and_Decay = "Death and Decay";
public String Death_Coil = "Death Coil";
public String Death_from_Above = "Death from Above";
public String Death_Gate = "Death Gate";
public String Death_Grip = "Death Grip";
public String Death_Heal = "Death Heal";
public String Death_Pact = "Death Pact";
public String Death_Siphon = "Death Siphon";
public String Death_Strike = "Death Strike";
public String Deaths_Advance = "Death's Advance";
public String Decimation = "Decimation";
public String Deep_Freeze = "Deep Freeze";
public String Deep_Insight = "Deep Insight";
public String Deep_Wounds = "Deep Wounds";
public String Defensive_Stance = "Defensive Stance";
public String Defile = "Defile";
public String Demonbolt = "Demonbolt";
public String Demonic_Circle_Summon = "Demonic Circle: Summon";
public String Demonic_Circle_Teleport = "Demonic Circle: Teleport";
public String Demonic_Fury = "Demonic Fury";
public String Demonic_Gateway = "Demonic Gateway";
public String Demonic_Leap = "Demonic Leap";
public String Demonic_Servitude = "Demonic Servitude";
public String Demonic_Tactics = "Demonic Tactics";
public String Demoralizing_Shout = "Demoralizing Shout";
public String Denounce = "Denounce";
public String Desecrated_Ground = "Desecrated Ground";
public String Desperate_Measures = "Desperate Measures";
public String Desperate_Prayer = "Desperate Prayer";
public String Detect_Traps = "Detect Traps";
public String Deterrence = "Deterrence";
public String Detonate_Chi = "Detonate Chi";
public String Detox = "Detox";
public String Devastate = "Devastate";
public String Devastation = "Devastation";
public String Devotion_Aura = "Devotion Aura";
public String Devouring_Plague = "Devouring Plague";
public String Die_by_the_Sword = "Die by the Sword";
public String Diffuse_Magic = "Diffuse Magic";
public String Dire_Beast = "Dire Beast";
public String Dirty_Tricks = "Dirty Tricks";
public String Disable = "Disable";
public String Disabling_Technique = "Disabling Technique";
public String Disengage = "Disengage";
public String Dismiss_Pet = "Dismiss Pet";
public String Dispatch = "Dispatch";
public String Dispel_Magic = "Dispel Magic";
public String Dispersion = "Dispersion";
public String Displacer_Beast = "Displacer Beast";
public String Distract = "Distract";
public String Distracting_Shot = "Distracting Shot";
public String Divine_Aegis = "Divine Aegis";
public String Divine_Burst = "Divine Burst";
public String Divine_Fury = "Divine Fury";
public String Divine_Hymn = "Divine Hymn";
public String Divine_Insight = "Divine Insight";
public String Divine_Protection = "Divine Protection";
public String Divine_Providence = "Divine Providence";
public String Divine_Purpose = "Divine Purpose";
public String Divine_Shield = "Divine Shield";
public String Divine_Star = "Divine Star";
public String Divine_Storm = "Divine Storm";
public String Dizzying_Haze = "Dizzying Haze";
public String Dominate_Mind = "Dominate Mind";
public String Doom = "Doom";
public String Double_Time = "Double Time";
public String Dragon_Roar = "Dragon Roar";
public String Dragons_Breath = "Dragon's Breath";
public String Drain_Life = "Drain Life";
public String Drain_Soul = "Drain Soul";
public String Dreadsteed = "Dreadsteed";
public String Dream_of_Cenarius = "Dream of Cenarius";
public String Dual_Wield = "Dual Wield";
public String Eagle_Eye = "Eagle Eye";
public String Earth_Elemental_Totem = "Earth Elemental Totem";
public String Earth_Shield = "Earth Shield";
public String Earth_Shock = "Earth Shock";
public String Earthbind_Totem = "Earthbind Totem";
public String Earthgrab_Totem = "Earthgrab Totem";
public String Earthquake = "Earthquake";
public String Ebon_Plaguebringer = "Ebon Plaguebringer";
public String Echo_of_Light = "Echo of Light";
public String Echo_of_the_Elements = "Echo of the Elements";
public String Eclipse = "Eclipse";
public String Elemental_Blast = "Elemental Blast";
public String Elemental_Fury = "Elemental Fury";
public String Elemental_Fusion = "Elemental Fusion";
public String Elemental_Mastery = "Elemental Mastery";
public String Elemental_Overload = "Elemental Overload";
public String Elemental_Reach = "Elemental Reach";
public String Elusive_Brew = "Elusive Brew";
public String Elusiveness = "Elusiveness";
public String Emancipate = "Emancipate";
public String Ember_Tap = "Ember Tap";
public String Eminence = "Eminence";
public String Eminence__Statue_ = "Eminence Statue ";
public String Empower_Rune_Weapon = "Empower Rune Weapon";
public String Empowered_Archangel = "Empowered Archangel";
public String Empowered_Avengers_Shield = "Empowered Avenger's Shield";
public String Empowered_Bandits_Guile = "Empowered Bandit's Guile";
public String Empowered_Beacon_of_Light = "Empowered Beacon of Light";
public String Empowered_Bear_Form = "Empowered Bear Form";
public String Empowered_Berserk = "Empowered Berserk";
public String Empowered_Chi = "Empowered Chi";
public String Empowered_Corruption = "Empowered Corruption";
public String Empowered_Demons = "Empowered Demons";
public String Empowered_Divine_Storm = "Empowered Divine Storm";
public String Empowered_Doom = "Empowered Doom";
public String Empowered_Drain_Life = "Empowered Drain Life";
public String Empowered_Envenom = "Empowered Envenom";
public String Empowered_Execute = "Empowered Execute";
public String Empowered_Explosive_Shot = "Empowered Explosive Shot";
public String Empowered_Fan_of_Knives = "Empowered Fan of Knives";
public String Empowered_Gargoyle = "Empowered Gargoyle";
public String Empowered_Hammer_of_Wrath = "Empowered Hammer of Wrath";
public String Empowered_Immolate = "Empowered Immolate";
public String Empowered_Ironbark = "Empowered Ironbark";
public String Empowered_Moonkin = "Empowered Moonkin";
public String Empowered_Obliterate = "Empowered Obliterate";
public String Empowered_Pillar_of_Frost = "Empowered Pillar of Frost";
public String Empowered_Rejuvenation = "Empowered Rejuvenation";
public String Empowered_Seals = "Empowered Seals";
public String Empowered_Spinning_Crane_Kick = "Empowered Spinning Crane Kick";
public String Energetic_Recovery = "Energetic Recovery";
public String Energizing_Brew = "Energizing Brew";
public String Enhanced_Aimed_Shot = "Enhanced Aimed Shot";
public String Enhanced_Arcane_Blast = "Enhanced Arcane Blast";
public String Enhanced_Basic_Attacks = "Enhanced Basic Attacks";
public String Enhanced_Berserk = "Enhanced Berserk";
public String Enhanced_Blade_Flurry = "Enhanced Blade Flurry";
public String Enhanced_Bone_Shield = "Enhanced Bone Shield";
public String Enhanced_Camouflage = "Enhanced Camouflage";
public String Enhanced_Chain_Lightning = "Enhanced Chain Lightning";
public String Enhanced_Chakras = "Enhanced Chakras";
public String Enhanced_Chaos_Bolt = "Enhanced Chaos Bolt";
public String Enhanced_Corruption = "Enhanced Corruption";
public String Enhanced_Crimson_Tempest = "Enhanced Crimson Tempest";
public String Enhanced_Dark_Transformation = "Enhanced Dark Transformation";
public String Enhanced_Death_Coil = "Enhanced Death Coil";
public String Enhanced_Death_Grip = "Enhanced Death Grip";
public String Enhanced_Ember_Tap = "Enhanced Ember Tap";
public String Enhanced_Entrapment = "Enhanced Entrapment";
public String Enhanced_Faerie_Fire = "Enhanced Faerie Fire";
public String Enhanced_Fallen_Crusader = "Enhanced Fallen Crusader";
public String Enhanced_Focused_Will = "Enhanced Focused Will";
public String Enhanced_Frostbolt = "Enhanced Frostbolt";
public String Enhanced_Hand_of_Sacrifice = "Enhanced Hand of Sacrifice";
public String Enhanced_Haunt = "Enhanced Haunt";
public String Enhanced_Havoc = "Enhanced Havoc";
public String Enhanced_Holy_Shock = "Enhanced Holy Shock";
public String Enhanced_Kill_Shot = "Enhanced Kill Shot";
public String Enhanced_Leap_of_Faith = "Enhanced Leap of Faith";
public String Enhanced_Lifebloom = "Enhanced Lifebloom";
public String Enhanced_Mind_Flay = "Enhanced Mind Flay";
public String Enhanced_Moonkin_Form = "Enhanced Moonkin Form";
public String Enhanced_Power_Word_Shield = "Enhanced Power Word: Shield";
public String Enhanced_Prowl = "Enhanced Prowl";
public String Enhanced_Pyrotechnics = "Enhanced Pyrotechnics";
public String Enhanced_Rebirth = "Enhanced Rebirth";
public String Enhanced_Rejuvenation = "Enhanced Rejuvenation";
public String Enhanced_Rend = "Enhanced Rend";
public String Enhanced_Renew = "Enhanced Renew";
public String Enhanced_Roll = "Enhanced Roll";
public String Enhanced_Rune_Tap = "Enhanced Rune Tap";
public String Enhanced_Shadow_Dance = "Enhanced Shadow Dance";
public String Enhanced_Shadow_Orbs = "Enhanced Shadow Orbs";
public String Enhanced_Shadow_Word_Death = "Enhanced Shadow Word: Death";
public String Enhanced_Starsurge = "Enhanced Starsurge";
public String Enhanced_Stealth = "Enhanced Stealth";
public String Enhanced_Sweeping_Strikes = "Enhanced Sweeping Strikes";
public String Enhanced_Tooth_and_Claw = "Enhanced Tooth and Claw";
public String Enhanced_Transcendence = "Enhanced Transcendence";
public String Enhanced_Traps = "Enhanced Traps";
public String Enhanced_Unleash = "Enhanced Unleash";
public String Enhanced_Vanish = "Enhanced Vanish";
public String Enhanced_Vendetta = "Enhanced Vendetta";
public String Enhanced_Weapons = "Enhanced Weapons";
public String Enhanced_Whirlwind = "Enhanced Whirlwind";
public String Enlightenment = "Enlightenment";
public String Enrage = "Enrage";
public String Enraged_Regeneration = "Enraged Regeneration";
public String Enslave_Demon = "Enslave Demon";
public String Entangling_Roots = "Entangling Roots";
public String Entrapment = "Entrapment";
public String Enveloping_Mist = "Enveloping Mist";
public String Envenom = "Envenom";
public String Eradication = "Eradication";
public String Eternal_Flame = "Eternal Flame";
public String Euphoria = "Euphoria";
public String Evanesce = "Evanesce";
public String Evangelism = "Evangelism";
public String Evasion = "Evasion";
public String Eviscerate = "Eviscerate";
public String Evocation = "Evocation";
public String Execute = "Execute";
public String Execute_OffHand = "Execute Off-Hand";
public String Execution_Sentence = "Execution Sentence";
public String Exhilaration = "Exhilaration";
public String Exorcism = "Exorcism";
public String Exotic_Beasts = "Exotic Beasts";
public String Exotic_Munitions = "Exotic Munitions";
public String Expel_Harm = "Expel Harm";
public String Expel_Harm_Driver = "Expel Harm Driver";
public String Explosive_Shot = "Explosive Shot";
public String Explosive_Trap = "Explosive Trap";
public String Eye_of_Kilrogg = "Eye of Kilrogg";
public String Fade = "Fade";
public String Faerie_Fire = "Faerie Fire";
public String Faerie_Swarm = "Faerie Swarm";
public String Fan_of_Knives = "Fan of Knives";
public String Far_Sight = "Far Sight";
public String Fear = "Fear";
public String Fear_Ward = "Fear Ward";
public String Feed_Pet = "Feed Pet";
public String Feign_Death = "Feign Death";
public String Feint = "Feint";
public String Feline_Grace = "Feline Grace";
public String Feline_Swiftness = "Feline Swiftness";
public String Felsteed = "Felsteed";
public String Feral_Instinct = "Feral Instinct";
public String Feral_Overrides_Passive = "Feral Overrides Passive";
public String Feral_Spirit = "Feral Spirit";
public String Ferment = "Ferment";
public String Ferocious_Bite = "Ferocious Bite";
public String Festering_Strike = "Festering Strike";
public String Fighting_Style = "Fighting Style";
public String Final_Verdict = "Final Verdict";
public String Find_Weakness = "Find Weakness";
public String Fingers_of_Frost = "Fingers of Frost";
public String Fire_and_Brimstone = "Fire and Brimstone";
public String Fire_Blast = "Fire Blast";
public String Fire_Elemental_Totem = "Fire Elemental Totem";
public String Fire_Nova = "Fire Nova";
public String Fireball = "Fireball";
public String Fist_of_Justice = "Fist of Justice";
public String Fists_of_Fury = "Fists of Fury";
public String Flame_Shock = "Flame Shock";
public String Flameglow = "Flameglow";
public String Flames_of_Xoroth = "Flames of Xoroth";
public String Flamestrike = "Flamestrike";
public String Flametongue = "Flametongue";
public String Flametongue_Attack = "Flametongue Attack";
public String Flare = "Flare";
public String Flash_Heal = "Flash Heal";
public String Flash_of_Light = "Flash of Light";
public String Fleet_Footed = "Fleet Footed";
public String Flurry = "Flurry";
public String Flying_Serpent_Kick = "Flying Serpent Kick";
public String Focus_and_Harmony = "Focus and Harmony";
public String Focus_Fire = "Focus Fire";
public String Focused_Will = "Focused Will";
public String Focusing_Shot = "Focusing Shot";
public String Force_of_Nature = "Force of Nature";
public String Fortifying_Brew = "Fortifying Brew";
public String Freezing_Grasp = "Freezing Grasp";
public String Freezing_Trap = "Freezing Trap";
public String Frenzied_Regeneration = "Frenzied Regeneration";
public String Frenzy = "Frenzy";
public String Frost_Armor = "Frost Armor";
public String Frost_Bomb = "Frost Bomb";
public String Frost_Fever = "Frost Fever";
public String Frost_Nova = "Frost Nova";
public String Frost_Presence = "Frost Presence";
public String Frost_Shock = "Frost Shock";
public String Frost_Strike = "Frost Strike";
public String Frostbolt = "Frostbolt";
public String Frostfire_Bolt = "Frostfire Bolt";
public String Frostjaw = "Frostjaw";
public String Frozen_Orb = "Frozen Orb";
public String Frozen_Power = "Frozen Power";
public String Fulmination = "Fulmination";
public String Furious_Strikes = "Furious Strikes";
public String Garrote = "Garrote";
public String Genesis = "Genesis";
public String Germination = "Germination";
public String Ghost_Wolf = "Ghost Wolf";
public String Gift_of_the_Ox = "Gift of the Ox";
public String Gift_of_the_Serpent = "Gift of the Serpent";
public String Gladiator_Stance = "Gladiator Stance";
public String Gladiators_Resolve = "Gladiator's Resolve";
public String Glaive_Toss = "Glaive Toss";
public String Glyph_of_Avenging_Wrath = "Glyph of Avenging Wrath";
public String Glyph_of_Rejuvenation = "Glyph of Rejuvenation";
public String Go_for_the_Throat = "Go for the Throat";
public String Gorefiends_Grasp = "Gorefiend's Grasp";
public String Gouge = "Gouge";
public String Grace = "Grace";
public String Grace_of_Air = "Grace of Air";
public String Grand_Crusader = "Grand Crusader";
public String Greater_Invisibility = "Greater Invisibility";
public String Grimoire_of_Sacrifice = "Grimoire of Sacrifice";
public String Grimoire_of_Service = "Grimoire of Service";
public String Grimoire_of_Supremacy = "Grimoire of Supremacy";
public String Grimoire_of_Synergy = "Grimoire of Synergy";
public String Grip_of_Death = "Grip of Death";
public String Grounding_Totem = "Grounding Totem";
public String Growl = "Growl";
public String Guard = "Guard";
public String Guarded_by_the_Light = "Guarded by the Light";
public String Guardian_of_Ancient_Kings = "Guardian of Ancient Kings";
public String Guardian_of_Elune = "Guardian of Elune";
public String Guardian_Overrides_Passive = "Guardian Overrides Passive";
public String Guardian_Spirit = "Guardian Spirit";
public String Halo = "Halo";
public String Hammer_of_Justice = "Hammer of Justice";
public String Hammer_of_the_Righteous = "Hammer of the Righteous";
public String Hammer_of_Wrath = "Hammer of Wrath";
public String Hamstring = "Hamstring";
public String Hand_of_Freedom = "Hand of Freedom";
public String Hand_of_Guldan = "Hand of Gul'dan";
public String Hand_of_Light = "Hand of Light";
public String Hand_of_Protection = "Hand of Protection";
public String Hand_of_Purity = "Hand of Purity";
public String Hand_of_Sacrifice = "Hand of Sacrifice";
public String Hand_of_Salvation = "Hand of Salvation";
public String Harsh_Word = "Harsh Word";
public String Harvest_Life = "Harvest Life";
public String Haunt = "Haunt";
public String Havoc = "Havoc";
public String Headlong_Rush = "Headlong Rush";
public String Heal = "Heal";
public String Healing_Elixirs = "Healing Elixirs";
public String Healing_Rain = "Healing Rain";
public String Healing_Sphere = "Healing Sphere";
public String Healing_Stream_Totem = "Healing Stream Totem";
public String Healing_Surge = "Healing Surge";
public String Healing_Tide_Totem = "Healing Tide Totem";
public String Healing_Touch = "Healing Touch";
public String Healing_Wave = "Healing Wave";
public String Health_Funnel = "Health Funnel";
public String Heart_of_the_Crusader = "Heart of the Crusader";
public String Heart_of_the_Wild = "Heart of the Wild";
public String Heavy_Artilery = "Heavy Artilery";
public String Heavy_Repercussions = "Heavy Repercussions";
public String Hellfire = "Hellfire";
public String Hemorrhage = "Hemorrhage";
public String Heroic_Leap = "Heroic Leap";
public String Heroic_Strike = "Heroic Strike";
public String Heroic_Throw = "Heroic Throw";
public String Heroism = "Heroism";
public String Hex = "Hex";
public String High_Tide = "High Tide";
public String Holy_Avenger = "Holy Avenger";
public String Holy_Fire = "Holy Fire";
public String Holy_Insight = "Holy Insight";
public String Holy_Light = "Holy Light";
public String Holy_Nova = "Holy Nova";
public String Holy_Prism = "Holy Prism";
public String Holy_Radiance = "Holy Radiance";
public String Holy_Shield = "Holy Shield";
public String Holy_Shock = "Holy Shock";
public String Holy_Word_Chastise = "Holy Word: Chastise";
public String Holy_Word_Sanctuary = "Holy Word: Sanctuary";
public String Holy_Word_Serenity = "Holy Word: Serenity";
public String Holy_Wrath = "Holy Wrath";
public String Honor_Among_Thieves = "Honor Among Thieves";
public String Horn_of_Winter = "Horn of Winter";
public String Hotfix_Passive = "Hotfix Passive";
public String Howl_of_Terror = "Howl of Terror";
public String Howling_Blast = "Howling Blast";
public String Hurricane = "Hurricane";
public String Hurricane_Strike = "Hurricane Strike";
public String Ice_Barrier = "Ice Barrier";
public String Ice_Block = "Ice Block";
public String Ice_Floes = "Ice Floes";
public String Ice_Lance = "Ice Lance";
public String Ice_Nova = "Ice Nova";
public String Ice_Shards = "Ice Shards";
public String Ice_Trap = "Ice Trap";
public String Ice_Ward = "Ice Ward";
public String Icebound_Fortitude = "Icebound Fortitude";
public String Icy_Talons = "Icy Talons";
public String Icy_Touch = "Icy Touch";
public String Icy_Veins = "Icy Veins";
public String Immolate = "Immolate";
public String Impending_Victory = "Impending Victory";
public String Improved_Arcane_Power = "Improved Arcane Power";
public String Improved_Beast_Cleave = "Improved Beast Cleave";
public String Improved_Blink = "Improved Blink";
public String Improved_Blizzard = "Improved Blizzard";
public String Improved_Block = "Improved Block";
public String Improved_Blood_Presence = "Improved Blood Presence";
public String Improved_Breath_of_Fire = "Improved Breath of Fire";
public String Improved_Chain_Heal = "Improved Chain Heal";
public String Improved_Consecration = "Improved Consecration";
public String Improved_Daybreak = "Improved Daybreak";
public String Improved_Death_Grip = "Improved Death Grip";
public String Improved_Defensive_Stance = "Improved Defensive Stance";
public String Improved_Die_by_the_Sword = "Improved Die by the Sword";
public String Improved_Drain_Soul = "Improved Drain Soul";
public String Improved_Dual_Wield = "Improved Dual Wield";
public String Improved_Evocation = "Improved Evocation";
public String Improved_Flame_Shock = "Improved Flame Shock";
public String Improved_Flamestrike = "Improved Flamestrike";
public String Improved_Focus = "Improved Focus";
public String Improved_Focus_Fire = "Improved Focus Fire";
public String Improved_Forbearance = "Improved Forbearance";
public String Improved_Frost_Presence = "Improved Frost Presence";
public String Improved_Guard = "Improved Guard";
public String Improved_Heroic_Leap = "Improved Heroic Leap";
public String Improved_Heroic_Throw = "Improved Heroic Throw";
public String Improved_Icy_Veins = "Improved Icy Veins";
public String Improved_Inferno_Blast = "Improved Inferno Blast";
public String Improved_Life_Cocoon = "Improved Life Cocoon";
public String Improved_Lightning_Shield = "Improved Lightning Shield";
public String Improved_Maelstrom_Weapon = "Improved Maelstrom Weapon";
public String Improved_Poisons = "Improved Poisons";
public String Improved_Rake = "Improved Rake";
public String Improved_Recklessness = "Improved Recklessness";
public String Improved_Reincarnation = "Improved Reincarnation";
public String Improved_Renewing_Mist = "Improved Renewing Mist";
public String Improved_Riptide = "Improved Riptide";
public String Improved_Runeforges = "Improved Runeforges";
public String Improved_Scorch = "Improved Scorch";
public String Improved_Slice_and_Dice = "Improved Slice and Dice";
public String Improved_Soul_Reaper = "Improved Soul Reaper";
public String Improved_Unholy_Presence = "Improved Unholy Presence";
public String Improved_Water_Elemental = "Improved Water Elemental";
public String Incanters_Flow = "Incanter's Flow";
public String Incapacitating_Roar = "Incapacitating Roar";
public String Incarnation_Chosen_of_Elune = "Incarnation: Chosen of Elune";
public String Incarnation_King_of_the_Jungle = "Incarnation: King of the Jungle";
public String Incarnation_Son_of_Ursoc = "Incarnation: Son of Ursoc";
public String Incarnation_Tree_of_Life = "Incarnation: Tree of Life";
public String Incinerate = "Incinerate";
public String Incineration = "Incineration";
public String Infected_Wounds = "Infected Wounds";
public String Inferno_Blast = "Inferno Blast";
public String Infusion_of_Light = "Infusion of Light";
public String Insanity = "Insanity";
public String Inspiring_Presence = "Inspiring Presence";
public String Internal_Bleeding = "Internal Bleeding";
public String Internal_Medicine = "Internal Medicine";
public String Intervene = "Intervene";
public String Intimidating_Shout = "Intimidating Shout";
public String Intimidation = "Intimidation";
public String Invigoration = "Invigoration";
public String Invisibility = "Invisibility";
public String Invoke_Xuen_the_White_Tiger = "Invoke Xuen, the White Tiger";
public String Iron_Hawk = "Iron Hawk";
public String Ironbark = "Ironbark";
public String Jab = "Jab";
public String Jade_Mists = "Jade Mists";
public String Jailers_Judgment = "Jailer's Judgment";
public String Judgment = "Judgment";
public String Judgments_of_the_Wise = "Judgments of the Wise";
public String Juggernaut = "Juggernaut";
public String Keg_Smash = "Keg Smash";
public String Kick = "Kick";
public String Kidney_Shot = "Kidney Shot";
public String Kiljaedens_Cunning = "Kil'jaeden's Cunning";
public String Kill_Command = "Kill Command";
public String Kill_Shot = "Kill Shot";
public String Killer_Instinct = "Killer Instinct";
public String Killing_Machine = "Killing Machine";
public String Killing_Spree = "Killing Spree";
public String Kindling = "Kindling";
public String Kindred_Spirits = "Kindred Spirits";
public String Lacerate = "Lacerate";
public String Last_Stand = "Last Stand";
public String Lava_Burst = "Lava Burst";
public String Lava_Lash = "Lava Lash";
public String Lava_Surge = "Lava Surge";
public String Lay_on_Hands = "Lay on Hands";
public String Leader_of_the_Pack = "Leader of the Pack";
public String Leap_of_Faith = "Leap of Faith";
public String Leather_Specialization = "Leather Specialization";
public String Leeching_Poison = "Leeching Poison";
public String Leer_of_the_Ox = "Leer of the Ox";
public String Leg_Sweep = "Leg Sweep";
public String Legacy_of_the_Emperor = "Legacy of the Emperor";
public String Legacy_of_the_White_Tiger = "Legacy of the White Tiger";
public String Lethal_Shots = "Lethal Shots";
public String Levitate = "Levitate";
public String Lichborne = "Lichborne";
public String Life_Cocoon = "Life Cocoon";
public String Life_Tap = "Life Tap";
public String Lifebloom = "Lifebloom";
public String Light_of_Dawn = "Light of Dawn";
public String Light_of_the_Ancient_Kings = "Light of the Ancient Kings";
public String Lightning_Bolt = "Lightning Bolt";
public String Lightning_Reflexes = "Lightning Reflexes";
public String Lightning_Shield = "Lightning Shield";
public String Lightning_Strikes = "Lightning Strikes";
public String Lights_Beacon = "Light's Beacon";
public String Lights_Hammer = "Light's Hammer";
public String Lightwell = "Lightwell";
public String Lightwell_Renew = "Lightwell Renew";
public String Liquid_Magma = "Liquid Magma";
public String Living_Bomb = "Living Bomb";
public String Living_Seed = "Living Seed";
public int Lock_and_Load = 168980;
public String Lone_Wolf = "Lone Wolf";
public String Long_Arm_of_the_Law = "Long Arm of the Law";
public String Lunar_Guidance = "Lunar Guidance";
public String Lunar_Inspiration = "Lunar Inspiration";
public String Maelstrom_Weapon = "Maelstrom Weapon";
public String Mage_Armor = "Mage Armor";
public String Mage_Bomb = "Mage Bomb";
public String Magma_Totem = "Magma Totem";
public String Mail = "Mail";
public String Mail_Specialization = "Mail Specialization";
public String Maim = "Maim";
public String Main_Gauche = "Main Gauche";
public String Malfurions_Gift = "Malfurion's Gift";
public String Mana_Attunement = "Mana Attunement";
public String Mana_Meditation = "Mana Meditation";
public String Mana_Tea = "Mana Tea";
public String Mangle = "Mangle";
public String Mannoroths_Fury = "Mannoroth's Fury";
public String Mark_of_the_Wild = "Mark of the Wild";
public String Marked_for_Death = "Marked for Death";
public String Mass_Dispel = "Mass Dispel";
public String Mass_Entanglement = "Mass Entanglement";
public String Mass_Spell_Reflection = "Mass Spell Reflection";
public String Master_of_Subtlety = "Master of Subtlety";
public String Master_Poisoner = "Master Poisoner";
public String Mastermind = "Mastermind";
public String Masters_Call = "Master's Call";
public String Mastery_Blood_Shield = "Mastery: Blood Shield";
public String Mastery_Bottled_Fury = "Mastery: Bottled Fury";
public String Mastery_Critical_Block = "Mastery: Critical Block";
public String Mastery_Deep_Healing = "Mastery: Deep Healing";
public String Mastery_Divine_Bulwark = "Mastery: Divine Bulwark";
public String Mastery_Dreadblade = "Mastery: Dreadblade";
public String Mastery_Echo_of_Light = "Mastery: Echo of Light";
public String Mastery_Elusive_Brawler = "Mastery: Elusive Brawler";
public String Mastery_Emberstorm = "Mastery: Emberstorm";
public String Mastery_Enhanced_Elements = "Mastery: Enhanced Elements";
public String Mastery_Essence_of_the_Viper = "Mastery: Essence of the Viper";
public String Mastery_Executioner = "Mastery: Executioner";
public String Mastery_Frozen_Heart = "Mastery: Frozen Heart";
public String Mastery_Gift_of_the_Serpent = "Mastery: Gift of the Serpent";
public String Mastery_Hand_of_Light = "Mastery: Hand of Light";
public String Mastery_Harmony = "Mastery: Harmony";
public String Mastery_Icicles = "Mastery: Icicles";
public String Mastery_Ignite = "Mastery: Ignite";
public String Mastery_Illuminated_Healing = "Mastery: Illuminated Healing";
public String Mastery_Main_Gauche = "Mastery: Main Gauche";
public String Mastery_Mana_Adept = "Mastery: Mana Adept";
public String Mastery_Master_Demonologist = "Mastery: Master Demonologist";
public String Mastery_Master_of_Beasts = "Mastery: Master of Beasts";
public String Mastery_Mental_Anguish = "Mastery: Mental Anguish";
public String Mastery_Molten_Earth = "Mastery: Molten Earth";
public String Mastery_Potent_Afflictions = "Mastery: Potent Afflictions";
public String Mastery_Potent_Poisons = "Mastery: Potent Poisons";
public String Mastery_Primal_Tenacity = "Mastery: Primal Tenacity";
public String Mastery_Razor_Claws = "Mastery: Razor Claws";
public String Mastery_Shield_Discipline = "Mastery: Shield Discipline";
public String Mastery_Sniper_Training = "Mastery: Sniper Training";
public String Mastery_Total_Eclipse = "Mastery: Total Eclipse";
public String Mastery_Unshackled_Fury = "Mastery: Unshackled Fury";
public String Mastery_Weapons_Master = "Mastery: Weapons Master";
public String Maul = "Maul";
public String Meat_Cleaver = "Meat Cleaver";
public String Meditation = "Meditation";
public String Mend_Pet = "Mend Pet";
public String Mental_Quickness = "Mental Quickness";
public String Metamorphosis = "Metamorphosis";
public String Meteor = "Meteor";
public String Might_of_the_Frozen_Wastes = "Might of the Frozen Wastes";
public String Mighty_Bash = "Mighty Bash";
public String Mind_Blast = "Mind Blast";
public String Mind_Flay = "Mind Flay";
public String Mind_Freeze = "Mind Freeze";
public String Mind_Quickening = "Mind Quickening";
public String Mind_Sear = "Mind Sear";
public String Mind_Spike = "Mind Spike";
public String Mind_Vision = "Mind Vision";
public String Mindbender = "Mindbender";
public String Mirror_Image = "Mirror Image";
public String Misdirection = "Misdirection";
public String Mocking_Banner = "Mocking Banner";
public String Molten_Armor = "Molten Armor";
public String Molten_Core = "Molten Core";
public String Moment_of_Clarity = "Moment of Clarity";
public String Momentum = "Momentum";
public String Monk_Weapon_Override_Driver = "Monk Weapon Override Driver";
public String Moonfire = "Moonfire";
public String Moonkin_Form = "Moonkin Form";
public String Mortal_Coil = "Mortal Coil";
public String Mortal_Strike = "Mortal Strike";
public String MultiShot = "Multi-Shot";
public String Mutilate = "Mutilate";
public String Mutilate_OffHand = "Mutilate Off-Hand";
public String Mysticism = "Mysticism";
public String Narrow_Escape = "Narrow Escape";
public String Natural_Insight = "Natural Insight";
public String Naturalist = "Naturalist";
public String Natures_Control = "Nature's Control";
public String Natures_Cure = "Nature's Cure";
public String Natures_Guardian = "Nature's Guardian";
public String Natures_Swiftness = "Nature's Swiftness";
public String Natures_Vigil = "Nature's Vigil";
public String Necrosis = "Necrosis";
public String Necrotic_Plague = "Necrotic Plague";
public String Nerve_Strike = "Nerve Strike";
public String Nether_Attunement = "Nether Attunement";
public String Nether_Tempest = "Nether Tempest";
public String Nethermancy = "Nethermancy";
public String Nightfall = "Nightfall";
public String Nightstalker = "Nightstalker";
public String Nimble_Brew = "Nimble Brew";
public String Nurturing_Instinct = "Nurturing Instinct";
public String Obliterate = "Obliterate";
public String Omen_of_Clarity = "Omen of Clarity";
public String On_a_Pale_Horse = "On a Pale Horse";
public String Opportunity_Strike = "Opportunity Strike";
public String Outbreak = "Outbreak";
public String Overpowered = "Overpowered";
public String Pain_Suppression = "Pain Suppression";
public String Paralysis = "Paralysis";
public String Parry = "Parry";
public String Path_of_Frost = "Path of Frost";
public String Penance = "Penance";
public String Phantasm = "Phantasm";
public String Pick_Lock = "Pick Lock";
public String Pick_Pocket = "Pick Pocket";
public String Piercing_Howl = "Piercing Howl";
public String Pillar_of_Frost = "Pillar of Frost";
public String Plague_Leech = "Plague Leech";
public String Plague_Strike = "Plague Strike";
public String Plaguebearer = "Plaguebearer";
public String Plate_Specialization = "Plate Specialization";
public String Polymorph = "Polymorph";
public String Pool_of_Mists = "Pool of Mists";
public String Portal_Dalaran = "Portal: Dalaran";
public String Portal_Darnassus = "Portal: Darnassus";
public String Portal_Exodar = "Portal: Exodar";
public String Portal_Ironforge = "Portal: Ironforge";
public String Portal_Orgrimmar = "Portal: Orgrimmar";
public String Portal_Shattrath = "Portal: Shattrath";
public String Portal_Silvermoon = "Portal: Silvermoon";
public String Portal_Stonard = "Portal: Stonard";
public String Portal_Stormshield = "Portal: Stormshield";
public String Portal_Stormwind = "Portal: Stormwind";
public String Portal_Theramore = "Portal: Theramore";
public String Portal_Thunder_Bluff = "Portal: Thunder Bluff";
public String Portal_Tol_Barad = "Portal: Tol Barad";
public String Portal_Undercity = "Portal: Undercity";
public String Portal_Vale_of_Eternal_Blossoms = "Portal: Vale of Eternal Blossoms";
public String Portal_Warspear = "Portal: Warspear";
public String Posthaste = "Posthaste";
public String Power_Infusion = "Power Infusion";
public String Power_of_the_Grave = "Power of the Grave";
public String Power_Strikes = "Power Strikes";
public String Power_Word_Barrier = "Power Word: Barrier";
public String Power_Word_Fortitude = "Power Word: Fortitude";
public String Power_Word_Shield = "Power Word: Shield";
public String Power_Word_Solace = "Power Word: Solace";
public String Powershot = "Powershot";
public String Prayer_of_Healing = "Prayer of Healing";
public String Prayer_of_Mending = "Prayer of Mending";
public String Predatory_Swiftness = "Predatory Swiftness";
public String Premeditation = "Premeditation";
public String Preparation = "Preparation";
public String Presence_of_Mind = "Presence of Mind";
public String Prey_on_the_Weak = "Prey on the Weak";
public String Primal_Elementalist = "Primal Elementalist";
public String Primal_Fury = "Primal Fury";
public String Primal_Strike = "Primal Strike";
public String Primal_Wisdom = "Primal Wisdom";
public String Prismatic_Crystal = "Prismatic Crystal";
public String Protector_of_the_Innocent = "Protector of the Innocent";
public String Provoke = "Provoke";
public String Prowl = "Prowl";
public String Psychic_Horror = "Psychic Horror";
public String Psychic_Scream = "Psychic Scream";
public String Pulverize = "Pulverize";
public String Pummel = "Pummel";
public String Purgatory = "Purgatory";
public String Purge = "Purge";
public String Purification = "Purification";
public String Purify = "Purify";
public String Purify_Spirit = "Purify Spirit";
public String Purifying_Brew = "Purifying Brew";
public String Pursuit_of_Justice = "Pursuit of Justice";
public String Pyroblast = "Pyroblast";
public String Raging_Blow = "Raging Blow";
public String Raging_Blow_OffHand = "Raging Blow Off-Hand";
public String Raging_BlowEx = "Raging Blow!";
public String Rain_of_Fire = "Rain of Fire";
public String Raise_Ally = "Raise Ally";
public String Raise_Dead = "Raise Dead";
public String Rake = "Rake";
public String Rallying_Cry = "Rallying Cry";
public String Rampant_Growth = "Rampant Growth";
public String Rapid_Fire = "Rapid Fire";
public String Rapid_Renewal = "Rapid Renewal";
public String Rapture = "Rapture";
public String Ravager = "Ravager";
public String Reaping = "Reaping";
public String Rebirth = "Rebirth";
public String Rebuke = "Rebuke";
public String Recklessness = "Recklessness";
public String Reckoning = "Reckoning";
public String Recuperate = "Recuperate";
public String Redemption = "Redemption";
public String Regrowth = "Regrowth";
public String Reincarnation = "Reincarnation";
public String Rejuvenation = "Rejuvenation";
public String Relentless_Strikes = "Relentless Strikes";
public String Remorseless_Winter = "Remorseless Winter";
public String Remove_Corruption = "Remove Corruption";
public String Remove_Curse = "Remove Curse";
public String Rend = "Rend";
public String Renew = "Renew";
public String Renewal = "Renewal";
public String Renewing_Mist = "Renewing Mist";
public String Repentance = "Repentance";
public String Resolve = "Resolve";
public String Restoration_Overrides_Passive = "Restoration Overrides Passive";
public String Restorative_Waves = "Restorative Waves";
public String Resurgence = "Resurgence";
public String Resurrection = "Resurrection";
public String Resuscitate = "Resuscitate";
public String Revealing_Strike = "Revealing Strike";
public String Revenge = "Revenge";
public String Revival = "Revival";
public String Revive = "Revive";
public String Revive_Pet = "Revive Pet";
public String Righteous_Fury = "Righteous Fury";
public String Righteous_Vengeance = "Righteous Vengeance";
public String Rime = "Rime";
public String Ring_of_Frost = "Ring of Frost";
public String Ring_of_Peace = "Ring of Peace";
public String Rip = "Rip";
public String Riposte = "Riposte";
public String Riptide = "Riptide";
public String Rising_Sun_Kick = "Rising Sun Kick";
public String Ritual_of_Summoning = "Ritual of Summoning";
public String Roll = "Roll";
public String Rune_of_Lichbane = "Rune of Lichbane";
public String Rune_of_Power = "Rune of Power";
public String Rune_of_Razorice = "Rune of Razorice";
public String Rune_of_Spellbreaking = "Rune of Spellbreaking";
public String Rune_of_Spellshattering = "Rune of Spellshattering";
public String Rune_of_the_Fallen_Crusader = "Rune of the Fallen Crusader";
public String Rune_of_the_Stoneskin_Gargoyle = "Rune of the Stoneskin Gargoyle";
public String Rune_Tap = "Rune Tap";
public String Runeforging = "Runeforging";
public String Runic_Corruption = "Runic Corruption";
public String Runic_Empowerment = "Runic Empowerment";
public String Runic_Strikes = "Runic Strikes";
public String Rupture = "Rupture";
public String Rushing_Jade_Wind = "Rushing Jade Wind";
public String Rushing_Streams = "Rushing Streams";
public String Ruthlessness = "Ruthlessness";