WoWInterface SVN AlphaMapFansUpdate

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /branches
    from Rev 4 to Rev 5
    Reverse comparison

Rev 4 → Rev 5

AlphaMapBeta/AlphaMap/AlphaMap.xml
888,28 → 888,13
<Frames>
<Frame name="AlphaMapMovementFrameTop" hidden="true" enableMouse="true">
<Size>
<AbsDimension x="1002" y="24"/>
<AbsDimension x="1002" y="32"/>
</Size>
<Anchors>
<Anchor point="TOPLEFT" relativePoint="TOPLEFT"/>
<Anchor point="TOPRIGHT" relativePoint="TOPRIGHT"/>
</Anchors>
<Layers>
<Layer level="ARTWORK">
<Texture name="AMMFTopH" file="Interface\QuestFrame\UI-QuestTitleHighlight" alphaMode="ADD"/>
</Layer>
</Layers>
<Scripts>
<OnEnter>
<!-- if ( ( not AlphaMapConfig.lock ) or ( AlphaMapConfig.lock == false ) ) then
AMMFBottomH:Show();
AMMFTopH:Show();
end -->
</OnEnter>
<OnLeave>
<!-- AMMFTopH:Hide();
AMMFBottomH:Hide(); -->
</OnLeave>
<OnShow>
this:SetFrameLevel( this:GetParent():GetFrameLevel() + 3 );
</OnShow>
930,36 → 915,19
</Frame>
<Frame name="AlphaMapMovementFrameBottom" hidden="true" enableMouse="true">
<Size>
<AbsDimension x="1002" y="24"/>
<AbsDimension x="1002" y="32"/>
</Size>
<Anchors>
<Anchor point="BOTTOMLEFT" relativePoint="BOTTOMLEFT"/>
<Anchor point="BOTTOMRIGHT" relativePoint="BOTTOMRIGHT"/>
</Anchors>
<Layers>
<Layer level="ARTWORK">
<Texture name="AMMFBottomH" file="Interface\QuestFrame\UI-QuestTitleHighlight" alphaMode="ADD"/>
</Layer>
</Layers>
<Scripts>
<OnEnter>
<!-- if ( ( not AlphaMapConfig.lock ) or ( AlphaMapConfig.lock == false ) ) then
AMMFBottomH:Show();
AMMFTopH:Show();
end -->
</OnEnter>
<OnShow>
this:SetFrameLevel( this:GetParent():GetFrameLevel() + 3 );
</OnShow>
<OnLeave>
<!-- AMMFBottomH:Hide();
AMMFTopH:Hide(); -->
</OnLeave>
<OnMouseDown>
<!-- if( not AlphaMapConfig.lock or AlphaMapConfig.lock == false ) then -->
this:GetParent():StartMoving();
this:GetParent().isMoving = true;
<!-- end -->
this:GetParent():StartMoving();
this:GetParent().isMoving = true;
</OnMouseDown>
<OnMouseUp>
this:GetParent():StopMovingOrSizing();
6620,5 → 6588,39
</Scripts>
</Frame>
 
<Frame name="AM_topOverlay" parent="UIParent" hidden="true" enableMouse="false">
<Size>
<AbsDimension x="1002" y="32"/>
</Size>
<Anchors>
<Anchor point="BOTTOMLEFT" relativePoint="BOTTOMLEFT" relativeTo="AlphaMapMovementFrameTop"/>
<Anchor point="BOTTOMRIGHT" relativePoint="BOTTOMRIGHT" relativeTo="AlphaMapMovementFrameTop"/>
<Anchor point="TOPLEFT" relativePoint="TOPLEFT" relativeTo="AlphaMapMovementFrameTop"/>
<Anchor point="TOPRIGHT" relativePoint="TOPRIGHT" relativeTo="AlphaMapMovementFrameTop"/>
</Anchors>
<Layers>
<Layer level="ARTWORK">
<Texture file="Interface\QuestFrame\UI-QuestTitleHighlight" alphaMode="ADD"/>
</Layer>
</Layers>
</Frame>
 
<Frame name="AM_botOverlay" parent="UIParent" hidden="true" enableMouse="false">
<Size>
<AbsDimension x="1002" y="32"/>
</Size>
<Anchors>
<Anchor point="BOTTOMLEFT" relativePoint="BOTTOMLEFT" relativeTo="AlphaMapMovementFrameBottom"/>
<Anchor point="BOTTOMRIGHT" relativePoint="BOTTOMRIGHT" relativeTo="AlphaMapMovementFrameBottom"/>
<Anchor point="TOPLEFT" relativePoint="TOPLEFT" relativeTo="AlphaMapMovementFrameBottom"/>
<Anchor point="TOPRIGHT" relativePoint="TOPRIGHT" relativeTo="AlphaMapMovementFrameBottom"/>
</Anchors>
<Layers>
<Layer level="ARTWORK">
<Texture file="Interface\QuestFrame\UI-QuestTitleHighlight" alphaMode="ADD"/>
</Layer>
</Layers>
</Frame>
 
</Ui>
 
AlphaMapBeta/AlphaMap/AlphaMap.lua
1309,8 → 1309,9
end)
note:SetScript("OnClick", function(self, mouseButton)
if ( mouseButton == "LeftButton" ) then
if ( self.toMap ) then
local map = AML.AlphaMap_GetMap(self.toMap);
local map = AML.AlphaMap_GetMap(self.toMap);
 
if ( map ) then
AlphaMapFrame_Update( map );
 
elseif ( self.toWorldMap ) then
2019,7 → 2020,7
----------------------------------------------------------------------------------------------------------
 
local i = #(AML.CustomPOIControls) + 1;
local controlButton = CreateFrame("Button", "AM_POIC"..i, AlphaMapDetailFrame, "AM_GenPOIControl_Template");
local controlButton = CreateFrame("Button", "AM_POIC"..i, UIParent, "AM_GenPOIControl_Template");
controlButton.id = i;
local controlButtonT = getglobal("AM_POIC"..i.."Texture");
controlButtonT:SetTexture("Interface\\AddOns\\AlphaMap\\Artwork\\Raid");
6347,15 → 6348,14
local keyID = parent:GetID();
 
if ( mBttn == "LeftButton" ) then
if ( parent.toMap ) then
local bttnName = parent:GetName(); -- ??? Should this be before the ...Frame_Update(...
getglobal(bttnName.."Highlight"):Hide(); -- ???
bttnName = AML.AlphaMap_GetMap(parent.toMap);
if ( bttnName ) then
AlphaMapFrame_Update( bttnName );
end
local bttnName = parent:GetName();
local iMap = AML.AlphaMap_GetMap(parent.toMap);
if ( iMap ) then
getglobal(bttnName.."Highlight"):Hide();
AlphaMapFrame_Update( iMap );
 
elseif ( parent.toWorldMap ) then
getglobal(bttnName.."Highlight"):Hide();
local cont, zone = AML.AlphaMap_GetWorldMap(parent.toWorldMap);
if ( cont ~= "error" ) then
SetMapZoom(cont, zone); -- ))((
6515,13 → 6515,17
local parent = note:GetParent();
local keyID = parent.control:GetID();
if ( mBttn == "LeftButton" ) then
if ( parent.toMap ) then
local iMap = AML.AlphaMap_GetMap(parent.toMap);
if ( iMap ) then
for n=1, amNotesPerPage, 1 do
getglobal("AlphaMapAlphaMapButtonDtl"..n.."Highlight"):Hide();
end
AlphaMapFrame_Update( AML.AlphaMap_GetMap(parent.toMap) );
AlphaMapFrame_Update( iMap );
 
elseif ( parent.toWorldMap ) then
for n=1, amNotesPerPage, 1 do
getglobal("AlphaMapAlphaMapButtonDtl"..n.."Highlight"):Hide();
end
local cont, zone = AML.AlphaMap_GetWorldMap(parent.toWorldMap);
if ( cont ~= "error" ) then
SetMapZoom(cont, zone); -- ))((
7779,6 → 7783,8
CloseDropDownMenus();
if ( AlphaMapAlphaMapFrame:IsVisible() ) then
if ( ( amAlphaMapMap ) and ( not AM_Minimap_Data[amAlphaMapMap.filename] ) and ( MouseIsOver(AlphaMapAlphaMapFrame) ) ) then
local iMap = AML.AlphaMap_GetMap(amAlphaMapMap.toMap);
 
if ( ( mouseButton == "LeftButton" ) and ( not amAlphaMapMap.zoomed ) ) then
local x, y = GetCursorPosition();
x = x / AlphaMapAlphaMapFrame:GetEffectiveScale();
7794,10 → 7800,9
elseif ( ( mouseButton == "RightButton" ) and ( amAlphaMapMap.zoomed ) ) then
AM_ZoomOut();
 
elseif ( amAlphaMapMap.toMap ) then
local map = AML.AlphaMap_GetMap(amAlphaMapMap.toMap);
AlphaMapFrame_Update( map );
 
elseif ( iMap ) then
AlphaMapFrame_Update( iMap );
 
elseif ( amAlphaMapMap.toWorldMap ) then
local cont, zone = AML.AlphaMap_GetWorldMap(amAlphaMapMap.toWorldMap);
if ( cont ~= "error" ) then
8049,25 → 8054,46
end
end
 
if ( ( IsControlKeyDown() ) and ( IsAltKeyDown() ) and ( not AlphaMapMovementFrameTop:IsVisible() ) ) then
AML.tmpAlpha = AlphaMapFrame:GetAlpha();
if ( AML.tmpAlpha > 0.5 ) then
AlphaMapFrame:SetAlpha(0.5);
end
AlphaMapSliderFrame:Disable();
AM_Alpha:Disable();
AlphaMapMovementFrameTop:Show();
AlphaMapMovementFrameBottom:Show();
AM_topOverlay:Show();
AM_botOverlay:Show();
elseif ( ( ( not IsControlKeyDown() ) or ( not IsAltKeyDown() ) ) and ( AlphaMapMovementFrameTop:IsVisible() ) ) then
if ( AML.tmpAlpha > 0.5 ) then
AlphaMapFrame:SetAlpha(AML.tmpAlpha);
end
AlphaMapSliderFrame:Enable();
AM_Alpha:Enable();
AlphaMapMovementFrameTop:Hide();
AlphaMapMovementFrameBottom:Hide();
AM_topOverlay:Hide();
AM_botOverlay:Hide();
end
 
if ( ( IsControlKeyDown() ) and ( IsAltKeyDown() ) and ( not AlphaMapAlphaMapFrame:IsVisible() )
and ( not AML.controlsVisible ) ) then
 
local b, controls = 1, #(AML.CustomPOIControls);
local xO = ( controls - 1 ) * 22;
local control, prevC = AML.CustomPOIControls[b];
local amUnitScale = AlphaMap_GetUnitScale(0.9, 1.1);
 
if ( control ) then
control:ClearAllPoints();
control:SetScale( amUnitScale );
control:SetPoint("CENTER", "AlphaMapDetailFrame", "CENTER", -xO/amUnitScale, 0);
control:SetPoint("CENTER", "AlphaMapDetailFrame", "CENTER", -xO, 0);
control:Show();
prevC = control;
b = b + 1;
control = AML.CustomPOIControls[b];
while ( control ) do
control:ClearAllPoints();
control:SetScale( amUnitScale );
control:SetPoint("LEFT", prevC:GetName(), "RIGHT", 1/amUnitScale, 0);
control:SetPoint("LEFT", prevC:GetName(), "RIGHT", 1, 0);
control:Show();
prevC = control;
b = b + 1;
8077,20 → 8103,13
AML.controlsVisible = true;
 
elseif ( ( ( not IsControlKeyDown() ) or ( not IsAltKeyDown() ) or ( AlphaMapAlphaMapFrame:IsVisible() ) )
and ( AlphaMapMovementFrameTop:IsVisible() ) ) then
and ( AML.controlsVisible ) ) then
for _, control in ipairs(AML.CustomPOIControls) do
control:Hide();
end
AML.controlsVisible = false;
end
 
if ( ( IsControlKeyDown() ) and ( IsAltKeyDown() ) and ( not AlphaMapMovementFrameTop:IsVisible() ) ) then
AlphaMapMovementFrameTop:Show();
AlphaMapMovementFrameBottom:Show();
elseif ( ( ( not IsControlKeyDown() ) or ( not IsAltKeyDown() ) ) and ( AlphaMapMovementFrameTop:IsVisible() ) ) then
AlphaMapMovementFrameTop:Hide();
AlphaMapMovementFrameBottom:Hide();
end
end
 
 
AlphaMapBeta/AlphaMap_Exteriors/localisation.fr.lua
45,6 → 45,7
type = AM_TYP_EXTERIORS,
displayname = "Hache-Tripes",
displayshort = "DM",
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\DireMaulExt",
location = "Feralas (59, 44)",
levels = "",
55,7 → 56,7
wmData = { minX = 0.4268, maxX = 0.441, minY = 0.6648, maxY = 0.696 },
amData = { minX = 0.29, maxX = 0.97, minY = 0.025, maxY = 0.98 },
dtl1 = { text = "Entrance", colour = AM_GREEN, coords = { {32, 97} }, symbol = { "X" },
tooltiptxt = "", toMap = "Hache-Tripes", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Feralas", leaveGap = 1 },
dtl2 = { text = "Eldereth Row", colour = AM_BLUE, coords = { {57, 73} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "Broken Commons", colour = AM_BLUE, coords = { {62, 50} }, symbol = { "2" },
80,6 → 81,7
{ name = "Gnomeregan"..AM_EXTERIOR,
type = AM_TYP_EXTERIORS,
displayname = "Gnomeregan",
toWorldMap = "DunMorogh",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\GnomereganExt",
location = "Dun Morogh (25, 41)",
levels = "",
89,7 → 91,7
wmData = { minX = 0.423202, maxX = 0.430997, minY = 0.590355, maxY = 0.602768 },
amData = { minX = 0.198, maxX = 0.92, minY = 0.21, maxY = 0.926 },
dtl1 = { text = "Extérieur", colour = AM_GREEN, coords = { {91.0, 92.5} }, symbol = { "O" },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "DunMorogh", },
dtl2 = { text = "Ascenseur", colour = AM_GREEN, coords = { {81.59, 87.65} }, symbol = { "L" },
tooltiptxt = "" },
dtl3 = { text = "Transpolyporter", colour = AM_GREEN, coords = { {60.95, 72.95} }, symbol = { "P" },
111,6 → 113,7
type = AM_TYP_EXTERIORS,
displayname = "Maraudon",
displayshort = "",
toWorldMap = "Desolace",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\MaraudonExt",
location = "Désolace (29, 62)",
levels = "40-49",
121,7 → 124,7
wmData = { minX = 0.3807325, maxX = 0.393785, minY = 0.5679875, maxY = 0.58772 },
amData = { minX = 0.02, maxX = 0.92, minY = 0.01, maxY = 0.98 },
dtl1 = { text = "Entrée", colour = AM_GREEN, coords = { {23, 59} }, symbol = { "X" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Desolace", leaveGap = 1 },
dtl2 = { text = "Premier Khan", colour = AM_RED, coords = { {31, 45} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "Deuxième Khan", colour = AM_RED, coords = { {24, 29} }, symbol = { "2" },
142,6 → 145,7
{ name = "Uldaman"..AM_EXTERIOR,
type = AM_TYP_EXTERIORS,
displayname = "Uldaman",
toWorldMap = "Badlands",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\UldamanExt",
location = "Terres ingrates (44, 12)",
levels = "",
152,7 → 156,7
wmData = { minX = 0.536226, maxX = 0.544795, minY = 0.57594, maxY = 0.586616 },
amData = { minX = 0.075, maxX = 0.95, minY = 0.20, maxY = 0.935 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {95, 33} }, symbol = { "X" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Badlands", leaveGap = 1 },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_BLUE, coords = { {23, 64}, {33, 88} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "Quests", leaveGap = 1 },
dtl3 = { text = "Uldaman", colour = AM_GREEN, coords = { {30.5, 23} }, symbol = { "U" },
163,6 → 167,7
{ name = "Cavernes des Lamentations"..AM_EXTERIOR,
type = AM_TYP_EXTERIORS,
displayname = "Cavernes des Lamentations",
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\WailingCavernsExt",
location = "Les Tarides (46, 36)",
levels = "",
173,7 → 178,7
wmData = { minX = 0.5178145, maxX = 0.529001, minY = 0.543372, maxY = 0.555871 },
amData = { minX = 0.05, maxX = 0.97, minY = 0.15, maxY = 0.80 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {14.2, 81.5} }, symbol = { "X" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Barrens", leaveGap = 1 },
dtl2 = { text = "Wailing Caverns", colour = AM_GREEN, coords = { {55.1, 62.2} }, symbol = { "W" },
tooltiptxt = "Click to Open Wailing Caverns Instance Map", toMap = "Wailing Caverns", leaveGap = 1 }
},
182,6 → 187,7
{ name = "Mont Rochenoire"..AM_EXTERIOR,
type = AM_TYP_EXTERIORS,
displayname = "Mont Rochenoire",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\BRMExt",
location = "Steppes Ardentes/Gorge des Vents Brûlants",
levels = "",
190,10 → 196,10
general = "",
wmData = { minX = 0.46707, maxX = 0.47864, minY = 0.67602, maxY = 0.69818 },
amData = { minX = 0.14, maxX = 0.85, minY = 0.09, maxY = 0.985 },
dtl1 = { text = "Steppes ardentes", colour = AM_GREEN, coords = { {50.0, 38.0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
dtl2 = { text = "Gorge des Vents Br\195\187lant", colour = AM_GREEN, coords = { {53.2, 98.2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl1 = { text = "Gorge des Vents Br\195\187lant", colour = AM_GREEN, coords = { {50.0, 38.0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toWorldMap = "SearingGorge", },
dtl2 = { text = "Steppes ardentes", colour = AM_GREEN, coords = { {53.2, 98.2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toWorldMap = "BurningSteppes", leaveGap = 1 },
dtl3 = { text = "LBRS/UBRS/BWL", colour = AM_RED, coords = { {71, 59.4} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Pic Rochenoire", leaveGap = 1 },
dtl4 = { text = "Lothos Ouvrefaille", colour = AM_BLUE, coords = { {40, 57} }, symbol = { "1" },
209,6 → 215,7
type = AM_TYP_EXTERIORS,
displayname = "Grottes du Temps",
displayshort = "GT",
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\CoTExt",
location = "Tanaris",
levels = "",
219,7 → 226,7
wmData = { minX = 0.5521, maxX = 0.68239, minY = 0.47247, maxY = 0.63367 },
amData = { minX = 0.09, maxX = 0.99, minY = 0.15, maxY = 0.86 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {81.6, 26.2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Tanaris", },
dtl2 = { text = "Les Contreforts d'Hautebrande d'antan", colour = AM_ORANGE, coords = { {1.5, 41.2} }, symbol = { "A" },
tooltiptxt = "", toMap = "Les Contreforts d'Hautebrande d'antan" },
dtl3 = { text = "Le Noir Marécage", colour = AM_ORANGE, coords = { {18.00, 86.22} }, symbol = { "B" },
265,6 → 272,7
type = AM_TYP_EXTERIORS,
displayname = "Réservoir de Glissecroc",
displayshort = "CR",
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\CoilfangExt",
location = "Marécage de Zangar",
levels = "",
275,7 → 283,7
wmData = { minX = 0.48742, maxX = 0.54289, minY = 0.33097, maxY = 0.38282 },
amData = { minX = 0.14, maxX = 0.73, minY = 0.43, maxY = 0.80 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {48.24, 77.34} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "(Sous-marine)", leaveGap = 1 },
tooltiptxt = "(Sous-marine)", toWorldMap = "Zangarmarsh", leaveGap = 1 },
dtl2 = { text = "Les enclos aux esclaves", colour = AM_ORANGE, coords = { {16.41, 62.89} }, symbol = { "A" },
tooltiptxt = "", toMap = "Les enclos aux esclaves" },
dtl3 = { text = "Le Caveau de la vapeur", colour = AM_ORANGE, coords = { {31.05, 45.70} }, symbol = { "B" },
295,6 → 303,7
type = AM_TYP_EXTERIORS,
displayname = "Auchindoun",
displayshort = "Auch",
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\AuchindounExt",
location = "Forêt de Terokkar",
levels = "",
305,7 → 314,7
wmData = { minX = 0.34323, maxX = 0.44944, minY = 0.57638, maxY = 0.73592 },
amData = { minX = 0.11, maxX = 0.89, minY = 0.10, maxY = 0.88 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {21, 20}, {81, 20}, {21, 78}, {81, 78} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", leaveGap = 1 },
dtl2 = { text = "Cryptes Auchenaï", colour = AM_ORANGE, coords = { {8, 49.5} }, symbol = { "A" },
tooltiptxt = "", toMap = "Cryptes Auchenaï" },
dtl3 = { text = "Tombes-mana", colour = AM_ORANGE, coords = { {50, 7} }, symbol = { "B" },
353,6 → 362,7
type = AM_TYP_EXTERIORS,
displayname = "Monastère écarlate",
displayshort = "SM",
toWorldMap = "Tirisfal",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\SMExt",
location = "Clairières de Tirisfal",
levels = "",
362,7 → 372,7
wmData = { minX = 0.462834, maxX = 0.466359, minY = 0.30418, maxY = 0.30718 },
amData = { minX = 0.02, maxX = 0.91, minY = 0.26, maxY = 0.695 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {5, 59}, {9, 71} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tirisfal", leaveGap = 1 },
dtl2 = { text = "Cimetière", colour = AM_ORANGE, coords = { {76, 23} }, symbol = { "1" },
tooltiptxt = "", toMap = "Monastère écarlate" },
dtl3 = { text = "Cathédrale", colour = AM_ORANGE, coords = { {89, 29} }, symbol = { "2" },
379,6 → 389,7
type = AM_TYP_EXTERIORS,
displayname = "Temple englouti",
displayshort = "ST",
toWorldMap = "SwampOfSorrows",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\SunkenTempleExt",
location = "Marais des Chagrins",
levels = "",
388,7 → 399,7
wmData = { minX = 0.53955, maxX = 0.54659, minY = 0.78631, maxY = 0.79619 },
amData = { minX = 0.08, maxX = 0.815, minY = 0.23, maxY = 0.91 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {12, 89} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", special = "(Jade - Rare)", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "SwampOfSorrows", special = "(Jade - Rare)", leaveGap = 1 },
dtl2 = { text = "Kazkaz l'Impie", colour = AM_RED, coords = { {46, 70} }, symbol = { "1" },
tooltiptxt = "", special = "(En haut)" },
dtl3 = { text = "Zekkis", colour = AM_RED, coords = { {58, 38} }, symbol = { "2" },
405,6 → 416,7
type = AM_TYP_EXTERIORS,
displayname = "Profondeurs de Brassenoire",
displayshort = "BFD",
toWorldMap = "Ashenvale",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\BlackfathomDeepsExt",
location = "Orneval",
levels = "",
414,7 → 426,7
wmData = { minX = 0.4366733, maxX = 0.44610637, minY = 0.34415522, maxY = 0.35412708 },
amData = { minX = 0.045, maxX = 0.975, minY = 0.14, maxY = 0.81 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {35, 80} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Ashenvale", leaveGap = 1 },
dtl2 = { text = "Profondeurs de Brassenoire", colour = AM_ORANGE, coords = { {70, 43.8} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Profondeurs de Brassenoire", leaveGap = 1 },
-- toMap = "Blackfathom Deeps", "Blackfathom-Tiefenl", "Profondeurs de Brassenoire"
425,6 → 437,7
type = AM_TYP_EXTERIORS,
displayname = "Les Mortemines",
displayshort = "MM",
toWorldMap = "Westfall",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\TheDeadminesExt",
location = "Marche de l'Ouest",
levels = "",
434,7 → 447,7
wmData = { minX = 0.404836, maxX = 0.410194, minY = 0.819415, maxY = 0.82981 },
amData = { minX = 0.15, maxX = 0.89, minY = 0.01, maxY = 0.965 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {68, 1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Westfall", leaveGap = 1 },
dtl2 = { text = "Marisa du'Paige", colour = AM_RED, coords = { {62, 63}, {86, 39} }, symbol = { "1" },
tooltiptxt = "", special = AM_VARIES },
dtl3 = { text = "Noble manipulé", colour = AM_RED, coords = { { 70, 71 } }, symbol = { "2" },
451,6 → 464,7
type = AM_TYP_EXTERIORS,
displayname = "Karazhan",
displayshort = "Kara",
toWorldMap = "DeadwindPass",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\KarazhanExt",
location = "Défilé de Deuillevent",
levels = "",
480,6 → 494,8
tooltiptxt = "" },
dtl10 = { text = "Fragment d'os carbonisé", colour = AM_GREEN, coords = { {31, 76} }, symbol = { "6" },
tooltiptxt = "" },
dtl11 = { text = AM_INSTANCE_EXITS, colour = AM_BLUE, coords = { {1, 1} }, symbol = { "<-" },
tooltiptxt = "", toWorldMap = "DeadwindPass", },
-- toMap = "The Deadmines", "Die Todesminen", "Les Mortemines"
},
 
AlphaMapBeta/AlphaMap_Exteriors/localisation.de.lua
22,6 → 22,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - D\195\188sterbruch",
displayshort = "DB",
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\DireMaulExt",
location = "Feralas (59, 44)",
levels = "",
32,7 → 33,7
wmData = { minX = 0.4268, maxX = 0.441, minY = 0.6648, maxY = 0.696 },
amData = { minX = 0.29, maxX = 0.97, minY = 0.025, maxY = 0.98 },
dtl1 = { text = "Entrance", colour = AM_GREEN, coords = { {32, 97} }, symbol = { "X" },
tooltiptxt = "", toMap = "D\195\188sterbruch", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Feralas", leaveGap = 1 },
dtl2 = { text = "Elderethgasse", colour = AM_BLUE, coords = { {57, 73} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "Die gebrochenen Gemeinlande", colour = AM_BLUE, coords = { {62, 50} }, symbol = { "2" },
56,6 → 57,7
{ name = "Gnomeregan"..AM_EXTERIOR, -- Gnomeregan
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - Gnomeregan",
toWorldMap = "DunMorogh",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\GnomereganExt",
location = "Dun Morogh (25, 41)",
levels = "",
65,7 → 67,7
wmData = { minX = 0.423202, maxX = 0.430997, minY = 0.590355, maxY = 0.602768 },
amData = { minX = 0.198, maxX = 0.92, minY = 0.21, maxY = 0.926 },
dtl1 = { text = "Drau\195\159en", colour = AM_GREEN, coords = { {91.0, 92.5} }, symbol = { "O" },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "DunMorogh", },
dtl2 = { text = "Aufzug", colour = AM_GREEN, coords = { {81.59, 87.65} }, symbol = { "L" },
tooltiptxt = "" },
dtl3 = { text = "Transpolyporter", colour = AM_GREEN, coords = { {60.95, 72.95} }, symbol = { "P" },
85,6 → 87,7
{ name = "Uldaman"..AM_EXTERIOR, -- Uldaman Exterior
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - Uldaman",
toWorldMap = "Badlands",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\UldamanExt",
location = "Das \195\150dland (44, 12)",
levels = "",
95,7 → 98,7
wmData = { minX = 0.536226, maxX = 0.544795, minY = 0.57594, maxY = 0.586616 },
amData = { minX = 0.075, maxX = 0.95, minY = 0.20, maxY = 0.935 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {95, 33} }, symbol = { "X" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Badlands", leaveGap = 1 },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_BLUE, coords = { {23, 64}, {33, 88} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "Quests", leaveGap = 1 },
dtl3 = { text = "Uldaman", colour = AM_GREEN, coords = { {30.5, 23} }, symbol = { "U" },
105,6 → 108,7
{ name = "Die H\195\182hlen des Wehklagens"..AM_EXTERIOR, -- Wailing Caverns Exterior
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - Die H\195\182hlen des Wehklagens",
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\WailingCavernsExt",
location = "Brachland (46, 36)",
levels = "",
115,7 → 119,7
wmData = { minX = 0.5178145, maxX = 0.529001, minY = 0.543372, maxY = 0.555871 },
amData = { minX = 0.05, maxX = 0.97, minY = 0.15, maxY = 0.80 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {14.2, 81.5} }, symbol = { "X" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Barrens", leaveGap = 1 },
dtl2 = { text = "Die H\195\182hlen des Wehklagens", colour = AM_GREEN, coords = { {55.1, 62.2} }, symbol = { "W" },
tooltiptxt = "", toMap = "Die H\195\182hlen des Wehklagens", leaveGap = 1 }
},
123,6 → 127,7
{ name = "Der Schwarzfels "..AM_EXTERIOR, -- Blackrock Mountain
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - Der Schwarzfels",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\BRMExt",
location = "Schwarzfels",
levels = "",
131,10 → 136,10
general = "",
wmData = { minX = 0.46707, maxX = 0.47864, minY = 0.67602, maxY = 0.69818 },
amData = { minX = 0.14, maxX = 0.85, minY = 0.09, maxY = 0.985 },
dtl1 = { text = "Brennende Steppe", colour = AM_GREEN, coords = { {50.0, 38.0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
dtl2 = { text = "Sengende Schlucht", colour = AM_GREEN, coords = { {53.2, 98.2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl1 = { text = "Sengende Schlucht", colour = AM_GREEN, coords = { {50.0, 38.0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toWorldMap = "SearingGorge", },
dtl2 = { text = "Brennende Steppe", colour = AM_GREEN, coords = { {53.2, 98.2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toWorldMap = "BurningSteppes", leaveGap = 1 },
dtl3 = { text = "LBRS/UBRS/BWL", colour = AM_RED, coords = { {71, 59.4} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Schwarzfelsspitze", leaveGap = 1 },
dtl4 = { text = "Lothos Felsspalter", colour = AM_BLUE, coords = { {40, 57} }, symbol = { "1" },
149,6 → 154,7
type = AM_TYP_EXTERIORS,
displayname = "Drau\195\159en - Maraudon",
displayshort = "",
toWorldMap = "Desolace",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\MaraudonExt",
location = "Desolace (29, 62)",
levels = "40-49",
159,7 → 165,7
wmData = { minX = 0.3807325, maxX = 0.393785, minY = 0.5679875, maxY = 0.58772 },
amData = { minX = 0.02, maxX = 0.92, minY = 0.01, maxY = 0.98 },
dtl1 = { text = "Eingang", colour = AM_GREEN, coords = { {23, 59} }, symbol = { "X" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Desolace", leaveGap = 1 },
dtl2 = { text = "Zuerst Khan", colour = AM_RED, coords = { {31, 45} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "Zweitens Khan", colour = AM_RED, coords = { {24, 29} }, symbol = { "2" },
180,6 → 186,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - Höhlen der Zeit",
displayshort = "HdZ",
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\CoTExt",
location = "Tanaris",
levels = "",
190,7 → 197,7
wmData = { minX = 0.5521, maxX = 0.68239, minY = 0.47247, maxY = 0.63367 },
amData = { minX = 0.09, maxX = 0.99, minY = 0.15, maxY = 0.86 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {81.6, 26.2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Tanaris", },
dtl2 = { text = "Vorgebirge des Alten Hügellands", colour = AM_ORANGE, coords = { {1.5, 41.2} }, symbol = { "A" },
tooltiptxt = "", toMap = "Vorgebirge des Alten Hügellands" },
dtl3 = { text = "Der schwarze Morast", colour = AM_ORANGE, coords = { {18.00, 86.22} }, symbol = { "B" },
235,6 → 242,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - Der Echsenkessel",
displayshort = "EK",
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\CoilfangExt",
location = "Zangarmarschen",
levels = "",
245,7 → 253,7
wmData = { minX = 0.48742, maxX = 0.54289, minY = 0.33097, maxY = 0.38282 },
amData = { minX = 0.14, maxX = 0.73, minY = 0.43, maxY = 0.80 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {48.24, 77.34} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "(Unterwasser)", leaveGap = 1 },
tooltiptxt = "(Unterwasser)", toWorldMap = "Zangarmarsh", leaveGap = 1 },
dtl2 = { text = "Die Sklavenunterkünfte", colour = AM_ORANGE, coords = { {16.41, 62.89} }, symbol = { "A" },
tooltiptxt = "", toMap = "Die Sklavenunterkünfte" },
dtl3 = { text = "Die Dampfkammer", colour = AM_ORANGE, coords = { {31.05, 45.70} }, symbol = { "B" },
264,6 → 272,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - Auchindoun",
displayshort = "Auch",
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\AuchindounExt",
location = "Terokkar Forest",
levels = "",
274,7 → 283,7
wmData = { minX = 0.34323, maxX = 0.44944, minY = 0.57638, maxY = 0.73592 },
amData = { minX = 0.11, maxX = 0.89, minY = 0.10, maxY = 0.88 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {21, 20}, {81, 20}, {21, 78}, {81, 78} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", leaveGap = 1 },
dtl2 = { text = "Auchenaikrypta", colour = AM_ORANGE, coords = { {8, 49.5} }, symbol = { "A" },
tooltiptxt = "", toMap = "Auchenaikrypta" },
dtl3 = { text = "Managruft", colour = AM_ORANGE, coords = { {50, 7} }, symbol = { "B" },
321,6 → 330,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - Das scharlachrote Kloster",
displayshort = "SK",
toWorldMap = "Tirisfal",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\SMExt",
location = "Tirisfal",
levels = "",
330,7 → 340,7
wmData = { minX = 0.462834, maxX = 0.466359, minY = 0.30418, maxY = 0.30718 },
amData = { minX = 0.02, maxX = 0.91, minY = 0.26, maxY = 0.695 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {5, 59}, {9, 71} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tirisfal", leaveGap = 1 },
dtl2 = { text = "Friedhof", colour = AM_ORANGE, coords = { {76, 23} }, symbol = { "1" },
tooltiptxt = "", toMap = "Das scharlachrote Kloster" },
dtl3 = { text = "Kathedrale", colour = AM_ORANGE, coords = { {89, 29} }, symbol = { "2" },
346,6 → 356,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - Der Tempel von Atal'Hakkar",
displayshort = "",
toWorldMap = "SwampOfSorrows",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\SunkenTempleExt",
location = "Sümpfe des Elends",
levels = "",
355,7 → 366,7
wmData = { minX = 0.53955, maxX = 0.54659, minY = 0.78631, maxY = 0.79619 },
amData = { minX = 0.08, maxX = 0.815, minY = 0.23, maxY = 0.91 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {12, 89} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", special = "Jade "..AM_RARE, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "SwampOfSorrows", special = "Jade "..AM_RARE, leaveGap = 1 },
dtl2 = { text = "Kazkaz der Unheilige", colour = AM_RED, coords = { {46, 70} }, symbol = { "1" },
tooltiptxt = "", special = "(Ober)" },
dtl3 = { text = "Zekkis", colour = AM_RED, coords = { {58, 38} }, symbol = { "2" },
371,6 → 382,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - Tiefschwarze Grotte",
displayshort = "BFD",
toWorldMap = "Ashenvale",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\BlackfathomDeepsExt",
location = "Eschental",
levels = "",
380,7 → 392,7
wmData = { minX = 0.4366733, maxX = 0.44610637, minY = 0.34415522, maxY = 0.35412708 },
amData = { minX = 0.045, maxX = 0.975, minY = 0.14, maxY = 0.81 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {35, 80} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Ashenvale", leaveGap = 1 },
dtl2 = { text = "Tiefschwarze Grotte", colour = AM_ORANGE, coords = { {70, 43.8} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Tiefschwarze Grotte", leaveGap = 1 },
-- toMap = "Blackfathom Deeps", "Blackfathom-Tiefenl", "Profondeurs de Brassenoire"
390,6 → 402,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - Die Todesminen",
displayshort = "BFD",
toWorldMap = "Westfall",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\TheDeadminesExt",
location = "Westfall",
levels = "",
399,7 → 412,7
wmData = { minX = 0.404836, maxX = 0.410194, minY = 0.819415, maxY = 0.82981 },
amData = { minX = 0.15, maxX = 0.89, minY = 0.01, maxY = 0.965 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {68, 1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Westfall", leaveGap = 1 },
dtl2 = { text = "Marisa du'Paige", colour = AM_RED, coords = { {62, 63}, {86, 39} }, symbol = { "1" },
tooltiptxt = "", special = AM_VARIES },
dtl3 = { text = "Manipulierter Adliger", colour = AM_RED, coords = { { 70, 71 } }, symbol = { "2" },
415,6 → 428,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - Karazhan",
displayshort = "",
toWorldMap = "DeadwindPass",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\KarazhanExt",
location = "Gebirgspass der Totenwinde",
levels = "",
444,6 → 458,8
tooltiptxt = "" },
dtl10 = { text = "Verkohltes Knochenfragment", colour = AM_GREEN, coords = { {31, 76} }, symbol = { "6" },
tooltiptxt = "" },
dtl11 = { text = AM_INSTANCE_EXITS, colour = AM_BLUE, coords = { {1, 1} }, symbol = { "<-" },
tooltiptxt = "", toWorldMap = "DeadwindPass", },
-- toMap = "The Deadmines", "Die Todesminen", "Les Mortemines"
},
 
AlphaMapBeta/AlphaMap_Exteriors/localisation.tw.lua
23,6 → 23,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 厄運之槌",
displayshort = "DM",
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\DireMaulExt",
location = "菲拉斯 (59, 44)",
levels = "",
33,7 → 34,7
wmData = { minX = 0.4268, maxX = 0.441, minY = 0.6648, maxY = 0.696 },
amData = { minX = 0.29, maxX = 0.97, minY = 0.025, maxY = 0.98 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {32, 97} }, symbol = { "X" },
tooltiptxt = "", toMap = "厄運之槌", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Feralas", leaveGap = 1 },
dtl2 = { text = "Eldereth Row", colour = AM_BLUE, coords = { {57, 73} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "Broken Commons", colour = AM_BLUE, coords = { {62, 50} }, symbol = { "2" },
57,6 → 58,7
{ name = "諾姆瑞根"..AM_EXTERIOR, -- Gnomeregan
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 諾姆瑞根",
toWorldMap = "DunMorogh",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\GnomereganExt",
location = "丹莫洛 (25, 41)",
levels = "",
66,7 → 68,7
wmData = { minX = 0.423202, maxX = 0.430997, minY = 0.590355, maxY = 0.602768 },
amData = { minX = 0.198, maxX = 0.92, minY = 0.21, maxY = 0.926 },
dtl1 = { text = "外部", colour = AM_GREEN, coords = { {91.0, 92.5} }, symbol = { "O" },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "DunMorogh", },
dtl2 = { text = "升降梯", colour = AM_GREEN, coords = { {81.59, 87.65} }, symbol = { "L" },
tooltiptxt = "" },
dtl3 = { text = "傳送器", colour = AM_GREEN, coords = { {60.95, 72.95} }, symbol = { "P" },
87,6 → 89,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 瑪拉頓",
displayshort = "",
toWorldMap = "Desolace",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\MaraudonExt",
location = "淒涼之地 (29, 62)",
levels = "40-49",
97,7 → 100,7
wmData = { minX = 0.3807325, maxX = 0.393785, minY = 0.5679875, maxY = 0.58772 },
amData = { minX = 0.02, maxX = 0.92, minY = 0.01, maxY = 0.98 },
dtl1 = { text = "入口", colour = AM_GREEN, coords = { {23, 59} }, symbol = { "X" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Desolace", leaveGap = 1 },
dtl2 = { text = "第一可汗", colour = AM_RED, coords = { {31, 45} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "S第二可汗", colour = AM_RED, coords = { {24, 29} }, symbol = { "2" },
117,6 → 120,7
{ name = "奧達曼"..AM_EXTERIOR, -- Uldaman Exterior
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 奧達曼",
toWorldMap = "Badlands",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\UldamanExt",
location = "荒蕪之地 (44, 12)",
levels = "",
127,7 → 131,7
wmData = { minX = 0.536226, maxX = 0.544795, minY = 0.57594, maxY = 0.586616 },
amData = { minX = 0.075, maxX = 0.95, minY = 0.20, maxY = 0.935 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {95, 33} }, symbol = { "X" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Badlands", leaveGap = 1 },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_BLUE, coords = { {23, 64}, {33, 88} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "Quests", leaveGap = 1 },
dtl3 = { text = "奧達曼", colour = AM_GREEN, coords = { {30.5, 23} }, symbol = { "U" },
137,6 → 141,7
{ name = "哀嚎洞穴"..AM_EXTERIOR, -- Wailing Caverns Exterior
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 哀嚎洞穴",
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\WailingCavernsExt",
location = "貧瘠之地 (46, 36)",
levels = "",
147,7 → 152,7
wmData = { minX = 0.5178145, maxX = 0.529001, minY = 0.543372, maxY = 0.555871 },
amData = { minX = 0.05, maxX = 0.97, minY = 0.15, maxY = 0.80 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {14.2, 81.5} }, symbol = { "X" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Barrens", leaveGap = 1 },
dtl2 = { text = "哀嚎洞穴", colour = AM_GREEN, coords = { {55.1, 62.2} }, symbol = { "W" },
tooltiptxt = "", toMap = "哀嚎洞穴", leaveGap = 1 }
},
155,6 → 160,7
{ name = "黑石山"..AM_EXTERIOR, -- Blackrock Mountain
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 黑石山",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\BRMExt",
location = "黑石山",
levels = "",
163,10 → 169,10
general = "",
wmData = { minX = 0.46707, maxX = 0.47864, minY = 0.67602, maxY = 0.69818 },
amData = { minX = 0.14, maxX = 0.85, minY = 0.09, maxY = 0.985 },
dtl1 = { text = "Burning Steppes", colour = AM_GREEN, coords = { {50.0, 38.0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
dtl2 = { text = "Searing Gorge", colour = AM_GREEN, coords = { {53.2, 98.2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl1 = { text = "灼熱峽谷", colour = AM_GREEN, coords = { {50.0, 38.0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toWorldMap = "SearingGorge", },
dtl2 = { text = "燃燒平原", colour = AM_GREEN, coords = { {53.2, 98.2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toWorldMap = "BurningSteppes", leaveGap = 1 },
dtl3 = { text = "LBRS/UBRS/BWL", colour = AM_RED, coords = { {71, 59.4} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑石塔", leaveGap = 1 },
dtl4 = { text = "Lothos Riftwalker", colour = AM_BLUE, coords = { {40, 57} }, symbol = { "1" },
181,6 → 187,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 時光之穴",
displayshort = "CoT",
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\CoTExt",
location = "塔納利斯",
levels = "",
191,15 → 198,15
wmData = { minX = 0.5521, maxX = 0.68239, minY = 0.47247, maxY = 0.63367 },
amData = { minX = 0.09, maxX = 0.99, minY = 0.15, maxY = 0.86 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {81.6, 26.2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Tanaris", },
dtl2 = { text = "希爾斯布萊德丘陵", colour = AM_ORANGE, coords = { {1.5, 41.2} }, symbol = { "A" },
tooltiptxt = "", toMap = "希爾斯布萊德丘陵" },
dtl3 = { text = "黑色沼澤", colour = AM_ORANGE, coords = { {18.00, 86.22} }, symbol = { "B" },
tooltiptxt = "", toMap = "黑色沼澤" },
dtl4 = { text = "海加爾山", colour = AM_ORANGE, coords = { {22, 23} }, symbol = { "C" },
tooltiptxt = "", toMap = "海加爾山", },
dtl5 = { text = "CoT: Old Stratholme", colour = AM_ORANGE, coords = { {49.11, 84.12} }, symbol = { "D" },
tooltiptxt = "", toMap = "Oldstratholme", leaveGap = 1 },
dtl5 = { text = "斯坦索姆的抉擇", colour = AM_ORANGE, coords = { {49.11, 84.12} }, symbol = { "D" },
tooltiptxt = "", toMap = "斯坦索姆的抉擇", leaveGap = 1 },
dtl6 = { text = "時間服務員", colour = AM_GREEN, coords = { {81.6, 26.2} }, symbol = { " " },
tooltiptxt = "" },
dtl7 = { text = "艾力克斯頓·科洛米", colour = AM_GREEN, coords = { {92, 25} }, symbol = { "1" },
236,6 → 243,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 盤牙洞穴",
displayshort = "CR",
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\CoilfangExt",
location = "贊格沼澤",
levels = "",
246,7 → 254,7
wmData = { minX = 0.48742, maxX = 0.54289, minY = 0.33097, maxY = 0.38282 },
amData = { minX = 0.14, maxX = 0.73, minY = 0.43, maxY = 0.80 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {48.24, 77.34} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "(水下)", leaveGap = 1 },
tooltiptxt = "(水下)", toWorldMap = "Zangarmarsh", leaveGap = 1 },
dtl2 = { text = "奴隸監獄", colour = AM_ORANGE, coords = { {16.41, 62.89} }, symbol = { "A" },
tooltiptxt = "", toMap = "奴隸監獄" },
dtl3 = { text = "蒸汽洞窟", colour = AM_ORANGE, coords = { {31.05, 45.70} }, symbol = { "B" },
265,6 → 273,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 奧齊頓",
displayshort = "Auch",
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\AuchindounExt",
location = "白骨荒野, 泰洛卡森林",
levels = "",
275,7 → 284,7
wmData = { minX = 0.34323, maxX = 0.44944, minY = 0.57638, maxY = 0.73592 },
amData = { minX = 0.11, maxX = 0.89, minY = 0.10, maxY = 0.88 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {21, 20}, {81, 20}, {21, 78}, {81, 78} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", leaveGap = 1 },
dtl2 = { text = "奧奇奈地穴", colour = AM_ORANGE, coords = { {8, 49.5} }, symbol = { "A" },
tooltiptxt = "", toMap = "奧奇奈地穴" },
dtl3 = { text = "法力墓地", colour = AM_ORANGE, coords = { {50, 7} }, symbol = { "B" },
322,6 → 331,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 血色修道院",
displayshort = "SM",
toWorldMap = "Tirisfal",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\SMExt",
location = "提瑞斯法林地",
levels = "",
331,7 → 341,7
wmData = { minX = 0.462834, maxX = 0.466359, minY = 0.30418, maxY = 0.30718 },
amData = { minX = 0.02, maxX = 0.91, minY = 0.26, maxY = 0.695 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {5, 59}, {9, 71} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tirisfal", leaveGap = 1 },
dtl2 = { text = "墓地区", colour = AM_ORANGE, coords = { {76, 23} }, symbol = { "1" },
tooltiptxt = "", toMap = "血色修道院" },
dtl3 = { text = "大教堂", colour = AM_ORANGE, coords = { {89, 29} }, symbol = { "2" },
340,13 → 350,13
tooltiptxt = "", toMap = "血色修道院" },
dtl5 = { text = "图书馆", colour = AM_ORANGE, coords = { {87, 55} }, symbol = { "4" },
tooltiptxt = "", toMap = "血色修道院" },
-- toMap = "Scarlet Monastery", "Das scharlachrote Kloster", "Monast\195\168re \195\169carlate"
},
 
{ name = "阿塔哈卡神庙"..AM_EXTERIOR, -- Sunken Temple
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 阿塔哈卡神庙",
displayshort = "ST",
toWorldMap = "SwampOfSorrows",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\SunkenTempleExt",
location = "悲伤沼泽",
levels = "",
356,7 → 366,7
wmData = { minX = 0.53955, maxX = 0.54659, minY = 0.78631, maxY = 0.79619 },
amData = { minX = 0.08, maxX = 0.815, minY = 0.23, maxY = 0.91 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {12, 89} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", special = "(玉龙 - 稀有)", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "SwampOfSorrows", special = "(玉龙 - 稀有)", leaveGap = 1 },
dtl2 = { text = "邪恶的卡萨卡兹", colour = AM_RED, coords = { {46, 70} }, symbol = { "1" },
tooltiptxt = "", special = "(上层)" },
dtl3 = { text = "泽基斯", colour = AM_RED, coords = { {58, 38} }, symbol = { "2" },
365,13 → 375,13
tooltiptxt = "", special = "(?) (稀有)", leaveGap = 1 },
dtl5 = { text = "阿塔哈卡神庙", colour = AM_ORANGE, coords = { {57, 21} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "阿塔哈卡神庙", leaveGap = 1 },
-- toMap = "The Temple of Atal'Hakkar", "Der versunkene Tempel", "Le temple d'Atal'Hakkar"
},
 
{ name = "黑暗深渊"..AM_EXTERIOR, -- Blackfathom Deeps
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 黑暗深渊",
displayshort = "BFD",
toWorldMap = "Ashenvale",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\BlackfathomDeepsExt",
location = "灰谷",
levels = "",
381,16 → 391,16
wmData = { minX = 0.4366733, maxX = 0.44610637, minY = 0.34415522, maxY = 0.35412708 },
amData = { minX = 0.045, maxX = 0.975, minY = 0.14, maxY = 0.81 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {35, 80} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Ashenvale", leaveGap = 1 },
dtl2 = { text = "黑暗深渊", colour = AM_ORANGE, coords = { {70, 43.8} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑暗深渊", leaveGap = 1 },
-- toMap = "Blackfathom Deeps", "Blackfathom-Tiefenl", "Profondeurs de Brassenoire"
},
 
{ name = "死亡矿井"..AM_EXTERIOR, -- The Deadmines
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 死亡矿井",
displayshort = "",
toWorldMap = "Westfall",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\TheDeadminesExt",
location = "西部荒野",
levels = "",
400,7 → 410,7
wmData = { minX = 0.404836, maxX = 0.410194, minY = 0.819415, maxY = 0.82981 },
amData = { minX = 0.15, maxX = 0.89, minY = 0.01, maxY = 0.965 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {68, 1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Westfall", leaveGap = 1 },
dtl2 = { text = "玛里莎·杜派格", colour = AM_RED, coords = { {62, 63}, {86, 39} }, symbol = { "1" },
tooltiptxt = "", special = AM_VARIES },
dtl3 = { text = "被洗脑的贵族", colour = AM_RED, coords = { { 70, 71 } }, symbol = { "2" },
409,13 → 419,13
tooltiptxt = "", leaveGap = 1 },
dtl5 = { text = "死亡矿井", colour = AM_ORANGE, coords = { {15, 48} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "死亡矿井", leaveGap = 1 },
-- toMap = "The Deadmines", "Die Todesminen", "Les Mortemines"
},
 
{ name = "卡拉赞"..AM_EXTERIOR, -- Karazhan
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 卡拉赞",
displayshort = "",
toWorldMap = "DeadwindPass",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\KarazhanExt",
location = "逆风小径",
levels = "",
445,7 → 455,8
tooltiptxt = "" },
dtl10 = { text = "焦骨碎块", colour = AM_GREEN, coords = { {31, 76} }, symbol = { "6" },
tooltiptxt = "" },
-- toMap = "The Deadmines", "Die Todesminen", "Les Mortemines"
dtl11 = { text = AM_INSTANCE_EXITS, colour = AM_BLUE, coords = { {1, 1} }, symbol = { "<-" },
tooltiptxt = "", toWorldMap = "DeadwindPass", },
},
 
};
AlphaMapBeta/AlphaMap_Exteriors/localisation.cn.lua
19,6 → 19,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 厄运之槌",
displayshort = "DM",
toWorldMap = "Feralas",
filename = "\\Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\DireMaulExt",
location = "菲拉斯 (59, 44)",
levels = "",
29,7 → 30,7
wmData = { minX = 0.4268, maxX = 0.441, minY = 0.6648, maxY = 0.696 },
amData = { minX = 0.29, maxX = 0.97, minY = 0.025, maxY = 0.98 },
dtl1 = { text = "入口", colour = AM_GREEN, coords = { {32, 97} }, symbol = { "X" },
tooltiptxt = "", toMap = "Dire Maul", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Feralas", leaveGap = 1 },
dtl2 = { text = "艾德雷斯区", colour = AM_BLUE, coords = { {57, 73} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "被毁坏的庭院", colour = AM_BLUE, coords = { {62, 50} }, symbol = { "2" },
53,6 → 54,7
{ name = "诺莫瑞根"..AM_EXTERIOR, -- Gnomeregan
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 诺莫瑞根",
toWorldMap = "DunMorogh",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\GnomereganExt",
location = "丹莫罗 (25, 41)",
levels = "",
62,7 → 64,7
wmData = { minX = 0.423202, maxX = 0.430997, minY = 0.590355, maxY = 0.602768 },
amData = { minX = 0.198, maxX = 0.92, minY = 0.21, maxY = 0.926 },
dtl1 = { text = "外部", colour = AM_GREEN, coords = { {91.0, 92.5} }, symbol = { "O" },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "DunMorogh", },
dtl2 = { text = "升降机", colour = AM_GREEN, coords = { {81.59, 87.65} }, symbol = { "L" },
tooltiptxt = "" },
dtl3 = { text = "传送器", colour = AM_GREEN, coords = { {60.95, 72.95} }, symbol = { "P" },
83,6 → 85,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 玛拉顿",
displayshort = "",
toWorldMap = "Desolace",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\MaraudonExt",
location = "凄凉之地 (29, 62)",
levels = "40-49",
93,7 → 96,7
wmData = { minX = 0.3807325, maxX = 0.393785, minY = 0.5679875, maxY = 0.58772 },
amData = { minX = 0.02, maxX = 0.92, minY = 0.01, maxY = 0.98 },
dtl1 = { text = "入口", colour = AM_GREEN, coords = { {23, 59} }, symbol = { "X" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Desolace", leaveGap = 1 },
dtl2 = { text = "第一可汗", colour = AM_RED, coords = { {31, 45} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "第二可汗", colour = AM_RED, coords = { {24, 29} }, symbol = { "2" },
113,6 → 116,7
{ name = "奥达曼"..AM_EXTERIOR, -- Uldaman Exterior
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 奥达曼",
toWorldMap = "Badlands",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\UldamanExt",
location = "荒芜之地 (44, 12)",
levels = "",
123,7 → 127,7
wmData = { minX = 0.536226, maxX = 0.544795, minY = 0.57594, maxY = 0.586616 },
amData = { minX = 0.075, maxX = 0.95, minY = 0.20, maxY = 0.935 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {95, 33} }, symbol = { "X" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Badlands", leaveGap = 1 },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_BLUE, coords = { {23, 64}, {33, 88} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "与任务有关系", leaveGap = 1 },
dtl3 = { text = "奥达曼", colour = AM_GREEN, coords = { {30.5, 23} }, symbol = { "U" },
133,6 → 137,7
{ name = "哀嚎洞穴"..AM_EXTERIOR, -- Wailing Caverns Exterior
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 哀嚎洞穴",
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\WailingCavernsExt",
location = "贫瘠之地 (46, 36)",
levels = "",
143,7 → 148,7
wmData = { minX = 0.5178145, maxX = 0.529001, minY = 0.543372, maxY = 0.555871 },
amData = { minX = 0.05, maxX = 0.97, minY = 0.15, maxY = 0.80 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {14.2, 81.5} }, symbol = { "X" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Barrens", leaveGap = 1 },
dtl2 = { text = "哀嚎洞穴", colour = AM_GREEN, coords = { {55.1, 62.2} }, symbol = { "W" },
tooltiptxt = "点击打开哀嚎洞穴副本地图", toMap = "哀嚎洞穴", leaveGap = 1 }
},
151,6 → 156,7
{ name = "黑石山"..AM_EXTERIOR, -- Blackrock Mountain
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 黑石山",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\BRMExt",
location = "",
levels = "",
159,10 → 165,10
general = "",
wmData = { minX = 0.46707, maxX = 0.47864, minY = 0.67602, maxY = 0.69818 },
amData = { minX = 0.14, maxX = 0.85, minY = 0.09, maxY = 0.985 },
dtl1 = { text = "Burning Steppes", colour = AM_GREEN, coords = { {50.0, 38.0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
dtl2 = { text = "Searing Gorge", colour = AM_GREEN, coords = { {53.2, 98.2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl1 = { text = "Searing Gorge", colour = AM_GREEN, coords = { {50.0, 38.0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toWorldMap = "SearingGorge", },
dtl2 = { text = "Burning Steppes", colour = AM_GREEN, coords = { {53.2, 98.2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toWorldMap = "BurningSteppes", leaveGap = 1 },
dtl3 = { text = "LBRS/UBRS/BWL", colour = AM_RED, coords = { {71, 59.4} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑石塔", leaveGap = 1 },
dtl4 = { text = "Lothos Riftwalker", colour = AM_BLUE, coords = { {40, 57} }, symbol = { "1" },
177,6 → 183,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 时光之穴",
displayshort = "CoT",
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\CoTExt",
location = "塔纳利斯",
levels = "",
189,13 → 196,13
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {81.6, 26.2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
dtl2 = { text = "旧希尔斯布莱德", colour = AM_ORANGE, coords = { {1.5, 41.2} }, symbol = { "A" },
tooltiptxt = "", toMap = "旧希尔斯布莱德" },
tooltiptxt = "", toMap = "时光之穴 - 旧希尔斯布莱德" },
dtl3 = { text = "黑色沼泽", colour = AM_ORANGE, coords = { {18.00, 86.22} }, symbol = { "B" },
tooltiptxt = "", toMap = "黑色沼泽" },
tooltiptxt = "", toMap = "时光之穴 - 黑色沼泽" },
dtl4 = { text = "海加尔峰", colour = AM_ORANGE, coords = { {22, 23} }, symbol = { "C" },
tooltiptxt = "", toMap = "海加尔峰", },
tooltiptxt = "", toMap = "时光之穴 - 海加尔峰", },
dtl5 = { text = "净化斯坦索姆", colour = AM_ORANGE, coords = { {49.11, 84.12} }, symbol = { "D" },
tooltiptxt = "", toMap = "净化斯坦索姆", leaveGap = 1 },
tooltiptxt = "", toMap = "时光之穴 - 净化斯坦索姆", leaveGap = 1 },
dtl6 = { text = "时间管理者", colour = AM_GREEN, coords = { {81.6, 26.2} }, symbol = { " " },
tooltiptxt = "" },
dtl7 = { text = "阿历克斯顿·克罗姆", colour = AM_GREEN, coords = { {92, 25} }, symbol = { "1" },
232,6 → 239,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 盘牙水库",
displayshort = "CR",
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\CoilfangExt",
location = "赞加沼泽",
levels = "",
242,7 → 250,7
wmData = { minX = 0.48742, maxX = 0.54289, minY = 0.33097, maxY = 0.38282 },
amData = { minX = 0.14, maxX = 0.73, minY = 0.43, maxY = 0.80 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {48.24, 77.34} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "(水下)", leaveGap = 1 },
tooltiptxt = "(水下)", toWorldMap = "Zangarmarsh", leaveGap = 1 },
dtl2 = { text = "奴隶围栏", colour = AM_ORANGE, coords = { {16.41, 62.89} }, symbol = { "A" },
tooltiptxt = "", toMap = "奴隶围栏" },
dtl3 = { text = "蒸汽地窖", colour = AM_ORANGE, coords = { {31.05, 45.70} }, symbol = { "B" },
261,6 → 269,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 奥金顿",
displayshort = "Auch",
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\AuchindounExt",
location = "白骨荒野,泰罗卡森林",
levels = "",
271,7 → 280,7
wmData = { minX = 0.34323, maxX = 0.44944, minY = 0.57638, maxY = 0.73592 },
amData = { minX = 0.11, maxX = 0.89, minY = 0.10, maxY = 0.88 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {21, 20}, {81, 20}, {21, 78}, {81, 78} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", leaveGap = 1 },
dtl2 = { text = "奥金尼地穴", colour = AM_ORANGE, coords = { {8, 49.5} }, symbol = { "A" },
tooltiptxt = "", toMap = "奥金尼地穴" },
dtl3 = { text = "法力陵墓", colour = AM_ORANGE, coords = { {50, 7} }, symbol = { "B" },
318,6 → 327,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 血色修道院",
displayshort = "SM",
toWorldMap = "Tirisfal",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\SMExt",
location = "提瑞斯法林地",
levels = "",
327,7 → 337,7
wmData = { minX = 0.462834, maxX = 0.466359, minY = 0.30418, maxY = 0.30718 },
amData = { minX = 0.02, maxX = 0.91, minY = 0.26, maxY = 0.695 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {5, 59}, {9, 71} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tirisfal", leaveGap = 1 },
dtl2 = { text = "墓地区", colour = AM_ORANGE, coords = { {76, 23} }, symbol = { "1" },
tooltiptxt = "", toMap = "血色修道院" },
dtl3 = { text = "大教堂", colour = AM_ORANGE, coords = { {89, 29} }, symbol = { "2" },
343,6 → 353,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 阿塔哈卡神庙",
displayshort = "ST",
toWorldMap = "SwampOfSorrows",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\SunkenTempleExt",
location = "悲伤沼泽",
levels = "",
352,7 → 363,7
wmData = { minX = 0.53955, maxX = 0.54659, minY = 0.78631, maxY = 0.79619 },
amData = { minX = 0.08, maxX = 0.815, minY = 0.23, maxY = 0.91 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {12, 89} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", special = "(玉龙 - 稀有)", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "SwampOfSorrows", special = "(玉龙 - 稀有)", leaveGap = 1 },
dtl2 = { text = "邪恶的卡萨卡兹", colour = AM_RED, coords = { {46, 70} }, symbol = { "1" },
tooltiptxt = "", special = "(上层)" },
dtl3 = { text = "泽基斯", colour = AM_RED, coords = { {58, 38} }, symbol = { "2" },
368,6 → 379,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 黑暗深渊",
displayshort = "BFD",
toWorldMap = "Ashenvale",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\BlackfathomDeepsExt",
location = "灰谷",
levels = "",
377,7 → 389,7
wmData = { minX = 0.4366733, maxX = 0.44610637, minY = 0.34415522, maxY = 0.35412708 },
amData = { minX = 0.045, maxX = 0.975, minY = 0.14, maxY = 0.81 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {35, 80} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Ashenvale", leaveGap = 1 },
dtl2 = { text = "黑暗深渊", colour = AM_ORANGE, coords = { {70, 43.8} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑暗深渊", leaveGap = 1 },
-- toMap = "Blackfathom Deeps", "Blackfathom-Tiefenl", "Profondeurs de Brassenoire"
387,6 → 399,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 死亡矿井",
displayshort = "BFD",
toWorldMap = "Westfall",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\TheDeadminesExt",
location = "西部荒野",
levels = "",
396,7 → 409,7
wmData = { minX = 0.404836, maxX = 0.410194, minY = 0.819415, maxY = 0.82981 },
amData = { minX = 0.15, maxX = 0.89, minY = 0.01, maxY = 0.965 },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {68, 1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Westfall", leaveGap = 1 },
dtl2 = { text = "玛里莎·杜派格", colour = AM_RED, coords = { {62, 63}, {86, 39} }, symbol = { "1" },
tooltiptxt = "", special = AM_VARIES },
dtl3 = { text = "被洗脑的贵族", colour = AM_RED, coords = { { 70, 71 } }, symbol = { "2" },
412,6 → 425,7
type = AM_TYP_EXTERIORS,
displayname = AM_EXTERIOR.." - 卡拉赞",
displayshort = "",
toWorldMap = "DeadwindPass",
filename = "Interface\\AddOns\\AlphaMap_Exteriors\\Maps\\KarazhanExt",
location = "逆风小径",
levels = "",
441,6 → 455,8
tooltiptxt = "" },
dtl10 = { text = "焦骨碎块", colour = AM_GREEN, coords = { {31, 76} }, symbol = { "6" },
tooltiptxt = "" },
dtl11 = { text = AM_INSTANCE_EXITS, colour = AM_BLUE, coords = { {1, 1} }, symbol = { "<-" },
tooltiptxt = "", toWorldMap = "DeadwindPass", },
-- toMap = "The Deadmines", "Die Todesminen", "Les Mortemines"
},
 
AlphaMapBeta/AlphaMap_Exteriors/localisation.en.lua
453,7 → 453,6
tooltiptxt = "" },
dtl11 = { text = AM_INSTANCE_EXITS, colour = AM_BLUE, coords = { {1, 1} }, symbol = { "<-" },
tooltiptxt = "", toWorldMap = "DeadwindPass", },
-- toMap = "The Deadmines", "Die Todesminen", "Les Mortemines"
},
 
};
AlphaMapBeta/AlphaMap_Instances/localisation.cn.lua
20,6 → 20,8
displayname = "黑暗深渊",
displayshort = "BFD",
continent = 1,
toMap = "黑暗深渊"..AM_EXTERIOR,
toWorldMap = "Ashenvale",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackfathomDeeps",
location = "灰谷 (14, 14)",
levels = "24-32",
27,7 → 29,7
prereq = "",
general = "有一些水下部分",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {33, 10} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑暗深渊"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Ashenvale", toMap = "黑暗深渊"..AM_EXTERIOR },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {50, 68} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "加摩拉", colour = AM_RED, coords = { {23.5, 42} }, symbol = { "1" },
63,6 → 65,8
displayname = "黑石深渊",
displayshort = "BRD",
continent = 2,
toMap = "黑石山"..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackrockDepths",
location = "黑石山",
levels = "52-60",
70,7 → 74,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {21, 83} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑石山"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "黑石山"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "洛考尔", colour = AM_RED, coords = { {33, 80} }, symbol = { "1" },
tooltiptxt = "Lvl51 精英元素生物", lootid = "BRDLordRoccor" },
dtl3 = { text = "审讯官格斯塔恩", colour = AM_RED, coords = { {38, 95} }, symbol = { "2" },
136,6 → 140,8
displayname = "黑石塔 (下层)",
displayshort = "LBRS",
continent = 2,
toMap = "黑石山"..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\LBRS", -- LBRS
location = "黑石山",
levels = "53-60",
143,7 → 149,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {9, 10} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑石山"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "黑石山"..AM_EXTERIOR },
dtl2 = { text = "黑石塔 (上层)", colour = AM_BLUE, coords = { {22, 4} }, symbol = { "U" },
tooltiptxt = "", toMap = "黑石塔 (上层)" },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {45.2, 29}, {73, 46} }, symbol = { "x1" },
205,6 → 211,8
displayname = "黑石塔 (上层)",
displayshort = "UBRS",
continent = 2,
toMap = "黑石山"..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UBRS", -- UBRS
location = "黑石山",
levels = "53-60",
212,7 → 220,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {3, 80.7} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑石山"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "黑石山"..AM_EXTERIOR },
dtl2 = { text = "黑石塔 (下层)", colour = AM_BLUE, coords = { {18.2, 86.6} }, symbol = { "L" },
tooltiptxt = "", toMap = "黑石塔", leaveGap = 1 },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {11.9, 58.4}, {8.65, 25} }, symbol = { "x1" },
254,6 → 262,8
displayname = "黑翼之巢",
displayshort = "BWL",
continent = 2,
toMap = "黑石塔 (上层)",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackwingLair",
location = "黑石山",
levels = "60+",
261,7 → 271,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {65, 72} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑石塔 (上层)", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "黑石塔 (上层)", leaveGap = 1 },
dtl2 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {32.8, 78}, {61, 48} }, symbol = { "x1" },
tooltiptxt = "" },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {40, 96}, {68, 65} }, symbol = { "x2" },
293,6 → 303,7
displayname = "厄运之槌 - 概貌",
displayshort = "DM",
continent = 1,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DireMaul",
location = "菲拉斯 (59, 44)",
levels = "56-60",
315,6 → 326,8
displayname = "厄运之槌 (东)",
displayshort = "DM",
continent = 1,
toMap = "Dire Maul"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMEast", --DMEast
location = "厄运之槌 (59, 44)",
levels = "56-60",
322,9 → 335,9
prereq = "",
general = "",
dtl1 = { text = "入口 : 被毁坏的庭院", colour = AM_GREEN, coords = { {6, 58} }, symbol = { "X1" },
tooltiptxt = "", toMap = "Dire Maul"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Dire Maul"..AM_EXTERIOR },
dtl2 = { text = "入口 : 艾德雷斯区", colour = AM_GREEN, coords = { {12, 92} }, symbol = { "X2" },
tooltiptxt = "", toMap = "Dire Maul"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Dire Maul"..AM_EXTERIOR },
dtl3 = { text = "入口 : 拉瑞斯小亭", colour = AM_GREEN, coords = { {98, 64} }, symbol = { "X3" },
tooltiptxt = "" },
dtl4 = { text = AM_INSTANCE_EXITS, colour = AM_RED, coords = { {8, 40} }, symbol = { AM_EXIT_SYMBOL },
362,6 → 375,8
displayname = "厄运之槌 (北)",
displayshort = "DM",
continent = 1,
toMap = "Dire Maul"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMNorth", -- DMNorth
location = "厄运之槌 (59, 44)",
levels = "56-60",
369,7 → 384,7
prereq = "需要从厄运之槌东追捕追捕普希林任务的月牙钥匙",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {74, 74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Dire Maul"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Dire Maul"..AM_EXTERIOR },
dtl2 = { text = "厄运之槌(西)", colour = AM_GREEN, coords = { {9, 98} }, symbol = { "W" },
tooltiptxt = "", toMap = "厄运之槌 (西)" },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {49.2, 59.4} }, symbol = { AM_CHEST_SYMBOL },
401,6 → 416,8
displayname = "厄运之槌 (西)",
displayshort = "DM",
continent = 1,
toMap = "Dire Maul"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMWest", -- DMWest
location = "厄运之槌 (59, 44)",
levels = "56-60",
408,7 → 425,7
prereq = "需要从厄运之槌东追捕追捕普希林任务的月牙钥匙",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {97, 78} }, symbol = { "X1" },
tooltiptxt = "", toMap = "Dire Maul"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Dire Maul"..AM_EXTERIOR },
dtl2 = { text = "厄运之槌 (北)", colour = AM_GREEN, coords = { {66, 9} }, symbol = { "N" },
tooltiptxt = "", toMap = "厄运之槌 (北)", leaveGap = 1 },
dtl3 = { text = "楼梯", colour = AM_BLUE, coords = { {49.2, 25}, {52, 60} }, symbol = { AM_STAIRS_SYMBOL },
443,6 → 460,8
type = AM_TYP_INSTANCE,
displayname = "诺莫瑞根",
continent = 2,
toMap = "诺莫瑞根"..AM_EXTERIOR,
toWorldMap = "DunMorogh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Gnomeregan",
location = "丹莫罗 (25, 41)",
levels = "26-33",
450,7 → 469,7
prereq = "",
general = "部落经由藏宝海湾传送器进入.\n从奥格瑞玛工程师处获得起始任务.",
dtl1 = { text = "正门入口 (发条小径)", colour = AM_GREEN, coords = { {70.5, 16} }, symbol = { "X1" },
tooltiptxt = "", toMap = "诺莫瑞根"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "DunMorogh", toMap = "诺莫瑞根"..AM_EXTERIOR, },
dtl2 = { text = "后门入口 (车间)", colour = AM_GREEN, coords = { {87, 59} }, symbol = { "X2" },
tooltiptxt = "需要车间钥匙", toMap = "诺莫瑞根"..AM_EXTERIOR },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {75, 38}, {79, 56} }, symbol = { AM_CHEST_SYMBOL },
485,6 → 504,8
type = AM_TYP_INSTANCE,
displayname = "玛拉顿",
continent = 1,
toMap = "玛拉顿"..AM_EXTERIOR,
toWorldMap = "Desolace",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Maraudon",
location = "凄凉之地 (29, 62)",
levels = "40-49",
492,7 → 513,7
prereq = "",
general = "",
dtl1 = { text = "入口 (橙色)", colour = AM_ORANGE, coords = { {71, 12} }, symbol = { "X1" },
tooltiptxt = "", toMap = "玛拉顿"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Desolace", toMap = "玛拉顿"..AM_EXTERIOR },
dtl2 = { text = "入口 (紫色)", colour = AM_PURPLE, coords = { {85, 31} }, symbol = { "X2" },
tooltiptxt = "", toMap = "玛拉顿"..AM_EXTERIOR },
dtl3 = { text = "入口 (传送)", colour = AM_GREEN, coords = { {36, 55} }, symbol = { "P" },
530,6 → 551,8
displayname = "熔火之心",
displayshort = "MC",
continent = 2,
toMap = "黑石深渊",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MoltenCore",
location = "黑石深渊",
levels = "60+",
537,7 → 560,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {3, 20} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑石深渊", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "黑石深渊", leaveGap = 1 },
dtl2 = { text = "鲁西弗隆", colour = AM_RED, coords = { {62, 35} }, symbol = { "1" },
tooltiptxt = "首领 人形生物", lootid = "MCLucifron" },
dtl3 = { text = "玛格曼达", colour = AM_RED, coords = { {70, 16} }, symbol = { "2" },
568,6 → 591,7
type = AM_TYP_INSTANCE,
displayname = "纳克萨玛斯",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Naxxramas",
location = "斯坦索姆",
levels = "60+",
623,7 → 647,9
dtl24 = { text = "克尔苏加德", colour = AM_RED, coords = { {75, 79} }, symbol = { "2" },
tooltiptxt = "冰霜飞龙巢穴", lootid = "Naxx80KelThuzad", leaveGap = 2 },
dtl26 = { text = AM_MOB_LOOT, colour = AM_PURPLE, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "", lootid = "Naxx80Trash", leaveGap = 1 }
tooltiptxt = "", lootid = "Naxx80Trash", leaveGap = 1 },
dtl27 = { text = AM_INSTANCE_EXITS, colour = AM_BLUE, coords = { {1, 1} }, symbol = { "<-" },
tooltiptxt = "", toWorldMap = "Dragonblight", },
},
 
{ name = "奥妮克希亚的巢穴", -- Onyxia's Lair
634,10 → 660,11
location = "尘泥沼泽 (52, 76)",
levels = "60+",
players = "40",
toWorldMap = "Dustwallow",
prereq = "需要龙火护符\n(完成在黑石塔上层杀死达基萨斯将军的任务)",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {9, 12} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Dustwallow", },
dtl2 = { text = "奥妮克希亚守卫", colour = AM_RED, coords = { {26, 41}, {29, 56}, {39, 68}, {50, 80} }, symbol = { "1" },
tooltiptxt = "Lvl62 精英龙类" },
dtl3 = { text = "雏龙蛋", colour = AM_RED, coords = { {45, 40}, {51, 54}, {84, 41}, {79, 54} }, symbol = { "2" },
651,13 → 678,14
displayname = "怒焰裂谷",
displayshort = "RFC",
continent = 1,
toWorldMap = "Ogrimmar",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RagefireChasm", -- RagefireChasm
location = "奥格瑞玛",
levels = "13-18",
players = "10",
general = "",
dtl1 = { text = "入口", colour = AM_GREEN, coords = { {72, 4} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Ogrimmar", leaveGap = 1 },
dtl2 = { text = "玛尔·恐怖图腾", colour = AM_GOLD, coords = { {71, 53} }, symbol = { "1" },
tooltiptxt = "背包任务" },
dtl3 = { text = "饥饿者塔拉加曼", colour = AM_RED, coords = { {34, 59} }, symbol = { "2" },
674,6 → 702,7
displayname = "剃刀高地",
displayshort = "RFD",
continent = 1,
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RazorfenDowns",
location = "南贫瘠之地 (48, 88)",
levels = "38-43",
681,7 → 710,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {4, 23} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Barrens", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {77, 45} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "图特卡什", colour = AM_RED, coords = { {52, 36} }, symbol = { "1" },
707,6 → 736,7
displayname = "剃刀沼泽",
displayshort = "RFK",
continent = 1,
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RazorfenKraul",
location = "南贫瘠之地 (42, 86)",
levels = "28-33",
714,7 → 744,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {75, 71} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Barrens", leaveGap = 1 },
dtl2 = { text = "鲁古格", colour = AM_RED, coords = { {73, 44} }, symbol = { "1" },
tooltiptxt = "Lvl28 精英人形生物" },
dtl3 = { text = "阿格姆", colour = AM_RED, coords = { {88, 48} }, symbol = { "2" },
744,6 → 774,7
displayname = "安其拉废墟",
displayshort = "AQ20",
continent = 1,
toWorldMap = "Silithus",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RuinsofAhnQiraj", -- RuinsofAhnQiraj
location = "希利苏斯 (29, 96)",
levels = "60+",
751,7 → 782,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {64, 2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Silithus", leaveGap = 1 },
dtl2 = { text = "库林纳克斯", colour = AM_RED, coords = { {55, 29} }, symbol = { "1" },
tooltiptxt = "首领 & 精英", lootid = "AQ20Kurinnaxx" },
dtl3 = { text ="安多洛夫中将,\n&卡多雷四精英", colour = AM_RED, coords = { {55, 29} }, symbol = { " " },
795,6 → 826,8
displayname = "血色修道院",
displayshort = "SM",
continent = 2,
toMap = "血色修道院"..AM_EXTERIOR,
toWorldMap = "Tirisfal",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ScarletMonastery",
location = "提瑞斯法林地 (83.6, 34)",
levels = "30-40",
802,7 → 835,7
prereq = "",
general = "",
dtl1 = { text = "墓地入口", colour = AM_GREEN, coords = { {61, 97} }, symbol = { "G" },
tooltiptxt = "", toMap = "血色修道院"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Tirisfal", toMap = "血色修道院"..AM_EXTERIOR },
dtl2 = { text = "铁脊死灵", colour = AM_RED, coords = { {21, 88} }, symbol = { "1" },
tooltiptxt = "Lvl33 精英亡灵\n墓地", special = AM_RARE, lootid = "SMIronspine" },
dtl3 = { text = "永醒的艾希尔", colour = AM_RED, coords = { {5, 88} }, symbol = { "2" },
840,6 → 873,7
displayname = "安其拉神殿",
displayshort = "AQ40",
continent = 1,
toWorldMap = "Silithus",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TempleofAhnQiraj", -- TempleofAhnQiraj
location = "希利苏斯 (29, 96)",
levels = "60+",
847,7 → 881,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {16, 37} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Silithus", leaveGap = 1 },
dtl2 = { text = "亚雷戈斯\n& 凯雷斯特拉兹\n& 梦境之龙麦琳瑟拉", colour = AM_BLUE, coords = { {21, 56} }, symbol = { "A" },
tooltiptxt = "" },
dtl3 = { text = "安多葛斯\n& 温瑟拉\n& 坎多斯特拉兹", colour = AM_BLUE, coords = { {27, 43} }, symbol = { "B" },
888,6 → 922,8
type = AM_TYP_INSTANCE,
displayname = "死亡矿井",
continent = 2,
toMap = "死亡矿井"..AM_EXTERIOR,
toWorldMap = "Westfall",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheDeadmines",
location = "西部荒野 (42, 72)",
levels = "16-26",
895,7 → 931,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {12, 23} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "死亡矿井"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Westfall", toMap = "死亡矿井"..AM_EXTERIOR },
dtl2 = { text = AM_INSTANCE_EXITS, colour = AM_RED, coords = { {99, 42} }, symbol = { AM_EXIT_SYMBOL },
tooltiptxt = "" },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {80, 40} }, symbol = { AM_CHEST_SYMBOL },
926,6 → 962,7
type = AM_TYP_INSTANCE,
displayname = "监狱",
continent = 2,
toWorldMap = "Stormwind",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheStockade",
location = "暴风城",
levels = "24-32",
933,7 → 970,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {50, 74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Stormwind", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {69, 60}, {75, 40}, {26, 57}, {31, 36}, {18, 29} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "可怕的塔格尔", colour = AM_RED, coords = { {58, 63}, {41, 55}, {50, 37}, {27, 50} }, symbol = { "1" },
955,6 → 992,8
displayname = "阿塔哈卡神庙",
displayshort = "ST",
continent = 2,
toMap = "T阿塔哈卡神庙"..AM_EXTERIOR,
toWorldMap = "SwampOfSorrows",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSunkenTemple",
location = "悲伤沼泽 (70, 53)",
levels = "45-60",
962,7 → 1001,7
prereq = "",
general = "也称为沉没的神庙",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {62, 7} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "T阿塔哈卡神庙"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "SwampOfSorrows", toMap = "T阿塔哈卡神庙"..AM_EXTERIOR },
dtl2 = { text = "入口通往下层楼梯", colour = AM_GREEN, coords = { {54, 11.3}, {13.9, 47} }, symbol = { "SL" },
tooltiptxt = "" },
dtl3 = { text = "入口通往中层楼梯", colour = AM_GREEN, coords = { {69, 11.3} }, symbol = { "SM" },
1003,6 → 1042,8
type = AM_TYP_INSTANCE,
displayname = "奥达曼",
continent = 2,
toMap = "奥达曼"..AM_EXTERIOR,
toWorldMap = "Badlands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Uldaman",
location = "荒芜之地 (44, 12)",
levels = "35-50",
1010,7 → 1051,7
prereq = "",
general = "",
dtl1 = { text = "前门入口", colour = AM_GREEN, coords = { {89, 73.1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "点击打开奥达曼外部地图", toMap = "奥达曼"..AM_EXTERIOR },
tooltiptxt = "点击打开奥达曼外部地图", toWorldMap = "Badlands", toMap = "奥达曼"..AM_EXTERIOR },
dtl2 = { text = "旁门入口", colour = AM_GREEN, coords = { {21, 71} }, symbol = { "XR" },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "巴尔洛戈", colour = AM_RED, coords = { {73, 93} }, symbol = { "1" },
1046,6 → 1087,8
displayname = "哀嚎洞穴",
displayshort = "WC",
continent = 1,
toMap = "哀嚎洞穴"..AM_EXTERIOR,
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\WailingCaverns",
location = "贫瘠之地 (46, 36)",
levels = "16-25",
1053,7 → 1096,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {44, 58} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "哀嚎洞穴"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Barrens", toMap = "哀嚎洞穴"..AM_EXTERIOR },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {62, 47}, {94, 49} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "纳拉雷克斯的信徒", colour = AM_BLUE, coords = { {45, 53} }, symbol = { "1" },
1087,6 → 1130,7
displayname = "祖尔法拉克",
displayshort = "ZF",
continent = 1,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulFarrak",
location = "塔纳利斯 (37, 15)",
levels = "43-47",
1094,7 → 1138,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {69, 89} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tanaris", leaveGap = 1 },
dtl2 = { text = "泽雷利斯", colour = AM_RED, coords = { {63, 47} }, symbol = { "1" },
tooltiptxt = "Lvl45 精英人形生物", special = AM_RARE.." "..AM_WANDERS, lootid = "ZFZerillis" },
dtl3 = { text = "杉达尔·沙掠者", colour = AM_RED, coords = { {55, 59} }, symbol = { "2" },
1132,6 → 1176,7
displayname = "祖而格拉布",
displayshort = "ZG",
continent = 2,
toWorldMap = "Stranglethorn",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulGurub",
location = "荆棘谷 (54, 17)",
levels = "60+",
1139,7 → 1184,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {12, 50} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Stranglethorn", },
dtl2 = { text = "混浊的水", colour = AM_BLUE, coords = { {33, 41}, {47, 48}, {57, 47}, {60, 32}, {47, 30} }, symbol = { "W" },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "高阶祭司耶克里克", colour = AM_RED, coords = { {34, 78} }, symbol = { "1" },
1184,6 → 1229,7
type = AM_TYP_INSTANCE,
displayname = "通灵学院",
continent = 2,
toWorldMap = "WesternPlaguelands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Scholomance", -- Scholomance*
location = "西瘟疫之地 (69, 73)",
levels = "56-60",
1191,7 → 1237,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {24, 30} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "WesternPlaguelands", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {28, 38} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "" },
dtl3 = { text = AM_INSTANCE_STAIRS, colour = AM_GREEN, coords = { {6.5, 22}, {62, 22} }, symbol = { "S1" },
1248,6 → 1294,7
type = AM_TYP_INSTANCE,
displayname = "斯坦索姆",
continent = 2,
toWorldMap = "EasternPlaguelands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Stratholme",
location = "东瘟疫之地 (30, 12)",
levels = "55-60",
1255,7 → 1302,7
prereq = "",
general = "旁门入口在 EP (47, 24)",
dtl1 = { text = "正门入口", colour = AM_GREEN, coords = { {50, 91} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "EasternPlaguelands", },
dtl2 = { text = "旁门入口", colour = AM_GREEN, coords = { {83, 72} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "弗拉斯·希亚比的邮箱", colour = AM_ORANGE, coords = { {37, 86} }, symbol = { "P1" },
1317,6 → 1364,7
displayname = "影牙城堡",
displayshort = "SFK",
continent = 2,
toWorldMap = "Silverpine",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ShadowfangKeep",
location = "银松森林 (45, 67)",
levels = "20-30",
1324,7 → 1372,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {75, 69} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Silverpine", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {57, 57}, {36, 55}, {29, 12} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "" },
dtl3 = { text = "碉堡", colour = AM_BLUE, coords = { {38, 71}, {54, 93} }, symbol = { "B1" },
1366,6 → 1414,7
displayname = "地狱火堡垒 - 地狱火城墙",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCRampart", -- HellfireRampart
location = "地狱火半岛",
levels = "60-62",
1373,7 → 1422,7
prereq = "钥匙:焰铸钥匙 (英雄模式)",
general = "阵营:萨尔玛 (部落)\n阵营:荣耀堡 (联盟)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {62, 63} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "巡视者加戈玛", colour = AM_RED, coords = { {80, 24} }, symbol = { "1" },
tooltiptxt = "", special = AM_WANDERS, lootid = "HCRampWatchkeeper" },
dtl3 = { text = "无疤者奥摩尔", colour = AM_RED, coords = { {22, 14} }, symbol = { "2" },
1391,6 → 1440,7
displayname = "地狱火堡垒 - 鲜血熔炉",
displayshort = "BF",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCBloodFurnace", -- HCBloodFurnace
location = "地狱火半岛",
levels = "61-63",
1398,7 → 1448,7
prereq = "钥匙:焰铸钥匙 (英雄模式)",
general = "阵营:萨尔玛 (部落)\n阵营:荣耀堡 (联盟)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {50, 91.8} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "制造者", colour = AM_RED, coords = { {29.3, 35} }, symbol = { "1" },
tooltiptxt = "", lootid = "HCFurnaceMaker" },
dtl3 = { text = "布洛戈克", colour = AM_RED, coords = { {41, 13.1} }, symbol = { "2" },
1412,6 → 1462,7
displayname = "地狱火堡垒 - 破碎大厅",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCShatteredHalls", -- HCShatteredHalls
location = "地狱火半岛",
levels = "70-72",
1419,7 → 1470,7
prereq = "钥匙:焰铸钥匙 (英雄模式)",
general = "阵营:萨尔玛 (部落)\n阵营:荣耀堡 (联盟)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {67, 97.66} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "兰迪·维兹普罗克", colour = AM_RED, coords = { {23.63, 74.8} }, symbol = { "1" },
tooltiptxt = "", special = "(联盟, 英雄模式)" },
dtl3 = { text = "德雷希拉", colour = AM_RED, coords = { {23.63, 74.8} }, symbol = { " " },
1455,6 → 1506,7
displayname = "地狱火堡垒 - 玛瑟里顿的巢穴",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MagtheridonsLair", -- MagtheridonsLair
location = "地狱火半岛",
levels = "70",
1462,7 → 1514,7
prereq = "钥匙:焰铸钥匙 (英雄模式)",
general = "阵营:萨尔玛 (部落)\n阵营:荣耀堡 (联盟)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {23.44, 14.26} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "玛瑟里顿", colour = AM_PURPLE, coords = { {53.13, 72.07} }, symbol = { "1" },
tooltiptxt = "", lootid = "HCMagtheridon", leaveGap = 1 }
},
1472,6 → 1524,8
displayname = "盘牙水库 - 奴隶围栏",
displayshort = "SP",
continent = 3,
toMap = "盘牙水库"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSlavePens", -- TheSlavePens
location = "赞加沼泽",
levels = "62-64",
1479,7 → 1533,7
prereq = "钥匙:水库钥匙 (英雄模式)",
general = "阵营:塞纳里奥远征队",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {23.24, 21.29} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "盘牙水库"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "盘牙水库"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "背叛者门努", colour = AM_RED, coords = { {48.83, 31.84} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRSlaveMennu" },
dtl3 = { text = "除草者格林萨姆", colour = AM_RED, coords = { {48.83, 71.29} }, symbol = { "2" },
1500,6 → 1554,8
displayname = "盘牙水库 - 幽暗沼泽",
displayshort = "",
continent = 3,
toMap = "盘牙水库"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheUnderbog", -- TheUnderbog
location = "赞加沼泽",
levels = "63-65",
1507,7 → 1563,7
prereq = "钥匙:水库钥匙 (英雄模式)",
general = "阵营:塞纳里奥远征队",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {120, 346} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "盘牙水库"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "盘牙水库"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "霍加尔芬", colour = AM_RED, coords = { {71.09, 83.79} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRUnderHungarfen" },
dtl3 = { text = "幽暗孢子", colour = AM_RED, coords = { {71.09, 83.79} }, symbol = { " " },
1529,6 → 1585,8
displayname = "盘牙水库 - 蒸汽地窟",
displayshort = "SV",
continent = 3,
toMap = "盘牙水库"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSteamvault", -- The Steamvault
location = "赞加沼泽",
levels = "70-72",
1536,7 → 1594,7
prereq = "钥匙:水库钥匙 (英雄模式)",
general = "阵营:塞纳里奥远征队",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {1.56, 35.74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "盘牙水库"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "盘牙水库"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "水术师瑟丝比娅", colour = AM_RED, coords = { {54.3, 17.19} }, symbol = { "1" },
tooltiptxt = "Elite Lvl 72", lootid = "CFRSteamThespia" },
dtl3 = { text = "主厅控制面板", colour = AM_RED, coords = { {54.3, 17.19} }, symbol = { " " },
1561,6 → 1619,8
displayname = "盘牙水库 - 毒蛇神殿",
displayshort = "SC",
continent = 3,
toMap = "盘牙水库"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\SerpentShrine", -- SerpentshrineCavern
location = "赞加沼泽",
levels = "70",
1568,7 → 1628,7
prereq = "",
general = "阵营:塞纳里奥远征队",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {1.56, 67.19} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "盘牙水库"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "盘牙水库"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "不稳定的海度斯", colour = AM_RED, coords = { {37.89, 75} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRSerpentHydross" },
dtl3 = { text = "鱼斯拉", colour = AM_RED, coords = { {40.82, 54.1} }, symbol = { "2" },
1592,6 → 1652,8
displayname = "奥金顿 - 奥金尼地穴",
displayshort = "AC",
continent = 3,
toMap = "奥金顿"..AM_EXTERIOR,
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AuchenaiCrypts", -- AuchenaiCrypts
location = "白骨荒野,泰罗卡森林",
levels = "64-66",
1599,7 → 1661,7
prereq = "钥匙:奥金尼钥匙 (英雄模式)",
general = "阵营:贫民窟",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {22, 79.1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "奥金顿"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "奥金顿"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "死亡观察者希尔拉克", colour = AM_RED, coords = { {44, 70} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchCryptsShirrak" },
dtl3 = { text = "大主教玛拉达尔", colour = AM_RED, coords = { {88, 49} }, symbol = { "2" },
1617,6 → 1679,8
displayname = "奥金顿 - 暗影迷宫",
displayshort = "SL",
continent = 3,
toMap = "奥金顿"..AM_EXTERIOR,
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ShadowLabyrinth", -- ShadowLabyrinth
location = "白骨荒野,泰罗卡森林",
levels = "65-67",
1624,7 → 1688,7
prereq = "钥匙:暗影迷宫钥匙\n钥匙:奥金尼钥匙 (英雄模式)",
general = "阵营:贫民窟",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {6, 8.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "奥金顿"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "奥金顿"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "间谍托古恩", colour = AM_RED, coords = { {14, 44} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "赫尔默大使", colour = AM_RED, coords = { {14, 44} }, symbol = { "2" },
1648,6 → 1712,8
displayname = "奥金顿 - 塞泰克大厅",
displayshort = "SH",
continent = 3,
toMap = "奥金顿"..AM_EXTERIOR,
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\SethekkHalls", -- SethekkHalls
location = "白骨荒野,泰罗卡森林",
levels = "67-69",
1655,7 → 1721,7
prereq = "钥匙:奥金尼钥匙 (英雄模式)\n钥匙:灌注精华的月亮石 (安苏)",
general = "阵营:贫民窟",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {98, 46} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "奥金顿"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "奥金顿"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "黑暗编织者塞斯", colour = AM_RED, coords = { {47.3, 64} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchSethekkDarkweaver" },
dtl3 = { text = "拉卡", colour = AM_RED, coords = { {47.3, 64} }, symbol = { " " },
1675,6 → 1741,8
displayname = "奥金顿 - 法力陵墓",
displayshort = "MT",
continent = 3,
toWorldMap = "TerokkarForest",
toMap = "奥金顿"..AM_EXTERIOR,
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ManaTombs", -- ManaTombs
location = "白骨荒野,泰罗卡森林",
levels = "70-72",
1682,7 → 1750,7
prereq = "钥匙:奥金尼钥匙 (英雄模式)\n钥匙:哈拉迈德之眼 (崇拜, 尤尔)",
general = "阵营:星界财团",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18, 4.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "奥金顿"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "奥金顿"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "潘德莫努斯", colour = AM_RED, coords = { {46, 30} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchManaPandemonius" },
dtl3 = { text = "暗影领主希拉卡希斯", colour = AM_RED, coords = { {46, 30} }, symbol = { " " },
1708,6 → 1776,7
displayname = "格鲁尔的巢穴",
displayshort = "GL",
continent = 3,
toWorldMap = "BladesEdgeMountains",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\GruulsLair", -- GruulsLair
location = "刀锋山",
levels = "70",
1715,7 → 1784,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {0, 0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BladesEdgeMountains", leaveGap = 1 },
dtl2 = { text = "莫加尔大王", colour = AM_RED, coords = { {55, 48} }, symbol = { "1" },
tooltiptxt = "Boss", lootid = "GruulsLairHighKingMaulgar" },
dtl3 = { text = "疯狂的基戈尔", colour = AM_RED, coords = { {55, 48} }, symbol = { " " },
1735,7 → 1804,7
displayname = "黑暗神殿",
displayshort = "BT",
continent = 3,
-- filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Placeholder",
toWorldMap = "ShadowmoonValley",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackTemple", -- BlackTemple
location = "影月谷",
levels = "70",
1743,7 → 1812,7
prereq = "需要完成入口任务\n钥匙:卡拉波勋章",
general = "阵营:灰舌死誓者",
dtl1 = { text = "黑暗神殿 (入门)", colour = AM_ORANGE, coords = { {5.27, 32.03} }, symbol = { "-" },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "ShadowmoonValley", },
dtl2 = { text = "黑暗神殿 (顶层)", colour = AM_ORANGE, coords = { {49.61, 5.66} }, symbol = { "^" },
tooltiptxt = "" },
dtl3 = { text = "黑暗神殿 (底层)", colour = AM_ORANGE, coords = { {63.87, 60.74} }, symbol = { "v" },
1809,6 → 1878,7
displayname = "风暴要塞 - 能源舰",
displayshort = "Mech",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Mechanar", -- TheMechanar
location = "虚空风暴",
levels = "69-72",
1816,7 → 1886,7
prereq = "钥匙:星船钥匙 (英雄模式)",
general = "阵营:沙塔尔",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {43, 92.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "看守者盖罗基尔", colour = AM_RED, coords = { {46, 56} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKMechGyro" },
dtl3 = { text = "看守者埃隆汉", colour = AM_RED, coords = { {64.5, 52} }, symbol = { "2" },
1840,6 → 1910,7
displayname = "风暴要塞 - 生态船",
displayshort = "Bota",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Botanica", -- TheBotanica
location = "虚空风暴",
levels = "70-72",
1847,7 → 1918,7
prereq = "钥匙:星船钥匙 (英雄模式)",
general = "阵营:沙塔尔",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {96.2, 44.8} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "指挥官萨拉妮丝", colour = AM_RED, coords = { {45, 30} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKBotSarannis" },
dtl3 = { text = "高级植物学家弗雷温", colour = AM_RED, coords = { {24, 30} }, symbol = { "2" },
1867,6 → 1938,7
displayname = "风暴要塞 - 禁魔监狱",
displayshort = "Arca",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Arcatraz", -- TheArcatraz
location = "虚空风暴",
levels = "70-72",
1874,7 → 1946,7
prereq = "钥匙:禁魔监狱钥匙\n钥匙:星船钥匙 (英雄模式)",
general = "阵营:沙塔尔",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {38, 98} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "自由的瑟雷凯斯", colour = AM_RED, coords = { {45.5, 58.5} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKArcUnbound" },
dtl3 = { text = "自由的瑟雷凯斯", colour = AM_RED, coords = { {47.46, 37.3} }, symbol = { "2" },
1903,6 → 1975,8
displayname = "时光之穴 - 旧希尔希布莱德",
displayshort = "CoT1",
continent = 1,
toMap = "时光之穴"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\OldHillsbrad", -- OldHillsbrad
location = "塔纳利斯",
levels = "",
1910,7 → 1984,7
prereq = "需要完成入口任务\n钥匙:时光之匙 (英雄模式)",
general = "事件:逃离敦霍尔德堡\n阵营:时光守护者",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {13, 47} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "时光之穴"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "时光之穴"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "伊洛希恩", colour = AM_GREEN, coords = { {13, 47} }, symbol = { " " },
tooltiptxt = "" },
dtl3 = { text = "布拉森", colour = AM_GREEN, coords = { {13, 47} }, symbol = { " " },
1947,6 → 2021,8
displayname = "时光之穴 - 黑色沼泽",
displayshort = "CoT2",
continent = 1,
toMap = "时光之穴"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackMorass", -- The Black Morass
location = "塔纳利斯",
levels = "",
1954,7 → 2030,7
prereq = "需要完成入口任务\n钥匙:时光之匙 (英雄模式)",
general = "事件:开启黑暗之门\n阵营:时光守护者",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45.4, 22} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "时光之穴"..AM_EXTERIOR, special = "萨艾特", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "时光之穴"..AM_EXTERIOR, special = "萨艾特", leaveGap = 1 },
dtl2 = { text = "刷新点", colour = AM_RED, coords = { {58, 70}, {58.5, 61.5}, {41, 60.5}, {48, 52.5} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "波:时空领主德亚", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
1972,6 → 2048,8
displayname = "时光之穴 - 海加尔峰",
displayshort = "CoT3",
continent = 1,
toMap = "时光之穴"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MountHyjal", -- Battle for Mount Hyjal
location = "塔纳利斯",
levels = "70",
1979,7 → 2057,7
prereq = "需要完成入口任务",
general = "事件:海加尔之战\n阵营:流沙之鳞",
dtl1 = { text = "联盟基地", colour = AM_GREEN, coords = { {18.36, 48.83} }, symbol = { "A" },
tooltiptxt = "", toMap = "时光之穴"..AM_EXTERIOR, special = "(吉安娜·普罗德摩尔)" },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "时光之穴"..AM_EXTERIOR, special = "(吉安娜·普罗德摩尔)" },
dtl2 = { text = "部落基地", colour = AM_GREEN, coords = { {57.23, 35.74} }, symbol = { "B" },
tooltiptxt = "", special = "(萨尔)" },
dtl3 = { text = "暗夜精灵基地", colour = AM_GREEN, coords = { {75.39, 44.34} }, symbol = { "C" },
1993,11 → 2071,11
dtl7 = { text = "阿兹加洛", colour = AM_RED, coords = { {58.98, 38.67} }, symbol = { "4" },
tooltiptxt = "", lootid = "MountHyjalAzgalor" },
dtl8 = { text = "阿克蒙德", colour = AM_RED, coords = { {83.01, 31.25} }, symbol = { "5" },
tooltiptxt = "", lootid = "MountHyjalArchimonde" },
-- dtl9 = { text = "因多米", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
-- tooltiptxt = "" },
-- dtl10 = { text = "泰多姆", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
-- tooltiptxt = ""},
tooltiptxt = "", lootid = "MountHyjalArchimonde", leaveGap = 1, },
dtl9 = { text = "因多米", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "" },
dtl10 = { text = "泰多姆", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = ""},
},
 
{ name = "卡拉赞", -- Karazahn
2005,6 → 2083,8
displayname = "卡拉赞",
displayshort = "Kara",
continent = 2,
toMap = "卡拉赞"..AM_EXTERIOR,
toWorldMap = "DeadwindPass",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Karazahn", -- Karazahn
location = "逆风小径",
levels = "70",
2012,7 → 2092,7
prereq = "需要完成入口任务\n钥匙:麦迪文的钥匙\n钥匙:黑色骨灰 (夜之魇)",
general = "阵营:紫罗兰之眼",
dtl1 = { text = "前门入口 1", colour = AM_GREEN, coords = { {29.88, 31.45} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "卡拉赞"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "DeadwindPass", toMap = "卡拉赞"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "前门入口 2", colour = AM_GREEN, coords = { {28.13, 20.31} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "卡拉赞"..AM_EXTERIOR, leaveGap = 1 },
dtl3 = { text = "哈斯汀斯", colour = AM_BLUE, coords = { {27.93, 25.39} }, symbol = { "a" },
2118,6 → 2198,7
displayname = "祖阿曼",
displayshort = "ZA",
continent = 2,
toWorldMap = "Ghostlands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulAman", -- Zul'Aman
location = "幽魂之地",
levels = "70",
2125,7 → 2206,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18, 53} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Ghostlands", leaveGap = 1 },
dtl2 = { text = "纳洛拉克", colour = AM_RED, coords = { {36.3, 71.9} }, symbol = { "1" },
tooltiptxt = "", special = "(野熊)", lootid = "ZANalorakk" },
dtl3 = { text = "埃基尔松", colour = AM_RED, coords = { {31.25, 31.25} }, symbol = { "2" },
2145,6 → 2226,7
displayname = "风暴要塞 - 风暴之眼",
displayshort = "Eye",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheEye", -- TheEye
location = "风暴要塞",
levels = "69-72",
2152,7 → 2234,7
prereq = "钥匙:风暴钥匙",
general = "阵营:沙塔尔",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45, 93} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "奥", colour = AM_RED, coords = { {50, 57} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKEyeAlar" },
dtl3 = { text = "空灵机甲", colour = AM_RED, coords = { {14, 47} }, symbol = { "2" },
2180,6 → 2262,7
displayname = "魔导师平台",
displayshort = "MagT",
continent = 2,
toWorldMap = "Sunwell",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MagistersTerrace", -- Magister's Terrace
location = "奎尔丹纳斯岛",
levels = "69-72",
2187,10 → 2270,9
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {42.19, 78.32} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Sunwell", leaveGap = 1 },
dtl2 = { text = "塞林·火心", colour = AM_RED, coords = { {42.19, 26.17} }, symbol = { "1" },
tooltiptxt = "", lootid = "SMTFireheart" },
-- dtl3 = { text = "Fel Crystals", colour = AM_ORANGE, coords = { {43.36, 37.5}, {43.36, 50.2}, {42.19, 29.88}, {50.39, 50.2}, {50.39, 37.5} }, symbol = { "C" },
dtl3 = { text = "邪能水晶", colour = AM_ORANGE, coords = { {42.19, 26.17} }, symbol = { " " },
tooltiptxt = "" },
dtl4 = { text = "塔雷斯", colour = AM_GREEN, coords = { {59.96, 29.88} }, symbol = { "2" },
2212,6 → 2294,7
displayname = "Plateau du Puits de soleil",
displayshort = "SunP",
continent = 2,
toWorldMap = "Sunwell",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\SunwellPlateau", -- Sunwell Plateau
location = "奎尔丹纳斯岛",
levels = "69-72",
2219,7 → 2302,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {31.45, 17.19} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Sunwell", leaveGap = 1 },
dtl2 = { text = "卡雷苟斯", colour = AM_RED, coords = { {30.08, 32.03} }, symbol = { "1" },
tooltiptxt = "", lootid = "SPKalecgos" },
dtl3 = { text = "腐蚀者萨索瓦尔", colour = AM_RED, coords = { {30.08, 32.03} }, symbol = { " " },
2254,6 → 2337,7
displayname = "岩石大厅",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\StoneHalls",
location = "风暴峭壁",
levels = "80",
2261,7 → 2345,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {26.5625, 41.0156} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "TheStormPeaks", leaveGap = 1, },
dtl2 = { text = "悲伤圣女", colour = AM_RED, coords = { {48.85, 81.7} }, symbol = { "1" },
tooltiptxt = "", lootid = "HallsofStone", },
dtl3 = { text = "克莱斯塔卢斯", colour = AM_RED, coords = { {37.1094, 58.3984} }, symbol = { "2" },
2277,6 → 2361,7
displayname = "乌特加德之巅",
displayshort = "",
continent = 4,
toWorldMap = "HowlingFjord",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardePinnacle",
location = "嚎风峡湾",
levels = "80",
2284,7 → 2369,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {36.91, 7.03} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "HowlingFjord", leaveGap = 1, },
dtl2 = { text = "Brigg Smallshanks", colour = AM_BLUE, coords = { {36.91, 13.33} }, symbol = { "Q" },
tooltiptxt = "Quests : \n Junk in My Trunk\n Vengeance Be Mine!", leaveGap = 1, },
dtl3 = { text = "席瓦拉·索格蕾", colour = AM_RED, coords = { {43.94, 78.515} }, symbol = { "1" },
2304,6 → 2389,7
displayname = "魔枢",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Nexus",
location = "北风苔原",
levels = "71-73",
2311,7 → 2397,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {30.63, 86.34} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "BoreanTundra", leaveGap = 1, },
dtl2 = { text = "塑树者奥莫洛克", colour = AM_RED, coords = { {58.47, 71.85} }, symbol = { "1" },
tooltiptxt = "", lootid = "TheNexus", },
dtl3 = { text = "大魔导师泰蕾丝塔", colour = AM_RED, coords = { {19.55, 41.74} }, symbol = { "2" },
2320,6 → 2406,8
tooltiptxt = "", lootid = "TheNexus", },
dtl5 = { text = "克莉斯塔萨", colour = AM_RED, coords = { {30.91, 67.02} }, symbol = { "4" },
tooltiptxt = "", lootid = "TheNexusKeristraszaHEROIC", },
dtl6 = { text = "Commander Stoutbeard", colour = AM_RED, coords = { {35.7, 43.2} }, symbol = { "5" },
tooltiptxt = "", lootid = "TheNexusHEROIC", leaveGap = 1, },
},
 
{ name = "安卡雷:古代王国", -- Ahn'Kahet
2327,6 → 2415,7
displayname = "安卡雷:古代王国",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AhnkahetTOK",
location = "龙骨荒野",
levels = "73-75",
2334,7 → 2423,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {87.304, 71.875} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "Dragonblight", },
dtl2 = { text = "纳多克斯长老", colour = AM_RED, coords = { {68.75, 40.43} }, symbol = { "1" },
tooltiptxt = "", lootid = "Ahnkahet", },
dtl3 = { text = "Ancient Nerubian Device", colour = AM_BLUE, coords = { {56.836, 35.9375} }, symbol = { "{}" },
2347,6 → 2436,8
tooltiptxt = "", lootid = "Ahnkahet", },
dtl7 = { text = "传令官沃拉兹", colour = AM_RED, coords = { {30.273, 54.883} }, symbol = { "4" },
tooltiptxt = "", lootid = "Ahnkahet", },
dtl8 = { text = "埃曼尼塔", colour = AM_RED, coords = { {65.7, 66.8} }, symbol = { "5" },
tooltiptxt = "", special = "(英雄模式)", lootid = "AhnkahetHEROIC", },
},
 
{ name = "黑曜石圣殿", -- The Obsidian Sanctum
2354,6 → 2445,7
displayname = "黑曜石圣殿",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\CoAB",
location = "Wyrmrest Temple, 龙骨荒野",
levels = "Raid",
2361,7 → 2453,7
prereq = "",
general = "Leave Minibosses alive for a tougher Sartharion fight\n and better loot",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {74.65, 49.29} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "Dragonblight", leaveGap = 1, },
dtl2 = { text = "维斯匹隆", colour = AM_RED, coords = { {59.96, 55.03} }, symbol = { "1" },
tooltiptxt = "", },
dtl3 = { text = "塔尼布隆", colour = AM_RED, coords = { {40.67, 46.30} }, symbol = { "1" },
2377,14 → 2469,15
displayname = "达克萨隆要塞 Lower",
displayshort = "",
continent = 4,
toWorldMap = "GrizzlyHills",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DrakTharonLower",
location = "嚎风峡湾",
location = "灰熊丘陵",
levels = "74-76",
players = "",
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {10.26, 84.65} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "GrizzlyHills", leaveGap = 1, },
dtl2 = { text = "托尔戈", colour = AM_RED, coords = { {53.13, 25.11} }, symbol = { "1" },
tooltiptxt = "", lootid = "DrakTharonKeep", },
dtl3 = { text = "召唤者诺沃斯", colour = AM_RED, coords = { {71.46, 54.22} }, symbol = { "2" },
2392,24 → 2485,26
dtl4 = { text = "暴龙之王爵德", colour = AM_RED, coords = { {56.4, 79.42} }, symbol = { "3" },
tooltiptxt = "", lootid = "DrakTharonKeep", leaveGap = 1, },
dtl5 = { text = "达克萨隆要塞 Upper", colour = AM_GREEN, coords = { {45.93, 68.95} }, symbol = { AM_STAIRS_SYMBOL },
tooltiptxt = "", toMap = "达克萨隆要塞 Upper", leaveGap = 1, },
tooltiptxt = "", toMap = "达克萨隆要塞 2", leaveGap = 1, },
dtl6 = { text = "Splash down from Upper", colour = AM_BLUE, coords = { {43, 21} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "达克萨隆要塞 Upper" },
tooltiptxt = "", toMap = "达克萨隆要塞 2" },
},
 
{ name = "达克萨隆要塞 Upper", -- Drak'Tharon Keep
{ name = "达克萨隆要塞 2", -- Drak'Tharon Keep
type = AM_TYP_INSTANCE,
displayname = "达克萨隆要塞 Upper",
displayname = "达克萨隆要塞 2",
displayshort = "",
continent = 4,
toMap = "达克萨隆要塞",
toWorldMap = "GrizzlyHills",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DrakTharonUpper",
location = "嚎风峡湾",
location = "灰熊丘陵",
levels = "74-76",
players = "",
prereq = "",
general = "",
dtl1 = { text = "达克萨隆要塞 Lower", colour = AM_GREEN, coords = { {45.93, 68.95} }, symbol = { AM_STAIRS_SYMBOL },
tooltiptxt = "", toMap = "达克萨隆要塞", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "GrizzlyHills", toMap = "达克萨隆要塞", leaveGap = 1, },
dtl2 = { text = "暴龙之王爵德", colour = AM_RED, coords = { {56.4, 79.42} }, symbol = { "3" },
tooltiptxt = "", lootid = "DrakTharonKeep", },
dtl3 = { text = "先知萨隆亚", colour = AM_RED, coords = { {56.6, 19.87} }, symbol = { "4" },
2423,6 → 2518,7
displayname = "古达克",
displayshort = "",
continent = 4,
toWorldMap = "ZulDrak",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\GunDrak",
location = "祖达克",
levels = "74-77",
2430,7 → 2526,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {31.055, 36.328}, {70.3125, 36.328} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "ZulDrak", },
dtl2 = { text = "斯拉德兰", colour = AM_RED, coords = { {62.695, 48.828} }, symbol = { "1" },
tooltiptxt = "", lootid = "Gundrak", },
dtl3 = { text = "莫拉比", colour = AM_RED, coords = { {38.672, 48.828} }, symbol = { "1" },
2446,6 → 2542,7
displayname = "魔环",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Oculus",
location = "北风苔原",
levels = "80",
2453,7 → 2550,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {60.64, 52.67} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "BoreanTundra", leaveGap = 1, },
dtl2 = { text = AM_LEADSTO, colour = AM_BLUE, coords = { {43.43, 52.36}, {52.65, 62.81} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1, },
dtl3 = { text = "审讯者达库斯", colour = AM_RED, coords = { {52.65, 62.81} }, symbol = { "1" },
2477,6 → 2574,7
displayname = "闪电大厅",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HoL",
location = "风暴峭壁",
levels = "77-79",
2484,7 → 2582,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {13.4, 38.086} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "TheStormPeaks", leaveGap = 1, },
dtl2 = { text = "比亚格里将军", colour = AM_RED, coords = { {54.1, 46.29} }, symbol = { "1" },
tooltiptxt = "", special = AM_WANDERS, lootid = "HoLGjarngrin", },
dtl3 = { text = "沃尔坎", colour = AM_RED, coords = { {66.797, 37.89} }, symbol = { "2" },
2500,6 → 2598,7
displayname = "Vault of Archavon",
displayshort = "",
continent = 4,
toWorldMap = "LakeWintergrasp",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Archavon",
location = "冬拥湖",
levels = "77-79",
2507,7 → 2606,7
prereq = "Faction must claim victory in Lake 冬拥湖",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {39.6, 97.656} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "LakeWintergrasp", },
dtl2 = { text = "Archavon the Stone Watcher", colour = AM_RED, coords = { {39.6, 10.9375} }, symbol = { "1" },
tooltiptxt = "", },
},
2517,6 → 2616,7
displayname = "乌特加德城堡",
displayshort = "",
continent = 4,
toWorldMap = "HowlingFjord",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardeKeep",
location = "嚎风峡湾",
levels = "70-72",
2524,7 → 2624,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {68.16, 69.14} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "HowlingFjord", leaveGap = 1, },
dtl2 = { text = "凯雷塞斯王子", colour = AM_RED, coords = { {17.578, 61.914} }, symbol = { "1" },
tooltiptxt = "", lootid = "UtgardeKeep", leaveGap = 1, },
dtl3 = { text = "乌特加德城堡 2", colour = AM_GREEN, coords = { {34.18, 80.86} }, symbol = { "P" },
2536,6 → 2636,8
displayname = "乌特加德城堡 2",
displayshort = "",
continent = 4,
toMap = "乌特加德城堡",
toWorldMap = "HowlingFjord",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardeKeep1",
location = "嚎风峡湾",
levels = "70-72",
2543,7 → 2645,7
prereq = "",
general = "",
dtl1 = { text = "乌特加德城堡", colour = AM_GREEN, coords = { {34.18, 80.86} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1, toMap = "乌特加德城堡", },
tooltiptxt = "", toWorldMap = "HowlingFjord", leaveGap = 1, toMap = "乌特加德城堡", },
dtl2 = { text = "建筑师斯卡瓦尔德", colour = AM_RED, coords = { {61.133, 76.76} }, symbol = { "2" },
tooltiptxt = "", lootid = "UtgardeKeep", },
dtl3 = { text = "Dalronn the Controller", colour = AM_RED, coords = { {61.133, 76.76} }, symbol = { " " },
2557,6 → 2659,7
displayname = "尼鲁布",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AzjolNerub",
location = "龙骨荒野",
levels = "72-74",
2564,7 → 2667,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18.75, 63.28} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "Dragonblight", leaveGap = 1, },
dtl2 = { text = "看门者克里克希尔", colour = AM_RED, coords = { {44.53, 42.773} }, symbol = { "1" },
tooltiptxt = "", lootid = "AzjolNerub", },
dtl3 = { text = "哈多诺克斯", colour = AM_RED, coords = { {65.234, 42.773} }, symbol = { "2" },
2578,6 → 2681,8
displayname = "尼鲁布 Lower",
displayshort = "",
continent = 4,
toMap = "尼鲁布",
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AzjolNerubLower",
location = "龙骨荒野",
levels = "72-74",
2585,7 → 2690,7
prereq = "",
general = "",
dtl1 = { text = "尼鲁布", colour = AM_BLUE, coords = { {25.39, 50} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "尼鲁布", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Dragonblight", toMap = "尼鲁布", leaveGap = 1 },
dtl2 = { text = "阿努巴拉克", colour = AM_RED, coords = { {76.17, 48.2} }, symbol = { "3" },
tooltiptxt = "", lootid = "AzjolNerub", },
},
2595,30 → 2700,31
displayname = "紫罗兰监狱",
displayshort = "",
continent = 4,
toWorldMap = "Dalaran",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\",
location = "达拉然",
levels = "77-79",
players = "",
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {0, 0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
dtl2 = { text = "Lieutenant Sinclari", colour = AM_GREEN, coords = { {0, 0} }, symbol = { "_" },
tooltiptxt = "", },
dtl3 = { text = "塞安妮苟萨", colour = AM_RED, coords = { {0, 0} }, symbol = { "1" },
tooltiptxt = "", },
dtl4 = { text = "谢沃兹", colour = AM_RED, coords = { {0, 0} }, symbol = { "2" },
tooltiptxt = "", },
dtl5 = { text = "摩拉格", colour = AM_RED, coords = { {0, 0} }, symbol = { "3" },
tooltiptxt = "", },
dtl6 = { text = "埃雷克姆", colour = AM_RED, coords = { {0, 0} }, symbol = { "4" },
tooltiptxt = "", },
dtl7 = { text = "湮灭者祖拉玛特", colour = AM_RED, coords = { {0, 0} }, symbol = { "5" },
tooltiptxt = "", },
dtl8 = { text = "拉文索尔", colour = AM_RED, coords = { {0, 0} }, symbol = { "6" },
tooltiptxt = "", },
dtl9 = { text = "艾库隆", colour = AM_RED, coords = { {0, 0} }, symbol = { "7" },
tooltiptxt = "", },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45.4, 93.9} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, toWorldMap = "Dalaran", },
dtl2 = { text = "Lieutenant Sinclari", colour = AM_GREEN, coords = { {45.4, 74.9} }, symbol = { "1" },
tooltiptxt = "", leaveGap = 1, },
dtl3 = { text = "艾库隆", colour = AM_RED, coords = { {71.1, 24.3} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", },
dtl4 = { text = "谢沃兹", colour = AM_RED, coords = { {19.9, 26.5} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12, Lower", },
dtl5 = { text = "湮灭者祖拉玛特", colour = AM_RED, coords = { {19.9, 26.5} }, symbol = { " " },
tooltiptxt = "", special = "(Random) 6/12, Upper", },
dtl6 = { text = "摩拉格", colour = AM_RED, coords = { {82.6, 44.9} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", },
dtl7 = { text = "埃雷克姆", colour = AM_RED, coords = { {15.6, 54} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", },
dtl8 = { text = "拉文索尔", colour = AM_RED, coords = { {70.1, 67.4} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", leaveGap = 1, },
dtl9 = { text = "塞安妮苟萨", colour = AM_RED, coords = { {70.1, 67.4} }, symbol = { "18" },
tooltiptxt = "", special = "第18波", },
},
 
{ name = "永恒之眼", -- The Eye of Eternity -- probably not worth including
2626,6 → 2732,7
displayname = "永恒之眼",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\",
location = "北风苔原",
levels = "80",
2633,7 → 2740,7
prereq = "Key drops from Saphiron (Naxxramus)",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {50, 50} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "BoreanTundra", },
dtl2 = { text = "玛里苟斯", colour = AM_RED, coords = { {41.406, 27.93} }, symbol = { "1" },
tooltiptxt = "", lootid = "Malygos", },
},
2653,11 → 2760,13
tooltiptxt = "", },
},
 
{ name = "净化斯坦索姆", -- Oldstratholme
{ name = "时光之穴 - 净化斯坦索姆", -- Oldstratholme
type = AM_TYP_INSTANCE,
displayname = "净化斯坦索姆",
displayname = "时光之穴 - 净化斯坦索姆",
displayshort = "CoT4",
continent = 1,
toMap = "时光之穴"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Oldstrat", -- Oldstratholme
location = "时光之穴",
levels = "",
2665,7 → 2774,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {91.85, 97.81} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "时光之穴"..AM_EXTERIOR, leaveGap = 1, },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "时光之穴"..AM_EXTERIOR, leaveGap = 1, },
dtl2 = { text = "Chromie", colour = AM_GREEN, coords = { {98.95, 94.12} }, symbol = { "A" },
tooltiptxt = "Quest Giver:\n Dispelling Illusions", },
dtl3 = { text = AM_LEADSTO, colour = AM_BLUE, coords = { {78.01, 77.53}, {51.06, 98.55} }, symbol = { "P", },
AlphaMapBeta/AlphaMap_Instances/localisation.en.lua
1,4 → 1,4
--------------------------------------------------------------------------
--------------------------------------------------------------------------
-- localization.lua
--------------------------------------------------------------------------
 
15,15 → 15,15
displayshort = "BFD",
continent = 1,
toMap = "Blackfathom Deeps"..AM_EXTERIOR,
toWorldMap = "Ashenvale",
toWorldMap = "Ashenvale",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackfathomDeeps",
location = "Ashenvale (14, 14)",
levels = "20-35",
players = "5/10",
players = "5",
prereq = "",
general = "Some underwater sections",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {33, 10} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Blackfathom Deeps"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Ashenvale", toMap = "Blackfathom Deeps"..AM_EXTERIOR },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {50, 68} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Ghamoo-ra", colour = AM_RED, coords = { {23.5, 42} }, symbol = { "1" },
60,7 → 60,7
displayshort = "BRD",
continent = 2,
toMap = "Blackrock Mountain"..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackrockDepths",
location = "Blackrock Mountain",
levels = "48-60",
68,7 → 68,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {21, 83} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Blackrock Mountain"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Blackrock Mountain"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Lord Roccor", colour = AM_RED, coords = { {33, 80} }, symbol = { "1" },
tooltiptxt = "Lvl51 Elite Elemental", lootid = "BRDLordRoccor" },
dtl3 = { text = "High Interrogator Gerstahn", colour = AM_RED, coords = { {38, 95} }, symbol = { "2" },
135,7 → 135,7
displayshort = "LBRS",
continent = 2,
toMap = "Blackrock Mountain"..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\LBRS", -- LBRS
location = "Blackrock Mountain",
levels = "52-61",
143,7 → 143,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {9, 10} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Blackrock Mountain"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Blackrock Mountain"..AM_EXTERIOR },
dtl2 = { text = "Blacrock Spire (Upper)", colour = AM_BLUE, coords = { {22, 4} }, symbol = { "U" },
tooltiptxt = "", toMap = "Blackrock Spire (Upper)" },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {45.2, 29}, {73, 46} }, symbol = { "x1" },
214,7 → 214,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {3, 80.7} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Blackrock Mountain"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Blackrock Mountain"..AM_EXTERIOR },
dtl2 = { text = "Blackrock Spire (Lower)", colour = AM_BLUE, coords = { {18.2, 86.6} }, symbol = { "L" },
tooltiptxt = "", toMap = "Blackrock Spire", leaveGap = 1 },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {11.9, 58.4}, {8.65, 25} }, symbol = { "x1" },
265,7 → 265,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {65, 72} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Blackrock Spire (Upper)", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Blackrock Spire (Upper)", leaveGap = 1 },
dtl2 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {32.8, 78}, {61, 48} }, symbol = { "x1" },
tooltiptxt = "" },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {40, 96}, {68, 65} }, symbol = { "x2" },
321,7 → 321,7
displayshort = "DM",
continent = 1,
toMap = "Dire Maul"..AM_EXTERIOR,
toWorldMap = "Feralas",
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMEast", --DMEast
location = "Feralas (59, 44)",
levels = "54-61",
329,9 → 329,9
prereq = "",
general = "",
dtl1 = { text = "Entrance : Broken Commons", colour = AM_GREEN, coords = { {6, 58} }, symbol = { "X1" },
tooltiptxt = "", toMap = "Dire Maul"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Dire Maul"..AM_EXTERIOR },
dtl2 = { text = "Entrance : Eldereth Row", colour = AM_GREEN, coords = { {12, 92} }, symbol = { "X2" },
tooltiptxt = "", toMap = "Dire Maul"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Dire Maul"..AM_EXTERIOR },
dtl3 = { text = "Entrance : Pavillion", colour = AM_GREEN, coords = { {98, 64} }, symbol = { "X3" },
tooltiptxt = "" },
dtl4 = { text = AM_INSTANCE_EXITS, colour = AM_RED, coords = { {8, 40} }, symbol = { AM_EXIT_SYMBOL },
378,7 → 378,7
prereq = "Requires Crescent Key from Pusillin Chase in DM East",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {74, 74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Dire Maul"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Dire Maul"..AM_EXTERIOR },
dtl2 = { text = "Dire Maul(West)", colour = AM_GREEN, coords = { {9, 98} }, symbol = { "W" },
tooltiptxt = "", toMap = "Dire Maul West" },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {49.2, 59.4} }, symbol = { AM_CHEST_SYMBOL },
419,7 → 419,7
prereq = "Requires Crescent Key from Pusillin Chase in DM East",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {97, 78} }, symbol = { "X1" },
tooltiptxt = "", toMap = "Dire Maul"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Dire Maul"..AM_EXTERIOR },
dtl2 = { text = "Dire Maul (North)", colour = AM_GREEN, coords = { {66, 9} }, symbol = { "N" },
tooltiptxt = "", toMap = "Dire Maul North", leaveGap = 1 },
dtl3 = { text = "Stairs", colour = AM_BLUE, coords = { {49.2, 25}, {52, 60} }, symbol = { AM_STAIRS_SYMBOL },
455,7 → 455,7
displayname = "Gnomeregan",
continent = 2,
toMap = "Gnomeregan"..AM_EXTERIOR,
toWorldMap = "DunMorogh",
toWorldMap = "DunMorogh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Gnomeregan",
location = "Dun Morogh (25, 41)",
levels = "26-33",
463,9 → 463,9
prereq = "",
general = "Horde access via Teleporter in Booty Bay.\nInitial Quest from Orgrimmar Engineer.",
dtl1 = { text = "Front Entrance (Clockwerk Run)", colour = AM_GREEN, coords = { {70.5, 16} }, symbol = { "X1" },
tooltiptxt = "", toMap = "Gnomeregan"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Gnomeregan"..AM_EXTERIOR },
dtl2 = { text = "Rear Entrance (Workshop)", colour = AM_GREEN, coords = { {87, 59} }, symbol = { "X2" },
tooltiptxt = "Workshop Key Required", toMap = "Gnomeregan"..AM_EXTERIOR },
tooltiptxt = "Workshop Key Required", toWorldMap = "Feralas", toMap = "Gnomeregan"..AM_EXTERIOR },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {75, 38}, {79, 56} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl4 = { text = "Viscous Fallout", colour = AM_RED, coords = { {71.5, 33.5} }, symbol = { "1" },
499,7 → 499,7
displayname = "Maraudon",
continent = 1,
toMap = "Maraudon"..AM_EXTERIOR,
toWorldMap = "Desolace",
toWorldMap = "Desolace",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Maraudon",
location = "Desolace (29, 62)",
levels = "40-58",
507,9 → 507,9
prereq = "",
general = "",
dtl1 = { text = "Entrance (Orange)", colour = AM_ORANGE, coords = { {71, 12} }, symbol = { "X1" },
tooltiptxt = "", toMap = "Maraudon"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Desolace", toMap = "Maraudon"..AM_EXTERIOR },
dtl2 = { text = "Entrance (Purple)", colour = AM_PURPLE, coords = { {85, 31} }, symbol = { "X2" },
tooltiptxt = "", toMap = "Maraudon"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Desolace", toMap = "Maraudon"..AM_EXTERIOR },
dtl3 = { text = "Entrance (Portal)", colour = AM_GREEN, coords = { {36, 55} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1 },
dtl4 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {64, 44}, {39, 31} }, symbol = { AM_CHEST_SYMBOL },
545,8 → 545,8
displayname = "Molten Core",
displayshort = "MC",
continent = 2,
toMap = "Blackrock Depths",
toWorldMap = "BurningSteppes",
toMap = "Blackrock Depths",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MoltenCore",
location = "Blackrock Depths",
levels = "60+",
554,7 → 554,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {3, 20} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Blackrock Depths", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Blackrock Depths", leaveGap = 1 },
dtl2 = { text = "Lucifron", colour = AM_RED, coords = { {62, 35} }, symbol = { "1" },
tooltiptxt = "Boss Humanoid", lootid = "MCLucifron" },
dtl3 = { text = "Magmadar", colour = AM_RED, coords = { {70, 16} }, symbol = { "2" },
585,7 → 585,7
type = AM_TYP_INSTANCE,
displayname = "Naxxramas",
continent = 4,
toWorldMap = "Dragonblight",
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Naxxramas",
location = "Dragonblight",
levels = "80",
650,7 → 650,7
type = AM_TYP_INSTANCE,
displayname = "Onyxia's Lair",
continent = 1,
toWorldMap = "Dustwallow",
toWorldMap = "Dustwallow",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\OnyxiasLair",
location = "Dustwallow Marsh (52, 76)",
levels = "60+",
672,7 → 672,7
displayname = "Ragefire Chasm",
displayshort = "RFC",
continent = 1,
toWorldMap = "Ogrimmar",
toWorldMap = "Ogrimmar",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RagefireChasm", -- RagefireChasm
location = "Orgrimmar",
levels = "13-22",
695,7 → 695,7
displayname = "Razorfen Downs",
displayshort = "RFD",
continent = 1,
toWorldMap = "Barrens",
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RazorfenDowns",
location = "Southern Barrens (48, 88)",
levels = "33-47",
729,7 → 729,7
displayname = "Razorfen Kraul",
displayshort = "RFK",
continent = 1,
toWorldMap = "Barrens",
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RazorfenKraul",
location = "Southern Barrens (42, 86)",
levels = "24-40",
767,7 → 767,7
displayname = "Ruins of Ahn'Qiraj",
displayshort = "AQ20",
continent = 1,
toWorldMap = "Silithus",
toWorldMap = "Silithus",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RuinsofAhnQiraj", -- RuinsofAhnQiraj
location = "Silithus (29, 96)",
levels = "60+",
818,7 → 818,7
displayshort = "SM",
continent = 2,
toMap = "Scarlet Monastery"..AM_EXTERIOR,
toWorldMap = "Tirisfal",
toWorldMap = "Tirisfal",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ScarletMonastery",
location = "Tirisfal Glades (83.6, 34)",
levels = "29-45",
826,7 → 826,7
prereq = "",
general = "",
dtl1 = { text = "Graveyard Entrance", colour = AM_GREEN, coords = { {61, 97} }, symbol = { "G" },
tooltiptxt = "", toMap = "Scarlet Monastery"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Tirisfal", toMap = "Scarlet Monastery"..AM_EXTERIOR },
dtl2 = { text = "Ironspine", colour = AM_RED, coords = { {21, 88} }, symbol = { "1" },
tooltiptxt = "Lvl33 Elite Undead\nGraveyard", special = AM_RARE, lootid = "SMIronspine" },
dtl3 = { text = "Azshir the Sleepless", colour = AM_RED, coords = { {5, 88} }, symbol = { "2" },
864,7 → 864,7
displayname = "Temple of Ahn'Qiraj",
displayshort = "AQ40",
continent = 1,
toWorldMap = "Silithus",
toWorldMap = "Silithus",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TempleofAhnQiraj", -- TempleofAhnQiraj
location = "Silithus (29, 96)",
levels = "60+",
912,7 → 912,7
displayname = "The Deadmines",
continent = 2,
toMap = "The Deadmines"..AM_EXTERIOR,
toWorldMap = "Westfall",
toWorldMap = "Westfall",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheDeadmines",
location = "Westfall (42, 72)",
levels = "16-26",
920,9 → 920,9
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {12, 23} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "The Deadmines"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Westfall", toMap = "The Deadmines"..AM_EXTERIOR },
dtl2 = { text = AM_INSTANCE_EXITS, colour = AM_RED, coords = { {99, 42} }, symbol = { AM_EXIT_SYMBOL },
tooltiptxt = "", toWorldMap = "Westfall", },
tooltiptxt = "", toWorldMap = "Westfall", toWorldMap = "Westfall", },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {80, 40} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl4 = { text = "Rhahk'Zor", colour = AM_RED, coords = { {21, 58} }, symbol = { "1" },
951,7 → 951,7
type = AM_TYP_INSTANCE,
displayname = "The Stockade",
continent = 2,
toWorldMap = "Stormwind",
toWorldMap = "Stormwind",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheStockade",
location = "Stormwind City",
levels = "22-30",
982,7 → 982,7
displayshort = "ST",
continent = 2,
toMap = "The Temple of Atal'Hakkar"..AM_EXTERIOR,
toWorldMap = "SwampOfSorrows",
toWorldMap = "SwampOfSorrows",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSunkenTemple",
location = "Swamp of Sorrows (70, 53)",
levels = "44-60",
990,7 → 990,7
prereq = "",
general = "Also called Temple of Atal'Hakkar",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {62, 7} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "The Temple of Atal'Hakkar"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "SwampOfSorrows", toMap = "The Temple of Atal'Hakkar"..AM_EXTERIOR },
dtl2 = { text = "Stairs at Entrance to Lower", colour = AM_GREEN, coords = { {54, 11.3}, {13.9, 47} }, symbol = { "SL" },
tooltiptxt = "" },
dtl3 = { text = "Stairs at Entrance to Mid", colour = AM_GREEN, coords = { {69, 11.3} }, symbol = { "SM" },
1032,7 → 1032,7
displayname = "Uldaman",
continent = 2,
toMap = "Uldaman"..AM_EXTERIOR,
toWorldMap = "Badlands",
toWorldMap = "Badlands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Uldaman",
location = "The Badlands (44, 12)",
levels = "35-52",
1040,9 → 1040,9
prereq = "",
general = "",
dtl1 = { text = "Front Entrance", colour = AM_GREEN, coords = { {89, 73.1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "Click to open Uldaman Exterior Map", toMap = "Uldaman"..AM_EXTERIOR },
tooltiptxt = "Click to open Uldaman Exterior Map", toWorldMap = "Badlands", toMap = "Uldaman"..AM_EXTERIOR },
dtl2 = { text = "Rear Entrance", colour = AM_GREEN, coords = { {21, 71} }, symbol = { "XR" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", leaveGap = 1, toWorldMap = "Badlands", toMap = "Uldaman"..AM_EXTERIOR },
dtl3 = { text = "Baelog", colour = AM_RED, coords = { {73, 93} }, symbol = { "1" },
tooltiptxt = "Lvl41 Elite" },
dtl4 = { text = "Remains of a Paladin", colour = AM_ORANGE, coords = { {62.8, 63.2} }, symbol = { "2" },
1077,7 → 1077,7
displayshort = "WC",
continent = 1,
toMap = "Wailing Caverns"..AM_EXTERIOR,
toWorldMap = "Barrens",
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\WailingCaverns",
location = "The Barrens (46, 36)",
levels = "15-28",
1085,7 → 1085,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {44, 58} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Wailing Caverns"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Barrens", toMap = "Wailing Caverns"..AM_EXTERIOR },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {62, 47}, {94, 49} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Disciple of Naralex", colour = AM_BLUE, coords = { {45, 53} }, symbol = { "1" },
1119,7 → 1119,7
displayname = "Zul'Farrak",
displayshort = "ZF",
continent = 1,
toWorldMap = "Tanaris",
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulFarrak",
location = "Tanaris (37, 15)",
levels = "43-54",
1165,7 → 1165,7
displayname = "Zul'Gurub",
displayshort = "ZG",
continent = 2,
toWorldMap = "Stranglethorn",
toWorldMap = "Stranglethorn",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulGurub",
location = "Stranglethorn Vale (54, 17)",
levels = "60+",
1216,7 → 1216,7
type = AM_TYP_INSTANCE,
displayname = "Scholomance",
continent = 2,
toWorldMap = "WesternPlaguelands",
toWorldMap = "WesternPlaguelands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Scholomance", -- Scholomance*
location = "Western Plaguelands (69, 73)",
levels = "56-61",
1281,7 → 1281,7
type = AM_TYP_INSTANCE,
displayname = "Stratholme",
continent = 2,
toWorldMap = "EasternPlaguelands",
toWorldMap = "EasternPlaguelands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Stratholme",
location = "Eastern Plaguelands (30, 12)",
levels = "56-61",
1351,7 → 1351,7
displayname = "Shadowfang Keep",
displayshort = "SFK",
continent = 2,
toWorldMap = "Silverpine",
toWorldMap = "Silverpine",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ShadowfangKeep",
location = "Silverpine Forest (45, 67)",
levels = "18-32",
1401,7 → 1401,7
displayname = "HC: Ramparts",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCRampart", -- HellfireRampart
location = "Hellfire Peninsula",
levels = "60-62",
1513,7 → 1513,7
displayshort = "SP",
continent = 3,
toMap = "Coilfang Reservoir"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSlavePens", -- TheSlavePens
location = "Zangarmarsh",
levels = "62-64",
1521,7 → 1521,7
prereq = "Key: Reservoir Key (Heroic)",
general = "Coilfang Reservoir\nRep: Cenarion Expedition",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {23.24, 21.29} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Coilfang Reservoir"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "Coilfang Reservoir"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Mennu the Betrayer", colour = AM_RED, coords = { {48.83, 31.84} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRSlaveMennu" },
dtl3 = { text = "Weeder Greenthumb", colour = AM_RED, coords = { {48.83, 71.29} }, symbol = { "2" },
1550,7 → 1550,7
prereq = "Key: Reservoir Key (Heroic)",
general = "Coilfang Reservoir\nRep: Cenarion Expedition",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {120, 346} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Coilfang Reservoir"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "Coilfang Reservoir"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Hungarfen", colour = AM_RED, coords = { {71.09, 83.79} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRUnderHungarfen" },
dtl3 = { text = "The Underspore", colour = AM_RED, coords = { {71.09, 83.79} }, symbol = { " " },
1581,7 → 1581,7
prereq = "Key: Reservoir Key (Heroic)",
general = "Coilfang Reservoir\nRep: Cenarion Expedition",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {1.56, 35.74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Coilfang Reservoir"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "Coilfang Reservoir"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Hydromancer Thespia", colour = AM_RED, coords = { {54.3, 17.19} }, symbol = { "1" },
tooltiptxt = "Elite Lvl 72", lootid = "CFRSteamThespia" },
dtl3 = { text = "Main Chamber Access Panel", colour = AM_RED, coords = { {54.3, 17.19} }, symbol = { " " },
1614,7 → 1614,7
prereq = "",
general = "Coilfang Reservoir\nRequires Attunement\nRep: Cenarion Expedition",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {1.56, 67.19} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Coilfang Reservoir"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "Coilfang Reservoir"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Hydross the Unstable", colour = AM_RED, coords = { {37.89, 75} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRSerpentHydross" },
dtl3 = { text = "The Lurker Below", colour = AM_RED, coords = { {40.82, 54.1} }, symbol = { "2" },
1639,7 → 1639,7
displayshort = "MT",
continent = 3,
toMap = "Auchindoun"..AM_EXTERIOR,
toWorldMap = "TerokkarForest",
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ManaTombs", -- ManaTombs
location = "Terokkar Forest",
levels = "64-66",
1647,7 → 1647,7
prereq = "Key: The Eye of Haramad (Exalted, Yor)\nKey: Auchenai Key (Heroic)",
general = "Auchindoun\nRep: The Consortium",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18, 4.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Pandemonius", colour = AM_RED, coords = { {46, 30} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchManaPandemonius" },
dtl3 = { text = "Shadow Lord Xiraxis", colour = AM_RED, coords = { {46, 30} }, symbol = { " " },
1682,7 → 1682,7
prereq = "Key: Auchenai Key (Heroic)",
general = "Auchindoun\nRep: Lower City",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {22, 79.1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Shirrak the Dead Watcher", colour = AM_RED, coords = { {44, 70} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchCryptsShirrak" },
dtl3 = { text = "Exarch Maladaar", colour = AM_RED, coords = { {88, 49} }, symbol = { "2" },
1709,7 → 1709,7
prereq = "Key: Essence-Infused Moonstone (Anzu)\nKey: Auchenai Key (Heroic)",
general = "Auchindoun\nRep: Lower City",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {98, 46} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Darkweaver Syth", colour = AM_RED, coords = { {47.3, 64} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchSethekkDarkweaver" },
dtl3 = { text = "Lakka", colour = AM_RED, coords = { {47.3, 64} }, symbol = { " " },
1738,7 → 1738,7
prereq = "Key: Shadow Labyrinth Key\nKey: Auchenai Key (Heroic)",
general = "Auchindoun\nRep: Lower City",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {6, 8.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Spy To'gun", colour = AM_RED, coords = { {14, 44} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "Ambassador Hellmaw", colour = AM_RED, coords = { {14, 44} }, symbol = { "2" },
1762,7 → 1762,7
displayname = "Gruul's Lair",
displayshort = "GL",
continent = 3,
toWorldMap = "BladesEdgeMountains",
toWorldMap = "BladesEdgeMountains",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\GruulsLair", -- GruulsLair
location = "Blade's Edge Mountain",
levels = "70+",
1790,7 → 1790,7
displayname = "Black Temple",
displayshort = "BT",
continent = 3,
toWorldMap = "ShadowmoonValley",
toWorldMap = "ShadowmoonValley",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackTemple", -- BlackTemple
location = "Shadowmoon Valley",
levels = "70",
1864,7 → 1864,7
displayname = "TK: The Mechanar",
displayshort = "Mech",
continent = 3,
toWorldMap = "Netherstorm",
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Mechanar", -- TheMechanar
location = "Netherstorm",
levels = "69-72",
1997,7 → 1997,7
displayshort = "CoT1",
continent = 1,
toMap = "Caverns of Time"..AM_EXTERIOR,
toWorldMap = "Tanaris",
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\OldHilsbrad", -- OldHilsbrad
location = "Caverns of Time",
levels = "66-68",
2005,7 → 2005,7
prereq = "Attunement Required\nKey: Key of Time (Heroic)",
general = "Tanaris\nEvent: Escape from Durnholde Keep\nRep: Keepers of Time",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {13, 47} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Caverns of Time"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toMap = "Caverns of Time"..AM_EXTERIOR, toWorldMap = "Tanaris", leaveGap = 1 },
dtl2 = { text = "Erozion", colour = AM_GREEN, coords = { {13, 47} }, symbol = { " " },
tooltiptxt = "" },
dtl3 = { text = "Brazen", colour = AM_GREEN, coords = { {13, 47} }, symbol = { " " },
2050,7 → 2050,7
prereq = "Attunement Required\nKey: Key of Time (Heroic)",
general = "Tanaris\nEvent: Opening of the Dark Portal\nRep: Keepers of Time",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45.4, 22} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", special = "Sa'at", toMap = "Caverns of Time"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", special = "Sa'at", toMap = "Caverns of Time"..AM_EXTERIOR, toWorldMap = "Tanaris", leaveGap = 1 },
dtl2 = { text = "Spawn Points", colour = AM_RED, coords = { {58, 70}, {58.5, 61.5}, {41, 60.5}, {48, 52.5} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Chrono Lord Deja", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
2069,7 → 2069,7
displayshort = "CoT3",
continent = 1,
toMap = "Caverns of Time"..AM_EXTERIOR,
toWorldMap = "Tanaris",
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MountHyjal", -- Battle for Mount Hyjal
location = "Caverns of Time",
levels = "70+",
2077,7 → 2077,7
prereq = "Attunement Required\n",
general = "Tanaris\nEvent: The Battle for Mount Hyjal\nRep: The Scale of the Sands",
dtl1 = { text = "Alliance Base", colour = AM_GREEN, coords = { {18.36, 48.83} }, symbol = { "A" },
tooltiptxt = "", toMap = "Caverns of Time"..AM_EXTERIOR, special = "(Lady Jaina Proudmoore)" },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "Caverns of Time"..AM_EXTERIOR, special = "(Lady Jaina Proudmoore)" },
dtl2 = { text = "Horde Base", colour = AM_GREEN, coords = { {57.23, 35.74} }, symbol = { "B" },
tooltiptxt = "", special = "(Thrall)" },
dtl3 = { text = "Night Elf Base", colour = AM_GREEN, coords = { {75.39, 44.34} }, symbol = { "C" },
2091,11 → 2091,11
dtl7 = { text = "Azgalor", colour = AM_RED, coords = { {58.98, 38.67} }, symbol = { "4" },
tooltiptxt = "", lootid = "MountHyjalAzgalor" },
dtl8 = { text = "Archimonde", colour = AM_RED, coords = { {83.01, 31.25} }, symbol = { "5" },
tooltiptxt = "", lootid = "MountHyjalArchimonde" },
-- dtl9 = { text = "Indormi", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
-- tooltiptxt = ""},
-- dtl10 = { text = "Tydormu", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
-- tooltiptxt = "" },
tooltiptxt = "", lootid = "MountHyjalArchimonde", leaveGap = 1, },
dtl9 = { text = "Indormi", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = ""},
dtl10 = { text = "Tydormu", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "" },
},
 
{ name = "Karazhan", -- Karazhan
2112,9 → 2112,9
prereq = "Attunement Required\nKey: The Master's Key\nKey: Blackened Urn (Nightbane)",
general = "Rep: The Violet Eye",
dtl1 = { text = "Front Entrance", colour = AM_GREEN, coords = { {29.88, 31.45} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Karazhan"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toMap = "Karazhan"..AM_EXTERIOR, toWorldMap = "DeadwindPass", leaveGap = 1 },
dtl2 = { text = "Back Entrance", colour = AM_GREEN, coords = { {28.13, 20.31} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Karazhan"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toMap = "Karazhan"..AM_EXTERIOR, toWorldMap = "DeadwindPass", leaveGap = 1 },
dtl3 = { text = "Hastings", colour = AM_BLUE, coords = { {27.93, 25.39} }, symbol = { "a" },
tooltiptxt = "", special = "The Caretaker" },
dtl4 = { text = "Berthold", colour = AM_BLUE, coords = { {23.05, 25.98} }, symbol = { "b" },
2220,7 → 2220,7
displayname = "Zul'Aman",
displayshort = "ZA",
continent = 2,
toWorldMap = "Ghostlands",
toWorldMap = "Ghostlands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulAman", -- Zul'Aman
location = "Ghostlands",
levels = "70",
2248,7 → 2248,7
displayname = "Magister's Terrace",
displayshort = "MagT",
continent = 2,
toWorldMap = "Sunwell",
toWorldMap = "Sunwell",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MagistersTerrace", -- Magister's Terrace
location = "Isle of Quel'Danas",
levels = "70",
2326,7 → 2326,7
displayname = "Halls of Stone",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\StoneHalls",
location = "Storm Peaks",
levels = "80",
2352,7 → 2352,7
displayname = "Utgarde Pinnacle",
displayshort = "",
continent = 4,
toWorldMap = "HowlingFjord",
toWorldMap = "HowlingFjord",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardePinnacle",
location = "Howling Fjorde",
levels = "80",
2380,7 → 2380,7
displayname = "The Nexus",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Nexus",
location = "Borean Tundra",
levels = "71-73",
2406,7 → 2406,7
displayname = "Ahn'Kahet: The Old Kingdom",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AhnkahetTOK",
location = "Dragonblight",
levels = "73-75",
2436,7 → 2436,7
displayname = "The Obsidian Sanctum",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\CoAB",
location = "Wyrmrest Temple, Dragonblight",
levels = "Raid",
2460,7 → 2460,7
displayname = "Drak'Tharon Keep Lower",
displayshort = "",
continent = 4,
toWorldMap = "GrizzlyHills",
toWorldMap = "GrizzlyHills",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DrakTharonLower",
location = "Grizzly Hills",
levels = "74-76",
2509,7 → 2509,7
displayname = "Gun'Drak",
displayshort = "",
continent = 4,
toWorldMap = "ZulDrak",
toWorldMap = "ZulDrak",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\GunDrak",
location = "Zul'Drak",
levels = "74-77",
2533,7 → 2533,7
displayname = "The Oculus",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Oculus",
location = "Borean Tundra",
levels = "80",
2565,7 → 2565,7
displayname = "Halls of Lightning",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HoL",
location = "Storm Peaks",
levels = "77-79",
2589,7 → 2589,7
displayname = "Vault of Archavon",
displayshort = "",
continent = 4,
toWorldMap = "LakeWintergrasp",
toWorldMap = "LakeWintergrasp",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Archavon",
location = "Wintergrasp",
levels = "77-79",
2607,7 → 2607,7
displayname = "Utgarde Keep",
displayshort = "",
continent = 4,
toWorldMap = "HowlingFjord",
toWorldMap = "HowlingFjord",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardeKeep",
location = "Howling Fjorde",
levels = "70-72",
2650,7 → 2650,7
displayname = "Azjol-Nerub",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AzjolNerub",
location = "Dragonblight",
levels = "72-74",
2691,7 → 2691,7
displayname = "Violet Hold",
displayshort = "",
continent = 4,
toWorldMap = "Dalaran",
toWorldMap = "Dalaran",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\VH",
location = "Dalaran",
levels = "77-79",
2714,7 → 2714,7
tooltiptxt = "", special = "(Random) 6/12", },
dtl8 = { text = "Lavanthor", colour = AM_RED, coords = { {70.1, 67.4} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", leaveGap = 1, },
dtl9 = { text = "Cyanigosa", colour = AM_RED, coords = { {45.5, 46.8} }, symbol = { "18" },
dtl9 = { text = "Cyanigosa", colour = AM_RED, coords = { {70.1, 67.4} }, symbol = { "18" },
tooltiptxt = "", special = "18th Wave", },
},
 
2723,7 → 2723,7
displayname = "The Eye of Eternity",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\",
location = "Borean Tundra",
levels = "80",
2741,7 → 2741,7
displayname = "Ulduar",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\",
location = "Storm Peaks",
levels = "77-79",
2757,8 → 2757,8
displayname = "CoT: The Culling of Stratholme",
displayshort = "CoT4",
continent = 1,
toMap = "Caverns of Time"..AM_EXTERIOR,
toWorldMap = "Tanaris",
toMap = "Caverns of Time"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Oldstrat", -- Oldstratholme
location = "Caverns of Time",
levels = "80",
2766,7 → 2766,7
prereq = "",
general = "The Culling of Stratholme",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {91.85, 97.81} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Caverns of Time"..AM_EXTERIOR, leaveGap = 1, },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "Caverns of Time"..AM_EXTERIOR, leaveGap = 1, },
dtl2 = { text = "Chromie", colour = AM_GREEN, coords = { {98.95, 94.12} }, symbol = { "A" },
tooltiptxt = "Quest Giver:\n Dispelling Illusions", },
dtl3 = { text = "Leads to...", colour = AM_BLUE, coords = { {78.01, 77.53}, {51.06, 98.55} }, symbol = { "P", },
AlphaMapBeta/AlphaMap_Instances/localisation.fr.lua
50,14 → 50,16
displayname = "Profondeurs de Brassenoire",
displayshort = "BFD",
continent = 1,
toMap = "Profondeurs de Brassenoire"..AM_EXTERIOR,
toWorldMap = "Ashenvale",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackfathomDeeps",
location = "Orneval (14, 14)",
levels = "20-28",
levels = "20-35",
players = "5",
prereq = "",
general = "Some underwater sections",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {33, 10} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Profondeurs de Brassenoire"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Ashenvale", toMap = "Profondeurs de Brassenoire"..AM_EXTERIOR },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {50, 68} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Ghamoo-ra", colour = AM_RED, coords = { {23.5, 42} }, symbol = { "1" },
94,6 → 96,7
displayname = "Hache-Tripes - Enti\195\168re",
displayshort = "DM",
continent = 1,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DireMaul",
location = "Feralas (59, 44)",
levels = "56-60",
116,6 → 119,8
displayname = "Hache-Tripes (Est)",
displayshort = "DM",
continent = 1,
toMap = "Hache-Tripes"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMEast", --DMEast
location = "Feralas (59, 44)",
levels = "56-60",
123,9 → 128,9
prereq = "",
general = "",
dtl1 = { text = "Entr\195\169e", colour = AM_GREEN, coords = { {6, 58} }, symbol = { "X1" },
tooltiptxt = "", toMap = "Hache-Tripes"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Hache-Tripes"..AM_EXTERIOR },
dtl2 = { text = "Entr\195\169e", colour = AM_GREEN, coords = { {12, 92} }, symbol = { "X2" },
tooltiptxt = "", toMap = "Hache-Tripes"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Hache-Tripes"..AM_EXTERIOR },
dtl3 = { text = "Entr\195\169e", colour = AM_GREEN, coords = { {98, 64} }, symbol = { "X3" },
tooltiptxt = "" },
dtl4 = { text = AM_INSTANCE_EXITS, colour = AM_RED, coords = { {8, 40} }, symbol = { AM_EXIT_SYMBOL },
164,6 → 169,8
displayname = "Hache-Tripes (Nord)",
displayshort = "DM",
continent = 1,
toMap = "Hache-Tripes"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMNorth", -- DMNorth
location = "Feralas (59, 44)",
levels = "56-60",
171,7 → 178,7
prereq = "Requires Crescent Key from Pusillin Chase in DM East",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {74, 74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Hache-Tripes"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Hache-Tripes"..AM_EXTERIOR },
dtl2 = { text = "Hache-Tripes(Ouest)", colour = AM_GREEN, coords = { {9, 98} }, symbol = { "W" },
tooltiptxt = "", toMap = "Hache-Tripes Ouest" },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {49.2, 59.4} }, symbol = { AM_CHEST_SYMBOL },
204,6 → 211,8
displayname = "Hache-Tripes (Ouest)",
displayshort = "DM",
continent = 1,
toMap = "Hache-Tripes"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMWest", -- DMWest
location = "Feralas (59, 44)",
levels = "56-60",
211,7 → 220,7
prereq = "Requires Crescent Key from Pusillin Chase in DM East",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {97, 78} }, symbol = { "X1" },
tooltiptxt = "", toMap = "Hache-Tripes"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "Hache-Tripes"..AM_EXTERIOR },
dtl2 = { text = "Hache-Tripes (Nord)", colour = AM_GREEN, coords = { {66, 9} }, symbol = { "N" },
tooltiptxt = "", toMap = "Hache-Tripes Nord", leaveGap = 1 },
dtl3 = { text = "Escaliers", colour = AM_BLUE, coords = { {49.2, 25}, {52, 60} }, symbol = { AM_STAIRS_SYMBOL },
247,6 → 256,7
type = AM_TYP_INSTANCE,
displayname = "Maraudon",
continent = 1,
toWorldMap = "Desolace",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Maraudon",
location = "Desolace (29, 62)",
levels = "40-49",
254,9 → 264,9
prereq = "",
general = "",
dtl1 = { text = "Entr\195\169e (Orange)", colour = AM_ORANGE, coords = { {71, 12} }, symbol = { "X1" },
tooltiptxt = "", toMap = "Maraudon"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Desolace", toMap = "Maraudon"..AM_EXTERIOR },
dtl2 = { text = "Entr\195\169e (Pourpre)", colour = AM_PURPLE, coords = { {85, 31} }, symbol = { "X2" },
tooltiptxt = "", toMap = "Maraudon"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Desolace", toMap = "Maraudon"..AM_EXTERIOR },
dtl3 = { text = "Entr\195\169e (Portail)", colour = AM_GREEN, coords = { {36, 55} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1 },
dtl4 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {64, 44}, {39, 31} }, symbol = { AM_CHEST_SYMBOL },
292,6 → 302,7
type = AM_TYP_INSTANCE,
displayname = "Repaire d'Onyxia",
continent = 1,
toWorldMap = "Dustwallow",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\OnyxiasLair",
location = "Mar\195\169cage d\'Aprefange (52, 76)",
levels = "60+",
299,7 → 310,7
prereq = "Requires Drakefire Amulet\n(Complete quest in UBRS to kill General Drakkisath)",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {9, 12} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Dustwallow", },
dtl2 = { text = "Gardiens Onyxian", colour = AM_RED, coords = { {26, 41}, {29, 56}, {39, 68}, {50, 80} }, symbol = { "1" },
tooltiptxt = "Lvl62 Elite Draconien" },
dtl3 = { text = "Oeufs", colour = AM_RED, coords = { {45, 40}, {51, 54}, {84, 41}, {79, 54} }, symbol = { "2" },
314,13 → 325,14
displayname = "Gouffre de Ragefeu",
displayshort = "RFC",
continent = 1,
toWorldMap = "Orgrimmar",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RagefireChasm",
location = "Orgrimmar",
levels = "13-18",
players = "10",
general = "",
dtl1 = { text = "Entr\195\169e", colour = AM_GREEN, coords = { {72, 4} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Orgrimmar", leaveGap = 1 },
dtl2 = { text = "Maur Grimtotem", colour = AM_GOLD, coords = { {71, 53} }, symbol = { "1" },
tooltiptxt = "Satchel Quest" },
dtl3 = { text = "Taragaman l'Affam\195\169", colour = AM_RED, coords = { {34, 59} }, symbol = { "2" },
337,6 → 349,7
displayname = "Souilles de Tranchebauge",
displayshort = "RFD",
continent = 1,
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RazorfenDowns",
location = "Les Tarides (48, 88)",
levels = "38-43",
344,7 → 357,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {4, 23} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Barrens", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {77, 45} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Tuten'kash", colour = AM_RED, coords = { {52, 36} }, symbol = { "1" },
371,6 → 384,7
displayname = "Kraal de Tranchebauge",
displayshort = "RFK",
continent = 1,
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RazorfenKraul",
location = "Les Tarides (42, 86)",
levels = "23-31",
378,7 → 392,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {75, 71} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Barrens", leaveGap = 1 },
dtl2 = { text = "Roogug", colour = AM_RED, coords = { {73, 44} }, symbol = { "1" },
tooltiptxt = "Lvl28 Elite Humano\195\175de" },
dtl3 = { text = "Aggem Thorncurse", colour = AM_RED, coords = { {88, 48} }, symbol = { "2" },
409,6 → 423,7
displayname = "Ruines d'Ahn'Qiraj",
displayshort = "AQ20",
continent = 1,
toWorldMap = "Silithus",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RuinsofAhnQiraj", -- RuinsofAhnQiraj
location = "Silithus (29, 96)",
levels = "60+",
416,7 → 431,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {64, 2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Silithus", leaveGap = 1 },
dtl2 = { text = "Kurinnaxx", colour = AM_RED, coords = { {55, 29} }, symbol = { "1" },
tooltiptxt = "Boss & Elites", lootid = "AQ20Kurinnaxx" },
dtl3 = { text ="G\195\169n\195\169ral de division Andorov,\n&Quatre \195\169lites kaldorei", colour = AM_RED, coords = { {55, 29} }, symbol = { " " },
461,6 → 476,7
displayname = "Le temple d'Ahn'Qiraj",
displayshort = "AQ40",
continent = 1,
toWorldMap = "Silithus",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TempleofAhnQiraj", -- TempleofAhnQiraj
location = "Silithus (29, 96)",
levels = "60+",
468,7 → 484,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {16, 37} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Silithus", leaveGap = 1 },
dtl2 = { text = "Arygos\n& Caelestrasz\n& Merithra of the Dream", colour = AM_BLUE, coords = { {21, 56} }, symbol = { "A" },
tooltiptxt = "" },
dtl3 = { text = "Andorgos\n& Vethsera\n& Kandrostrasz", colour = AM_BLUE, coords = { {27, 43} }, symbol = { "B" },
511,6 → 527,8
displayname = "Cavernes des lamentations",
displayshort = "Lams",
continent = 1,
toMap = "Wailing Caverns"..AM_EXTERIOR,
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\WailingCaverns",
location = "Les Tarides (46, 36)",
levels = "16-24",
518,7 → 536,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {44, 58} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Wailing Caverns"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Barrens", toMap = "Wailing Caverns"..AM_EXTERIOR },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {62, 47}, {94, 49} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Disciple of Naralex", colour = AM_BLUE, coords = { {45, 53} }, symbol = { "1" },
553,6 → 571,7
displayname = "Zul'Farrak",
displayshort = "ZF",
continent = 1,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulFarrak",
location = "Tanaris (37, 15)",
levels = "43-47",
560,7 → 579,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {69, 89} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tanaris", leaveGap = 1 },
dtl2 = { text = "Zerillis", colour = AM_RED, coords = { {63, 47} }, symbol = { "1" },
tooltiptxt = "Lvl45 Elite Humano\195\175de", special = AM_RARE.." "..AM_WANDERS, lootid = "ZFZerillis" },
dtl3 = { text = "Sandarr Dunereaver", colour = AM_RED, coords = { {55, 59} }, symbol = { "2" },
599,6 → 618,8
displayname = "GdT: Contreforts de Hautebrande d'antan",
displayshort = "GdT1",
continent = 1,
toMap = "Grottes du Temps"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\OldHilsbrad", -- OldHilsbrad
location = "Les Grottes du Temps",
levels = "",
606,7 → 627,7
prereq = "Harmonisation requise\nObjet : Grottes du Temps (H\195\169roïque)",
general = "Tanaris\nEv\195\168nement : L'\195\169vasion du Fort-de-Durn\nR\195\169put : Gardiens du Temps",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {13, 47} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Grottes du Temps"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "Grottes du Temps"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Erozion", colour = AM_GREEN, coords = { {13, 47} }, symbol = { " " },
tooltiptxt = "" },
dtl3 = { text = "Airain", colour = AM_GREEN, coords = { {13, 47} }, symbol = { " " },
643,6 → 664,8
displayname = "GT: Noir Marécage",
displayshort = "GT2",
continent = 1,
toMap = "Grottes du Temps"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackMorass", -- The Black Morass
location = "Les Grottes du Temps",
levels = "",
650,7 → 673,7
prereq = "Harmonisation requise\nClé du Temps (Héroïque)",
general = "Tanaris\nEv\195\168nement : Ouverture de la Porte des T\195\169n\195\168bresz\nR\195\169put : Gardiens du Temps",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45.4, 22} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Grottes du Temps"..AM_EXTERIOR, special = "Sa'at", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "Grottes du Temps"..AM_EXTERIOR, special = "Sa'at", leaveGap = 1 },
dtl2 = { text = "Points d'apparition", colour = AM_RED, coords = { {58, 70}, {58.5, 61.5}, {41, 60.5}, {48, 52.5} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Chronoseigneur D\195\169j\195\160", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
669,6 → 692,8
displayname = "GT: La Bataille du mont Hyjal",
displayshort = "GT3",
continent = 1,
toMap = "Grottes du Temps"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MountHyjal", -- Battle for Mount Hyjal
location = "Les Grottes du Temps",
levels = "70",
689,12 → 714,12
tooltiptxt = "", lootid = "MountHyjalKazrogal" },
dtl7 = { text = "Azgalor", colour = AM_RED, coords = { {58.98, 38.67} }, symbol = { "4" },
tooltiptxt = "", lootid = "MountHyjalAzgalor" },
dtl8 = { text = "Archimonde", colour = AM_RED, coords = { {83.01, 31.25} }, symbol = { "5" },
tooltiptxt = "", lootid = "MountHyjalArchimonde" },
--dtl9 = { text = "Indormi", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
--tooltiptxt = "" },
--dtl10 = { text = "Tydormu", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
--tooltiptxt = "" },
dtl8 = { text = "Archimonde", colour = AM_RED, coords = { {83.01, 31.25} }, symbol = { "5" },
tooltiptxt = "", lootid = "MountHyjalArchimonde", leaveGap = 1, },
dtl9 = { text = "Indormi", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "" },
dtl10 = { text = "Tydormu", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "" },
},
 
 
707,6 → 732,8
displayname = "Profondeurs de Rochenoire",
displayshort = "BRD",
continent = 2,
toMap = "Mont Rochenoire"..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackrockDepths",
location = "Mont Rochenoire",
levels = "52-60",
714,7 → 741,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {21, 83} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Mont Rochenoire"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Mont Rochenoire"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Seigneur Roccor", colour = AM_RED, coords = { {33, 80} }, symbol = { "1" },
tooltiptxt = "Lvl51 Elite `", lootid = "BRDLordRoccor" },
dtl3 = { text = "Grand Interrogateur Gerstahn", colour = AM_RED, coords = { {38, 95} }, symbol = { "2" },
781,6 → 808,8
displayname = "Pic de Rochenoire (Inf\195\169rieur)",
displayshort = "LBRS",
continent = 2,
toMap = "Mont Rochenoire"..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\LBRS", -- LBRS
location = "Mont Rochenoire",
levels = "53-60",
788,7 → 817,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {9, 10} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Mont Rochenoire"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Mont Rochenoire"..AM_EXTERIOR },
dtl2 = { text = "Pic Rochenoire (Sup\195\169rieur)", colour = AM_BLUE, coords = { {22, 4} }, symbol = { "U" },
tooltiptxt = "", toMap = "Pic Rochenoire (Sup\195\169rieur)" },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {45.2, 29}, {73, 46} }, symbol = { "x1" },
849,6 → 878,8
displayname = "Pic Rochenoire (Supérieur)",
displayshort = "UBRS",
continent = 2,
toMap = "Mont Rochenoire"..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UBRS",
location = "Mont Rochenoire",
levels = "53-60",
856,7 → 887,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {3, 80.7} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Mont Rochenoire"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Mont Rochenoire"..AM_EXTERIOR },
dtl2 = { text = "Pic Rochenoire (Inf\195\169rieur)", colour = AM_BLUE, coords = { {18.2, 86.6} }, symbol = { "L" },
tooltiptxt = "", toMap = "Pic Rochenoire", leaveGap = 1 },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {11.9, 58.4}, {8.65, 25} }, symbol = { "x1" },
899,6 → 930,8
displayname = "Repaire de l'Aile noire",
displayshort = "BWL",
continent = 2,
toMap = "Pic Rochenoire (Sup\195\169rieur)",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackwingLair",
location = "Pic Rochenoire",
levels = "60+",
906,7 → 939,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {65, 72} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Pic Rochenoire (Sup\195\169rieur)", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Pic Rochenoire (Sup\195\169rieur)", leaveGap = 1 },
dtl2 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {32.8, 78}, {61, 48} }, symbol = { "x1" },
tooltiptxt = "" },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {40, 96}, {68, 65} }, symbol = { "x2" },
938,6 → 971,8
type = AM_TYP_INSTANCE,
displayname = "Gnomeregan",
continent = 2,
toMap = "Gnomeregan"..AM_EXTERIOR,
toWorldMap = "DunMorogh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Gnomeregan",
location = "Dun Morogh (25, 41)",
levels = "24-40",
945,9 → 980,9
prereq = "",
general = "Horde access via Teleporter in Booty Bay.\nInitial Quest from Orgrimmar Engineer.",
dtl1 = { text = "Front Entrance (Clockwerk Run)", colour = AM_GREEN, coords = { {70.5, 16} }, symbol = { "X1" },
tooltiptxt = "", toMap = "Gnomeregan"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "DunMorogh", toMap = "Gnomeregan"..AM_EXTERIOR },
dtl2 = { text = "Rear Entrance (Workshop)", colour = AM_GREEN, coords = { {87, 59} }, symbol = { "X2" },
tooltiptxt = "Workshop Key Required", toMap = "Gnomeregan"..AM_EXTERIOR },
tooltiptxt = "Workshop Key Required", toWorldMap = "DunMorogh", toMap = "Gnomeregan"..AM_EXTERIOR },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {75, 38}, {79, 56} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl4 = { text = "Retomb\195\169es Visqueuses", colour = AM_RED, coords = { {71.5, 33.5} }, symbol = { "1" },
982,6 → 1017,8
displayname = "C\197\147ur du Magma",
displayshort = "MC",
continent = 2,
toMap = "Profondeurs de Rochenoire",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MoltenCore", -- Molten Core
location = "Profondeurs de Rochenoire",
levels = "60+",
989,7 → 1026,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {3, 20} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Profondeurs de Rochenoire", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Profondeurs de Rochenoire", leaveGap = 1 },
dtl2 = { text = "Lucifron", colour = AM_RED, coords = { {62, 35} }, symbol = { "1" },
tooltiptxt = "Boss Humano\195\175de", lootid = "MCLucifron" },
dtl3 = { text = "Magmadar", colour = AM_RED, coords = { {70, 16} }, symbol = { "2" },
1021,6 → 1058,7
type = AM_TYP_INSTANCE,
displayname = "Naxxramas",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Naxxramas",
location = "Stratholme",
levels = "60+",
1076,7 → 1114,9
dtl24 = { text = "Kel'Thuzard", colour = AM_RED, coords = { {75, 79} }, symbol = { "2" },
tooltiptxt = "Repaire De Frostwyrm", lootid = "Naxx80KelThuzad", leaveGap = 2 },
dtl25 = { text = AM_MOB_LOOT, colour = AM_PURPLE, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "", lootid = "Naxx80Trash", leaveGap = 1 }
tooltiptxt = "", lootid = "Naxx80Trash", leaveGap = 1 },
dtl26 = { text = AM_INSTANCE_EXITS, colour = AM_BLUE, coords = { {1, 1} }, symbol = { "<-" },
tooltiptxt = "", toWorldMap = "Dragonblight", },
},
 
-- Scarlet Monastery
1085,6 → 1125,8
displayname = "Monastère Écarlate",
displayshort = "SM",
continent = 2,
toMap = "Monast\195\168re \195\169carlate"..AM_EXTERIOR,
toWorldMap = "Tirisfal",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ScarletMonastery",
location = "Clairi\195\168re de Tirisfal (83.6, 34)",
levels = "30-40",
1092,7 → 1134,7
prereq = "",
general = "",
dtl1 = { text = "Cimeti\195\168re - Entr\195\169e", colour = AM_GREEN, coords = { {61, 97} }, symbol = { "G" },
tooltiptxt = "", toMap = "Monast\195\168re \195\169carlate"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Tirisfal", toMap = "Monast\195\168re \195\169carlate"..AM_EXTERIOR },
dtl2 = { text = "Ironspine", colour = AM_RED, coords = { {21, 88} }, symbol = { "1" },
tooltiptxt = "Lvl33 Elite Mort-vivant\nCimeti\195\168re", special = AM_RARE, lootid = "SMIronspine" },
dtl3 = { text = "Azshir le Sans-sommeil", colour = AM_RED, coords = { {5, 88} }, symbol = { "2" },
1130,6 → 1172,8
type = AM_TYP_INSTANCE,
displayname = "Les Mortemines",
continent = 2,
toMap = "Les Mortemines"..AM_EXTERIOR,
toWorldMap = "Westfall",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheDeadmines",
location = "Marche de l'Ouest (42, 72)",
levels = "16-26",
1137,7 → 1181,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {12, 23} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Les Mortemines"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Westfall", toMap = "Les Mortemines"..AM_EXTERIOR, },
dtl2 = { text = AM_INSTANCE_EXITS, colour = AM_RED, coords = { {99, 42} }, symbol = { AM_EXIT_SYMBOL },
tooltiptxt = "" },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {80, 40} }, symbol = { AM_CHEST_SYMBOL },
1169,6 → 1213,7
type = AM_TYP_INSTANCE,
displayname = "La Prison",
continent = 2,
toWorldMap = "Stormwind",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheStockade",
location = "Hurlevent",
levels = "24-32",
1176,7 → 1221,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {50, 74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Stormwind", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {69, 60}, {75, 40}, {26, 57}, {31, 36}, {18, 29} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Targorr le Terrifiant", colour = AM_RED, coords = { {58, 63}, {41, 55}, {50, 37}, {27, 50} }, symbol = { "1" },
1199,6 → 1244,8
displayname = "Le Temple Englouti",
displayshort = "ST",
continent = 2,
toMap = "Le Temple Englouti"..AM_EXTERIOR,
toWorldMap = "SwampOfSorrows",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSunkenTemple",
location = "Marais des Chagrins (70, 53)",
levels = "45-60",
1206,7 → 1253,7
prereq = "",
general = "Le temple d'Atal'Hakkar",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {62, 7} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Le Temple Englouti"..AM_EXTERIOR },
tooltiptxt = "", toMap = "Le Temple Englouti"..AM_EXTERIOR, },
dtl2 = { text = "Escaliers \195\160 Niveau Plus bas", colour = AM_GREEN, coords = { {54, 11.3}, {13.9, 47} }, symbol = { "SL" },
tooltiptxt = "" },
dtl3 = { text = "Escaliers", colour = AM_GREEN, coords = { {69, 11.3} }, symbol = { "SM" },
1248,6 → 1295,8
type = AM_TYP_INSTANCE,
displayname = "Uldaman",
continent = 2,
toMap = "Uldaman"..AM_EXTERIOR,
toWorldMap = "Badlands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Uldaman",
location = "Terres ingrates (44, 12)",
levels = "35-50",
1255,7 → 1304,7
prereq = "",
general = "",
dtl1 = { text = "Avant-Entr\195\169e", colour = AM_GREEN, coords = { {89, 73.1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Uldaman"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Badlands", toMap = "Uldaman"..AM_EXTERIOR },
dtl2 = { text = "Arri\195\168re-Entr\195\169e", colour = AM_GREEN, coords = { {21, 71} }, symbol = { "XR" },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Baelog", colour = AM_RED, coords = { {73, 93} }, symbol = { "1" },
1292,6 → 1341,7
displayname = "Zul'Gurub",
displayshort = "ZG",
continent = 2,
toWorldMap = "Stranglethorn",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulGurub",
location = "Vall\195\169e de Strangleronce (54, 17)",
levels = "60+",
1299,7 → 1349,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {12, 50} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Stranglethorn", },
dtl2 = { text = "Eaux troubles et agit\195\169es", colour = AM_BLUE, coords = { {33, 41}, {47, 48}, {57, 47}, {60, 32}, {47, 30} }, symbol = { "W" },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Grande Pr\195\170tresse Jeklik", colour = AM_RED, coords = { {34, 78} }, symbol = { "1" },
1345,6 → 1395,7
type = AM_TYP_INSTANCE,
displayname = "Scholomance",
continent = 2,
toWorldMap = "WesternPlaguelands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Scholomance", -- Scholomance*
location = "Maleterres de l'Ouest (69, 73)",
levels = "56-60",
1352,7 → 1403,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {24, 30} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "WesternPlaguelands", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {28, 38} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "" },
dtl3 = { text = AM_INSTANCE_STAIRS, colour = AM_GREEN, coords = { {6.5, 22}, {62, 22} }, symbol = { "S1" },
1410,6 → 1461,7
type = AM_TYP_INSTANCE,
displayname = "Stratholme",
continent = 2,
toWorldMap = "EasternPlaguelands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Stratholme",
location = "Maleterres de l'Est (30, 12)",
levels = "55-60",
1417,9 → 1469,9
prereq = "",
general = "C\195\180t\195\169-Entr\195\169e \195\160 EP (47, 24)",
dtl1 = { text = "Avant-Entr\195\169e", colour = AM_GREEN, coords = { {50, 91} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "EasternPlaguelands", },
dtl2 = { text = "C\195\180t\195\169-Entr\195\169e", colour = AM_GREEN, coords = { {83, 72} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "EasternPlaguelands", leaveGap = 1 },
dtl3 = { text = "Boite aux lettres de Fras Siabi", colour = AM_ORANGE, coords = { {37, 86} }, symbol = { "P1" },
tooltiptxt = "" },
dtl4 = { text = "Boite aux lettres de la Place du Roi", colour = AM_ORANGE, coords = { {47, 74} }, symbol = { "P2" },
1480,6 → 1532,7
displayname = "Donjon d'Ombrecroc",
displayshort = "",
continent = 2,
toWorldMap = "Silverpine",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ShadowfangKeep",
location = "For\195\170t des Pins Argent\195\169s (45, 67)",
levels = "17-25",
1487,7 → 1540,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {75, 69} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Silverpine", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {57, 57}, {36, 55}, {29, 12} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "" },
dtl3 = { text = "Remparts", colour = AM_BLUE, coords = { {38, 71}, {54, 93} }, symbol = { "B1" },
1530,6 → 1583,8
displayname = "Karazahn",
displayshort = "Kara",
continent = 2,
toMap = "Karazhan"..AM_EXTERIOR,
toWorldMap = "DeadwindPass",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Karazahn", -- Karazahn
location = "Deadwind Pass",
levels = "70",
1537,9 → 1592,9
prereq = "Harmonisation requise\nObjet : La cl\195\169 du maître\nObjet : Urne noircie (Plaie-de-nuit)",
general = "R\195\169put : L'Œil pourpre",
dtl1 = { text = "Entr\195\169e principale", colour = AM_GREEN, coords = { {29.88, 31.45} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Karazhan"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "DeadwindPass", toMap = "Karazhan"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Entr\195\169e de derri\195\168re", colour = AM_GREEN, coords = { {28.13, 20.31} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Karazhan"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "DeadwindPass", toMap = "Karazhan"..AM_EXTERIOR, leaveGap = 1 },
dtl3 = { text = "Hastings", colour = AM_BLUE, coords = { {27.93, 25.39} }, symbol = { "a" },
tooltiptxt = "", special = "Le gardien" },
dtl4 = { text = "Berthold", colour = AM_BLUE, coords = { {23.05, 25.98} }, symbol = { "b" },
1644,6 → 1699,7
displayname = "Zul'Aman",
displayshort = "ZA",
continent = 2,
toWorldMap = "Ghostlands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulAman", -- Zul'Aman
location = "Terres Fant\195\180mes",
levels = "70",
1651,7 → 1707,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18, 53} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Ghostlands", leaveGap = 1 },
dtl2 = { text = "Nalorakk", colour = AM_RED, coords = { {36.3, 71.9} }, symbol = { "1" },
tooltiptxt = "", special = "(Ours)", lootid = "ZANalorakk" },
dtl3 = { text = "Akil'zon", colour = AM_RED, coords = { {31.25, 31.25} }, symbol = { "2" },
1672,6 → 1728,7
displayname = "Terrasse des Magist\195\168res",
displayshort = "MagT",
continent = 2,
toWorldMap = "Sunwell",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MagistersTerrace", -- Magister's Terrace
location = "Île de Quel’Danas",
levels = "69-72",
1679,7 → 1736,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {42.19, 78.32} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Sunwell", leaveGap = 1 },
dtl2 = { text = "Selin Coeur-de-feu", colour = AM_RED, coords = { {42.19, 26.17} }, symbol = { "1" },
tooltiptxt = "", lootid = "SMTFireheart" },
--dtl3 = { text = "Fel Crystals", colour = AM_ORANGE, coords = { {43.36, 37.5}, {43.36, 50.2}, {42.19, 29.88}, {50.39, 50.2}, {50.39, 37.5} }, symbol = { "C" },
1707,6 → 1764,7
displayname = "Plateau du Puits de soleil",
displayshort = "SunP",
continent = 2,
toWorldMap = "Sunwell",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\SunwellPlateau", -- Sunwell Plateau
location = "Île de Quel’Danas",
levels = "69-72",
1714,7 → 1772,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {31.45, 17.19} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Sunwell", leaveGap = 1 },
dtl2 = { text = "Kalecgos", colour = AM_RED, coords = { {30.08, 32.03} }, symbol = { "1" },
tooltiptxt = "", lootid = "SPKalecgos" },
dtl3 = { text = "Sathrovarr le Corrupteur", colour = AM_RED, coords = { {30.08, 32.03} }, symbol = { " " },
1754,6 → 1812,7
displayname = "Remparts des Flammes infernales",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCRampart", -- HCRampart
location = "P\195\169ninsule des Flammes infernales",
levels = "60-62",
1761,7 → 1820,7
prereq = "Cl\195\169 : Cl\195\169 en flammes forg\195\169es (H\195\169roïque)",
general = "R\195\169put : Thrallmar (Horde)\nR\195\169put : Bastion de l'honneur (Alliance)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {62, 63} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "Gardien des guetteurs Gargolmar", colour = AM_RED, coords = { {80, 24} }, symbol = { "1" },
tooltiptxt = "", special = AM_WANDERS, lootid = "HCRampWatchkeeper" },
dtl3 = { text = "Omor l'Intouch\195\169", colour = AM_RED, coords = { {22, 14} }, symbol = { "2" },
1780,6 → 1839,7
displayname = "La Fournaise du sang",
displayshort = "BF",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCBloodFurnace", -- HCBloodFurnace
location = "P\195\169ninsule des Flammes infernales",
levels = "61-63",
1787,7 → 1847,7
prereq = "Cl\195\169 : Cl\195\169 en flammes forg\195\169es (H\195\169roïque)",
general = "R\195\169put : Thrallmar (Horde)\nR\195\169put : Bastion de l'honneur (Alliance)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {50, 91.8} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "Le Faiseur", colour = AM_RED, coords = { {29.3, 35} }, symbol = { "1" },
tooltiptxt = "", lootid = "HCFurnaceMaker" },
dtl3 = { text = "Broggok", colour = AM_RED, coords = { {41, 13.1} }, symbol = { "2" },
1802,6 → 1862,7
displayname = "Les Salles bris\195\169es",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCShatteredHalls", -- HCShatteredHalls
location = "P\195\169ninsule des Flammes infernales",
levels = "70-72",
1809,7 → 1870,7
prereq = "Cl\195\169 : Cl\195\169 en flammes forg\195\169es (H\195\169roïque)",
general = "R\195\169put : Thrallmar (Horde)\nR\195\169put : Bastion de l'honneur (Alliance)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {67, 97.66} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "Randy Vizirouage", colour = AM_RED, coords = { {23.63, 74.8} }, symbol = { "1" },
tooltiptxt = "", special = "(Alliance, H\195\169roïque)" },
dtl3 = { text = "Drisella", colour = AM_RED, coords = { {23.63, 74.8} }, symbol = { " " },
1846,6 → 1907,7
displayname = "Le repaire de Magtheridon",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MagtheridonsLair", -- MagtheridonsLair
location = "P\195\169ninsule des Flammes infernales",
levels = "70",
1853,7 → 1915,7
prereq = "Cl\195\169 : Cl\195\169 en flammes forg\195\169es (H\195\169roïque)",
general = "R\195\169put : Thrallmar (Horde)\nR\195\169put : Bastion de l'honneur (Alliance)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {23.44, 14.26} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "Magtheridon", colour = AM_PURPLE, coords = { {53.13, 72.07} }, symbol = { "1" },
tooltiptxt = "", lootid = "HCMagtheridon", leaveGap = 1 }
},
1864,6 → 1926,8
displayname = "Les enclos aux esclaves",
displayshort = "SP",
continent = 3,
toMap = "R\195\169servoir de Glissecroc"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSlavePens", -- TheSlavePens
location = "Mar\195\169cage de Zangar",
levels = "62-64",
1871,7 → 1935,7
prereq = "Objet : Cl\195\169 du r\195\169servoir (H\195\169roïque)",
general = "R\195\169servoir de Glissecroc\nR\195\169put : Exp\195\169dition c\195\169narienne",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {23.24, 21.29} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "R\195\169servoir de Glissecroc"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "R\195\169servoir de Glissecroc"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Mennu le Traître", colour = AM_RED, coords = { {48.83, 31.84} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRSlaveMennu" },
dtl3 = { text = "Weeder la Main-verte", colour = AM_RED, coords = { {48.83, 71.29} }, symbol = { "2" },
1893,6 → 1957,8
displayname = "La Basse-tourbi\195\168re",
displayshort = "",
continent = 3,
toMap = "R\195\169servoir de Glissecroc"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheUnderbog", -- TheUnderbog
location = "Mar\195\169cage de Zangar",
levels = "63-65",
1900,7 → 1966,7
prereq = "Objet : Cl\195\169 du r\195\169servoir (H\195\169roïque)",
general = "R\195\169servoir de Glissecroc\nR\195\169put : Exp\195\169dition c\195\169narienne",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {120, 346} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "R\195\169servoir de Glissecroc"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "R\195\169servoir de Glissecroc"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Hungarfen", colour = AM_RED, coords = { {71.09, 83.79} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRUnderHungarfen" },
dtl3 = { text = "Palme de sporielle", colour = AM_RED, coords = { {71.09, 83.79} }, symbol = { " " },
1923,6 → 1989,8
displayname = "Le Caveau de la vapeur",
displayshort = "CV",
continent = 3,
toMap = "R\195\169servoir de Glissecroc"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSteamvault", -- The Steamvault
location = "Mar\195\169cage de Zangar",
levels = "70-72",
1930,7 → 1998,7
prereq = "Objet : Cl\195\169 du r\195\169servoir (H\195\169roïque)",
general = "R\195\169servoir de Glissecroc\nR\195\169put : Exp\195\169dition c\195\169narienne",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {1.56, 35.74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "R\195\169servoir de Glissecroc"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "R\195\169servoir de Glissecroc"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Hydromancienne Thespia", colour = AM_RED, coords = { {54.3, 17.19} }, symbol = { "1" },
tooltiptxt = "Elite Lvl 72", lootid = "CFRSteamThespia" },
dtl3 = { text = "Panneau d'acc\195\168s de la salle principale", colour = AM_RED, coords = { {54.3, 17.19} }, symbol = { " " },
1955,6 → 2023,8
displayname = "Sanctuaire du Serpent",
displayshort = "SC",
continent = 3,
toMap = "R\195\169servoir de Glissecroc"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\SerpentShrine", -- SerpentshrineCavern
location = "Mar\195\169cage de Zangar",
levels = "70",
1962,7 → 2032,7
prereq = "",
general = "R\195\169servoir de Glissecroc\nR\195\169put : Exp\195\169dition c\195\169narienne",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {1.56, 67.19} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "R\195\169servoir de Glissecroc"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "R\195\169servoir de Glissecroc"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Hydross l'Instable", colour = AM_RED, coords = { {37.89, 75} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRSerpentHydross" },
dtl3 = { text = "Le R\195\180deur d'En-bas", colour = AM_RED, coords = { {40.82, 54.1} }, symbol = { "2" },
1987,6 → 2057,8
displayname = "Cryptes d'Auchena\195\175",
displayshort = "AC",
continent = 3,
toMap = "Auchindoun"..AM_EXTERIOR,
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AuchenaiCrypts", -- AuchenaiCrypts
location = "For\195\170t de Terokkar",
levels = "64-66",
1994,7 → 2066,7
prereq = "Objet : Cl\195\169 Auchena\195\175 (H\195\169roïque)",
general = "Auchindoun\nR\195\169put : Ville basse",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {22, 79.1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Shirrak le Veillemort", colour = AM_RED, coords = { {44, 70} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchCryptsShirrak" },
dtl3 = { text = "Exarque Maladaar", colour = AM_RED, coords = { {88, 49} }, symbol = { "2" },
2013,6 → 2085,8
displayname = "Labyrinthe des Ombres",
displayshort = "SL",
continent = 3,
toMap = "Auchindoun"..AM_EXTERIOR,
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ShadowLabyrinth", -- ShadowLabyrinth
location = "For\195\170t de Terokkar",
levels = "65-67",
2020,7 → 2094,7
prereq = "Objet : Cl\195\169 du labyrinthe des ombres\nObjet : Cl\195\169 Auchena\195\175 (H\195\169ro\195\175que)",
general = "Auchindoun\nR\195\169put : Ville basse",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {6, 8.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Espion To'gun", colour = AM_RED, coords = { {14, 44} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "Ambassadeur Gueule-d'enfer", colour = AM_RED, coords = { {14, 44} }, symbol = { "2" },
2045,6 → 2119,8
displayname = "Les salles de Sethekk",
displayshort = "SH",
continent = 3,
toMap = "Auchindoun"..AM_EXTERIOR,
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\SethekkHalls", -- SethekkHalls
location = "For\195\170t de Terokkar",
levels = "67-69",
2052,7 → 2128,7
prereq = "Objet : Cl\195\169 Auchenaï (H\195\169roïque)\nObjet : Pierre de lune impr\195\169gn\195\169e d'essence (Anzu)",
general = "Auchindoun\nR\195\169put : Ville basse",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {98, 46} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Tisseur d'ombre Syth", colour = AM_RED, coords = { {47.3, 64} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchSethekkDarkweaver" },
dtl3 = { text = "Lakka", colour = AM_RED, coords = { {47.3, 64} }, symbol = { " " },
2073,6 → 2149,8
displayname = "Tombes-mana",
displayshort = "MT",
continent = 3,
toMap = "Auchindoun"..AM_EXTERIOR,
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ManaTombs", -- ManaTombs
location = "For\195\170t de Terokkar",
levels = "70-72",
2080,7 → 2158,7
prereq = "Objet : Cl\195\169 Auchena\195\175 (H\195\169roïque)\nObjet : L'Oeil d'Haramad (Exalt\195\169, Yor)",
general = "Auchindoun\nR\195\169put : Le Consortium",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18, 4.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Pandemonius", colour = AM_RED, coords = { {46, 30} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchManaPandemonius" },
dtl3 = { text = "Seigneur des t\195\169n\195\168bres Xiraxis", colour = AM_RED, coords = { {46, 30} }, symbol = { " " },
2107,6 → 2185,7
displayname = "Le repaire de Gruul",
displayshort = "GL",
continent = 3,
toWorldMap = "BladesEdgeMountains",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\GruulsLair", -- GruulsLair
location = "Les Tranchantes",
levels = "65-68",
2114,7 → 2193,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {0, 0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BladesEdgeMountains", leaveGap = 1 },
dtl2 = { text = "High King Maulgar", colour = AM_RED, coords = { {55, 48} }, symbol = { "1" },
tooltiptxt = "Boss", lootid = "GruulsLairHighKingMaulgar" },
dtl3 = { text = "Kiggler le Cingl\195\169", colour = AM_RED, coords = { {55, 48} }, symbol = { " " },
2135,6 → 2214,7
displayname = "Temple noir",
displayshort = "BT",
continent = 3,
toWorldMap = "ShadowmoonValley",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackTemple", -- BlackTemple
location = "Vall\195\169e d'Ombrelune",
levels = "67-70",
2142,29 → 2222,29
prereq = "Harmonisation requise\nObjet : M\195\169daillon de Karabor",
general = "R\195\169put : Ligemort Cendrelangue",
dtl1 = { text = "Temple Noir (D\195\169but)", colour = AM_ORANGE, coords = { {5.27, 32.03} }, symbol = { "-" },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "ShadowmoonValley", },
dtl2 = { text = "Temple Noir (Haut)", colour = AM_ORANGE, coords = { {49.61, 5.66} }, symbol = { "^" },
tooltiptxt = "" },
dtl3 = { text = "Temple Noir (Sous-sol)", colour = AM_ORANGE, coords = { {63.87, 60.74} }, symbol = { "v" },
tooltiptxt = "", leaveGap = 1 },
dtl4 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {7.62, 77.34} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl5 = { text = "Esprit d'Olum", colour = AM_BLUE, coords = { {7.23, 72.07} }, symbol = { "1" },
tooltiptxt = "", lootid = "BTNajentus" },
dtl6 = { text = "Grand seigneur de guerre Naj'entus", colour = AM_RED, coords = { {24.8, 56.25} }, symbol = { "2" },
tooltiptxt = "", lootid = "BTNajentus" },
dtl7 = { text = "Supremus", colour = AM_RED, coords = { {21.29, 45.12} }, symbol = { "3" },
tooltiptxt = "", lootid = "BTSupremus" },
dtl8 = { text = "Ombre d'Akama", colour = AM_RED, coords = { {33.59, 63.09} }, symbol = { "4" },
tooltiptxt = "", lootid = "BTAkama" },
dtl9 = { text = "Esprit d'Udalo", colour = AM_RED, coords = { {46.88, 44.53} }, symbol = { "5" },
tooltiptxt = "" },
dtl10 = { text = "Aluyen", colour = AM_RED, coords = { {46.88, 44.53} }, symbol = { " " },
tooltiptxt = "", special = "(Composants)" },
dtl11 = { text = "Okuno", colour = AM_RED, coords = { {46.88, 44.53} }, symbol = { " " },
tooltiptxt = "", special = "Intendant des ligemorts cendrelangue" },
dtl12 = { text = "Voyant Kanai", colour = AM_RED, coords = { {46.88, 44.53} }, symbol = { " " },
tooltiptxt = "", leaveGap = 1 },
dtl5 = { text = "Esprit d'Olum", colour = AM_BLUE, coords = { {7.23, 72.07} }, symbol = { "1" },
tooltiptxt = "", lootid = "BTNajentus" },
dtl6 = { text = "Grand seigneur de guerre Naj'entus", colour = AM_RED, coords = { {24.8, 56.25} }, symbol = { "2" },
tooltiptxt = "", lootid = "BTNajentus" },
dtl7 = { text = "Supremus", colour = AM_RED, coords = { {21.29, 45.12} }, symbol = { "3" },
tooltiptxt = "", lootid = "BTSupremus" },
dtl8 = { text = "Ombre d'Akama", colour = AM_RED, coords = { {33.59, 63.09} }, symbol = { "4" },
tooltiptxt = "", lootid = "BTAkama" },
dtl9 = { text = "Esprit d'Udalo", colour = AM_RED, coords = { {46.88, 44.53} }, symbol = { "5" },
tooltiptxt = "" },
dtl10 = { text = "Aluyen", colour = AM_RED, coords = { {46.88, 44.53} }, symbol = { " " },
tooltiptxt = "", special = "(Composants)" },
dtl11 = { text = "Okuno", colour = AM_RED, coords = { {46.88, 44.53} }, symbol = { " " },
tooltiptxt = "", special = "Intendant des ligemorts cendrelangue" },
dtl12 = { text = "Voyant Kanai", colour = AM_RED, coords = { {46.88, 44.53} }, symbol = { " " },
tooltiptxt = "", leaveGap = 1 },
dtl13 = { text = "Vers Teron Fielsang", colour = AM_GREEN, coords = { {48.83, 51.76}, {79.1, 78.32} }, symbol = { "P" },
tooltiptxt = "" },
dtl14 = { text = "Vers Reliquaire des âmes", colour = AM_GREEN, coords = { {48.83, 37.5}, {84.18, 67.38} }, symbol = { "P" },
2195,12 → 2275,12
tooltiptxt = "", special = "(Mage)" },
dtl27 = { text = "Veras Ombrenoir", colour = AM_RED, coords = { {79.1, 25.59} }, symbol = { " " },
tooltiptxt = "", special = "(Voleur)" },
dtl28 = { text = "Illidan Hurlorage", colour = AM_RED, coords = { {59.18, 36.13} }, symbol = { "11" },
tooltiptxt = "", lootid = "BTIllidanStormrage", leaveGap = 1 },
dtl29 = { text = AM_MOB_LOOT, colour = AM_BLUE, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "", lootid = "BTPatterns" },
dtl30 = { text = AM_MOB_LOOT, colour = AM_BLUE, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "", lootid = "BTTrash" }
dtl28 = { text = "Illidan Hurlorage", colour = AM_RED, coords = { {59.18, 36.13} }, symbol = { "11" },
tooltiptxt = "", lootid = "BTIllidanStormrage", leaveGap = 1 },
dtl29 = { text = AM_MOB_LOOT, colour = AM_BLUE, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "", lootid = "BTPatterns" },
dtl30 = { text = AM_MOB_LOOT, colour = AM_BLUE, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "", lootid = "BTTrash" },
},
 
-- The Mechanar
2209,6 → 2289,7
displayname = "Le M\195\169chanar",
displayshort = "Mech",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Mechanar", -- TheMechanar
location = "Raz-de-N\195\169ant",
levels = "69-72",
2216,7 → 2297,7
prereq = "Objet : Cl\195\169 dimensionnelle (H\195\169roïque)",
general = "Donjon de la temp\195\170te\nR\195\169put : Les Sha'tar",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {43, 92.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "Gardien de porte Gyro-Meurtre", colour = AM_RED, coords = { {46, 56} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKMechGyro" },
dtl3 = { text = "Gardien de porte Main-en-fer", colour = AM_RED, coords = { {64.5, 52} }, symbol = { "2" },
2241,6 → 2322,7
displayname = "La Botanica",
displayshort = "Bota",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Botanica", -- TheBotanica
location = "Raz-de-N\195\169ant",
levels = "70-72",
2248,7 → 2330,7
prereq = "Objet : Cl\195\169 dimensionnelle (H\195\169roïque)",
general = "Donjon de la temp\195\170te\nR\195\169put : Les Sha'tar",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {96.2, 44.8} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "Commander Sarannis", colour = AM_RED, coords = { {45, 30} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKBotSarannis" },
dtl3 = { text = "High Botanist Freywinn", colour = AM_RED, coords = { {24, 30} }, symbol = { "2" },
2269,6 → 2351,7
displayname = "L'Arcatraz",
displayshort = "Arca",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Arcatraz", -- TheArcatraz
location = "Raz-de-N\195\169ant",
levels = "70-72",
2276,7 → 2359,7
prereq = "Objet : Cl\195\169 de l'Arcatraz\nObjet : Cl\195\169 dimensionnelle (H\195\169roïque)",
general = "Donjon de la temp\195\170te\nR\195\169put : Les Sha'tar",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {38, 98} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "Zereketh le D\195\169li\195\169", colour = AM_RED, coords = { {45.5, 58.5} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKArcUnbound" },
dtl3 = { text = "Gardien du troisi\195\168me fragment", colour = AM_RED, coords = { {47.46, 37.3} }, symbol = { "2" },
2305,6 → 2388,7
displayname = "DT : L\39\197\146il",
displayshort = "Eye",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheEye", -- TheEye
location = "Raz-de-N\195\169ant",
levels = "69-72",
2312,7 → 2396,7
prereq = "Objet : La cl\195\169 de la Tempête",
general = "R\195\169put : Les Sha'tar",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45, 93} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "Al'ar", colour = AM_RED, coords = { {50, 57} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKEyeAlar" },
dtl3 = { text = "Saccageur du Vide", colour = AM_RED, coords = { {14, 47} }, symbol = { "2" },
2341,6 → 2425,7
displayname = "Les salles de Pierre",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\StoneHalls",
location = "Les pics foudroyés",
levels = "80",
2348,7 → 2433,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {26.5625, 41.0156} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "TheStormPeaks", leaveGap = 1, },
dtl2 = { text = "Damoiselle de peine", colour = AM_RED, coords = { {48.85, 81.7} }, symbol = { "1" },
tooltiptxt = "", lootid = "HallsofStone", },
dtl3 = { text = "Krystallus", colour = AM_RED, coords = { {37.1094, 58.3984} }, symbol = { "2" },
2364,6 → 2449,7
displayname = "Cime d'Utgarde",
displayshort = "",
continent = 4,
toWorldMap = "HowlingFjord",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardePinnacle",
location = "Fjord hurlant",
levels = "80",
2371,7 → 2457,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {36.91, 7.03} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "HowlingFjord", leaveGap = 1, },
dtl2 = { text = "Brigg Smallshanks", colour = AM_BLUE, coords = { {36.91, 13.33} }, symbol = { "Q" },
tooltiptxt = "Quests : \n Junk in My Trunk\n Vengeance Be Mine!", leaveGap = 1, },
dtl3 = { text = "Svala Tristetombe", colour = AM_RED, coords = { {43.94, 78.515} }, symbol = { "1" },
2391,6 → 2477,7
displayname = "Le Nexus",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Nexus",
location = "Toundra boréenne",
levels = "71-73",
2398,7 → 2485,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {30.63, 86.34} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "BoreanTundra", leaveGap = 1, },
dtl2 = { text = "Ormorok le Sculpte-arbre", colour = AM_RED, coords = { {58.47, 71.85} }, symbol = { "1" },
tooltiptxt = "", lootid = "TheNexus", },
dtl3 = { text = "Grand Magus Telestra", colour = AM_RED, coords = { {19.55, 41.74} }, symbol = { "2" },
2407,6 → 2494,8
tooltiptxt = "", lootid = "TheNexus", },
dtl5 = { text = "Keristrasza", colour = AM_RED, coords = { {30.91, 67.02} }, symbol = { "4" },
tooltiptxt = "", lootid = "TheNexusKeristraszaHEROIC", },
dtl6 = { text = "Commander Stoutbeard", colour = AM_RED, coords = { {35.7, 43.2} }, symbol = { "5" },
tooltiptxt = "", lootid = "TheNexusHEROIC", leaveGap = 1, },
},
 
{ name = "Ahn'Kahet", -- Ahn'Kahet
2414,6 → 2503,7
displayname = "Ahn'Kahet: The Old Kingdom",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AhnkahetTOK",
location = "La désolation des dragons",
levels = "73-75",
2421,7 → 2511,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {87.304, 71.875} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "Dragonblight", },
dtl2 = { text = "Ancien Nadox", colour = AM_RED, coords = { {68.75, 40.43} }, symbol = { "1" },
tooltiptxt = "", lootid = "Ahnkahet", },
dtl3 = { text = "Ancient Nerubian Device", colour = AM_BLUE, coords = { {56.836, 35.9375} }, symbol = { "{}" },
2434,6 → 2524,8
tooltiptxt = "", lootid = "Ahnkahet", },
dtl7 = { text = "Héraut Volazj", colour = AM_RED, coords = { {30.273, 54.883} }, symbol = { "4" },
tooltiptxt = "", lootid = "Ahnkahet", },
dtl8 = { text = "Amanitar", colour = AM_RED, coords = { {65.7, 66.8} }, symbol = { "5" },
tooltiptxt = "", special = "(Heroic)", lootid = "AhnkahetHEROIC", },
},
 
{ name = "Chambres des Aspects", -- The Obsidian Sanctum
2441,6 → 2533,7
displayname = "Chambres des Aspects",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\CoAB",
location = "Wyrmrest Temple, La désolation des dragons",
levels = "Raid",
2448,7 → 2541,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {74.65, 49.29} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "Dragonblight", leaveGap = 1, },
dtl2 = { text = "Vesperon", colour = AM_RED, coords = { {59.96, 55.03} }, symbol = { "1" },
tooltiptxt = "", },
dtl3 = { text = "Tenebron", colour = AM_RED, coords = { {40.67, 46.30} }, symbol = { "1" },
2464,6 → 2557,7
displayname = "Donjon de Drak'Tharon Inf\195\169rieur",
displayshort = "",
continent = 4,
toWorldMap = "GrizzlyHills",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DrakTharonLower",
location = "Fjord hurlant",
levels = "74-76",
2471,7 → 2565,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {10.26, 84.65} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "GrizzlyHills", leaveGap = 1, },
dtl2 = { text = "Trollétripe", colour = AM_RED, coords = { {53.13, 25.11} }, symbol = { "1" },
tooltiptxt = "", lootid = "DrakTharonKeep", },
dtl3 = { text = "Novos l'Invocateur", colour = AM_RED, coords = { {71.46, 54.22} }, symbol = { "2" },
2489,6 → 2583,7
displayname = "Donjon de Drak'Tharon Sup\195\169rieur",
displayshort = "",
continent = 4,
toMap = "Donjon de Drak'Tharon",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DrakTharonUpper",
location = "Fjord hurlant",
levels = "74-76",
2510,6 → 2605,7
displayname = "Gun'Drak",
displayshort = "",
continent = 4,
toWorldMap = "ZulDrak",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\GunDrak",
location = "Zul'Drak",
levels = "74-77",
2517,7 → 2613,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {31.055, 36.328}, {70.3125, 36.328} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "ZulDrak", },
dtl2 = { text = "Slad'ran", colour = AM_RED, coords = { {62.695, 48.828} }, symbol = { "1" },
tooltiptxt = "", lootid = "Gundrak", },
dtl3 = { text = "Moorabi", colour = AM_RED, coords = { {38.672, 48.828} }, symbol = { "1" },
2533,6 → 2629,7
displayname = "L'Oculus",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Oculus",
location = "Toundra boréenne",
levels = "80",
2540,7 → 2637,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {60.64, 52.67} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "BoreanTundra", leaveGap = 1, },
dtl2 = { text = AM_LEADSTO, colour = AM_BLUE, coords = { {43.43, 52.36}, {52.65, 62.81} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1, },
dtl3 = { text = "Drakos l'Interrogateur", colour = AM_RED, coords = { {52.65, 62.81} }, symbol = { "1" },
2564,6 → 2661,7
displayname = "Les salles de Foudre",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HoL",
location = "Les pics foudroyés",
levels = "77-79",
2571,7 → 2669,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {13.4, 38.086} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "TheStormPeaks", leaveGap = 1, },
dtl2 = { text = "Général Bjarngrim", colour = AM_RED, coords = { {54.1, 46.29} }, symbol = { "1" },
tooltiptxt = "", special = AM_WANDERS, lootid = "HoLGjarngrin", },
dtl3 = { text = "Volkhan", colour = AM_RED, coords = { {66.797, 37.89} }, symbol = { "2" },
2587,6 → 2685,7
displayname = "Vault d'Archavon",
displayshort = "",
continent = 4,
toWorldMap = "LakeWintergrasp",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Archavon",
location = "Joug-d'hiver",
levels = "77-79",
2594,7 → 2693,7
prereq = "Faction must claim victory in Lake Wintergrasp",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {39.6, 97.656} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "LakeWintergrasp", },
dtl2 = { text = "Archavon the Stone Watcher", colour = AM_RED, coords = { {39.6, 10.9375} }, symbol = { "1" },
tooltiptxt = "", },
},
2604,6 → 2703,7
displayname = "Donjon d'Utgarde",
displayshort = "",
continent = 4,
toWorldMap = "HowlingFjord",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardeKeep",
location = "Fjord hurlant",
levels = "70-72",
2611,7 → 2711,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {68.16, 69.14} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "HowlingFjord", leaveGap = 1, },
dtl2 = { text = "Prince Keleseth", colour = AM_RED, coords = { {17.578, 61.914} }, symbol = { "1" },
tooltiptxt = "", lootid = "UtgardeKeep", leaveGap = 1, },
dtl3 = { text = "Donjon d'Utgarde 2", colour = AM_GREEN, coords = { {34.18, 80.86} }, symbol = { "P" },
2623,6 → 2723,7
displayname = "Donjon d'Utgarde 2",
displayshort = "",
continent = 4,
toMap = "Donjon d'Utgarde",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardeKeep1",
location = "Fjord hurlant",
levels = "70-72",
2644,6 → 2745,7
displayname = "Azjol-Nerub",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AzjolNerub",
location = "La désolation des dragons",
levels = "72-74",
2651,7 → 2753,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18.75, 63.28} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "Dragonblight", leaveGap = 1, },
dtl2 = { text = "Krik'thir le Gardien de porte", colour = AM_RED, coords = { {44.53, 42.773} }, symbol = { "1" },
tooltiptxt = "", lootid = "AzjolNerub", },
dtl3 = { text = "Hadronox", colour = AM_RED, coords = { {65.234, 42.773} }, symbol = { "2" },
2665,6 → 2767,8
displayname = "Azjol-Nerub Inf\195\169rieur",
displayshort = "",
continent = 4,
toMap = "Azjol-Nerub",
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AzjolNerubLower",
location = "La désolation des dragons",
levels = "72-74",
2672,7 → 2776,7
prereq = "",
general = "",
dtl1 = { text = "Azjol-Nerub", colour = AM_BLUE, coords = { {25.39, 50} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Azjol-Nerub", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Dragonblight", toMap = "Azjol-Nerub", leaveGap = 1 },
dtl2 = { text = "Anub'arak", colour = AM_RED, coords = { {76.17, 48.2} }, symbol = { "3" },
tooltiptxt = "", lootid = "AzjolNerub", },
},
2682,28 → 2786,31
displayname = "Le Fort pourpre",
displayshort = "",
continent = 4,
toWorldMap = "Dalaran",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\",
location = "Dalaran",
levels = "77-79",
players = "",
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {0, 0} }, symbol = { AM_ENTRANCE_SYMBOL },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45.4, 93.9} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toWorldMap = "Dalaran", },
dtl2 = { text = "Lieutenant Sinclari", colour = AM_GREEN, coords = { {45.4, 74.9} }, symbol = { "W" },
tooltiptxt = "", },
dtl2 = { text = "Lieutenant Sinclari", colour = AM_GREEN, coords = { {0, 0} }, symbol = { "1" },
tooltiptxt = "", },
dtl3 = { text = "Cyanigosa", colour = AM_RED, coords = { {0, 0} }, symbol = { "1" },
tooltiptxt = "", },
dtl4 = { text = "Xevozz", colour = AM_RED, coords = { {0, 0} }, symbol = { "2" },
tooltiptxt = "", },
dtl5 = { text = "Moragg", colour = AM_RED, coords = { {0, 0} }, symbol = { "3" },
tooltiptxt = "", },
dtl6 = { text = "Erekem", colour = AM_RED, coords = { {0, 0} }, symbol = { "4" },
tooltiptxt = "", },
dtl7 = { text = "Zuramot", colour = AM_RED, coords = { {0, 0} }, symbol = { "5" },
tooltiptxt = "", },
dtl8 = { text = "Lavanthor", colour = AM_RED, coords = { {0, 0} }, symbol = { "6" },
tooltiptxt = "", },
dtl3 = { text = "Ichoron", colour = AM_RED, coords = { {71.1, 24.3} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", },
dtl4 = { text = "Xevozz", colour = AM_RED, coords = { {19.9, 26.5} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12, Lower", },
dtl5 = { text = "Zuramat the Obliterator", colour = AM_RED, coords = { {19.9, 26.5} }, symbol = { " " },
tooltiptxt = "", special = "(Random) 6/12, Upper", },
dtl6 = { text = "Moragg", colour = AM_RED, coords = { {82.6, 44.9} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", },
dtl7 = { text = "Erekem", colour = AM_RED, coords = { {15.6, 54} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", },
dtl8 = { text = "Lavanthor", colour = AM_RED, coords = { {70.1, 67.4} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", leaveGap = 1, },
dtl9 = { text = "Cyanigosa", colour = AM_RED, coords = { {70.1, 67.4} }, symbol = { "18" },
tooltiptxt = "", special = "18th Wave", },
},
 
{ name = "L'Œil de l'éternité", -- The Eye of Eternity -- probably not worth including
2711,6 → 2818,7
displayname = "L'Œil de l'éternité",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\",
location = "Toundra boréenne",
levels = "80",
2718,7 → 2826,7
prereq = "Key drops from Saphiron (Naxxramus)",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {50, 50} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "BoreanTundra", },
dtl2 = { text = "Malygos", colour = AM_RED, coords = { {41.406, 27.93} }, symbol = { "1" },
tooltiptxt = "", lootid = "Malygos", },
},
2728,6 → 2836,7
displayname = "Ulduar",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\",
location = "Les pics foudroyés",
levels = "77-79",
2735,7 → 2844,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {0, 0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "TheStormPeaks", },
},
 
{ name = "Oldstratholme", -- Oldstratholme
2743,14 → 2852,16
displayname = "CoT: Old Stratholme",
displayshort = "CoT4",
continent = 1,
toMap = "Caverns of Time"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Oldstrat", -- Oldstratholme
location = "Caverns of Time",
levels = "",
players = "",
levels = "80",
players = "25",
prereq = "",
general = "The Culling of Stratholme",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {91.85, 97.81} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Caverns of Time"..AM_EXTERIOR, leaveGap = 1, },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "Caverns of Time"..AM_EXTERIOR, leaveGap = 1, },
dtl2 = { text = "Chromie", colour = AM_GREEN, coords = { {98.95, 94.12} }, symbol = { "A" },
tooltiptxt = "Quest Giver:\n Dispelling Illusions", },
dtl3 = { text = AM_LEADSTO, colour = AM_BLUE, coords = { {78.01, 77.53}, {51.06, 98.55} }, symbol = { "P", },
AlphaMapBeta/AlphaMap_Instances/localisation.de.lua
23,6 → 23,8
displayname = "Blackfathom-Tiefen",
displayshort = "BFD",
continent = 1,
toMap = "Blackfathom-Tiefen"..AM_EXTERIOR,
toWorldMap = "Ashenvale",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackfathomDeeps",
location = "Ashenvale (14, 14)",
levels = "24-32",
30,7 → 32,7
prereq = "",
general = "Some underwater sections",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {33, 10} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Blackfathom-Tiefen"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Ashenvale", toMap = "Blackfathom-Tiefen"..AM_EXTERIOR },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {50, 68} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Ghamoo-ra", colour = AM_RED, coords = { {23.5, 42} }, symbol = { "1" },
66,6 → 68,8
displayname = "Schwarzfelstiefen",
displayshort = "BRT",
continent = 2,
toMap = "Der Schwarzfels "..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackrockDepths",
location = "Schwarzfels",
levels = "52-60",
73,7 → 77,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {21, 83} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Der Schwarzfels "..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Der Schwarzfels "..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Lord Roccor", colour = AM_RED, coords = { {33, 80} }, symbol = { "1" },
tooltiptxt = "Lvl51 Elite Elementar", lootid = "BRDLordRoccor" },
dtl3 = { text = "Verh\195\182rmeisterin Gerstahn", colour = AM_RED, coords = { {38, 95} }, symbol = { "2" },
139,6 → 143,8
displayname = "Schwarzfelsspitze (Unten)",
displayshort = "LBRS",
continent = 2,
toMap = "Der Schwarzfels "..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\LBRS", -- LBRS
location = "Schwarzfels",
levels = "53-60",
146,9 → 152,9
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {9, 10} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Der Schwarzfels "..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Der Schwarzfels "..AM_EXTERIOR },
dtl2 = { text = "Schwarzfelsspitze (Oben)", colour = AM_BLUE, coords = { {22, 4} }, symbol = { "U" },
tooltiptxt = "", toMap = "Schwarzfelsspitze (Oben)" },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Schwarzfelsspitze (Oben)" },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {45.2, 29}, {73, 46} }, symbol = { "x1" },
tooltiptxt = "" },
dtl4 = { text = "Br\195\188cke zum Hochlord Omokk", colour = AM_GREEN, coords = { {38, 32.1}, {15, 32.1} }, symbol = { "B" },
208,6 → 214,8
displayname = "Schwarzfelsspitze (Oben)",
displayshort = "UBRS",
continent = 2,
toMap = "Der Schwarzfels "..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UBRS", -- UBRS
location = "Schwarzfels",
levels = "53-60",
215,7 → 223,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {3, 80.7} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Der Schwarzfels "..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Der Schwarzfels "..AM_EXTERIOR },
dtl2 = { text = "Schwarzfelsspitze (Unten)", colour = AM_BLUE, coords = { {18.2, 86.6} }, symbol = { "L" },
tooltiptxt = "", toMap = "Schwarzfelsspitze", leaveGap = 1 },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {11.9, 58.4}, {8.65, 25} }, symbol = { "x1" },
257,6 → 265,8
displayname = "Pechschwingenhort",
displayshort = "BWL",
continent = 2,
toMap = "Schwarzfelsspitze (Oben)",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackwingLair",
location = "Schwarzfelsspitze",
levels = "60+",
264,7 → 274,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {65, 72} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Schwarzfelsspitze (Oben)", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "Schwarzfelsspitze (Oben)", leaveGap = 1 },
dtl2 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {32.8, 78}, {61, 48} }, symbol = { "x1" },
tooltiptxt = "" },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {40, 96}, {68, 65} }, symbol = { "x2" },
296,6 → 306,8
displayname = "D\195\188sterbruch - Overview",
displayshort = "DB",
continent = 1,
toMap = "D\195\188sterbruch"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DireMaul",
location = "Feralas (59, 44)",
levels = "56-60",
318,6 → 330,8
displayname = "D\195\188sterbruch (Ost)",
displayshort = "DB",
continent = 1,
toMap = "D\195\188sterbruch"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMEast", --DMEast
location = "Feralas (59, 44)",
levels = "56-60",
325,9 → 339,9
prereq = "",
general = "",
dtl1 = { text = "Eingang : Die gebrochenen Gemeinlande", colour = AM_GREEN, coords = { {6, 58} }, symbol = { "X1" },
tooltiptxt = "", toMap = "D\195\188sterbruch"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "D\195\188sterbruch"..AM_EXTERIOR },
dtl2 = { text = "Eingang : Elderethgasse", colour = AM_GREEN, coords = { {12, 92} }, symbol = { "X2" },
tooltiptxt = "", toMap = "D\195\188sterbruch"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "D\195\188sterbruch"..AM_EXTERIOR },
dtl3 = { text = "Eingang : Pavillion", colour = AM_GREEN, coords = { {98, 64} }, symbol = { "X3" },
tooltiptxt = "" },
dtl4 = { text = AM_INSTANCE_EXITS, colour = AM_RED, coords = { {8, 40} }, symbol = { AM_EXIT_SYMBOL },
365,6 → 379,8
displayname = "D\195\188sterbruch (Nord)",
displayshort = "DB",
continent = 1,
toMap = "D\195\188sterbruch"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMNorth", -- DMNorth
location = "Feralas (59, 44)",
levels = "56-60",
372,7 → 388,7
prereq = "Requires Crescent Key from Pusillin Chase in DM East",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {74, 74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "D\195\188sterbruch"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "D\195\188sterbruch"..AM_EXTERIOR },
dtl2 = { text = "D\195\188sterbruch (West)", colour = AM_GREEN, coords = { {9, 98} }, symbol = { "W" },
tooltiptxt = "", toMap = "D\195\188sterbruch West" },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {49.2, 59.4} }, symbol = { AM_CHEST_SYMBOL },
404,6 → 420,8
displayname = "D\195\188sterbruch (West)",
displayshort = "DB",
continent = 1,
toMap = "D\195\188sterbruch"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMWest", -- DMWest
location = "Feralas (59, 44)",
levels = "56-60",
411,7 → 429,7
prereq = "Requires Crescent Key from Pusillin Chase in DM East",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {97, 78} }, symbol = { "X1" },
tooltiptxt = "", toMap = "D\195\188sterbruch"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "D\195\188sterbruch"..AM_EXTERIOR },
dtl2 = { text = "D\195\188sterbruch (Nord)", colour = AM_GREEN, coords = { {66, 9} }, symbol = { "N" },
tooltiptxt = "", toMap = "D\195\188sterbruch Nord", leaveGap = 1 },
dtl3 = { text = AM_INSTANCE_STAIRS, colour = AM_BLUE, coords = { {49.2, 25}, {52, 60} }, symbol = { AM_STAIRS_SYMBOL },
446,6 → 464,8
type = AM_TYP_INSTANCE,
displayname = "Gnomeregan",
continent = 2,
toMap = "Gnomeregan"..AM_EXTERIOR,
toWorldMap = "DunMorogh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Gnomeregan",
location = "Dun Morogh (25, 41)",
levels = "26-33",
453,9 → 473,9
prereq = "",
general = "Horde access via Teleporter in Booty Bay.\nInitial Quest from Orgrimmar Engineer.",
dtl1 = { text = "Eingang (Vorne)", colour = AM_GREEN, coords = { {70.5, 16} }, symbol = { "X1" },
tooltiptxt = "", toMap = "Gnomeregan"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "DunMorogh", toMap = "Gnomeregan"..AM_EXTERIOR },
dtl2 = { text = "Eingang (Hinten)", colour = AM_GREEN, coords = { {87, 59} }, symbol = { "X2" },
tooltiptxt = "Workshop Key Required", toMap = "Gnomeregan"..AM_EXTERIOR },
tooltiptxt = "Workshop Key Required", toWorldMap = "DunMorogh", toMap = "Gnomeregan"..AM_EXTERIOR },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {75, 38}, {79, 56} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl4 = { text = "Z\195\164hfl\195\188ssiger Niederschlag", colour = AM_RED, coords = { {71.5, 33.5} }, symbol = { "1" },
488,6 → 508,8
type = AM_TYP_INSTANCE,
displayname = "Maraudon",
continent = 1,
toMap = "Maraudon"..AM_EXTERIOR,
toWorldMap = "Desolace",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Maraudon",
location = "Desolace (29, 62)",
levels = "40-49",
495,9 → 517,9
prereq = "",
general = "",
dtl1 = { text = "Eingang (Orange)", colour = AM_ORANGE, coords = { {71, 12} }, symbol = { "X1" },
tooltiptxt = "", toMap = "Maraudon"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Desolace", toMap = "Maraudon"..AM_EXTERIOR },
dtl2 = { text = "Eingang (Lila)", colour = AM_PURPLE, coords = { {85, 31} }, symbol = { "X2" },
tooltiptxt = "", toMap = "Maraudon"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Desolace", toMap = "Maraudon"..AM_EXTERIOR },
dtl3 = { text = "Eingang (Portal)", colour = AM_GREEN, coords = { {36, 55} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1 },
dtl4 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {64, 44}, {39, 31} }, symbol = { AM_CHEST_SYMBOL },
533,6 → 555,8
displayname = "Geschmolzener Kern",
displayshort = "MC",
continent = 2,
toMap = "Schwarzfelstiefen",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MoltenCore",
location = "Schwarzfelstiefen",
levels = "60+",
571,6 → 595,7
type = AM_TYP_INSTANCE,
displayname = "Naxxramas",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Naxxramas",
location = "Stratholme/\195\150stliche Pestl\195\164nder",
levels = "60+",
626,13 → 651,16
dtl24 = { text = "Kel'Thuzard", colour = AM_RED, coords = { {75, 79} }, symbol = { "2" },
tooltiptxt = "Frostwyrm Lair", lootid = "Naxx80KelThuzad", leaveGap = 2 },
dtl25 = { text = AM_MOB_LOOT, colour = AM_PURPLE, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "", lootid = "Naxx80Trash", leaveGap = 1 }
tooltiptxt = "", lootid = "Naxx80Trash", leaveGap = 1 },
dtl26 = { text = AM_INSTANCE_EXITS, colour = AM_BLUE, coords = { {1, 1} }, symbol = { "<-" },
tooltiptxt = "", toWorldMap = "Dragonblight", },
},
 
{ name = "Onyxias Hort", -- Onyxias Hort
type = AM_TYP_INSTANCE,
displayname = "Onyxias Hort",
continent = 1,
toWorldMap = "Dustwallow",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\OnyxiasLair",
location = "Marschen von Dustwallow (52, 76)",
levels = "60+",
640,7 → 668,7
prereq = "Requires Drakefire Amulet\n(Complete quest in UBRS to kill General Drakkisath)",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {9, 12} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Dustwallow", },
dtl2 = { text = "Onyxias Wachen", colour = AM_RED, coords = { {26, 41}, {29, 56}, {39, 68}, {50, 80} }, symbol = { "1" },
tooltiptxt = "Lvl62 Elite Dragonkin" },
dtl3 = { text = "Welpeneier", colour = AM_RED, coords = { {45, 40}, {51, 54}, {84, 41}, {79, 54} }, symbol = { "2" },
654,13 → 682,14
displayname = "Der Flammenschlund",
displayshort = "RF",
continent = 1,
toWorldMap = "Ogrimmar",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RagefireChasm", -- RagefireChasm
location = "Orgrimmar",
levels = "13-18",
players = "10",
general = "",
dtl1 = { text = "Eingang", colour = AM_GREEN, coords = { {72, 4} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Ogrimmar", leaveGap = 1 },
dtl2 = { text = "Maur Grimtotem", colour = AM_GOLD, coords = { {71, 53} }, symbol = { "1" },
tooltiptxt = "Satchel Quest" },
dtl3 = { text = "Taragaman der Hungerleider", colour = AM_RED, coords = { {34, 59} }, symbol = { "2" },
677,6 → 706,7
displayname = "Die H\195\188gel von Razorfen",
displayshort = "HvR",
continent = 1,
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RazorfenDowns",
location = "Brachland (48, 88)",
levels = "38-43",
684,7 → 714,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {4, 23} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Barrens", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {77, 45} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Tuten'kash", colour = AM_RED, coords = { {52, 36} }, symbol = { "1" },
710,6 → 740,7
displayname = "Der Kral von Razorfen",
displayshort = "KvR",
continent = 1,
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RazorfenKraul",
location = "Brachland (42, 86)",
levels = "28-33",
717,7 → 748,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {75, 71} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Barrens", leaveGap = 1 },
dtl2 = { text = "Roogug", colour = AM_RED, coords = { {73, 44} }, symbol = { "1" },
tooltiptxt = "Lvl28 Elite Mensch" },
dtl3 = { text = "Aggem Thorncurse", colour = AM_RED, coords = { {88, 48} }, symbol = { "2" },
747,6 → 778,7
displayname = "Ruinen von Ahn'Qiraj",
displayshort = "AQ20",
continent = 1,
toWorldMap = "Silithus",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RuinsofAhnQiraj", -- RuinsofAhnQiraj
location = "Silithus (29, 96)",
levels = "60+",
754,10 → 786,10
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {64, 2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Silithus", leaveGap = 1 },
dtl2 = { text = "Kurinnaxx", colour = AM_RED, coords = { {55, 29} }, symbol = { "1" },
tooltiptxt = "Boss & Elites", lootid = "AQ20Kurinnaxx" },
dtl3 = { text ="Generallieutenant Andorov,\n&Four Kaldorei Elites", colour = AM_RED, coords = { {55, 29} }, symbol = { " " },
dtl3 = { text ="Generallieutenant Andorov,\n&Fier Kaldorei Elites", colour = AM_RED, coords = { {55, 29} }, symbol = { " " },
tooltiptxt = "", lootid = "AQ20Andorov" },
dtl4 = { text = "Captain Qeez", colour = AM_RED, coords = { {52.1, 46.9} }, symbol = { "2" },
tooltiptxt = "Lvl63 Elite", lootid = "AQ20CAPTIAN" },
798,6 → 830,8
displayname = "Das scharlachrote Kloster",
displayshort = "SM",
continent = 2,
toMap = "Das scharlachrote Kloster"..AM_EXTERIOR,
toWorldMap = "Tirisfal",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ScarletMonastery",
location = "Tirisfal (83.6, 34)",
levels = "30-40",
805,7 → 839,7
prereq = "",
general = "",
dtl1 = { text = "Eingang Friedhof", colour = AM_GREEN, coords = { {61, 97} }, symbol = { "G" },
tooltiptxt = "", toMap = "Das scharlachrote Kloster"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Tirisfal", toMap = "Das scharlachrote Kloster"..AM_EXTERIOR, },
dtl2 = { text = "Eisenstachel", colour = AM_RED, coords = { {21, 88} }, symbol = { "1" },
tooltiptxt = "Lvl33 Elite Undead\nGraveyard", special = AM_RARE, lootid = "SMIronspine" },
dtl3 = { text = "Azshir der Schlaflose", colour = AM_RED, coords = { {5, 88} }, symbol = { "2" },
843,6 → 877,7
displayname = "Tempel von Ahn'Qiraj",
displayshort = "AQ40",
continent = 1,
toWorldMap = "Silithus",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TempleofAhnQiraj", -- TempleofAhnQiraj
location = "Silithus (29, 96)",
levels = "60+",
850,7 → 885,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {16, 37} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Silithus", leaveGap = 1 },
dtl2 = { text = "Arygos\n& Caelestrasz\n& Merithra des Traums", colour = AM_BLUE, coords = { {21, 56} }, symbol = { "A" },
tooltiptxt = "" },
dtl3 = { text = "Andorgos\n& Vethsera\n& Kandrostrasz", colour = AM_BLUE, coords = { {27, 43} }, symbol = { "B" },
892,6 → 927,8
displayname = "Die Todesminen",
displayshort = "DM",
continent = 2,
toMap = "Die Todesminen"..AM_EXTERIOR,
toWorldMap = "Westfall",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheDeadmines",
location = "Westfall (42, 72)",
levels = "16-26",
899,7 → 936,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {12, 23} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Die Todesminen"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Westfall", toMap = "Die Todesminen"..AM_EXTERIOR, },
dtl2 = { text = AM_INSTANCE_EXITS, colour = AM_RED, coords = { {99, 42} }, symbol = { AM_EXIT_SYMBOL },
tooltiptxt = "" },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {80, 40} }, symbol = { AM_CHEST_SYMBOL },
930,6 → 967,7
type = AM_TYP_INSTANCE,
displayname = "Das Verlies",
continent = 2,
toWorldMap = "Stormwind",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheStockade",
location = "Stormwind",
levels = "24-32",
937,7 → 975,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {50, 74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Stormwind", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {69, 60}, {75, 40}, {26, 57}, {31, 36}, {18, 29} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Targorr der Schreckliche", colour = AM_RED, coords = { {58, 63}, {41, 55}, {50, 37}, {27, 50} }, symbol = { "1" },
959,6 → 997,8
displayname = "Der versunkene Tempel",
displayshort = "ST",
continent = 2,
toMap = "Der versunkene Tempel"..AM_EXTERIOR,
toWorldMap = "SwampOfSorrows",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSunkenTemple",
location = "S\195\188mpfe des Elends (70, 53)",
levels = "45-60",
966,7 → 1006,7
prereq = "",
general = "Tempel Atal'Hakkar",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {62, 7} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Der versunkene Tempel"..AM_EXTERIOR },
tooltiptxt = "", toMap = "Der versunkene Tempel"..AM_EXTERIOR, },
dtl2 = { text = "Treppen zum Unten", colour = AM_GREEN, coords = { {54, 11.3}, {13.9, 47} }, symbol = { "SL" },
tooltiptxt = "" },
dtl3 = { text = "Treppen", colour = AM_GREEN, coords = { {69, 11.3} }, symbol = { "SM" },
1007,6 → 1047,8
type = AM_TYP_INSTANCE,
displayname = "Uldaman",
continent = 2,
toMap = "Uldaman"..AM_EXTERIOR,
toWorldMap = "Badlands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Uldaman",
location = "Das \195\150dland (44, 12)",
levels = "35-50",
1014,9 → 1056,9
prereq = "",
general = "",
dtl1 = { text = "Eingang (Vorne)", colour = AM_GREEN, coords = { {89, 73.1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Uldaman"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Badlands", toMap = "Uldaman"..AM_EXTERIOR, },
dtl2 = { text = "Eingang (Hinten)", colour = AM_GREEN, coords = { {21, 71} }, symbol = { "XR" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Badlands", toMap = "Uldaman"..AM_EXTERIOR, leaveGap = 1 },
dtl3 = { text = "Baelog", colour = AM_RED, coords = { {73, 93} }, symbol = { "1" },
tooltiptxt = "Lvl41 Elite" },
dtl4 = { text = "\195\156berreste eines Paladins", colour = AM_ORANGE, coords = { {62.8, 63.2} }, symbol = { "2" },
1050,6 → 1092,8
displayname = "Die H\195\182hlen des Wehklagens",
displayshort = "WC",
continent = 1,
toMap = "Die H\195\182hlen des Wehklagens"..AM_EXTERIOR,
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\WailingCaverns",
location = "Brachland (46, 36)",
levels = "16-25",
1057,7 → 1101,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {44, 58} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Die H\195\182hlen des Wehklagens"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Barrens", toMap = "Die H\195\182hlen des Wehklagens"..AM_EXTERIOR, },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {62, 47}, {94, 49} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "J\195\188nger von Naralex", colour = AM_BLUE, coords = { {45, 53} }, symbol = { "1" },
1091,6 → 1135,7
displayname = "Zul'Farrak",
displayshort = "ZF",
continent = 1,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulFarrak",
location = "Tanaris (37, 15)",
levels = "43-47",
1098,7 → 1143,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {69, 89} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", leaveGap = 1, toWorldMap = "Tanaris", },
dtl2 = { text = "Zerillis", colour = AM_RED, coords = { {63, 47} }, symbol = { "1" },
tooltiptxt = "Lvl45 Elite Mensch", special = AM_RARE.." "..AM_WANDERS, lootid = "ZFZerillis" },
dtl3 = { text = "Sandarr Dunereaver", colour = AM_RED, coords = { {55, 59} }, symbol = { "2" },
1136,6 → 1181,7
displayname = "Zul'Gurub",
displayshort = "ZG",
continent = 2,
toWorldMap = "Stranglethorn",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulGurub",
location = "Schlingendorntal (54, 17)",
levels = "60+",
1143,9 → 1189,9
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {12, 50} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Stranglethorn", },
dtl2 = { text = "Schlammiges aufgew\195\188hltes Gew\195\164sser", colour = AM_BLUE, coords = { {33, 41}, {47, 48}, {57, 47}, {60, 32}, {47, 30} }, symbol = { "W" },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Stranglethorn",leaveGap = 1 },
dtl3 = { text = "Hohepriesterin Jeklik", colour = AM_RED, coords = { {34, 78} }, symbol = { "1" },
tooltiptxt = "Boss Mensch", special = "(Bat)", lootid = "ZGJeklik" },
dtl4 = { text = "Hohepriester Venoxis", colour = AM_RED, coords = { {56, 57} }, symbol = { "2" },
1188,6 → 1234,7
type = AM_TYP_INSTANCE,
displayname = "Scholomance",
continent = 2,
toWorldMap = "WesternPlaguelands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Scholomance", -- Scholomance*
location = "Die westlichen Pestl\195\164nder (69, 73)",
levels = "56-60",
1195,7 → 1242,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {24, 30} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "WesternPlaguelands", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {28, 38} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "" },
dtl3 = { text = AM_INSTANCE_STAIRS, colour = AM_GREEN, coords = { {6.5, 22}, {62, 22} }, symbol = { "S1" },
1252,6 → 1299,7
type = AM_TYP_INSTANCE,
displayname = "Stratholme",
continent = 2,
toWorldMap = "EasternPlaguelands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Stratholme",
location = "Die \195\182stlichen Pestl\195\164nder (30, 12)",
levels = "55-60",
1259,7 → 1307,7
prereq = "",
general = "Side entrance at EP (47, 24)",
dtl1 = { text = "Haupteingang", colour = AM_GREEN, coords = { {50, 91} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "EasternPlaguelands", },
dtl2 = { text = "Seiteneingang", colour = AM_GREEN, coords = { {83, 72} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Fras Siabis Briefkasten", colour = AM_ORANGE, coords = { {37, 86} }, symbol = { "P1" },
1321,6 → 1369,7
displayname = "SBurg Shadowfang",
displayshort = "BSF",
continent = 2,
toWorldMap = "Silverpine",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ShadowfangKeep",
location = "Silberwald (45, 67)",
levels = "20-30",
1328,7 → 1377,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {75, 69} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Silverpine", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {57, 57}, {36, 55}, {29, 12} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "" },
dtl3 = { text = "Zinnen", colour = AM_BLUE, coords = { {38, 71}, {54, 93} }, symbol = { "B1" },
1370,6 → 1419,7
displayname = "HZ: H\195\182llenfeuerbollwerk",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCRampart", -- HCRampart
location = "H\195\182llenfeuerhalbinsel",
levels = "60-62",
1377,7 → 1427,7
prereq = "Key: Flammengeschmiedeter Schl\195\188ssel (Heroisch)",
general = "H\195\182llenfeuerzitadelle\nRuf: Thrallmar (Horde)\nRuf: Ehrenfeste (Allianz)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {62, 63} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "Wachhabender Gargolmar", colour = AM_RED, coords = { {80, 24} }, symbol = { "1" },
tooltiptxt = "", special = AM_WANDERS, lootid = "HCRampWatchkeeper" },
dtl3 = { text = "Omor der Narbenlose", colour = AM_RED, coords = { {22, 14} }, symbol = { "2" },
1395,6 → 1445,7
displayname = "HZ: Der Blutkessel",
displayshort = "BF",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCBloodFurnace", -- HCBloodFurnace
location = "H\195\182llenfeuerhalbinsel",
levels = "61-63",
1402,7 → 1453,7
prereq = "Key: Flammengeschmiedeter Schl\195\188ssel (Heroisch)",
general = "H\195\182llenfeuerzitadelle\nRuf: Thrallmar (Horde)\nRuf: Ehrenfeste (Allianz)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {50, 91.8} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "Der Sch\195\182pfer", colour = AM_RED, coords = { {29.3, 35} }, symbol = { "1" },
tooltiptxt = "", lootid = "HCFurnaceMaker" },
dtl3 = { text = "Broggok", colour = AM_RED, coords = { {41, 13.1} }, symbol = { "2" },
1416,6 → 1467,7
displayname = "HZ: Die zerschmetterten Hallen",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCShatteredHalls", -- HCShatteredHalls
location = "H\195\182llenfeuerhalbinsel",
levels = "70-72",
1423,7 → 1475,7
prereq = "Key: Flammengeschmiedeter Schl\195\188ssel (Heroisch)",
general = "H\195\182llenfeuerzitadelle\nRuf: Thrallmar (Horde)\nRuf: Ehrenfeste (Allianz)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {67, 97.66} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "Randy Sauseritzel", colour = AM_RED, coords = { {23.63, 74.8} }, symbol = { "1" },
tooltiptxt = "", special = "(Allianz, Heroisch)" },
dtl3 = { text = "Drisella", colour = AM_RED, coords = { {23.63, 74.8} }, symbol = { " " },
1459,6 → 1511,7
displayname = "HZ: Magtheridons Kammer",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MagtheridonsLair", -- MagtheridonsLair
location = "H\195\182llenfeuerhalbinsel",
levels = "70",
1466,7 → 1519,7
prereq = "Key: Flammengeschmiedeter Schl\195\188ssel (Heroisch)",
general = "H\195\182llenfeuerzitadelle\nRuf: Thrallmar (Horde)\nRuf: Ehrenfeste (Allianz)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {23.44, 14.26} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "Magtheridon", colour = AM_PURPLE, coords = { {53.13, 72.07} }, symbol = { "1" },
tooltiptxt = "", lootid = "HCMagtheridon", leaveGap = 1 }
},
1476,6 → 1529,8
displayname = "EK: Die Sklavenunterk\195\188nfte",
displayshort = "SU",
continent = 3,
toMap = "Der Echsenkessel"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSlavePens", -- TheSlavePens
location = "Zangarmarschen",
levels = "62-64",
1483,7 → 1538,7
prereq = "Key: Schl\195\188ssel des Kessels (Heroisch)",
general = "Der Echsenkessel\nRuf: Expedition des Cenarius",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {23.24, 21.29} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Der Echsenkessel"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "Der Echsenkessel"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Mennu der Verr\195\164ter", colour = AM_RED, coords = { {48.83, 31.84} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRSlaveMennu" },
dtl3 = { text = "J\195\164ter Gr\195\188ndaum", colour = AM_RED, coords = { {48.83, 71.29} }, symbol = { "2" },
1503,6 → 1558,8
displayname = "EK: Der Tiefensumpf",
displayshort = "",
continent = 3,
toMap = "Der Echsenkessel"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheUnderbog", -- TheUnderbog
location = "Zangarmarschen",
levels = "63-65",
1510,7 → 1567,7
prereq = "Key: Schl\195\188ssel des Kessels (Heroisch)",
general = "Der Echsenkessel\nRuf: Expedition des Cenarius",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {120, 346} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Der Echsenkessel"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "Der Echsenkessel"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Hungarfenn", colour = AM_RED, coords = { {71.09, 83.79} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRUnderHungarfen" },
dtl3 = { text = "Die Tiefenspore", colour = AM_RED, coords = { {71.09, 83.79} }, symbol = { " " },
1532,6 → 1589,8
displayname = "EK: Die Dampfkammer",
displayshort = "DK",
continent = 3,
toMap = "Der Echsenkessel"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSteamvault", -- The Steamvault
location = "Zangarmarschen",
levels = "70-72",
1539,7 → 1598,7
prereq = "Key: Schl\195\188ssel des Kessels (Heroisch)",
general = "Der Echsenkessel\nRuf: Expedition des Cenarius",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {1.56, 35.74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Der Echsenkessel"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "Der Echsenkessel"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Wasserbeschw\195\182rerin Thespia", colour = AM_RED, coords = { {54.3, 17.19} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRSteamThespia" },
dtl3 = { text = "Hautpkammer Zugangskonsole", colour = AM_RED, coords = { {54.3, 17.19} }, symbol = { " " },
1563,6 → 1622,8
displayname = "EK: H\195\182hle des Schlangenschreins",
displayshort = "SC",
continent = 3,
toMap = "Der Echsenkessel"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\SerpentShrine", -- SerpentshrineCavern
location = "Zangarmarschen",
levels = "70",
1570,7 → 1631,7
prereq = "",
general = "Der Echsenkessel\nRuf: Expedition des Cenarius",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {1.56, 67.19} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Der Echsenkessel"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "Der Echsenkessel"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Hydross der Unstete", colour = AM_RED, coords = { {37.89, 75} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRSerpentHydross" },
dtl3 = { text = "Das Grauen aus der Tiefe", colour = AM_RED, coords = { {40.82, 54.1} }, symbol = { "2" },
1594,6 → 1655,8
displayname = "Auch: Auchenaikrypta",
displayshort = "Krypta",
continent = 3,
toMap = "Auchindoun"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AuchenaiCrypts", -- AuchenaiCrypts
location = "W\195\164lder von Terokkar",
levels = "64-66",
1601,7 → 1664,7
prereq = "Key: Schl\195\188ssel der Auchenai (Heroisch)",
general = "Auchindoun\nRuf: Unteres Viertel",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {22, 79.1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Shirrak der Totenw\195\164chter", colour = AM_RED, coords = { {44, 70} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchCryptsShirrak" },
dtl3 = { text = "Exarch Maladaar", colour = AM_RED, coords = { {88, 49} }, symbol = { "2" },
1619,6 → 1682,8
displayname = "Auch: Schattenlabyrinth",
displayshort = "SL",
continent = 3,
toMap = "Auchindoun"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ShadowLabyrinth", -- ShadowLabyrinth
location = "W\195\164lder von Terokkar",
levels = "65-67",
1626,7 → 1691,7
prereq = "Key: Schl\195\188ssel des Schattenlabyrinths\nKey: Schl\195\188ssel der Auchenai (Heroisch)",
general = "Auchindoun\nRuf: Unteres Viertel",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {6, 8.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Spion To'gun", colour = AM_RED, coords = { {14, 44} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "Botschafter H\195\182llenschlund", colour = AM_RED, coords = { {14, 44} }, symbol = { "2" },
1650,6 → 1715,8
displayname = "Auch: Sethekkhallen",
displayshort = "SH",
continent = 3,
toMap = "Auchindoun"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\SethekkHalls", -- SethekkHalls
location = "W\195\164lder von Terokkar",
levels = "67-69",
1657,7 → 1724,7
prereq = "Key: Schl\195\188ssel der Auchenai (Heroisch)\nKey: Mit Essenz erf\195\188llter Mondstein (Anzu)",
general = "Auchindoun\nRuf: Unteres Viertel",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {98, 46} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Dunkelwirker Syth", colour = AM_RED, coords = { {47.3, 64} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchSethekkDarkweaver" },
dtl3 = { text = "Lakka", colour = AM_RED, coords = { {47.3, 64} }, symbol = { " " },
1677,6 → 1744,8
displayname = "Auch: Managruft",
displayshort = "Gruft",
continent = 3,
toMap = "Auchindoun"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ManaTombs", -- ManaTombs
location = "W\195\164lder von Terokkar",
levels = "70-72",
1684,7 → 1753,7
prereq = "Key: Schl\195\188ssel der Auchenai (Heroisch)\nKey: Das Auge des Haramad (Ehrf\195\188rchtig, Yor)",
general = "Auchindoun\nRuf: Das Konsortium",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18, 4.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "Auchindoun"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "Pandemonius", colour = AM_RED, coords = { {46, 30} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchManaPandemonius" },
dtl3 = { text = "Schattenlord Xiraxis", colour = AM_RED, coords = { {46, 30} }, symbol = { " " },
1710,6 → 1779,7
displayname = "Gruuls Unterschlupf",
displayshort = "GL",
continent = 3,
toWorldMap = "BladesEdgeMountains",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\GruulsLair", -- GruulsLair
location = "Schergrat",
levels = "65-68",
1717,7 → 1787,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {0, 0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BladesEdgeMountains", leaveGap = 1 },
dtl2 = { text = "High King Maulgar", colour = AM_RED, coords = { {55, 48} }, symbol = { "1" },
tooltiptxt = "Boss", lootid = "GruulsLairHighKingMaulgar" },
dtl3 = { text = "Gicherer der Wahnsinnige", colour = AM_RED, coords = { {55, 48} }, symbol = { " " },
1737,7 → 1807,7
displayname = "Der Schwarze Tempel",
displayshort = "BT",
continent = 3,
-- filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Placeholder",
toWorldMap = "ShadowmoonValley",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackTemple", -- BlackTemple
location = "Schattenmondtal",
levels = "67-70",
1745,7 → 1815,7
prereq = "Zugangsquest erforderlich\nKey: Medaillon von Karabor",
general = "Ruf: Todesh\195\182rige der Aschenzungen",
dtl1 = { text = "Der Schwarze Tempel (Anfang)", colour = AM_ORANGE, coords = { {5.27, 32.03} }, symbol = { "-" },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "ShadowmoonValley", },
dtl2 = { text = "Der Schwarze Tempel (Spitze)", colour = AM_ORANGE, coords = { {49.61, 5.66} }, symbol = { "^" },
tooltiptxt = "" },
dtl3 = { text = "Der Schwarze Tempel (Keller)", colour = AM_ORANGE, coords = { {63.87, 60.74} }, symbol = { "v" },
1811,6 → 1881,7
displayname = "FdS: Mechanar",
displayshort = "Mech",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Mechanar", -- TheMechanar
location = "Nethersturm",
levels = "69-72",
1818,7 → 1889,7
prereq = "Key: Warpgeschmiedeter Schl\195\188ssel (Heroisch)",
general = "Festung der St\195\188rme\nRuf: Die Sha'tar",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {43, 92.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "Torw\195\164chter Gyrotod", colour = AM_RED, coords = { {46, 56} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKMechGyro" },
dtl3 = { text = "Torw\195\164chter Eisenhand", colour = AM_RED, coords = { {64.5, 52} }, symbol = { "2" },
1842,6 → 1913,7
displayname = "FdS: Botanica",
displayshort = "Bota",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Botanica", -- TheBotanica
location = "Nethersturm",
levels = "70-72",
1849,7 → 1921,7
prereq = "Key: Warpgeschmiedeter Schl\195\188ssel (Heroisch)",
general = "Festung der St\195\188rme\nRuf: Die Sha'tar",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {96.2, 44.8} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "Commander Sarannis", colour = AM_RED, coords = { {45, 30} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKBotSarannis" },
dtl3 = { text = "High Botanist Freywinn", colour = AM_RED, coords = { {24, 30} }, symbol = { "2" },
1869,6 → 1941,7
displayname = "FdS: Arcatraz",
displayshort = "Arca",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Arcatraz", -- TheArcatraz
location = "Nethersturm",
levels = "70-72",
1876,7 → 1949,7
prereq = "Key: Schl\195\188ssel zu Arkatraz\nKey: Warpgeschmiedeter Schl\195\188ssel (Heroisch)",
general = "Festung der St\195\188rme\nRuf: Die Sha'tar",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {38, 98} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "Zereketh der Unabh\195\164ngige", colour = AM_RED, coords = { {45.5, 58.5} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKArcUnbound" },
dtl3 = { text = "Zereketh der Unabh\195\164ngige", colour = AM_RED, coords = { {47.46, 37.3} }, symbol = { "2" },
1904,6 → 1977,8
displayname = "HdZ: Vorgebirge des Alten H\195\188gellands",
displayshort = "HdZ1",
continent = 1,
toMap = "H\195\182hlen der Zeit"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\OldHilsbrad", -- OldHilsbrad
location = "H\195\182hlen der Zeit",
levels = "",
1911,7 → 1986,7
prereq = "Zugangsquest erforderlich\nKey: Schl\195\188ssel der Zeit (Heroisch)",
general = "Tanaris\nEreignis: Flucht aus Burg Durnholde\nRuf: H\195\188ter der Zeit",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {13, 47} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "H\195\182hlen der Zeit"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toMap = "H\195\182hlen der Zeit"..AM_EXTERIOR, toWorldMap = "Tanaris", leaveGap = 1 },
dtl2 = { text = "Erozion", colour = AM_GREEN, coords = { {13, 47} }, symbol = { " " },
tooltiptxt = "" },
dtl3 = { text = "Brazen", colour = AM_GREEN, coords = { {13, 47} }, symbol = { " " },
1947,6 → 2022,8
displayname = "HdZ: Schwarzen Morast",
displayshort = "HdZ2",
continent = 1,
toMap = "H\195\182hlen der Zeit"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackMorass", -- The Black Morass
location = "H\195\182hlen der Zeit",
levels = "",
1954,7 → 2031,7
prereq = "Zugangsquest erforderlich\nKey: Schl\195\188ssel der Zeit (Heroisch)",
general = "Tanaris\nEreignis: \195\182ffnung des Dunklen Portals\nRuf: H\195\188ter der Zeit",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45.4, 22} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "H\195\182hlen der Zeit"..AM_EXTERIOR, special = "Sa'at", leaveGap = 1 },
tooltiptxt = "", toMap = "H\195\182hlen der Zeit"..AM_EXTERIOR, special = "Sa'at", toWorldMap = "Tanaris", leaveGap = 1 },
dtl2 = { text = "Spawnpunkte", colour = AM_RED, coords = { {58, 70}, {58.5, 61.5}, {41, 60.5}, {48, 52.5} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "Chronolord Deja", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
1972,6 → 2049,8
displayname = "HdZ: Die Schlacht am Berg Hyjal",
displayshort = "HdZ3",
continent = 1,
toMap = "H\195\182hlen der Zeit"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MountHyjal", -- Battle for Mount Hyjal
location = "H\195\182hlen der Zeit",
levels = "70",
1979,7 → 2058,7
prereq = "Zugangsquest erforderlich",
general = "Tanaris\nEreignis: Schlacht um Berg Hyjal\nRuf: Die W\195\164chter der Sande",
dtl1 = { text = "Basis der Allianz", colour = AM_GREEN, coords = { {18.36, 48.83} }, symbol = { "A" },
tooltiptxt = "", toMap = "H\195\182hlen der Zeit"..AM_EXTERIOR, special = "(Lady Jaina Prachtmeer)" },
tooltiptxt = "", toMap = "H\195\182hlen der Zeit"..AM_EXTERIOR, toWorldMap = "Tanaris", special = "(Lady Jaina Prachtmeer)" },
dtl2 = { text = "Basis der Horde", colour = AM_GREEN, coords = { {57.23, 35.74} }, symbol = { "B" },
tooltiptxt = "", special = "(Thrall)" },
dtl3 = { text = "Basis der Nachtelfen", colour = AM_GREEN, coords = { {75.39, 44.34} }, symbol = { "C" },
1993,11 → 2072,11
dtl7 = { text = "Azgalor", colour = AM_RED, coords = { {58.98, 38.67} }, symbol = { "4" },
tooltiptxt = "", lootid = "MountHyjalAzgalor" },
dtl8 = { text = "Archimonde", colour = AM_RED, coords = { {83.01, 31.25} }, symbol = { "5" },
tooltiptxt = "", lootid = "MountHyjalArchimonde" },
-- dtl9 = { text = "Indormi", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
-- tooltiptxt = "" },
-- dtl10 = { text = "Tydormu", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
-- tooltiptxt = "" },
tooltiptxt = "", lootid = "MountHyjalArchimonde", leaveGap = 1, },
dtl9 = { text = "Indormi", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "" },
dtl10 = { text = "Tydormu", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "" },
},
 
{ name = "Karazahn", -- Karazahn
2005,6 → 2084,8
displayname = "Karazahn",
displayshort = "Kara",
continent = 2,
toMap = "Karazhan"..AM_EXTERIOR,
toWorldMap = "DeadwindPass",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Karazahn", -- Karazahn
location = "Deadwind Pass",
levels = "70",
2012,9 → 2093,9
prereq = "Zugangsquest erforderlich\nKey: Der Schl\195\188ssel des Meisters\nKey: Geschw\195\164rzte Urne (Schrecken der Nacht)",
general = "Ruf: Das Violette Auge",
dtl1 = { text = "Eingang (Vorne)", colour = AM_GREEN, coords = { {29.88, 31.45} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Karazhan"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toMap = "Karazhan"..AM_EXTERIOR, toWorldMap = "DeadwindPass", leaveGap = 1 },
dtl2 = { text = "Eingang (Hinten)", colour = AM_GREEN, coords = { {28.13, 20.31} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Karazhan"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toMap = "Karazhan"..AM_EXTERIOR, toWorldMap = "DeadwindPass", leaveGap = 1 },
dtl3 = { text = "Hastings", colour = AM_BLUE, coords = { {27.93, 25.39} }, symbol = { "a" },
tooltiptxt = "", special = "Der Hauswart" },
dtl4 = { text = "Berthold", colour = AM_BLUE, coords = { {23.05, 25.98} }, symbol = { "b" },
2118,6 → 2199,7
displayname = "Zul'Aman",
displayshort = "ZA",
continent = 2,
toWorldMap = "Ghostlands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulAman", -- Zul'Aman
location = "Geisterlande",
levels = "70",
2125,7 → 2207,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18, 53} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Ghostlands", leaveGap = 1 },
dtl2 = { text = "Nalorakk", colour = AM_RED, coords = { {36.3, 71.9} }, symbol = { "1" },
tooltiptxt = "", special = "(B\195\164r)", lootid = "ZANalorakk" },
dtl3 = { text = "Akil'zon", colour = AM_RED, coords = { {31.25, 31.25} }, symbol = { "2" },
2145,6 → 2227,7
displayname = "FdS: Festung der St\195\188rme",
displayshort = "FdS",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheEye", -- TheEye
location = "Nethersturm",
levels = "70",
2152,7 → 2235,7
prereq = "Key: Schl\195\188ssel der St\195\188rme",
general = "Ruf: Die Sha'tar",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45, 93} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "Al'ar", colour = AM_RED, coords = { {50, 57} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKEyeAlar" },
dtl3 = { text = "Leerh\195\164scher", colour = AM_RED, coords = { {14, 47} }, symbol = { "2" },
2180,6 → 2263,7
displayname = "Terrasse der Magister",
displayshort = "MagT",
continent = 2,
toWorldMap = "Sunwell",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MagistersTerrace", -- Magister's Terrace
location = "Insel von Quel'Danas",
levels = "69-72",
2187,7 → 2271,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {42.19, 78.32} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Sunwell", leaveGap = 1 },
dtl2 = { text = "Selin Feuerherz", colour = AM_RED, coords = { {42.19, 26.17} }, symbol = { "1" },
tooltiptxt = "", lootid = "SMTFireheart" },
-- dtl3 = { text = "Fel Crystals", colour = AM_ORANGE, coords = { {43.36, 37.5}, {43.36, 50.2}, {42.19, 29.88}, {50.39, 50.2}, {50.39, 37.5} }, symbol = { "C" },
2214,6 → 2298,7
displayname = "Sonnenbrunnenplateau",
displayshort = "SunP",
continent = 2,
toWorldMap = "Sunwell",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\SunwellPlateau", -- Sunwell Plateau
location = "Insel von Quel'Danas",
levels = "69-72",
2221,7 → 2306,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {31.45, 17.19} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Sunwell", leaveGap = 1 },
dtl2 = { text = "Kalecgos", colour = AM_RED, coords = { {30.08, 32.03} }, symbol = { "1" },
tooltiptxt = "", lootid = "SPKalecgos" },
dtl3 = { text = "Sathrovarr der Verderber", colour = AM_RED, coords = { {30.08, 32.03} }, symbol = { " " },
2256,6 → 2341,7
displayname = "Hallen des Steins",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\StoneHalls",
location = "Sturmgipfel",
levels = "80",
2263,7 → 2349,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {26.5625, 41.0156} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "TheStormPeaks", leaveGap = 1, },
dtl2 = { text = "Maid des Leids", colour = AM_RED, coords = { {48.85, 81.7} }, symbol = { "1" },
tooltiptxt = "", lootid = "HallsofStone", },
dtl3 = { text = "Krystallus", colour = AM_RED, coords = { {37.1094, 58.3984} }, symbol = { "2" },
2279,6 → 2365,7
displayname = "Turm Utgarde",
displayshort = "",
continent = 4,
toWorldMap = "HowlingFjord",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardePinnacle",
location = "Heulender Fjord",
levels = "80",
2286,7 → 2373,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {36.91, 7.03} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "HowlingFjord", leaveGap = 1, },
dtl2 = { text = "Brigg Smallshanks", colour = AM_BLUE, coords = { {36.91, 13.33} }, symbol = { "Q" },
tooltiptxt = "Quests : \n Junk in My Trunk\n Vengeance Be Mine!", leaveGap = 1, },
dtl3 = { text = "Svala Kummergrab", colour = AM_RED, coords = { {43.94, 78.515} }, symbol = { "1" },
2306,6 → 2393,7
displayname = "Der Nexus",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Nexus",
location = "Boreanische Tundra",
levels = "71-73",
2313,7 → 2401,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {30.63, 86.34} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "BoreanTundra", leaveGap = 1, },
dtl2 = { text = "Ormorok der Baumformer", colour = AM_RED, coords = { {58.47, 71.85} }, symbol = { "1" },
tooltiptxt = "", lootid = "TheNexus", },
dtl3 = { text = "Großmagierin Telestra", colour = AM_RED, coords = { {19.55, 41.74} }, symbol = { "2" },
2322,6 → 2410,8
tooltiptxt = "", lootid = "TheNexus", },
dtl5 = { text = "Keristrasza", colour = AM_RED, coords = { {30.91, 67.02} }, symbol = { "4" },
tooltiptxt = "", lootid = "TheNexusKeristraszaHEROIC", },
dtl6 = { text = "Commander Stoutbeard", colour = AM_RED, coords = { {35.7, 43.2} }, symbol = { "5" },
tooltiptxt = "", lootid = "TheNexusHEROIC", leaveGap = 1, },
},
 
{ name = "Ahn'Kahet", -- Ahn'Kahet
2329,6 → 2419,7
displayname = "Ahn'Kahet",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AhnkahetTOK",
location = "Drachenöde",
levels = "73-75",
2336,7 → 2427,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {87.304, 71.875} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "Dragonblight", },
dtl2 = { text = "Ältestester Nadox", colour = AM_RED, coords = { {68.75, 40.43} }, symbol = { "1" },
tooltiptxt = "", lootid = "Ahnkahet", },
dtl3 = { text = "Ancient Nerubian Device", colour = AM_BLUE, coords = { {56.836, 35.9375} }, symbol = { "{}" },
2349,6 → 2440,8
tooltiptxt = "", lootid = "Ahnkahet", },
dtl7 = { text = "Verkünder Volazj", colour = AM_RED, coords = { {30.273, 54.883} }, symbol = { "4" },
tooltiptxt = "", lootid = "Ahnkahet", },
dtl8 = { text = "Amanitar", colour = AM_RED, coords = { {65.7, 66.8} }, symbol = { "5" },
tooltiptxt = "", special = "(Heroic)", lootid = "AhnkahetHEROIC", },
},
 
{ name = "Kammer der Aspekte", -- The Obsidian Sanctum
2356,6 → 2449,7
displayname = "Kammer der Aspekte",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\CoAB",
location = "Wyrmrest Temple, Drachenöde",
levels = "Raid",
2363,7 → 2457,7
prereq = "",
general = "Chamber of Aspects\nLeave Minibosses alive for a tougher Sartharion fight\n and better loot",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {74.65, 49.29} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "Dragonblight", leaveGap = 1, },
dtl2 = { text = "Vesperon", colour = AM_RED, coords = { {59.96, 55.03} }, symbol = { "1" },
tooltiptxt = "", },
dtl3 = { text = "Tenebron", colour = AM_RED, coords = { {40.67, 46.30} }, symbol = { "1" },
2379,14 → 2473,15
displayname = "Feste Drak'Tharon Unten",
displayshort = "",
continent = 4,
toWorldMap = "GrizzlyHills",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DrakTharonLower",
location = "Heulender Fjord",
location = "Grizzlyhügel",
levels = "74-76",
players = "",
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {10.26, 84.65} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "GrizzlyHills", leaveGap = 1, },
dtl2 = { text = "Trollrippe", colour = AM_RED, coords = { {53.13, 25.11} }, symbol = { "1" },
tooltiptxt = "", lootid = "DrakTharonKeep", },
dtl3 = { text = "Novos der Beschwörer", colour = AM_RED, coords = { {71.46, 54.22} }, symbol = { "2" },
2404,8 → 2499,10
displayname = "Feste Drak'Tharon Oben",
displayshort = "",
continent = 4,
toWorldMap = "GrizzlyHills",
toMap = "Feste Drak'Tharon",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DrakTharonUpper",
location = "Heulender Fjord",
location = "Grizzlyhügel",
levels = "74-76",
players = "",
prereq = "",
2425,6 → 2522,7
displayname = "Gun'Drak",
displayshort = "",
continent = 4,
toWorldMap = "ZulDrak",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\GunDrak",
location = "Zul'Drak",
levels = "74-77",
2432,7 → 2530,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {31.055, 36.328}, {70.3125, 36.328} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "ZulDrak", },
dtl2 = { text = "Slad'ran", colour = AM_RED, coords = { {62.695, 48.828} }, symbol = { "1" },
tooltiptxt = "", lootid = "Gundrak", },
dtl3 = { text = "Moorabi", colour = AM_RED, coords = { {38.672, 48.828} }, symbol = { "1" },
2448,6 → 2546,7
displayname = "Das Oculus",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Oculus",
location = "Boreanische Tundra",
levels = "80",
2455,7 → 2554,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {60.64, 52.67} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "BoreanTundra", leaveGap = 1, },
dtl2 = { text = AM_LEADSTO, colour = AM_BLUE, coords = { {43.43, 52.36}, {52.65, 62.81} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1, },
dtl3 = { text = "Drakos der Fragensteller", colour = AM_RED, coords = { {52.65, 62.81} }, symbol = { "1" },
2479,6 → 2578,7
displayname = "Hallen der Blitze",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HoL",
location = "Sturmgipfel",
levels = "77-79",
2486,7 → 2586,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {13.4, 38.086} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "TheStormPeaks", leaveGap = 1, },
dtl2 = { text = "General Bjarngrin", colour = AM_RED, coords = { {54.1, 46.29} }, symbol = { "1" },
tooltiptxt = "", special = AM_WANDERS, lootid = "HoLGjarngrin", },
dtl3 = { text = "Volkhan", colour = AM_RED, coords = { {66.797, 37.89} }, symbol = { "2" },
2502,6 → 2602,7
displayname = "Vault of Archavon",
displayshort = "",
continent = 4,
toWorldMap = "LakeWintergrasp",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Archavon",
location = "Tausendwinter",
levels = "77-79",
2509,7 → 2610,7
prereq = "Faction must claim victory in Tausendwinter",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {39.6, 97.656} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "LakeWintergrasp", },
dtl2 = { text = "Archavon the Stone Watcher", colour = AM_RED, coords = { {39.6, 10.9375} }, symbol = { "1" },
tooltiptxt = "", },
},
2519,6 → 2620,7
displayname = "Burg Utgarde",
displayshort = "",
continent = 4,
toWorldMap = "HowlingFjord",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardeKeep",
location = "Heulender Fjord",
levels = "70-72",
2526,7 → 2628,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {68.16, 69.14} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "HowlingFjord", leaveGap = 1, },
dtl2 = { text = "Prinz Keleseth", colour = AM_RED, coords = { {17.578, 61.914} }, symbol = { "1" },
tooltiptxt = "", lootid = "UtgardeKeep", leaveGap = 1, },
dtl3 = { text = "Burg Utgarde 2", colour = AM_GREEN, coords = { {34.18, 80.86} }, symbol = { "P" },
2538,6 → 2640,8
displayname = "Burg Utgarde 2",
displayshort = "",
continent = 4,
toWorldMap = "HowlingFjord",
toMap = "Burg Utgarde",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardeKeep1",
location = "Heulender Fjord",
levels = "70-72",
2545,7 → 2649,7
prereq = "",
general = "",
dtl1 = { text = "Burg Utgarde", colour = AM_GREEN, coords = { {34.18, 80.86} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1, toMap = "Burg Utgarde", },
tooltiptxt = "", leaveGap = 1, toWorldMap = "HowlingFjord", toMap = "Burg Utgarde", },
dtl2 = { text = "Skarvald der Konstrukteur", colour = AM_RED, coords = { {61.133, 76.76} }, symbol = { "2" },
tooltiptxt = "", lootid = "UtgardeKeep", },
dtl3 = { text = "Dalronn der Kontrolleur", colour = AM_RED, coords = { {61.133, 76.76} }, symbol = { " " },
2559,6 → 2663,7
displayname = "Azjol-Nerub",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AzjolNerub",
location = "Drachenöde",
levels = "72-74",
2566,7 → 2671,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18.75, 63.28} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "Dragonblight", leaveGap = 1, },
dtl2 = { text = "Krik'thir der Torwächter", colour = AM_RED, coords = { {44.53, 42.773} }, symbol = { "1" },
tooltiptxt = "", lootid = "AzjolNerub", },
dtl3 = { text = "Hadronox", colour = AM_RED, coords = { {65.234, 42.773} }, symbol = { "2" },
2580,6 → 2685,7
displayname = "Azjol-Nerub Unten",
displayshort = "",
continent = 4,
toMap = "Azjol-Nerub",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AzjolNerubLower",
location = "Drachenöde",
levels = "72-74",
2597,28 → 2703,31
displayname = "Die Violette Festung",
displayshort = "",
continent = 4,
toWorldMap = "Dalaran",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\",
location = "Dalaran",
levels = "77-79",
players = "",
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {0, 0} }, symbol = { AM_ENTRANCE_SYMBOL },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45.4, 93.9} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toWorldMap = "Dalaran", },
dtl2 = { text = "Lieutenant Sinclari", colour = AM_GREEN, coords = { {45.4, 74.9} }, symbol = { "1" },
tooltiptxt = "", },
dtl2 = { text = "Lieutenant Sinclari", colour = AM_GREEN, coords = { {0, 0} }, symbol = { "1" },
tooltiptxt = "", },
dtl3 = { text = "Cyanigosa", colour = AM_RED, coords = { {0, 0} }, symbol = { "1" },
tooltiptxt = "", },
dtl4 = { text = "Xevozz", colour = AM_RED, coords = { {0, 0} }, symbol = { "2" },
tooltiptxt = "", },
dtl5 = { text = "Moragg", colour = AM_RED, coords = { {0, 0} }, symbol = { "3" },
tooltiptxt = "", },
dtl6 = { text = "Erekem", colour = AM_RED, coords = { {0, 0} }, symbol = { "4" },
tooltiptxt = "", },
dtl7 = { text = "Zuramot", colour = AM_RED, coords = { {0, 0} }, symbol = { "5" },
tooltiptxt = "", },
dtl8 = { text = "Lavanthor", colour = AM_RED, coords = { {0, 0} }, symbol = { "6" },
tooltiptxt = "", },
dtl3 = { text = "Ichoron", colour = AM_RED, coords = { {71.1, 24.3} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", },
dtl4 = { text = "Xevozz", colour = AM_RED, coords = { {19.9, 26.5} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12, Lower", },
dtl5 = { text = "Zuramat the Obliterator", colour = AM_RED, coords = { {19.9, 26.5} }, symbol = { " " },
tooltiptxt = "", special = "(Random) 6/12, Upper", },
dtl6 = { text = "Moragg", colour = AM_RED, coords = { {82.6, 44.9} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", },
dtl7 = { text = "Erekem", colour = AM_RED, coords = { {15.6, 54} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", },
dtl8 = { text = "Lavanthor", colour = AM_RED, coords = { {70.1, 67.4} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", leaveGap = 1, },
dtl9 = { text = "Cyanigosa", colour = AM_RED, coords = { {70.1, 67.4} }, symbol = { "18" },
tooltiptxt = "", special = "18th Wave", },
},
 
{ name = "Das Auge der Ewigkeit", -- The Eye of Eternity -- probably not worth including
2626,6 → 2735,7
displayname = "Das Auge der Ewigkeit",
displayshort = "",
continent = 4,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\",
location = "Boreanische Tundra",
levels = "80",
2633,7 → 2743,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {50, 50} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "Tanaris", },
dtl2 = { text = "Malygos", colour = AM_RED, coords = { {41.406, 27.93} }, symbol = { "1" },
tooltiptxt = "", lootid = "Malygos", },
},
2658,6 → 2768,8
displayname = "CoT: Old Stratholme",
displayshort = "CoT4",
continent = 1,
toMap = "H\195\182hlen der Zeit"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Oldstrat", -- Oldstratholme
location = "H\195\182hlen der Zeit",
levels = "",
2665,7 → 2777,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {91.85, 97.81} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "H\195\182hlen der Zeit"..AM_EXTERIOR, leaveGap = 1, },
tooltiptxt = "", toMap = "H\195\182hlen der Zeit"..AM_EXTERIOR, toWorldMap = "Tanaris", leaveGap = 1, },
dtl2 = { text = "Chromie", colour = AM_GREEN, coords = { {98.95, 94.12} }, symbol = { "A" },
tooltiptxt = "", },
dtl3 = { text = AM_LEADSTO, colour = AM_BLUE, coords = { {78.01, 77.53}, {51.06, 98.55} }, symbol = { "P", },
AlphaMapBeta/AlphaMap_Instances/localisation.tw.lua
24,6 → 24,8
displayname = "黑暗深淵",
displayshort = "BFD",
continent = 1,
toMap = "黑暗深淵"..AM_EXTERIOR,
toWorldMap = "Ashenvale",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackfathomDeeps",
location = "梣谷 (14, 14)",
levels = "24-32",
31,7 → 33,7
prereq = "",
general = "一些水下的區域",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {33, 10} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑暗深淵"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Ashenvale", toMap = "黑暗深淵"..AM_EXTERIOR },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {50, 68} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "加摩拉", colour = AM_RED, coords = { {23.5, 42} }, symbol = { "1" },
67,6 → 69,8
displayname = "黑石深淵",
displayshort = "BRD",
continent = 2,
toMap = "黑石山"..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackrockDepths",
location = "黑石山",
levels = "52-60",
74,7 → 78,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {21, 83} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑石山"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "黑石山"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "洛考爾", colour = AM_RED, coords = { {33, 80} }, symbol = { "1" },
tooltiptxt = "Lvl51 菁英元素怪", lootid = "BRDLordRoccor" },
dtl3 = { text = "審訊官格斯塔恩", colour = AM_RED, coords = { {38, 95} }, symbol = { "2" },
140,6 → 144,8
displayname = "黑石塔 (下層)",
displayshort = "LBRS",
continent = 2,
toMap = "黑石山"..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\LBRS", -- LBRS
location = "黑石山",
levels = "53-60",
147,7 → 153,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {9, 10} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑石山"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "黑石山"..AM_EXTERIOR },
dtl2 = { text = "黑石塔 (上層)", colour = AM_BLUE, coords = { {22, 4} }, symbol = { "U" },
tooltiptxt = "", toMap = "黑石塔 (上層)" },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {45.2, 29}, {73, 46} }, symbol = { "x1" },
209,6 → 215,8
displayname = "黑石塔 (上層)",
displayshort = "UBRS",
continent = 2,
toMap = "黑石山"..AM_EXTERIOR,
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UBRS", -- UBRS
location = "黑石山",
levels = "53-60",
216,7 → 224,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {3, 80.7} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑石山"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "黑石山"..AM_EXTERIOR },
dtl2 = { text = "黑石塔 (下層)", colour = AM_BLUE, coords = { {18.2, 86.6} }, symbol = { "L" },
tooltiptxt = "", toMap = "黑石塔", leaveGap = 1 },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {11.9, 58.4}, {8.65, 25} }, symbol = { "x1" },
258,6 → 266,8
displayname = "黑翼之巢",
displayshort = "BWL",
continent = 2,
toMap = "黑石塔 (上層)",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackwingLair",
location = "黑石塔",
levels = "60+",
265,7 → 275,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {65, 72} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑石塔 (上層)", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "黑石塔 (上層)", leaveGap = 1 },
dtl2 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {32.8, 78}, {61, 48} }, symbol = { "x1" },
tooltiptxt = "" },
dtl3 = { text = AM_LEADSTO, colour = AM_GREEN, coords = { {40, 96}, {68, 65} }, symbol = { "x2" },
297,6 → 307,8
displayname = "厄運之槌 - 概觀",
displayshort = "DM",
continent = 1,
toMap = "厄運之槌"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DireMaul",
location = "菲拉斯 (59, 44)",
levels = "56-60",
304,11 → 316,11
prereq = "",
general = "",
dtl1 = { text = "厄運之槌 (東)", colour = AM_GREEN, coords = { {53, 81}, {57, 96}, {100, 80} }, symbol = { "E" },
tooltiptxt = "按下以打開 '厄運之槌 (東)' 的地圖", toMap = "厄運之槌 (東)" },
tooltiptxt = "按下以打開 '厄運之槌 (東)' 的地圖", toMap = "厄運之槌"..AM_EXTERIOR },
dtl2 = { text = "厄運之槌 (北)", colour = AM_GREEN, coords = { {67.5, 38} }, symbol = { "N" },
tooltiptxt = "按下以打開 '厄運之槌 (北)' 的地圖", toMap = "厄運之槌 (北)" },
tooltiptxt = "按下以打開 '厄運之槌 (北)' 的地圖", toMap = "厄運之槌"..AM_EXTERIOR },
dtl3 = { text = "厄運之槌 (西)", colour = AM_GREEN, coords = { {47, 88} }, symbol = { "W" },
tooltiptxt = "按下以打開 '厄運之槌 (西)' 的地圖", toMap = "厄運之槌 (西)", leaveGap = 1 },
tooltiptxt = "按下以打開 '厄運之槌 (西)' 的地圖", toMap = "厄運之槌"..AM_EXTERIOR, leaveGap = 1 },
dtl4 = { text = "圖書館", colour = AM_BLUE, coords = { {24, 58}, {41, 41} }, symbol = { "L" },
tooltiptxt = "從北厄/西厄可以抵達", leaveGap = 1 }
},
319,6 → 331,12
displayname = "厄運之槌 (東)",
displayshort = "DM",
continent = 1,
toMap = "厄運之槌"..AM_EXTERIOR,
toMap = "厄運之槌"..AM_EXTERIOR,
toMap = "厄運之槌"..AM_EXTERIOR,
toMap = "厄運之槌"..AM_EXTERIOR,
toMap = "厄運之槌"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMEast", --DMEast
location = "菲拉斯 (59, 44)",
levels = "56-60",
326,9 → 344,9
prereq = "",
general = "",
dtl1 = { text = "入口 : Broken Commons", colour = AM_GREEN, coords = { {6, 58} }, symbol = { "X1" },
tooltiptxt = "", toMap = "厄運之槌"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "厄運之槌"..AM_EXTERIOR },
dtl2 = { text = "入口 : Eldereth Row", colour = AM_GREEN, coords = { {12, 92} }, symbol = { "X2" },
tooltiptxt = "", toMap = "厄運之槌"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "厄運之槌"..AM_EXTERIOR },
dtl3 = { text = "入口 : Pavillion", colour = AM_GREEN, coords = { {98, 64} }, symbol = { "X3" },
tooltiptxt = "" },
dtl4 = { text = AM_INSTANCE_EXITS, colour = AM_RED, coords = { {8, 40} }, symbol = { AM_EXIT_SYMBOL },
366,6 → 384,8
displayname = "厄運之槌 (北)",
displayshort = "DM",
continent = 1,
toMap = "厄運之槌"..AM_EXTERIOR,
toWorldMap = "Feralas",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMNorth", -- DMNorth
location = "菲拉斯 (59, 44)",
levels = "56-60",
373,7 → 393,7
prereq = "需要從東厄普希林拿到的月牙鑰匙",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {74, 74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "厄運之槌"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "厄運之槌"..AM_EXTERIOR },
dtl2 = { text = "厄運之槌 (西)", colour = AM_GREEN, coords = { {9, 98} }, symbol = { "W" },
tooltiptxt = "", toMap = "厄運之槌 (西)" },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {49.2, 59.4} }, symbol = { AM_CHEST_SYMBOL },
405,6 → 425,8
displayname = "厄運之槌 (西)",
displayshort = "DM",
continent = 1,
toWorldMap = "Feralas",
toMap = "厄運之槌"..AM_EXTERIOR,
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DMWest", -- DMWest
location = "菲拉斯 (59, 44)",
levels = "56-60",
412,9 → 434,9
prereq = "需要從東厄普希林拿到的月牙鑰匙",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {97, 78} }, symbol = { "X1" },
tooltiptxt = "", toMap = "厄運之槌"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "厄運之槌"..AM_EXTERIOR },
dtl2 = { text = "厄運之槌 (北)", colour = AM_GREEN, coords = { {66, 9} }, symbol = { "N" },
tooltiptxt = "", toMap = "厄運之槌 (北)", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Feralas", toMap = "厄運之槌 (北)", leaveGap = 1 },
dtl3 = { text = "階梯", colour = AM_BLUE, coords = { {49.2, 25}, {52, 60} }, symbol = { AM_STAIRS_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl4 = { text = "水晶塔", colour = AM_GREEN, coords = { {83, 80}, {64, 61}, {64, 87}, {27, 62}, {27, 37} }, symbol = { "P" },
447,6 → 469,8
type = AM_TYP_INSTANCE,
displayname = "諾姆瑞根",
continent = 2,
toMap = "諾姆瑞根"..AM_EXTERIOR,
toWorldMap = "DunMorogh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Gnomeregan",
location = "丹莫洛 (25, 41)",
levels = "26-33",
454,7 → 478,7
prereq = "",
general = "部落可由藏寶海灣傳送過來.\n起始任務來自奧格瑪工程師.",
dtl1 = { text = "正門入口 (Clockwerk Run)", colour = AM_GREEN, coords = { {70.5, 16} }, symbol = { "X1" },
tooltiptxt = "", toMap = "諾姆瑞根"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "DunMorogh", toMap = "諾姆瑞根"..AM_EXTERIOR },
dtl2 = { text = "後門入口 (車庫)", colour = AM_GREEN, coords = { {87, 59} }, symbol = { "X2" },
tooltiptxt = "需要車間鑰匙", toMap = "Gnomeregan"..AM_EXTERIOR },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {75, 38}, {79, 56} }, symbol = { AM_CHEST_SYMBOL },
489,6 → 513,8
type = AM_TYP_INSTANCE,
displayname = "瑪拉頓",
continent = 1,
toMap = "瑪拉頓"..AM_EXTERIOR,
toWorldMap = "Desolace",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Maraudon",
location = "淒涼之地 (29, 62)",
levels = "40-49",
496,7 → 522,7
prereq = "",
general = "",
dtl1 = { text = "入口 (橙區)", colour = AM_ORANGE, coords = { {71, 12} }, symbol = { "X1" },
tooltiptxt = "", toMap = "瑪拉頓"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Desolace", toMap = "瑪拉頓"..AM_EXTERIOR },
dtl2 = { text = "入口 (紫區)", colour = AM_PURPLE, coords = { {85, 31} }, symbol = { "X2" },
tooltiptxt = "", toMap = "瑪拉頓"..AM_EXTERIOR },
dtl3 = { text = "入口 (傳送)", colour = AM_GREEN, coords = { {36, 55} }, symbol = { "P" },
534,6 → 560,8
displayname = "熔火之心",
displayshort = "MC",
continent = 2,
toMap = "黑石深淵",
toWorldMap = "BurningSteppes",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MoltenCore",
location = "黑石深淵",
levels = "60+",
541,7 → 569,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {3, 20} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "黑石深淵", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BurningSteppes", toMap = "黑石深淵", leaveGap = 1 },
dtl2 = { text = "魯西弗隆", colour = AM_RED, coords = { {62, 35} }, symbol = { "1" },
tooltiptxt = "首領 人形", lootid = "MCLucifron" },
dtl3 = { text = "瑪格曼達", colour = AM_RED, coords = { {70, 16} }, symbol = { "2" },
572,6 → 600,7
type = AM_TYP_INSTANCE,
displayname = "納克薩瑪斯",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Naxxramas",
location = "斯坦索姆",
levels = "60+",
627,13 → 656,16
dtl24 = { text = "科爾蘇加德", colour = AM_RED, coords = { {75, 79} }, symbol = { "2" },
tooltiptxt = "冰霜巨龍的巢穴", lootid = "Naxx80KelThuzad", leaveGap = 2 },
dtl26 = { text = AM_MOB_LOOT, colour = AM_PURPLE, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "", lootid = "Naxx80Trash", leaveGap = 1 }
tooltiptxt = "", lootid = "Naxx80Trash", leaveGap = 1 },
dtl27 = { text = AM_INSTANCE_EXITS, colour = AM_BLUE, coords = { {1, 1} }, symbol = { "<-" },
tooltiptxt = "", toWorldMap = "Dragonblight", },
},
 
{ name = "奧妮克希亞的巢穴", -- Onyxia's Lair
type = AM_TYP_INSTANCE,
displayname = "奧妮克希亞的巢穴",
continent = 1,
toWorldMap = "Dustwallow",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\OnyxiasLair",
location = "塵泥沼澤 (52, 76)",
levels = "60+",
641,7 → 673,7
prereq = "需要龍火護符\n(完整的任務是在黑石塔上層殺死達基薩斯將軍)",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {9, 12} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Dustwallow", },
dtl2 = { text = "奧妮克希亞守衛", colour = AM_RED, coords = { {26, 41}, {29, 56}, {39, 68}, {50, 80} }, symbol = { "1" },
tooltiptxt = "Lvl62 菁英龍族" },
dtl3 = { text = "雛龍蛋", colour = AM_RED, coords = { {45, 40}, {51, 54}, {84, 41}, {79, 54} }, symbol = { "2" },
655,13 → 687,14
displayname = "怒焰裂谷",
displayshort = "RFC",
continent = 1,
toWorldMap = "Ogrimmar",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RagefireChasm", -- RagefireChasm
location = "奧格瑪",
levels = "13-18",
players = "10",
general = "",
dtl1 = { text = "入口", colour = AM_GREEN, coords = { {72, 4} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Ogrimmar", leaveGap = 1 },
dtl2 = { text = "瑪爾·恐怖圖騰", colour = AM_GOLD, coords = { {71, 53} }, symbol = { "1" },
tooltiptxt = "'歸還背包'任務" },
dtl3 = { text = "饑餓者塔拉加曼", colour = AM_RED, coords = { {34, 59} }, symbol = { "2" },
678,6 → 711,7
displayname = "剃刀高地",
displayshort = "RFD",
continent = 1,
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RazorfenDowns",
location = "南貧瘠之地 (48, 88)",
levels = "38-43",
685,7 → 719,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {4, 23} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Barrens", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {77, 45} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "圖特卡什", colour = AM_RED, coords = { {52, 36} }, symbol = { "1" },
711,6 → 745,7
displayname = "剃刀沼澤",
displayshort = "RFK",
continent = 1,
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RazorfenKraul",
location = "貧瘠之地 (42, 86)",
levels = "28-33",
718,7 → 753,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {75, 71} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Barrens", leaveGap = 1 },
dtl2 = { text = "魯古格", colour = AM_RED, coords = { {73, 44} }, symbol = { "1" },
tooltiptxt = "Lvl28 菁英人形怪" },
dtl3 = { text = "阿格姆", colour = AM_RED, coords = { {88, 48} }, symbol = { "2" },
748,6 → 783,7
displayname = "安其拉廢墟",
displayshort = "AQ20",
continent = 1,
toWorldMap = "Silithus",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\RuinsofAhnQiraj", -- RuinsofAhnQiraj
location = "希利蘇斯 (29, 96)",
levels = "60+",
755,7 → 791,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {64, 2} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Silithus", leaveGap = 1 },
dtl2 = { text = "庫林納克斯", colour = AM_RED, coords = { {55, 29} }, symbol = { "1" },
tooltiptxt = "首領 & 菁英", lootid = "AQ20Kurinnaxx" },
dtl3 = { text ="安多洛夫中將,\n四個卡多雷精英", colour = AM_RED, coords = { {55, 29} }, symbol = { " " },
799,6 → 835,8
displayname = "血色修道院",
displayshort = "SM",
continent = 2,
toMap = "血色修道院"..AM_EXTERIOR,
toWorldMap = "Tirisfal",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ScarletMonastery",
location = "提里斯法林地 (83.6, 34)",
levels = "30-40",
806,7 → 844,7
prereq = "",
general = "",
dtl1 = { text = "墓地入口", colour = AM_GREEN, coords = { {61, 97} }, symbol = { "G" },
tooltiptxt = "", toMap = "血色修道院"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Tirisfal", toMap = "血色修道院"..AM_EXTERIOR },
dtl2 = { text = "鐵脊死靈", colour = AM_RED, coords = { {21, 88} }, symbol = { "1" },
tooltiptxt = "Lvl33 菁英不死族\n墓地", special = AM_RARE, lootid = "SMIronspine" },
dtl3 = { text = "永醒的艾希爾", colour = AM_RED, coords = { {5, 88} }, symbol = { "2" },
844,6 → 882,7
displayname = "安其拉神廟",
displayshort = "AQ40",
continent = 1,
toWorldMap = "Silithus",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TempleofAhnQiraj", -- TempleofAhnQiraj
location = "希利蘇斯 (29, 96)",
levels = "60+",
851,7 → 890,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {16, 37} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Silithus", leaveGap = 1 },
dtl2 = { text = "亞雷戈斯\n凱雷斯特拉茲\n夢境之龍麥琳瑟拉", colour = AM_BLUE, coords = { {21, 56} }, symbol = { "A" },
tooltiptxt = "" },
dtl3 = { text = "安多葛斯\n溫瑟拉\n坎多斯特拉茲", colour = AM_BLUE, coords = { {27, 43} }, symbol = { "B" },
892,6 → 931,8
type = AM_TYP_INSTANCE,
displayname = "死亡礦井",
continent = 2,
toMap = "死亡礦井"..AM_EXTERIOR,
toWorldMap = "Westfall",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheDeadmines",
location = "西部荒野 (42, 72)",
levels = "16-26",
899,7 → 940,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {12, 23} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "死亡礦井"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Westfall", toMap = "死亡礦井"..AM_EXTERIOR },
dtl2 = { text = AM_INSTANCE_EXITS, colour = AM_RED, coords = { {99, 42} }, symbol = { AM_EXIT_SYMBOL },
tooltiptxt = "" },
dtl3 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {80, 40} }, symbol = { AM_CHEST_SYMBOL },
930,6 → 971,7
type = AM_TYP_INSTANCE,
displayname = "監獄",
continent = 2,
toWorldMap = "Stormwind",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheStockade",
location = "暴風城",
levels = "24-32",
937,7 → 979,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {50, 74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Stormwind", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {69, 60}, {75, 40}, {26, 57}, {31, 36}, {18, 29} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "可怕的塔高爾", colour = AM_RED, coords = { {58, 63}, {41, 55}, {50, 37}, {27, 50} }, symbol = { "1" },
959,6 → 1001,8
displayname = "沈沒的神廟",
displayshort = "ST",
continent = 2,
toMap = "阿塔哈卡神廟"..AM_EXTERIOR,
toWorldMap = "SwampOfSorrows",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSunkenTemple",
location = "悲傷沼澤 (70, 53)",
levels = "45-60",
966,7 → 1010,7
prereq = "",
general = "也被稱呼為阿塔哈卡神廟",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {62, 7} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "阿塔哈卡神廟"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "SwampOfSorrows", toMap = "阿塔哈卡神廟"..AM_EXTERIOR },
dtl2 = { text = "入口處通往高層的階梯", colour = AM_GREEN, coords = { {54, 11.3}, {13.9, 47} }, symbol = { "SL" },
tooltiptxt = "" },
dtl3 = { text = "入口處通往中層的階梯", colour = AM_GREEN, coords = { {69, 11.3} }, symbol = { "SM" },
1007,6 → 1051,8
type = AM_TYP_INSTANCE,
displayname = "奧達曼",
continent = 2,
toMap = "奧達曼"..AM_EXTERIOR,
toWorldMap = "Badlands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Uldaman",
location = "荒蕪之地 (44, 12)",
levels = "35-50",
1014,7 → 1060,7
prereq = "",
general = "",
dtl1 = { text = "正門入口", colour = AM_GREEN, coords = { {89, 73.1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "奧達曼"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Badlands", toMap = "奧達曼"..AM_EXTERIOR },
dtl2 = { text = "後門入口", colour = AM_GREEN, coords = { {21, 71} }, symbol = { "XR" },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "巴爾洛戈", colour = AM_RED, coords = { {73, 93} }, symbol = { "1" },
1050,6 → 1096,8
displayname = "哀嚎洞穴",
displayshort = "WC",
continent = 1,
toMap = "哀嚎洞穴"..AM_EXTERIOR,
toWorldMap = "Barrens",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\WailingCaverns",
location = "貧瘠之地 (46, 36)",
levels = "16-25",
1057,7 → 1105,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {44, 58} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "哀嚎洞穴"..AM_EXTERIOR },
tooltiptxt = "", toWorldMap = "Barrens", toMap = "哀嚎洞穴"..AM_EXTERIOR },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {62, 47}, {94, 49} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "納拉雷克斯的信徒", colour = AM_BLUE, coords = { {45, 53} }, symbol = { "1" },
1091,6 → 1139,7
displayname = "祖爾法拉克",
displayshort = "ZF",
continent = 1,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulFarrak",
location = "塔納利斯 (37, 15)",
levels = "43-47",
1098,7 → 1147,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {69, 89} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tanaris", leaveGap = 1 },
dtl2 = { text = "澤雷利斯", colour = AM_RED, coords = { {63, 47} }, symbol = { "1" },
tooltiptxt = "Lvl45 菁英人形怪", special = AM_RARE.." "..AM_WANDERS, lootid = "ZFZerillis" },
dtl3 = { text = "杉達爾‧沙掠者", colour = AM_RED, coords = { {55, 59} }, symbol = { "2" },
1136,6 → 1185,7
displayname = "祖爾格拉布",
displayshort = "ZG",
continent = 2,
toWorldMap = "Stranglethorn",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulGurub",
location = "荊棘谷 (54, 17)",
levels = "60+",
1143,7 → 1193,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {12, 50} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Stranglethorn", },
dtl2 = { text = "混濁的水", colour = AM_BLUE, coords = { {33, 41}, {47, 48}, {57, 47}, {60, 32}, {47, 30} }, symbol = { "W" },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "高階祭司 耶克里克", colour = AM_RED, coords = { {34, 78} }, symbol = { "1" },
1188,6 → 1238,7
type = AM_TYP_INSTANCE,
displayname = "通靈學院",
continent = 2,
toWorldMap = "WesternPlaguelands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Scholomance", -- Scholomance*
location = "西瘟疫之地 (69, 73)",
levels = "56-60",
1195,7 → 1246,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {24, 30} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "WesternPlaguelands", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {28, 38} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "" },
dtl3 = { text = AM_INSTANCE_STAIRS, colour = AM_GREEN, coords = { {6.5, 22}, {62, 22} }, symbol = { "S1" },
1252,6 → 1303,7
type = AM_TYP_INSTANCE,
displayname = "斯坦索姆",
continent = 2,
toWorldMap = "EasternPlaguelands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Stratholme",
location = "東瘟疫之地 (30, 12)",
levels = "55-60",
1259,9 → 1311,9
prereq = "",
general = "側門入口在 (47, 24)",
dtl1 = { text = "正門入口", colour = AM_GREEN, coords = { {50, 91} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "EasternPlaguelands", },
dtl2 = { text = "側門入口", colour = AM_GREEN, coords = { {83, 72} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "EasternPlaguelands", leaveGap = 1 },
dtl3 = { text = "弗拉斯‧希亞比的郵箱", colour = AM_ORANGE, coords = { {37, 86} }, symbol = { "P1" },
tooltiptxt = "" },
dtl4 = { text = "國王廣場郵箱", colour = AM_ORANGE, coords = { {47, 74} }, symbol = { "P2" },
1321,6 → 1373,7
displayname = "影牙城堡",
displayshort = "SFK",
continent = 2,
toWorldMap = "Silverpine",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ShadowfangKeep",
location = "銀松森林 (45, 67)",
levels = "20-30",
1328,7 → 1381,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {75, 69} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "Silverpine", },
dtl2 = { text = AM_INSTANCE_CHESTS, colour = AM_GOLD, coords = { {57, 57}, {36, 55}, {29, 12} }, symbol = { AM_CHEST_SYMBOL },
tooltiptxt = "" },
dtl3 = { text = "城垛", colour = AM_BLUE, coords = { {38, 71}, {54, 93} }, symbol = { "B1" },
1370,6 → 1423,7
displayname = "地獄火堡壘: 地獄火壁壘",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCRampart", -- HellfireRampart
location = "地獄火堡壘, 地獄火半島",
levels = "60-62",
1377,7 → 1431,7
prereq = "鑰匙: 火鑄之鑰 (英雄模式)",
general = "聲望: 索爾瑪 (部落)\n聲望: 榮譽堡 (聯盟)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {62, 63} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "看護者卡爾古瑪", colour = AM_RED, coords = { {80, 24} }, symbol = { "1" },
tooltiptxt = "", special = AM_WANDERS, lootid = "HCRampWatchkeeper" },
dtl3 = { text = "無疤者歐瑪爾", colour = AM_RED, coords = { {22, 14} }, symbol = { "2" },
1395,6 → 1449,7
displayname = "地獄火堡壘: 血熔爐",
displayshort = "BF",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCBloodFurnace", -- HCBloodFurnace
location = "地獄火堡壘, 地獄火半島",
levels = "61-63",
1402,7 → 1457,7
prereq = "鑰匙: 火鑄之鑰 (英雄模式)",
general = "聲望: 索爾瑪 (部落)\n聲望: 榮譽堡 (聯盟)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {50, 91.8} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "創造者", colour = AM_RED, coords = { {29.3, 35} }, symbol = { "1" },
tooltiptxt = "", lootid = "HCFurnaceMaker" },
dtl3 = { text = "布洛克", colour = AM_RED, coords = { {41, 13.1} }, symbol = { "2" },
1416,6 → 1471,7
displayname = "地獄火堡壘: 破碎大廳",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HCShatteredHalls", -- HCShatteredHalls
location = "地獄火堡壘, 地獄火半島",
levels = "70-72",
1423,7 → 1479,7
prereq = "鑰匙: 火鑄之鑰 (英雄模式)",
general = "聲望: 索爾瑪 (部落)\n聲望: 榮譽堡 (聯盟)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {67, 97.66} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "藍迪·威索洛克", colour = AM_RED, coords = { {23.63, 74.8} }, symbol = { "1" },
tooltiptxt = "", special = "(聯盟, 英雄)" },
dtl3 = { text = "崔賽拉", colour = AM_RED, coords = { {23.63, 74.8} }, symbol = { " " },
1459,6 → 1515,7
displayname = "地獄火堡壘: 瑪瑟里頓的巢穴",
displayshort = "",
continent = 3,
toWorldMap = "Hellfire",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MagtheridonsLair", -- MagtheridonsLair
location = "地獄火堡壘, 地獄火半島",
levels = "70",
1466,7 → 1523,7
prereq = "鑰匙: 火鑄之鑰 (英雄模式)",
general = "聲望: 索爾瑪 (部落)\n聲望: 榮譽堡 (聯盟)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {23.44, 14.26} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Hellfire", leaveGap = 1 },
dtl2 = { text = "瑪瑟里頓", colour = AM_PURPLE, coords = { {53.13, 72.07} }, symbol = { "1" },
tooltiptxt = "", lootid = "HCMagtheridon", leaveGap = 1 }
},
1476,6 → 1533,8
displayname = "盤牙洞穴: 奴隸監獄",
displayshort = "SP",
continent = 3,
toMap = "盤牙洞穴"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSlavePens", -- TheSlavePens
location = "盤牙洞穴, 贊格沼澤",
levels = "62-64",
1483,7 → 1542,7
prereq = "聲望: 塞納里奧遠征隊",
general = "鑰匙: 倉庫之鑰 (英雄模式)",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {23.24, 21.29} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "盤牙洞穴"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "盤牙洞穴"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "背叛者曼紐", colour = AM_RED, coords = { {48.83, 31.84} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRSlaveMennu" },
dtl3 = { text = "威德·綠指", colour = AM_RED, coords = { {48.83, 71.29} }, symbol = { "2" },
1504,6 → 1563,8
displayname = "盤牙洞穴: 毒牙沼澤",
displayshort = "",
continent = 3,
toMap = "盤牙洞穴"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheUnderbog", -- TheUnderbog
location = "盤牙洞穴, 贊格沼澤",
levels = "63-65",
1511,7 → 1572,7
prereq = "鑰匙: 倉庫之鑰 (英雄模式)",
general = "聲望: 塞納里奧遠征隊",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {120, 346} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "盤牙洞穴"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "盤牙洞穴"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "飢餓之牙", colour = AM_RED, coords = { {71.09, 83.79} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRUnderHungarfen" },
dtl3 = { text = "地孢", colour = AM_RED, coords = { {71.09, 83.79} }, symbol = { " " },
1533,6 → 1594,8
displayname = "盤牙洞穴: 蒸汽洞窟",
displayshort = "SV",
continent = 3,
toMap = "盤牙洞穴"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheSteamvault", -- The Steamvault
location = "盤牙洞穴, 贊格沼澤",
levels = "70-72",
1540,7 → 1603,7
prereq = "鑰匙: 倉庫之鑰 (英雄模式)",
general = "聲望: 塞納里奧遠征隊",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {1.56, 35.74} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "盤牙洞穴"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "盤牙洞穴"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "海法師希斯比亞", colour = AM_RED, coords = { {54.3, 17.19} }, symbol = { "1" },
tooltiptxt = "Elite Lvl 72", lootid = "CFRSteamThespia" },
dtl3 = { text = "主房間通道面板", colour = AM_RED, coords = { {54.3, 17.19} }, symbol = { " " },
1564,6 → 1627,8
displayname = "盤牙洞穴: 毒蛇神殿洞穴",
displayshort = "SC",
continent = 3,
toMap = "盤牙洞穴"..AM_EXTERIOR,
toWorldMap = "Zangarmarsh",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\SerpentShrine", -- SerpentshrineCavern
location = "盤牙洞穴, 贊格沼澤",
levels = "70",
1571,7 → 1636,7
prereq = "",
general = "聲望: 塞納里奧遠征隊",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {1.56, 67.19} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "盤牙洞穴"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Zangarmarsh", toMap = "盤牙洞穴"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "不穩定者海卓司", colour = AM_RED, coords = { {37.89, 75} }, symbol = { "1" },
tooltiptxt = "", lootid = "CFRSerpentHydross" },
dtl3 = { text = "海底潛伏者", colour = AM_RED, coords = { {40.82, 54.1} }, symbol = { "2" },
1595,6 → 1660,8
displayname = "奧齊頓: 奧奇奈地穴",
displayshort = "AC",
continent = 3,
toMap = "奧齊頓"..AM_EXTERIOR,
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AuchenaiCrypts", -- AuchenaiCrypts
location = "奧齊頓, 白骨荒野",
levels = "64-66",
1602,7 → 1669,7
prereq = "鑰匙: 奧奇奈鑰匙 (英雄模式)",
general = "聲望: 陰鬱城",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {22, 79.1} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "奧齊頓"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "奧齊頓"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "死亡看守者辛瑞克", colour = AM_RED, coords = { {44, 70} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchCryptsShirrak" },
dtl3 = { text = "主教瑪拉達爾", colour = AM_RED, coords = { {88, 49} }, symbol = { "2" },
1620,6 → 1687,8
displayname = "奧齊頓: 暗影迷宮",
displayshort = "SL",
continent = 3,
toMap = "奧齊頓"..AM_EXTERIOR,
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ShadowLabyrinth", -- ShadowLabyrinth
location = "奧齊頓, 白骨荒野",
levels = "65-67",
1627,7 → 1696,7
prereq = "鑰匙: 暗影迷宮鑰匙\n鑰匙: 奧奇奈鑰匙 (英雄模式)",
general = "聲望: 陰鬱城",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {6, 8.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "奧齊頓"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "奧齊頓"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "間諜·吐剛", colour = AM_RED, coords = { {14, 44} }, symbol = { "1" },
tooltiptxt = "" },
dtl3 = { text = "海爾瑪大使", colour = AM_RED, coords = { {14, 44} }, symbol = { "2" },
1651,6 → 1720,8
displayname = "奧齊頓: 塞司克大廳",
displayshort = "SH",
continent = 3,
toMap = "奧齊頓"..AM_EXTERIOR,
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\SethekkHalls", -- SethekkHalls
location = "奧齊頓, 白骨荒野",
levels = "67-69",
1658,7 → 1729,7
prereq = "鑰匙: 奧奇奈鑰匙 (英雄模式)\n鑰匙: 注滿精華的月亮石 (安祖)",
general = "聲望: 陰鬱城",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {98, 46} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "奧齊頓"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "奧齊頓"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "暗法師希斯", colour = AM_RED, coords = { {47.3, 64} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchSethekkDarkweaver" },
dtl3 = { text = "拉卡", colour = AM_RED, coords = { {47.3, 64} }, symbol = { " " },
1678,6 → 1749,8
displayname = "奧齊頓: 法力墓地",
displayshort = "MT",
continent = 3,
toMap = "奧齊頓"..AM_EXTERIOR,
toWorldMap = "TerokkarForest",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ManaTombs", -- ManaTombs
location = "奧齊頓, 白骨荒野",
levels = "70-72",
1685,7 → 1758,7
prereq = "鑰匙: 奧奇奈鑰匙 (英雄模式)\n鑰匙: 哈拉瑪德之眼 (崇拜, 約兒)",
general = "聲望: 聯合團",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18, 4.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "奧齊頓"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "TerokkarForest", toMap = "奧齊頓"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "班提蒙尼厄斯", colour = AM_RED, coords = { {46, 30} }, symbol = { "1" },
tooltiptxt = "", lootid = "AuchManaPandemonius" },
dtl3 = { text = "暗影之王希瑞西斯", colour = AM_RED, coords = { {46, 30} }, symbol = { " " },
1711,6 → 1784,7
displayname = "戈魯爾之巢",
displayshort = "GL",
continent = 3,
toWorldMap = "BladesEdgeMountains",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\GruulsLair", -- GruulsLair
location = "劍刃山脈",
levels = "70",
1718,7 → 1792,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {0, 0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "BladesEdgeMountains", leaveGap = 1 },
dtl2 = { text = "大君王莫卡爾", colour = AM_RED, coords = { {55, 48} }, symbol = { "1" },
tooltiptxt = "Boss", lootid = "GruulsLairHighKingMaulgar" },
dtl3 = { text = "瘋癲者奇克勒", colour = AM_RED, coords = { {55, 48} }, symbol = { " " },
1738,7 → 1812,7
displayname = "黑暗神廟",
displayshort = "BT",
continent = 3,
-- filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Placeholder",
toWorldMap = "ShadowmoonValley",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackTemple", -- BlackTemple
location = "影月谷",
levels = "70",
1746,7 → 1820,7
prereq = "需完成傳送門/鑰匙前置任務\n鑰匙: 卡拉伯爾獎章",
general = "聲望: 灰舌死亡誓言者",
dtl1 = { text = "黑暗神廟 - 開始", colour = AM_ORANGE, coords = { {5.27, 32.03} }, symbol = { "-" },
tooltiptxt = "" },
tooltiptxt = "", toWorldMap = "ShadowmoonValley", },
dtl2 = { text = "黑暗神廟 - 上層", colour = AM_ORANGE, coords = { {49.61, 5.66} }, symbol = { "^" },
tooltiptxt = "" },
dtl3 = { text = "黑暗神廟 - 地下室", colour = AM_ORANGE, coords = { {63.87, 60.74} }, symbol = { "v" },
1812,6 → 1886,7
displayname = "風暴要塞: 麥克那爾",
displayshort = "Mech",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Mechanar", -- TheMechanar
location = "風暴要塞, 虛空風暴",
levels = "69-72",
1819,7 → 1894,7
prereq = "鑰匙: 扭曲鍛造鑰匙 (英雄模式)",
general = "聲望: 薩塔",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {43, 92.5} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "看守者蓋洛奇歐", colour = AM_RED, coords = { {46, 56} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKMechGyro" },
dtl3 = { text = "看守者鐵手", colour = AM_RED, coords = { {64.5, 52} }, symbol = { "2" },
1843,6 → 1918,7
displayname = "風暴要塞: 波塔尼卡",
displayshort = "Bota",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Botanica", -- TheBotanica
location = "風暴要塞, 虛空風暴",
levels = "70-72",
1850,7 → 1926,7
prereq = "鑰匙: 扭曲鍛造鑰匙 (英雄模式)",
general = "聲望: 薩塔",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {96.2, 44.8} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "指揮官薩瑞尼斯", colour = AM_RED, coords = { {45, 30} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKBotSarannis" },
dtl3 = { text = "大植物學家費瑞衛恩", colour = AM_RED, coords = { {24, 30} }, symbol = { "2" },
1870,6 → 1946,7
displayname = "風暴要塞: 亞克崔茲",
displayshort = "Arca",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Arcatraz", -- TheArcatraz
location = "風暴要塞, 虛空風暴",
levels = "70-72",
1877,7 → 1954,7
prereq = "鑰匙: 亞克崔茲鑰匙\n鑰匙: 扭曲鍛造鑰匙 (英雄模式)",
general = "聲望: 薩塔",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {38, 98} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "無約束的希瑞奇斯", colour = AM_RED, coords = { {45.5, 58.5} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKArcUnbound" },
dtl3 = { text = "第三部守衛者", colour = AM_RED, coords = { {47.46, 37.3} }, symbol = { "2" },
1905,6 → 1982,8
displayname = "時光之穴: 希爾斯布萊德丘陵舊址",
displayshort = "CoT1",
continent = 1,
toMap = "時光之穴"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\OldHilsbrad", -- OldHilsbrad
location = "時光之穴, 塔納利斯",
levels = "",
1912,7 → 1991,7
prereq = "需完成傳送門鑰匙前置任務\n鑰匙: 時光之鑰 (英雄模式)",
general = "事件: 逃離敦霍爾德\n聲望: 時光守衛者",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {13, 47} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "時光之穴"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "時光之穴"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "伊洛森", colour = AM_GREEN, coords = { {13, 47} }, symbol = { " " },
tooltiptxt = "" },
dtl3 = { text = "布瑞茲恩", colour = AM_GREEN, coords = { {13, 47} }, symbol = { " " },
1948,6 → 2027,8
displayname = "時光之穴: 黑色沼澤",
displayshort = "CoT2",
continent = 1,
toMap = "時光之穴"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\BlackMorass", -- The Black Morass
location = "時光之穴, 塔納利斯",
levels = "",
1955,7 → 2036,7
prereq = "需完成傳送門/鑰匙前置任務\n鑰匙: 時光之鑰 (英雄模式)",
general = "事件: 開啟黑暗之門\n聲望: 時光守衛者",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45.4, 22} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "時光之穴"..AM_EXTERIOR, special = "塞特", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "時光之穴"..AM_EXTERIOR, special = "塞特", leaveGap = 1 },
dtl2 = { text = "生成點", colour = AM_RED, coords = { {58, 70}, {58.5, 61.5}, {41, 60.5}, {48, 52.5} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1 },
dtl3 = { text = "克洛諾斯領主迪賈", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
1973,6 → 2054,8
displayname = "時光之穴: 海加爾山",
displayshort = "CoT3",
continent = 1,
toMap = "時光之穴"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MountHyjal", -- Battle for Mount Hyjal
location = "時光之穴, 塔納利斯",
levels = "70",
1980,7 → 2063,7
prereq = "需完成傳送門/鑰匙前置任務",
general = "事件: 海加爾山戰場\n聲望: 流沙之鱗",
dtl1 = { text = "聯盟營地", colour = AM_GREEN, coords = { {18.36, 48.83} }, symbol = { "A" },
tooltiptxt = "", toMap = "時光之穴"..AM_EXTERIOR, special = "(珍娜·普勞德摩爾女士)" },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "時光之穴"..AM_EXTERIOR, special = "(珍娜·普勞德摩爾女士)" },
dtl2 = { text = "部落營地", colour = AM_GREEN, coords = { {57.23, 35.74} }, symbol = { "B" },
tooltiptxt = "", special = "(索爾)" },
dtl3 = { text = "夜精靈營地", colour = AM_GREEN, coords = { {75.39, 44.34} }, symbol = { "C" },
1994,11 → 2077,11
dtl7 = { text = "埃加洛爾", colour = AM_RED, coords = { {58.98, 38.67} }, symbol = { "4" },
tooltiptxt = "", lootid = "MountHyjalAzgalor" },
dtl8 = { text = "阿克蒙德", colour = AM_RED, coords = { {83.01, 31.25} }, symbol = { "5" },
tooltiptxt = "", lootid = "MountHyjalArchimonde" },
-- dtl9 = { text = "隱多米", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
-- tooltiptxt = "", lootid = "MountHyjalArchimonde" },
-- dtl10 = { text = "提多姆", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
-- tooltiptxt = "", lootid = "MountHyjalArchimonde" },
tooltiptxt = "", lootid = "MountHyjalArchimonde", leaveGap = 1, },
dtl9 = { text = "隱多米", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "", lootid = "MountHyjalArchimonde" },
dtl10 = { text = "提多姆", colour = AM_RED, coords = { {0, 0} }, symbol = { " " },
tooltiptxt = "", lootid = "MountHyjalArchimonde" },
},
 
{ name = "卡拉贊", -- Karazahn
2006,6 → 2089,8
displayname = "卡拉贊",
displayshort = "Kara",
continent = 2,
toMap = "卡拉贊"..AM_EXTERIOR,
toWorldMap = "DeadwindPass",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Karazahn", -- Karazahn
location = "逆風小徑",
levels = "70",
2013,7 → 2098,7
prereq = "需完成傳送門/鑰匙前置任務\n鑰匙: 主人鑰匙\n鑰匙: 燻黑的骨灰甕 (夜禍)",
general = "聲望: 紫羅蘭之眼",
dtl1 = { text = "前方入口 1", colour = AM_GREEN, coords = { {29.88, 31.45} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "卡拉贊"..AM_EXTERIOR, leaveGap = 1 },
tooltiptxt = "", toWorldMap = "DeadwindPass", toMap = "卡拉贊"..AM_EXTERIOR, leaveGap = 1 },
dtl2 = { text = "前方入口 2", colour = AM_GREEN, coords = { {28.13, 20.31} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "卡拉贊"..AM_EXTERIOR, leaveGap = 1 },
dtl3 = { text = "哈斯丁", colour = AM_BLUE, coords = { {27.93, 25.39} }, symbol = { "a" },
2119,6 → 2204,7
displayname = "祖阿曼",
displayshort = "ZA",
continent = 2,
toWorldMap = "Ghostlands",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\ZulAman", -- Zul'Aman
location = "鬼魂之地",
levels = "70",
2126,7 → 2212,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18, 53} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Ghostlands", leaveGap = 1 },
dtl2 = { text = "納羅拉克", colour = AM_RED, coords = { {36.3, 71.9} }, symbol = { "1" },
tooltiptxt = "", special = "(熊)", lootid = "ZANalorakk" },
dtl3 = { text = "阿奇爾森", colour = AM_RED, coords = { {31.25, 31.25} }, symbol = { "2" },
2146,6 → 2232,7
displayname = "風暴要塞: 風暴要塞",
displayshort = "Eye",
continent = 3,
toWorldMap = "Netherstorm",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\TheEye", -- TheEye
location = "風暴要塞, 虛空風暴",
levels = "69-72",
2153,7 → 2240,7
prereq = "鑰匙: 風暴之鑰",
general = "聲望: 薩塔",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45, 93} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Netherstorm", leaveGap = 1 },
dtl2 = { text = "歐爾", colour = AM_RED, coords = { {50, 57} }, symbol = { "1" },
tooltiptxt = "", lootid = "TKEyeAlar" },
dtl3 = { text = "虛空劫掠者", colour = AM_RED, coords = { {14, 47} }, symbol = { "2" },
2181,6 → 2268,7
displayname = "博學者殿堂",
displayshort = "MagT",
continent = 2,
toWorldMap = "Sunwell",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\MagistersTerrace", -- Magister's Terrace
location = "奎爾達納斯之島",
levels = "69-72",
2188,10 → 2276,9
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {42.19, 78.32} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Sunwell", leaveGap = 1 },
dtl2 = { text = "斯琳·炎心", colour = AM_RED, coords = { {42.19, 26.17} }, symbol = { "1" },
tooltiptxt = "", lootid = "SMTFireheart" },
-- dtl3 = { text = "Fel Crystals", colour = AM_ORANGE, coords = { {43.36, 37.5}, {43.36, 50.2}, {42.19, 29.88}, {50.39, 50.2}, {50.39, 37.5} }, symbol = { "C" },
dtl3 = { text = "惡魔水晶", colour = AM_ORANGE, coords = { {42.19, 26.17} }, symbol = { " " },
tooltiptxt = "" },
dtl4 = { text = "提里斯", colour = AM_GREEN, coords = { {59.96, 29.88} }, symbol = { "2" },
2208,11 → 2295,12
tooltiptxt = "", leaveGap = 1, lootid = "SMTTrash" },
},
 
{ name = "Plateau du Puits de soleil", -- Sunwell Plateau
{ name = "太陽之井高地", -- Sunwell Plateau
type = AM_TYP_INSTANCE,
displayname = "Plateau du Puits de soleil",
displayname = "太陽之井高地",
displayshort = "SunP",
continent = 2,
toWorldMap = "Sunwell",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\SunwellPlateau", -- Sunwell Plateau
location = "奎爾達納斯之島",
levels = "69-72",
2220,7 → 2308,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_BLUE, coords = { {31.45, 17.19} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1 },
tooltiptxt = "", toWorldMap = "Sunwell", leaveGap = 1 },
dtl2 = { text = "卡雷苟斯", colour = AM_RED, coords = { {30.08, 32.03} }, symbol = { "1" },
tooltiptxt = "", lootid = "SPKalecgos" },
dtl3 = { text = "『墮落者』塞斯諾瓦", colour = AM_RED, coords = { {30.08, 32.03} }, symbol = { " " },
2250,19 → 2338,20
},
 
-- wotlk
{ name = "Halls of Stone", -- Halls of Stone
{ name = "岩石大廳", -- Halls of Stone
type = AM_TYP_INSTANCE,
displayname = "Halls of Stone",
displayname = "岩石大廳",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\StoneHalls",
location = "Storm Peaks",
location = "風暴群山",
levels = "80",
players = "",
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {26.5625, 41.0156} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "TheStormPeaks", leaveGap = 1, },
dtl2 = { text = "悲痛侍女", colour = AM_RED, coords = { {48.85, 81.7} }, symbol = { "1" },
tooltiptxt = "", lootid = "HallsofStone", },
dtl3 = { text = "克利斯托魯斯", colour = AM_RED, coords = { {37.1094, 58.3984} }, symbol = { "2" },
2273,11 → 2362,12
tooltiptxt = "", special = "Tribunal of Ages", lootid = "HallsofStone", },
},
 
{ name = "Utgarde Pinnacle", -- Utgarde Pinnacle
{ name = "俄特加德之巔", -- Utgarde Pinnacle
type = AM_TYP_INSTANCE,
displayname = "Utgarde Pinnacle",
displayname = "俄特加德之巔",
displayshort = "",
continent = 4,
toWorldMap = "HowlingFjord",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardePinnacle",
location = "Howling Fjorde",
levels = "80",
2285,7 → 2375,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {36.91, 7.03} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "HowlingFjord", leaveGap = 1, },
dtl2 = { text = "Brigg Smallshanks", colour = AM_BLUE, coords = { {36.91, 13.33} }, symbol = { "Q" },
tooltiptxt = "Quests : \n Junk in My Trunk\n Vengeance Be Mine!", leaveGap = 1, },
dtl3 = { text = "司瓦拉禍害使者", colour = AM_RED, coords = { {43.94, 78.515} }, symbol = { "1" },
2300,11 → 2390,12
tooltiptxt = "", lootid = "UPYmiron", },
},
 
{ name = "The Nexus", -- The Nexus
{ name = "奈薩斯", -- The Nexus
type = AM_TYP_INSTANCE,
displayname = "The Nexus",
displayname = "奈薩斯",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Nexus",
location = "Borean Tundra",
levels = "71-73",
2312,7 → 2403,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {30.63, 86.34} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "BoreanTundra", leaveGap = 1, },
dtl2 = { text = "『樹木造形者』歐爾莫洛克", colour = AM_RED, coords = { {58.47, 71.85} }, symbol = { "1" },
tooltiptxt = "", lootid = "TheNexus", },
dtl3 = { text = "大魔導師特雷斯翠", colour = AM_RED, coords = { {19.55, 41.74} }, symbol = { "2" },
2321,13 → 2412,16
tooltiptxt = "", lootid = "TheNexus", },
dtl5 = { text = "凱瑞史卓莎", colour = AM_RED, coords = { {30.91, 67.02} }, symbol = { "4" },
tooltiptxt = "", lootid = "TheNexusKeristraszaHEROIC", },
dtl6 = { text = "指揮官厚鬚", colour = AM_RED, coords = { {35.7, 43.2} }, symbol = { "5" },
tooltiptxt = "", lootid = "TheNexusHEROIC", leaveGap = 1, },
},
 
{ name = "Ahn'Kahet", -- Ahn'Kahet
{ name = "安卡罕特: 古王國", -- Ahn'Kahet
type = AM_TYP_INSTANCE,
displayname = "Ahn'Kahet: The Old Kingdom",
displayname = "安卡罕特: 古王國",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AhnkahetTOK",
location = "Dragonblight",
levels = "73-75",
2335,7 → 2429,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {87.304, 71.875} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "Dragonblight", },
dtl2 = { text = "Elder Nadox", colour = AM_RED, coords = { {68.75, 40.43} }, symbol = { "1" },
tooltiptxt = "", lootid = "Ahnkahet", },
dtl3 = { text = "Ancient Nerubian Device", colour = AM_BLUE, coords = { {56.836, 35.9375} }, symbol = { "{}" },
2348,11 → 2442,13
tooltiptxt = "", lootid = "Ahnkahet", },
dtl7 = { text = "信使沃菈齊", colour = AM_RED, coords = { {30.273, 54.883} }, symbol = { "4" },
tooltiptxt = "", lootid = "Ahnkahet", },
dtl8 = { text = "毒蕈魔", colour = AM_RED, coords = { {65.7, 66.8} }, symbol = { "5" },
tooltiptxt = "", special = "(英雄)", lootid = "AhnkahetHEROIC", },
},
 
{ name = "The Obsidian Sanctum", -- The Obsidian Sanctum
{ name = "黑曜聖所", -- The Obsidian Sanctum
type = AM_TYP_INSTANCE,
displayname = "The Obsidian Sanctum",
displayname = "黑曜聖所",
displayshort = "",
continent = 4,
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\CoAB",
2373,11 → 2469,12
tooltiptxt = "<The Onyx Guardian>", lootid = "Sartharion", },
},
 
{ name = "Drak'Tharon Keep", -- Drak'Tharon Keep
{ name = "德拉克薩隆要塞", -- Drak'Tharon Keep
type = AM_TYP_INSTANCE,
displayname = "Drak'Tharon Keep Lower",
displayname = "德拉克薩隆要塞 2",
displayshort = "",
continent = 4,
toWorldMap = "GrizzlyHills",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DrakTharonLower",
location = "Howling Fjorde",
levels = "74-76",
2385,45 → 2482,48
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {10.26, 84.65} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", leaveGap = 1, toWorldMap = "GrizzlyHills", },
dtl2 = { text = "血角食人妖", colour = AM_RED, coords = { {53.13, 25.11} }, symbol = { "1" },
tooltiptxt = "", lootid = "DrakTharonKeep", },
dtl3 = { text = "『召喚者』諾沃司", colour = AM_RED, coords = { {71.46, 54.22} }, symbol = { "2" },
tooltiptxt = "", lootid = "DrakTharonKeep", },
dtl4 = { text = "崔德國王", colour = AM_RED, coords = { {56.4, 79.42} }, symbol = { "3" },
tooltiptxt = "", lootid = "DrakTharonKeep", leaveGap = 1, },
dtl5 = { text = "Drak'Tharon Keep Upper", colour = AM_GREEN, coords = { {45.93, 68.95} }, symbol = { AM_STAIRS_SYMBOL },
tooltiptxt = "", toMap = "Drak'Tharon Keep Upper", leaveGap = 1, },
dtl5 = { text = "德拉克薩隆要塞 2", colour = AM_GREEN, coords = { {45.93, 68.95} }, symbol = { AM_STAIRS_SYMBOL },
tooltiptxt = "", toMap = "德拉克薩隆要塞 2", leaveGap = 1, },
dtl6 = { text = "Splash down from Upper", colour = AM_BLUE, coords = { {43, 21} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Drak'Tharon Keep Upper" },
tooltiptxt = "", toMap = "德拉克薩隆要塞 2" },
},
 
{ name = "Drak'Tharon Keep Upper", -- Drak'Tharon Keep
{ name = "德拉克薩隆要塞 2", -- Drak'Tharon Keep
type = AM_TYP_INSTANCE,
displayname = "Drak'Tharon Keep Upper",
displayname = "德拉克薩隆要塞 2",
displayshort = "",
continent = 4,
toMap = "Drak'Tharon Keep",
toWorldMap = "GrizzlyHills",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\DrakTharonUpper",
location = "Howling Fjorde",
levels = "74-76",
players = "",
prereq = "",
general = "",
dtl1 = { text = "Drak'Tharon Keep Lower", colour = AM_GREEN, coords = { {45.93, 68.95} }, symbol = { AM_STAIRS_SYMBOL },
tooltiptxt = "", toMap = "Drak'Tharon Keep", leaveGap = 1, },
dtl1 = { text = "德拉克薩隆要塞 2", colour = AM_GREEN, coords = { {45.93, 68.95} }, symbol = { AM_STAIRS_SYMBOL },
tooltiptxt = "", toWorldMap = "GrizzlyHills", toMap = "德拉克薩隆要塞", leaveGap = 1, },
dtl2 = { text = "崔德國王", colour = AM_RED, coords = { {56.4, 79.42} }, symbol = { "3" },
tooltiptxt = "", lootid = "DrakTharonKeep", },
dtl3 = { text = "預言者薩隆杰", colour = AM_RED, coords = { {56.6, 19.87} }, symbol = { "4" },
tooltiptxt = "", lootid = "DrakTharonKeep", leaveGap = 1, },
dtl4 = { text = "Splash Down to Lower", colour = AM_BLUE, coords = { {43, 21} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Drak'Tharon Keep" },
tooltiptxt = "", toMap = "德拉克薩隆要塞" },
},
 
{ name = "GunDrak", -- Gundrak
{ name = "剛德拉克", -- Gundrak
type = AM_TYP_INSTANCE,
displayname = "Gun'Drak",
displayname = "剛德拉克",
displayshort = "",
continent = 4,
toWorldMap = "ZulDrak",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\GunDrak",
location = "Zul'Drak",
levels = "74-77",
2431,7 → 2531,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {31.055, 36.328}, {70.3125, 36.328} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "ZulDrak", },
dtl2 = { text = "史拉德銳", colour = AM_RED, coords = { {62.695, 48.828} }, symbol = { "1" },
tooltiptxt = "", lootid = "Gundrak", },
dtl3 = { text = "慕拉比", colour = AM_RED, coords = { {38.672, 48.828} }, symbol = { "1" },
2442,11 → 2542,12
tooltiptxt = "", lootid = "Gundrak", },
},
 
{ name = "The Oculus", -- The Oculus
{ name = "奧核之眼", -- The Oculus
type = AM_TYP_INSTANCE,
displayname = "The Oculus",
displayname = "奧核之眼",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Oculus",
location = "Borean Tundra",
levels = "80",
2454,7 → 2555,7
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {60.64, 52.67} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "BoreanTundra", leaveGap = 1, },
dtl2 = { text = AM_LEADSTO, colour = AM_BLUE, coords = { {43.43, 52.36}, {52.65, 62.81} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1, },
dtl3 = { text = "『審問者』德拉高斯", colour = AM_RED, coords = { {52.65, 62.81} }, symbol = { "1" },
2473,19 → 2574,20
tooltiptxt = "", lootid = "OcuEregos", },
},
 
{ name = "Halls of Lightning", -- Halls of Lightning
{ name = "雷光大廳", -- Halls of Lightning
type = AM_TYP_INSTANCE,
displayname = "Halls of Lightning",
displayname = "雷光大廳",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\HoL",
location = "Storm Peaks",
location = "風暴群山",
levels = "77-79",
players = "",
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {13.4, 38.086} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "TheStormPeaks", leaveGap = 1, },
dtl2 = { text = "賈恩格林將軍", colour = AM_RED, coords = { {54.1, 46.29} }, symbol = { "1" },
tooltiptxt = "", special = AM_WANDERS, lootid = "HoLGjarngrin", },
dtl3 = { text = "渥克瀚", colour = AM_RED, coords = { {66.797, 37.89} }, symbol = { "2" },
2501,6 → 2603,7
displayname = "Vault of Archavon",
displayshort = "",
continent = 4,
toWorldMap = "LakeWintergrasp",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Archavon",
location = "Wintergrasp Keep",
levels = "77-79",
2508,16 → 2611,17
prereq = "Faction must claim victory in Lake Wintergrasp",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {39.6, 97.656} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "LakeWintergrasp", },
dtl2 = { text = "Archavon the Stone Watcher", colour = AM_RED, coords = { {39.6, 10.9375} }, symbol = { "1" },
tooltiptxt = "", },
},
 
{ name = "Utgarde Keep", -- Utgarde Keep
{ name = "俄特加德要塞", -- Utgarde Keep
type = AM_TYP_INSTANCE,
displayname = "Utgarde Keep",
displayname = "俄特加德要塞",
displayshort = "",
continent = 4,
toWorldMap = "HowlingFjord",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardeKeep",
location = "Howling Fjorde",
levels = "70-72",
2525,26 → 2629,28
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {68.16, 69.14} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "HowlingFjord", leaveGap = 1, },
dtl2 = { text = "凱雷希斯王子", colour = AM_RED, coords = { {17.578, 61.914} }, symbol = { "1" },
tooltiptxt = "", lootid = "UtgardeKeep", leaveGap = 1, },
dtl3 = { text = "Utgarde Keep 2", colour = AM_GREEN, coords = { {34.18, 80.86} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1, toMap = "Utgarde Keep 2", },
dtl3 = { text = "俄特加德要塞 2", colour = AM_GREEN, coords = { {34.18, 80.86} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1, toMap = "俄特加德要塞 2", },
},
 
{ name = "Utgarde Keep 2", -- Utgarde Keep
{ name = "俄特加德要塞 2", -- Utgarde Keep
type = AM_TYP_INSTANCE,
displayname = "Utgarde Keep 2",
displayname = "俄特加德要塞 2",
displayshort = "",
continent = 4,
toMap = "Utgarde Keep",
toWorldMap = "HowlingFjord",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\UtgardeKeep1",
location = "Howling Fjorde",
levels = "70-72",
players = "",
prereq = "",
general = "",
dtl1 = { text = "Utgarde Keep", colour = AM_GREEN, coords = { {34.18, 80.86} }, symbol = { "P" },
tooltiptxt = "", leaveGap = 1, toMap = "Utgarde Keep", },
dtl1 = { text = "俄特加德要塞", colour = AM_GREEN, coords = { {34.18, 80.86} }, symbol = { "P" },
tooltiptxt = "", toWorldMap = "HowlingFjord", leaveGap = 1, toMap = "俄特加德要塞", },
dtl2 = { text = "『建造者』史卡沃", colour = AM_RED, coords = { {61.133, 76.76} }, symbol = { "2" },
tooltiptxt = "", lootid = "UtgardeKeep", },
dtl3 = { text = "『控制者』達隆恩", colour = AM_RED, coords = { {61.133, 76.76} }, symbol = { " " },
2553,11 → 2659,12
tooltiptxt = "", lootid = "UtgardeKeep", },
},
 
{ name = "Azjol-Nerub", -- Azjol-Nerub
{ name = "阿茲歐-奈幽", -- Azjol-Nerub
type = AM_TYP_INSTANCE,
displayname = "Azjol-Nerub",
displayname = "阿茲歐-奈幽",
displayshort = "",
continent = 4,
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AzjolNerub",
location = "Dragonblight",
levels = "72-74",
2565,61 → 2672,64
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {18.75, 63.28} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, },
tooltiptxt = "", toWorldMap = "Dragonblight", leaveGap = 1, },
dtl2 = { text = "『守門者』齊力克西爾", colour = AM_RED, coords = { {44.53, 42.773} }, symbol = { "1" },
tooltiptxt = "", lootid = "AzjolNerub", },
dtl3 = { text = "哈卓諾克斯", colour = AM_RED, coords = { {65.234, 42.773} }, symbol = { "2" },
tooltiptxt = "", lootid = "AzjolNerub", leaveGap = 1, },
dtl4 = { text = "Azjol-Nerub Lower", colour = AM_BLUE, coords = { {59.96, 42.773} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Azjol-Nerub Lower", },
dtl4 = { text = "阿茲歐-奈幽 2", colour = AM_BLUE, coords = { {59.96, 42.773} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "阿茲歐-奈幽 2", },
},
 
{ name = "Azjol-Nerub Lower", -- Azjol-Nerub
{ name = "阿茲歐-奈幽 2", -- Azjol-Nerub
type = AM_TYP_INSTANCE,
displayname = "Azjol-Nerub Lower",
displayname = "阿茲歐-奈幽 2",
displayshort = "",
continent = 4,
toMap = "Azjol-Nerub",
toWorldMap = "Dragonblight",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\AzjolNerubLower",
location = "Dragonblight",
levels = "72-74",
players = "",
prereq = "",
general = "",
dtl1 = { text = "Azjol-Nerub", colour = AM_BLUE, coords = { {25.39, 50} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "Azjol-Nerub", leaveGap = 1 },
dtl1 = { text = "阿茲歐-奈幽", colour = AM_BLUE, coords = { {25.39, 50} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toWorldMap = "Dragonblight", toMap = "阿茲歐-奈幽", leaveGap = 1 },
dtl2 = { text = "阿努巴拉克", colour = AM_RED, coords = { {76.17, 48.2} }, symbol = { "3" },
tooltiptxt = "", lootid = "AzjolNerub", },
},
 
{ name = "Violet Hold", -- Violet Hold
{ name = "紫羅蘭堡", -- Violet Hold
type = AM_TYP_INSTANCE,
displayname = "Violet Hold",
displayname = "紫羅蘭堡",
displayshort = "",
continent = 4,
toWorldMap = "Dalaran",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\",
location = "Dalaran",
levels = "77-79",
players = "",
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {0, 0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
dtl2 = { text = "Lieutenant Sinclari", colour = AM_GREEN, coords = { {0, 0} }, symbol = { "_" },
tooltiptxt = "", },
dtl3 = { text = "Cyanigosa", colour = AM_RED, coords = { {0, 0} }, symbol = { "1" },
tooltiptxt = "", },
dtl4 = { text = "Xevozz", colour = AM_RED, coords = { {0, 0} }, symbol = { "2" },
tooltiptxt = "", },
dtl5 = { text = "Moragg", colour = AM_RED, coords = { {0, 0} }, symbol = { "3" },
tooltiptxt = "", },
dtl6 = { text = "Erekem", colour = AM_RED, coords = { {0, 0} }, symbol = { "4" },
tooltiptxt = "", },
dtl7 = { text = "Zuramot", colour = AM_RED, coords = { {0, 0} }, symbol = { "5" },
tooltiptxt = "", },
dtl8 = { text = "Lavanthor", colour = AM_RED, coords = { {0, 0} }, symbol = { "6" },
tooltiptxt = "", },
dtl9 = { text = "Ichoron", colour = AM_RED, coords = { {0, 0} }, symbol = { "7" },
tooltiptxt = "", },
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {45.4, 93.9} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", leaveGap = 1, toWorldMap = "Dalaran", },
dtl2 = { text = "Lieutenant Sinclari", colour = AM_GREEN, coords = { {45.4, 74.9} }, symbol = { "1" },
tooltiptxt = "", leaveGap = 1, },
dtl3 = { text = "伊仇隆", colour = AM_RED, coords = { {71.1, 24.3} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", },
dtl4 = { text = "基沃滋", colour = AM_RED, coords = { {19.9, 26.5} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12, Lower", },
dtl5 = { text = "『消滅者』舒拉邁特", colour = AM_RED, coords = { {19.9, 26.5} }, symbol = { " " },
tooltiptxt = "", special = "(Random) 6/12, Upper", },
dtl6 = { text = "摩拉革", colour = AM_RED, coords = { {82.6, 44.9} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", },
dtl7 = { text = "伊銳坎", colour = AM_RED, coords = { {15.6, 54} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", },
dtl8 = { text = "拉方索", colour = AM_RED, coords = { {70.1, 67.4} }, symbol = { "W" },
tooltiptxt = "", special = "(Random) 6/12", leaveGap = 1, },
dtl9 = { text = "霞妮苟莎", colour = AM_RED, coords = { {70.1, 67.4} }, symbol = { "18" },
tooltiptxt = "", special = "第 18 波", },
},
 
{ name = "The Eye of Eternity", -- The Eye of Eternity -- probably not worth including
2627,6 → 2737,7
displayname = "The Eye of Eternity",
displayshort = "",
continent = 4,
toWorldMap = "BoreanTundra",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\",
location = "Borean Tundra",
levels = "80",
2634,39 → 2745,42
prereq = "Key drops from Saphiron (Naxxramus)",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {50, 50} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "BoreanTundra", },
dtl2 = { text = "瑪里苟斯", colour = AM_RED, coords = { {41.406, 27.93} }, symbol = { "1" },
tooltiptxt = "", lootid = "Malygos", },
},
 
{ name = "Ulduar", -- Ulduar
{ name = "奧杜亞", -- Ulduar
type = AM_TYP_INSTANCE,
displayname = "Ulduar",
displayname = "奧杜亞",
displayshort = "",
continent = 4,
toWorldMap = "TheStormPeaks",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\",
location = "Storm Peaks",
location = "風暴群山",
levels = "77-79",
players = "Raid",
prereq = "",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {0, 0} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", },
tooltiptxt = "", toWorldMap = "TheStormPeaks", },
},
 
{ name = "Oldstratholme", -- Oldstratholme
{ name = "斯坦索姆的抉擇", -- Oldstratholme
type = AM_TYP_INSTANCE,
displayname = "CoT: Old Stratholme",
displayname = "斯坦索姆的抉擇",
displayshort = "CoT4",
continent = 1,
toMap = "時光之穴"..AM_EXTERIOR,
toWorldMap = "Tanaris",
filename = "Interface\\AddOns\\AlphaMap_Instances\\Maps\\Oldstrat", -- Oldstratholme
location = "時光之穴",
levels = "",
players = "",
prereq = "",
general = "The Culling of Stratholme",
general = "",
dtl1 = { text = AM_INSTANCE_ENTRANCES, colour = AM_GREEN, coords = { {91.85, 97.81} }, symbol = { AM_ENTRANCE_SYMBOL },
tooltiptxt = "", toMap = "時光之穴"..AM_EXTERIOR, leaveGap = 1, },
tooltiptxt = "", toWorldMap = "Tanaris", toMap = "時光之穴"..AM_EXTERIOR, leaveGap = 1, },
dtl2 = { text = "Chromie", colour = AM_GREEN, coords = { {98.95, 94.12} }, symbol = { "A" },
tooltiptxt = "Quest Giver:\n Dispelling Illusions", },
dtl3 = { text = AM_LEADSTO, colour = AM_BLUE, coords = { {78.01, 77.53}, {51.06, 98.55} }, symbol = { "P", },