-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathacid_cata.sql
More file actions
29637 lines (28993 loc) · 800 KB
/
acid_cata.sql
File metadata and controls
29637 lines (28993 loc) · 800 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
-- ========================================================
-- ==== ACID CATA FOR CMANGOS-CATA (4.3.4 CLIENT) ====
-- ========================================================
/* Copyright (C) 2008 - 2014 ACID <http://www.cmangos.net>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-- =====================================================
-- Clear Initial Creature_AI Table Data for ACID Tables
-- =====================================================
TRUNCATE creature_ai_scripts;
TRUNCATE creature_ai_summons;
TRUNCATE creature_ai_texts;
-- ===========================================
-- Set Mangos ACID Release Version Information
-- ===========================================
UPDATE db_version SET `creature_ai_version` = 'ACID 4.3.4 (Cataclysm) for CMaNGOS-CATA (4.3.4 Client)';
-- =======================
-- | EASTERN KINGDOM |
-- =======================
INSERT INTO `creature_ai_scripts` (`id`,`creature_id`,`event_type`,`event_inverse_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action1_type`,`action1_param1`,`action1_param2`,`action1_param3`,`action2_type`,`action2_param1`,`action2_param2`,`action2_param3`,`action3_type`,`action3_param1`,`action3_param2`,`action3_param3`,`comment`) VALUES
-- ================
-- Arathi Highlands
-- ================
-- Air Defense Cannon (42314)
-- Androd Fadran (2816)
-- Apothecary Jorell (2733)
-- Apprentice Kryten (41983)
-- Arathi Deathstalker (51819)
-- Arathi Deathstalker (42090)
-- Arathi Flame Keeper (25923)
-- Arathi Flame Warden (25887)
-- Audrid Grenich (44047)
-- Badly Injured Soldier (12924)
-- Boulderfist Brute (2566)
-- Boulderfist Enforcer (2564)
-- Boulderfist Lord (2571)
-- Boulderfist Magus (2567)
-- Boulderfist Mauler (2569)
-- Boulderfist Ogre (2562)
-- Boulderfist Shaman (2570)
-- Brumn Winterhoof (7869)
-- Burning Exile (2760)
-- Captain Nials (2700)
-- Captain Steelgut (2769)
-- Caretaker Nevlin (2780)
-- Cat (6368)
-- Cedrik Prose (2835)
-- Commander Amaren (2608)
-- Cow (2442)
-- Cresting Exile (2761)
-- Critically Injured Soldier (12925)
-- Dabyrie Laborer (2582)
-- Dabyrie Militia (2581)
-- Daggerspine Marauder (2775)
-- Daggerspine Raider (2595)
-- Daggerspine Sorceress (2596)
-- Darbel Montrose (2598)
-- Dark Iron Entrepreneur (3180)
-- Dark Ranger Alina (41949)
-- Deathmaster Dwire (15021)
-- Deathstalker Maudria (41966)
-- Deathstalker Mortis (15022)
-- Deckhand Moishe (2778)
-- Defiler Elite (15128)
-- Deneb Walker (2805)
-- Doctor Draxlegauge (2774)
-- Doctor Gregory Victor (12920)
-- Drovnar Strongbrew (2812)
-- Drum Fel (2771)
-- Drywhisker Digger (2574)
-- Drywhisker Kobold (2572)
-- Drywhisker Surveyor (2573)
-- Dwarven Farmer (12998)
-- Elder Mesa Buzzard (2580)
-- Emily Jackson (44123)
-- Enraged Felbat (9521)
-- Fardel Dabyrie (4479)
-- Field Marshal Oslight (14983)
-- First Mate Nilzlix (2767)
-- Forsaken Courier (2714)
-- Foulbelly (2601)
-- Fozruk (2611)
-- Galen Trollbane (41944)
-- Garrosh Hellscream (42277)
-- Genavie Callow (4486)
-- Geomancer Flintdagger (2609)
-- Giant Plains Creeper (2565)
-- Gor'mul (42130)
-- Goutgut (42088)
-- Graud (2820)
-- Hammerfall Grunt (2619)
-- Hammerfall Guardian (51899)
-- Hammerfall Guardian (2621)
-- Hammerfall Peon (2618)
-- Hammon Karwn (2810)
-- Highland Fleshstalker (2561)
-- Highland Strider (2559)
-- Highland Thrasher (2560)
-- Injured Soldier (12923)
-- Innkeeper Adegwa (9501)
-- Jannos Ironwill (1471)
-- Jun'ha (6574)
-- Keena (2821)
-- Kenata Dabyrie (4480)
-- Kinelory (2713)
-- Kor'gresh Coldrage (2793)
-- Korin Fel (2772)
-- Kosco Copperpinch (15125)
-- Kovork (2603)
-- League of Arathor Elite (15130)
-- Lieutenant Valorcall (2612)
-- Lolo the Lookout (2766)
-- Lord Falconcrest (2597)
-- Marcel Dabyrie (4481)
-- Marez Cowl (2783)
-- Mesa Buzzard (2579)
-- Minor Voidwalker (24476)
-- Molok the Crusher (2604)
-- Mu'uta (9555)
-- Myzrael (2755)
-- Narj Deepslice (2814)
-- Nimar the Slayer (2606)
-- Or'Kalar (2773)
-- Otto (2599)
-- Plains Creeper (2563)
-- Prince Nazjak (2779)
-- Prismatic Exile (2887)
-- Professor Phizzlethorpe (2768)
-- Quae (2712)
-- Radulf Leder (30231)
-- Ram (2098)
-- Refuge Pointe Defender (10696)
-- Refuge Pointe Defender (51900)
-- Rhoda Bowers (43104)
-- Rumbling Exile (2592)
-- Rutherford Twing (15126)
-- Ruul Onestone (2602)
-- Samuel Hawke (15127)
-- Sergeant Maclear (14984)
-- Shakes O'Breen (2610)
-- Singer (2600)
-- Skuerto (2789)
-- Slagg (2818)
-- Spirit Healer (6491)
-- Stromgarde Defender (2584)
-- Stromgarde Soldier (2585)
-- Stromgarde Troll Hunter (2583)
-- Syndicate Conjuror (2590)
-- Syndicate Highwayman (2586)
-- Syndicate Magus (2591)
-- Syndicate Mercenary (2589)
-- Syndicate Pathstalker (2587)
-- Syndicate Prowler (2588)
-- Targot Jinglepocket (15124)
-- Tharlidun (9976)
-- The Black Bride (19905)
-- Thenan (2763)
-- Thundering Exile (2762)
-- Tunkk (2819)
-- Urda (2851)
-- Uttnar (4954)
-- Vengeful Surge (2776)
-- Vikki Lonsav (2808)
-- Witherbark Axe Thrower (2554)
-- Witherbark Berserker (2558)
-- Witherbark Fisher (51631)
-- Witherbark Headhunter (2556)
-- Witherbark Shadow Hunter (2557)
-- Witherbark Shadowcaster (2553)
-- Witherbark Troll (2552)
-- Witherbark Witch Doctor (2555)
-- Witherbark Witch Doctor (51633)
-- Young Mesa Buzzard (2578)
-- Zalas Witherbark (2605)
-- Zaruk (2787)
-- ========
-- Badlands
-- ========
-- \"Chef\" Overheat (48060)
-- \"Snake\" Sanders (48096)
-- 7:XT (14224)
-- Advisor Sarophas (48125)
-- Aidan Summerwind (46660)
-- Aleesha Killem (49937)
-- Amakkar (47011)
-- Ambassador Infernus (2745)
-- Anathemus (2754)
-- Aoren Sunglow (46758)
-- Artie Steelbolt (48057)
-- Badlands Flame Keeper (25925)
-- Badlands Flame Warden (51585)
-- Baelog (46853)
-- Barkeep Dadams (49917)
-- Barnabus (2753)
-- Barricade (2749)
-- Beetle (15475)
-- Billy Goat (46393)
-- Black Cat (22816)
-- Black Rat (2110)
-- Blam Turret (46707)
-- Boss Mack (49932)
-- Broken Tooth (2850)
-- Buckslappy (49918)
-- Buzz Sawspinner (48058)
-- Colt Carbine (49920)
-- Dang-Blasted Rock Elemental (46467)
-- Darkflight Flameblade (46917)
-- Darkflight Shadowspeaker (46918)
-- Darkflight Soldier (46915)
-- Deathwing (46471)
-- Deedee Dropbolt (48055)
-- Demolitions Analyst I (50511)
-- Demolitions Analyst II (50512)
-- Dolph Blastus (46652)
-- Dr. Hieronymus Blam (46664)
-- Dr. Wizzle Doomsday (49953)
-- Dragon's Mouth Sentry (51537)
-- Dustbelcher Butcher (46928)
-- Dustbelcher Initiate (46694)
-- Dustbelcher Instructor (46693)
-- Dustbelcher Mauler (2717)
-- Dustbelcher Merchant (46929)
-- Dustbelcher Shaman (2718)
-- Dustbelcher Trainee (46695)
-- Dustwind Overseer (51538)
-- Eddie Flofizzle (46650)
-- Elder Crag Coyote (2729)
-- Eric \"The Swift\" (46852)
-- Exploding Sheep (50594)
-- Explorers' League Excavator (46773)
-- Eye of the Watchers (46833)
-- Feral Crag Coyote (2728)
-- Fritz Roughtorque (48056)
-- Fuselight Bruiser (48075)
-- Fuselight Bruiser (51862)
-- Fuselight Engineer (48068)
-- Gargal (47013)
-- Garyanne Fleezlebop (46653)
-- Gavran Goodspade (46659)
-- General Jirakka (46860)
-- Giant Buzzard (2831)
-- Gina Gotgoods (48067)
-- Gold Beetle (32258)
-- Gorn (1068)
-- Gorrik (2861)
-- Grawl (2908)
-- Greth (10058)
-- High Examiner Tae'thelan Bloodwatcher (46757)
-- Innkeeper Shul'kar (9356)
-- Ivan Zypher (48093)
-- Jafix (49912)
-- Jake Badlands (44410)
-- Jeigh Southie (49944)
-- Joe Mag (49924)
-- Johnny Shinster (49925)
-- Jurrix Whitemane (47018)
-- Kalaran the Annihilator (46859)
-- Kand Sandseeker (46762)
-- Katrina Lyons (48095)
-- Kerwin the Destroyer (49922)
-- Kramer (49921)
-- Lead Prospector Durdin (46760)
-- Lidia Sunglow (46759)
-- Loremaster Bret (49919)
-- Lucien Tosselwrench (2920)
-- Martek the Awesome (46497)
-- Martek the Exiled (4618)
-- Max Boomson (49926)
-- Milly Brewtap (48064)
-- Mixi Sweetride (44407)
-- Moldarr (46938)
-- Moltanus (52021)
-- Nancy Skybrew (44409)
-- New Kargath Defender (51523)
-- New Kargath Grunt (47073)
-- Nik the Mountain (49933)
-- Nyxondra (46658)
-- Nyxondra (46861)
-- Nyxondra's Broodling (46916)
-- Nyxondra's Egg (46829)
-- Obsidian Golem (4872)
-- Olaf (46854)
-- Olga Runesworn (46761)
-- Parched Buzzard (2830)
-- Prospector Ryedol (2910)
-- Purified Black Dragon Egg (46843)
-- Rabid Crag Coyote (2730)
-- Raging Whelp (46914)
-- Ramah Goldenray (48122)
-- Reliquary Excavator (46772)
-- Reliquary Overseer (51536)
-- Rhea (46654)
-- Rhea (46955)
-- Rheastrasza (46655)
-- Ridge Huntress (2732)
-- Ridge Stalker (2731)
-- Ridge Stalker Patriarch (2734)
-- Rock Elemental (92)
-- Rumbler (2752)
-- Sally Gearwell (48054)
-- Scalding Whelp (2725)
-- Scalding Whelp Corpse (46826)
-- Scorched Guardian (2726)
-- Selara (44408)
-- Senara Swiftsilver (48123)
-- Shadowforge Chanter (2742)
-- Shadowforge Commander (2744)
-- Shadowforge Darkweaver (2740)
-- Shadowforge Digger (4846)
-- Shadowforge Ruffian (4845)
-- Shadowforge Surveyor (4844)
-- Shadowforge Tunneler (2739)
-- Shadowforge Warrior (2743)
-- Sigrun Ironhew (2860)
-- Spiky Lizard (49840)
-- Spirit Healer (6491)
-- Sranda (1407)
-- Starving Buzzard (2829)
-- Stone Golem (2723)
-- Stonevault Cave Hunter (4856)
-- Stonevault Wanderer (46713)
-- Stripe-Tailed Scorpion (49833)
-- Tarquinn (48098)
-- Terrance Storm (46972)
-- The Great Pisani (49934)
-- The Sentinel (46769)
-- The Warden (46768)
-- Theldurin the Lost (2785)
-- Theldurin the Lost (47157)
-- Ujumqin (49935)
-- Vernon Farcavern (48090)
-- Victoria Dolen (46930)
-- War Golem (2751)
-- Warlord Goretooth (9077)
-- Wild Black Dragon Egg (46828)
-- Zak Callabang (49936)
-- Zaricotl (2931)
-- ==================
-- Blackrock Mountain
-- ==================
-- Anvilrage Enforcer (24819)
-- Anvilrage Taskmaster (24818)
-- Blackhand Veteran (9819)
-- Bodley (16033)
-- Fire Beetle (9699)
-- Franclorn Forgewright (8888)
-- Lothos Riftwaker (14387)
-- Overmaster Pyron (9026)
-- Quarry Slave (8917)
-- Rookery Whelp (10161)
-- Scarshield Legionnaire (9097)
-- Scarshield Quartermaster (9046)
-- Spirit Healer (6491)
-- =============
-- Blasted Lands
-- =============
-- Abandoned Bloodwash Crate (41402)
-- Abandoned Bloodwash Crate (41454)
-- Adder (3300)
-- Advisor Sevel (16840)
-- Aeilara (44341)
-- Akubar the Seer (8298)
-- Alexandra Constantine (8609)
-- Alliance Portal-Sentry (41269)
-- Ashmane Boar (5992)
-- Bernie Heisten (3546)
-- Black Cat (22816)
-- Blackleaf (45260)
-- Blasted Lands Flame Keeper (51603)
-- Blasted Lands Flame Warden (25890)
-- Bloodmage Drazial (7505)
-- Bloodmage Lynnore (7506)
-- Bloodwash Acolyte (41423)
-- Bloodwash Barbarian (41386)
-- Bloodwash Crate (41362)
-- Bloodwash Enchantress (41387)
-- Bloodwash Gambler (41404)
-- Bloodwash Idolater (41405)
-- Bloodwash Zealot (41422)
-- Bonepicker Felfeeder (5983)
-- Buttonwillow McKittrick (42264)
-- Captain Metlek (42231)
-- Caravan Packhorse (5525)
-- Caravan Watcher (5524)
-- Cassia the Slitherqueen (45258)
-- Cenarion Observer Shayana (42352)
-- Chef Braf (44312)
-- Chief Prospector Hondo (41173)
-- Clack the Reaver (8301)
-- Clarya Sunveil (42346)
-- Commander Vines (44984)
-- Corporal Nobsy (44986)
-- Corrupted Darkwood Treant (45119)
-- Daio the Decrepit (14463)
-- Darktail Bonepicker (42235)
-- Darkwood Treant (45118)
-- Deadwind Widow (51983)
-- Deatheye (8302)
-- Deathly Usher (8816)
-- Defiled Felhound (41290)
-- Donna Berrymore (44334)
-- Doomguard Destroyer (41470)
-- Dreadlord Defiler (41471)
-- Dreadmaul Ambusher (41136)
-- Dreadmaul Brute (5976)
-- Dreadmaul Captive (41127)
-- Dreadmaul Mauler (5977)
-- Dreadmaul Ogre (5974)
-- Dreadmaul Ogre Mage (5975)
-- Dreadmaul Warlock (5978)
-- Dreadscorn (8304)
-- Drowned Gilnean Merchant (42244)
-- Drowned Gilnean Sailor (42248)
-- Drowned Gilnean Settler (42249)
-- Elder Bellowrage (15563)
-- Elijah Dawnflight (42348)
-- Enohar Thunderbrew (9540)
-- Enthralled Cultist (41254)
-- Felguard Sentry (6011)
-- Felhound (6010)
-- Felscale Crawler (45087)
-- Felspore Bog Lord (45125)
-- Fire Beetle (9699)
-- Fire Eater (25962)
-- Garrod Pubhammer (42350)
-- Gina Gellar (44330)
-- Gomegaz (41166)
-- Graham McAllister (43107)
-- Grunter (8303)
-- Horde Portal-Sentry (42301)
-- Illycor (41163)
-- Innkeeper Grak (44309)
-- Janella (44340)
-- Jarroc Torn-Wing (41164)
-- Kasim Sharim (42298)
-- Keri Thunderbrew (44324)
-- Kroff (44310)
-- Kum'isha the Collector (7363)
-- Leyan Steelson (42262)
-- Loramus Thalipedes (7783)
-- Loramus Thalipedes (41279)
-- Loramus' Body (41193)
-- Magronos the Unyielding (8297)
-- Mama Morton (44325)
-- Marcy Lewis (44333)
-- Marl Wormthorn (42334)
-- Master Aitokk (41125)
-- Maurice Essman (44337)
-- Mayor Charlton Connisport (42349)
-- Mojo the Twisted (8296)
-- Mordak Nightbender (45257)
-- Narixxus the Doombringer (45262)
-- Neka (44313)
-- Neptool (41354)
-- Nethergarde Defender (51792)
-- Nethergarde Defender (41158)
-- Nethergarde Engineer (5997)
-- Nethergarde Footman (45031)
-- Nethergarde Foreman (5998)
-- Nethergarde Miner (5996)
-- Nina Lightbrew (8178)
-- Oath-Chained Infernal (41253)
-- Okril'lon Defender (51791)
-- Okril'lon Defender (41138)
-- Okril'lon Infantry (42359)
-- Okril'lon Scout (42228)
-- Okrilla (41124)
-- Overseer Struk (44311)
-- Palomino (306)
-- Pinto (307)
-- Preda (43121)
-- Quartermaster Apone (44344)
-- Quartermaster Dekrok (44343)
-- Quartermaster Lungertz (5393)
-- Ravage (8300)
-- Razelikh the Defiler (41280)
-- Reassuring Nethergarde Foreman (41171)
-- Redstone Basilisk (5990)
-- Rockpool Gladiator (42367)
-- Rockpool Murloc (41384)
-- Rockpool Murloc (41357)
-- Rockpool Tadpole (41385)
-- Rockpool Tadpole (44142)
-- Rockpool Tadpole (41358)
-- Rofilian Dane (41133)
-- Rohan Sunveil (42344)
-- Salaran (44339)
-- Salena (43114)
-- Salt-Flop (41265)
-- Sarah Lightbrew (44321)
-- Sergeant Krolan (44985)
-- Shadowsworn Adept (6006)
-- Shadowsworn Dreadweaver (6009)
-- Shadowsworn Enforcer (6007)
-- Shadowsworn Obstructor (41191)
-- Shadowsworn Occultist (42297)
-- Shadowsworn Ritualist (6004)
-- Shadowsworn Spellblade (42296)
-- Shadowsworn Thug (6005)
-- Shadowsworn Warlock (6008)
-- Shahandana (41165)
-- Silvermoon Dragonhawk (27946)
-- Snickerfang Hyena (5985)
-- Spirit Healer (6491)
-- Spirit of Grol (41267)
-- Spiteflayer (8299)
-- Stephan Kebbel (44336)
-- Stormwind Traveling Merchant (44983)
-- Strumner Flintheel (5508)
-- Summer Scorchling (26401)
-- Sunveil Scout (51541)
-- Surwich Warden (51542)
-- Tainted Black Bear (42336)
-- Tainted Nightstalker (42337)
-- Tainted Screecher (42338)
-- Tak'arili (41134)
-- Teremus the Devourer (7846)
-- Terrified Nethergarde Miner (41162)
-- Thadius Grimshade (8022)
-- Tonya Lightbrew (44322)
-- Unstable Shroom (42835)
-- Warlord Dar'toon (19254)
-- Watch Commander Relthorn Netherwane (16841)
-- Watcher Grimeo (42299)
-- Watcher Mahar Ba (5385)
-- Watcher Wazzik (41159)
-- Willard C. Bennington (44335)
-- ===============
-- Burning Steppes
-- ===============
-- Acride (48292)
-- Ariok (48565)
-- Ariok (48561)
-- Ariok (48559)
-- Ash Viper (49568)
-- Black Dragonspawn (7040)
-- Black Wyrmkin (7041)
-- Blackrock Invader (48432)
-- Blackrock Invader (48414)
-- Blackrock Necromancer (48413)
-- Blackrock Sergeant (48201)
-- Blackrock Slayer (7027)
-- Blackrock Soldier (7025)
-- Blackrock Sorcerer (7026)
-- Blackrock War Kodo (48111)
-- Blackrock Warlock (7028)
-- Blackrock Whelper (47782)
-- Blackrock Worg (7055)
-- Boot Spider (48106)
-- Borgus Stoutarm (2299)
-- Burning Steppes Flame Keeper (25927)
-- Burning Steppes Flame Warden (25892)
-- Chiseled Golem (48037)
-- Colonel Troteman (48307)
-- Colonel Troteman (48110)
-- Deathmaw (10077)
-- Dragon-Lord Neeralak (48314)
-- Dragon-Lord Neeralak (48371)
-- Eitrigg (48568)
-- Eitrigg (48569)
-- Elder Dawnstrider (15585)
-- Elder Rumblerock (15557)
-- Ember Worg (9690)
-- Fallen Flamekin (48649)
-- Felder Stover (1296)
-- Felhunter Minion (17648)
-- Fettered Blue Whelpling (47821)
-- Fettered Bronze Whelpling (47822)
-- Fettered Green Whelpling (47820)
-- Fettered Red Whelpling (47814)
-- Firegut Brute (7035)
-- Firegut Flamespeaker (48121)
-- Firegut Ogre (7033)
-- Firegut Ogre Mage (7034)
-- Firegut Reaver (48120)
-- Flame Crest Bruiser (51539)
-- Flamefly (48671)
-- Flamekin Rager (9779)
-- Flamekin Spitter (9776)
-- Flamekin Torcher (9778)
-- Flamescale Broodling (7049)
-- Flamescale Hatchling (48966)
-- Gabrielle Chase (3298)
-- General Thorg'izog (48133)
-- General Thorg'izog (48316)
-- Giant Ember Worg (9697)
-- Goblin Flamethrower (48153)
-- Gorgon'och (9604)
-- Gorlop (9176)
-- Gorzeeki Wildeyes (14437)
-- Greater Obsidian Elemental (7032)
-- Grimly Singefeather (48321)
-- Gruklash (8979)
-- Gruna (3708)
-- Hahk'Zor (9602)
-- Hans Oreflight (48318)
-- Helendis Riverhorn (9562)
-- Hellmondath (48655)
-- Hematos (8976)
-- High Warlock Xi'lun (48312)
-- John J. Keeshan (47811)
-- John J. Keeshan (48306)
-- John J. Keeshan (48109)
-- Kibler (10260)
-- Lava Crab (9700)
-- Magma Lord Kolob (48156)
-- Malfunctioning Reaver (8981)
-- Minyoth (48289)
-- Mouton Flamestar (47779)
-- Ner'gosh the Shadow (47805)
-- Obsidian Elemental (7031)
-- Opus (10262)
-- Oralius (9177)
-- Quartermaster Kaoshin (48085)
-- Ragged John (9563)
-- Ragged Jong (56899)
-- Sharon Boomgetter (48948)
-- Smolderthorn Assassin (48119)
-- Smolderthorn Shaman (48118)
-- Spirit Healer (6491)
-- Stebben Oreknuckle (48033)
-- Terromath the Seared (48288)
-- Terrorspark (10078)
-- Thauris Balgarr (8978)
-- Thaurissan Agent (7038)
-- Thaurissan Firewalker (7037)
-- Thaurissan Spy (7036)
-- The Bogpaddle Bullet (48950)
-- Thelaron Direneedle (48001)
-- Tugnar Goremaw (48291)
-- Vahgruk (13177)
-- Venomtip Scorpid (9691)
-- Vigil Guard (51540)
-- Volchan (10119)
-- Voodooist Timan (48100)
-- War Reaver (7039)
-- Whelptamer Akumi (48287)
-- Worgmistress Othana (48099)
-- Wyrtle Spreelthonket (48159)
-- =============
-- Deadwind Pass
-- =============
-- Apprentice Darius (18255)
-- Archmage Alturus (17613)
-- Archmage Leryda (18253)
-- Blackwyrm Bruiser (57893)
-- Blackwyrm Cultist (57883)
-- Blackwyrm Mage (57892)
-- Damned Soul (12378)
-- Deadwind Brute (7369)
-- Deadwind Mauler (7371)
-- Deadwind Ogre Mage (7379)
-- Deadwind Warlock (7372)
-- Deadwind Widow (51987)
-- Deadwind Widow (51983)
-- Nalice (57910)
-- Restless Shade (7370)
-- Sky Shadow (7376)
-- Spirit Healer (6491)
-- Summoned Construct (57894)
-- Unliving Caretaker (12379)
-- Unliving Resident (12380)
-- Wailing Spectre (12377)
-- Zazzo Twinklefingers (57770)
-- ============
-- Deeprun Tram
-- ============
-- Basking Shark (5186)
-- Deeprun Diver (14121)
-- Deeprun Rat (13016)
-- Haggle (14041)
-- Monty (12997)
-- Naga Siren (10956)
-- Nessy (10942)
-- Nipsy (13018)
-- ==========
-- Dun Morogh
-- ==========
-- Adlin Pridedrift (829)
-- Alamar Grimm (460)
-- Alpine Hare (48935)
-- Amberstill Mountaineer (41611)
-- Apprentice Soren (1354)
-- Battok the Berserker (41284)
-- Bipsi Frostflinger (42331)
-- Bjarn (1130)
-- Blue Mechanostrider (12363)
-- Boran Ironclink (1240)
-- Boss Bruggor (42773)
-- Brown Ram (12372)
-- Captured Demolitionist (42645)
-- Captured Leper Gnome (5568)
-- Carson Crazybread (46966)
-- Carvo Blastbolt (47250)
-- Caverndeep Looter (6209)
-- Ciara Deepstone (42933)
-- Clean Cannon X-2 (46208)
-- Coldridge Defender (37177)
-- Cook Ghilm (1355)
-- Corporal Fizzwhistle (42630)
-- Covert Operative (41335)
-- Crag Boar (1125)
-- Crazed Leper Gnome (46391)
-- Crazed Leper Gnome (46363)
-- Crushcog Battle Suit (42226)
-- Crushcog Sentry-Bot (42291)
-- Crushcog Technician (43230)
-- Crushcog's Guardian (42294)
-- Dark Iron Invader (42012)
-- Dark Iron Invader (41924)
-- Dark Iron Pyromancer (41902)
-- Dark Iron Spy (6123)
-- Delber Cranktoggle (41363)
-- Dun Morogh Chicken (53568)
-- Edan the Howler (1137)
-- Elly Sharpedge (42335)
-- Engineer Grindspark (42553)
-- Felix Whindlebolt (8416)
-- Fluffy (1352)
-- Frostmane Blade (37507)
-- Frostmane Builder (41251)
-- Frostmane Novice (946)
-- Frostmane Raider (41544)
-- Frostmane Raider (41603)
-- Frostmane Scavenger (41146)
-- Frostmane Scout (41175)
-- Frostmane Seer (41121)
-- Frostmane Snowstrider (41122)
-- Frostmane Troll Whelp (706)
-- Frostmane Warrior (41258)
-- Frozen Mountaineer (41763)
-- Gaffer Coilspring (46274)
-- Gamili Frosthide (1238)
-- Gibblewilt (8503)
-- Gnome Traveler (43297)
-- Gnomeregan Recruit (43092)
-- Gnomeregan Recruit (43276)
-- Granis Swiftaxe (1229)
-- Gray Ram (12373)
-- Great Father Arctikus (1260)
-- Green Mechanostrider (12367)
-- Grelin Whitebeard (786)
-- Grennor Strongbrew (42905)
-- Grif Wildheart (1231)
-- Grik'nir the Cold (808)
-- Hammerspine (1119)
-- Hegnar Rumbleshot (1243)
-- Helm's Bed Surger (41762)
-- Ice Claw Bear (1196)
-- Image of Razlo Crushcog (42505)
-- Injured Gnome (46447)
-- Irradiated Roach (48956)
-- Irradiated Technician (42223)
-- Jarvi Shadowstep (42353)
-- Jessup McCree (42708)
-- Kazan Mogosh (1237)
-- Kharanos Mountaineer (41237)
-- Kharanos Mountaineer (41181)
-- Kharanos Rifleman (41182)
-- Kogan Forgestone (1245)
-- Living Contamination (43089)
-- Living Contamination (42185)
-- Lowan Featherbreeze (43355)
-- Manus Swiftneedle (42332)
-- Mathel Rustwrench (41846)
-- Mekkatorque's Mechanostrider (40057)
-- Milo's Gyro (37169)
-- Miner Grothor (1358)
-- Miner Grumnal (1360)
-- Monann Coldforge (43384)
-- Mortar Team Advanced Target Dummy (12385)
-- Mortar Team Target Dummy (11875)
-- Mountaineer Dolf (12427)
-- Mountaineer Dunstan (40991)
-- Mountaineer Lewin (40994)
-- Mountaineer Valgrum (41056)
-- Narm Faulk (6177)
-- Nevin Twistwrench (42396)
-- Nevin Twistwrench (45966)
-- Noblegarden Rabbit (32781)
-- Ollie (51982)
-- Physician's Assistant (42552)
-- Quartermaster Glynna (40951)
-- Rabbit (721)
-- Ragged Timber Wolf (704)
-- Ragged Young Wolf (705)
-- Rana Bubblefizz (42904)
-- Recovered Gnome (43033)
-- Red Mechanostrider (12365)
-- Refugee (43360)
-- Remote Observation Bot (41052)
-- Repaired Mechano-Tank (42224)
-- Rescued Survivor (46267)
-- Rifleman Middlecamp (10804)
-- Rifleman Wheeler (10803)
-- Rockjaw Bonepicker (42221)
-- Rockjaw Bonesnapper (1117)
-- Rockjaw Fungus-Flinger (43325)
-- Rockjaw Goon (37073)
-- Rockjaw Invader (37070)
-- Rockjaw Marauder (42222)
-- Rockjaw Raider (1718)
-- Rockjaw Scavenger (37105)
-- Rockjaw Skullthumper (1115)
-- S.A.F.E. Officer (46025)
-- S.A.F.E. Operative (45847)
-- S.A.F.E. Operative (46449)
-- S.A.F.E. Technician (46230)
-- Sanitron 500 (46185)
-- Scarred Crag Boar (1689)
-- Senir Whitebeard (1252)
-- Slamp Wobblecog (41298)
-- Small Crag Boar (708)
-- Snevik the Blade (50601)
-- Snow Leopard (42170)
-- Snow Leopard (1201)
-- Snow Leopard Cub (42171)
-- Snow Tracker Wolf (41478)
-- Soothsayer Mirim'koa (37174)
-- Soothsayer Rikkari (37173)
-- Soothsayer Shi'kala (37108)
-- Spotter Klemmy (10805)
-- Sten Stoutarm (658)
-- Stolen Ram (41539)
-- Survivor (46268)
-- Swift Brown Ram (14546)
-- Swift Gray Ram (14548)
-- Swift Green Mechanostrider (14553)
-- Swift White Mechanostrider (14552)
-- Swift White Ram (14547)
-- Swift Yellow Mechanostrider (14551)
-- Tame Crag Boar (41143)
-- Target Acquisition Device (46012)
-- Technician (41393)
-- Technician Braggle (46255)
-- Thamner Pol (2326)
-- Timber (1132)
-- Tock Sprysprocket (42611)
-- Torben Zapblast (46293)
-- Toxic Sludge (42184)
-- Training Dummy (44389)
-- Training Dummy (44171)
-- Ultrasafe Personnel Launcher (41398)
-- Unpainted Mechanostrider X (12366)
-- Vagash (1388)
-- Vallo Shinesteel (42626)
-- Warstrider Prototype (41365)
-- Wayward Fire Elemental (37112)
-- Wendigo (40941)
-- White Riding Ram Mount (12374)
-- Winter Wolf (42290)
-- Wounded Coldridge Mountaineer (37080)
-- Yarlyn Amberstill (1263)
-- Yori Crackhelm (11941)
-- Young Black Bear (51973)
-- Young Snow Leopard (42286)
-- Young Wendigo (40940)
-- \"Doc\" Cogspin (42323)
-- Airfield Guard (41909)
-- Angus (10610)
-- Anton Buckey (51970)
-- Avarus Kharag (1679)
-- Azar Stronghammer (1232)
-- Beldin Steelgrill (1376)
-- Binjy Featherwhistle (7954)
-- Black Bear (51972)
-- Booty Bay Bruiser (4624)
-- Boran Ironclink (1240)
-- Brolan Galebeard (43701)
-- Bronk Guzzlegear (1702)
-- Buin \"Phloppy\" Freehand (43352)
-- Burdrak Harglhelm (3162)
-- Captain Beld (6124)
-- Captain Tharran (40950)
-- Captain Tread Sparknozzle (42489)
-- Coldmine Explorer (13096)
-- Coldridge Mountaineer (853)
-- Commander Stonebreaker (41853)
-- Cook Ghilm (1355)
-- Covert Ops Flying Machine (41382)
-- Dank Drizzlecut (1701)
-- Dannie Fizzwizzle (6328)
-- Dareth (52335)
-- Dark Iron Golem (42008)
-- Dark Iron Golem (42003)
-- Dark Iron Invader (42012)
-- Dark Iron Invader (41924)
-- Dark Iron Pyromancer (41902)
-- Dark Iron Spy (6123)
-- Dominic Galebeard (43702)
-- Drill Sergeant Steamcrank (42324)
-- Dun Morogh Mountaineer (13076)
-- Dun Morogh Mountaineer (41897)
-- Dun Morogh Mountaineer (51912)
-- Dun Morogh Rifleman (41898)
-- Dun Morogh Sledder (51979)
-- Dun Morogh Sledder (51978)
-- Dun Morogh Sledder (51977)
-- Dun Morogh Sledder (51976)
-- Elder Goldwell (15569)
-- Father Gavin (1253)
-- Foreman Stonebrow (1254)
-- Frast Dokner (1698)
-- Frozen Mountaineer (41763)
-- General Grimaxe (42010)
-- Gimrizz Shadowcog (5612)
-- Gnome Engineer (13000)
-- Gnomeregan Infantry (42319)
-- Gnomeregan Infantry (42316)
-- Golorn Frostbeard (1692)
-- Granis Swiftaxe (1229)
-- Grawn Thromwyn (1273)
-- Gremlock Pilsnor (1699)
-- Gretta Ganter (8508)
-- Grif Wildheart (1231)
-- Halbin Frosthammer (43464)
-- Hands Springsprocket (6782)
-- Hegnar Rumbleshot (1243)
-- Helm's Bed Surger (41762)
-- High Admiral \"Shelly\" Jorrik (26081)
-- Hinkles Fastblast (42491)
-- Hogral Bakkan (1234)
-- Icy Tomb (41768)
-- Injured Miner (47395)
-- Innkeeper Belm (1247)
-- Ironforge Bomber (42014)
-- Ironforge Guard (5595)
-- Ironforge Mountaineer (727)
-- Jade Ramalot (46996)
-- Jarven Thunderbrew (1373)
-- Jermaine Buckey (51971)
-- Jordan Stilwell (6181)
-- Joren Ironstock (37081)
-- Keeg Gibn (1697)
-- Kelaan (43354)
-- Kelsey Steelspark (42366)
-- Khurgorn Singefeather (41804)
-- Kogan Forgestone (1245)
-- Kreg Bilmn (1691)
-- Loslor Rudge (1694)
-- Magis Sparkmantle (1228)
-- Mangeclaw (1961)
-- Marleth Barleybrew (1375)
-- Mathel's Flying Machine (41848)
-- Maxan Anvol (1226)
-- Milli Featherwhistle (7955)
-- Milo Geartwinge (37113)
-- Miner Grothor (1358)
-- Miner Grumnal (1360)
-- Mountaineer Stonegrind (42852)
-- Mountaineer Thalos (1965)
-- Mounted Ironforge Mountaineer (12996)
-- Noblegarden Vendor (32836)
-- Ozzie Togglevolt (1268)
-- Paxton Ganter (1700)
-- Peria Lamenur (2878)
-- Pilot Bellowfiz (1378)