92 lines
2.5 KiB
Python
92 lines
2.5 KiB
Python
ENCOUNTER_ID = {
|
|
610: "Razorgore the Untamed",
|
|
611: "Vaelastrasz the Corrupt",
|
|
612: "Broodlord Lashlayer",
|
|
613: "Firemaw",
|
|
614: "Ebonroc",
|
|
615: "Flamegor",
|
|
616: "Chromaggus",
|
|
617: "Nefarian",
|
|
663: "Lucifron",
|
|
664: "Magmadar",
|
|
665: "Gehennas",
|
|
666: "Garr",
|
|
667: "Shazzrah",
|
|
668: "Baron Geddon",
|
|
669: "Sulfuron Harbinger",
|
|
670: "Golemagg the Incinerator",
|
|
671: "Majordomo Executus",
|
|
672: "Ragnaros",
|
|
709: "The Prophet Skeram",
|
|
710: "Silithid Royalty",
|
|
711: "Battleguard Sartura",
|
|
712: "Fankriss the Unyielding",
|
|
713: "Viscidus",
|
|
714: "Princess Huhuran",
|
|
715: "Twin Emperors",
|
|
716: "Ouro",
|
|
717: "C'thun",
|
|
718: "Kurinnaxx",
|
|
719: "General Rajaxx",
|
|
720: "Moam",
|
|
721: "Buru the Gorger",
|
|
722: "Ayamiss the Hunter",
|
|
723: "Ossirian the Unscarred",
|
|
784: "High Priest Venoxis",
|
|
785: "High Priestess Jeklik",
|
|
786: "High Priestess Mar'li",
|
|
787: "Bloodlord Mandokir",
|
|
788: "Edge of Madness",
|
|
789: "High Priest Thekal",
|
|
790: "Gahz'ranka",
|
|
791: "High Priestess Arlokk",
|
|
792: "Jin'do the Hexxer",
|
|
793: "Hakkar",
|
|
1084: "Onyxia",
|
|
1107: "Anub'Rekhan",
|
|
1108: "Gluth",
|
|
1109: "Gothik the Harvester",
|
|
1110: "Grand Widow Faerlina",
|
|
1111: "Grobbulus",
|
|
1112: "Heigan the Unclean",
|
|
1113: "Instructor Razuvious",
|
|
1114: "Kel'Thuzad",
|
|
1115: "Loatheb",
|
|
1116: "Maexxna",
|
|
1117: "Noth the Plaguebringer",
|
|
1118: "Patchwerk",
|
|
1119: "Sapphiron",
|
|
1120: "Thaddius",
|
|
1121: "The Four Horsemen",
|
|
}
|
|
|
|
ENCOUNTER_ZONES = {
|
|
"Molten Core": [663, 664, 665, 666, 667, 668, 669, 670, 671, 672],
|
|
"Onyxia": [1084],
|
|
"Blackwing Lair": [610, 611, 612, 613, 614, 615, 616, 617],
|
|
"Zul'Gurub": [784, 785, 786, 787, 788, 789, 790, 791, 792, 793],
|
|
"Ahn'Qiraj Ruins": [718, 719, 720, 721, 722, 723],
|
|
"Ahn'Qiraj Temple": [709, 710, 711, 712, 713, 714, 715, 716, 717],
|
|
"Naxxramas": [1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121],
|
|
}
|
|
|
|
ZONES_BY_ID = {
|
|
1000: "Molten Core",
|
|
1001: "Onyxia",
|
|
1002: "Blackwing Lair",
|
|
1003: "Zul'Gurub",
|
|
1004: "Ahn'Qiraj Ruins",
|
|
1005: "Ahn'Qiraj Temple",
|
|
1006: "Naxxramas",
|
|
}
|
|
|
|
ZONES_BY_SHORT_NAME = {
|
|
"MC": ["Molten Core", 1000],
|
|
"ONY": ["Onyxia", 1001],
|
|
"BWL": ["Blackwing Lair", 1002],
|
|
"ZG": ["Zul'Gurub", 1003],
|
|
"AQ20": ["Ahn'Qiraj Ruins", 1004],
|
|
"AQ40": ["Ahn'Qiraj Temple", 1005],
|
|
"NAXX": ["Naxxramas", 1006],
|
|
}
|