forked from Nonameby/Atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAtlasMaps.lua
1834 lines (1817 loc) · 86.4 KB
/
AtlasMaps.lua
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
--[[
Atlas, a World of Warcraft instance map browser
Email me at [email protected]
This file is part of Atlas.
Atlas 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.
Atlas 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 Atlas; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
--]]
-- Atlas Data
-- Compiled by Dan Gilbert
-- Many thanks to all contributors!
-- Now with GUIDs!
-- Now externally localized!
local AL = AceLibrary("AceLocale-2.2"):new("Atlas");
local BC = AceLibrary("Babble-Class-2.2")
--local BZ = AceLibrary("Babble-Zone-2.2")
--local BB = AceLibrary("Babble-Boss-2.2")
local BF = AceLibrary("Babble-Faction-2.2")
local BIS = AceLibrary("Babble-ItemSet-2.2")
local BLUE = "|cff6666ff";
local GREY = "|cff999999";
local GREN = "|cff66cc33";
local _RED = "|cffcc6666";
local ORNG = "|cffcc9933";
local PURP = "|cff9900ff";
local WHIT = "|cffffffff";
local INDENT = " ";
local ZONE = 1;
local NPC = 2;
local ITEM = 3;
local OBJECT = 4;
local FACTION = 5;
local QUEST = 6;
AtlasMaps = {
--************************************************
-- Kalimdor Instances
--************************************************
RagefireChasm = {
ZoneName = { AL["Ragefire Chasm"], 2437 };
Acronym = "RFC";
Location = { AL["Orgrimmar"], 1637 };
LevelRange = "13-18";
MinLevel = "8";
PlayerLimit = "5";
Continent = AL["Kalimdor"];
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Maur Grimtotem"], NPC, 11834 };
{ GREY..INDENT..AL["Oggleflint"], NPC, 11517 };
{ GREY.."2) "..AL["Taragaman the Hungerer"], NPC, 11520 };
{ GREY.."3) "..AL["Jergosh the Invoker"], NPC, 11518 };
{ GREY.."4) "..AL["Bazzalan"], NPC, 11519 };
};
WailingCaverns = {
ZoneName = { AL["Wailing Caverns"], 718 };
Acronym = "WC";
Location = { AL["The Barrens"], 17 };
LevelRange = "17-24";
MinLevel = "10";
PlayerLimit = "5";
Continent = AL["Kalimdor"];
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Disciple of Naralex"], NPC, 3678 };
--{ GREY..INDENT..AL["Mysterious Wailing Caverns Chest"], OBJECT, 180055 };
{ GREY.."2) "..AL["Lord Cobrahn"], NPC, 3669 };
{ GREY.."3) "..AL["Lady Anacondra"], NPC, 3671 };
{ GREY.."4) "..AL["Kresh"], NPC, 3653 };
{ GREY.."5) "..AL["Deviate Faerie Dragon"].." ("..AL["Rare"]..")", NPC, 5912 };
{ GREY.."6) ".."Zandara Windhoof", NPC, -1 };
{ GREY.."7) "..AL["Lord Pythas"], NPC, 3670 };
{ GREY.."8) "..AL["Skum"], NPC, 3674 };
{ GREY.."9) ".."Vangros", NPC, -1 };
{ GREY.."10) "..AL["Lord Serpentis"].." ("..AL["Upper"]..")", NPC, 3673 };
{ GREY.."11) "..AL["Verdan the Everliving"].." ("..AL["Upper"]..")", NPC, 5775 };
{ GREY.."12) "..AL["Mutanus the Devourer"], NPC, 3654 };
{ GREY..INDENT..AL["Naralex"], NPC, 3679 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Set: "]..BIS["Embrace of the Viper"] };
};
BlackfathomDeeps = {
ZoneName = { AL["Blackfathom Deeps"], 719 };
Acronym = "BFD";
Location = { AL["Ashenvale"], 331 };
LevelRange = "24-32";
MinLevel = "19";
PlayerLimit = "5";
Continent = AL["Kalimdor"];
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Ghamoo-ra"], NPC, 4887 };
{ GREY.."2) "..AL["Lorgalis Manuscript"], ITEM, 5359 };
{ GREY.."3) "..AL["Lady Sarevess"], NPC, 4831 };
{ GREY.."4) "..AL["Argent Guard Thaelrid"], NPC, 4787 };
{ GREY.."5) "..AL["Gelihast"], NPC, 6243 };
{ GREY..INDENT..AL["Shrine of Gelihast"] };
{ GREY.."6) "..AL["Lorgus Jett"].." ("..AL["Varies"]..")", NPC, 12902 };
{ GREY.."7) "..AL["Baron Aquanis"], NPC, 12876 };
{ GREY..INDENT..AL["Fathom Stone"], OBJECT, 177964 };
{ GREY.."8) "..AL["Twilight Lord Kelris"], NPC, 4832 };
{ GREY.."9) "..AL["Old Serra'kis"], NPC, 4830 };
{ GREY.."10) "..AL["Aku'mai"], NPC, 4829 };
{ GREY..INDENT..AL["Morridune"], NPC, 6729 };
{ GREY..INDENT..AL["Altar of the Deeps"] };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
};
-- TheCrescentGrove TurtleWOW
TheCrescentGrove = {
ZoneName = { AL["The Crescent Grove"], };
Acronym = "CG";
Location = { AL["Ashenvale"], 331 };
LevelRange = "32-38";
MinLevel = "32";
PlayerLimit = "5";
Continent = AL["Kalimdor"];
{ BLUE.."A) "..AL["Entrance"] };
{ INDENT..GREY.."a) "..AL["Kalanar's Strongbox"], OBJECT, 2010860 };
{ GREY.."1) "..AL["Grovetender Engryss"], NPC, 92107 };
{ GREY.."2) "..AL["Keeper Ranathos"], NPC, 92109 };
{ GREY.."3) "..AL["High Priestess A'lathea"], NPC, 92108 };
{ GREY.."4) "..AL["Fenektis the Deceiver"], NPC, 92111 };
{ GREY.."5) "..AL["Master Raxxieth"], NPC, 92110 };
{ GREY..INDENT..AL["Trash Mobs"] };
};
--HateforgeQuarry TurtleWOW
HateforgeQuarry = {
ZoneName = { AL["Hateforge Quarry"], };
Acronym = "HFQ";
Location = { AL["Burning Steppes"], 46 };
LevelRange = "52-60";
MinLevel = "48";
PlayerLimit = "5";
Continent = AL["Eastern Kingdoms"];
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["High Foreman Bargul Blackhammer"], NPC, 60735 };
{ GREY.."2) "..AL["Engineer Figgles"], NPC, 60736 };
{ INDENT..GREY.."a) "..AL["Hateforge Chemistry Documents"] };
{ GREY.."3) "..AL["Corrosis"], NPC, 60829 };
{ GREY.."4) "..AL["Hatereaver Annihilator"], NPC, 60734 };
{ GREY.."5) "..AL["Hargesh Doomcaller"], NPC, 60737 };
{ GREY..INDENT..AL["Trash Mobs"] };
};
--KarazhanCrypt TurtleWOW
KarazhanCrypt = {
ZoneName = { AL["Karazhan Crypt"], };
Acronym = "Kara Crypt";
Location = { AL["Deadwind Pass"], 41 }; -- ["Deadwind Pass"], 41 -- ["Burning Steppes"], 46
LevelRange = "58-60";
MinLevel = "58";
PlayerLimit = "5";
Continent = AL["Eastern Kingdoms"];
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Marrowspike"], NPC, 91920 };
{ GREY.."2) "..AL["Hivaxxis"], NPC, 91929 };
{ GREY.."3) "..AL["Corpsemuncher"], NPC, 91917 };
{ GREY.."4) "..AL["Guard Captain Gort"], NPC, 92935 };
{ GREY.."5) "..AL["Archlich Enkhraz"], NPC, 91916 };
{ GREY.."6) "..AL["Commander Andreon"], NPC, 91919 }; -- Commander Andreon not Commander Anderson. AtlasLoot name misstake
{ GREY.."7) "..AL["Alarus"], NPC, 91928 };
{ GREY.."8) "..AL["Half-Buried Treasure Chest"], OBJECT, 379545 };
{ GREY..INDENT..AL["Trash Mobs"] };
};
--CavernsOfTimeBlackMorass TurtleWOW
CavernsOfTimeBlackMorass = {
ZoneName = { AL["Black Morass"], };
Acronym = "BM";
Location = { AL["Tanaris"], 440 };
LevelRange = "60-60";
MinLevel = "58";
PlayerLimit = "5";
Continent = AL["Kalimdor"];
{ BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..AL["Connection"] };
{ GREY.."1) "..AL["Chronar"], NPC, 65113 };
{ GREY.."2) "..AL["Epidamu"], NPC, 61575 };
{ GREY.."3) "..AL["Drifting Avatar of Sand"], NPC, 61316 };
{ GREY.."4) "..AL["Time-Lord Epochronos"], NPC, 65116 };
{ GREY.."5) "..AL["Mossheart"], NPC, 65124 };
{ GREY.."6) "..AL["Antnormi"], NPC, 65125 };
{ GREY.."7) "..AL["Rotmaw"], NPC, 65122 };
{ GREY..INDENT..AL["Trash Mobs"] };
};
--StormwindVault TurtleWOW
StormwindVault = {
ZoneName = { AL["Stormwind Vault"], };
Acronym = "SWV";
Location = { AL["Stormwind City"], 1519 };
LevelRange = "60-60";
MinLevel = "58";
PlayerLimit = "5";
Continent = AL["Eastern Kingdoms"];
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Aszosh Grimflame"], NPC, 80853 };
{ GREY.."2) "..AL["Tham'Grarr"], NPC, 80852 };
{ GREY.."3) "..AL["Black Bride"], NPC, 80850 };
{ GREY..INDENT..AL["Tome of Arcane Intricacies and Magical Phenomenon IX"]};
{ GREY.."4) "..AL["Damian"], NPC, 80854 };
{ GREY.."5) "..AL["Volkan Cruelblade"], NPC, 80851 };
{ GREY.."6) "..AL["Arc'tiras"], NPC, 93107 };
{ GREY.."7) "..AL["Vault Armory Equipment"], OBJECT, 2010867 };
};
--GilneasCity TurtleWOW
GilneasCity = {
ZoneName = { AL["Gilneas City"], };
Acronym = "GC";
Location = { AL["Gilneas"], };
LevelRange = "43-49";
MinLevel = "43";
PlayerLimit = "5";
Continent = AL["Eastern Kingdoms"];
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Matthias Holtz"], NPC, 61419 };
{ GREY.."2) "..AL["Packmaster Ragetooth"], NPC, 61420 };
{ INDENT..GREY.."a) "..AL["Dawnstone Plans"]};
{ INDENT..GREY.."b) "..AL["Manuscript of Hydromancy II"]};
{ GREY.."3) "..AL["Judge Sutherland"], NPC, 61421 };
{ GREY.."4) "..AL["Dustivan Blackcowl"], NPC, 61422 };
{ GREY.."5) "..AL["Marshal Magnus Greystone"], NPC, 61423 };
{ GREY.."6) "..AL["Horsemaster Levvin"], NPC, 61605 };
{ GREY.."7) "..AL["Harlow Family Chest"], OBJECT, 2020027 };
{ GREY.."8) "..AL["Genn Greymane"], NPC, 61418 };
{ GREY..INDENT..AL["Trash Mobs"] };
};
--LowerKara TurtleWOW
LowerKara = {
ZoneName = { AL["Lower Karazhan Halls"], };
Acronym = "LKH";
Location = { AL["Deadwind Pass"], 41};
LevelRange = "58-60";
MinLevel = "58";
PlayerLimit = "10";
Continent = AL["Eastern Kingdoms"];
{ BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..AL["Connection"] };
{ GREY.."1) "..AL["Master Blacksmith Rolfen"], NPC, 61319 };
{ GREY..INDENT.."a) "..AL["Engraved Golden Bracelet"] };
{ GREY..INDENT.."b) "..AL["Comfortable Pillow"] };
{ GREY.."2) "..AL["Brood Queen Araxxna"], NPC, 61221 };
{ GREY.."3) "..AL["Grizikil"], NPC, 61224 };
{ GREY..INDENT.."c) "..AL["Councilman Kyleson"] };
{ GREY.."4) "..AL["Clawlord Howlfang"], NPC, 61223 };
{ GREY.."5) "..AL["Lord Blackwald II"], NPC, 61222 };
{ GREY..INDENT.."d) "..AL["Lord Ebonlocke"] };
{ GREY..INDENT.."e) "..AL["Obsidian Rod"] };
{ GREY..INDENT.."f) "..AL["Duke Rothlen"] };
{ GREY.."6) "..AL["Moroes"], NPC, 61226 };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["LKH Enchants"] };
};
--EmeraldSanctum TurtleWOW
EmeraldSanctum = {
ZoneName = { AL["Emerald Sanctum"], };
Acronym = "ES";
Location = { AL["Hyjal"], };
LevelRange = "58-60";
MinLevel = "58";
PlayerLimit = "40";
Continent = AL["Kalimdor"];
{ GREY.."1) "..AL["Erennius"], NPC, 60747 };
{ GREY.."2) "..AL["Solnius the Awakener"], NPC, 60748 };
{ GREY.."3) "..AL["Solnius the Awakener (Page 2)"], NPC, 60748 };
{ GREY.."4) "..AL["Favor of Erennius (ES Hard Mode)"], OBJECT, 2020042 };
{ GREY..INDENT..AL["Trash Mobs"] };
};
RazorfenKraul = {
ZoneName = { AL["Razorfen Kraul"], 491 };
Acronym = "RFK";
Location = { AL["The Barrens"], 17 };
LevelRange = "29-38";
MinLevel = "19";
PlayerLimit = "5";
Continent = AL["Kalimdor"];
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Roogug"], NPC, 6168 };
{ GREY.."2) "..AL["Aggem Thorncurse"], NPC, 4424 };
{ GREY.."3) "..AL["Death Speaker Jargba"], NPC, 4428 };
{ GREY.."4) "..AL["Overlord Ramtusk"], NPC, 4420 };
{ GREY..INDENT..AL["Razorfen Spearhide"].." ("..AL["Rare"]..")", NPC, 4438 };
{ GREY.."5) "..AL["Agathelos the Raging"], NPC, 4422 };
{ GREY.."6) "..AL["Blind Hunter"].." ("..AL["Rare"]..")", NPC, 4425 };
{ GREY.."7) "..AL["Charlga Razorflank"], NPC, 4421 };
{ GREY.."8) "..AL["Willix the Importer"], NPC, 4508 };
{ GREY..INDENT..AL["Heralath Fallowbrook"], NPC, 4510 };
{ GREY.."9) "..AL["Earthcaller Halmgar"].." ("..AL["Rare"]..")", NPC, 4842 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
};
RazorfenDowns = {
ZoneName = { AL["Razorfen Downs"], 722 };
Acronym = "RFD";
Location = { AL["The Barrens"], 17 };
LevelRange = "37-46";
MinLevel = "25";
PlayerLimit = "5";
Continent = AL["Kalimdor"];
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Tuten'kash"], NPC, 7355 };
{ GREY.."2) "..AL["Henry Stern"], NPC, 8696 };
{ GREY..INDENT..AL["Belnistrasz"], NPC, 8516 };
{ GREY..INDENT..AL["Sah'rhee"], NPC, 8767 };
{ GREY..INDENT..AL["Lady Falther'ess"].." ("..AL["Scourge Invasion"]..")", NPC, 14686 };
{ GREY.."3) "..AL["Mordresh Fire Eye"], NPC, 7357 };
{ GREY.."4) "..AL["Glutton"], NPC, 8567 };
{ GREY.."5) "..AL["Ragglesnout"].." ("..AL["Rare"]..", "..AL["Varies"]..")", NPC, 7354 };
{ GREY.."6) "..AL["Amnennar the Coldbringer"], NPC, 7358 };
{ GREY.."7) "..AL["Plaguemaw the Rotting"], NPC, 7356 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
};
ZulFarrak = {
ZoneName = { AL["Zul'Farrak"], 978 };
Acronym = "ZF";
Location = { AL["Tanaris"], 440 };
LevelRange = "44-54";
MinLevel = "30";
PlayerLimit = "5";
Continent = AL["Kalimdor"];
{ ORNG..AL["Key"]..": "..AL["Mallet of Zul'Farrak"].." ("..AL["Gahz'rilla"]..")", ITEM, 9240 };
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Antu'sul"], NPC, 8127 };
{ GREY.."2) "..AL["Theka the Martyr"], NPC, 7272 };
{ GREY.."3) "..AL["Witch Doctor Zum'rah"], NPC, 7271 };
{ GREY..INDENT..AL["Zul'Farrak Dead Hero"], NPC, 7276 };
{ GREY.."4) "..AL["Nekrum Gutchewer"], NPC, 7796 };
{ GREY..INDENT..AL["Shadowpriest Sezz'ziz"], NPC, 7275 };
{ GREY..INDENT..AL["Dustwraith"].." ("..AL["Rare"]..")", NPC, 10081 };
{ GREY.."5) "..AL["Sergeant Bly"], NPC, 7604 };
{ GREY..INDENT..AL["Weegli Blastfuse"], NPC, 7607 };
{ GREY..INDENT..AL["Murta Grimgut"], NPC, 7608 };
{ GREY..INDENT..AL["Raven"], NPC, 7605 };
{ GREY..INDENT..AL["Oro Eyegouge"], NPC, 7606 };
{ GREY..INDENT..AL["Sandfury Executioner"], NPC, 7274 };
{ GREY.."6) "..AL["Hydromancer Velratha"], NPC, 7795 };
{ GREY..INDENT..AL["Gahz'rilla"].." ("..AL["Summon"]..")", NPC, 7273 };
{ GREY..INDENT..AL["Elder Wildmane"].." ("..AL["Lunar Festival"]..")", NPC, 15578 };
{ GREY.."7) "..AL["Chief Ukorz Sandscalp"], NPC, 7267 };
{ GREY..INDENT..AL["Ruuzlu"], NPC, 7797 };
{ GREY.."8) "..AL["Zerillis"].." ("..AL["Rare"]..", "..AL["Wanders"]..")", NPC, 10082 };
{ GREY.."9) "..AL["Sandarr Dunereaver"].." ("..AL["Rare"]..")", NPC, 10080 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
};
Maraudon = {
ZoneName = { AL["Maraudon"], 2100 };
Acronym = "Mara";
Location = { AL["Desolace"], 405 };
LevelRange = "46-55";
MinLevel = "35";
PlayerLimit = "5";
Continent = AL["Kalimdor"];
{ ORNG..AL["Key"]..": "..AL["Scepter of Celebras"].." ("..AL["Portal"]..")", ITEM, 17191 };
{ BLUE.."A) "..AL["Entrance"].." ("..AL["Orange"]..")" };
{ BLUE.."B) "..AL["Entrance"].." ("..AL["Purple"]..")" };
{ BLUE.."C) "..AL["Entrance"].." ("..AL["Portal"]..")" };
{ GREY.."1) "..AL["Veng"], NPC, 13738 };
{ GREY.."2) "..AL["Noxxion"], NPC, 13282 };
{ GREY.."3) "..AL["Razorlash"], NPC, 12258 };
{ GREY.."4) "..AL["Maraudos"], NPC, 13739 };
{ GREY.."5) "..AL["Lord Vyletongue"], NPC, 12236 };
{ GREY.."6) "..AL["Meshlok the Harvester"].." ("..AL["Rare"]..")", NPC, 12237 };
{ GREY.."7) "..AL["Celebras the Cursed"], NPC, 12225 };
{ GREY.."8) "..AL["Landslide"], NPC, 12203 };
{ GREY.."9) "..AL["Tinkerer Gizlock"], NPC, 13601 };
{ GREY.."10) "..AL["Rotgrip"], NPC, 13596 };
{ GREY.."11) "..AL["Princess Theradras"], NPC, 12201 };
{ GREY.."12) "..AL["Elder Splitrock"].." ("..AL["Lunar Festival"]..")", NPC, 15556 };
};
DireMaulEast = {
ZoneName = { AL["Dire Maul"].." ("..AL["East"]..")", 2557 };
Acronym = "DME";
Location = { AL["Feralas"], 357 };
LevelRange = "55-58";
MinLevel = "50";
PlayerLimit = "5";
Continent = AL["Kalimdor"];
{ ORNG..AL["Key"]..": "..AL["Brazier of Invocation"].." ("..AL["Тier 0.5 Summon"]..")", ITEM, 22057 };
{ BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..AL["Entrance"] };
{ BLUE.."C) "..AL["Entrance"] };
{ BLUE.."D) "..AL["Exit"] };
{ GREY.."1) "..AL["Pusillin"].." ("..AL["Chase Begins"]..")", NPC, 14354 };
{ GREY.."2) "..AL["Pusillin"].." ("..AL["Chase Ends"]..")", NPC, 14354 };
{ GREY.."3) "..AL["Zevrim Thornhoof"], NPC, 11490 };
{ GREY..INDENT..AL["Hydrospawn"], NPC, 13280 };
{ GREY..INDENT..AL["Lethtendris"], NPC, 14327 };
{ GREY..INDENT..AL["Pimgib"], NPC, 14349 };
{ GREY.."4) "..AL["Old Ironbark"], NPC, 11491 };
{ GREY.."5) "..AL["Alzzin the Wildshaper"], NPC, 11492 };
{ GREY..INDENT..AL["Isalien"].." ("..AL["Summon"]..")", NPC, 16097 };
{ GREY..INDENT..AL["Felvine Shard"], OBJECT, 179559 };
{ GREN.."1') "..AL["A Dusty Tome"].." ("..AL["Varies"]..")", OBJECT, 179547 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Dire Maul Books"] };
{ GREY..INDENT..AL["Set: "]..BIS["Ironweave Battlesuit"] };
};
DireMaulNorth = {
ZoneName = { AL["Dire Maul"].." ("..AL["North"]..")", 2557 };
Acronym = "DMN";
Location = { AL["Feralas"], 357 };
LevelRange = "57-60";
MinLevel = "50";
PlayerLimit = "5";
Continent = AL["Kalimdor"];
{ ORNG..AL["Key"]..": "..AL["Crescent Key"], ITEM, 18249 };
{ ORNG..AL["Key"]..": "..AL["Gordok Courtyard Key"], ITEM, 18266 };
{ ORNG..AL["Key"]..": "..AL["Gordok Inner Door Key"], ITEM, 18268 };
{ BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..AL["Library"] };
{ BLUE.."C) "..AL["Dire Maul"].." ("..AL["West"]..")", ZONE, 2557 };
{ GREY.."1) "..AL["Guard Mol'dar"], NPC, 14326 };
{ GREY.."2) "..AL["Stomper Kreeg"], NPC, 14322 };
{ GREY.."3) "..AL["Guard Fengus"], NPC, 14321 };
{ GREY.."4) "..AL["Knot Thimblejack"], NPC, 14338 };
{ GREY..INDENT..AL["Guard Slip'kik"], NPC, 14323 };
{ GREY.."5) "..AL["Captain Kromcrush"], NPC, 14325 };
{ GREY.."6) "..AL["King Gordok"], NPC, 11501 };
{ GREY..INDENT..AL["Cho'Rush the Observer"], NPC, 14324 };
{ GREN.."1') "..AL["Library"] };
{ GREN..INDENT..AL["Falrin Treeshaper"], NPC, 16032 };
{ GREN..INDENT..AL["Lorekeeper Lydros"], NPC, 14368 };
{ GREN..INDENT..AL["Lorekeeper Javon"], NPC, 14381 };
{ GREN..INDENT..AL["Lorekeeper Kildrath"], NPC, 14383 };
{ GREN..INDENT..AL["Lorekeeper Mykos"], NPC, 14382 };
{ GREN..INDENT..AL["Shen'dralar Provisioner"], NPC, 14371 };
{ GREN..INDENT..AL["Skeletal Remains of Kariel Winthalus"], OBJECT, 179544 };
{ GREN.."2') "..AL["A Dusty Tome"].." ("..AL["Varies"]..")", OBJECT, 179547 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Dire Maul Books"] };
{ GREY..INDENT..AL["Tribute Run"], OBJECT, 190005 };
};
DireMaulWest = {
ZoneName = { AL["Dire Maul"].." ("..AL["West"]..")", 2557 };
Acronym = "DMW";
Location = { AL["Feralas"], 357 };
LevelRange = "57-60";
MinLevel = "50";
PlayerLimit = "5";
Continent = AL["Kalimdor"];
{ ORNG..AL["Key"]..": "..AL["Crescent Key"], ITEM, 18249 };
{ ORNG..AL["Key"]..": "..AL["J'eevee's Jar"].." ("..AL["Lord Hel'nurath"]..")", ITEM, 18663 };
{ BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..AL["Pylons"] };
{ BLUE.."C) "..AL["Dire Maul"].." ("..AL["North"]..")", ZONE, 2557 };
{ GREY.."1) "..AL["Shen'dralar Ancient"], NPC, 14358 };
{ GREY.."2) "..AL["Tendris Warpwood"], NPC, 11489 };
{ GREY..INDENT..AL["Ancient Equine Spirit"], NPC, 14566 };
{ GREY.."3) "..AL["Illyanna Ravenoak"], NPC, 11488 };
{ GREY..INDENT..AL["Ferra"], NPC, 14308 };
{ GREY.."4) "..AL["Magister Kalendris"], NPC, 11487 };
{ GREY.."5) "..AL["Tsu'zee"].." ("..AL["Rare"]..")", NPC, 11467 };
{ GREY.."6) "..AL["Immol'thar"], NPC, 11496 };
{ GREY..INDENT..AL["Lord Hel'nurath"].." ("..AL["Rare"]..", "..AL["Summon"]..")", NPC, 14506 };
{ GREY.."7) "..AL["Prince Tortheldrin"], NPC, 11486 };
{ GREY..INDENT..AL["The Prince's Chest"], OBJECT, 179545 };
{ GREY.."8) "..AL["Revanchion"].." ("..AL["Scourge Invasion"]..")", NPC, 11467 };
{ GREN.."1') "..AL["Library"] };
{ GREN..INDENT..AL["Falrin Treeshaper"], NPC, 16032 };
{ GREN..INDENT..AL["Lorekeeper Lydros"], NPC, 14368 };
{ GREN..INDENT..AL["Lorekeeper Javon"], NPC, 14381 };
{ GREN..INDENT..AL["Lorekeeper Kildrath"], NPC, 14383 };
{ GREN..INDENT..AL["Lorekeeper Mykos"], NPC, 14382 };
{ GREN..INDENT..AL["Shen'dralar Provisioner"], NPC, 14371 };
{ GREN..INDENT..AL["Skeletal Remains of Kariel Winthalus"], OBJECT, 179544 };
{ GREN.."2') "..AL["A Dusty Tome"].." ("..AL["Varies"]..")", OBJECT, 179547 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Dire Maul Books"] };
};
OnyxiasLair = {
ZoneName = { AL["Onyxia's Lair"], 2159 };
Acronym = "Ony";
Location = { AL["Dustwallow Marsh"], 15 };
LevelRange = "60+";
MinLevel = "60";
PlayerLimit = "40";
Continent = AL["Kalimdor"];
{ ORNG..AL["Attunement Required"] };
{ ORNG..AL["Key"]..": "..AL["Drakefire Amulet"], ITEM, 16309 };
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Onyxian Warders"], NPC, 12129 };
{ GREY.."2) "..AL["Whelp Eggs"] };
{ GREY.."3) "..AL["Onyxia"], NPC, 10184 };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ ORNG..AL["Damage: "]..AL["Fire"] };
};
TheTempleofAhnQiraj = {
ZoneName = { AL["Temple of Ahn'Qiraj"], 3428 };
Acronym = "AQ40";
Location = { AL["Silithus"], 1377 };
LevelRange = "60+";
MinLevel = "60";
PlayerLimit = "40";
Continent = AL["Kalimdor"];
{ ORNG..AL["Reputation"]..": "..BF["Brood of Nozdormu"], FACTION, 910 };
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["The Prophet Skeram"].." ("..AL["Outside"]..")", NPC, 15263 };
{ GREY.."2) "..AL["Bug Trio"].." ("..AL["Optional"]..")" };
{ GREY..INDENT..AL["Vem"], NPC, 15544 };
{ GREY..INDENT..AL["Lord Kri"], NPC, 15511 };
{ GREY..INDENT..AL["Princess Yauj"], NPC, 15543 };
{ GREY.."3) "..AL["Battleguard Sartura"], NPC, 15516 };
{ GREY.."4) "..AL["Fankriss the Unyielding"], NPC, 15510 };
{ GREY.."5) "..AL["Viscidus"].." ("..AL["Optional"]..")", NPC, 15299 };
{ GREY.."6) "..AL["Princess Huhuran"], NPC, 15509 };
{ GREY.."7) "..AL["The Twin Emperors"] };
{ GREY..INDENT..AL["Emperor Vek'lor"], NPC, 15276 };
{ GREY..INDENT..AL["Emperor Vek'nilash"], NPC, 15275 };
{ GREY.."8) "..AL["Ouro"].." ("..AL["Optional"]..")", NPC, 15517 };
{ GREY.."9) "..AL["C'Thun"], NPC, 15589 };
{ GREN.."1') "..AL["Andorgos"], NPC, 15502 };
{ GREN..INDENT..AL["Vethsera"], NPC, 15504 };
{ GREN..INDENT..AL["Kandrostrasz"], NPC, 15503 };
{ GREN.."2') "..AL["Arygos"], NPC, 15380 };
{ GREN..INDENT..AL["Caelestrasz"], NPC, 15379 };
{ GREN..INDENT..AL["Merithra of the Dream"], NPC, 15378 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["AQ Enchants"] };
{ GREY..INDENT..AL["Temple of Ahn'Qiraj Sets"] };
{ GREY..INDENT..AL["AQ Opening Quest Chain"] };
{ "" };
{ ORNG..AL["Damage: "]..AL["Nature"] };
};
TheRuinsofAhnQiraj = {
ZoneName = { AL["Ruins of Ahn'Qiraj"], 3429 };
Acronym = "AQ20";
Location = { AL["Silithus"], 1377 };
LevelRange = "60+";
MinLevel = "60";
PlayerLimit = "20";
Continent = AL["Kalimdor"];
{ ORNG..AL["Reputation"]..": "..BF["Cenarion Circle"], FACTION, 609 };
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Kurinnaxx"], NPC, 15348 };
{ GREY..INDENT..AL["Lieutenant General Andorov"], NPC, 15471 };
{ GREY..INDENT..AL["Four Kaldorei Elites"], NPC, 15473 };
{ GREY.."2) "..AL["General Rajaxx"], NPC, 15341 };
{ GREY..INDENT..AL["Captain Qeez"], NPC, 15391 };
{ GREY..INDENT..AL["Captain Tuubid"], NPC, 15392 };
{ GREY..INDENT..AL["Captain Drenn"], NPC, 15389 };
{ GREY..INDENT..AL["Captain Xurrem"], NPC, 15390 };
{ GREY..INDENT..AL["Major Yeggeth"], NPC, 15386 };
{ GREY..INDENT..AL["Major Pakkon"], NPC, 15388 };
{ GREY..INDENT..AL["Colonel Zerran"], NPC, 15385 };
{ GREY.."3) "..AL["Moam"].." ("..AL["Optional"]..")", NPC, 15340 };
{ GREY.."4) "..AL["Buru the Gorger"].." ("..AL["Optional"]..")", NPC, 15370 };
{ GREY.."5) "..AL["Ayamiss the Hunter"].." ("..AL["Optional"]..")", NPC, 15369 };
{ GREY.."6) "..AL["Ossirian the Unscarred"], NPC, 15339 };
{ GREN.."1') "..AL["Safe Room"] };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Class Books"] };
{ GREY..INDENT..AL["AQ Enchants"] };
{ GREY..INDENT..AL["Ruins of Ahn'Qiraj Sets"] };
{ "" };
{ ORNG..AL["Damage: "]..AL["Nature"] };
};
--************************************************
-- Eastern Kingdoms Instances
--************************************************
BlackrockDepths = {
ZoneName = { AL["Blackrock Depths"], 1584 };
Acronym = "BRD";
Location = { AL["Blackrock Mountain"], 25 };
LevelRange = "52-60";
MinLevel = "42";
PlayerLimit = "5";
Continent = AL["Eastern Kingdoms"];
{ ORNG..AL["Key"]..": "..AL["Shadowforge Key"], ITEM, 11000 };
{ ORNG..AL["Key"]..": "..AL["Prison Cell Key"], ITEM, 11140 };
{ ORNG..AL["Key"]..": "..AL["Banner of Provocation"].." ("..AL["Тier 0.5 Summon"]..")", ITEM, 21986 };
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Lord Roccor"], NPC, 9025 };
{ GREY.."2) "..AL["Kharan Mighthammer"], NPC, 9021 };
{ GREY.."3) "..AL["Commander Gor'shak"], NPC, 9020 };
{ GREY.."4) "..AL["Marshal Windsor"], NPC, 9023 };
{ GREY.."5) "..AL["High Interrogator Gerstahn"], NPC, 9018 };
{ GREY.."6) "..AL["Ring of Law"] };
{ GREY..INDENT..AL["Anub'shiah"].." ("..AL["Random"]..")", NPC, 9031 };
{ GREY..INDENT..AL["Eviscerator"].." ("..AL["Random"]..")", NPC, 9029 };
{ GREY..INDENT..AL["Gorosh the Dervish"].." ("..AL["Random"]..")", NPC, 9027 };
{ GREY..INDENT..AL["Grizzle"].." ("..AL["Random"]..")", NPC, 9028 };
{ GREY..INDENT..AL["Hedrum the Creeper"].." ("..AL["Random"]..")", NPC, 9032 };
{ GREY..INDENT..AL["Ok'thor the Breaker"].." ("..AL["Random"]..")", NPC, 9030 };
{ GREY..INDENT..AL["Theldren"].." ("..AL["Summon"]..")", NPC, 16059 };
{ GREY..INDENT..AL["Lefty"].." (|cfffff468"..BC["Rogue"]..GREY..")", NPC, 16049 };
{ GREY..INDENT..AL["Malgen Longspear"].." (|cffaad372"..BC["Hunter"]..GREY..")", NPC, 16052 };
{ GREY..INDENT..AL["Gnashjaw"].." (|cffaad372"..AL["Pet"]..GREY..")", NPC, 16095 };
{ GREY..INDENT..AL["Korv"].." (|cff2773ff"..BC["Shaman"]..GREY..")", NPC, 16050 };
{ GREY..INDENT..AL["Rezznik"].." (|cffc69b6d"..AL["Engineer"]..GREY..")", NPC, 16050 };
{ GREY..INDENT..AL["Rotfang"].." (|cfffff468"..BC["Rogue"]..GREY..")", NPC, 16050 };
{ GREY..INDENT..AL["Snokh Blackspine"].." (|cff68ccef"..BC["Mage"]..GREY..")", NPC, 16050 };
{ GREY..INDENT..AL["Va'jashni"].." (|cffffffff"..BC["Priest"]..GREY..")", NPC, 16055 };
{ GREY..INDENT..AL["Volida"].." (|cff68ccef"..BC["Mage"]..GREY..")", NPC, 16055 };
{ GREY..INDENT..AL["Houndmaster Grebmar"].." ("..AL["Lower"]..")", NPC, 9319 };
{ GREY..INDENT..AL["Elder Morndeep"].." ("..AL["Lunar Festival"]..")", NPC, 15549 };
{ GREY..INDENT..AL["High Justice Grimstone"], NPC, 10096 };
{ GREY.."7) "..AL["Monument of Franclorn Forgewright"], OBJECT, 164689 };
{ GREY..INDENT..AL["Pyromancer Loregrain"].." ("..AL["Rare"]..")", NPC, 9024 };
{ GREY.."8) "..AL["The Vault"] };
{ GREY..INDENT..AL["Warder Stilgiss"].." ("..AL["Rare"]..")", NPC, 9041 };
{ GREY..INDENT..AL["Verek"].." ("..AL["Rare"]..")", NPC, 9042 };
{ GREY..INDENT..AL["Watchman Doomgrip"], NPC, 9476 };
{ GREY.."9) "..AL["Fineous Darkvire"], NPC, 9056 };
{ GREY.."10) "..AL["Lord Incendius"], NPC, 9017 };
{ GREY..INDENT..AL["The Black Anvil"] };
{ GREY.."11) "..AL["Bael'Gar"], NPC, 9016 };
{ GREY.."12) "..AL["Shadowforge Lock"] };
{ GREY.."13) "..AL["General Angerforge"], NPC, 9033 };
{ GREY.."14) "..AL["Golem Lord Argelmach"], NPC, 8983 };
{ GREY..INDENT..AL["Field Repair Bot 74A"], NPC, 14337 };
{ GREY..INDENT..AL["Blacksmithing Plans"], OBJECT, 173232 };
{ GREY.."15) "..AL["The Grim Guzzler"] };
{ GREY..INDENT..AL["Hurley Blackbreath"], NPC, 9537 };
{ GREY..INDENT..AL["Lokhtos Darkbargainer"], NPC, 12944 };
{ GREY..INDENT..AL["Mistress Nagmara"], NPC, 9500 };
{ GREY..INDENT..AL["Phalanx"], NPC, 9502 };
{ GREY..INDENT..AL["Plugger Spazzring"], NPC, 9499 };
{ GREY..INDENT..AL["Private Rocknot"], NPC, 9503 };
{ GREY..INDENT..AL["Ribbly Screwspigot"], NPC, 9543 };
{ GREY.."16) "..AL["Ambassador Flamelash"], NPC, 9156 };
{ GREY.."17) "..AL["Panzor the Invincible"].." ("..AL["Rare"]..")", NPC, 8923 };
{ GREY..INDENT..AL["Blacksmithing Plans"], OBJECT, 173232 };
{ GREY.."18) "..AL["Summoner's Tomb"] };
{ GREY..INDENT..AL["Chest of The Seven"], OBJECT, 169243 };
{ GREY.."19) "..AL["The Lyceum"] };
{ GREY.."20) "..AL["Magmus"], NPC, 9938 };
{ GREY.."21) "..AL["Emperor Dagran Thaurissan"], NPC, 9019 };
{ GREY..INDENT..AL["Princess Moira Bronzebeard"], NPC, 8929 };
{ GREY..INDENT..AL["High Priestess of Thaurissan"], NPC, 10076 };
{ GREY.."22) "..AL["The Black Forge"] };
{ GREY.."23) "..AL["Molten Core"], ZONE, 2717 };
{ GREY..INDENT..AL["Core Fragment"], OBJECT, 179553 };
{ GREY.."24) "..AL["Overmaster Pyron"], NPC, 9026 };
{ GREY.."25) "..AL["Blacksmithing Plans"], OBJECT, 173232 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Set: "]..BIS["The Gladiator"] };
{ GREY..INDENT..AL["Set: "]..BIS["Ironweave Battlesuit"] };
};
BlackrockSpireLower = {
ZoneName = { AL["Lower Blackrock Spire"], 1583 };
Acronym = "LBRS";
Location = { AL["Blackrock Mountain"], 25 };
LevelRange = "55-60";
MinLevel = "55";
PlayerLimit = "10";
Continent = AL["Eastern Kingdoms"];
{ ORNG..AL["Key"]..": "..AL["Brazier of Invocation"].." ("..AL["Тier 0.5 Summon"]..")", ITEM, 22057 };
{ BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..AL["Upper Blackrock Spire"].." (UBRS)", ZONE, 1583 };
{ BLUE.."C-F) "..AL["Connections"] };
{ GREY.."1) "..AL["Vaelan"].." ("..AL["Upper"]..")", NPC, 10296 };
{ GREY.."2) "..AL["Warosh"].." ("..AL["Wanders"]..")", NPC, 10799 };
{ GREY..INDENT..AL["Elder Stonefort"].." ("..AL["Lunar Festival"]..")", NPC, 15560 };
{ GREY.."3) "..AL["Roughshod Pike"], OBJECT, 175886 };
{ GREY.."4) "..AL["Spirestone Butcher"].." ("..AL["Rare"]..")", NPC, 9219 };
{ GREY.."5) "..AL["Highlord Omokk"], NPC, 9196 };
{ GREY.."6) "..AL["Spirestone Battle Lord"].." ("..AL["Rare"]..")", NPC, 9218 };
{ GREY..INDENT..AL["Spirestone Lord Magus"].." ("..AL["Rare"]..")", NPC, 9217 };
{ GREY.."7) "..AL["Shadow Hunter Vosh'gajin"], NPC, 9236 };
{ GREY..INDENT..AL["Fifth Mosh'aru Tablet"], OBJECT, 175949 };
{ GREY.."8) "..AL["Bijou"], NPC, 10257 };
{ GREY.."9) "..AL["War Master Voone"], NPC, 9237 };
{ GREY..INDENT..AL["Mor Grayhoof"].." ("..AL["Summon"]..")", NPC, 16080 };
{ GREY..INDENT..AL["Sixth Mosh'aru Tablet"], OBJECT, 175950 };
{ GREY.."10) "..AL["Bijou's Belongings"], OBJECT, 175334 };
{ GREY.."11) "..AL["Human Remains"].." ("..AL["Lower"]..")", OBJECT, 176090 };
{ GREY..INDENT..AL["Unfired Plate Gauntlets"].." ("..AL["Lower"]..")", OBJECT, 176089 };
{ GREY.."12) "..AL["Bannok Grimaxe"].." ("..AL["Rare"]..")", NPC, 9596 };
{ GREY.."13) "..AL["Mother Smolderweb"], NPC, 10596 };
{ GREY.."14) "..AL["Crystal Fang"].." ("..AL["Rare"]..")", NPC, 10376 };
{ GREY.."15) "..AL["Urok's Tribute Pile"], OBJECT, 175621 };
{ GREY..INDENT..AL["Urok Doomhowl"].." ("..AL["Summon"]..")", NPC, 10584 };
{ GREY.."16) "..AL["Quartermaster Zigris"], NPC, 9736 };
{ GREY.."17) "..AL["Halycon"], NPC, 10220 };
{ GREY..INDENT..AL["Gizrul the Slavener"], NPC, 10268 };
{ GREY.."18) "..AL["Ghok Bashguud"].." ("..AL["Rare"]..")", NPC, 9718 };
{ GREY.."19) "..AL["Overlord Wyrmthalak"], NPC, 9568 };
{ GREN.."1') "..AL["Burning Felguard"].." ("..AL["Rare"]..", "..AL["Summon"]..")", NPC, 10263 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Set: "]..BIS["Ironweave Battlesuit"] };
{ GREY..INDENT..AL["Set: "]..BIS["Spider's Kiss"] };
{ GREY..INDENT..AL["Set: "]..AL["Tier 0/0.5 Sets"] };
};
BlackrockSpireUpper = {
ZoneName = { AL["Upper Blackrock Spire"], 1583 };
Acronym = "UBRS";
Location = { AL["Blackrock Mountain"], 25 };
LevelRange = "55-60";
MinLevel = "55";
PlayerLimit = "10";
Continent = AL["Eastern Kingdoms"];
{ ORNG..AL["Key"]..": "..AL["Seal of Ascension"], ITEM, 12344 };
{ ORNG..AL["Key"]..": "..AL["Brazier of Invocation"].." ("..AL["Тier 0.5 Summon"]..")", ITEM, 22057 };
{ BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..AL["Lower Blackrock Spire"].." (LBRS)", ZONE, 1583 };
{ BLUE.."C-E) "..AL["Connections"] };
{ GREY.."1) "..AL["Pyroguard Emberseer"], NPC, 9816 };
{ GREY.."2) "..AL["Solakar Flamewreath"], NPC, 10264 };
{ GREY..INDENT..AL["Father Flame"], OBJECT, 175245 };
{ GREY.."3) "..AL["Darkstone Tablet"], OBJECT, 175385 };
{ GREY..INDENT..AL["Doomrigger's Coffer"], OBJECT, 175382 };
{ GREY.."4) "..AL["Jed Runewatcher"].." ("..AL["Rare"]..")", NPC, 10509 };
{ GREY.."5) "..AL["Goraluk Anvilcrack"].." ("..AL["Rare"]..")", NPC, 10899 };
{ GREY.."6) "..AL["Warchief Rend Blackhand"], NPC, 10429 };
{ GREY..INDENT..AL["Gyth"], NPC, 10339 };
{ GREY.."7) "..AL["Awbee"], NPC, 10740 };
{ GREY.."8) "..AL["The Beast"], NPC, 10430 };
{ GREY..INDENT..AL["Lord Valthalak"].." ("..AL["Summon"]..")", NPC, 16042 };
{ GREY..INDENT..AL["Finkle Einhorn"], NPC, 10776 };
{ GREY.."9) "..AL["General Drakkisath"], NPC, 10363 };
{ GREY..INDENT..AL["Drakkisath's Brand"], OBJECT, 179880 };
{ GREY.."10) "..AL["Blackwing Lair"].." (BWL)", ZONE, 2677 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Set: "]..BIS["Ironweave Battlesuit"] };
{ GREY..INDENT..AL["Tier 0/0.5 Sets"] };
};
BlackwingLair = {
ZoneName = { AL["Blackwing Lair"], 2677 };
Acronym = "BWL";
Location = { AL["Blackrock Spire"], 1583 };
LevelRange = "60+";
MinLevel = "60";
PlayerLimit = "40";
Continent = AL["Eastern Kingdoms"];
{ ORNG..AL["Attunement Required"] };
{ BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..AL["Connection"] };
{ BLUE.."C) "..AL["Connection"] };
{ GREY.."1) "..AL["Razorgore the Untamed"], NPC, 12435 };
{ GREY.."2) "..AL["Vaelastrasz the Corrupt"], NPC, 13020 };
{ GREY.."3) "..AL["Broodlord Lashlayer"], NPC, 12017 };
{ GREY.."4) "..AL["Firemaw"], NPC, 11983 };
{ GREY.."5) "..AL["Master Elemental Shaper Krixix"], NPC, 14401 };
{ GREY.."6) "..AL["Ebonroc"], NPC, 14601 };
{ GREY.."7) "..AL["Flamegor"], NPC, 11981 };
{ GREY.."8) "..AL["Chromaggus"], NPC, 14020 };
{ GREY.."9) "..AL["Nefarian"], NPC, 11583 };
{ GREN.."1') "..AL["Alchemy Lab"] };
{ GREN.."2') "..AL["Draconic for Dummies"], OBJECT, 180666 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Tier 2 Sets"] };
{ "" };
{ "" };
{ "" };
{ "" };
{ "" };
{ ORNG..AL["Damage: "]..AL["Fire"] };
};
Gnomeregan = {
ZoneName = { AL["Gnomeregan"], 133 };
Acronym = "Gnome";
Location = { AL["Dun Morogh"], 1 };
LevelRange = "29-38";
MinLevel = "19";
PlayerLimit = "5";
Continent = AL["Eastern Kingdoms"];
{ ORNG..AL["Key"]..": "..AL["Workshop Key"].." ("..AL["Back"]..")", ITEM, 6893 };
{ BLUE.."A) "..AL["Entrance"].." ("..AL["Front"]..")" };
{ BLUE.."B) "..AL["Entrance"].." ("..AL["Back1"]..")" };
{ GREY.."1) "..AL["Blastmaster Emi Shortfuse"], NPC, 7998 };
{ GREY..INDENT..AL["Grubbis"], NPC, 7361 };
{ GREY..INDENT..AL["Chomper"], NPC, 6215 };
{ GREY.."2) "..AL["Clean Room"] };
{ GREY..INDENT..AL["Tink Sprocketwhistle"], NPC, 9676 };
{ GREY..INDENT..AL["The Sparklematic 5200"], OBJECT, 142487 };
{ GREY..INDENT..AL["Mail Box"] };
{ GREY.."3) "..AL["Kernobee"], NPC, 7850 };
{ GREY..INDENT..AL["Alarm-a-bomb 2600"], NPC, 7897 };
{ GREY..INDENT..AL["Matrix Punchograph 3005-B"], OBJECT, 142475 };
{ GREY.."4) "..AL["Viscous Fallout"], NPC, 7079 };
{ GREY.."5) "..AL["Electrocutioner 6000"], NPC, 6235 };
{ GREY..INDENT..AL["Matrix Punchograph 3005-C"], OBJECT, 142476 };
{ GREY.."6) "..AL["Crowd Pummeler 9-60"].." ("..AL["Upper"]..")", NPC, 6229 };
{ GREY..INDENT..AL["Matrix Punchograph 3005-D"], OBJECT, 142696 };
{ GREY.."7) "..AL["Dark Iron Ambassador"].." ("..AL["Rare"]..")", NPC, 6228 };
{ GREY.."8) "..AL["Mekgineer Thermaplugg"], NPC, 7800 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
};
MoltenCore = {
ZoneName = { AL["Molten Core"], 2717 };
Acronym = "MC";
Location = { AL["Blackrock Depths"], 1584 };
LevelRange = "60+";
MinLevel = "60";
PlayerLimit = "40";
Continent = AL["Eastern Kingdoms"];
{ ORNG..AL["Attunement Required"] };
{ ORNG..AL["Reputation"]..": "..BF["Hydraxian Waterlords"], FACTION, 749 };
{ ORNG..AL["Key"]..": "..AL["Aqual Quintessence"].." ("..AL["Boss"]..")", ITEM, 17333 };
{ ORNG..AL["Key"]..": "..AL["Eternal Quintessence"].." ("..AL["Boss"]..")", ITEM, 22754 };
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Lucifron"], NPC, 12118 };
{ GREY.."2) "..AL["Magmadar"], NPC, 11982 };
{ GREY.."3) "..AL["Gehennas"], NPC, 12259 };
{ GREY.."4) "..AL["Garr"], NPC, 12057 };
{ GREY.."5) "..AL["Shazzrah"], NPC, 12264 };
{ GREY.."6) "..AL["Baron Geddon"], NPC, 12056 };
{ GREY.."7) "..AL["Golemagg the Incinerator"], NPC, 11988 };
{ GREY.."8) "..AL["Sulfuron Harbinger"], NPC, 12098 };
{ GREY.."9) "..AL["Majordomo Executus"], NPC, 12018 };
{ GREY.."10) "..AL["Ragnaros"], NPC, 11502 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Random Boss Loot"] };
{ GREY..INDENT..AL["Tier 1 Sets"] };
{ GREY..INDENT..AL["Tier 2 Sets"] };
{ "" };
{ "" };
{ "" };
{ ORNG..AL["Damage: "]..AL["Fire"] };
};
Naxxramas = {
ZoneName = { AL["Naxxramas"], 3456 };
Acronym = "Naxx";
Location = { AL["Eastern Plaguelands"], 139 };
LevelRange = "60+";
MinLevel = "60";
PlayerLimit = "40";
Continent = AL["Eastern Kingdoms"];
{ ORNG..AL["Attunement Required"] };
{ ORNG..AL["Reputation"]..": "..BF["Argent Dawn"], FACTION, 529 };
{ BLUE.."A) "..AL["Entrance"] };
{ BLUE..INDENT..AL["Archmage Tarsis Kir-Moldir"], NPC, 16381 };
{ BLUE..INDENT..AL["Mr. Bigglesworth"].." ("..AL["Wanders"]..")", NPC, 16998 };
{ GREY..AL["Abomination Wing"] };
{ GREY..INDENT.."1) "..AL["Patchwerk"], NPC, 16028 };
{ GREY..INDENT.."2) "..AL["Grobbulus"], NPC, 15931 };
{ GREY..INDENT.."3) "..AL["Gluth"], NPC, 15932 };
{ GREY..INDENT.."4) "..AL["Thaddius"], NPC, 15928 };
{ ORNG..AL["Spider Wing"] };
{ ORNG..INDENT.."1) "..AL["Anub'Rekhan"], NPC, 15956 };
{ ORNG..INDENT.."2) "..AL["Grand Widow Faerlina"], NPC, 15953 };
{ ORNG..INDENT.."3) "..AL["Maexxna"], NPC, 15952 };
{ PURP..AL["Plague Wing"] };
{ PURP..INDENT.."1) "..AL["Noth the Plaguebringer"], NPC, 15954 };
{ PURP..INDENT.."2) "..AL["Heigan the Unclean"], NPC, 15936 };
{ PURP..INDENT.."3) "..AL["Loatheb"], NPC, 16011 };
{ _RED..AL["Deathknight Wing"] };
{ _RED..INDENT.."1) "..AL["Instructor Razuvious"], NPC, 16061 };
{ _RED..INDENT.."2) "..AL["Gothik the Harvester"], NPC, 16060 };
{ _RED..INDENT.."3) "..AL["The Four Horsemen"] };
{ _RED..INDENT..INDENT..AL["Thane Korth'azz"], NPC, 16064 };
{ _RED..INDENT..INDENT..AL["Lady Blaumeux"], NPC, 16065 };
{ _RED..INDENT..INDENT..AL["Highlord Mograine"], NPC, 16062 };
{ _RED..INDENT..INDENT..AL["Sir Zeliek"], NPC, 16063 };
{ GREN..AL["Frostwyrm Lair"] };
{ GREN..INDENT.."1) "..AL["Sapphiron"], NPC, 15989 };
{ GREN..INDENT.."2) "..AL["Kel'Thuzad"], NPC, 15990 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Tier 3 Sets"] };
{ "" };
{ ORNG..AL["Damage: "]..AL["Nature"]..", "..AL["Fire"]..", "..AL["Arcane"]..", "..AL["Shadow"]..", "..AL["Frost"]};
};
SMLibrary = {
ZoneName = { AL["Scarlet Monastery"]..": "..AL["Library"], 796 };
Acronym = "SM Lib";
Location = { AL["Tirisfal Glades"], 85 };
LevelRange = "29-39";
MinLevel = "21";
PlayerLimit = "5";
Continent = AL["Eastern Kingdoms"];
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Houndmaster Loksey"], NPC, 3974 };
{ GREY.."2) "..AL["Arcanist Doan"], NPC, 6487 };
{ GREN.."1') "..AL["Doan's Strongbox"], OBJECT, 103821 };
{ GREY.."3) ".."Brother Wystan", NPC, -1 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Set: "]..BIS["Chain of the Scarlet Crusade"] };
};
SMArmory = {
ZoneName = { AL["Scarlet Monastery"]..": "..AL["Armory"], 796 };
Acronym = "SM Arm";
Location = { AL["Tirisfal Glades"], 85 };
LevelRange = "32-42";
MinLevel = "25";
PlayerLimit = "5";
Continent = AL["Eastern Kingdoms"];
{ ORNG..AL["Key"]..": "..AL["The Scarlet Key"], ITEM, 7146 };
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Herod"], NPC, 3975 };
{ GREY.."2) ".."Armory Quartermaster Daghelm", NPC, -1 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Set: "]..BIS["Chain of the Scarlet Crusade"] };
};
SMCathedral = {
ZoneName = { AL["Scarlet Monastery"]..": "..AL["Cathedral"], 796 };
Acronym = "SM Cath";
Location = { AL["Tirisfal Glades"], 85 };
LevelRange = "35-45";
MinLevel = "25";
PlayerLimit = "5";
Continent = AL["Eastern Kingdoms"];
{ ORNG..AL["Key"]..": "..AL["The Scarlet Key"], ITEM, 7146 };
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["High Inquisitor Fairbanks"], NPC, 4542 };
{ GREY.."2) "..AL["Scarlet Commander Mograine"], NPC, 3976 };
{ GREY.."3) "..AL["High Inquisitor Whitemane"], NPC, 3977 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Set: "]..BIS["Chain of the Scarlet Crusade"] };
};
SMGraveyard = {
ZoneName = { AL["Scarlet Monastery"]..": "..AL["Graveyard"], 796 };
Acronym = "SM GY";
Location = { AL["Tirisfal Glades"], 85 };
LevelRange = "26-36";
MinLevel = "25";
PlayerLimit = "5";
Continent = AL["Eastern Kingdoms"];
{ BLUE.."A) "..AL["Entrance"] };
{ GREY.."1) "..AL["Interrogator Vishas"], NPC, 3983 };
{ GREY..INDENT..AL["Vorrel Sengutz"], NPC, 3981 };
{ GREY.."2) "..AL["Scorn"].." ("..AL["Scourge Invasion"]..")", NPC, 14693 };
{ GREY.."3) "..AL["Bloodmage Thalnos"], NPC, 4543 };
{ GREN.."1') "..AL["Ironspine"].." ("..AL["Rare"]..")", NPC, 6489 };
{ GREN..INDENT..AL["Azshir the Sleepless"].." ("..AL["Rare"]..")", NPC, 6490 };
{ GREN..INDENT..AL["Fallen Champion"].." ("..AL["Rare"]..")", NPC, 6488 };
{ GREY.."4) ".."Duke Dreadmoore", NPC, -1 };
{ "" };
{ GREY..INDENT..AL["Trash Mobs"] };
{ GREY..INDENT..AL["Set: "]..BIS["Chain of the Scarlet Crusade"] };
};
Scholomance = {
ZoneName = { AL["Scholomance"], 2057 };
Acronym = "Scholo";
Location = { AL["Western Plaguelands"], 28 };
LevelRange = "58-60";
MinLevel = "45";
PlayerLimit = "5";
Continent = AL["Eastern Kingdoms"];
{ ORNG..AL["Reputation"]..": "..BF["Argent Dawn"], FACTION, 529 };
{ ORNG..AL["Key"]..": "..AL["Skeleton Key"], ITEM, 13704 };
{ ORNG..AL["Key"]..": "..AL["Viewing Room Key"].." ("..AL["Viewing Room"]..")", ITEM, 13873 };
{ ORNG..AL["Key"]..": "..AL["Blood of Innocents"].." ("..AL["Kirtonos the Herald"]..")", ITEM, 13523 };
{ ORNG..AL["Key"]..": "..AL["Brazier of Invocation"].." ("..AL["Тier 0.5 Summon"]..")", ITEM, 22057 };
{ ORNG..AL["Key"]..": "..AL["Divination Scryer"].." ("..AL["Death Knight Darkreaver"]..")", ITEM, 18746 };
{ BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..AL["Connection"] };
{ BLUE.."C) "..AL["Connection"] };
{ GREY.."1) "..AL["Blood Steward of Kirtonos"], NPC, 14861 };
{ GREY..INDENT..AL["The Deed to Southshore"], OBJECT, 176486 };
{ GREY.."2) "..AL["Kirtonos the Herald"].." ("..AL["Summon"]..")", NPC, 10506 };
{ GREY.."3) "..AL["Jandice Barov"], NPC, 10503 };
{ GREY..INDENT..AL["Journal of Jandice Barov"], OBJECT, 180794 };
{ GREY.."4) "..AL["The Deed to Tarren Mill"], OBJECT, 176487 };
{ GREY..INDENT..AL["Lord Blackwood"].." ("..AL["Scourge Invasion"]..")", NPC, 14695 };
{ GREY.."5) "..AL["Rattlegore"].." ("..AL["Lower"]..")", NPC, 11622 };
{ GREY..INDENT..AL["Death Knight Darkreaver"].." ("..AL["Summon"]..")", NPC, 14516 };
{ GREY.."6) "..AL["Marduk Blackpool"], NPC, 10433 };
{ GREY..INDENT..AL["Vectus"], NPC, 10432 };