diff --git a/AtlasLoot/AtlasLoot.toc b/AtlasLoot/AtlasLoot.toc
index fd3ac1f..d0360c3 100644
--- a/AtlasLoot/AtlasLoot.toc
+++ b/AtlasLoot/AtlasLoot.toc
@@ -1,10 +1,10 @@
## Interface: 30300
## Title: AtlasLoot Ascension Edition
## Notes: Shows the possible loot from the bosses
-## Author: v7 Rebuid Done by: Anch/Rvng (Original: Hegarol, Ascension: Skray/Szyler/Anch/Rvng)
-## Version: v7.0.1
+## Author: v7 Rebuid Done by: Anch, Rvng
+## Version: v7.2.1
## X-eMail:
-## X-Credits: Daviesh, Lag, Cellelach, Asurn, Pernicus and many others.
+## X-Credits: Skray, Szyler and others.
## X-Category: Map
## X-License: GPL v2
## X-Website: https://discord.gg/uYCE2X2FgA
@@ -24,8 +24,8 @@
## RealTitle-zhCN: [地图]副本掉落物品查询
## RealTitle-zhTW: [地圖]AL 物品掉落[主程式]
## Notes-ruRU: Отображает весю возможную добычу с боссов
-## SavedVariables: AtlasLootOptions, AtlasLootDB, AtlasLootWishList
-## SavedVariablesPerCharacter: AtlasLootCharDB, AtlasLootFilterDB
+## SavedVariables: AtlasLootOptions, AtlasLootDB, AtlasLootWishList, AtlasLootFilterDB
+## SavedVariablesPerCharacter: AtlasLootCharDB
## OptionalDeps: LootLink, ItemSync, DewdropLib, FuBarPlugin-3.0, FuBar, Ace3, LibBabble-Boss-3.0, LibBabble-Faction-3.0, LibBabble-Inventory-3.0, LibBabble-Zone-3.0
embeds.xml
diff --git a/AtlasLoot/Core/AtlasDifficulty.lua b/AtlasLoot/Core/AtlasDifficulty.lua
index 498b0de..7377ed1 100644
--- a/AtlasLoot/Core/AtlasDifficulty.lua
+++ b/AtlasLoot/Core/AtlasDifficulty.lua
@@ -31,8 +31,9 @@ AtlasLoot_Difficulty = {
};
["ClassicRaid"] = {
- {"Normal Flex", 2},
- {"Heroic Flex", 3},
+ {"Normal", 2},
+ {"Heroic", 3},
+ {"Mythic", 5},
{"Ascended", 4},
{"Bloodforged", 1},
};
@@ -52,8 +53,9 @@ AtlasLoot_Difficulty = {
};
["BCRaid"] = {
- {"Normal Flex", 2},
- {"Heroic Flex", 3},
+ {"Normal", 2},
+ {"Heroic", 3},
+ {"Mythic", 5},
{"Ascended", 4},
{"Bloodforged", 1},
};
@@ -69,9 +71,10 @@ AtlasLoot_Difficulty = {
};
["WrathRaid"] = {
- {"Normal Flex", 2},
- {"Heroic Flex", 3},
- {"Ascended", 4},
+ {"Normal", 2},
+ {"Heroic", 3},
+ {"Mythic", 4},
+ {"Ascended", 5},
{"Bloodforged", 1},
};
@@ -80,6 +83,10 @@ AtlasLoot_Difficulty = {
{"Item Normal", 2 },
{"Bloodforged", 1 },
};
+ ["CraftingNoBF"] = {
+ {"Crafting Patterns", "Pattern" },
+ {"Item Normal", 2 },
+ };
["Search"] = {
{"Bloodforged", 1},
@@ -122,7 +129,7 @@ function AtlasLoot_Difficulty:getMaxDifficulty(difficultyKey)
elseif (difficultyKey == "ClassicDungeonExt" or difficultyKey == "BCDungeon" or difficultyKey == "WrathDungeon") then
return 44;
elseif (difficultyKey == "ClassicRaid" or difficultyKey == "BCRaid" or difficultyKey == "WrathRaid") then
- return 4;
+ return 5;
else
return 0;
end
diff --git a/AtlasLoot/Core/AtlasLoot.lua b/AtlasLoot/Core/AtlasLoot.lua
index 70b0503..e4b52ee 100644
--- a/AtlasLoot/Core/AtlasLoot.lua
+++ b/AtlasLoot/Core/AtlasLoot.lua
@@ -14,7 +14,6 @@ AtlasLoot_OnLoad()
AtlasLoot:ShowItemsFrame()
AtlasLoot:NavButton_OnClick()
AtlasLoot:IsLootTableAvailable(dataID)
-AtlasLoot:GetLODModule(dataSource)
AtlasLoot:LoadAllModules()
AtlasLoot:ShowQuickLooks(button)
AtlasLoot:RefreshQuickLookButtons()
@@ -22,7 +21,7 @@ AtlasLoot:AddTooltip(frameb, tooltiptext)
AtlasLoot:FindId(name, difficulty)
]]
-AtlasLoot = LibStub("AceAddon-3.0"):NewAddon("AtlasLoot", "AceEvent-3.0");
+AtlasLoot = LibStub("AceAddon-3.0"):NewAddon("AtlasLoot", "AceEvent-3.0", "AceTimer-3.0")
--Instance required libraries
local BabbleBoss = AtlasLoot_GetLocaleLibBabble("LibBabble-Boss-3.0")
@@ -52,6 +51,7 @@ ATLASLOOT_DEBUGSHOWN = false;
ATLASLOOT_FILTER_ENABLE = false;
ATLASLOOT_CURRENTTYPE = "Default";
ATLASLOOT_TYPE = {};
+ATLASLOOT_BACKENABLED = false;
-- Colours stored for code readability
local GREY = "|cff999999";
@@ -132,19 +132,22 @@ function AtlasLoot:OnEnable()
AtlasLoot.db:RegisterDefaults(AtlasLootDBDefaults);
if not AtlasLootCharDB then AtlasLootCharDB = {} end
if not AtlasLootCharDB["QuickLooks"] then AtlasLootCharDB["QuickLooks"] = {} end
+ if not AtlasLootCharDB.SelectedFilter then AtlasLootCharDB.SelectedFilter = 1 end
if not AtlasLootCharDB["SearchResult"] then AtlasLootCharDB["SearchResult"] = {Name = "Search Result" , Type = "Search", Back = true}; end
+ if not AtlasLootFilterDB then AtlasLootFilterDB = {["FilterLists"] = {{Name = "Default" }}} end;
+ if AtlasLootFilterDB and not AtlasLootFilterDB["FilterLists"] then AtlasLootFilterDB = {["FilterLists"] = {{Name = "Default" }}} end;
if AtlasLoot_Data then
AtlasLoot_Data["EmptyTable"] = {
Name = AL["Select a Loot Table..."];
- {Name = ""};
+ {Name = AL["Select a Loot Table..."]};
};
end
if IsAddOnLoaded("Atlas") then
AtlasLoot:LoadMapData();
ATLASLOOT_ATLASLOADED = true;
- AtlasLootDefaultFrame_MapButton:Show();
- AtlasLootDefaultFrame_MapSelectButton:Show();
+ AtlasLootDefaultFrame_MapButton:Enable();
+ AtlasLootDefaultFrame_MapSelectButton:Enable();
end
--Add the loot browser to the special frames tables to enable closing wih the ESC key
@@ -220,7 +223,6 @@ function AtlasLoot:OnEnable()
panel.name=AL["AtlasLoot"];
InterfaceOptions_AddCategory(panel);
--Filter and wishlist options menus creates as part of the next 2 commands
- AtlasLoot_CreateFilterOptions();
AtlasLoot_CreateWishlistOptions();
panel = _G["AtlasLootHelpFrame"];
panel.name=AL["Help"];
@@ -230,6 +232,14 @@ function AtlasLoot:OnEnable()
LibStub("LibAboutPanel").new(AL["AtlasLoot"], "AtlasLoot");
end
AtlasLoot_UpdateLootBrowserScale();
+ local playerName = UnitName("player");
+ -- Is wishlist item disabled on load or not
+ if AtlasLootWishList["Options"][playerName]["AutoSortWishlist"] then
+ AtlasLootItemsFrame_Wishlist_UnLock:Disable();
+ else
+ AtlasLootItemsFrame_Wishlist_UnLock:Enable();
+ end
+ AtlasLoot:LoadItemIDsDatabase();
end
function AtlasLoot_Reset(data)
@@ -322,11 +332,9 @@ function AtlasLoot:OnInitialize()
end
--Sets the default loot tables for the current expansion enabled on the server.
- local function getExpac()
- local xpaclist = {"CLASSIC", "TBC", "WRATH"};
- AtlasLoot_Expac = xpaclist[GetAccountExpansionLevel()+1];
- end
- getExpac();
+ local xpaclist = {"CLASSIC", "TBC", "WRATH"};
+ AtlasLoot_Expac = xpaclist[GetAccountExpansionLevel()+1];
+
end
function AtlasLoot:CleandataID(newID, listnum)
@@ -366,6 +374,7 @@ function AtlasLoot:CreateToken(dataID)
};
end
--Fills table with items
+ local count = #AtlasLoot_Data[dataID][1] * #AtlasLoot_Data[dataID];
for n, t in ipairs(AtlasLoot_Data[dataID]) do
for c, v in ipairs(t) do
if type(v) == "table" then
@@ -374,9 +383,10 @@ function AtlasLoot:CreateToken(dataID)
if itemType == select(9, GetItemInfo(itemID)) or itemType2 == select(9, GetItemInfo(itemID)) then
table.insert(AtlasLoot_TokenData[orgID][1], {#AtlasLoot_TokenData[orgID][1] + 1, v[2], v[3], v[4], t.Name});
end
- if #AtlasLoot_Data[dataID] == n and #t == c then
+ if count == 1 then
AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3]);
end
+ count = count - 1;
end)
end
end
@@ -399,7 +409,6 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
local spellName, spellIcon;
SearchPrevData = {dataID, dataSource_backup, tablenum};
-
--If the loot table name has not been passed, throw up a debugging statement
if dataID == nil then
@@ -413,6 +422,8 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
--Ditch the Quicklook selector
AtlasLootQuickLooksButton:Hide();
+ AtlasLoot:HideFilterCreateButtons();
+
--Hide Map and reshow lootbackground
AtlasLootDefaultFrame_Map:Hide();
AtlasLootDefaultFrame_LootBackground:Show();
@@ -444,12 +455,19 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
AtlasLootDefaultFrame_MapButton:Disable();
AtlasLootDefaultFrame_MapSelectButton:SetText("No Map");
end
+
+ if dataSource_backup == "AtlasLoot_CurrentWishList" then
+ ATLASLOOT_CURRENT_WISHLIST_NUM = AtlasLoot_CurrentWishList["Show"].ListNum;
+ else
+ ATLASLOOT_ITEM_UNLOCK = false;
+ end
+
local difType = false;
-- Checks to see if type is the same
if ATLASLOOT_CURRENTTYPE ~= dataSource[dataID].Type then
- if dataSource[dataID].Type == "Crafting" then
+ if dataSource[dataID].Type == "Crafting" or dataSource[dataID].Type == "CraftingNoBF" then
ItemindexID = "Pattern";
- elseif ItemindexID == "Pattern" and dataSource[dataID].Type ~= "Crafting" then
+ elseif (ItemindexID == "Pattern" and dataSource[dataID].Type ~= "Crafting") or (ItemindexID == "Pattern" and dataSource[dataID].Type ~= "CraftingNoBF") then
ItemindexID = 2;
else
ItemindexID = ATLASLOOT_TYPE[dataSource[dataID].Type] or 2;
@@ -465,15 +483,33 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
ATLASLOOT_CURRENTTYPE = dataSource[dataID].Type or "Default";
-- Loads the difficultys into the scrollFrame
- AtlasLoot:ScrollFrameUpdate();
+ if dataSource[dataID].ListType then
+ AtlasLoot:ScrollFrameUpdate(nil,dataSource[dataID].ListType);
+ else
+ AtlasLoot:ScrollFrameUpdate();
+ end
- -- Sets the main page lable
- AtlasLoot_BossName:SetText(dataSource[dataID][tablenum].Name);
+ -- Finds the tablenumber to set where the difficulty slider should be.
+ local typeNumber = 1;
+ local function findTypeNumber()
+ for i,v in ipairs(AtlasLoot_Difficulty[dataSource[dataID].Type]) do
+ if v[2] == ItemindexID then
+ typeNumber = i;
+ return i;
+ end
+ end
+ end
-- Moves the difficulty scrollslider if the difficulty has changed
- if dataSource[dataID].Type and difType and #AtlasLoot_Difficulty[dataSource[dataID].Type] > 5 then
+ if dataSource[dataID].Type and difType and #AtlasLoot_Difficulty[dataSource[dataID].Type] > 5 and findTypeNumber() > 5 then
local min, max = AtlasLootDefaultFrameScrollScrollBar:GetMinMaxValues();
- AtlasLootDefaultFrameScrollScrollBar:SetValue(ItemindexID * (max / #AtlasLoot_Difficulty[dataSource[dataID].Type]));
+ AtlasLootDefaultFrameScrollScrollBar:SetValue(typeNumber * (max / #AtlasLoot_Difficulty[dataSource[dataID].Type]));
+ end
+
+ -- Moves the difficulty scrollslider if wishlist
+ if dataSource_backup == "AtlasLoot_CurrentWishList" and dataSource[dataID].ListNum > 5 then
+ local min, max = AtlasLootDefaultFrameScrollScrollBar:GetMinMaxValues();
+ AtlasLootDefaultFrameScrollScrollBar:SetValue(dataSource[dataID].ListNum * (max / #AtlasLootWishList[dataSource[dataID].ListType][dataSource[dataID].ListNum]));
end
--For stopping the subtable from changing if its a token table
@@ -494,6 +530,14 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
_G["AtlasLootItem_"..i].spellitemID = 0;
end
+ -- Sets the main page lable
+ if dataSource[dataID][tablenum] and dataSource[dataID][tablenum].Name then
+ AtlasLoot_BossName:SetText(dataSource[dataID][tablenum].Name);
+ else
+ AtlasLoot_BossName:SetText("This Is Empty");
+ return
+ end
+
local function getProperItemConditionals(item)
isValid = false;
toShow = true;
@@ -512,11 +556,11 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
toShow = false;
end
end
- IDfound = AtlasLoot:FindId(item[2], min(AtlasLoot_Difficulty:getMaxDifficulty(dataSource[dataID].Type), itemDif)) or item[2];
+ IDfound = AtlasLoot:FindId(item[2], min(AtlasLoot_Difficulty:getMaxDifficulty(dataSource[dataID].Type), itemDif),dataSource[dataID].Type) or item[2];
end
if string.sub(IDfound, 1, 1) == "s" then
- IDfound = AtlasLoot:FindId(item[2], itemDif) or item[2];
+ IDfound = AtlasLoot:FindId(item[2], itemDif, dataSource[dataID].Type) or item[2];
else
isItem = true;
end
@@ -530,10 +574,10 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
if tonumber(item[AtlasLoot_Difficulty.MAX_DIF]) < itemDif then itemDif = item[AtlasLoot_Difficulty.MAX_DIF] end;
end
--If something was found in itemID database show that if not show default table item
- IDfound = AtlasLoot:FindId(item[2], itemDif) or item[2];
+ IDfound = AtlasLoot:FindId(item[2], itemDif, dataSource[dataID].Type) or item[2];
if ItemindexID ~= "" and dataID == "SearchResult" then
- IDfound = AtlasLoot:FindId(item[9], itemDif) or item[2];
+ IDfound = AtlasLoot:FindId(item[9], itemDif, dataSource[dataID].Type) or item[2];
end
end
end
@@ -542,7 +586,7 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
end
-- Create the loottable
- if (dataID == "SearchResult") or (dataID == "WishList") or dataSource[dataID][tablenum] then
+ if (dataID == "SearchResult") or (dataSource_backup == "AtlasLoot_CurrentWishList") or dataSource[dataID][tablenum] then
--Iterate through each item object and set its properties
for i = 1, 30, 1 do
--Check for a valid object (that it exists, and that it has a name
@@ -583,7 +627,7 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
AtlasLootItemsFrame.refreshFilter = {dataID, dataSource_backup, tablenum};
end
- if dataID ~= "WishList" and dataID ~= "FilterList" and dataSource[dataID].Back ~= true then
+ if dataID ~= "FilterList" and dataSource[dataID].Back ~= true then
AtlasLootItemsFrame.refreshOri = {dataID, dataSource_backup, tablenum};
end
@@ -604,7 +648,9 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
extraFrame = _G["AtlasLootItem_"..dataSource[dataID][tablenum][i][1].."_Extra"];
--If there is no data on the texture an item should have, show a big red question mark
- if dataSource[dataID][tablenum][i][3] == "?" then
+ if dataSource[dataID][tablenum][i][3] == "Blank" then
+ iconFrame:SetTexture(nil);
+ elseif dataSource[dataID][tablenum][i][3] == "?" then
iconFrame:SetTexture("Interface\\Icons\\INV_Misc_QuestionMark");
elseif dataSource[dataID][tablenum][i][3] == "" then
iconFrame:SetTexture(GetItemIcon(IDfound));
@@ -623,14 +669,14 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
iconFrame:SetTexture("Interface\\Icons\\"..dataSource[dataID][tablenum][i][3]);
end
itemButton.itemTexture = dataSource[dataID][tablenum][i][3];
- if iconFrame:GetTexture() == nil then
+ if iconFrame:GetTexture() == nil and dataSource[dataID][tablenum][i][3] ~= "Blank" then
iconFrame:SetTexture("Interface\\Icons\\INV_Misc_QuestionMark");
end
itemButton.name = text;
itemButton.extra = extra;
--Highlight items in the wishlist
- if IDfound ~= "" and IDfound ~= 0 and dataSource_backup ~= "AtlasLootWishList" and AtlasLootWishList["Options"][UnitName("player")]["Mark"] == true then
+ if IDfound ~= "" and IDfound ~= 0 and dataSource_backup ~= "AtlasLoot_CurrentWishList" and AtlasLootWishList["Options"][UnitName("player")]["Mark"] == true then
local xitemexistwish, itemwishicons = AtlasLoot_WishListCheck(IDfound, true)
if xitemexistwish then
text = itemwishicons.." "..text;
@@ -642,7 +688,7 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
extraFrame:Show();
--For convenience, we store information about the objects in the objects so that it can be easily accessed later
if((string.sub(IDfound, 1, 1) == "s") and (ItemindexID ~= "Pattern") and (tonumber(dataSource[dataID][tablenum][i][3]))) then
- IDfound = AtlasLoot:FindId(tonumber(dataSource[dataID][tablenum][i][3]), ItemindexID) or tonumber(dataSource[dataID][tablenum][i][3]);
+ IDfound = AtlasLoot:FindId(tonumber(dataSource[dataID][tablenum][i][3]), ItemindexID, dataSource[dataID].Type) or tonumber(dataSource[dataID][tablenum][i][3]);
itemButton.itemID = IDfound;
itemButton.spellitemID = dataSource[dataID][tablenum][i][3];
else
@@ -675,10 +721,12 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
itemButton.price = dataSource[dataID][tablenum][i][6] or nil;
itemButton.droprate = dataSource[dataID][tablenum][i][7] or nil;
- if (dataID == "SearchResult" or dataSource_backup == "AtlasLootWishList") and dataSource[dataID][tablenum][i][8] then
+ if (dataID == "SearchResult" or dataSource_backup == "AtlasLoot_CurrentWishList") and dataSource[dataID][tablenum][i][8] then
itemButton.sourcePage = dataSource[dataID][tablenum][i][8];
- elseif dataSource[dataID][tablenum][i][8] ~= nil and dataSource[dataID][tablenum][i][8]:match("=LT=") then
+ elseif dataSource[dataID][tablenum][i][8] ~= nil and dataSource[dataID][tablenum][i][8]:match("=TT=") then
itemButton.sourcePage = string.sub(dataSource[dataID][tablenum][i][8], 5);
+ elseif dataSource[dataID][tablenum][i][8] ~= nil and dataSource[dataID][tablenum][i][8]:match("=LT=") then
+ itemButton.sourcePage = dataSource[dataID][tablenum][i][8];
else
itemButton.sourcePage = nil;
end
@@ -702,9 +750,13 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
AtlasLootItemsFrame.refreshFilter = {dataID, dataSource_backup, tablenum};
end
- if dataSource_backup ~= "AtlasLootWishList" and dataID ~= "FilterList" and dataSource[dataID].Back ~= true and dataID ~= "EmptyTable" then
+ if dataID ~= "FilterList" and dataSource[dataID].Back ~= true and dataID ~= "EmptyTable" then
AtlasLootItemsFrame.refreshOri = {dataID, dataSource_backup, tablenum};
- AtlasLoot.db.profile.LastBoss = {dataID, dataSource_backup, tablenum, ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE};
+ end
+
+ if dataSource_backup ~= "AtlasLoot_CurrentWishList" and dataID ~= "FilterList" and dataSource[dataID].Back ~= true and dataID ~= "EmptyTable" then
+ if not AtlasLoot.db.profile.LastBoss then AtlasLoot.db.profile.LastBoss = {} end;
+ AtlasLoot.db.profile.LastBoss[AtlasLoot_Expac] = {dataID, dataSource_backup, tablenum, ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE};
AtlasLoot.db.profile[ATLASLOOT_CURRENTTABLE] = {dataID, dataSource_backup, tablenum, ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE};
end
@@ -724,7 +776,7 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
end
-- Show the Filter Check-Box
- if dataID ~= "SearchResult" and filterCheck(dataID) ~= true and dataSource_backup ~= "AtlasLoot_TokenData" and dataSource_backup ~= "AtlasLootWishList" then
+ if filterCheck(dataID) ~= true then
AtlasLootFilterCheck:Show();
end
@@ -735,15 +787,17 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
_G["AtlasLootItemsFrame_Wishlist_Options"]:Hide();
_G["AtlasLootItemsFrame_Wishlist_Share"]:Hide();
_G["AtlasLootItemsFrame_Wishlist_Swap"]:Hide();
+ _G["AtlasLootItemsFrame_Wishlist_UnLock"]:Hide();
-- Show Wishlist buttons when a wishlist in showing
- if dataSource_backup == "AtlasLootWishList" then
+ if dataSource_backup == "AtlasLoot_CurrentWishList" then
_G["AtlasLootItemsFrame_Wishlist_Options"]:Show();
_G["AtlasLootItemsFrame_Wishlist_Share"]:Show();
_G["AtlasLootItemsFrame_Wishlist_Swap"]:Show();
- if dataID == "Shared" then
+ _G["AtlasLootItemsFrame_Wishlist_UnLock"]:Show();
+ if dataSource[dataID].ListType == "Shared" then
AtlasLootItemsFrame_Wishlist_Swap:SetText("Own");
- elseif dataID == "Own" then
+ elseif dataSource[dataID].ListType == "Own" then
AtlasLootItemsFrame_Wishlist_Swap:SetText("Shared");
end
end
@@ -754,7 +808,7 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
tablenum = AtlasLootItemsFrame.refreshOri[3];
end
- if AtlasLootItemsFrame.refreshOri and tablenum ~= #_G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]] and dataSource_backup ~= "AtlasLoot_TokenData" then
+ if AtlasLootItemsFrame.refresh and tablenum ~= #_G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]] and dataSource_backup ~= "AtlasLoot_TokenData" and dataID ~= "SearchResult" or tablenum ~= #_G[AtlasLootItemsFrame.refresh[2]][AtlasLootItemsFrame.refresh[1]] and dataID == "SearchResult" then
_G["AtlasLootItemsFrame_NEXT"]:Show();
_G["AtlasLootItemsFrame_NEXT"].tablenum = tablenum + 1;
_G["AtlasLootItemsFrame_NEXT"].tablebase = tablebase;
@@ -765,15 +819,17 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
_G["AtlasLootItemsFrame_PREV"].tablenum = tablenum - 1;
_G["AtlasLootItemsFrame_PREV"].tablebase = tablebase;
end
- if dataSource[dataID].Back then
- _G["AtlasLootItemsFrame_BACK"]:Show();
- end
+ if dataSource[dataID].Back or ATLASLOOT_BACKENABLED then
+ _G["AtlasLootItemsFrame_BACK"]:Show();
+ elseif dataID ~= "FilterList" then
+ AtlasLootItemsFrame.refreshBack = {dataID, dataSource_backup, tablenum};
+ end
end
--Anchor the item frame where it is supposed to be
if ATLASLOOT_FILTER_ENABLE and dataID ~= "FilterList" then
- AtlasLoot:HideNoUsableItems();
+ AtlasLoot:HideFilteredItems();
end
if dataID ~= "SearchResult" then
@@ -799,7 +855,8 @@ AtlasLoot:NavButton_OnClick:
Called when 'Back'Button is pressed and calls up the appropriate loot page
]]
function AtlasLoot:BackButton_OnClick()
- AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3]);
+ ATLASLOOT_BACKENABLED = false;
+ AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refreshBack[1], AtlasLootItemsFrame.refreshBack[2], AtlasLootItemsFrame.refreshBack[3]);
end
--[[
@@ -809,7 +866,7 @@ dataID: Loot table dataID
]]
function AtlasLoot:IsLootTableAvailable(dataSource)
local moduleName = nil;
- moduleName = AtlasLoot:GetLODModule(dataSource);
+ moduleName = AtlasLoot.ModuleName[dataSource];
if IsAddOnLoaded(moduleName) then
return true;
else
@@ -817,24 +874,14 @@ function AtlasLoot:IsLootTableAvailable(dataSource)
end
end
---[[
-AtlasLoot:GetLODModule(dataSource)
-Returns the name of the module that needs to be loaded
-dataSource: Location of the loot table
-]]
-function AtlasLoot:GetLODModule(dataSource)
- if (dataSource=="AtlasLootOriginalWoW") then
- return "AtlasLoot_OriginalWoW";
- elseif (dataSource=="AtlasLootBurningCrusade") then
- return "AtlasLoot_BurningCrusade";
- elseif (dataSource=="AtlasLootCrafting") then
- return "AtlasLoot_Crafting";
- elseif (dataSource=="AtlasLootWorldEvents") then
- return "AtlasLoot_WorldEvents";
- elseif (dataSource=="AtlasLootWotLK") then
- return "AtlasLoot_WrathoftheLichKing";
- end
-end
+-- List of Moduel Names
+AtlasLoot.ModuleName = {
+ ["AtlasLootOriginalWoW"] = "AtlasLoot_OriginalWoW";
+ ["AtlasLootBurningCrusade"] = "AtlasLoot_BurningCrusade";
+ ["AtlasLootCrafting"] = "AtlasLoot_Crafting";
+ ["AtlasLootWorldEvents"] = "AtlasLoot_WorldEvents";
+ ["AtlasLootWotLK"] = "AtlasLoot_WrathoftheLichKing"
+}
--[[
AtlasLoot:LoadAllModules()
@@ -892,7 +939,11 @@ function AtlasLoot:ShowQuickLooks(button)
"tooltipTitle", AL["QuickLook"].." 1",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 1",
"func", function()
- AtlasLootCharDB["QuickLooks"][1]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name};
+ if AtlasLootItemsFrame.refresh[2] == "AtlasLoot_CurrentWishList" then
+ AtlasLootCharDB["QuickLooks"][1]={AtlasLoot_CurrentWishList["Show"].ListType, "AtlasLootWishList", AtlasLoot_CurrentWishList["Show"].ListNum, ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE, _G["AtlasLootWishList"][AtlasLoot_CurrentWishList["Show"].ListType][AtlasLoot_CurrentWishList["Show"].ListNum].Name};
+ else
+ AtlasLootCharDB["QuickLooks"][1]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name};
+ end
AtlasLoot:RefreshQuickLookButtons();
dewdrop:Close(1);
end
@@ -902,8 +953,12 @@ function AtlasLoot:ShowQuickLooks(button)
"tooltipTitle", AL["QuickLook"].." 2",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 2",
"func", function()
- AtlasLootCharDB["QuickLooks"][2]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name};
- AtlasLoot:RefreshQuickLookButtons();
+ if AtlasLootItemsFrame.refresh[2] == "AtlasLoot_CurrentWishList" then
+ AtlasLootCharDB["QuickLooks"][2]={AtlasLoot_CurrentWishList["Show"].ListType, "AtlasLootWishList", AtlasLoot_CurrentWishList["Show"].ListNum, ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE, _G["AtlasLootWishList"][AtlasLoot_CurrentWishList["Show"].ListType][AtlasLoot_CurrentWishList["Show"].ListNum].Name};
+ else
+ AtlasLootCharDB["QuickLooks"][2]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name};
+ end
+ AtlasLoot:RefreshQuickLookButtons();
dewdrop:Close(1);
end
);
@@ -912,8 +967,12 @@ function AtlasLoot:ShowQuickLooks(button)
"tooltipTitle", AL["QuickLook"].." 3",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 3",
"func", function()
- AtlasLootCharDB["QuickLooks"][3]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name};
- AtlasLoot:RefreshQuickLookButtons();
+ if AtlasLootItemsFrame.refresh[2] == "AtlasLoot_CurrentWishList" then
+ AtlasLootCharDB["QuickLooks"][3]={AtlasLoot_CurrentWishList["Show"].ListType, "AtlasLootWishList", AtlasLoot_CurrentWishList["Show"].ListNum, ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE, _G["AtlasLootWishList"][AtlasLoot_CurrentWishList["Show"].ListType][AtlasLoot_CurrentWishList["Show"].ListNum].Name};
+ else
+ AtlasLootCharDB["QuickLooks"][3]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name};
+ end
+ AtlasLoot:RefreshQuickLookButtons();
dewdrop:Close(1);
end
);
@@ -922,8 +981,12 @@ function AtlasLoot:ShowQuickLooks(button)
"tooltipTitle", AL["QuickLook"].." 4",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 4",
"func", function()
- AtlasLootCharDB["QuickLooks"][4]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name};
- AtlasLoot:RefreshQuickLookButtons();
+ if AtlasLootItemsFrame.refresh[2] == "AtlasLoot_CurrentWishList" then
+ AtlasLootCharDB["QuickLooks"][4]={AtlasLoot_CurrentWishList["Show"].ListType, "AtlasLootWishList", AtlasLoot_CurrentWishList["Show"].ListNum, ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE, _G["AtlasLootWishList"][AtlasLoot_CurrentWishList["Show"].ListType][AtlasLoot_CurrentWishList["Show"].ListNum].Name};
+ else
+ AtlasLootCharDB["QuickLooks"][4]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name};
+ end
+ AtlasLoot:RefreshQuickLookButtons();
dewdrop:Close(1);
end
);
@@ -988,35 +1051,6 @@ function AtlasLoot:QueryLootPage()
queryNextItem(START);
end
---[[
-AtlasLoot:QueryLootPage()
-Querys all valid items on the current loot page.
-]]
-function AtlasLoot:QueryLootPageOLD()
-local lastitem
- for t = 1, 30, 1 do
- local xbutton = _G["AtlasLootItem_"..t];
- local xqueryitem = xbutton.itemID;
- if (xqueryitem) and (xqueryitem ~= nil) and (xqueryitem ~= "") and (xqueryitem ~= 0) and (string.sub(xqueryitem, 1, 1) ~= "s") then
- lastitem = t;
- end
- end
- for i = 1, 30, 1 do
- local button = _G["AtlasLootItem_"..i];
- local queryitem = button.itemID;
- if (queryitem) and (queryitem ~= nil) and (queryitem ~= "") and (queryitem ~= 0) and (string.sub(queryitem, 1, 1) ~= "s") then
- local item = Item:CreateFromID(queryitem);
- if not (item:GetInfo()) then
- item:ContinueOnLoad(function(itemId)
- if i == lastitem then
- AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3]);
- end
- end)
- end
- end
- end
-end
-
--[[
AtlasLoot:AddTooltip(frameb, tooltiptext)
Adds explanatory tooltips to UI objects.
@@ -1037,9 +1071,34 @@ AtlasLoot:FindId(id, difficulty)
Finds the Ids of other difficulties based on the normal id of the item and the difficulty parameter given.
On the form of {ID, {normal, heroic, mythic, mythic1, mythic2, ... ,mythicN}}
]]
-function AtlasLoot:FindId(id, difficulty)
- if ItemIDsDatabase[id] ~= nil then
+function AtlasLoot:FindId(id, difficulty, type)
+ if not ItemIDsDatabase[id] then return nil, false end
+
+ if difficulty == 5 and (type == "BCRaid" or type == "ClassicRaid") then
+ return ItemIDsDatabase[id]["MythicRaid"], true
+ else
return ItemIDsDatabase[id][difficulty], true
end
- return nil, false;
-end
\ No newline at end of file
+end
+-- Loads the Item Variations into a table from the data content folder
+function AtlasLoot:LoadItemIDsDatabase()
+ local content = C_ContentLoader:Load("ItemVariationData")
+ content:SetParser(function(index, data)
+ -- run for each item in the data
+ if index ~= 0 and data.Normal ~= 0 and not ItemIDsDatabase[data.Normal] then
+ ItemIDsDatabase[data.Normal] = {}
+ ItemIDsDatabase[data.Normal]["MythicRaid"] = data.Heroic + 1000000
+ table.insert(ItemIDsDatabase[data.Normal],data.Bloodforged);
+ table.insert(ItemIDsDatabase[data.Normal],data.Normal);
+ if data.Heroic ~= 0 then table.insert(ItemIDsDatabase[data.Normal],data.Heroic) end
+ for _,v in ipairs(data["Mythic"]) do
+ if v ~= 0 then
+ table.insert(ItemIDsDatabase[data.Normal],v)
+ end
+ end
+ end
+ end)
+
+ -- This will run over time (usually about 30s for a file this size), but will maintain playable fps while running.
+ content:ParseAsync()
+ end
\ No newline at end of file
diff --git a/AtlasLoot/Core/AtlasLoot.xml b/AtlasLoot/Core/AtlasLoot.xml
index af63bca..3e67a8e 100644
--- a/AtlasLoot/Core/AtlasLoot.xml
+++ b/AtlasLoot/Core/AtlasLoot.xml
@@ -2,13 +2,14 @@
-
+
+
+
diff --git a/AtlasLoot/Core/Atlasloot_Maps.lua b/AtlasLoot/Core/Atlasloot_Maps.lua
index 9e59845..b6b4758 100644
--- a/AtlasLoot/Core/Atlasloot_Maps.lua
+++ b/AtlasLoot/Core/Atlasloot_Maps.lua
@@ -158,273 +158,273 @@ AtlasLoot_MapData = {
--************************************************
["AuchindounEnt"] = {
- ZoneName = {AtlasLocale["Entrance"]};
+ ZoneName = {AL["Entrance"]};
Location = { BabbleZone["Terokkar Forest"], 3519 };
LevelRange = "63-70";
MinLevel = "55";
PlayerLimit = "5";
- Acronym = AtlasLocale["Auch"];
+ Acronym = AL["Auch"];
{ BLUE.."A) "..BabbleZone["Auchenai Crypts"], ZONE, 3790 };
{ BLUE.."B) "..BabbleZone["Mana-Tombs"], ZONE, 3792 };
{ BLUE.."C) "..BabbleZone["Sethekk Halls"], ZONE, 3791 };
{ BLUE.."D) "..BabbleZone["Shadow Labyrinth"], ZONE, 3789 };
- { BLUE.."E) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Ha'Lei"], NPC, 19697 };
- { WHITE..INDENT..AtlasLocale["Greatfather Aldrimus"], NPC, 19698 };
- { WHITE..INDENT..AtlasLocale["Clarissa"], NPC, 19693 };
- { WHITE..INDENT..AtlasLocale["Ramdor the Mad"], NPC, 19417 };
- { WHITE..INDENT..AtlasLocale["Horvon the Armorer "], NPC, 19879 };
- { WHITE.."2) "..AtlasLocale["Nexus-Prince Haramad"], NPC, 19674 };
- { WHITE..INDENT..AtlasLocale["Artificer Morphalius"], NPC, 19670 };
- { WHITE..INDENT..AtlasLocale["Mamdy the \"Ologist\""], NPC, 19669 };
- { WHITE..INDENT..AtlasLocale["\"Slim\" "], NPC, 19679 };
- { WHITE..INDENT..AtlasLocale["\"Captain\" Kaftiz"], NPC, 19676 };
- { WHITE.."3) "..AtlasLocale["Isfar"], NPC, 18933 };
- { WHITE.."4) "..AtlasLocale["Field Commander Mahfuun"], NPC, 19542 };
- { WHITE..INDENT..AtlasLocale["Spy Grik'tha"], NPC, 19496 };
- { WHITE..INDENT..AtlasLocale["Provisioner Tsaalt"], NPC, 19718 };
- { WHITE..INDENT..AtlasLocale["Dealer Tariq "], NPC, 20986 };
- { WHITE.."5) "..AtlasLocale["Meeting Stone"] };
+ { BLUE.."E) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Ha'Lei"], NPC, 19697 };
+ { WHITE..INDENT..AL["Greatfather Aldrimus"], NPC, 19698 };
+ { WHITE..INDENT..AL["Clarissa"], NPC, 19693 };
+ { WHITE..INDENT..AL["Ramdor the Mad"], NPC, 19417 };
+ { WHITE..INDENT..AL["Horvon the Armorer "], NPC, 19879 };
+ { WHITE.."2) "..AL["Nexus-Prince Haramad"], NPC, 19674 };
+ { WHITE..INDENT..AL["Artificer Morphalius"], NPC, 19670 };
+ { WHITE..INDENT..AL["Mamdy the \"Ologist\""], NPC, 19669 };
+ { WHITE..INDENT..AL["\"Slim\" "], NPC, 19679 };
+ { WHITE..INDENT..AL["\"Captain\" Kaftiz"], NPC, 19676 };
+ { WHITE.."3) "..AL["Isfar"], NPC, 18933 };
+ { WHITE.."4) "..AL["Field Commander Mahfuun"], NPC, 19542 };
+ { WHITE..INDENT..AL["Spy Grik'tha"], NPC, 19496 };
+ { WHITE..INDENT..AL["Provisioner Tsaalt"], NPC, 19718 };
+ { WHITE..INDENT..AL["Dealer Tariq "], NPC, 20986 };
+ { WHITE.."5) "..AL["Meeting Stone"] };
};
["BlackfathomDeepsEnt"] = {
- ZoneName = {AtlasLocale["Entrance"], 719 };
+ ZoneName = {AL["Entrance"], 719 };
Location = { BabbleZone["Ashenvale"], 331 };
LevelRange = "20-28";
MinLevel = "19";
PlayerLimit = "5";
- Acronym = AtlasLocale["BFD"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
+ Acronym = AL["BFD"];
+ { BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..BabbleZone["Blackfathom Deeps"], ZONE, 719 };
};
["BlackrockSpireEnt"] = {
- ZoneName = { AtlasLocale["Entrance"], 25 };
+ ZoneName = { AL["Entrance"], 25 };
Location = { BabbleZone["Searing Gorge"].." / "..BabbleZone["Burning Steppes"], 51, 46 };
LevelRange = "54-60";
MinLevel = "45";
PlayerLimit = "5/10/40";
- Acronym = AtlasLocale["BRM"];
+ Acronym = AL["BRM"];
{ BLUE.."A) "..BabbleZone["Searing Gorge"], ZONE, 51 };
{ BLUE.."B) "..BabbleZone["Burning Steppes"], ZONE, 46 };
- { BLUE.."C) "..BabbleZone["Blackrock Depths"].." ("..AtlasLocale["BRD"]..")", ZONE, 1584 };
- { BLUE..INDENT..BabbleZone["Molten Core"].." ("..AtlasLocale["MC"]..")", ZONE, 2717 };
- { BLUE.."D) "..BabbleZone["Blackrock Spire"].." ("..AtlasLocale["Lower"]..", "..AtlasLocale["LBRS"]..")", ZONE, 1583 };
- { BLUE..INDENT..BabbleZone["Blackrock Spire"].." ("..AtlasLocale["Upper"]..", "..AtlasLocale["UBRS"]..")", ZONE, 1583 };
- { BLUE..INDENT..BabbleZone["Blackwing Lair"].." ("..AtlasLocale["BWL"]..")", ZONE, 2677 };
- { BLUE..INDENT..AtlasLocale["Bodley"].." ("..AtlasLocale["Ghost"]..")", NPC, 16033 };
- { WHITE.."1) "..AtlasLocale["Overmaster Pyron"].." ("..AtlasLocale["Wanders"]..")", NPC, 9026 };
- { WHITE.."2) "..AtlasLocale["Lothos Riftwaker"], NPC, 14387 };
- { WHITE.."3) "..AtlasLocale["Franclorn Forgewright"].." ("..AtlasLocale["Ghost"]..")", NPC, 8888 };
- { WHITE.."4) "..AtlasLocale["Meeting Stone"].." ("..AtlasLocale["BRD"]..")" };
- { WHITE.."5) "..AtlasLocale["Orb of Command"], OBJECT, 179879 };
- { WHITE.."6) "..AtlasLocale["Meeting Stone"].." ("..AtlasLocale["LBRS"]..", "..AtlasLocale["UBRS"]..")" };
- { WHITE.."7) "..AtlasLocale["Scarshield Quartermaster "], NPC, 9046 };
+ { BLUE.."C) "..BabbleZone["Blackrock Depths"].." ("..AL["BRD"]..")", ZONE, 1584 };
+ { BLUE..INDENT..BabbleZone["Molten Core"].." ("..AL["MC"]..")", ZONE, 2717 };
+ { BLUE.."D) "..BabbleZone["Blackrock Spire"].." ("..AL["Lower"]..", "..AL["LBRS"]..")", ZONE, 1583 };
+ { BLUE..INDENT..BabbleZone["Blackrock Spire"].." ("..AL["Upper"]..", "..AL["UBRS"]..")", ZONE, 1583 };
+ { BLUE..INDENT..BabbleZone["Blackwing Lair"].." ("..AL["BWL"]..")", ZONE, 2677 };
+ { BLUE..INDENT..AL["Bodley"].." ("..AL["Ghost"]..")", NPC, 16033 };
+ { WHITE.."1) "..AL["Overmaster Pyron"].." ("..AL["Wanders"]..")", NPC, 9026 };
+ { WHITE.."2) "..AL["Lothos Riftwaker"], NPC, 14387 };
+ { WHITE.."3) "..AL["Franclorn Forgewright"].." ("..AL["Ghost"]..")", NPC, 8888 };
+ { WHITE.."4) "..AL["Meeting Stone"].." ("..AL["BRD"]..")" };
+ { WHITE.."5) "..AL["Orb of Command"], OBJECT, 179879 };
+ { WHITE.."6) "..AL["Meeting Stone"].." ("..AL["LBRS"]..", "..AL["UBRS"]..")" };
+ { WHITE.."7) "..AL["Scarshield Quartermaster "], NPC, 9046 };
};
["CoilfangReservoirEnt"] = {
- ZoneName = { AtlasLocale["Entrance"]};
+ ZoneName = { AL["Entrance"]};
Location = { BabbleZone["Zangarmarsh"], 3521 };
LevelRange = "61-70";
MinLevel = "55";
PlayerLimit = "5/25";
- Acronym = AtlasLocale["CR"];
+ Acronym = AL["CR"];
{ BLUE.."A) "..BabbleZone["The Slave Pens"], ZONE, 3717 };
{ BLUE.."B) "..BabbleZone["The Steamvault"], ZONE, 3715 };
{ BLUE.."C) "..BabbleZone["Serpentshrine Cavern"], ZONE, 3607 };
{ BLUE.."D) "..BabbleZone["The Underbog"], ZONE, 3716 };
- { BLUE.."E) "..AtlasLocale["Entrance"].." ("..AtlasLocale["Underwater"]..")" };
- { WHITE.."1) "..AtlasLocale["Watcher Jhang"], NPC, 17884 };
- { WHITE..INDENT..AtlasLocale["Meeting Stone"] };
- { WHITE.."2) "..AtlasLocale["Mortog Steamhead"], NPC, 23373 };
+ { BLUE.."E) "..AL["Entrance"].." ("..AL["Underwater"]..")" };
+ { WHITE.."1) "..AL["Watcher Jhang"], NPC, 17884 };
+ { WHITE..INDENT..AL["Meeting Stone"] };
+ { WHITE.."2) "..AL["Mortog Steamhead"], NPC, 23373 };
};
["CoTEnt"] = {
- ZoneName = { AtlasLocale["Entrance"]};
+ ZoneName = { AL["Entrance"]};
Location = { BabbleZone["Tanaris"], 440 };
LevelRange = "66-70";
MinLevel = "66";
PlayerLimit = "5/25";
- Acronym = AtlasLocale["CoT"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
+ Acronym = AL["CoT"];
+ { BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..BabbleZone["Hyjal Summit"], ZONE, 3606 };
{ BLUE.."C) "..BabbleZone["Old Hillsbrad Foothills"], ZONE, 2367 };
{ BLUE.."D) "..BabbleZone["The Black Morass"], ZONE, 2366 };
{ BLUE.."E) "..BabbleZone["The Culling of Stratholme"], ZONE, 4100 };
- { WHITE.."1) "..AtlasLocale["Steward of Time "], NPC, 20142 };
- { WHITE.."2) "..AtlasLocale["Alexston Chrome "], NPC, 18542 };
+ { WHITE.."1) "..AL["Steward of Time "], NPC, 20142 };
+ { WHITE.."2) "..AL["Alexston Chrome "], NPC, 18542 };
{ WHITE.."3) "..BabbleZone["Graveyard"] };
- { WHITE.."4) "..AtlasLocale["Yarley "], NPC, 20082 };
- { WHITE.."5) "..AtlasLocale["Bortega "], NPC, 20081 };
- { WHITE..INDENT..AtlasLocale["Galgrom "], NPC, 20080 };
- { WHITE..INDENT..AtlasLocale["Alurmi "], NPC, 21643 };
- { WHITE.."6) "..AtlasLocale["Zaladormu"], NPC, 19934 };
- { WHITE..INDENT..AtlasLocale["Soridormi "].." ("..AtlasLocale["Wanders"]..")", NPC, 19935 };
- { WHITE..INDENT..AtlasLocale["Arazmodu "].." ("..AtlasLocale["Wanders"]..")", NPC, 19936 };
- { WHITE.."7) "..AtlasLocale["Moonwell"] };
- { WHITE.."8) "..AtlasLocale["Andormu "].." ("..AtlasLocale["Child"]..")", NPC, 19932 };
- { WHITE..INDENT..AtlasLocale["Nozari "].." ("..AtlasLocale["Child"]..")", NPC, 19933 };
- { WHITE.."9) "..AtlasLocale["Andormu "].." ("..AtlasLocale["Adult"]..")", NPC, 20130 };
- { WHITE..INDENT..AtlasLocale["Nozari "].." ("..AtlasLocale["Adult"]..")", NPC, 20131 };
+ { WHITE.."4) "..AL["Yarley "], NPC, 20082 };
+ { WHITE.."5) "..AL["Bortega "], NPC, 20081 };
+ { WHITE..INDENT..AL["Galgrom "], NPC, 20080 };
+ { WHITE..INDENT..AL["Alurmi "], NPC, 21643 };
+ { WHITE.."6) "..AL["Zaladormu"], NPC, 19934 };
+ { WHITE..INDENT..AL["Soridormi "].." ("..AL["Wanders"]..")", NPC, 19935 };
+ { WHITE..INDENT..AL["Arazmodu "].." ("..AL["Wanders"]..")", NPC, 19936 };
+ { WHITE.."7) "..AL["Moonwell"] };
+ { WHITE.."8) "..AL["Andormu "].." ("..AL["Child"]..")", NPC, 19932 };
+ { WHITE..INDENT..AL["Nozari "].." ("..AL["Child"]..")", NPC, 19933 };
+ { WHITE.."9) "..AL["Andormu "].." ("..AL["Adult"]..")", NPC, 20130 };
+ { WHITE..INDENT..AL["Nozari "].." ("..AL["Adult"]..")", NPC, 20131 };
};
["DireMaulEnt"] = {
- ZoneName = { AtlasLocale["Entrance"], 2557 };
+ ZoneName = { AL["Entrance"], 2557 };
Location = { BabbleZone["Feralas"], 357 };
LevelRange = "55-60";
MinLevel = "45";
PlayerLimit = "5";
- Acronym = AtlasLocale["DM"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
+ Acronym = AL["DM"];
+ { BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..BabbleZone["Dire Maul (East)"], ZONE, 2557 };
{ BLUE.."C) "..BabbleZone["Dire Maul (North)"], ZONE, 2557 };
{ BLUE.."D) "..BabbleZone["Dire Maul (West)"], ZONE, 2557 };
- { WHITE.."1) "..AtlasLocale["Dire Pool"] };
- { WHITE.."2) "..AtlasLocale["Dire Maul Arena"] };
- { WHITE..INDENT..AtlasLocale["Mushgog"].." ("..AtlasLocale["Random"]..")", NPC, 11447 };
- { WHITE..INDENT..AtlasLocale["Skarr the Unbreakable"].." ("..AtlasLocale["Random"]..")", NPC, 11498 };
- { WHITE..INDENT..AtlasLocale["The Razza"].." ("..AtlasLocale["Random"]..")", NPC, 11497 };
- { WHITE..INDENT..AtlasLocale["Elder Mistwalker"].." ("..AtlasLocale["Lunar Festival"]..")", NPC, 15587 };
+ { WHITE.."1) "..AL["Dire Pool"] };
+ { WHITE.."2) "..AL["Dire Maul Arena"] };
+ { WHITE..INDENT..AL["Mushgog"].." ("..AL["Random"]..")", NPC, 11447 };
+ { WHITE..INDENT..AL["Skarr the Unbreakable"].." ("..AL["Random"]..")", NPC, 11498 };
+ { WHITE..INDENT..AL["The Razza"].." ("..AL["Random"]..")", NPC, 11497 };
+ { WHITE..INDENT..AL["Elder Mistwalker"].." ("..AL["Lunar Festival"]..")", NPC, 15587 };
};
["GnomereganEnt"] = {
- ZoneName = { AtlasLocale["Entrance"], 133 };
+ ZoneName = { AL["Entrance"], 133 };
Location = { BabbleZone["Dun Morogh"], 1 };
LevelRange = "24-32";
MinLevel = "20";
PlayerLimit = "5";
- Acronym = AtlasLocale["Gnome"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE..INDENT..AtlasLocale["Meeting Stone"] };
- { BLUE.."B) "..BabbleZone["Gnomeregan"].." ("..AtlasLocale["Front"]..")", ZONE, 133 };
- { BLUE.."C) "..BabbleZone["Gnomeregan"].." ("..AtlasLocale["Back"]..")", ZONE, 133 };
- { WHITE.."1) "..AtlasLocale["Elevator"] };
- { WHITE.."2) "..AtlasLocale["Transpolyporter"] };
- { WHITE..INDENT..AtlasLocale["Sprok "], NPC, 8320 };
- { WHITE.."3) "..AtlasLocale["Matrix Punchograph 3005-A"], OBJECT, 142345 };
- { WHITE..INDENT..AtlasLocale["Namdo Bizzfizzle "], NPC, 2683 };
- { WHITE.."4) "..AtlasLocale["Techbot"], NPC, 6231 };
+ Acronym = AL["Gnome"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE..INDENT..AL["Meeting Stone"] };
+ { BLUE.."B) "..BabbleZone["Gnomeregan"].." ("..AL["Front"]..")", ZONE, 133 };
+ { BLUE.."C) "..BabbleZone["Gnomeregan"].." ("..AL["Back"]..")", ZONE, 133 };
+ { WHITE.."1) "..AL["Elevator"] };
+ { WHITE.."2) "..AL["Transpolyporter"] };
+ { WHITE..INDENT..AL["Sprok "], NPC, 8320 };
+ { WHITE.."3) "..AL["Matrix Punchograph 3005-A"], OBJECT, 142345 };
+ { WHITE..INDENT..AL["Namdo Bizzfizzle "], NPC, 2683 };
+ { WHITE.."4) "..AL["Techbot"], NPC, 6231 };
};
["HCEnt"] = {
- ZoneName = { AtlasLocale["Entrance"], 3545 };
+ ZoneName = { AL["Entrance"], 3545 };
Location = { BabbleZone["Hellfire Peninsula"], 3483 };
LevelRange = "59-70";
MinLevel = "55";
PlayerLimit = "5/25";
- Acronym = AtlasLocale["HC"];
+ Acronym = AL["HC"];
{ BLUE.."A) "..BabbleZone["Hellfire Ramparts"], ZONE, 3562 };
{ BLUE.."B) "..BabbleZone["The Shattered Halls"], ZONE, 3714 };
{ BLUE.."C) "..BabbleZone["The Blood Furnace"], ZONE, 3713 };
{ BLUE.."D) "..BabbleZone["Magtheridon's Lair"], ZONE, 3836 };
- { WHITE.."1) "..AtlasLocale["Meeting Stone of Magtheridon's Lair"] };
- { WHITE.."2) "..AtlasLocale["Meeting Stone of Hellfire Citadel"] };
- { GREN.."1') "..AtlasLocale["Steps and path to the Blood Furnace"] };
- { GREN.."2') "..AtlasLocale["Path to the Hellfire Ramparts and Shattered Halls"] };
+ { WHITE.."1) "..AL["Meeting Stone of Magtheridon's Lair"] };
+ { WHITE.."2) "..AL["Meeting Stone of Hellfire Citadel"] };
+ { GREN.."1') "..AL["Steps and path to the Blood Furnace"] };
+ { GREN.."2') "..AL["Path to the Hellfire Ramparts and Shattered Halls"] };
};
["KarazhanEnt"] = {
- ZoneName = { AtlasLocale["Entrance"], 2562 };
+ ZoneName = { AL["Entrance"], 2562 };
Location = { BabbleZone["Deadwind Pass"], 41 };
LevelRange = "70";
MinLevel = "68";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["Kara"];
- { BLUE.."A) "..BabbleZone["Karazhan"].." ("..AtlasLocale["Front"]..")", ZONE, 2562 };
- { BLUE.."B) "..BabbleZone["Karazhan"].." ("..AtlasLocale["Back"]..")", ZONE, 2562 };
- { BLUE.."C) "..AtlasLocale["Meeting Stone"] };
+ Acronym = AL["Kara"];
+ { BLUE.."A) "..BabbleZone["Karazhan"].." ("..AL["Front"]..")", ZONE, 2562 };
+ { BLUE.."B) "..BabbleZone["Karazhan"].." ("..AL["Back"]..")", ZONE, 2562 };
+ { BLUE.."C) "..AL["Meeting Stone"] };
{ BLUE.."D) "..BabbleZone["Graveyard"] };
- { WHITE.."1) "..AtlasLocale["Archmage Leryda"], NPC, 18253 };
- { WHITE.."2) "..AtlasLocale["Apprentice Darius"], NPC, 18255 };
- { WHITE.."3) "..AtlasLocale["Archmage Alturus"], NPC, 17613 };
- { WHITE.."4) "..AtlasLocale["Stairs to Underground Pond"] };
- { WHITE.."5) "..AtlasLocale["Stairs to Underground Well"] };
- { WHITE.."6) "..AtlasLocale["Charred Bone Fragment"], OBJECT, 181963 };
+ { WHITE.."1) "..AL["Archmage Leryda"], NPC, 18253 };
+ { WHITE.."2) "..AL["Apprentice Darius"], NPC, 18255 };
+ { WHITE.."3) "..AL["Archmage Alturus"], NPC, 17613 };
+ { WHITE.."4) "..AL["Stairs to Underground Pond"] };
+ { WHITE.."5) "..AL["Stairs to Underground Well"] };
+ { WHITE.."6) "..AL["Charred Bone Fragment"], OBJECT, 181963 };
};
["MaraudonEnt"] = {
- ZoneName = { AtlasLocale["Entrance"], 2100 };
+ ZoneName = { AL["Entrance"], 2100 };
Location = { BabbleZone["Desolace"], 405 };
LevelRange = "42-51";
MinLevel = "30";
PlayerLimit = "5";
- Acronym = AtlasLocale["Mara"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE..INDENT..AtlasLocale["The Nameless Prophet"], NPC, 13718 };
- { BLUE.."B) "..BabbleZone["Maraudon"].." ("..AtlasLocale["Purple"]..")", ZONE, 2100 };
- { BLUE.."C) "..BabbleZone["Maraudon"].." ("..AtlasLocale["Orange"]..")", ZONE, 2100 };
- { BLUE.."D) "..BabbleZone["Maraudon"].." ("..AtlasLocale["Portal"]..")", ZONE, 2100 };
- { WHITE.."1) "..AtlasLocale["Kolk "], NPC, 13742 };
- { WHITE.."2) "..AtlasLocale["Gelk "], NPC, 13741 };
- { WHITE.."3) "..AtlasLocale["Magra "], NPC, 13740 };
- { WHITE.."4) "..AtlasLocale["Cavindra"], NPC, 13697 };
+ Acronym = AL["Mara"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE..INDENT..AL["The Nameless Prophet"], NPC, 13718 };
+ { BLUE.."B) "..BabbleZone["Maraudon"].." ("..AL["Purple"]..")", ZONE, 2100 };
+ { BLUE.."C) "..BabbleZone["Maraudon"].." ("..AL["Orange"]..")", ZONE, 2100 };
+ { BLUE.."D) "..BabbleZone["Maraudon"].." ("..AL["Portal"]..")", ZONE, 2100 };
+ { WHITE.."1) "..AL["Kolk "], NPC, 13742 };
+ { WHITE.."2) "..AL["Gelk "], NPC, 13741 };
+ { WHITE.."3) "..AL["Magra "], NPC, 13740 };
+ { WHITE.."4) "..AL["Cavindra"], NPC, 13697 };
};
["SMEnt"] = {
- ZoneName = { AtlasLocale["Entrance"], 796 };
+ ZoneName = { AL["Entrance"], 796 };
Location = { BabbleZone["Tirisfal Glades"], 85 };
LevelRange = "28-42";
MinLevel = "20";
PlayerLimit = "5";
- Acronym = AtlasLocale["SM"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
+ Acronym = AL["SM"];
+ { BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..BabbleZone["Graveyard"], ZONE, 796 };
{ BLUE.."C) "..BabbleZone["Cathedral"], ZONE, 796 };
{ BLUE.."D) "..BabbleZone["Armory"], ZONE, 796 };
{ BLUE.."E) "..BabbleZone["Library"], ZONE, 796 };
};
["TheDeadminesEnt"] = {
- ZoneName = { AtlasLocale["Entrance"], 1581 };
+ ZoneName = { AL["Entrance"], 1581 };
Location = { BabbleZone["Westfall"], 40 };
LevelRange = "16-22";
MinLevel = "10";
PlayerLimit = "5";
- Acronym = AtlasLocale["VC"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
+ Acronym = AL["VC"];
+ { BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..BabbleZone["The Deadmines"], ZONE, 1581 };
- { WHITE.."1) "..AtlasLocale["Marisa du'Paige"].." ("..AtlasLocale["Varies"]..")", NPC, 599 };
- { WHITE.."2) "..AtlasLocale["Brainwashed Noble"].." ("..AtlasLocale["Rare"]..")", NPC, 596 };
- { WHITE.."3) "..AtlasLocale["Foreman Thistlenettle"], NPC, 626 };
+ { WHITE.."1) "..AL["Marisa du'Paige"].." ("..AL["Varies"]..")", NPC, 599 };
+ { WHITE.."2) "..AL["Brainwashed Noble"].." ("..AL["Rare"]..")", NPC, 596 };
+ { WHITE.."3) "..AL["Foreman Thistlenettle"], NPC, 626 };
};
["TheSunkenTempleEnt"] = {
- ZoneName = {AtlasLocale["Entrance"], 1417 };
+ ZoneName = {AL["Entrance"], 1417 };
Location = { BabbleZone["Swamp of Sorrows"], 8 };
LevelRange = "46-53";
MinLevel = "35";
PlayerLimit = "5";
- Acronym = AtlasLocale["ST"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE..INDENT..AtlasLocale["Meeting Stone"] };
- { BLUE..INDENT..AtlasLocale["Jade"].." ("..AtlasLocale["Rare"]..")", NPC, 1063 };
+ Acronym = AL["ST"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE..INDENT..AL["Meeting Stone"] };
+ { BLUE..INDENT..AL["Jade"].." ("..AL["Rare"]..")", NPC, 1063 };
{ BLUE.."B) "..BabbleZone["Sunken Temple"], ZONE, 1417 };
- { WHITE.."1) "..AtlasLocale["Kazkaz the Unholy"].." ("..AtlasLocale["Upper"]..")", NPC, 5401 };
- { WHITE.."2) "..AtlasLocale["Veyzhak the Cannibal"], NPC, 5399 };
- { WHITE.."3) "..AtlasLocale["Zekkis"].." ("..AtlasLocale["Rare"]..", "..AtlasLocale["Lower"]..")", NPC, 5400 };
+ { WHITE.."1) "..AL["Kazkaz the Unholy"].." ("..AL["Upper"]..")", NPC, 5401 };
+ { WHITE.."2) "..AL["Veyzhak the Cannibal"], NPC, 5399 };
+ { WHITE.."3) "..AL["Zekkis"].." ("..AL["Rare"]..", "..AL["Lower"]..")", NPC, 5400 };
};
["UldamanEnt"] = {
- ZoneName = { AtlasLocale["Entrance"], 1337 };
+ ZoneName = { AL["Entrance"], 1337 };
Location = { BabbleZone["Badlands"], 3 };
LevelRange = "36-42";
MinLevel = "30";
PlayerLimit = "5";
- Acronym = AtlasLocale["Ulda"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
+ Acronym = AL["Ulda"];
+ { BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..BabbleZone["Uldaman"], ZONE, 1337 };
- { WHITE.."1) "..AtlasLocale["Hammertoe Grez"], NPC, 2909 };
- { WHITE.."2) "..AtlasLocale["Magregan Deepshadow"].." ("..AtlasLocale["Wanders"]..")", NPC, 2932 };
- { WHITE.."3) "..AtlasLocale["Tablet of Ryun'Eh"], ITEM, 4631 };
- { WHITE.."4) "..AtlasLocale["Krom Stoutarm's Chest"], OBJECT, 124389 };
- { WHITE.."5) "..AtlasLocale["Garrett Family Chest"], OBJECT, 124388 };
- { GREN.."1') "..AtlasLocale["Digmaster Shovelphlange"].." ("..AtlasLocale["Rare"]..", "..AtlasLocale["Varies"]..")", NPC, 7057 };
+ { WHITE.."1) "..AL["Hammertoe Grez"], NPC, 2909 };
+ { WHITE.."2) "..AL["Magregan Deepshadow"].." ("..AL["Wanders"]..")", NPC, 2932 };
+ { WHITE.."3) "..AL["Tablet of Ryun'Eh"], ITEM, 4631 };
+ { WHITE.."4) "..AL["Krom Stoutarm's Chest"], OBJECT, 124389 };
+ { WHITE.."5) "..AL["Garrett Family Chest"], OBJECT, 124388 };
+ { GREN.."1') "..AL["Digmaster Shovelphlange"].." ("..AL["Rare"]..", "..AL["Varies"]..")", NPC, 7057 };
};
["WailingCavernsEnt"] = {
- ZoneName = { AtlasLocale["Entrance"], 718 };
+ ZoneName = { AL["Entrance"], 718 };
Location = { BabbleZone["The Barrens"], 17 };
LevelRange = "16-25";
MinLevel = "10";
PlayerLimit = "5";
- Acronym = AtlasLocale["WC"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
+ Acronym = AL["WC"];
+ { BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..BabbleZone["Wailing Caverns"], ZONE, 718 };
- { WHITE.."1) "..AtlasLocale["Mad Magglish"].." ("..AtlasLocale["Varies"]..")", NPC, 3655 };
- { WHITE.."2) "..AtlasLocale["Trigore the Lasher"].." ("..AtlasLocale["Rare"]..")", NPC, 3652 };
- { WHITE.."3) "..AtlasLocale["Boahn "].." ("..AtlasLocale["Rare"]..")", NPC, 3672 };
+ { WHITE.."1) "..AL["Mad Magglish"].." ("..AL["Varies"]..")", NPC, 3655 };
+ { WHITE.."2) "..AL["Trigore the Lasher"].." ("..AL["Rare"]..")", NPC, 3652 };
+ { WHITE.."3) "..AL["Boahn "].." ("..AL["Rare"]..")", NPC, 3672 };
{ "" };
- { ORNG..AtlasLocale["Above the Entrance:"] };
- { WHITE..INDENT..AtlasLocale["Ebru "], NPC, 5768 };
- { WHITE..INDENT..AtlasLocale["Nalpak "], NPC, 5767 };
- { WHITE..INDENT..AtlasLocale["Kalldan Felmoon "], NPC, 5783 };
- { WHITE..INDENT..AtlasLocale["Waldor "], NPC, 5784 };
+ { ORNG..AL["Above the Entrance:"] };
+ { WHITE..INDENT..AL["Ebru "], NPC, 5768 };
+ { WHITE..INDENT..AL["Nalpak "], NPC, 5767 };
+ { WHITE..INDENT..AL["Kalldan Felmoon "], NPC, 5783 };
+ { WHITE..INDENT..AL["Waldor "], NPC, 5784 };
};
--************************************************
@@ -437,22 +437,22 @@ AtlasLoot_MapData = {
LevelRange = "20-28";
MinLevel = "19";
PlayerLimit = "5";
- Acronym = AtlasLocale["BFD"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Ghamoo-ra"], NPC, 4887 };
- { WHITE.."2) "..AtlasLocale["Lorgalis Manuscript"], ITEM, 5359 };
- { WHITE.."3) "..AtlasLocale["Lady Sarevess"], NPC, 4831 };
- { WHITE.."4) "..AtlasLocale["Argent Guard Thaelrid "], NPC, 4787 };
- { WHITE.."5) "..AtlasLocale["Gelihast"], NPC, 6243 };
- { WHITE..INDENT..AtlasLocale["Shrine of Gelihast"] };
- { WHITE.."6) "..AtlasLocale["Lorgus Jett"].." ("..AtlasLocale["Varies"]..")", NPC, 12902 };
- { WHITE.."7) "..AtlasLocale["Fathom Stone"], OBJECT, 177964 };
- { WHITE..INDENT..AtlasLocale["Baron Aquanis"], NPC, 12876 };
- { WHITE.."8) "..AtlasLocale["Twilight Lord Kelris"], NPC, 4832 };
- { WHITE.."9) "..AtlasLocale["Old Serra'kis"], NPC, 4830 };
- { WHITE.."10) "..AtlasLocale["Aku'mai"], NPC, 4829 };
- { WHITE..INDENT..AtlasLocale["Morridune"], NPC, 6729 };
- { WHITE..INDENT..AtlasLocale["Altar of the Deeps"] };
+ Acronym = AL["BFD"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Ghamoo-ra"], NPC, 4887 };
+ { WHITE.."2) "..AL["Lorgalis Manuscript"], ITEM, 5359 };
+ { WHITE.."3) "..AL["Lady Sarevess"], NPC, 4831 };
+ { WHITE.."4) "..AL["Argent Guard Thaelrid "], NPC, 4787 };
+ { WHITE.."5) "..AL["Gelihast"], NPC, 6243 };
+ { WHITE..INDENT..AL["Shrine of Gelihast"] };
+ { WHITE.."6) "..AL["Lorgus Jett"].." ("..AL["Varies"]..")", NPC, 12902 };
+ { WHITE.."7) "..AL["Fathom Stone"], OBJECT, 177964 };
+ { WHITE..INDENT..AL["Baron Aquanis"], NPC, 12876 };
+ { WHITE.."8) "..AL["Twilight Lord Kelris"], NPC, 4832 };
+ { WHITE.."9) "..AL["Old Serra'kis"], NPC, 4830 };
+ { WHITE.."10) "..AL["Aku'mai"], NPC, 4829 };
+ { WHITE..INDENT..AL["Morridune"], NPC, 6729 };
+ { WHITE..INDENT..AL["Altar of the Deeps"] };
};
["DireMaulEast"] = {
ZoneName = { BabbleZone["Dire Maul (East)"], 2557 };
@@ -460,21 +460,21 @@ AtlasLoot_MapData = {
LevelRange = "55-58";
MinLevel = "45";
PlayerLimit = "5";
- Acronym = AtlasLocale["DM"];
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Brazier of Invocation"].." ("..AtlasLocale["DS2"]..")", ITEM, 22057 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Entrance"] };
- { BLUE.."C) "..AtlasLocale["Entrance"] };
- { BLUE.."D) "..AtlasLocale["Exit"] };
- { WHITE.."1) "..AtlasLocale["Pusillin"].." ("..AtlasLocale["Chase Begins"]..")", NPC, 14354 };
- { WHITE.."2) "..AtlasLocale["Pusillin"].." ("..AtlasLocale["Chase Ends"]..")", NPC, 14354 };
- { WHITE.."3) "..AtlasLocale["Zevrim Thornhoof"], NPC, 11490 };
- { WHITE..INDENT..AtlasLocale["Hydrospawn"], NPC, 13280 };
- { WHITE..INDENT..AtlasLocale["Lethtendris"], NPC, 14327 };
- { WHITE..INDENT..AtlasLocale["Pimgib"], NPC, 14349 };
- { WHITE.."4) "..AtlasLocale["Old Ironbark"], NPC, 11491 };
- { WHITE.."5) "..AtlasLocale["Alzzin the Wildshaper"], NPC, 11492 };
- { WHITE..INDENT..AtlasLocale["Isalien"].." ("..AtlasLocale["Summon"]..")", NPC, 16097 };
+ Acronym = AL["DM"];
+ { ORNG..AL["Key"]..": "..AL["Brazier of Invocation"].." ("..AL["DS2"]..")", ITEM, 22057 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..AL["Entrance"] };
+ { BLUE.."C) "..AL["Entrance"] };
+ { BLUE.."D) "..AL["Exit"] };
+ { WHITE.."1) "..AL["Pusillin"].." ("..AL["Chase Begins"]..")", NPC, 14354 };
+ { WHITE.."2) "..AL["Pusillin"].." ("..AL["Chase Ends"]..")", NPC, 14354 };
+ { WHITE.."3) "..AL["Zevrim Thornhoof"], NPC, 11490 };
+ { WHITE..INDENT..AL["Hydrospawn"], NPC, 13280 };
+ { WHITE..INDENT..AL["Lethtendris"], NPC, 14327 };
+ { WHITE..INDENT..AL["Pimgib"], NPC, 14349 };
+ { WHITE.."4) "..AL["Old Ironbark"], NPC, 11491 };
+ { WHITE.."5) "..AL["Alzzin the Wildshaper"], NPC, 11492 };
+ { WHITE..INDENT..AL["Isalien"].." ("..AL["Summon"]..")", NPC, 16097 };
};
["DireMaulNorth"] = {
ZoneName = { BabbleZone["Dire Maul (North)"], 2557 };
@@ -482,18 +482,18 @@ AtlasLoot_MapData = {
LevelRange = "57-60";
MinLevel = "45";
PlayerLimit = "5";
- Acronym = AtlasLocale["DM"];
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Crescent Key"], ITEM, 18249 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
+ Acronym = AL["DM"];
+ { ORNG..AL["Key"]..": "..AL["Crescent Key"], ITEM, 18249 };
+ { BLUE.."A) "..AL["Entrance"] };
{ BLUE.."B) "..BabbleZone["Library"] };
- { WHITE.."1) "..AtlasLocale["Guard Mol'dar"], NPC, 14326 };
- { WHITE.."2) "..AtlasLocale["Stomper Kreeg "], NPC, 14322 };
- { WHITE.."3) "..AtlasLocale["Guard Fengus"], NPC, 14321 };
- { WHITE.."4) "..AtlasLocale["Knot Thimblejack"], NPC, 14338 };
- { WHITE..INDENT..AtlasLocale["Guard Slip'kik"], NPC, 14323 };
- { WHITE.."5) "..AtlasLocale["Captain Kromcrush"], NPC, 14325 };
- { WHITE.."6) "..AtlasLocale["King Gordok"], NPC, 11501 };
- { WHITE..INDENT..AtlasLocale["Cho'Rush the Observer"], NPC, 14324 };
+ { WHITE.."1) "..AL["Guard Mol'dar"], NPC, 14326 };
+ { WHITE.."2) "..AL["Stomper Kreeg "], NPC, 14322 };
+ { WHITE.."3) "..AL["Guard Fengus"], NPC, 14321 };
+ { WHITE.."4) "..AL["Knot Thimblejack"], NPC, 14338 };
+ { WHITE..INDENT..AL["Guard Slip'kik"], NPC, 14323 };
+ { WHITE.."5) "..AL["Captain Kromcrush"], NPC, 14325 };
+ { WHITE.."6) "..AL["King Gordok"], NPC, 11501 };
+ { WHITE..INDENT..AL["Cho'Rush the Observer"], NPC, 14324 };
};
["DireMaulWest"] = {
ZoneName = { BabbleZone["Dire Maul (West)"], 2557 };
@@ -501,29 +501,29 @@ AtlasLoot_MapData = {
LevelRange = "57-60";
MinLevel = "45";
PlayerLimit = "5";
- Acronym = AtlasLocale["DM"];
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Crescent Key"], ITEM, 18249 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["J'eevee's Jar"].." ("..AtlasLocale["Lord Hel'nurath"]..")", ITEM, 18663 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Pylons"] };
- { WHITE.."1) "..AtlasLocale["Shen'dralar Ancient"], NPC, 14358 };
- { WHITE.."2) "..AtlasLocale["Tendris Warpwood"], NPC, 11489 };
- { WHITE..INDENT..AtlasLocale["Ancient Equine Spirit"], NPC, 14566 };
- { WHITE.."3) "..AtlasLocale["Illyanna Ravenoak"], NPC, 11488 };
- { WHITE..INDENT..AtlasLocale["Ferra"], NPC, 14308 };
- { WHITE.."4) "..AtlasLocale["Magister Kalendris"], NPC, 11487 };
- { WHITE.."5) "..AtlasLocale["Tsu'zee"].." ("..AtlasLocale["Rare"]..")", NPC, 11467 };
- { WHITE.."6) "..AtlasLocale["Immol'thar"], NPC, 11496 };
- { WHITE..INDENT..AtlasLocale["Lord Hel'nurath"].." ("..AtlasLocale["Summon"]..")", NPC, 14506 };
- { WHITE.."7) "..AtlasLocale["Prince Tortheldrin"], NPC, 11486 };
+ Acronym = AL["DM"];
+ { ORNG..AL["Key"]..": "..AL["Crescent Key"], ITEM, 18249 };
+ { ORNG..AL["Key"]..": "..AL["J'eevee's Jar"].." ("..AL["Lord Hel'nurath"]..")", ITEM, 18663 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..AL["Pylons"] };
+ { WHITE.."1) "..AL["Shen'dralar Ancient"], NPC, 14358 };
+ { WHITE.."2) "..AL["Tendris Warpwood"], NPC, 11489 };
+ { WHITE..INDENT..AL["Ancient Equine Spirit"], NPC, 14566 };
+ { WHITE.."3) "..AL["Illyanna Ravenoak"], NPC, 11488 };
+ { WHITE..INDENT..AL["Ferra"], NPC, 14308 };
+ { WHITE.."4) "..AL["Magister Kalendris"], NPC, 11487 };
+ { WHITE.."5) "..AL["Tsu'zee"].." ("..AL["Rare"]..")", NPC, 11467 };
+ { WHITE.."6) "..AL["Immol'thar"], NPC, 11496 };
+ { WHITE..INDENT..AL["Lord Hel'nurath"].." ("..AL["Summon"]..")", NPC, 14506 };
+ { WHITE.."7) "..AL["Prince Tortheldrin"], NPC, 11486 };
{ GREN.."1') "..BabbleZone["Library"] };
- { GREN..INDENT..AtlasLocale["Falrin Treeshaper"], NPC, 16032 };
- { GREN..INDENT..AtlasLocale["Lorekeeper Lydros"], NPC, 14368 };
- { GREN..INDENT..AtlasLocale["Lorekeeper Javon"], NPC, 14381 };
- { GREN..INDENT..AtlasLocale["Lorekeeper Kildrath"], NPC, 14383 };
- { GREN..INDENT..AtlasLocale["Lorekeeper Mykos"], NPC, 14382 };
- { GREN..INDENT..AtlasLocale["Shen'dralar Provisioner"], NPC, 14371 };
- { GREN..INDENT..AtlasLocale["Skeletal Remains of Kariel Winthalus"], OBJECT, 179544 };
+ { GREN..INDENT..AL["Falrin Treeshaper"], NPC, 16032 };
+ { GREN..INDENT..AL["Lorekeeper Lydros"], NPC, 14368 };
+ { GREN..INDENT..AL["Lorekeeper Javon"], NPC, 14381 };
+ { GREN..INDENT..AL["Lorekeeper Kildrath"], NPC, 14383 };
+ { GREN..INDENT..AL["Lorekeeper Mykos"], NPC, 14382 };
+ { GREN..INDENT..AL["Shen'dralar Provisioner"], NPC, 14371 };
+ { GREN..INDENT..AL["Skeletal Remains of Kariel Winthalus"], OBJECT, 179544 };
};
["Maraudon"] = {
ZoneName = { BabbleZone["Maraudon"], 2100 };
@@ -531,22 +531,22 @@ AtlasLoot_MapData = {
LevelRange = "42-51";
MinLevel = "30";
PlayerLimit = "5";
- Acronym = AtlasLocale["Mara"];
- { BLUE.."A) "..AtlasLocale["Entrance"].." ("..AtlasLocale["Orange"]..")" };
- { BLUE.."B) "..AtlasLocale["Entrance"].." ("..AtlasLocale["Purple"]..")" };
- { BLUE.."C) "..AtlasLocale["Entrance"].." ("..AtlasLocale["Portal"]..")" };
- { WHITE.."1) "..AtlasLocale["Veng "], NPC, 13738 };
- { WHITE.."2) "..AtlasLocale["Noxxion"], NPC, 13282 };
- { WHITE.."3) "..AtlasLocale["Razorlash"], NPC, 12258 };
- { WHITE.."4) "..AtlasLocale["Maraudos "], NPC, 13739 };
- { WHITE.."5) "..AtlasLocale["Lord Vyletongue"], NPC, 12236 };
- { WHITE.."6) "..AtlasLocale["Meshlok the Harvester"].." ("..AtlasLocale["Rare"]..")", NPC, 12237 };
- { WHITE.."7) "..AtlasLocale["Celebras the Cursed"], NPC, 12225 };
- { WHITE.."8) "..AtlasLocale["Landslide"], NPC, 12203 };
- { WHITE.."9) "..AtlasLocale["Tinkerer Gizlock"], NPC, 13601 };
- { WHITE.."10) "..AtlasLocale["Rotgrip"], NPC, 13596 };
- { WHITE.."11) "..AtlasLocale["Princess Theradras"], NPC, 12201 };
- { WHITE.."12) "..AtlasLocale["Elder Splitrock"].." ("..AtlasLocale["Lunar Festival"]..")", NPC, 15556 };
+ Acronym = AL["Mara"];
+ { BLUE.."A) "..AL["Entrance"].." ("..AL["Orange"]..")" };
+ { BLUE.."B) "..AL["Entrance"].." ("..AL["Purple"]..")" };
+ { BLUE.."C) "..AL["Entrance"].." ("..AL["Portal"]..")" };
+ { WHITE.."1) "..AL["Veng "], NPC, 13738 };
+ { WHITE.."2) "..AL["Noxxion"], NPC, 13282 };
+ { WHITE.."3) "..AL["Razorlash"], NPC, 12258 };
+ { WHITE.."4) "..AL["Maraudos "], NPC, 13739 };
+ { WHITE.."5) "..AL["Lord Vyletongue"], NPC, 12236 };
+ { WHITE.."6) "..AL["Meshlok the Harvester"].." ("..AL["Rare"]..")", NPC, 12237 };
+ { WHITE.."7) "..AL["Celebras the Cursed"], NPC, 12225 };
+ { WHITE.."8) "..AL["Landslide"], NPC, 12203 };
+ { WHITE.."9) "..AL["Tinkerer Gizlock"], NPC, 13601 };
+ { WHITE.."10) "..AL["Rotgrip"], NPC, 13596 };
+ { WHITE.."11) "..AL["Princess Theradras"], NPC, 12201 };
+ { WHITE.."12) "..AL["Elder Splitrock"].." ("..AL["Lunar Festival"]..")", NPC, 15556 };
};
["RagefireChasm"] = {
ZoneName = { BabbleZone["Ragefire Chasm"], 2437 };
@@ -554,14 +554,14 @@ AtlasLoot_MapData = {
LevelRange = "12-18";
MinLevel = "8";
PlayerLimit = "5";
- Acronym = AtlasLocale["RFC"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Maur Grimtotem"], NPC, 11834 };
- { WHITE..INDENT..AtlasLocale["Oggleflint "], NPC, 11517 };
- { WHITE.."2) "..AtlasLocale["Taragaman the Hungerer"], NPC, 11520 };
- { WHITE.."3) "..AtlasLocale["Jergosh the Invoker"], NPC, 11518 };
- { WHITE..INDENT..AtlasLocale["Zelemar the Wrathful"].." ("..AtlasLocale["Summon"]..")", NPC, 17830 };
- { WHITE.."4) "..AtlasLocale["Bazzalan"], NPC, 11519 };
+ Acronym = AL["RFC"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Maur Grimtotem"], NPC, 11834 };
+ { WHITE..INDENT..AL["Oggleflint "], NPC, 11517 };
+ { WHITE.."2) "..AL["Taragaman the Hungerer"], NPC, 11520 };
+ { WHITE.."3) "..AL["Jergosh the Invoker"], NPC, 11518 };
+ { WHITE..INDENT..AL["Zelemar the Wrathful"].." ("..AL["Summon"]..")", NPC, 17830 };
+ { WHITE.."4) "..AL["Bazzalan"], NPC, 11519 };
};
["RazorfenDowns"] = {
ZoneName = { BabbleZone["Razorfen Downs"], 722 };
@@ -569,17 +569,17 @@ AtlasLoot_MapData = {
LevelRange = "33-42";
MinLevel = "25";
PlayerLimit = "5";
- Acronym = AtlasLocale["RFD"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Tuten'kash"], NPC, 7355 };
- { WHITE.."2) "..AtlasLocale["Henry Stern"], NPC, 8696 };
- { WHITE..INDENT..AtlasLocale["Belnistrasz"], NPC, 8516 };
- { WHITE..INDENT..AtlasLocale["Sah'rhee"], NPC, 8767 };
- { WHITE.."3) "..AtlasLocale["Mordresh Fire Eye"], NPC, 7357 };
- { WHITE.."4) "..AtlasLocale["Glutton"], NPC, 8567 };
- { WHITE.."5) "..AtlasLocale["Ragglesnout"].." ("..AtlasLocale["Rare"]..", "..AtlasLocale["Varies"]..")", NPC, 7354 };
- { WHITE.."6) "..AtlasLocale["Amnennar the Coldbringer"], NPC, 7358 };
- { WHITE.."7) "..AtlasLocale["Plaguemaw the Rotting"], NPC, 7356 };
+ Acronym = AL["RFD"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Tuten'kash"], NPC, 7355 };
+ { WHITE.."2) "..AL["Henry Stern"], NPC, 8696 };
+ { WHITE..INDENT..AL["Belnistrasz"], NPC, 8516 };
+ { WHITE..INDENT..AL["Sah'rhee"], NPC, 8767 };
+ { WHITE.."3) "..AL["Mordresh Fire Eye"], NPC, 7357 };
+ { WHITE.."4) "..AL["Glutton"], NPC, 8567 };
+ { WHITE.."5) "..AL["Ragglesnout"].." ("..AL["Rare"]..", "..AL["Varies"]..")", NPC, 7354 };
+ { WHITE.."6) "..AL["Amnennar the Coldbringer"], NPC, 7358 };
+ { WHITE.."7) "..AL["Plaguemaw the Rotting"], NPC, 7356 };
};
["RazorfenKraul"] = {
ZoneName = { BabbleZone["Razorfen Kraul"], 491 };
@@ -587,19 +587,19 @@ AtlasLoot_MapData = {
LevelRange = "23-33";
MinLevel = "17";
PlayerLimit = "5";
- Acronym = AtlasLocale["RFK"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Roogug"], NPC, 6168 };
- { WHITE.."2) "..AtlasLocale["Aggem Thorncurse "], NPC, 4424 };
- { WHITE.."3) "..AtlasLocale["Death Speaker Jargba "], NPC, 4428 };
- { WHITE.."4) "..AtlasLocale["Overlord Ramtusk"], NPC, 4420 };
- { WHITE..INDENT..AtlasLocale["Razorfen Spearhide"], NPC, 4438 };
- { WHITE.."5) "..AtlasLocale["Agathelos the Raging"], NPC, 4422 };
- { WHITE.."6) "..AtlasLocale["Blind Hunter"].." ("..AtlasLocale["Rare"]..")", NPC, 4425 };
- { WHITE.."7) "..AtlasLocale["Charlga Razorflank "], NPC, 4421 };
- { WHITE.."8) "..AtlasLocale["Willix the Importer"], NPC, 4508 };
- { WHITE..INDENT..AtlasLocale["Heralath Fallowbrook"], NPC, 4510 };
- { WHITE.."9) "..AtlasLocale["Earthcaller Halmgar"].." ("..AtlasLocale["Rare"]..")", NPC, 4842 };
+ Acronym = AL["RFK"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Roogug"], NPC, 6168 };
+ { WHITE.."2) "..AL["Aggem Thorncurse "], NPC, 4424 };
+ { WHITE.."3) "..AL["Death Speaker Jargba "], NPC, 4428 };
+ { WHITE.."4) "..AL["Overlord Ramtusk"], NPC, 4420 };
+ { WHITE..INDENT..AL["Razorfen Spearhide"], NPC, 4438 };
+ { WHITE.."5) "..AL["Agathelos the Raging"], NPC, 4422 };
+ { WHITE.."6) "..AL["Blind Hunter"].." ("..AL["Rare"]..")", NPC, 4425 };
+ { WHITE.."7) "..AL["Charlga Razorflank "], NPC, 4421 };
+ { WHITE.."8) "..AL["Willix the Importer"], NPC, 4508 };
+ { WHITE..INDENT..AL["Heralath Fallowbrook"], NPC, 4510 };
+ { WHITE.."9) "..AL["Earthcaller Halmgar"].." ("..AL["Rare"]..")", NPC, 4842 };
};
["TheRuinsofAhnQiraj"] = {
ZoneName = { BabbleZone["Ruins of Ahn'Qiraj"], 3429 };
@@ -607,25 +607,25 @@ AtlasLoot_MapData = {
LevelRange = "60-70";
MinLevel = "50";
PlayerLimit = "20";
- Acronym = AtlasLocale["AQ20"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Cenarion Circle"], FACTION, 609 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Kurinnaxx"], NPC, 15348 };
- { WHITE..INDENT..AtlasLocale["Lieutenant General Andorov"], NPC, 15471 };
- { WHITE..INDENT..AtlasLocale["Four Kaldorei Elites"], NPC, 15473 };
- { WHITE.."2) "..AtlasLocale["General Rajaxx"], NPC, 15341 };
- { WHITE..INDENT..AtlasLocale["Captain Qeez"], NPC, 15391 };
- { WHITE..INDENT..AtlasLocale["Captain Tuubid"], NPC, 15392 };
- { WHITE..INDENT..AtlasLocale["Captain Drenn"], NPC, 15389 };
- { WHITE..INDENT..AtlasLocale["Captain Xurrem"], NPC, 15390 };
- { WHITE..INDENT..AtlasLocale["Major Yeggeth"], NPC, 15386 };
- { WHITE..INDENT..AtlasLocale["Major Pakkon"], NPC, 15388 };
- { WHITE..INDENT..AtlasLocale["Colonel Zerran"], NPC, 15385 };
- { WHITE.."3) "..AtlasLocale["Moam"].." ("..AtlasLocale["Optional"]..")", NPC, 15340 };
- { WHITE.."4) "..AtlasLocale["Buru the Gorger"].." ("..AtlasLocale["Optional"]..")", NPC, 15370 };
- { WHITE.."5) "..AtlasLocale["Ayamiss the Hunter"].." ("..AtlasLocale["Optional"]..")", NPC, 15369 };
- { WHITE.."6) "..AtlasLocale["Ossirian the Unscarred"], NPC, 15339 };
- { GREN.."1') "..AtlasLocale["Safe Room"] };
+ Acronym = AL["AQ20"];
+ { ORNG..AL["Reputation"]..": "..AL["Cenarion Circle"], FACTION, 609 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Kurinnaxx"], NPC, 15348 };
+ { WHITE..INDENT..AL["Lieutenant General Andorov"], NPC, 15471 };
+ { WHITE..INDENT..AL["Four Kaldorei Elites"], NPC, 15473 };
+ { WHITE.."2) "..AL["General Rajaxx"], NPC, 15341 };
+ { WHITE..INDENT..AL["Captain Qeez"], NPC, 15391 };
+ { WHITE..INDENT..AL["Captain Tuubid"], NPC, 15392 };
+ { WHITE..INDENT..AL["Captain Drenn"], NPC, 15389 };
+ { WHITE..INDENT..AL["Captain Xurrem"], NPC, 15390 };
+ { WHITE..INDENT..AL["Major Yeggeth"], NPC, 15386 };
+ { WHITE..INDENT..AL["Major Pakkon"], NPC, 15388 };
+ { WHITE..INDENT..AL["Colonel Zerran"], NPC, 15385 };
+ { WHITE.."3) "..AL["Moam"].." ("..AL["Optional"]..")", NPC, 15340 };
+ { WHITE.."4) "..AL["Buru the Gorger"].." ("..AL["Optional"]..")", NPC, 15370 };
+ { WHITE.."5) "..AL["Ayamiss the Hunter"].." ("..AL["Optional"]..")", NPC, 15369 };
+ { WHITE.."6) "..AL["Ossirian the Unscarred"], NPC, 15339 };
+ { GREN.."1') "..AL["Safe Room"] };
};
["TheTempleofAhnQiraj"] = {
ZoneName = { BabbleZone["Temple of Ahn'Qiraj"], 3428 };
@@ -633,30 +633,30 @@ AtlasLoot_MapData = {
LevelRange = "60-70";
MinLevel = "50";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["AQ40"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Brood of Nozdormu"], FACTION, 910 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["The Prophet Skeram"].." ("..AtlasLocale["Outside"]..")", NPC, 15263 };
- { WHITE.."2) "..AtlasLocale["The Bug Family"].." ("..AtlasLocale["Optional"]..")" };
- { WHITE..INDENT..AtlasLocale["Vem"], NPC, 15544 };
- { WHITE..INDENT..AtlasLocale["Lord Kri"], NPC, 15511 };
- { WHITE..INDENT..AtlasLocale["Princess Yauj"], NPC, 15543 };
- { WHITE.."3) "..AtlasLocale["Battleguard Sartura"], NPC, 15516 };
- { WHITE.."4) "..AtlasLocale["Fankriss the Unyielding"], NPC, 15510 };
- { WHITE.."5) "..AtlasLocale["Viscidus"].." ("..AtlasLocale["Optional"]..")", NPC, 15299 };
- { WHITE.."6) "..AtlasLocale["Princess Huhuran"], NPC, 15509 };
- { WHITE.."7) "..AtlasLocale["Twin Emperors"] };
- { WHITE..INDENT..AtlasLocale["Emperor Vek'lor"], NPC, 15276 };
- { WHITE..INDENT..AtlasLocale["Emperor Vek'nilash"], NPC, 15275 };
- { WHITE.."8) "..AtlasLocale["Ouro"].." ("..AtlasLocale["Optional"]..")", NPC, 15517 };
- { WHITE.."9) "..AtlasLocale["Eye of C'Thun"], NPC, 15589 };
- { WHITE..INDENT..AtlasLocale["C'Thun"], NPC, 15727 };
- { GREN.."1') "..AtlasLocale["Andorgos "], NPC, 15502 };
- { GREN..INDENT..AtlasLocale["Vethsera "], NPC, 15504 };
- { GREN..INDENT..AtlasLocale["Kandrostrasz "], NPC, 15503 };
- { GREN.."2') "..AtlasLocale["Arygos"], NPC, 15380 };
- { GREN..INDENT..AtlasLocale["Caelestrasz"], NPC, 15379 };
- { GREN..INDENT..AtlasLocale["Merithra of the Dream"], NPC, 15378 };
+ Acronym = AL["AQ40"];
+ { ORNG..AL["Reputation"]..": "..AL["Brood of Nozdormu"], FACTION, 910 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["The Prophet Skeram"].." ("..AL["Outside"]..")", NPC, 15263 };
+ { WHITE.."2) "..AL["The Bug Family"].." ("..AL["Optional"]..")" };
+ { WHITE..INDENT..AL["Vem"], NPC, 15544 };
+ { WHITE..INDENT..AL["Lord Kri"], NPC, 15511 };
+ { WHITE..INDENT..AL["Princess Yauj"], NPC, 15543 };
+ { WHITE.."3) "..AL["Battleguard Sartura"], NPC, 15516 };
+ { WHITE.."4) "..AL["Fankriss the Unyielding"], NPC, 15510 };
+ { WHITE.."5) "..AL["Viscidus"].." ("..AL["Optional"]..")", NPC, 15299 };
+ { WHITE.."6) "..AL["Princess Huhuran"], NPC, 15509 };
+ { WHITE.."7) "..AL["Twin Emperors"] };
+ { WHITE..INDENT..AL["Emperor Vek'lor"], NPC, 15276 };
+ { WHITE..INDENT..AL["Emperor Vek'nilash"], NPC, 15275 };
+ { WHITE.."8) "..AL["Ouro"].." ("..AL["Optional"]..")", NPC, 15517 };
+ { WHITE.."9) "..AL["Eye of C'Thun"], NPC, 15589 };
+ { WHITE..INDENT..AL["C'Thun"], NPC, 15727 };
+ { GREN.."1') "..AL["Andorgos "], NPC, 15502 };
+ { GREN..INDENT..AL["Vethsera "], NPC, 15504 };
+ { GREN..INDENT..AL["Kandrostrasz "], NPC, 15503 };
+ { GREN.."2') "..AL["Arygos"], NPC, 15380 };
+ { GREN..INDENT..AL["Caelestrasz"], NPC, 15379 };
+ { GREN..INDENT..AL["Merithra of the Dream"], NPC, 15378 };
};
["WailingCaverns"] = {
ZoneName = { BabbleZone["Wailing Caverns"], 718 };
@@ -664,19 +664,19 @@ AtlasLoot_MapData = {
LevelRange = "16-25";
MinLevel = "10";
PlayerLimit = "5";
- Acronym = AtlasLocale["WC"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Disciple of Naralex"], NPC, 3678 };
- { WHITE.."2) "..AtlasLocale["Lord Cobrahn "], NPC, 3669 };
- { WHITE.."3) "..AtlasLocale["Lady Anacondra "].." ("..AtlasLocale["Varies"]..")", NPC, 3671 };
- { WHITE.."4) "..AtlasLocale["Kresh"].." ("..AtlasLocale["Varies"]..")", NPC, 3653 };
- { WHITE.."5) "..AtlasLocale["Lord Pythas "], NPC, 3670 };
- { WHITE.."6) "..AtlasLocale["Skum"], NPC, 3674 };
- { WHITE.."7) "..AtlasLocale["Lord Serpentis "].." ("..AtlasLocale["Upper"]..")", NPC, 3673 };
- { WHITE.."8) "..AtlasLocale["Verdan the Everliving"].." ("..AtlasLocale["Upper"]..")", NPC, 5775 };
- { WHITE.."9) "..AtlasLocale["Mutanus the Devourer"], NPC, 3654 };
- { WHITE..INDENT..AtlasLocale["Naralex"], NPC, 3679 };
- { WHITE.."10) "..AtlasLocale["Deviate Faerie Dragon"].." ("..AtlasLocale["Rare"]..")", NPC, 5912 };
+ Acronym = AL["WC"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Disciple of Naralex"], NPC, 3678 };
+ { WHITE.."2) "..AL["Lord Cobrahn "], NPC, 3669 };
+ { WHITE.."3) "..AL["Lady Anacondra "].." ("..AL["Varies"]..")", NPC, 3671 };
+ { WHITE.."4) "..AL["Kresh"].." ("..AL["Varies"]..")", NPC, 3653 };
+ { WHITE.."5) "..AL["Lord Pythas "], NPC, 3670 };
+ { WHITE.."6) "..AL["Skum"], NPC, 3674 };
+ { WHITE.."7) "..AL["Lord Serpentis "].." ("..AL["Upper"]..")", NPC, 3673 };
+ { WHITE.."8) "..AL["Verdan the Everliving"].." ("..AL["Upper"]..")", NPC, 5775 };
+ { WHITE.."9) "..AL["Mutanus the Devourer"], NPC, 3654 };
+ { WHITE..INDENT..AL["Naralex"], NPC, 3679 };
+ { WHITE.."10) "..AL["Deviate Faerie Dragon"].." ("..AL["Rare"]..")", NPC, 5912 };
};
["ZulFarrak"] = {
ZoneName = { BabbleZone["Zul'Farrak"], 978 };
@@ -684,28 +684,28 @@ AtlasLoot_MapData = {
LevelRange = "42-48";
MinLevel = "35";
PlayerLimit = "5";
- Acronym = AtlasLocale["ZF"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Antu'sul "], NPC, 8127 };
- { WHITE.."2) "..AtlasLocale["Theka the Martyr"], NPC, 7272 };
- { WHITE.."3) "..AtlasLocale["Witch Doctor Zum'rah"], NPC, 7271 };
- { WHITE..INDENT..AtlasLocale["Zul'Farrak Dead Hero"], NPC, 7276 };
- { WHITE.."4) "..AtlasLocale["Nekrum Gutchewer"], NPC, 7796 };
- { WHITE..INDENT..AtlasLocale["Shadowpriest Sezz'ziz"], NPC, 7275 };
- { WHITE..INDENT..AtlasLocale["Dustwraith"].." ("..AtlasLocale["Rare"]..")", NPC, 10081 };
- { WHITE.."5) "..AtlasLocale["Sergeant Bly"], NPC, 7604 };
- { WHITE..INDENT..AtlasLocale["Weegli Blastfuse"], NPC, 7607 };
- { WHITE..INDENT..AtlasLocale["Murta Grimgut"], NPC, 7608 };
- { WHITE..INDENT..AtlasLocale["Raven"], NPC, 7605 };
- { WHITE..INDENT..AtlasLocale["Oro Eyegouge"], NPC, 7606 };
- { WHITE..INDENT..AtlasLocale["Sandfury Executioner"], NPC, 7274 };
- { WHITE.."6) "..AtlasLocale["Hydromancer Velratha"], NPC, 7795 };
- { WHITE..INDENT..AtlasLocale["Gahz'rilla"].." ("..AtlasLocale["Summon"]..")", NPC, 7273 };
- { WHITE..INDENT..AtlasLocale["Elder Wildmane"].." ("..AtlasLocale["Lunar Festival"]..")", NPC, 15578 };
- { WHITE.."7) "..AtlasLocale["Chief Ukorz Sandscalp"], NPC, 7267 };
- { WHITE..INDENT..AtlasLocale["Ruuzlu"], NPC, 7797 };
- { WHITE.."8) "..AtlasLocale["Zerillis"].." ("..AtlasLocale["Rare"]..", "..AtlasLocale["Wanders"]..")", NPC, 10082 };
- { WHITE.."9) "..AtlasLocale["Sandarr Dunereaver"].." ("..AtlasLocale["Rare"]..")", NPC, 10080 };
+ Acronym = AL["ZF"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Antu'sul "], NPC, 8127 };
+ { WHITE.."2) "..AL["Theka the Martyr"], NPC, 7272 };
+ { WHITE.."3) "..AL["Witch Doctor Zum'rah"], NPC, 7271 };
+ { WHITE..INDENT..AL["Zul'Farrak Dead Hero"], NPC, 7276 };
+ { WHITE.."4) "..AL["Nekrum Gutchewer"], NPC, 7796 };
+ { WHITE..INDENT..AL["Shadowpriest Sezz'ziz"], NPC, 7275 };
+ { WHITE..INDENT..AL["Dustwraith"].." ("..AL["Rare"]..")", NPC, 10081 };
+ { WHITE.."5) "..AL["Sergeant Bly"], NPC, 7604 };
+ { WHITE..INDENT..AL["Weegli Blastfuse"], NPC, 7607 };
+ { WHITE..INDENT..AL["Murta Grimgut"], NPC, 7608 };
+ { WHITE..INDENT..AL["Raven"], NPC, 7605 };
+ { WHITE..INDENT..AL["Oro Eyegouge"], NPC, 7606 };
+ { WHITE..INDENT..AL["Sandfury Executioner"], NPC, 7274 };
+ { WHITE.."6) "..AL["Hydromancer Velratha"], NPC, 7795 };
+ { WHITE..INDENT..AL["Gahz'rilla"].." ("..AL["Summon"]..")", NPC, 7273 };
+ { WHITE..INDENT..AL["Elder Wildmane"].." ("..AL["Lunar Festival"]..")", NPC, 15578 };
+ { WHITE.."7) "..AL["Chief Ukorz Sandscalp"], NPC, 7267 };
+ { WHITE..INDENT..AL["Ruuzlu"], NPC, 7797 };
+ { WHITE.."8) "..AL["Zerillis"].." ("..AL["Rare"]..", "..AL["Wanders"]..")", NPC, 10082 };
+ { WHITE.."9) "..AL["Sandarr Dunereaver"].." ("..AL["Rare"]..")", NPC, 10080 };
};
--************************************************
@@ -718,138 +718,138 @@ AtlasLoot_MapData = {
LevelRange = "52-58";
MinLevel = "10-25";
PlayerLimit = "5";
- Acronym = AtlasLocale["BRD"];
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Shadowforge Key"], ITEM, 11000 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Prison Cell Key"].." ("..AtlasLocale["Jail Break!"]..")", ITEM, 11140 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Banner of Provocation"].." ("..AtlasLocale["Theldren"]..")", ITEM, 21986 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Lord Roccor"], NPC, 9025 };
- { WHITE.."2) "..AtlasLocale["Kharan Mighthammer"], NPC, 9021 };
- { WHITE.."3) "..AtlasLocale["Commander Gor'shak "], NPC, 9020 };
- { WHITE.."4) "..AtlasLocale["Marshal Windsor"], NPC, 9023 };
- { WHITE.."5) "..AtlasLocale["High Interrogator Gerstahn "], NPC, 9018 };
- { WHITE.."6) "..AtlasLocale["Ring of Law"] };
- { WHITE..INDENT..AtlasLocale["Anub'shiah"].." ("..AtlasLocale["Random"]..")", NPC, 9031 };
- { WHITE..INDENT..AtlasLocale["Eviscerator"].." ("..AtlasLocale["Random"]..")", NPC, 9029 };
- { WHITE..INDENT..AtlasLocale["Gorosh the Dervish"].." ("..AtlasLocale["Random"]..")", NPC, 9027 };
- { WHITE..INDENT..AtlasLocale["Grizzle"].." ("..AtlasLocale["Random"]..")", NPC, 9028 };
- { WHITE..INDENT..AtlasLocale["Hedrum the Creeper"].." ("..AtlasLocale["Random"]..")", NPC, 9032 };
- { WHITE..INDENT..AtlasLocale["Ok'thor the Breaker"].." ("..AtlasLocale["Random"]..")", NPC, 9030 };
- { WHITE..INDENT..AtlasLocale["Theldren"].." ("..AtlasLocale["Summon"]..")", NPC, 16059 };
- { WHITE..INDENT..AtlasLocale["Lefty"], NPC, 16049 };
- { WHITE..INDENT..AtlasLocale["Malgen Longspear"], NPC, 16052 };
- { WHITE..INDENT..AtlasLocale["Gnashjaw "], NPC, 16095 };
- { WHITE..INDENT..AtlasLocale["Rotfang"], NPC, 16050 };
- { WHITE..INDENT..AtlasLocale["Va'jashni"], NPC, 16055 };
- { WHITE..INDENT..AtlasLocale["Houndmaster Grebmar"].." ("..AtlasLocale["Lower"]..")", NPC, 9319 };
- { WHITE..INDENT..AtlasLocale["Elder Morndeep"].." ("..AtlasLocale["Lunar Festival"]..")", NPC, 15549 };
- { WHITE..INDENT..AtlasLocale["High Justice Grimstone"], NPC, 10096 };
- { WHITE.."7) "..AtlasLocale["Monument of Franclorn Forgewright"], OBJECT, 164689 };
- { WHITE..INDENT..AtlasLocale["Pyromancer Loregrain"], NPC, 9024 };
- { WHITE.."8) "..AtlasLocale["The Vault"] };
- { WHITE..INDENT..AtlasLocale["Warder Stilgiss"], NPC, 9041 };
- { WHITE..INDENT..AtlasLocale["Verek"], NPC, 9042 };
- { WHITE..INDENT..AtlasLocale["Watchman Doomgrip"], NPC, 9476 };
- { WHITE.."9) "..AtlasLocale["Fineous Darkvire "], NPC, 9056 };
- { WHITE.."10) "..AtlasLocale["The Black Anvil"] };
- { WHITE..INDENT..AtlasLocale["Lord Incendius"], NPC, 9017 };
- { WHITE.."11) "..AtlasLocale["Bael'Gar"], NPC, 9016 };
- { WHITE.."12) "..AtlasLocale["Shadowforge Lock"] };
- { WHITE.."13) "..AtlasLocale["General Angerforge"], NPC, 9033 };
- { WHITE.."14) "..AtlasLocale["Golem Lord Argelmach"], NPC, 8983 };
- { WHITE..INDENT..AtlasLocale["Field Repair Bot 74A"], NPC, 14337 };
- { WHITE..INDENT..AtlasLocale["Blacksmithing Plans"], OBJECT, 173232 };
- { WHITE.."15) "..AtlasLocale["The Grim Guzzler"] };
- { WHITE..INDENT..AtlasLocale["Hurley Blackbreath"], NPC, 9537 };
- { WHITE..INDENT..AtlasLocale["Lokhtos Darkbargainer "], NPC, 12944 };
- { WHITE..INDENT..AtlasLocale["Mistress Nagmara"], NPC, 9500 };
- { WHITE..INDENT..AtlasLocale["Phalanx"], NPC, 9502 };
- { WHITE..INDENT..AtlasLocale["Plugger Spazzring"], NPC, 9499 };
- { WHITE..INDENT..AtlasLocale["Private Rocknot"], NPC, 9503 };
- { WHITE..INDENT..AtlasLocale["Ribbly Screwspigot"], NPC, 9543 };
- { WHITE..INDENT..AtlasLocale["Coren Direbrew"].." ("..AtlasLocale["Brewfest"]..")", NPC, 23872 };
- { WHITE..INDENT..AtlasLocale["Griz Gutshank "], NPC, 28225 };
- { WHITE.."16) "..AtlasLocale["Ambassador Flamelash"], NPC, 9156 };
- { WHITE.."17) "..AtlasLocale["Panzor the Invincible"].." ("..AtlasLocale["Rare"]..")", NPC, 8923 };
- { WHITE..INDENT..AtlasLocale["Blacksmithing Plans"], OBJECT, 173232 };
- { WHITE.."18) "..AtlasLocale["Summoner's Tomb"] };
- { WHITE.."19) "..AtlasLocale["The Lyceum"] };
- { WHITE.."20) "..AtlasLocale["Magmus"], NPC, 9938 };
- { WHITE.."21) "..AtlasLocale["Emperor Dagran Thaurissan"], NPC, 9019 };
- { WHITE..INDENT..AtlasLocale["Princess Moira Bronzebeard "], NPC, 8929 };
- { WHITE..INDENT..AtlasLocale["High Priestess of Thaurissan"], NPC, 10076 };
- { WHITE.."22) "..AtlasLocale["The Black Forge"] };
+ Acronym = AL["BRD"];
+ { ORNG..AL["Key"]..": "..AL["Shadowforge Key"], ITEM, 11000 };
+ { ORNG..AL["Key"]..": "..AL["Prison Cell Key"].." ("..AL["Jail Break!"]..")", ITEM, 11140 };
+ { ORNG..AL["Key"]..": "..AL["Banner of Provocation"].." ("..AL["Theldren"]..")", ITEM, 21986 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Lord Roccor"], NPC, 9025 };
+ { WHITE.."2) "..AL["Kharan Mighthammer"], NPC, 9021 };
+ { WHITE.."3) "..AL["Commander Gor'shak "], NPC, 9020 };
+ { WHITE.."4) "..AL["Marshal Windsor"], NPC, 9023 };
+ { WHITE.."5) "..AL["High Interrogator Gerstahn "], NPC, 9018 };
+ { WHITE.."6) "..AL["Ring of Law"] };
+ { WHITE..INDENT..AL["Anub'shiah"].." ("..AL["Random"]..")", NPC, 9031 };
+ { WHITE..INDENT..AL["Eviscerator"].." ("..AL["Random"]..")", NPC, 9029 };
+ { WHITE..INDENT..AL["Gorosh the Dervish"].." ("..AL["Random"]..")", NPC, 9027 };
+ { WHITE..INDENT..AL["Grizzle"].." ("..AL["Random"]..")", NPC, 9028 };
+ { WHITE..INDENT..AL["Hedrum the Creeper"].." ("..AL["Random"]..")", NPC, 9032 };
+ { WHITE..INDENT..AL["Ok'thor the Breaker"].." ("..AL["Random"]..")", NPC, 9030 };
+ { WHITE..INDENT..AL["Theldren"].." ("..AL["Summon"]..")", NPC, 16059 };
+ { WHITE..INDENT..AL["Lefty"], NPC, 16049 };
+ { WHITE..INDENT..AL["Malgen Longspear"], NPC, 16052 };
+ { WHITE..INDENT..AL["Gnashjaw "], NPC, 16095 };
+ { WHITE..INDENT..AL["Rotfang"], NPC, 16050 };
+ { WHITE..INDENT..AL["Va'jashni"], NPC, 16055 };
+ { WHITE..INDENT..AL["Houndmaster Grebmar"].." ("..AL["Lower"]..")", NPC, 9319 };
+ { WHITE..INDENT..AL["Elder Morndeep"].." ("..AL["Lunar Festival"]..")", NPC, 15549 };
+ { WHITE..INDENT..AL["High Justice Grimstone"], NPC, 10096 };
+ { WHITE.."7) "..AL["Monument of Franclorn Forgewright"], OBJECT, 164689 };
+ { WHITE..INDENT..AL["Pyromancer Loregrain"], NPC, 9024 };
+ { WHITE.."8) "..AL["The Vault"] };
+ { WHITE..INDENT..AL["Warder Stilgiss"], NPC, 9041 };
+ { WHITE..INDENT..AL["Verek"], NPC, 9042 };
+ { WHITE..INDENT..AL["Watchman Doomgrip"], NPC, 9476 };
+ { WHITE.."9) "..AL["Fineous Darkvire "], NPC, 9056 };
+ { WHITE.."10) "..AL["The Black Anvil"] };
+ { WHITE..INDENT..AL["Lord Incendius"], NPC, 9017 };
+ { WHITE.."11) "..AL["Bael'Gar"], NPC, 9016 };
+ { WHITE.."12) "..AL["Shadowforge Lock"] };
+ { WHITE.."13) "..AL["General Angerforge"], NPC, 9033 };
+ { WHITE.."14) "..AL["Golem Lord Argelmach"], NPC, 8983 };
+ { WHITE..INDENT..AL["Field Repair Bot 74A"], NPC, 14337 };
+ { WHITE..INDENT..AL["Blacksmithing Plans"], OBJECT, 173232 };
+ { WHITE.."15) "..AL["The Grim Guzzler"] };
+ { WHITE..INDENT..AL["Hurley Blackbreath"], NPC, 9537 };
+ { WHITE..INDENT..AL["Lokhtos Darkbargainer "], NPC, 12944 };
+ { WHITE..INDENT..AL["Mistress Nagmara"], NPC, 9500 };
+ { WHITE..INDENT..AL["Phalanx"], NPC, 9502 };
+ { WHITE..INDENT..AL["Plugger Spazzring"], NPC, 9499 };
+ { WHITE..INDENT..AL["Private Rocknot"], NPC, 9503 };
+ { WHITE..INDENT..AL["Ribbly Screwspigot"], NPC, 9543 };
+ { WHITE..INDENT..AL["Coren Direbrew"].." ("..AL["Brewfest"]..")", NPC, 23872 };
+ { WHITE..INDENT..AL["Griz Gutshank "], NPC, 28225 };
+ { WHITE.."16) "..AL["Ambassador Flamelash"], NPC, 9156 };
+ { WHITE.."17) "..AL["Panzor the Invincible"].." ("..AL["Rare"]..")", NPC, 8923 };
+ { WHITE..INDENT..AL["Blacksmithing Plans"], OBJECT, 173232 };
+ { WHITE.."18) "..AL["Summoner's Tomb"] };
+ { WHITE.."19) "..AL["The Lyceum"] };
+ { WHITE.."20) "..AL["Magmus"], NPC, 9938 };
+ { WHITE.."21) "..AL["Emperor Dagran Thaurissan"], NPC, 9019 };
+ { WHITE..INDENT..AL["Princess Moira Bronzebeard "], NPC, 8929 };
+ { WHITE..INDENT..AL["High Priestess of Thaurissan"], NPC, 10076 };
+ { WHITE.."22) "..AL["The Black Forge"] };
{ WHITE.."23) "..BabbleZone["Molten Core"], ZONE, 2717 };
- { WHITE..INDENT..AtlasLocale["Core Fragment"], OBJECT, 179553 };
- { WHITE.."24) "..AtlasLocale["Overmaster Pyron"], NPC, 9026 };
- { WHITE.."25) "..AtlasLocale["Blacksmithing Plans"], OBJECT, 173232 };
+ { WHITE..INDENT..AL["Core Fragment"], OBJECT, 179553 };
+ { WHITE.."24) "..AL["Overmaster Pyron"], NPC, 9026 };
+ { WHITE.."25) "..AL["Blacksmithing Plans"], OBJECT, 173232 };
};
["BlackrockSpireLower"] = {
- ZoneName = { BabbleZone["Blackrock Spire"].." ("..AtlasLocale["Lower"]..")", 1583 };
+ ZoneName = { BabbleZone["Blackrock Spire"].." ("..AL["Lower"]..")", 1583 };
Location = { BabbleZone["Searing Gorge"].." / "..BabbleZone["Burning Steppes"], 51, 46 };
LevelRange = "54-60";
MinLevel = "45";
PlayerLimit = "5";
- Acronym = AtlasLocale["LBRS"];
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Brazier of Invocation"].." ("..AtlasLocale["DS2"]..")", ITEM, 22057 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..BabbleZone["Blackrock Spire"].." ("..AtlasLocale["Upper"]..")", ZONE, 1583 };
- { BLUE.."C-F) "..AtlasLocale["Connection"] };
- { WHITE.."1) "..AtlasLocale["Vaelan"].." ("..AtlasLocale["Upper"]..")", NPC, 10296 };
- { WHITE.."2) "..AtlasLocale["Warosh "].." ("..AtlasLocale["Wanders"]..")", NPC, 10799 };
- { WHITE..INDENT..AtlasLocale["Elder Stonefort"].." ("..AtlasLocale["Lunar Festival"]..")", NPC, 15560 };
- { WHITE.."3) "..AtlasLocale["Roughshod Pike"], OBJECT, 175886 };
- { WHITE.."4) "..AtlasLocale["Spirestone Butcher"].." ("..AtlasLocale["Rare"]..")", NPC, 9219 };
- { WHITE.."5) "..AtlasLocale["Highlord Omokk"], NPC, 9196 };
- { WHITE.."6) "..AtlasLocale["Spirestone Battle Lord"].." ("..AtlasLocale["Rare"]..")", NPC, 9218 };
- { WHITE..INDENT..AtlasLocale["Spirestone Lord Magus"].." ("..AtlasLocale["Rare"]..")", NPC, 9217 };
- { WHITE.."7) "..AtlasLocale["Shadow Hunter Vosh'gajin"], NPC, 9236 };
- { WHITE..INDENT..AtlasLocale["Fifth Mosh'aru Tablet"], OBJECT, 175949 };
- { WHITE.."8) "..AtlasLocale["Bijou"], NPC, 10257 };
- { WHITE.."9) "..AtlasLocale["War Master Voone"], NPC, 9237 };
- { WHITE..INDENT..AtlasLocale["Mor Grayhoof"].." ("..AtlasLocale["Summon"]..")", NPC, 16080 };
- { WHITE..INDENT..AtlasLocale["Sixth Mosh'aru Tablet"], OBJECT, 175950 };
- { WHITE.."10) "..AtlasLocale["Bijou's Belongings"], OBJECT, 175334 };
- { WHITE.."11) "..AtlasLocale["Human Remains"].." ("..AtlasLocale["Lower"]..")", OBJECT, 176090 };
- { WHITE..INDENT..AtlasLocale["Unfired Plate Gauntlets"].." ("..AtlasLocale["Lower"]..")", OBJECT, 176089 };
- { WHITE.."12) "..AtlasLocale["Bannok Grimaxe "].." ("..AtlasLocale["Rare"]..")", NPC, 9596 };
- { WHITE.."13) "..AtlasLocale["Mother Smolderweb"], NPC, 10596 };
- { WHITE.."14) "..AtlasLocale["Crystal Fang"].." ("..AtlasLocale["Rare"]..")", NPC, 10376 };
- { WHITE.."15) "..AtlasLocale["Urok's Tribute Pile"], OBJECT, 175621 };
- { WHITE..INDENT..AtlasLocale["Urok Doomhowl"].." ("..AtlasLocale["Summon"]..")", NPC, 10584 };
- { WHITE.."16) "..AtlasLocale["Quartermaster Zigris "], NPC, 9736 };
- { WHITE.."17) "..AtlasLocale["Halycon"], NPC, 10220 };
- { WHITE..INDENT..AtlasLocale["Gizrul the Slavener"], NPC, 10268 };
- { WHITE.."18) "..AtlasLocale["Ghok Bashguud "].." ("..AtlasLocale["Rare"]..")", NPC, 9718 };
- { WHITE.."19) "..AtlasLocale["Overlord Wyrmthalak"], NPC, 9568 };
- { GREN.."1') "..AtlasLocale["Burning Felguard"].." ("..AtlasLocale["Rare"]..", "..AtlasLocale["Summon"]..")", NPC, 10263 };
+ Acronym = AL["LBRS"];
+ { ORNG..AL["Key"]..": "..AL["Brazier of Invocation"].." ("..AL["DS2"]..")", ITEM, 22057 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..BabbleZone["Blackrock Spire"].." ("..AL["Upper"]..")", ZONE, 1583 };
+ { BLUE.."C-F) "..AL["Connection"] };
+ { WHITE.."1) "..AL["Vaelan"].." ("..AL["Upper"]..")", NPC, 10296 };
+ { WHITE.."2) "..AL["Warosh "].." ("..AL["Wanders"]..")", NPC, 10799 };
+ { WHITE..INDENT..AL["Elder Stonefort"].." ("..AL["Lunar Festival"]..")", NPC, 15560 };
+ { WHITE.."3) "..AL["Roughshod Pike"], OBJECT, 175886 };
+ { WHITE.."4) "..AL["Spirestone Butcher"].." ("..AL["Rare"]..")", NPC, 9219 };
+ { WHITE.."5) "..AL["Highlord Omokk"], NPC, 9196 };
+ { WHITE.."6) "..AL["Spirestone Battle Lord"].." ("..AL["Rare"]..")", NPC, 9218 };
+ { WHITE..INDENT..AL["Spirestone Lord Magus"].." ("..AL["Rare"]..")", NPC, 9217 };
+ { WHITE.."7) "..AL["Shadow Hunter Vosh'gajin"], NPC, 9236 };
+ { WHITE..INDENT..AL["Fifth Mosh'aru Tablet"], OBJECT, 175949 };
+ { WHITE.."8) "..AL["Bijou"], NPC, 10257 };
+ { WHITE.."9) "..AL["War Master Voone"], NPC, 9237 };
+ { WHITE..INDENT..AL["Mor Grayhoof"].." ("..AL["Summon"]..")", NPC, 16080 };
+ { WHITE..INDENT..AL["Sixth Mosh'aru Tablet"], OBJECT, 175950 };
+ { WHITE.."10) "..AL["Bijou's Belongings"], OBJECT, 175334 };
+ { WHITE.."11) "..AL["Human Remains"].." ("..AL["Lower"]..")", OBJECT, 176090 };
+ { WHITE..INDENT..AL["Unfired Plate Gauntlets"].." ("..AL["Lower"]..")", OBJECT, 176089 };
+ { WHITE.."12) "..AL["Bannok Grimaxe "].." ("..AL["Rare"]..")", NPC, 9596 };
+ { WHITE.."13) "..AL["Mother Smolderweb"], NPC, 10596 };
+ { WHITE.."14) "..AL["Crystal Fang"].." ("..AL["Rare"]..")", NPC, 10376 };
+ { WHITE.."15) "..AL["Urok's Tribute Pile"], OBJECT, 175621 };
+ { WHITE..INDENT..AL["Urok Doomhowl"].." ("..AL["Summon"]..")", NPC, 10584 };
+ { WHITE.."16) "..AL["Quartermaster Zigris "], NPC, 9736 };
+ { WHITE.."17) "..AL["Halycon"], NPC, 10220 };
+ { WHITE..INDENT..AL["Gizrul the Slavener"], NPC, 10268 };
+ { WHITE.."18) "..AL["Ghok Bashguud "].." ("..AL["Rare"]..")", NPC, 9718 };
+ { WHITE.."19) "..AL["Overlord Wyrmthalak"], NPC, 9568 };
+ { GREN.."1') "..AL["Burning Felguard"].." ("..AL["Rare"]..", "..AL["Summon"]..")", NPC, 10263 };
};
["BlackrockSpireUpper"] = {
- ZoneName = { BabbleZone["Blackrock Spire"].." ("..AtlasLocale["Upper"]..")", 1583 };
+ ZoneName = { BabbleZone["Blackrock Spire"].." ("..AL["Upper"]..")", 1583 };
Location = { BabbleZone["Searing Gorge"].." / "..BabbleZone["Burning Steppes"], 51, 46 };
LevelRange = "56-61";
MinLevel = "45";
PlayerLimit = "5";
- Acronym = AtlasLocale["UBRS"];
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Brazier of Invocation"].." ("..AtlasLocale["DS2"]..")", ITEM, 22057 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..BabbleZone["Blackrock Spire"].." ("..AtlasLocale["Lower"]..")", ZONE, 1583 };
- { BLUE.."C-E) "..AtlasLocale["Connection"] };
- { WHITE.."1) "..AtlasLocale["Pyroguard Emberseer"], NPC, 9816 };
- { WHITE.."2) "..AtlasLocale["Solakar Flamewreath"], NPC, 10264 };
- { WHITE..INDENT..AtlasLocale["Father Flame"], OBJECT, 175245 };
- { WHITE.."3) "..AtlasLocale["Darkstone Tablet"], OBJECT, 175385 };
- { WHITE..INDENT..AtlasLocale["Doomrigger's Coffer"], OBJECT, 175382 };
- { WHITE.."4) "..AtlasLocale["Jed Runewatcher "].." ("..AtlasLocale["Rare"]..")", NPC, 10509 };
- { WHITE.."5) "..AtlasLocale["Goraluk Anvilcrack "], NPC, 10899 };
- { WHITE.."6) "..AtlasLocale["Warchief Rend Blackhand"], NPC, 10429 };
- { WHITE..INDENT..AtlasLocale["Gyth "], NPC, 10339 };
- { WHITE.."7) "..AtlasLocale["Awbee"], NPC, 10740 };
- { WHITE.."8) "..AtlasLocale["The Beast"], NPC, 10430 };
- { WHITE..INDENT..AtlasLocale["Lord Valthalak"].." ("..AtlasLocale["Summon"]..")", NPC, 16042 };
- { WHITE..INDENT..AtlasLocale["Finkle Einhorn"], NPC, 10776 };
- { WHITE.."9) "..AtlasLocale["General Drakkisath"], NPC, 10363 };
- { WHITE..INDENT..AtlasLocale["Drakkisath's Brand"], OBJECT, 179880 };
+ Acronym = AL["UBRS"];
+ { ORNG..AL["Key"]..": "..AL["Brazier of Invocation"].." ("..AL["DS2"]..")", ITEM, 22057 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..BabbleZone["Blackrock Spire"].." ("..AL["Lower"]..")", ZONE, 1583 };
+ { BLUE.."C-E) "..AL["Connection"] };
+ { WHITE.."1) "..AL["Pyroguard Emberseer"], NPC, 9816 };
+ { WHITE.."2) "..AL["Solakar Flamewreath"], NPC, 10264 };
+ { WHITE..INDENT..AL["Father Flame"], OBJECT, 175245 };
+ { WHITE.."3) "..AL["Darkstone Tablet"], OBJECT, 175385 };
+ { WHITE..INDENT..AL["Doomrigger's Coffer"], OBJECT, 175382 };
+ { WHITE.."4) "..AL["Jed Runewatcher "].." ("..AL["Rare"]..")", NPC, 10509 };
+ { WHITE.."5) "..AL["Goraluk Anvilcrack "], NPC, 10899 };
+ { WHITE.."6) "..AL["Warchief Rend Blackhand"], NPC, 10429 };
+ { WHITE..INDENT..AL["Gyth "], NPC, 10339 };
+ { WHITE.."7) "..AL["Awbee"], NPC, 10740 };
+ { WHITE.."8) "..AL["The Beast"], NPC, 10430 };
+ { WHITE..INDENT..AL["Lord Valthalak"].." ("..AL["Summon"]..")", NPC, 16042 };
+ { WHITE..INDENT..AL["Finkle Einhorn"], NPC, 10776 };
+ { WHITE.."9) "..AL["General Drakkisath"], NPC, 10363 };
+ { WHITE..INDENT..AL["Drakkisath's Brand"], OBJECT, 179880 };
{ WHITE.."10) "..BabbleZone["Blackwing Lair"], ZONE, 2677 };
};
["BlackwingLair"] = {
@@ -858,21 +858,21 @@ AtlasLoot_MapData = {
LevelRange = "60-70";
MinLevel = "60";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["BWL"];
- { ORNG..AtlasLocale["Attunement Required"] };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Connection"] };
- { BLUE.."C) "..AtlasLocale["Connection"] };
- { WHITE.."1) "..AtlasLocale["Razorgore the Untamed"], NPC, 12435 };
- { WHITE.."2) "..AtlasLocale["Vaelastrasz the Corrupt"], NPC, 13020 };
- { WHITE.."3) "..AtlasLocale["Broodlord Lashlayer"], NPC, 12017 };
- { WHITE.."4) "..AtlasLocale["Firemaw"], NPC, 11983 };
- { WHITE.."5) "..AtlasLocale["Draconic for Dummies (Chapter VII)"], ITEM, 21109 };
- { WHITE.."6) "..AtlasLocale["Master Elemental Shaper Krixix"], NPC, 14401 };
- { WHITE.."7) "..AtlasLocale["Ebonroc"], NPC, 14601 };
- { WHITE.."8) "..AtlasLocale["Flamegor"], NPC, 11981 };
- { WHITE.."9) "..AtlasLocale["Chromaggus"], NPC, 14020 };
- { WHITE.."10) "..AtlasLocale["Nefarian"], NPC, 11583 };
+ Acronym = AL["BWL"];
+ { ORNG..AL["Attunement Required"] };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..AL["Connection"] };
+ { BLUE.."C) "..AL["Connection"] };
+ { WHITE.."1) "..AL["Razorgore the Untamed"], NPC, 12435 };
+ { WHITE.."2) "..AL["Vaelastrasz the Corrupt"], NPC, 13020 };
+ { WHITE.."3) "..AL["Broodlord Lashlayer"], NPC, 12017 };
+ { WHITE.."4) "..AL["Firemaw"], NPC, 11983 };
+ { WHITE.."5) "..AL["Draconic for Dummies (Chapter VII)"], ITEM, 21109 };
+ { WHITE.."6) "..AL["Master Elemental Shaper Krixix"], NPC, 14401 };
+ { WHITE.."7) "..AL["Ebonroc"], NPC, 14601 };
+ { WHITE.."8) "..AL["Flamegor"], NPC, 11981 };
+ { WHITE.."9) "..AL["Chromaggus"], NPC, 14020 };
+ { WHITE.."10) "..AL["Nefarian"], NPC, 11583 };
};
["Gnomeregan"] = {
ZoneName = { BabbleZone["Gnomeregan"], 133 };
@@ -880,27 +880,27 @@ AtlasLoot_MapData = {
LevelRange = "24-32";
MinLevel = "20";
PlayerLimit = "5";
- Acronym = AtlasLocale["Gnome"];
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Workshop Key"].." ("..AtlasLocale["Back"]..")", ITEM, 6893 };
- { BLUE.."A) "..AtlasLocale["Entrance"].." ("..AtlasLocale["Front"]..")" };
- { BLUE.."B) "..AtlasLocale["Entrance"].." ("..AtlasLocale["Back"]..")" };
- { WHITE.."1) "..AtlasLocale["Blastmaster Emi Shortfuse"], NPC, 7998 };
- { WHITE..INDENT..AtlasLocale["Grubbis"], NPC, 7361 };
- { WHITE..INDENT..AtlasLocale["Chomper"], NPC, 6215 };
- { WHITE.."2) "..AtlasLocale["Clean Room"] };
- { WHITE..INDENT..AtlasLocale["Tink Sprocketwhistle "], NPC, 9676 };
- { WHITE..INDENT..AtlasLocale["The Sparklematic 5200"], OBJECT, 142487 };
- { WHITE..INDENT..AtlasLocale["Mail Box"] };
- { WHITE.."3) "..AtlasLocale["Kernobee"], NPC, 7850 };
- { WHITE..INDENT..AtlasLocale["Alarm-a-bomb 2600"], NPC, 7897 };
- { WHITE..INDENT..AtlasLocale["Matrix Punchograph 3005-B"], OBJECT, 142475 };
- { WHITE.."4) "..AtlasLocale["Viscous Fallout"], NPC, 7079 };
- { WHITE.."5) "..AtlasLocale["Electrocutioner 6000"], NPC, 6235 };
- { WHITE..INDENT..AtlasLocale["Matrix Punchograph 3005-C"], OBJECT, 142476 };
- { WHITE.."6) "..AtlasLocale["Crowd Pummeler 9-60"].." ("..AtlasLocale["Upper"]..")", NPC, 6229 };
- { WHITE..INDENT..AtlasLocale["Matrix Punchograph 3005-D"], OBJECT, 142696 };
- { WHITE.."7) "..AtlasLocale["Dark Iron Ambassador"], NPC, 6228 };
- { WHITE.."8) "..AtlasLocale["Mekgineer Thermaplugg"], NPC, 7800 };
+ Acronym = AL["Gnome"];
+ { ORNG..AL["Key"]..": "..AL["Workshop Key"].." ("..AL["Back"]..")", ITEM, 6893 };
+ { BLUE.."A) "..AL["Entrance"].." ("..AL["Front"]..")" };
+ { BLUE.."B) "..AL["Entrance"].." ("..AL["Back"]..")" };
+ { WHITE.."1) "..AL["Blastmaster Emi Shortfuse"], NPC, 7998 };
+ { WHITE..INDENT..AL["Grubbis"], NPC, 7361 };
+ { WHITE..INDENT..AL["Chomper"], NPC, 6215 };
+ { WHITE.."2) "..AL["Clean Room"] };
+ { WHITE..INDENT..AL["Tink Sprocketwhistle "], NPC, 9676 };
+ { WHITE..INDENT..AL["The Sparklematic 5200"], OBJECT, 142487 };
+ { WHITE..INDENT..AL["Mail Box"] };
+ { WHITE.."3) "..AL["Kernobee"], NPC, 7850 };
+ { WHITE..INDENT..AL["Alarm-a-bomb 2600"], NPC, 7897 };
+ { WHITE..INDENT..AL["Matrix Punchograph 3005-B"], OBJECT, 142475 };
+ { WHITE.."4) "..AL["Viscous Fallout"], NPC, 7079 };
+ { WHITE.."5) "..AL["Electrocutioner 6000"], NPC, 6235 };
+ { WHITE..INDENT..AL["Matrix Punchograph 3005-C"], OBJECT, 142476 };
+ { WHITE.."6) "..AL["Crowd Pummeler 9-60"].." ("..AL["Upper"]..")", NPC, 6229 };
+ { WHITE..INDENT..AL["Matrix Punchograph 3005-D"], OBJECT, 142696 };
+ { WHITE.."7) "..AL["Dark Iron Ambassador"], NPC, 6228 };
+ { WHITE.."8) "..AL["Mekgineer Thermaplugg"], NPC, 7800 };
};
["MoltenCore"] = {
ZoneName = { BabbleZone["Molten Core"], 2717 };
@@ -908,20 +908,20 @@ AtlasLoot_MapData = {
LevelRange = "60-70";
MinLevel = "50";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["MC"];
- { ORNG..AtlasLocale["Attunement Required"] };
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Hydraxian Waterlords"], FACTION, 749 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Lucifron"], NPC, 12118 };
- { WHITE.."2) "..AtlasLocale["Magmadar"], NPC, 11982 };
- { WHITE.."3) "..AtlasLocale["Gehennas"], NPC, 12259 };
- { WHITE.."4) "..AtlasLocale["Garr"], NPC, 12057 };
- { WHITE.."5) "..AtlasLocale["Shazzrah"], NPC, 12264 };
- { WHITE.."6) "..AtlasLocale["Baron Geddon"], NPC, 12056 };
- { WHITE.."7) "..AtlasLocale["Golemagg the Incinerator"], NPC, 11988 };
- { WHITE.."8) "..AtlasLocale["Sulfuron Harbinger"], NPC, 12098 };
- { WHITE.."9) "..AtlasLocale["Majordomo Executus"], NPC, 12018 };
- { WHITE.."10) "..AtlasLocale["Ragnaros"], NPC, 11502 };
+ Acronym = AL["MC"];
+ { ORNG..AL["Attunement Required"] };
+ { ORNG..AL["Reputation"]..": "..AL["Hydraxian Waterlords"], FACTION, 749 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Lucifron"], NPC, 12118 };
+ { WHITE.."2) "..AL["Magmadar"], NPC, 11982 };
+ { WHITE.."3) "..AL["Gehennas"], NPC, 12259 };
+ { WHITE.."4) "..AL["Garr"], NPC, 12057 };
+ { WHITE.."5) "..AL["Shazzrah"], NPC, 12264 };
+ { WHITE.."6) "..AL["Baron Geddon"], NPC, 12056 };
+ { WHITE.."7) "..AL["Golemagg the Incinerator"], NPC, 11988 };
+ { WHITE.."8) "..AL["Sulfuron Harbinger"], NPC, 12098 };
+ { WHITE.."9) "..AL["Majordomo Executus"], NPC, 12018 };
+ { WHITE.."10) "..AL["Ragnaros"], NPC, 11502 };
};
["Scholomance"] = {
ZoneName = { BabbleZone["Scholomance"], 2057 };
@@ -929,39 +929,39 @@ AtlasLoot_MapData = {
LevelRange = "58-60";
MinLevel = "45";
PlayerLimit = "5";
- Acronym = AtlasLocale["Scholo"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Argent Dawn"], FACTION, 529 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Skeleton Key"], ITEM, 13704 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Viewing Room Key"].." ("..AtlasLocale["Viewing Room"]..")", ITEM, 13873 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Blood of Innocents"].." ("..AtlasLocale["Kirtonos the Herald"]..")", ITEM, 13523 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Brazier of Invocation"].." ("..AtlasLocale["DS2"]..")", ITEM, 22057 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Divination Scryer"].." ("..AtlasLocale["Death Knight Darkreaver"]..")", ITEM, 18746 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Connection"] };
- { BLUE.."C) "..AtlasLocale["Connection"] };
- { WHITE.."1) "..AtlasLocale["Blood Steward of Kirtonos"], NPC, 14861 };
- { WHITE..INDENT..AtlasLocale["The Deed to Southshore"], OBJECT, 176486 };
- { WHITE.."2) "..AtlasLocale["Kirtonos the Herald"].." ("..AtlasLocale["Summon"]..")", NPC, 10506 };
- { WHITE.."3) "..AtlasLocale["Jandice Barov"], NPC, 10503 };
- { WHITE.."4) "..AtlasLocale["The Deed to Tarren Mill"], OBJECT, 176487 };
- { WHITE.."5) "..AtlasLocale["Rattlegore"].." ("..AtlasLocale["Lower"]..")", NPC, 11622 };
- { WHITE..INDENT..AtlasLocale["Death Knight Darkreaver"].." ("..AtlasLocale["Summon"]..")", NPC, 14516 };
- { WHITE.."6) "..AtlasLocale["Marduk Blackpool"], NPC, 10433 };
- { WHITE..INDENT..AtlasLocale["Vectus"], NPC, 10432 };
- { WHITE.."7) "..AtlasLocale["Ras Frostwhisper"], NPC, 10508 };
- { WHITE..INDENT..AtlasLocale["The Deed to Brill"], OBJECT, 176484 };
- { WHITE..INDENT..AtlasLocale["Kormok"].." ("..AtlasLocale["Summon"]..")", NPC, 16118 };
- { WHITE.."8) "..AtlasLocale["Instructor Malicia"], NPC, 10505 };
- { WHITE.."9) "..AtlasLocale["Doctor Theolen Krastinov "], NPC, 11261 };
- { WHITE.."10) "..AtlasLocale["Lorekeeper Polkelt"], NPC, 10901 };
- { WHITE.."11) "..AtlasLocale["The Ravenian"], NPC, 10507 };
- { WHITE.."12) "..AtlasLocale["Lord Alexei Barov"], NPC, 10504 };
- { WHITE..INDENT..AtlasLocale["The Deed to Caer Darrow"], OBJECT, 176485 };
- { WHITE.."13) "..AtlasLocale["Lady Illucia Barov"], NPC, 10502 };
- { WHITE.."14) "..AtlasLocale["Darkmaster Gandling"], NPC, 1853 };
- { GREN.."1') "..AtlasLocale["Torch Lever"] };
- { GREN.."2') "..AtlasLocale["Secret Chest"] };
- { GREN.."3') "..AtlasLocale["Alchemy Lab"] };
+ Acronym = AL["Scholo"];
+ { ORNG..AL["Reputation"]..": "..AL["Argent Dawn"], FACTION, 529 };
+ { ORNG..AL["Key"]..": "..AL["Skeleton Key"], ITEM, 13704 };
+ { ORNG..AL["Key"]..": "..AL["Viewing Room Key"].." ("..AL["Viewing Room"]..")", ITEM, 13873 };
+ { ORNG..AL["Key"]..": "..AL["Blood of Innocents"].." ("..AL["Kirtonos the Herald"]..")", ITEM, 13523 };
+ { ORNG..AL["Key"]..": "..AL["Brazier of Invocation"].." ("..AL["DS2"]..")", ITEM, 22057 };
+ { ORNG..AL["Key"]..": "..AL["Divination Scryer"].." ("..AL["Death Knight Darkreaver"]..")", ITEM, 18746 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..AL["Connection"] };
+ { BLUE.."C) "..AL["Connection"] };
+ { WHITE.."1) "..AL["Blood Steward of Kirtonos"], NPC, 14861 };
+ { WHITE..INDENT..AL["The Deed to Southshore"], OBJECT, 176486 };
+ { WHITE.."2) "..AL["Kirtonos the Herald"].." ("..AL["Summon"]..")", NPC, 10506 };
+ { WHITE.."3) "..AL["Jandice Barov"], NPC, 10503 };
+ { WHITE.."4) "..AL["The Deed to Tarren Mill"], OBJECT, 176487 };
+ { WHITE.."5) "..AL["Rattlegore"].." ("..AL["Lower"]..")", NPC, 11622 };
+ { WHITE..INDENT..AL["Death Knight Darkreaver"].." ("..AL["Summon"]..")", NPC, 14516 };
+ { WHITE.."6) "..AL["Marduk Blackpool"], NPC, 10433 };
+ { WHITE..INDENT..AL["Vectus"], NPC, 10432 };
+ { WHITE.."7) "..AL["Ras Frostwhisper"], NPC, 10508 };
+ { WHITE..INDENT..AL["The Deed to Brill"], OBJECT, 176484 };
+ { WHITE..INDENT..AL["Kormok"].." ("..AL["Summon"]..")", NPC, 16118 };
+ { WHITE.."8) "..AL["Instructor Malicia"], NPC, 10505 };
+ { WHITE.."9) "..AL["Doctor Theolen Krastinov "], NPC, 11261 };
+ { WHITE.."10) "..AL["Lorekeeper Polkelt"], NPC, 10901 };
+ { WHITE.."11) "..AL["The Ravenian"], NPC, 10507 };
+ { WHITE.."12) "..AL["Lord Alexei Barov"], NPC, 10504 };
+ { WHITE..INDENT..AL["The Deed to Caer Darrow"], OBJECT, 176485 };
+ { WHITE.."13) "..AL["Lady Illucia Barov"], NPC, 10502 };
+ { WHITE.."14) "..AL["Darkmaster Gandling"], NPC, 1853 };
+ { GREN.."1') "..AL["Torch Lever"] };
+ { GREN.."2') "..AL["Secret Chest"] };
+ { GREN.."3') "..AL["Alchemy Lab"] };
};
["ShadowfangKeep"] = {
ZoneName = { BabbleZone["Shadowfang Keep"], 209 };
@@ -969,31 +969,31 @@ AtlasLoot_MapData = {
LevelRange = "17-25";
MinLevel = "10";
PlayerLimit = "5";
- Acronym = AtlasLocale["SFK"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Rethilgore "], NPC, 3914 };
- { WHITE..INDENT..AtlasLocale["Sorcerer Ashcrombe"], NPC, 3850 };
- { WHITE..INDENT..AtlasLocale["Deathstalker Adamant"], NPC, 3849 };
- { WHITE..INDENT..AtlasLocale["Landen Stilwell"], NPC, 17822 };
- { WHITE.."2) "..AtlasLocale["Investigator Fezzen Brasstacks"].." ("..AtlasLocale["Love is in the Air"]..")", NPC, 38208 };
- { WHITE.."3) "..AtlasLocale["Deathstalker Vincent"], NPC, 4444 };
- { WHITE.."4) "..AtlasLocale["Apothecary Trio"].." ("..AtlasLocale["Love is in the Air"]..")" };
- { WHITE..INDENT..AtlasLocale["Apothecary Hummel "], NPC, 36296 };
- { WHITE..INDENT..AtlasLocale["Apothecary Baxter "], NPC, 36565 };
- { WHITE..INDENT..AtlasLocale["Apothecary Frye "], NPC, 36272 };
- { WHITE.."5) "..AtlasLocale["Fel Steed"], NPC, 3864 };
- { WHITE..INDENT..AtlasLocale["Jordan's Hammer"], OBJECT, 91138 };
- { WHITE..INDENT..AtlasLocale["Crate of Ingots"], OBJECT, 182011 };
- { WHITE.."6) "..AtlasLocale["Razorclaw the Butcher"], NPC, 3886 };
- { WHITE.."7) "..AtlasLocale["Baron Silverlaine"], NPC, 3887 };
- { WHITE.."8) "..AtlasLocale["Commander Springvale"], NPC, 4278 };
- { WHITE.."9) "..AtlasLocale["Odo the Blindwatcher"], NPC, 4279 };
- { WHITE.."10) "..AtlasLocale["Deathsworn Captain"].." ("..AtlasLocale["Rare"]..")", NPC, 3872 };
- { WHITE.."11) "..AtlasLocale["Fenrus the Devourer"], NPC, 4274 };
- { WHITE..INDENT..AtlasLocale["Arugal's Voidwalker"], NPC, 4627 };
- { WHITE..INDENT..AtlasLocale["The Book of Ur"], OBJECT, 36738 };
- { WHITE.."12) "..AtlasLocale["Wolf Master Nandos"], NPC, 3927 };
- { WHITE.."13) "..AtlasLocale["Archmage Arugal"], NPC, 4275 };
+ Acronym = AL["SFK"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Rethilgore "], NPC, 3914 };
+ { WHITE..INDENT..AL["Sorcerer Ashcrombe"], NPC, 3850 };
+ { WHITE..INDENT..AL["Deathstalker Adamant"], NPC, 3849 };
+ { WHITE..INDENT..AL["Landen Stilwell"], NPC, 17822 };
+ { WHITE.."2) "..AL["Investigator Fezzen Brasstacks"].." ("..AL["Love is in the Air"]..")", NPC, 38208 };
+ { WHITE.."3) "..AL["Deathstalker Vincent"], NPC, 4444 };
+ { WHITE.."4) "..AL["Apothecary Trio"].." ("..AL["Love is in the Air"]..")" };
+ { WHITE..INDENT..AL["Apothecary Hummel "], NPC, 36296 };
+ { WHITE..INDENT..AL["Apothecary Baxter "], NPC, 36565 };
+ { WHITE..INDENT..AL["Apothecary Frye "], NPC, 36272 };
+ { WHITE.."5) "..AL["Fel Steed"], NPC, 3864 };
+ { WHITE..INDENT..AL["Jordan's Hammer"], OBJECT, 91138 };
+ { WHITE..INDENT..AL["Crate of Ingots"], OBJECT, 182011 };
+ { WHITE.."6) "..AL["Razorclaw the Butcher"], NPC, 3886 };
+ { WHITE.."7) "..AL["Baron Silverlaine"], NPC, 3887 };
+ { WHITE.."8) "..AL["Commander Springvale"], NPC, 4278 };
+ { WHITE.."9) "..AL["Odo the Blindwatcher"], NPC, 4279 };
+ { WHITE.."10) "..AL["Deathsworn Captain"].." ("..AL["Rare"]..")", NPC, 3872 };
+ { WHITE.."11) "..AL["Fenrus the Devourer"], NPC, 4274 };
+ { WHITE..INDENT..AL["Arugal's Voidwalker"], NPC, 4627 };
+ { WHITE..INDENT..AL["The Book of Ur"], OBJECT, 36738 };
+ { WHITE.."12) "..AL["Wolf Master Nandos"], NPC, 3927 };
+ { WHITE.."13) "..AL["Archmage Arugal"], NPC, 4275 };
};
["SMArmory"] = {
ZoneName = { BabbleZone["Armory"], 796 };
@@ -1001,10 +1001,10 @@ AtlasLoot_MapData = {
LevelRange = "33-40";
MinLevel = "20";
PlayerLimit = "5";
- Acronym = AtlasLocale["Armory"];
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["The Scarlet Key"], ITEM, 7146 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Herod "], NPC, 3975 };
+ Acronym = AL["Armory"];
+ { ORNG..AL["Key"]..": "..AL["The Scarlet Key"], ITEM, 7146 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Herod "], NPC, 3975 };
};
["SMCathedral"] = {
ZoneName = { BabbleZone["Cathedral"], 796 };
@@ -1012,12 +1012,12 @@ AtlasLoot_MapData = {
LevelRange = "36-42";
MinLevel = "20";
PlayerLimit = "5";
- Acronym = AtlasLocale["Cath"];
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["The Scarlet Key"], ITEM, 7146 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["High Inquisitor Fairbanks"], NPC, 4542 };
- { WHITE.."2) "..AtlasLocale["Scarlet Commander Mograine"], NPC, 3976 };
- { WHITE..INDENT..AtlasLocale["High Inquisitor Whitemane"], NPC, 3977 };
+ Acronym = AL["Cath"];
+ { ORNG..AL["Key"]..": "..AL["The Scarlet Key"], ITEM, 7146 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["High Inquisitor Fairbanks"], NPC, 4542 };
+ { WHITE.."2) "..AL["Scarlet Commander Mograine"], NPC, 3976 };
+ { WHITE..INDENT..AL["High Inquisitor Whitemane"], NPC, 3977 };
};
["SMGraveyard"] = {
ZoneName = { BabbleZone["Graveyard"], 796 };
@@ -1025,16 +1025,16 @@ AtlasLoot_MapData = {
LevelRange = "28-35";
MinLevel = "20";
PlayerLimit = "5";
- Acronym = AtlasLocale["GY"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Interrogator Vishas"], NPC, 3983 };
- { WHITE..INDENT..AtlasLocale["Vorrel Sengutz"], NPC, 3981 };
- { WHITE.."2) "..AtlasLocale["Pumpkin Shrine"].." ("..AtlasLocale["Hallow's End"]..")", OBJECT, 186267 };
- { WHITE..INDENT..AtlasLocale["Headless Horseman"].." ("..AtlasLocale["Summon"]..")", NPC, 23682 };
- { WHITE.."3) "..AtlasLocale["Bloodmage Thalnos"], NPC, 4543 };
- { GREN.."1') "..AtlasLocale["Ironspine"].." ("..AtlasLocale["Rare"]..")", NPC, 6489 };
- { GREN..INDENT..AtlasLocale["Azshir the Sleepless"].." ("..AtlasLocale["Rare"]..")", NPC, 6490 };
- { GREN..INDENT..AtlasLocale["Fallen Champion"].." ("..AtlasLocale["Rare"]..")", NPC, 6488 };
+ Acronym = AL["GY"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Interrogator Vishas"], NPC, 3983 };
+ { WHITE..INDENT..AL["Vorrel Sengutz"], NPC, 3981 };
+ { WHITE.."2) "..AL["Pumpkin Shrine"].." ("..AL["Hallow's End"]..")", OBJECT, 186267 };
+ { WHITE..INDENT..AL["Headless Horseman"].." ("..AL["Summon"]..")", NPC, 23682 };
+ { WHITE.."3) "..AL["Bloodmage Thalnos"], NPC, 4543 };
+ { GREN.."1') "..AL["Ironspine"].." ("..AL["Rare"]..")", NPC, 6489 };
+ { GREN..INDENT..AL["Azshir the Sleepless"].." ("..AL["Rare"]..")", NPC, 6490 };
+ { GREN..INDENT..AL["Fallen Champion"].." ("..AL["Rare"]..")", NPC, 6488 };
};
["SMLibrary"] = {
ZoneName = { BabbleZone["Library"], 796 };
@@ -1042,10 +1042,10 @@ AtlasLoot_MapData = {
LevelRange = "31-37";
MinLevel = "20";
PlayerLimit = "5";
- Acronym = AtlasLocale["Lib"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Houndmaster Loksey"], NPC, 3974 };
- { WHITE.."2) "..AtlasLocale["Arcanist Doan"], NPC, 6487 };
+ Acronym = AL["Lib"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Houndmaster Loksey"], NPC, 3974 };
+ { WHITE.."2) "..AL["Arcanist Doan"], NPC, 6487 };
};
["Stratholme"] = {
ZoneName = { BabbleZone["Stratholme"], 2017 };
@@ -1053,50 +1053,50 @@ AtlasLoot_MapData = {
LevelRange = "58-60";
MinLevel = "45";
PlayerLimit = "5";
- Acronym = AtlasLocale["Strat"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Argent Dawn"], FACTION, 529 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["The Scarlet Key"].." ("..AtlasLocale["Living Side"]..")", ITEM, 7146 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Key to the City"].." ("..AtlasLocale["Undead Side"]..")", ITEM, 12382 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Various Postbox Keys"].." ("..AtlasLocale["Postmaster Malown"]..")" };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Brazier of Invocation"].." ("..AtlasLocale["DS2"]..")", ITEM, 22057 };
- { BLUE.."A) "..AtlasLocale["Entrance"].." ("..AtlasLocale["Front"]..")" };
- { BLUE.."B) "..AtlasLocale["Entrance"].." ("..AtlasLocale["Side"]..")" };
- { WHITE.."1) "..AtlasLocale["Skul"].." ("..AtlasLocale["Rare"]..", "..AtlasLocale["Varies"]..")", NPC, 10393 };
- { WHITE..INDENT..AtlasLocale["Stratholme Courier"], NPC, 11082 };
- { WHITE..INDENT..AtlasLocale["Fras Siabi"], NPC, 11058 };
- { WHITE.."2) "..AtlasLocale["Atiesh "].." ("..AtlasLocale["Summon"]..")", NPC, 16387 };
- { WHITE.."3) "..AtlasLocale["Hearthsinger Forresten"].." ("..AtlasLocale["Varies"]..")", NPC, 10558 };
- { WHITE.."4) "..AtlasLocale["The Unforgiven"], NPC, 10516 };
- { WHITE.."5) "..AtlasLocale["Elder Farwhisper"].." ("..AtlasLocale["Lunar Festival"]..")", NPC, 15607 };
- { WHITE.."6) "..AtlasLocale["Timmy the Cruel"], NPC, 10808 };
- { WHITE.."7) "..AtlasLocale["Malor the Zealous"], NPC, 11032 };
- { WHITE..INDENT..AtlasLocale["Malor's Strongbox"], OBJECT, 176112 };
- { WHITE.."8) "..AtlasLocale["Crimson Hammersmith"].." ("..AtlasLocale["Summon"]..")", NPC, 11120 };
- { WHITE..INDENT..AtlasLocale["Blacksmithing Plans"], OBJECT, 173232 };
- { WHITE.."9) "..AtlasLocale["Cannon Master Willey"], NPC, 10997 };
- { WHITE.."10) "..AtlasLocale["Archivist Galford"], NPC, 10811 };
- { WHITE.."11) "..AtlasLocale["Grand Crusader Dathrohan"], NPC, 10812 };
- { WHITE..INDENT..AtlasLocale["Balnazzar"], NPC, 10813 };
- { WHITE..INDENT..AtlasLocale["Sothos"].." ("..AtlasLocale["Summon"]..")", NPC, 16102 };
- { WHITE..INDENT..AtlasLocale["Jarien"].." ("..AtlasLocale["Summon"]..")", NPC, 16101 };
- { WHITE.."12) "..AtlasLocale["Magistrate Barthilas"].." ("..AtlasLocale["Varies"]..")", NPC, 10435 };
- { WHITE.."13) "..AtlasLocale["Aurius"], NPC, 10917 };
- { WHITE.."14) "..AtlasLocale["Stonespine"].." ("..AtlasLocale["Rare"]..")", NPC, 10809 };
- { WHITE.."15) "..AtlasLocale["Baroness Anastari"], NPC, 10436 };
- { WHITE..INDENT..AtlasLocale["Black Guard Swordsmith"].." ("..AtlasLocale["Summon"]..")", NPC, 11121 };
- { WHITE..INDENT..AtlasLocale["Blacksmithing Plans"], OBJECT, 173232 };
- { WHITE.."16) "..AtlasLocale["Nerub'enkan"], NPC, 10437 };
- { WHITE.."17) "..AtlasLocale["Maleki the Pallid"], NPC, 10438 };
- { WHITE.."18) "..AtlasLocale["Ramstein the Gorger"], NPC, 10439 };
- { WHITE.."19) "..AtlasLocale["Baron Rivendare"], NPC, 10440 };
- { WHITE..INDENT..AtlasLocale["Ysida Harmon"], NPC, 16031 };
- { GREN.."1') "..AtlasLocale["Crusaders' Square Postbox"] };
- { GREN.."2') "..AtlasLocale["Market Row Postbox"] };
- { GREN.."3') "..AtlasLocale["Festival Lane Postbox"] };
- { GREN.."4') "..AtlasLocale["Elders' Square Postbox"] };
- { GREN.."5') "..AtlasLocale["King's Square Postbox"] };
- { GREN.."6') "..AtlasLocale["Fras Siabi's Postbox"] };
- { GREN..AtlasLocale["3rd Box Opened"]..": "..AtlasLocale["Postmaster Malown"], NPC, 11143 };
+ Acronym = AL["Strat"];
+ { ORNG..AL["Reputation"]..": "..AL["Argent Dawn"], FACTION, 529 };
+ { ORNG..AL["Key"]..": "..AL["The Scarlet Key"].." ("..AL["Living Side"]..")", ITEM, 7146 };
+ { ORNG..AL["Key"]..": "..AL["Key to the City"].." ("..AL["Undead Side"]..")", ITEM, 12382 };
+ { ORNG..AL["Key"]..": "..AL["Various Postbox Keys"].." ("..AL["Postmaster Malown"]..")" };
+ { ORNG..AL["Key"]..": "..AL["Brazier of Invocation"].." ("..AL["DS2"]..")", ITEM, 22057 };
+ { BLUE.."A) "..AL["Entrance"].." ("..AL["Front"]..")" };
+ { BLUE.."B) "..AL["Entrance"].." ("..AL["Side"]..")" };
+ { WHITE.."1) "..AL["Skul"].." ("..AL["Rare"]..", "..AL["Varies"]..")", NPC, 10393 };
+ { WHITE..INDENT..AL["Stratholme Courier"], NPC, 11082 };
+ { WHITE..INDENT..AL["Fras Siabi"], NPC, 11058 };
+ { WHITE.."2) "..AL["Atiesh "].." ("..AL["Summon"]..")", NPC, 16387 };
+ { WHITE.."3) "..AL["Hearthsinger Forresten"].." ("..AL["Varies"]..")", NPC, 10558 };
+ { WHITE.."4) "..AL["The Unforgiven"], NPC, 10516 };
+ { WHITE.."5) "..AL["Elder Farwhisper"].." ("..AL["Lunar Festival"]..")", NPC, 15607 };
+ { WHITE.."6) "..AL["Timmy the Cruel"], NPC, 10808 };
+ { WHITE.."7) "..AL["Malor the Zealous"], NPC, 11032 };
+ { WHITE..INDENT..AL["Malor's Strongbox"], OBJECT, 176112 };
+ { WHITE.."8) "..AL["Crimson Hammersmith"].." ("..AL["Summon"]..")", NPC, 11120 };
+ { WHITE..INDENT..AL["Blacksmithing Plans"], OBJECT, 173232 };
+ { WHITE.."9) "..AL["Cannon Master Willey"], NPC, 10997 };
+ { WHITE.."10) "..AL["Archivist Galford"], NPC, 10811 };
+ { WHITE.."11) "..AL["Grand Crusader Dathrohan"], NPC, 10812 };
+ { WHITE..INDENT..AL["Balnazzar"], NPC, 10813 };
+ { WHITE..INDENT..AL["Sothos"].." ("..AL["Summon"]..")", NPC, 16102 };
+ { WHITE..INDENT..AL["Jarien"].." ("..AL["Summon"]..")", NPC, 16101 };
+ { WHITE.."12) "..AL["Magistrate Barthilas"].." ("..AL["Varies"]..")", NPC, 10435 };
+ { WHITE.."13) "..AL["Aurius"], NPC, 10917 };
+ { WHITE.."14) "..AL["Stonespine"].." ("..AL["Rare"]..")", NPC, 10809 };
+ { WHITE.."15) "..AL["Baroness Anastari"], NPC, 10436 };
+ { WHITE..INDENT..AL["Black Guard Swordsmith"].." ("..AL["Summon"]..")", NPC, 11121 };
+ { WHITE..INDENT..AL["Blacksmithing Plans"], OBJECT, 173232 };
+ { WHITE.."16) "..AL["Nerub'enkan"], NPC, 10437 };
+ { WHITE.."17) "..AL["Maleki the Pallid"], NPC, 10438 };
+ { WHITE.."18) "..AL["Ramstein the Gorger"], NPC, 10439 };
+ { WHITE.."19) "..AL["Baron Rivendare"], NPC, 10440 };
+ { WHITE..INDENT..AL["Ysida Harmon"], NPC, 16031 };
+ { GREN.."1') "..AL["Crusaders' Square Postbox"] };
+ { GREN.."2') "..AL["Market Row Postbox"] };
+ { GREN.."3') "..AL["Festival Lane Postbox"] };
+ { GREN.."4') "..AL["Elders' Square Postbox"] };
+ { GREN.."5') "..AL["King's Square Postbox"] };
+ { GREN.."6') "..AL["Fras Siabi's Postbox"] };
+ { GREN..AL["3rd Box Opened"]..": "..AL["Postmaster Malown"], NPC, 11143 };
};
["TheDeadmines"] = {
ZoneName = { BabbleZone["The Deadmines"], 1581 };
@@ -1104,19 +1104,19 @@ AtlasLoot_MapData = {
LevelRange = "16-22";
MinLevel = "10";
PlayerLimit = "5";
- Acronym = AtlasLocale["VC"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Exit"] };
- { WHITE.."1) "..AtlasLocale["Rhahk'Zor "], NPC, 644 };
- { WHITE.."2) "..AtlasLocale["Miner Johnson"].." ("..AtlasLocale["Rare"]..")", NPC, 3586 };
- { WHITE.."3) "..AtlasLocale["Sneed "], NPC, 643 };
- { WHITE..INDENT..AtlasLocale["Sneed's Shredder "], NPC, 642 };
- { WHITE.."4) "..AtlasLocale["Gilnid "], NPC, 1763 };
- { WHITE.."5) "..AtlasLocale["Defias Gunpowder"], OBJECT, 17155 };
- { WHITE.."6) "..AtlasLocale["Captain Greenskin"], NPC, 647 };
- { WHITE..INDENT..AtlasLocale["Edwin VanCleef "], NPC, 639 };
- { WHITE..INDENT..AtlasLocale["Mr. Smite "], NPC, 646 };
- { WHITE..INDENT..AtlasLocale["Cookie "], NPC, 645 };
+ Acronym = AL["VC"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..AL["Exit"] };
+ { WHITE.."1) "..AL["Rhahk'Zor "], NPC, 644 };
+ { WHITE.."2) "..AL["Miner Johnson"].." ("..AL["Rare"]..")", NPC, 3586 };
+ { WHITE.."3) "..AL["Sneed "], NPC, 643 };
+ { WHITE..INDENT..AL["Sneed's Shredder "], NPC, 642 };
+ { WHITE.."4) "..AL["Gilnid "], NPC, 1763 };
+ { WHITE.."5) "..AL["Defias Gunpowder"], OBJECT, 17155 };
+ { WHITE.."6) "..AL["Captain Greenskin"], NPC, 647 };
+ { WHITE..INDENT..AL["Edwin VanCleef "], NPC, 639 };
+ { WHITE..INDENT..AL["Mr. Smite "], NPC, 646 };
+ { WHITE..INDENT..AL["Cookie "], NPC, 645 };
};
["TheStockade"] = {
ZoneName = { BabbleZone["The Stockade"], 717 };
@@ -1124,14 +1124,14 @@ AtlasLoot_MapData = {
LevelRange = "21-27";
MinLevel = "15";
PlayerLimit = "5";
- Acronym = AtlasLocale["Stocks"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Targorr the Dread"].." ("..AtlasLocale["Varies"]..")", NPC, 1696 };
- { WHITE.."2) "..AtlasLocale["Kam Deepfury"], NPC, 1666 };
- { WHITE.."3) "..AtlasLocale["Hamhock"], NPC, 1717 };
- { WHITE.."4) "..AtlasLocale["Bazil Thredd"], NPC, 1716 };
- { WHITE.."5) "..AtlasLocale["Dextren Ward"], NPC, 1663 };
- { WHITE.."6) "..AtlasLocale["Bruegal Ironknuckle"].." ("..AtlasLocale["Rare"]..")", NPC, 1720 };
+ Acronym = AL["Stocks"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Targorr the Dread"].." ("..AL["Varies"]..")", NPC, 1696 };
+ { WHITE.."2) "..AL["Kam Deepfury"], NPC, 1666 };
+ { WHITE.."3) "..AL["Hamhock"], NPC, 1717 };
+ { WHITE.."4) "..AL["Bazil Thredd"], NPC, 1716 };
+ { WHITE.."5) "..AL["Dextren Ward"], NPC, 1663 };
+ { WHITE.."6) "..AL["Bruegal Ironknuckle"].." ("..AL["Rare"]..")", NPC, 1720 };
};
["TheSunkenTemple"] = {
ZoneName = { BabbleZone["Sunken Temple"], 1417 };
@@ -1139,32 +1139,32 @@ AtlasLoot_MapData = {
LevelRange = "46-53";
MinLevel = "35";
PlayerLimit = "5";
- Acronym = AtlasLocale["ST"];
- { ORNG..AtlasLocale["AKA"]..": "..BabbleZone["The Temple of Atal'Hakkar"] };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Yeh'kinya's Scroll"].." ("..AtlasLocale["Avatar of Hakkar"]..")", ITEM, 10818 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B-I) "..AtlasLocale["Connection"] };
- { WHITE.."1) "..AtlasLocale["Altar of Hakkar"], OBJECT, 148836 };
- { WHITE..INDENT..AtlasLocale["Atal'alarion "], NPC, 8580 };
- { WHITE.."2) "..AtlasLocale["Dreamscythe"], NPC, 5721 };
- { WHITE..INDENT..AtlasLocale["Weaver"], NPC, 5720 };
- { WHITE.."3) "..AtlasLocale["Avatar of Hakkar"], NPC, 8443 };
- { WHITE.."4) "..AtlasLocale["Jammal'an the Prophet"], NPC, 5710 };
- { WHITE..INDENT..AtlasLocale["Ogom the Wretched"], NPC, 5711 };
- { WHITE.."5) "..AtlasLocale["Morphaz"], NPC, 5719 };
- { WHITE..INDENT..AtlasLocale["Hazzas"], NPC, 5722 };
- { WHITE.."6) "..AtlasLocale["Shade of Eranikus"], NPC, 5709 };
- { WHITE..INDENT..AtlasLocale["Essence Font"], OBJECT, 148512 };
- { WHITE.."7) "..AtlasLocale["Spawn of Hakkar"].." ("..AtlasLocale["Rare"]..")", NPC, 5708 };
- { WHITE.."8) "..AtlasLocale["Elder Starsong"].." ("..AtlasLocale["Lunar Festival"]..")", NPC, 15593 };
- { GREN.."1'-6') "..AtlasLocale["Statue Activation Order"] };
- { GREN.."7') "..AtlasLocale["Atal'ai Defenders"] };
- { GREN..INDENT..AtlasLocale["Gasher"], NPC, 5713 };
- { GREN..INDENT..AtlasLocale["Loro"], NPC, 5714 };
- { GREN..INDENT..AtlasLocale["Hukku"], NPC, 5715 };
- { GREN..INDENT..AtlasLocale["Zolo"], NPC, 5712 };
- { GREN..INDENT..AtlasLocale["Mijan"], NPC, 5717 };
- { GREN..INDENT..AtlasLocale["Zul'Lor"], NPC, 5716 };
+ Acronym = AL["ST"];
+ { ORNG..AL["AKA"]..": "..BabbleZone["The Temple of Atal'Hakkar"] };
+ { ORNG..AL["Key"]..": "..AL["Yeh'kinya's Scroll"].." ("..AL["Avatar of Hakkar"]..")", ITEM, 10818 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B-I) "..AL["Connection"] };
+ { WHITE.."1) "..AL["Altar of Hakkar"], OBJECT, 148836 };
+ { WHITE..INDENT..AL["Atal'alarion "], NPC, 8580 };
+ { WHITE.."2) "..AL["Dreamscythe"], NPC, 5721 };
+ { WHITE..INDENT..AL["Weaver"], NPC, 5720 };
+ { WHITE.."3) "..AL["Avatar of Hakkar"], NPC, 8443 };
+ { WHITE.."4) "..AL["Jammal'an the Prophet"], NPC, 5710 };
+ { WHITE..INDENT..AL["Ogom the Wretched"], NPC, 5711 };
+ { WHITE.."5) "..AL["Morphaz"], NPC, 5719 };
+ { WHITE..INDENT..AL["Hazzas"], NPC, 5722 };
+ { WHITE.."6) "..AL["Shade of Eranikus"], NPC, 5709 };
+ { WHITE..INDENT..AL["Essence Font"], OBJECT, 148512 };
+ { WHITE.."7) "..AL["Spawn of Hakkar"].." ("..AL["Rare"]..")", NPC, 5708 };
+ { WHITE.."8) "..AL["Elder Starsong"].." ("..AL["Lunar Festival"]..")", NPC, 15593 };
+ { GREN.."1'-6') "..AL["Statue Activation Order"] };
+ { GREN.."7') "..AL["Atal'ai Defenders"] };
+ { GREN..INDENT..AL["Gasher"], NPC, 5713 };
+ { GREN..INDENT..AL["Loro"], NPC, 5714 };
+ { GREN..INDENT..AL["Hukku"], NPC, 5715 };
+ { GREN..INDENT..AL["Zolo"], NPC, 5712 };
+ { GREN..INDENT..AL["Mijan"], NPC, 5717 };
+ { GREN..INDENT..AL["Zul'Lor"], NPC, 5716 };
};
["Uldaman"] = {
ZoneName = { BabbleZone["Uldaman"], 1337 };
@@ -1172,28 +1172,28 @@ AtlasLoot_MapData = {
LevelRange = "36-42";
MinLevel = "30";
PlayerLimit = "5";
- Acronym = AtlasLocale["Ulda"];
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Staff of Prehistoria"].." ("..AtlasLocale["Ironaya"]..")", ITEM, 7733 };
- { BLUE.."A) "..AtlasLocale["Entrance"].." ("..AtlasLocale["Front"]..")" };
- { BLUE.."B) "..AtlasLocale["Entrance"].." ("..AtlasLocale["Back"]..")" };
- { WHITE.."1) "..AtlasLocale["Baelog"], NPC, 6906 };
- { WHITE..INDENT..AtlasLocale["Eric \"The Swift\""], NPC, 6907 };
- { WHITE..INDENT..AtlasLocale["Olaf"], NPC, 6908 };
- { WHITE..INDENT..AtlasLocale["Baelog's Chest"], OBJECT, 123329 };
- { WHITE..INDENT..AtlasLocale["Conspicuous Urn"], OBJECT, 125477 };
- { WHITE.."2) "..AtlasLocale["Remains of a Paladin"], NPC, 6912 };
- { WHITE.."3) "..AtlasLocale["Revelosh"], NPC, 6910 };
- { WHITE.."4) "..AtlasLocale["Ironaya"], NPC, 7228 };
- { WHITE.."5) "..AtlasLocale["Obsidian Sentinel"], NPC, 7023 };
- { WHITE.."6) "..AtlasLocale["Annora "], NPC, 11073 };
- { WHITE.."7) "..AtlasLocale["Ancient Stone Keeper"], NPC, 7206 };
- { WHITE.."8) "..AtlasLocale["Galgann Firehammer"], NPC, 7291 };
- { WHITE..INDENT..AtlasLocale["Tablet of Will"], OBJECT, 142088 };
- { WHITE..INDENT..AtlasLocale["Shadowforge Cache"], OBJECT, 113757 };
- { WHITE.."9) "..AtlasLocale["Grimlok "], NPC, 4854 };
- { WHITE.."10) "..AtlasLocale["Archaedas "].." ("..AtlasLocale["Lower"]..")", NPC, 2748 };
- { WHITE.."11) "..AtlasLocale["The Discs of Norgannon"].." ("..AtlasLocale["Lower"]..")", OBJECT, 131474 };
- { WHITE..INDENT..AtlasLocale["Ancient Treasure"].." ("..AtlasLocale["Lower"]..")", OBJECT, 141979 };
+ Acronym = AL["Ulda"];
+ { ORNG..AL["Key"]..": "..AL["Staff of Prehistoria"].." ("..AL["Ironaya"]..")", ITEM, 7733 };
+ { BLUE.."A) "..AL["Entrance"].." ("..AL["Front"]..")" };
+ { BLUE.."B) "..AL["Entrance"].." ("..AL["Back"]..")" };
+ { WHITE.."1) "..AL["Baelog"], NPC, 6906 };
+ { WHITE..INDENT..AL["Eric \"The Swift\""], NPC, 6907 };
+ { WHITE..INDENT..AL["Olaf"], NPC, 6908 };
+ { WHITE..INDENT..AL["Baelog's Chest"], OBJECT, 123329 };
+ { WHITE..INDENT..AL["Conspicuous Urn"], OBJECT, 125477 };
+ { WHITE.."2) "..AL["Remains of a Paladin"], NPC, 6912 };
+ { WHITE.."3) "..AL["Revelosh"], NPC, 6910 };
+ { WHITE.."4) "..AL["Ironaya"], NPC, 7228 };
+ { WHITE.."5) "..AL["Obsidian Sentinel"], NPC, 7023 };
+ { WHITE.."6) "..AL["Annora "], NPC, 11073 };
+ { WHITE.."7) "..AL["Ancient Stone Keeper"], NPC, 7206 };
+ { WHITE.."8) "..AL["Galgann Firehammer"], NPC, 7291 };
+ { WHITE..INDENT..AL["Tablet of Will"], OBJECT, 142088 };
+ { WHITE..INDENT..AL["Shadowforge Cache"], OBJECT, 113757 };
+ { WHITE.."9) "..AL["Grimlok "], NPC, 4854 };
+ { WHITE.."10) "..AL["Archaedas "].." ("..AL["Lower"]..")", NPC, 2748 };
+ { WHITE.."11) "..AL["The Discs of Norgannon"].." ("..AL["Lower"]..")", OBJECT, 131474 };
+ { WHITE..INDENT..AL["Ancient Treasure"].." ("..AL["Lower"]..")", OBJECT, 141979 };
};
["ZulGurub"] = {
ZoneName = { BabbleZone["Zul'Gurub"], 19 };
@@ -1201,30 +1201,30 @@ AtlasLoot_MapData = {
LevelRange = "56-70";
MinLevel = "50";
PlayerLimit = "20";
- Acronym = AtlasLocale["ZG"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Zandalar Tribe"], FACTION, 270 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Mudskunk Lure"].." ("..AtlasLocale["Gahz'ranka"]..")", ITEM, 19974 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Gurubashi Mojo Madness"].." ("..AtlasLocale["Edge of Madness"]..")", ITEM, 19931 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["High Priestess Jeklik"].." ("..AtlasLocale["Bat"]..")", NPC, 14517 };
- { WHITE.."2) "..AtlasLocale["High Priest Venoxis"].." ("..AtlasLocale["Snake"]..")", NPC, 14507 };
- { WHITE.."3) "..AtlasLocale["Zanza the Restless"], NPC, 15042 };
- { WHITE.."4) "..AtlasLocale["High Priestess Mar'li"].." ("..AtlasLocale["Spider"]..")", NPC, 14510 };
- { WHITE.."5) "..AtlasLocale["Bloodlord Mandokir"].." ("..AtlasLocale["Raptor"]..", "..AtlasLocale["Optional"]..")", NPC, 11382 };
- { WHITE..INDENT..AtlasLocale["Ohgan"], NPC, 14988 };
- { WHITE.."6) "..AtlasLocale["Edge of Madness"].." ("..AtlasLocale["Optional"]..")" };
- { WHITE..INDENT..AtlasLocale["Gri'lek"].." ("..AtlasLocale["Random"]..")", NPC, 15082 };
- { WHITE..INDENT..AtlasLocale["Hazza'rah"].." ("..AtlasLocale["Random"]..")", NPC, 15083 };
- { WHITE..INDENT..AtlasLocale["Renataki"].." ("..AtlasLocale["Random"]..")", NPC, 15084 };
- { WHITE..INDENT..AtlasLocale["Wushoolay"].." ("..AtlasLocale["Random"]..")", NPC, 15085 };
- { WHITE.."7) "..AtlasLocale["Gahz'ranka"].." ("..AtlasLocale["Optional"]..", "..AtlasLocale["Summon"]..")", NPC, 15114 };
- { WHITE.."8) "..AtlasLocale["High Priest Thekal"].." ("..AtlasLocale["Tiger"]..")", NPC, 14509 };
- { WHITE..INDENT..AtlasLocale["Zealot Zath"], NPC, 11348 };
- { WHITE..INDENT..AtlasLocale["Zealot Lor'Khan"], NPC, 11347 };
- { WHITE.."9) "..AtlasLocale["High Priestess Arlokk"].." ("..AtlasLocale["Panther"]..")", NPC, 14515 };
- { WHITE.."10) "..AtlasLocale["Jin'do the Hexxer"].." ("..AtlasLocale["Undead"]..", "..AtlasLocale["Optional"]..")", NPC, 11380 };
- { WHITE.."11) "..AtlasLocale["Hakkar"], NPC, 14834 };
- { GREN.."1') "..AtlasLocale["Muddy Churning Waters"] };
+ Acronym = AL["ZG"];
+ { ORNG..AL["Reputation"]..": "..AL["Zandalar Tribe"], FACTION, 270 };
+ { ORNG..AL["Key"]..": "..AL["Mudskunk Lure"].." ("..AL["Gahz'ranka"]..")", ITEM, 19974 };
+ { ORNG..AL["Key"]..": "..AL["Gurubashi Mojo Madness"].." ("..AL["Edge of Madness"]..")", ITEM, 19931 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["High Priestess Jeklik"].." ("..AL["Bat"]..")", NPC, 14517 };
+ { WHITE.."2) "..AL["High Priest Venoxis"].." ("..AL["Snake"]..")", NPC, 14507 };
+ { WHITE.."3) "..AL["Zanza the Restless"], NPC, 15042 };
+ { WHITE.."4) "..AL["High Priestess Mar'li"].." ("..AL["Spider"]..")", NPC, 14510 };
+ { WHITE.."5) "..AL["Bloodlord Mandokir"].." ("..AL["Raptor"]..", "..AL["Optional"]..")", NPC, 11382 };
+ { WHITE..INDENT..AL["Ohgan"], NPC, 14988 };
+ { WHITE.."6) "..AL["Edge of Madness"].." ("..AL["Optional"]..")" };
+ { WHITE..INDENT..AL["Gri'lek"].." ("..AL["Random"]..")", NPC, 15082 };
+ { WHITE..INDENT..AL["Hazza'rah"].." ("..AL["Random"]..")", NPC, 15083 };
+ { WHITE..INDENT..AL["Renataki"].." ("..AL["Random"]..")", NPC, 15084 };
+ { WHITE..INDENT..AL["Wushoolay"].." ("..AL["Random"]..")", NPC, 15085 };
+ { WHITE.."7) "..AL["Gahz'ranka"].." ("..AL["Optional"]..", "..AL["Summon"]..")", NPC, 15114 };
+ { WHITE.."8) "..AL["High Priest Thekal"].." ("..AL["Tiger"]..")", NPC, 14509 };
+ { WHITE..INDENT..AL["Zealot Zath"], NPC, 11348 };
+ { WHITE..INDENT..AL["Zealot Lor'Khan"], NPC, 11347 };
+ { WHITE.."9) "..AL["High Priestess Arlokk"].." ("..AL["Panther"]..")", NPC, 14515 };
+ { WHITE.."10) "..AL["Jin'do the Hexxer"].." ("..AL["Undead"]..", "..AL["Optional"]..")", NPC, 11380 };
+ { WHITE.."11) "..AL["Hakkar"], NPC, 14834 };
+ { GREN.."1') "..AL["Muddy Churning Waters"] };
};
--************************************************
@@ -1237,14 +1237,14 @@ AtlasLoot_MapData = {
LevelRange = "64-70";
MinLevel = "55";
PlayerLimit = "5";
- Acronym = AtlasLocale["AC"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Lower City"], FACTION, 1011 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Auchenai Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30633 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Shirrak the Dead Watcher"], NPC, 18371 };
- { WHITE.."2) "..AtlasLocale["Exarch Maladaar"], NPC, 18373 };
- { WHITE..INDENT..AtlasLocale["Avatar of the Martyred"], NPC, 18478 };
- { WHITE..INDENT..AtlasLocale["D'ore"], NPC, 19412 };
+ Acronym = AL["AC"];
+ { ORNG..AL["Reputation"]..": "..AL["Lower City"], FACTION, 1011 };
+ { ORNG..AL["Key"]..": "..AL["Auchenai Key"].." ("..AL["Heroic"]..")", ITEM, 30633 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Shirrak the Dead Watcher"], NPC, 18371 };
+ { WHITE.."2) "..AL["Exarch Maladaar"], NPC, 18373 };
+ { WHITE..INDENT..AL["Avatar of the Martyred"], NPC, 18478 };
+ { WHITE..INDENT..AL["D'ore"], NPC, 19412 };
};
["AuchManaTombs"] = {
ZoneName = { BabbleZone["Mana-Tombs"], 3792 };
@@ -1252,19 +1252,19 @@ AtlasLoot_MapData = {
LevelRange = "63-70";
MinLevel = "55";
PlayerLimit = "5";
- Acronym = AtlasLocale["MT"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["The Consortium"], FACTION, 933 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Auchenai Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30633 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["The Eye of Haramad"].." ("..AtlasLocale["Exalted"]..", "..AtlasLocale["Yor "]..")", ITEM, 32092 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Pandemonius"], NPC, 18341 };
- { WHITE..INDENT..AtlasLocale["Shadow Lord Xiraxis"], NPC, 19666 };
- { WHITE.."2) "..AtlasLocale["Ambassador Pax'ivi"].." ("..AtlasLocale["Heroic"]..")", NPC, 22928 };
- { WHITE.."3) "..AtlasLocale["Tavarok"], NPC, 18343 };
- { WHITE.."4) "..AtlasLocale["Cryo-Engineer Sha'heen"], NPC, 19671 };
- { WHITE..INDENT..AtlasLocale["Ethereal Transporter Control Panel"], OBJECT, 183877 };
- { WHITE.."5) "..AtlasLocale["Nexus-Prince Shaffar"], NPC, 18344 };
- { WHITE..INDENT..AtlasLocale["Yor "].." ("..AtlasLocale["Summon"]..", "..AtlasLocale["Heroic"]..")", NPC, 22930 };
+ Acronym = AL["MT"];
+ { ORNG..AL["Reputation"]..": "..AL["The Consortium"], FACTION, 933 };
+ { ORNG..AL["Key"]..": "..AL["Auchenai Key"].." ("..AL["Heroic"]..")", ITEM, 30633 };
+ { ORNG..AL["Key"]..": "..AL["The Eye of Haramad"].." ("..AL["Exalted"]..", "..AL["Yor "]..")", ITEM, 32092 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Pandemonius"], NPC, 18341 };
+ { WHITE..INDENT..AL["Shadow Lord Xiraxis"], NPC, 19666 };
+ { WHITE.."2) "..AL["Ambassador Pax'ivi"].." ("..AL["Heroic"]..")", NPC, 22928 };
+ { WHITE.."3) "..AL["Tavarok"], NPC, 18343 };
+ { WHITE.."4) "..AL["Cryo-Engineer Sha'heen"], NPC, 19671 };
+ { WHITE..INDENT..AL["Ethereal Transporter Control Panel"], OBJECT, 183877 };
+ { WHITE.."5) "..AL["Nexus-Prince Shaffar"], NPC, 18344 };
+ { WHITE..INDENT..AL["Yor "].." ("..AL["Summon"]..", "..AL["Heroic"]..")", NPC, 22930 };
};
["AuchSethekkHalls"] = {
ZoneName = {BabbleZone["Sethekk Halls"], 3791 };
@@ -1272,16 +1272,16 @@ AtlasLoot_MapData = {
LevelRange = "66-70";
MinLevel = "55";
PlayerLimit = "5";
- Acronym = AtlasLocale["Seth"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Lower City"], FACTION, 1011 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Auchenai Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30633 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Essence-Infused Moonstone"].." ("..AtlasLocale["Anzu"]..")", ITEM, 32449 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Darkweaver Syth"], NPC, 18472 };
- { WHITE..INDENT..AtlasLocale["Lakka"], NPC, 18956 };
- { WHITE.."2) "..AtlasLocale["The Saga of Terokk"], OBJECT, 183050 };
- { WHITE..INDENT..AtlasLocale["Anzu"].." ("..AtlasLocale["Summon"]..", "..AtlasLocale["Heroic"]..")", NPC, 23035 };
- { WHITE.."3) "..AtlasLocale["Talon King Ikiss"], NPC, 18473 };
+ Acronym = AL["Seth"];
+ { ORNG..AL["Reputation"]..": "..AL["Lower City"], FACTION, 1011 };
+ { ORNG..AL["Key"]..": "..AL["Auchenai Key"].." ("..AL["Heroic"]..")", ITEM, 30633 };
+ { ORNG..AL["Key"]..": "..AL["Essence-Infused Moonstone"].." ("..AL["Anzu"]..")", ITEM, 32449 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Darkweaver Syth"], NPC, 18472 };
+ { WHITE..INDENT..AL["Lakka"], NPC, 18956 };
+ { WHITE.."2) "..AL["The Saga of Terokk"], OBJECT, 183050 };
+ { WHITE..INDENT..AL["Anzu"].." ("..AL["Summon"]..", "..AL["Heroic"]..")", NPC, 23035 };
+ { WHITE.."3) "..AL["Talon King Ikiss"], NPC, 18473 };
};
["AuchShadowLabyrinth"] = {
ZoneName = { BabbleZone["Shadow Labyrinth"], 3789 };
@@ -1289,74 +1289,74 @@ AtlasLoot_MapData = {
LevelRange = "69-70";
MinLevel = "65";
PlayerLimit = "5";
- Acronym = AtlasLocale["SL"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Lower City"], FACTION, 1011 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Shadow Labyrinth Key"], ITEM, 27991 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Auchenai Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30633 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Spy To'gun"], NPC, 18891 };
- { WHITE.."2) "..AtlasLocale["Ambassador Hellmaw"], NPC, 18731 };
- { WHITE.."3) "..AtlasLocale["Blackheart the Inciter"], NPC, 18667 };
- { WHITE.."4) "..AtlasLocale["Grandmaster Vorpil"], NPC, 18732 };
- { WHITE..INDENT..AtlasLocale["The Codex of Blood"], OBJECT, 182947 };
- { WHITE.."5) "..AtlasLocale["Murmur"], NPC, 18708 };
- { WHITE.."6) "..AtlasLocale["Arcane Container"], OBJECT, 182196 };
- { WHITE..INDENT..AtlasLocale["First Fragment Guardian"], NPC, 22890 };
+ Acronym = AL["SL"];
+ { ORNG..AL["Reputation"]..": "..AL["Lower City"], FACTION, 1011 };
+ { ORNG..AL["Key"]..": "..AL["Shadow Labyrinth Key"], ITEM, 27991 };
+ { ORNG..AL["Key"]..": "..AL["Auchenai Key"].." ("..AL["Heroic"]..")", ITEM, 30633 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Spy To'gun"], NPC, 18891 };
+ { WHITE.."2) "..AL["Ambassador Hellmaw"], NPC, 18731 };
+ { WHITE.."3) "..AL["Blackheart the Inciter"], NPC, 18667 };
+ { WHITE.."4) "..AL["Grandmaster Vorpil"], NPC, 18732 };
+ { WHITE..INDENT..AL["The Codex of Blood"], OBJECT, 182947 };
+ { WHITE.."5) "..AL["Murmur"], NPC, 18708 };
+ { WHITE.."6) "..AL["Arcane Container"], OBJECT, 182196 };
+ { WHITE..INDENT..AL["First Fragment Guardian"], NPC, 22890 };
};
["BlackTempleStart"] = {
- ZoneName = { BabbleZone["Black Temple"].." [A] ("..AtlasLocale["Start"]..")", 3959 };
+ ZoneName = { BabbleZone["Black Temple"].." [A] ("..AL["Start"]..")", 3959 };
Location = { BabbleZone["Shadowmoon Valley"], 3520 };
LevelRange = "70";
MinLevel = "70";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["BT"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Ashtongue Deathsworn"], FACTION, 1012 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Towards Reliquary of Souls"] };
- { BLUE.."C) "..AtlasLocale["Towards Teron Gorefiend"] };
- { BLUE.."D) "..AtlasLocale["Towards Illidan Stormrage"] };
- { WHITE.."1) "..AtlasLocale["Spirit of Olum"], NPC, 23411 };
- { WHITE.."2) "..AtlasLocale["High Warlord Naj'entus"], NPC, 22887 };
- { WHITE.."3) "..AtlasLocale["Supremus"], NPC, 22898 };
- { WHITE.."4) "..AtlasLocale["Shade of Akama"], NPC, 22841 };
- { WHITE.."5) "..AtlasLocale["Spirit of Udalo"], NPC, 23410 };
- { WHITE..INDENT..AtlasLocale["Aluyen "], NPC, 23157 };
- { WHITE..INDENT..AtlasLocale["Okuno "], NPC, 23159 };
- { WHITE..INDENT..AtlasLocale["Seer Kanai"], NPC, 23158 };
+ Acronym = AL["BT"];
+ { ORNG..AL["Reputation"]..": "..AL["Ashtongue Deathsworn"], FACTION, 1012 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..AL["Towards Reliquary of Souls"] };
+ { BLUE.."C) "..AL["Towards Teron Gorefiend"] };
+ { BLUE.."D) "..AL["Towards Illidan Stormrage"] };
+ { WHITE.."1) "..AL["Spirit of Olum"], NPC, 23411 };
+ { WHITE.."2) "..AL["High Warlord Naj'entus"], NPC, 22887 };
+ { WHITE.."3) "..AL["Supremus"], NPC, 22898 };
+ { WHITE.."4) "..AL["Shade of Akama"], NPC, 22841 };
+ { WHITE.."5) "..AL["Spirit of Udalo"], NPC, 23410 };
+ { WHITE..INDENT..AL["Aluyen "], NPC, 23157 };
+ { WHITE..INDENT..AL["Okuno "], NPC, 23159 };
+ { WHITE..INDENT..AL["Seer Kanai"], NPC, 23158 };
};
["BlackTempleBasement"] = {
- ZoneName = { BabbleZone["Black Temple"].." [B] ("..AtlasLocale["Basement"]..")", 3959 };
+ ZoneName = { BabbleZone["Black Temple"].." [B] ("..AL["Basement"]..")", 3959 };
Location = { BabbleZone["Shadowmoon Valley"], 3520 };
LevelRange = "70";
MinLevel = "70";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["BT"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Ashtongue Deathsworn"], FACTION, 1012 };
- { BLUE.."B) "..AtlasLocale["Entrance"] };
- { BLUE.."C) "..AtlasLocale["Entrance"] };
- { WHITE.."6) "..AtlasLocale["Gurtogg Bloodboil"], NPC, 22948 };
- { WHITE.."7) "..AtlasLocale["Reliquary of Souls"] };
- { WHITE..INDENT..AtlasLocale["Essence of Suffering"], NPC, 23418 };
- { WHITE..INDENT..AtlasLocale["Essence of Desire"], NPC, 23419 };
- { WHITE..INDENT..AtlasLocale["Essence of Anger"], NPC, 23420 };
- { WHITE.."8) "..AtlasLocale["Teron Gorefiend"], NPC, 22871 };
+ Acronym = AL["BT"];
+ { ORNG..AL["Reputation"]..": "..AL["Ashtongue Deathsworn"], FACTION, 1012 };
+ { BLUE.."B) "..AL["Entrance"] };
+ { BLUE.."C) "..AL["Entrance"] };
+ { WHITE.."6) "..AL["Gurtogg Bloodboil"], NPC, 22948 };
+ { WHITE.."7) "..AL["Reliquary of Souls"] };
+ { WHITE..INDENT..AL["Essence of Suffering"], NPC, 23418 };
+ { WHITE..INDENT..AL["Essence of Desire"], NPC, 23419 };
+ { WHITE..INDENT..AL["Essence of Anger"], NPC, 23420 };
+ { WHITE.."8) "..AL["Teron Gorefiend"], NPC, 22871 };
};
["BlackTempleTop"] = {
- ZoneName = { BabbleZone["Black Temple"].." [C] ("..AtlasLocale["Top"]..")", 3959 };
+ ZoneName = { BabbleZone["Black Temple"].." [C] ("..AL["Top"]..")", 3959 };
Location = { BabbleZone["Shadowmoon Valley"], 3520 };
LevelRange = "70";
MinLevel = "70";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["BT"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Ashtongue Deathsworn"], FACTION, 1012 };
- { BLUE.."D) "..AtlasLocale["Entrance"] };
- { WHITE.."9) "..AtlasLocale["Mother Shahraz"], NPC, 22947 };
- { WHITE.."10) "..AtlasLocale["The Illidari Council"], NPC, 23426 };
- { WHITE..INDENT..AtlasLocale["Lady Malande"].." ("..AtlasLocale["Priest"]..")", NPC, 22951 };
- { WHITE..INDENT..AtlasLocale["Gathios the Shatterer"].." ("..AtlasLocale["Paladin"]..")", NPC, 22949 };
- { WHITE..INDENT..AtlasLocale["High Nethermancer Zerevor"].." ("..AtlasLocale["Mage"]..")", NPC, 22950 };
- { WHITE..INDENT..AtlasLocale["Veras Darkshadow"].." ("..AtlasLocale["Rogue"]..")", NPC, 22952 };
- { WHITE.."11) "..AtlasLocale["Illidan Stormrage "], NPC, 22917 };
+ Acronym = AL["BT"];
+ { ORNG..AL["Reputation"]..": "..AL["Ashtongue Deathsworn"], FACTION, 1012 };
+ { BLUE.."D) "..AL["Entrance"] };
+ { WHITE.."9) "..AL["Mother Shahraz"], NPC, 22947 };
+ { WHITE.."10) "..AL["The Illidari Council"], NPC, 23426 };
+ { WHITE..INDENT..AL["Lady Malande"].." ("..AL["Priest"]..")", NPC, 22951 };
+ { WHITE..INDENT..AL["Gathios the Shatterer"].." ("..AL["Paladin"]..")", NPC, 22949 };
+ { WHITE..INDENT..AL["High Nethermancer Zerevor"].." ("..AL["Mage"]..")", NPC, 22950 };
+ { WHITE..INDENT..AL["Veras Darkshadow"].." ("..AL["Rogue"]..")", NPC, 22952 };
+ { WHITE.."11) "..AL["Illidan Stormrage "], NPC, 22917 };
};
["CFRSerpentshrineCavern"] = {
ZoneName = { BabbleZone["Serpentshrine Cavern"], 3607 };
@@ -1364,16 +1364,16 @@ AtlasLoot_MapData = {
LevelRange = "70";
MinLevel = "70";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["SC"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Cenarion Expedition"], FACTION, 942 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Hydross the Unstable "], NPC, 21216 };
- { WHITE.."2) "..AtlasLocale["The Lurker Below"], NPC, 21217 };
- { WHITE.."3) "..AtlasLocale["Leotheras the Blind"], NPC, 21215 };
- { WHITE.."4) "..AtlasLocale["Fathom-Lord Karathress"], NPC, 21214 };
- { WHITE..INDENT..AtlasLocale["Seer Olum"], NPC, 22820 };
- { WHITE.."5) "..AtlasLocale["Morogrim Tidewalker"], NPC, 21213 };
- { WHITE.."6) "..AtlasLocale["Lady Vashj "], NPC, 21212 };
+ Acronym = AL["SC"];
+ { ORNG..AL["Reputation"]..": "..AL["Cenarion Expedition"], FACTION, 942 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Hydross the Unstable "], NPC, 21216 };
+ { WHITE.."2) "..AL["The Lurker Below"], NPC, 21217 };
+ { WHITE.."3) "..AL["Leotheras the Blind"], NPC, 21215 };
+ { WHITE.."4) "..AL["Fathom-Lord Karathress"], NPC, 21214 };
+ { WHITE..INDENT..AL["Seer Olum"], NPC, 22820 };
+ { WHITE.."5) "..AL["Morogrim Tidewalker"], NPC, 21213 };
+ { WHITE.."6) "..AL["Lady Vashj "], NPC, 21212 };
};
["CFRTheSlavePens"] = {
ZoneName = { BabbleZone["The Slave Pens"], 3717 };
@@ -1381,17 +1381,17 @@ AtlasLoot_MapData = {
LevelRange = "61-69";
MinLevel = "55";
PlayerLimit = "5";
- Acronym = AtlasLocale["SP"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Cenarion Expedition"], FACTION, 942 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Reservoir Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30623 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Ahune "].." ("..AtlasLocale["Midsummer Festival"]..")", NPC, 25740 };
- { WHITE.."2) "..AtlasLocale["Mennu the Betrayer"], NPC, 17941 };
- { WHITE.."3) "..AtlasLocale["Weeder Greenthumb"], NPC, 17890 };
- { WHITE.."4) "..AtlasLocale["Skar'this the Heretic"].." ("..AtlasLocale["Heroic"]..")", NPC, 22421 };
- { WHITE.."5) "..AtlasLocale["Rokmar the Crackler"], NPC, 17991 };
- { WHITE.."6) "..AtlasLocale["Naturalist Bite"], NPC, 17893 };
- { WHITE.."7) "..AtlasLocale["Quagmirran"], NPC, 17942 };
+ Acronym = AL["SP"];
+ { ORNG..AL["Reputation"]..": "..AL["Cenarion Expedition"], FACTION, 942 };
+ { ORNG..AL["Key"]..": "..AL["Reservoir Key"].." ("..AL["Heroic"]..")", ITEM, 30623 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Ahune "].." ("..AL["Midsummer Festival"]..")", NPC, 25740 };
+ { WHITE.."2) "..AL["Mennu the Betrayer"], NPC, 17941 };
+ { WHITE.."3) "..AL["Weeder Greenthumb"], NPC, 17890 };
+ { WHITE.."4) "..AL["Skar'this the Heretic"].." ("..AL["Heroic"]..")", NPC, 22421 };
+ { WHITE.."5) "..AL["Rokmar the Crackler"], NPC, 17991 };
+ { WHITE.."6) "..AL["Naturalist Bite"], NPC, 17893 };
+ { WHITE.."7) "..AL["Quagmirran"], NPC, 17942 };
};
["CFRTheSteamvault"] = {
ZoneName = { BabbleZone["The Steamvault"], 3715 };
@@ -1399,17 +1399,17 @@ AtlasLoot_MapData = {
LevelRange = "69-70";
MinLevel = "55";
PlayerLimit = "5";
- Acronym = AtlasLocale["SV"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Cenarion Expedition"], FACTION, 942 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Reservoir Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30623 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Hydromancer Thespia"], NPC, 17797 };
- { WHITE..INDENT..AtlasLocale["Main Chambers Access Panel"] };
- { WHITE.."2) "..AtlasLocale["Arcane Container"], OBJECT, 182196 };
- { WHITE..INDENT..AtlasLocale["Second Fragment Guardian"], NPC, 22891 };
- { WHITE.."3) "..AtlasLocale["Mekgineer Steamrigger"], NPC, 17796 };
- { WHITE..INDENT..AtlasLocale["Main Chambers Access Panel"] };
- { WHITE.."4) "..AtlasLocale["Warlord Kalithresh"], NPC, 17798 };
+ Acronym = AL["SV"];
+ { ORNG..AL["Reputation"]..": "..AL["Cenarion Expedition"], FACTION, 942 };
+ { ORNG..AL["Key"]..": "..AL["Reservoir Key"].." ("..AL["Heroic"]..")", ITEM, 30623 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Hydromancer Thespia"], NPC, 17797 };
+ { WHITE..INDENT..AL["Main Chambers Access Panel"] };
+ { WHITE.."2) "..AL["Arcane Container"], OBJECT, 182196 };
+ { WHITE..INDENT..AL["Second Fragment Guardian"], NPC, 22891 };
+ { WHITE.."3) "..AL["Mekgineer Steamrigger"], NPC, 17796 };
+ { WHITE..INDENT..AL["Main Chambers Access Panel"] };
+ { WHITE.."4) "..AL["Warlord Kalithresh"], NPC, 17798 };
};
["CFRTheUnderbog"] = {
ZoneName = { BabbleZone["The Underbog"], 3716 };
@@ -1417,17 +1417,17 @@ AtlasLoot_MapData = {
LevelRange = "62-70";
MinLevel = "55";
PlayerLimit = "5";
- Acronym = AtlasLocale["UB"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Cenarion Expedition"], FACTION, 942 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Reservoir Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30623 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Hungarfen"], NPC, 17770 };
- { WHITE..INDENT..AtlasLocale["The Underspore"], OBJECT, 182054 };
- { WHITE.."2) "..AtlasLocale["Ghaz'an"], NPC, 18105 };
- { WHITE.."3) "..AtlasLocale["Earthbinder Rayge"], NPC, 17885 };
- { WHITE.."4) "..AtlasLocale["Swamplord Musel'ek"], NPC, 17826 };
- { WHITE..INDENT..AtlasLocale["Claw "], NPC, 17827 };
- { WHITE.."5) "..AtlasLocale["The Black Stalker"], NPC, 17882 };
+ Acronym = AL["UB"];
+ { ORNG..AL["Reputation"]..": "..AL["Cenarion Expedition"], FACTION, 942 };
+ { ORNG..AL["Key"]..": "..AL["Reservoir Key"].." ("..AL["Heroic"]..")", ITEM, 30623 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Hungarfen"], NPC, 17770 };
+ { WHITE..INDENT..AL["The Underspore"], OBJECT, 182054 };
+ { WHITE.."2) "..AL["Ghaz'an"], NPC, 18105 };
+ { WHITE.."3) "..AL["Earthbinder Rayge"], NPC, 17885 };
+ { WHITE.."4) "..AL["Swamplord Musel'ek"], NPC, 17826 };
+ { WHITE..INDENT..AL["Claw "], NPC, 17827 };
+ { WHITE.."5) "..AL["The Black Stalker"], NPC, 17882 };
};
["CoTBlackMorass"] = {
ZoneName = { BabbleZone["The Black Morass"], 2366 };
@@ -1435,19 +1435,19 @@ AtlasLoot_MapData = {
LevelRange = "68-70";
MinLevel = "66";
PlayerLimit = "5";
- Acronym = AtlasLocale["CoT2"];
- { PURP..AtlasLocale["Event"]..": "..AtlasLocale["Opening of the Dark Portal"] };
- { ORNG..AtlasLocale["Attunement Required"] };
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Keepers of Time"], FACTION, 989 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Key of Time"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30635 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE..INDENT..AtlasLocale["Sa'at "], NPC, 20201 };
- { ORNG.."X) "..AtlasLocale["Portal"].." ("..AtlasLocale["Spawn Point"]..")" };
- { ORNG..INDENT..AtlasLocale["Wave 6"]..": "..AtlasLocale["Chrono Lord Deja"], NPC, 17879 };
- { ORNG..INDENT..AtlasLocale["Wave 12"]..": "..AtlasLocale["Temporus"], NPC, 17880 };
- { ORNG..INDENT..AtlasLocale["Wave 18"]..": "..AtlasLocale["Aeonus"], NPC, 17881 };
- { WHITE.."1) "..AtlasLocale["The Dark Portal"] };
- { WHITE..INDENT..AtlasLocale["Medivh"], NPC, 15608 };
+ Acronym = AL["CoT2"];
+ { PURP..AL["Event"]..": "..AL["Opening of the Dark Portal"] };
+ { ORNG..AL["Attunement Required"] };
+ { ORNG..AL["Reputation"]..": "..AL["Keepers of Time"], FACTION, 989 };
+ { ORNG..AL["Key"]..": "..AL["Key of Time"].." ("..AL["Heroic"]..")", ITEM, 30635 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE..INDENT..AL["Sa'at "], NPC, 20201 };
+ { ORNG.."X) "..AL["Portal"].." ("..AL["Spawn Point"]..")" };
+ { ORNG..INDENT..AL["Wave 6"]..": "..AL["Chrono Lord Deja"], NPC, 17879 };
+ { ORNG..INDENT..AL["Wave 12"]..": "..AL["Temporus"], NPC, 17880 };
+ { ORNG..INDENT..AL["Wave 18"]..": "..AL["Aeonus"], NPC, 17881 };
+ { WHITE.."1) "..AL["The Dark Portal"] };
+ { WHITE..INDENT..AL["Medivh"], NPC, 15608 };
};
["CoTHyjal"] = {
ZoneName = { BabbleZone["Hyjal Summit"], 3606 };
@@ -1455,22 +1455,22 @@ AtlasLoot_MapData = {
LevelRange = "70";
MinLevel = "70";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["CoT3"];
- { PURP..AtlasLocale["Event"]..": "..AtlasLocale["Battle for Mount Hyjal"] };
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["The Scale of the Sands"], FACTION, 990 };
- { BLUE.."A) "..AtlasLocale["Alliance Base"] };
- { BLUE..INDENT..AtlasLocale["Lady Jaina Proudmoore"], NPC, 17772 };
- { BLUE.."B) "..AtlasLocale["Horde Encampment"] };
- { BLUE..INDENT..AtlasLocale["Thrall "], NPC, 17852 };
- { BLUE.."C) "..AtlasLocale["Night Elf Village"] };
- { BLUE..INDENT..AtlasLocale["Tyrande Whisperwind "], NPC, 7999 };
- { WHITE.."1) "..AtlasLocale["Rage Winterchill"], NPC, 17767 };
- { WHITE.."2) "..AtlasLocale["Anetheron"], NPC, 17808 };
- { WHITE.."3) "..AtlasLocale["Kaz'rogal"], NPC, 17888 };
- { WHITE.."4) "..AtlasLocale["Azgalor"], NPC, 17842 };
- { WHITE.."5) "..AtlasLocale["Archimonde"], NPC, 17968 };
- { WHITE.."?) "..AtlasLocale["Indormi "], NPC, 23437 };
- { WHITE..INDENT..AtlasLocale["Tydormu "], NPC, 23381 };
+ Acronym = AL["CoT3"];
+ { PURP..AL["Event"]..": "..AL["Battle for Mount Hyjal"] };
+ { ORNG..AL["Reputation"]..": "..AL["The Scale of the Sands"], FACTION, 990 };
+ { BLUE.."A) "..AL["Alliance Base"] };
+ { BLUE..INDENT..AL["Lady Jaina Proudmoore"], NPC, 17772 };
+ { BLUE.."B) "..AL["Horde Encampment"] };
+ { BLUE..INDENT..AL["Thrall "], NPC, 17852 };
+ { BLUE.."C) "..AL["Night Elf Village"] };
+ { BLUE..INDENT..AL["Tyrande Whisperwind "], NPC, 7999 };
+ { WHITE.."1) "..AL["Rage Winterchill"], NPC, 17767 };
+ { WHITE.."2) "..AL["Anetheron"], NPC, 17808 };
+ { WHITE.."3) "..AL["Kaz'rogal"], NPC, 17888 };
+ { WHITE.."4) "..AL["Azgalor"], NPC, 17842 };
+ { WHITE.."5) "..AL["Archimonde"], NPC, 17968 };
+ { WHITE.."?) "..AL["Indormi "], NPC, 23437 };
+ { WHITE..INDENT..AL["Tydormu "], NPC, 23381 };
};
["CoTOldHillsbrad"] = {
ZoneName = { BabbleZone["Old Hillsbrad Foothills"], 2367 };
@@ -1478,74 +1478,74 @@ AtlasLoot_MapData = {
LevelRange = "66-70";
MinLevel = "66";
PlayerLimit = "5";
- Acronym = AtlasLocale["CoT1"];
- { PURP..AtlasLocale["Event"]..": "..AtlasLocale["Escape from Durnholde Keep"] };
- { ORNG..AtlasLocale["Attunement Required"] };
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Keepers of Time"], FACTION, 989 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Key of Time"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30635 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE..INDENT..AtlasLocale["Erozion"], NPC, 18723 };
- { BLUE..INDENT..AtlasLocale["Brazen"], NPC, 18725 };
- { BLUE.."B) "..AtlasLocale["Landing Spot"] };
+ Acronym = AL["CoT1"];
+ { PURP..AL["Event"]..": "..AL["Escape from Durnholde Keep"] };
+ { ORNG..AL["Attunement Required"] };
+ { ORNG..AL["Reputation"]..": "..AL["Keepers of Time"], FACTION, 989 };
+ { ORNG..AL["Key"]..": "..AL["Key of Time"].." ("..AL["Heroic"]..")", ITEM, 30635 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE..INDENT..AL["Erozion"], NPC, 18723 };
+ { BLUE..INDENT..AL["Brazen"], NPC, 18725 };
+ { BLUE.."B) "..AL["Landing Spot"] };
{ BLUE.."C) "..BabbleSubZone["Southshore"] };
{ BLUE.."D) "..BabbleSubZone["Tarren Mill"] };
- { WHITE.."1) "..AtlasLocale["Lieutenant Drake"], NPC, 17848 };
- { WHITE.."2) "..AtlasLocale["Thrall"].." ("..AtlasLocale["Lower"]..")", NPC, 17876 };
- { WHITE.."3) "..AtlasLocale["Captain Skarloc"], NPC, 17862 };
- { WHITE..INDENT..AtlasLocale["Thrall"].." ("..AtlasLocale["Second Stop"]..")", NPC, 17876 };
- { WHITE.."4) "..AtlasLocale["Thrall"].." ("..AtlasLocale["Third Stop"]..")", NPC, 17876 };
- { WHITE.."5) "..AtlasLocale["Epoch Hunter"], NPC, 18096 };
- { WHITE..INDENT..AtlasLocale["Thrall"].." ("..AtlasLocale["Fourth Stop"]..", "..AtlasLocale["Upper"]..")", NPC, 17876 };
- { WHITE..INDENT..AtlasLocale["Taretha"].." ("..AtlasLocale["Upper"]..")", NPC, 18887 };
- { WHITE.."6) "..AtlasLocale["Jonathan Revah"], NPC, 20372 };
- { WHITE..INDENT..AtlasLocale["Jerry Carter"], NPC, 20376 };
+ { WHITE.."1) "..AL["Lieutenant Drake"], NPC, 17848 };
+ { WHITE.."2) "..AL["Thrall"].." ("..AL["Lower"]..")", NPC, 17876 };
+ { WHITE.."3) "..AL["Captain Skarloc"], NPC, 17862 };
+ { WHITE..INDENT..AL["Thrall"].." ("..AL["Second Stop"]..")", NPC, 17876 };
+ { WHITE.."4) "..AL["Thrall"].." ("..AL["Third Stop"]..")", NPC, 17876 };
+ { WHITE.."5) "..AL["Epoch Hunter"], NPC, 18096 };
+ { WHITE..INDENT..AL["Thrall"].." ("..AL["Fourth Stop"]..", "..AL["Upper"]..")", NPC, 17876 };
+ { WHITE..INDENT..AL["Taretha"].." ("..AL["Upper"]..")", NPC, 18887 };
+ { WHITE.."6) "..AL["Jonathan Revah"], NPC, 20372 };
+ { WHITE..INDENT..AL["Jerry Carter"], NPC, 20376 };
{ "" };
- { ORNG..AtlasLocale["Traveling"] };
- { WHITE..INDENT..AtlasLocale["Thomas Yance "], NPC, 18672 };
- { WHITE..INDENT..AtlasLocale["Aged Dalaran Wizard"], NPC, 18664 };
- { WHITE..INDENT..AtlasLocale["Don Carlos"], NPC, 28132 };
- { WHITE..INDENT..AtlasLocale["Guerrero"], NPC, 28163 };
+ { ORNG..AL["Traveling"] };
+ { WHITE..INDENT..AL["Thomas Yance "], NPC, 18672 };
+ { WHITE..INDENT..AL["Aged Dalaran Wizard"], NPC, 18664 };
+ { WHITE..INDENT..AL["Don Carlos"], NPC, 28132 };
+ { WHITE..INDENT..AL["Guerrero"], NPC, 28163 };
{ "" };
{ ORNG..BabbleSubZone["Southshore"] };
- { WHITE..INDENT..AtlasLocale["Kel'Thuzad "], NPC, 20350 };
- { WHITE..INDENT..AtlasLocale["Helcular"], NPC, 20353 };
- { WHITE..INDENT..AtlasLocale["Farmer Kent"], NPC, 20368 };
- { WHITE..INDENT..AtlasLocale["Sally Whitemane"], NPC, 20357 };
- { WHITE..INDENT..AtlasLocale["Renault Mograine"], NPC, 20358 };
- { WHITE..INDENT..AtlasLocale["Little Jimmy Vishas"], NPC, 20359 };
- { WHITE..INDENT..AtlasLocale["Herod the Bully"], NPC, 20360 };
- { WHITE..INDENT..AtlasLocale["Nat Pagle"], NPC, 20344 };
- { WHITE..INDENT..AtlasLocale["Hal McAllister"], NPC, 20342 };
- { WHITE..INDENT..AtlasLocale["Zixil "], NPC, 20419 };
- { WHITE..INDENT..AtlasLocale["Overwatch Mark 0 "], NPC, 20420 };
+ { WHITE..INDENT..AL["Kel'Thuzad "], NPC, 20350 };
+ { WHITE..INDENT..AL["Helcular"], NPC, 20353 };
+ { WHITE..INDENT..AL["Farmer Kent"], NPC, 20368 };
+ { WHITE..INDENT..AL["Sally Whitemane"], NPC, 20357 };
+ { WHITE..INDENT..AL["Renault Mograine"], NPC, 20358 };
+ { WHITE..INDENT..AL["Little Jimmy Vishas"], NPC, 20359 };
+ { WHITE..INDENT..AL["Herod the Bully"], NPC, 20360 };
+ { WHITE..INDENT..AL["Nat Pagle"], NPC, 20344 };
+ { WHITE..INDENT..AL["Hal McAllister"], NPC, 20342 };
+ { WHITE..INDENT..AL["Zixil "], NPC, 20419 };
+ { WHITE..INDENT..AL["Overwatch Mark 0 "], NPC, 20420 };
{ "" };
- { ORNG..AtlasLocale["Southshore Inn"] };
- { WHITE..INDENT..AtlasLocale["Captain Edward Hanes"], NPC, 20400 };
- { WHITE..INDENT..AtlasLocale["Captain Sanders"], NPC, 20351 };
- { WHITE..INDENT..AtlasLocale["Commander Mograine"], NPC, 20345 };
- { WHITE..INDENT..AtlasLocale["Isillien"], NPC, 20346 };
- { WHITE..INDENT..AtlasLocale["Abbendis"], NPC, 20347 };
- { WHITE..INDENT..AtlasLocale["Fairbanks"], NPC, 20348 };
- { WHITE..INDENT..AtlasLocale["Tirion Fordring"], NPC, 20349 };
- { WHITE..INDENT..AtlasLocale["Arcanist Doan"], NPC, 20352 };
- { WHITE..INDENT..AtlasLocale["Taelan"].." ("..AtlasLocale["Upper"]..")", NPC, 20361 };
- { WHITE..INDENT..AtlasLocale["Barkeep Kelly "], NPC, 20377 };
- { WHITE..INDENT..AtlasLocale["Frances Lin "], NPC, 20401 };
- { WHITE..INDENT..AtlasLocale["Chef Jessen "], NPC, 20378 };
- { WHITE..INDENT..AtlasLocale["Stalvan Mistmantle"].." ("..AtlasLocale["Upper"]..")", NPC, 20355 };
- { WHITE..INDENT..AtlasLocale["Phin Odelic "].." ("..AtlasLocale["Upper"]..")", NPC, 20370 };
+ { ORNG..AL["Southshore Inn"] };
+ { WHITE..INDENT..AL["Captain Edward Hanes"], NPC, 20400 };
+ { WHITE..INDENT..AL["Captain Sanders"], NPC, 20351 };
+ { WHITE..INDENT..AL["Commander Mograine"], NPC, 20345 };
+ { WHITE..INDENT..AL["Isillien"], NPC, 20346 };
+ { WHITE..INDENT..AL["Abbendis"], NPC, 20347 };
+ { WHITE..INDENT..AL["Fairbanks"], NPC, 20348 };
+ { WHITE..INDENT..AL["Tirion Fordring"], NPC, 20349 };
+ { WHITE..INDENT..AL["Arcanist Doan"], NPC, 20352 };
+ { WHITE..INDENT..AL["Taelan"].." ("..AL["Upper"]..")", NPC, 20361 };
+ { WHITE..INDENT..AL["Barkeep Kelly "], NPC, 20377 };
+ { WHITE..INDENT..AL["Frances Lin "], NPC, 20401 };
+ { WHITE..INDENT..AL["Chef Jessen "], NPC, 20378 };
+ { WHITE..INDENT..AL["Stalvan Mistmantle"].." ("..AL["Upper"]..")", NPC, 20355 };
+ { WHITE..INDENT..AL["Phin Odelic "].." ("..AL["Upper"]..")", NPC, 20370 };
{ "" };
{ ORNG..BabbleSubZone["Southshore Town Hall"] };
- { WHITE..INDENT..AtlasLocale["Magistrate Henry Maleb"], NPC, 20373 };
- { WHITE..INDENT..AtlasLocale["Raleigh the True"], NPC, 20380 };
- { WHITE..INDENT..AtlasLocale["Nathanos Marris"], NPC, 20354 };
- { WHITE..INDENT..AtlasLocale["Bilger the Straight-laced"], NPC, 20379 };
+ { WHITE..INDENT..AL["Magistrate Henry Maleb"], NPC, 20373 };
+ { WHITE..INDENT..AL["Raleigh the True"], NPC, 20380 };
+ { WHITE..INDENT..AL["Nathanos Marris"], NPC, 20354 };
+ { WHITE..INDENT..AL["Bilger the Straight-laced"], NPC, 20379 };
{ "" };
{ ORNG..BabbleSubZone["Tarren Mill"] };
- { WHITE..INDENT..AtlasLocale["Innkeeper Monica"], NPC, 18649 };
- { WHITE..INDENT..AtlasLocale["Julie Honeywell"], NPC, 18656 };
- { WHITE..INDENT..AtlasLocale["Jay Lemieux"], NPC, 18655 };
- { WHITE..INDENT..AtlasLocale["Young Blanchy"], NPC, 18651 };
+ { WHITE..INDENT..AL["Innkeeper Monica"], NPC, 18649 };
+ { WHITE..INDENT..AL["Julie Honeywell"], NPC, 18656 };
+ { WHITE..INDENT..AL["Jay Lemieux"], NPC, 18655 };
+ { WHITE..INDENT..AL["Young Blanchy"], NPC, 18651 };
};
["GruulsLair"] = {
ZoneName = { BabbleZone["Gruul's Lair"], 3618 };
@@ -1553,14 +1553,14 @@ AtlasLoot_MapData = {
LevelRange = "70";
MinLevel = "65";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["GL"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["High King Maulgar "], NPC, 18831 };
- { WHITE..INDENT..AtlasLocale["Kiggler the Crazed"].." ("..AtlasLocale["Shaman"]..")", NPC, 18835 };
- { WHITE..INDENT..AtlasLocale["Blindeye the Seer"].." ("..AtlasLocale["Priest"]..")", NPC, 18836 };
- { WHITE..INDENT..AtlasLocale["Olm the Summoner"].." ("..AtlasLocale["Warlock"]..")", NPC, 18834 };
- { WHITE..INDENT..AtlasLocale["Krosh Firehand"].." ("..AtlasLocale["Mage"]..")", NPC, 18832 };
- { WHITE.."2) "..AtlasLocale["Gruul the Dragonkiller"], NPC, 19044 };
+ Acronym = AL["GL"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["High King Maulgar "], NPC, 18831 };
+ { WHITE..INDENT..AL["Kiggler the Crazed"].." ("..AL["Shaman"]..")", NPC, 18835 };
+ { WHITE..INDENT..AL["Blindeye the Seer"].." ("..AL["Priest"]..")", NPC, 18836 };
+ { WHITE..INDENT..AL["Olm the Summoner"].." ("..AL["Warlock"]..")", NPC, 18834 };
+ { WHITE..INDENT..AL["Krosh Firehand"].." ("..AL["Mage"]..")", NPC, 18832 };
+ { WHITE.."2) "..AL["Gruul the Dragonkiller"], NPC, 19044 };
};
["HCBloodFurnace"] = {
ZoneName = { BabbleZone["The Blood Furnace"], 3713 };
@@ -1568,14 +1568,14 @@ AtlasLoot_MapData = {
LevelRange = "60-68";
MinLevel = "55";
PlayerLimit = "5";
- Acronym = AtlasLocale["BF"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Thrallmar"].." ("..AtlasLocale["Horde"]..")", FACTION, 947 };
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Honor Hold"].." ("..AtlasLocale["Alliance"]..")", FACTION, 946 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Flamewrought Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30637 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["The Maker"], NPC, 17381 };
- { WHITE.."2) "..AtlasLocale["Broggok"], NPC, 17380 };
- { WHITE.."3) "..AtlasLocale["Keli'dan the Breaker"], NPC, 17377 };
+ Acronym = AL["BF"];
+ { ORNG..AL["Reputation"]..": "..AL["Thrallmar"].." ("..AL["Horde"]..")", FACTION, 947 };
+ { ORNG..AL["Reputation"]..": "..AL["Honor Hold"].." ("..AL["Alliance"]..")", FACTION, 946 };
+ { ORNG..AL["Key"]..": "..AL["Flamewrought Key"].." ("..AL["Heroic"]..")", ITEM, 30637 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["The Maker"], NPC, 17381 };
+ { WHITE.."2) "..AL["Broggok"], NPC, 17380 };
+ { WHITE.."3) "..AL["Keli'dan the Breaker"], NPC, 17377 };
};
["HCHellfireRamparts"] = {
ZoneName = { BabbleZone["Hellfire Ramparts"], 3562 };
@@ -1583,16 +1583,16 @@ AtlasLoot_MapData = {
LevelRange = "59-67";
MinLevel = "55";
PlayerLimit = "5";
- Acronym = AtlasLocale["Ramp"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Thrallmar"].." ("..AtlasLocale["Horde"]..")", FACTION, 947 };
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Honor Hold"].." ("..AtlasLocale["Alliance"]..")", FACTION, 946 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Flamewrought Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30637 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Watchkeeper Gargolmar"], NPC, 17306 };
- { WHITE.."2) "..AtlasLocale["Omor the Unscarred"], NPC, 17308 };
- { WHITE.."3) "..AtlasLocale["Vazruden"], NPC, 17537 };
- { WHITE..INDENT..AtlasLocale["Nazan "], NPC, 17536 };
- { WHITE..INDENT..AtlasLocale["Reinforced Fel Iron Chest"], OBJECT, 185168 };
+ Acronym = AL["Ramp"];
+ { ORNG..AL["Reputation"]..": "..AL["Thrallmar"].." ("..AL["Horde"]..")", FACTION, 947 };
+ { ORNG..AL["Reputation"]..": "..AL["Honor Hold"].." ("..AL["Alliance"]..")", FACTION, 946 };
+ { ORNG..AL["Key"]..": "..AL["Flamewrought Key"].." ("..AL["Heroic"]..")", ITEM, 30637 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Watchkeeper Gargolmar"], NPC, 17306 };
+ { WHITE.."2) "..AL["Omor the Unscarred"], NPC, 17308 };
+ { WHITE.."3) "..AL["Vazruden"], NPC, 17537 };
+ { WHITE..INDENT..AL["Nazan "], NPC, 17536 };
+ { WHITE..INDENT..AL["Reinforced Fel Iron Chest"], OBJECT, 185168 };
};
["HCMagtheridonsLair"] = {
ZoneName = { BabbleZone["Magtheridon's Lair"], 3836 };
@@ -1600,9 +1600,9 @@ AtlasLoot_MapData = {
LevelRange = "70";
MinLevel = "65";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["Mag"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Magtheridon"], NPC, 17257 };
+ Acronym = AL["Mag"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Magtheridon"], NPC, 17257 };
};
["HCTheShatteredHalls"] = {
ZoneName = { BabbleZone["The Shattered Halls"], 3714 };
@@ -1610,112 +1610,112 @@ AtlasLoot_MapData = {
LevelRange = "69-70";
MinLevel = "55";
PlayerLimit = "5";
- Acronym = AtlasLocale["SH"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Thrallmar"].." ("..AtlasLocale["Horde"]..")", FACTION, 947 };
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Honor Hold"].." ("..AtlasLocale["Alliance"]..")", FACTION, 946 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Shattered Halls Key"], ITEM, 28395 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Flamewrought Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30637 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Randy Whizzlesprocket"].." ("..AtlasLocale["Alliance"]..", "..AtlasLocale["Heroic"]..")", NPC, 17288 };
- { WHITE..INDENT..AtlasLocale["Drisella"].." ("..AtlasLocale["Horde"]..", "..AtlasLocale["Heroic"]..")", NPC, 17294 };
- { WHITE.."2) "..AtlasLocale["Grand Warlock Nethekurse"], NPC, 16807 };
- { WHITE.."3) "..AtlasLocale["Blood Guard Porung"].." ("..AtlasLocale["Heroic"]..")", NPC, 20923 };
- { WHITE.."4) "..AtlasLocale["Warbringer O'mrogg"], NPC, 16809 };
- { WHITE.."5) "..AtlasLocale["Warchief Kargath Bladefist"], NPC, 16808 };
- { WHITE..INDENT..AtlasLocale["Shattered Hand Executioner"].." ("..AtlasLocale["Heroic"]..")", NPC, 17301 };
- { WHITE..INDENT..AtlasLocale["Private Jacint"].." ("..AtlasLocale["Alliance"]..", "..AtlasLocale["Heroic"]..")", NPC, 17292 };
- { WHITE..INDENT..AtlasLocale["Rifleman Brownbeard"].." ("..AtlasLocale["Alliance"]..", "..AtlasLocale["Heroic"]..")", NPC, 17289 };
- { WHITE..INDENT..AtlasLocale["Captain Alina"].." ("..AtlasLocale["Alliance"]..", "..AtlasLocale["Heroic"]..")", NPC, 17290 };
- { WHITE..INDENT..AtlasLocale["Scout Orgarr"].." ("..AtlasLocale["Horde"]..", "..AtlasLocale["Heroic"]..")", NPC, 17297 };
- { WHITE..INDENT..AtlasLocale["Korag Proudmane"].." ("..AtlasLocale["Horde"]..", "..AtlasLocale["Heroic"]..")", NPC, 17295 };
- { WHITE..INDENT..AtlasLocale["Captain Boneshatter"].." ("..AtlasLocale["Horde"]..", "..AtlasLocale["Heroic"]..")", NPC, 17296 };
+ Acronym = AL["SH"];
+ { ORNG..AL["Reputation"]..": "..AL["Thrallmar"].." ("..AL["Horde"]..")", FACTION, 947 };
+ { ORNG..AL["Reputation"]..": "..AL["Honor Hold"].." ("..AL["Alliance"]..")", FACTION, 946 };
+ { ORNG..AL["Key"]..": "..AL["Shattered Halls Key"], ITEM, 28395 };
+ { ORNG..AL["Key"]..": "..AL["Flamewrought Key"].." ("..AL["Heroic"]..")", ITEM, 30637 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Randy Whizzlesprocket"].." ("..AL["Alliance"]..", "..AL["Heroic"]..")", NPC, 17288 };
+ { WHITE..INDENT..AL["Drisella"].." ("..AL["Horde"]..", "..AL["Heroic"]..")", NPC, 17294 };
+ { WHITE.."2) "..AL["Grand Warlock Nethekurse"], NPC, 16807 };
+ { WHITE.."3) "..AL["Blood Guard Porung"].." ("..AL["Heroic"]..")", NPC, 20923 };
+ { WHITE.."4) "..AL["Warbringer O'mrogg"], NPC, 16809 };
+ { WHITE.."5) "..AL["Warchief Kargath Bladefist"], NPC, 16808 };
+ { WHITE..INDENT..AL["Shattered Hand Executioner"].." ("..AL["Heroic"]..")", NPC, 17301 };
+ { WHITE..INDENT..AL["Private Jacint"].." ("..AL["Alliance"]..", "..AL["Heroic"]..")", NPC, 17292 };
+ { WHITE..INDENT..AL["Rifleman Brownbeard"].." ("..AL["Alliance"]..", "..AL["Heroic"]..")", NPC, 17289 };
+ { WHITE..INDENT..AL["Captain Alina"].." ("..AL["Alliance"]..", "..AL["Heroic"]..")", NPC, 17290 };
+ { WHITE..INDENT..AL["Scout Orgarr"].." ("..AL["Horde"]..", "..AL["Heroic"]..")", NPC, 17297 };
+ { WHITE..INDENT..AL["Korag Proudmane"].." ("..AL["Horde"]..", "..AL["Heroic"]..")", NPC, 17295 };
+ { WHITE..INDENT..AL["Captain Boneshatter"].." ("..AL["Horde"]..", "..AL["Heroic"]..")", NPC, 17296 };
};
["KarazhanStart"] = {
- ZoneName = { BabbleZone["Karazhan"].." [A] ("..AtlasLocale["Start"]..")", 2562 };
+ ZoneName = { BabbleZone["Karazhan"].." [A] ("..AL["Start"]..")", 2562 };
Location = { BabbleZone["Deadwind Pass"], 41 };
LevelRange = "70";
MinLevel = "68";
PlayerLimit = "5";
- Acronym = AtlasLocale["Kara"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["The Violet Eye"], FACTION, 967 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["The Master's Key"], ITEM, 24490 };
- { BLUE.."A) "..AtlasLocale["Entrance"].." ("..AtlasLocale["Front"]..")" };
- { BLUE.."B) "..AtlasLocale["Staircase to the Ballroom"].." ("..AtlasLocale["Moroes "]..")" };
- { BLUE.."C) "..AtlasLocale["Stairs to Upper Stable"] };
- { BLUE.."D) "..AtlasLocale["Ramp to the Guest Chambers"].." ("..AtlasLocale["Maiden of Virtue"]..")" };
- { BLUE.."E) "..AtlasLocale["Stairs to Opera House Orchestra Level"] };
- { BLUE.."F) "..AtlasLocale["Ramp from Mezzanine to Balcony"] };
- { BLUE.."G) "..AtlasLocale["Entrance"].." ("..AtlasLocale["Back"]..")" };
- { BLUE.."H) "..AtlasLocale["Connection to Master's Terrace"].." ("..AtlasLocale["Nightbane"]..")" };
- { BLUE.."I) "..AtlasLocale["Path to the Broken Stairs"] };
- { WHITE.."1) "..AtlasLocale["Hastings "], NPC, 16169 };
- { WHITE.."2) "..AtlasLocale["Servant Quarters"] };
- { WHITE..INDENT..AtlasLocale["Hyakiss the Lurker"].." ("..AtlasLocale["Rare"]..", "..AtlasLocale["Random"]..")", NPC, 16179 };
- { WHITE..INDENT..AtlasLocale["Rokad the Ravager"].." ("..AtlasLocale["Rare"]..", "..AtlasLocale["Random"]..")", NPC, 16181 };
- { WHITE..INDENT..AtlasLocale["Shadikith the Glider"].." ("..AtlasLocale["Rare"]..", "..AtlasLocale["Random"]..")", NPC, 16180 };
- { WHITE.."3) "..AtlasLocale["Berthold "], NPC, 16153 };
- { WHITE.."4) "..AtlasLocale["Calliard "], NPC, 16159 };
- { WHITE.."5) "..AtlasLocale["Attumen the Huntsman"], NPC, 15550 };
- { WHITE..INDENT..AtlasLocale["Midnight"], NPC, 16151 };
- { WHITE.."6) "..AtlasLocale["Koren "], NPC, 16388 };
- { WHITE.."7) "..AtlasLocale["Moroes "], NPC, 15687 };
- { WHITE..INDENT..AtlasLocale["Baroness Dorothea Millstipe"].." ("..AtlasLocale["Random"]..", "..AtlasLocale["Shadow Priest"]..")", NPC, 19875 };
- { WHITE..INDENT..AtlasLocale["Lady Catriona Von'Indi"].." ("..AtlasLocale["Random"]..", "..AtlasLocale["Holy Priest"]..")", NPC, 19872 };
- { WHITE..INDENT..AtlasLocale["Lady Keira Berrybuck"].." ("..AtlasLocale["Random"]..", "..AtlasLocale["Holy Paladin"]..")", NPC, 17007 };
- { WHITE..INDENT..AtlasLocale["Baron Rafe Dreuger"].." ("..AtlasLocale["Random"]..", "..AtlasLocale["Retribution Paladin"]..")", NPC, 19874 };
- { WHITE..INDENT..AtlasLocale["Lord Robin Daris"].." ("..AtlasLocale["Random"]..", "..AtlasLocale["Arms Warrior"]..")", NPC, 19876 };
- { WHITE..INDENT..AtlasLocale["Lord Crispin Ference"].." ("..AtlasLocale["Random"]..", "..AtlasLocale["Protection Warrior"]..")", NPC, 19873 };
- { WHITE.."8) "..AtlasLocale["Bennett "], NPC, 16426 };
- { WHITE.."9) "..AtlasLocale["Ebonlocke "], NPC, 16806 };
- { WHITE.."10) "..AtlasLocale["Keanna's Log"], OBJECT, 182199 };
- { WHITE.."11) "..AtlasLocale["Maiden of Virtue"], NPC, 16457 };
- { WHITE.."12) "..AtlasLocale["Sebastian "], NPC, 16811 };
- { WHITE.."13) "..AtlasLocale["Barnes "], NPC, 16812 };
- { WHITE.."14) "..AtlasLocale["The Opera Event"] };
- { WHITE..INDENT..AtlasLocale["Red Riding Hood"].." ("..AtlasLocale["Random"]..")" };
- { WHITE..INDENT..INDENT..AtlasLocale["The Big Bad Wolf"], NPC, 17521 };
- { WHITE..INDENT..AtlasLocale["Wizard of Oz"].." ("..AtlasLocale["Random"]..")" };
- { WHITE..INDENT..INDENT..AtlasLocale["Dorothee"], NPC, 17535 };
- { WHITE..INDENT..INDENT..AtlasLocale["Tito"], NPC, 17548 };
- { WHITE..INDENT..INDENT..AtlasLocale["Strawman"], NPC, 17543 };
- { WHITE..INDENT..INDENT..AtlasLocale["Tinhead"], NPC, 17547 };
- { WHITE..INDENT..INDENT..AtlasLocale["Roar"], NPC, 17546 };
- { WHITE..INDENT..INDENT..AtlasLocale["The Crone"], NPC, 18168 };
- { WHITE..INDENT..AtlasLocale["Romulo and Julianne"].." ("..AtlasLocale["Random"]..")" };
- { WHITE..INDENT..INDENT..AtlasLocale["Romulo"], NPC, 17533 };
- { WHITE..INDENT..INDENT..AtlasLocale["Julianne"], NPC, 17534 };
- { WHITE.."15) "..AtlasLocale["The Master's Terrace"] };
- { WHITE..INDENT..AtlasLocale["Nightbane"].." ("..AtlasLocale["Summon"]..")", NPC, 17225 };
+ Acronym = AL["Kara"];
+ { ORNG..AL["Reputation"]..": "..AL["The Violet Eye"], FACTION, 967 };
+ { ORNG..AL["Key"]..": "..AL["The Master's Key"], ITEM, 24490 };
+ { BLUE.."A) "..AL["Entrance"].." ("..AL["Front"]..")" };
+ { BLUE.."B) "..AL["Staircase to the Ballroom"].." ("..AL["Moroes "]..")" };
+ { BLUE.."C) "..AL["Stairs to Upper Stable"] };
+ { BLUE.."D) "..AL["Ramp to the Guest Chambers"].." ("..AL["Maiden of Virtue"]..")" };
+ { BLUE.."E) "..AL["Stairs to Opera House Orchestra Level"] };
+ { BLUE.."F) "..AL["Ramp from Mezzanine to Balcony"] };
+ { BLUE.."G) "..AL["Entrance"].." ("..AL["Back"]..")" };
+ { BLUE.."H) "..AL["Connection to Master's Terrace"].." ("..AL["Nightbane"]..")" };
+ { BLUE.."I) "..AL["Path to the Broken Stairs"] };
+ { WHITE.."1) "..AL["Hastings "], NPC, 16169 };
+ { WHITE.."2) "..AL["Servant Quarters"] };
+ { WHITE..INDENT..AL["Hyakiss the Lurker"].." ("..AL["Rare"]..", "..AL["Random"]..")", NPC, 16179 };
+ { WHITE..INDENT..AL["Rokad the Ravager"].." ("..AL["Rare"]..", "..AL["Random"]..")", NPC, 16181 };
+ { WHITE..INDENT..AL["Shadikith the Glider"].." ("..AL["Rare"]..", "..AL["Random"]..")", NPC, 16180 };
+ { WHITE.."3) "..AL["Berthold "], NPC, 16153 };
+ { WHITE.."4) "..AL["Calliard "], NPC, 16159 };
+ { WHITE.."5) "..AL["Attumen the Huntsman"], NPC, 15550 };
+ { WHITE..INDENT..AL["Midnight"], NPC, 16151 };
+ { WHITE.."6) "..AL["Koren "], NPC, 16388 };
+ { WHITE.."7) "..AL["Moroes "], NPC, 15687 };
+ { WHITE..INDENT..AL["Baroness Dorothea Millstipe"].." ("..AL["Random"]..", "..AL["Shadow Priest"]..")", NPC, 19875 };
+ { WHITE..INDENT..AL["Lady Catriona Von'Indi"].." ("..AL["Random"]..", "..AL["Holy Priest"]..")", NPC, 19872 };
+ { WHITE..INDENT..AL["Lady Keira Berrybuck"].." ("..AL["Random"]..", "..AL["Holy Paladin"]..")", NPC, 17007 };
+ { WHITE..INDENT..AL["Baron Rafe Dreuger"].." ("..AL["Random"]..", "..AL["Retribution Paladin"]..")", NPC, 19874 };
+ { WHITE..INDENT..AL["Lord Robin Daris"].." ("..AL["Random"]..", "..AL["Arms Warrior"]..")", NPC, 19876 };
+ { WHITE..INDENT..AL["Lord Crispin Ference"].." ("..AL["Random"]..", "..AL["Protection Warrior"]..")", NPC, 19873 };
+ { WHITE.."8) "..AL["Bennett "], NPC, 16426 };
+ { WHITE.."9) "..AL["Ebonlocke "], NPC, 16806 };
+ { WHITE.."10) "..AL["Keanna's Log"], OBJECT, 182199 };
+ { WHITE.."11) "..AL["Maiden of Virtue"], NPC, 16457 };
+ { WHITE.."12) "..AL["Sebastian "], NPC, 16811 };
+ { WHITE.."13) "..AL["Barnes "], NPC, 16812 };
+ { WHITE.."14) "..AL["The Opera Event"] };
+ { WHITE..INDENT..AL["Red Riding Hood"].." ("..AL["Random"]..")" };
+ { WHITE..INDENT..INDENT..AL["The Big Bad Wolf"], NPC, 17521 };
+ { WHITE..INDENT..AL["Wizard of Oz"].." ("..AL["Random"]..")" };
+ { WHITE..INDENT..INDENT..AL["Dorothee"], NPC, 17535 };
+ { WHITE..INDENT..INDENT..AL["Tito"], NPC, 17548 };
+ { WHITE..INDENT..INDENT..AL["Strawman"], NPC, 17543 };
+ { WHITE..INDENT..INDENT..AL["Tinhead"], NPC, 17547 };
+ { WHITE..INDENT..INDENT..AL["Roar"], NPC, 17546 };
+ { WHITE..INDENT..INDENT..AL["The Crone"], NPC, 18168 };
+ { WHITE..INDENT..AL["Romulo and Julianne"].." ("..AL["Random"]..")" };
+ { WHITE..INDENT..INDENT..AL["Romulo"], NPC, 17533 };
+ { WHITE..INDENT..INDENT..AL["Julianne"], NPC, 17534 };
+ { WHITE.."15) "..AL["The Master's Terrace"] };
+ { WHITE..INDENT..AL["Nightbane"].." ("..AL["Summon"]..")", NPC, 17225 };
};
["KarazhanEnd"] = {
- ZoneName = { BabbleZone["Karazhan"].." [B] ("..AtlasLocale["End"]..")", 2562 };
+ ZoneName = { BabbleZone["Karazhan"].." [B] ("..AL["End"]..")", 2562 };
Location = { BabbleZone["Deadwind Pass"], 41 };
LevelRange = "70";
MinLevel = "68";
PlayerLimit = "5";
- Acronym = AtlasLocale["Kara"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["The Violet Eye"], FACTION, 967 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["The Master's Key"], ITEM, 24490 };
- { BLUE.."I) "..AtlasLocale["Path to the Broken Stairs"] };
- { BLUE.."J) "..AtlasLocale["Broken Stairs"] };
- { BLUE.."K) "..AtlasLocale["Ramp to Guardian's Library"].." ("..AtlasLocale["Shade of Aran"]..")" };
- { BLUE.."L) "..AtlasLocale["Suspicious Bookshelf"].." ("..AtlasLocale["Terestian Illhoof"]..")" };
- { BLUE.."M) "..AtlasLocale["Ramp up to the Celestial Watch"].." ("..AtlasLocale["Netherspite"]..")" };
- { BLUE..INDENT..AtlasLocale["Ramp down to the Gamesman's Hall"].." ("..AtlasLocale["Chess Event"]..")" };
- { BLUE.."N) "..AtlasLocale["Ramp to Medivh's Chamber"] };
- { BLUE.."O) "..AtlasLocale["Spiral Stairs to Netherspace"].." ("..AtlasLocale["Prince Malchezaar"]..")" };
- { WHITE.."16) "..AtlasLocale["The Curator"], NPC, 15691 };
- { WHITE.."17) "..AtlasLocale["Wravien "], NPC, 16813 };
- { WHITE.."18) "..AtlasLocale["Gradav "], NPC, 16814 };
- { WHITE.."19) "..AtlasLocale["Kamsis "], NPC, 16815 };
- { WHITE.."20) "..AtlasLocale["Terestian Illhoof"], NPC, 15688 };
- { WHITE..INDENT..AtlasLocale["Kil'rek"].." ("..AtlasLocale["Imp"]..")", NPC, 17229 };
- { WHITE.."21) "..AtlasLocale["Shade of Aran"], NPC, 16524 };
- { WHITE.."22) "..AtlasLocale["Netherspite"], NPC, 15689 };
- { WHITE.."23) "..AtlasLocale["Ythyar"].." ("..AtlasLocale["Repair"]..", "..AtlasLocale["Rewards"]..")", NPC, 17518 };
- { WHITE.."24) "..AtlasLocale["Echo of Medivh"], NPC, 16816 };
- { WHITE.."25) "..AtlasLocale["Dust Covered Chest"].." ("..AtlasLocale["Chess Event"]..")", OBJECT, 185119 };
- { WHITE.."26) "..AtlasLocale["Prince Malchezaar"], NPC, 15690 };
+ Acronym = AL["Kara"];
+ { ORNG..AL["Reputation"]..": "..AL["The Violet Eye"], FACTION, 967 };
+ { ORNG..AL["Key"]..": "..AL["The Master's Key"], ITEM, 24490 };
+ { BLUE.."I) "..AL["Path to the Broken Stairs"] };
+ { BLUE.."J) "..AL["Broken Stairs"] };
+ { BLUE.."K) "..AL["Ramp to Guardian's Library"].." ("..AL["Shade of Aran"]..")" };
+ { BLUE.."L) "..AL["Suspicious Bookshelf"].." ("..AL["Terestian Illhoof"]..")" };
+ { BLUE.."M) "..AL["Ramp up to the Celestial Watch"].." ("..AL["Netherspite"]..")" };
+ { BLUE..INDENT..AL["Ramp down to the Gamesman's Hall"].." ("..AL["Chess Event"]..")" };
+ { BLUE.."N) "..AL["Ramp to Medivh's Chamber"] };
+ { BLUE.."O) "..AL["Spiral Stairs to Netherspace"].." ("..AL["Prince Malchezaar"]..")" };
+ { WHITE.."16) "..AL["The Curator"], NPC, 15691 };
+ { WHITE.."17) "..AL["Wravien "], NPC, 16813 };
+ { WHITE.."18) "..AL["Gradav "], NPC, 16814 };
+ { WHITE.."19) "..AL["Kamsis "], NPC, 16815 };
+ { WHITE.."20) "..AL["Terestian Illhoof"], NPC, 15688 };
+ { WHITE..INDENT..AL["Kil'rek"].." ("..AL["Imp"]..")", NPC, 17229 };
+ { WHITE.."21) "..AL["Shade of Aran"], NPC, 16524 };
+ { WHITE.."22) "..AL["Netherspite"], NPC, 15689 };
+ { WHITE.."23) "..AL["Ythyar"].." ("..AL["Repair"]..", "..AL["Rewards"]..")", NPC, 17518 };
+ { WHITE.."24) "..AL["Echo of Medivh"], NPC, 16816 };
+ { WHITE.."25) "..AL["Dust Covered Chest"].." ("..AL["Chess Event"]..")", OBJECT, 185119 };
+ { WHITE.."26) "..AL["Prince Malchezaar"], NPC, 15690 };
};
["MagistersTerrace"] = {
ZoneName = { BabbleZone["Magisters' Terrace"], 4095 };
@@ -1723,27 +1723,27 @@ AtlasLoot_MapData = {
LevelRange = "70";
MinLevel = "68";
PlayerLimit = "5";
- Acronym = AtlasLocale["MaT"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["Shattered Sun Offensive"], FACTION, 1077 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Selin Fireheart"], NPC, 24723 };
- { WHITE..INDENT..AtlasLocale["Fel Crystals"], NPC, 24722 };
- { WHITE.."2) "..AtlasLocale["Tyrith"], NPC, 24822 };
- { WHITE.."3) "..AtlasLocale["Vexallus"], NPC, 24744 };
- { WHITE.."4) "..AtlasLocale["Scrying Orb"] };
- { WHITE..INDENT..AtlasLocale["Kalecgos"], NPC, 24850 };
- { WHITE.."5) "..AtlasLocale["Priestess Delrissa"].." ("..AtlasLocale["Lower"]..")", NPC, 24560 };
- { WHITE..INDENT..AtlasLocale["Apoko"].." ("..AtlasLocale["Lower"]..", "..AtlasLocale["Random"]..", "..AtlasLocale["Shaman"]..")", NPC, 24553 };
- { WHITE..INDENT..AtlasLocale["Eramas Brightblaze"].." ("..AtlasLocale["Lower"]..", "..AtlasLocale["Random"]..", "..AtlasLocale["Monk"]..")", NPC, 24554 };
- { WHITE..INDENT..AtlasLocale["Ellrys Duskhallow"].." ("..AtlasLocale["Lower"]..", "..AtlasLocale["Random"]..", "..AtlasLocale["Warlock"]..")", NPC, 24558 };
- { WHITE..INDENT..INDENT..AtlasLocale["Fizzle"].." ("..AtlasLocale["Lower"]..", "..AtlasLocale["Random"]..")", NPC, 24656 };
- { WHITE..INDENT..AtlasLocale["Garaxxas"].." ("..AtlasLocale["Lower"]..", "..AtlasLocale["Random"]..", "..AtlasLocale["Hunter"]..")", NPC, 24555 };
- { WHITE..INDENT..INDENT..AtlasLocale["Sliver "].." ("..AtlasLocale["Lower"]..", "..AtlasLocale["Random"]..")", NPC, 24552 };
- { WHITE..INDENT..AtlasLocale["Kagani Nightstrike"].." ("..AtlasLocale["Lower"]..", "..AtlasLocale["Random"]..", "..AtlasLocale["Rogue"]..")", NPC, 24557 };
- { WHITE..INDENT..AtlasLocale["Warlord Salaris"].." ("..AtlasLocale["Lower"]..", "..AtlasLocale["Random"]..", "..AtlasLocale["Warrior"]..")", NPC, 24559 };
- { WHITE..INDENT..AtlasLocale["Yazzai"].." ("..AtlasLocale["Lower"]..", "..AtlasLocale["Random"]..", "..AtlasLocale["Mage"]..")", NPC, 24561 };
- { WHITE..INDENT..AtlasLocale["Zelfan"].." ("..AtlasLocale["Lower"]..", "..AtlasLocale["Random"]..", "..AtlasLocale["Engineer"]..")", NPC, 24556 };
- { WHITE.."6) "..AtlasLocale["Kael'thas Sunstrider "], NPC, 24664 };
+ Acronym = AL["MaT"];
+ { ORNG..AL["Reputation"]..": "..AL["Shattered Sun Offensive"], FACTION, 1077 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Selin Fireheart"], NPC, 24723 };
+ { WHITE..INDENT..AL["Fel Crystals"], NPC, 24722 };
+ { WHITE.."2) "..AL["Tyrith"], NPC, 24822 };
+ { WHITE.."3) "..AL["Vexallus"], NPC, 24744 };
+ { WHITE.."4) "..AL["Scrying Orb"] };
+ { WHITE..INDENT..AL["Kalecgos"], NPC, 24850 };
+ { WHITE.."5) "..AL["Priestess Delrissa"].." ("..AL["Lower"]..")", NPC, 24560 };
+ { WHITE..INDENT..AL["Apoko"].." ("..AL["Lower"]..", "..AL["Random"]..", "..AL["Shaman"]..")", NPC, 24553 };
+ { WHITE..INDENT..AL["Eramas Brightblaze"].." ("..AL["Lower"]..", "..AL["Random"]..", "..AL["Monk"]..")", NPC, 24554 };
+ { WHITE..INDENT..AL["Ellrys Duskhallow"].." ("..AL["Lower"]..", "..AL["Random"]..", "..AL["Warlock"]..")", NPC, 24558 };
+ { WHITE..INDENT..INDENT..AL["Fizzle"].." ("..AL["Lower"]..", "..AL["Random"]..")", NPC, 24656 };
+ { WHITE..INDENT..AL["Garaxxas"].." ("..AL["Lower"]..", "..AL["Random"]..", "..AL["Hunter"]..")", NPC, 24555 };
+ { WHITE..INDENT..INDENT..AL["Sliver "].." ("..AL["Lower"]..", "..AL["Random"]..")", NPC, 24552 };
+ { WHITE..INDENT..AL["Kagani Nightstrike"].." ("..AL["Lower"]..", "..AL["Random"]..", "..AL["Rogue"]..")", NPC, 24557 };
+ { WHITE..INDENT..AL["Warlord Salaris"].." ("..AL["Lower"]..", "..AL["Random"]..", "..AL["Warrior"]..")", NPC, 24559 };
+ { WHITE..INDENT..AL["Yazzai"].." ("..AL["Lower"]..", "..AL["Random"]..", "..AL["Mage"]..")", NPC, 24561 };
+ { WHITE..INDENT..AL["Zelfan"].." ("..AL["Lower"]..", "..AL["Random"]..", "..AL["Engineer"]..")", NPC, 24556 };
+ { WHITE.."6) "..AL["Kael'thas Sunstrider "], NPC, 24664 };
};
["SunwellPlateau"] = {
ZoneName = { BabbleZone["Sunwell Plateau"], 4075 };
@@ -1751,19 +1751,19 @@ AtlasLoot_MapData = {
LevelRange = "70";
MinLevel = "70";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["SuP"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Kalecgos"], NPC, 24850 };
- { WHITE..INDENT..AtlasLocale["Sathrovarr the Corruptor"], NPC, 24892 };
- { WHITE.."2) "..AtlasLocale["Madrigosa"], NPC, 24895 };
- { WHITE..INDENT..AtlasLocale["Brutallus"], NPC, 24882 };
- { WHITE..INDENT..AtlasLocale["Felmyst"], NPC, 25038 };
- { WHITE.."3) "..AtlasLocale["Eredar Twins"].." ("..AtlasLocale["Lower"]..")" };
- { WHITE..INDENT..AtlasLocale["Grand Warlock Alythess"].." ("..AtlasLocale["Lower"]..")", NPC, 25166 };
- { WHITE..INDENT..AtlasLocale["Lady Sacrolash"].." ("..AtlasLocale["Lower"]..")", NPC, 25165 };
- { WHITE..INDENT..AtlasLocale["M'uru"].." ("..AtlasLocale["Upper"]..")", NPC, 25741 };
- { WHITE..INDENT..AtlasLocale["Entropius"].." ("..AtlasLocale["Upper"]..")", NPC, 25840 };
- { WHITE.."4) "..AtlasLocale["Kil'jaeden "], NPC, 25315 };
+ Acronym = AL["SuP"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Kalecgos"], NPC, 24850 };
+ { WHITE..INDENT..AL["Sathrovarr the Corruptor"], NPC, 24892 };
+ { WHITE.."2) "..AL["Madrigosa"], NPC, 24895 };
+ { WHITE..INDENT..AL["Brutallus"], NPC, 24882 };
+ { WHITE..INDENT..AL["Felmyst"], NPC, 25038 };
+ { WHITE.."3) "..AL["Eredar Twins"].." ("..AL["Lower"]..")" };
+ { WHITE..INDENT..AL["Grand Warlock Alythess"].." ("..AL["Lower"]..")", NPC, 25166 };
+ { WHITE..INDENT..AL["Lady Sacrolash"].." ("..AL["Lower"]..")", NPC, 25165 };
+ { WHITE..INDENT..AL["M'uru"].." ("..AL["Upper"]..")", NPC, 25741 };
+ { WHITE..INDENT..AL["Entropius"].." ("..AL["Upper"]..")", NPC, 25840 };
+ { WHITE.."4) "..AL["Kil'jaeden "], NPC, 25315 };
};
["TempestKeepArcatraz"] = {
ZoneName = {BabbleZone["The Arcatraz"], 3846 };
@@ -1771,20 +1771,20 @@ AtlasLoot_MapData = {
LevelRange = "69-70";
MinLevel = "68";
PlayerLimit = "5";
- Acronym = AtlasLocale["Arca"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["The Sha'tar"], FACTION, 935 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Key to the Arcatraz"], ITEM, 31084 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Warpforged Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30634 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Zereketh the Unbound"], NPC, 20870 };
- { WHITE.."2) "..AtlasLocale["Arcane Container"], OBJECT, 182196 };
- { WHITE..INDENT..AtlasLocale["Third Fragment Guardian"], NPC, 22892 };
- { WHITE.."3) "..AtlasLocale["Dalliah the Doomsayer"], NPC, 20885 };
- { WHITE.."4) "..AtlasLocale["Wrath-Scryer Soccothrates"], NPC, 20886 };
- { WHITE.."5) "..AtlasLocale["Udalo"], NPC, 21962 };
- { WHITE.."6) "..AtlasLocale["Harbinger Skyriss"], NPC, 20912 };
- { WHITE..INDENT..AtlasLocale["Warden Mellichar"], NPC, 20904 };
- { WHITE..INDENT..AtlasLocale["Millhouse Manastorm"], NPC, 20977 };
+ Acronym = AL["Arca"];
+ { ORNG..AL["Reputation"]..": "..AL["The Sha'tar"], FACTION, 935 };
+ { ORNG..AL["Key"]..": "..AL["Key to the Arcatraz"], ITEM, 31084 };
+ { ORNG..AL["Key"]..": "..AL["Warpforged Key"].." ("..AL["Heroic"]..")", ITEM, 30634 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Zereketh the Unbound"], NPC, 20870 };
+ { WHITE.."2) "..AL["Arcane Container"], OBJECT, 182196 };
+ { WHITE..INDENT..AL["Third Fragment Guardian"], NPC, 22892 };
+ { WHITE.."3) "..AL["Dalliah the Doomsayer"], NPC, 20885 };
+ { WHITE.."4) "..AL["Wrath-Scryer Soccothrates"], NPC, 20886 };
+ { WHITE.."5) "..AL["Udalo"], NPC, 21962 };
+ { WHITE.."6) "..AL["Harbinger Skyriss"], NPC, 20912 };
+ { WHITE..INDENT..AL["Warden Mellichar"], NPC, 20904 };
+ { WHITE..INDENT..AL["Millhouse Manastorm"], NPC, 20977 };
};
["TempestKeepBotanica"] = {
ZoneName = { BabbleZone["The Botanica"], 3847 };
@@ -1792,16 +1792,16 @@ AtlasLoot_MapData = {
LevelRange = "69-70";
MinLevel = "68";
PlayerLimit = "5";
- Acronym = AtlasLocale["Bota"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["The Sha'tar"], FACTION, 935 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Warpforged Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30634 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Exit"] };
- { WHITE.."1) "..AtlasLocale["Commander Sarannis"], NPC, 17976 };
- { WHITE.."2) "..AtlasLocale["High Botanist Freywinn"], NPC, 17975 };
- { WHITE.."3) "..AtlasLocale["Thorngrin the Tender"], NPC, 17978 };
- { WHITE.."4) "..AtlasLocale["Laj"], NPC, 17980 };
- { WHITE.."5) "..AtlasLocale["Warp Splinter"], NPC, 17977 };
+ Acronym = AL["Bota"];
+ { ORNG..AL["Reputation"]..": "..AL["The Sha'tar"], FACTION, 935 };
+ { ORNG..AL["Key"]..": "..AL["Warpforged Key"].." ("..AL["Heroic"]..")", ITEM, 30634 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..AL["Exit"] };
+ { WHITE.."1) "..AL["Commander Sarannis"], NPC, 17976 };
+ { WHITE.."2) "..AL["High Botanist Freywinn"], NPC, 17975 };
+ { WHITE.."3) "..AL["Thorngrin the Tender"], NPC, 17978 };
+ { WHITE.."4) "..AL["Laj"], NPC, 17980 };
+ { WHITE.."5) "..AL["Warp Splinter"], NPC, 17977 };
};
["TempestKeepMechanar"] = {
ZoneName = { BabbleZone["The Mechanar"], 3849 };
@@ -1809,18 +1809,18 @@ AtlasLoot_MapData = {
LevelRange = "68-70";
MinLevel = "68";
PlayerLimit = "5";
- Acronym = AtlasLocale["Mech"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["The Sha'tar"], FACTION, 935 };
- { ORNG..AtlasLocale["Key"]..": "..AtlasLocale["Warpforged Key"].." ("..AtlasLocale["Heroic"]..")", ITEM, 30634 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Exit"] };
- { WHITE.."1) "..AtlasLocale["Gatewatcher Gyro-Kill"], NPC, 19218 };
- { WHITE.."2) "..AtlasLocale["Gatewatcher Iron-Hand"], NPC, 19710 };
- { WHITE..INDENT..AtlasLocale["Cache of the Legion"], OBJECT, 184465 };
- { WHITE.."3) "..AtlasLocale["Mechano-Lord Capacitus"], NPC, 19219 };
- { WHITE..INDENT..AtlasLocale["Overcharged Manacell"], OBJECT, 185015 };
- { WHITE.."4) "..AtlasLocale["Nethermancer Sepethrea"], NPC, 19221 };
- { WHITE.."5) "..AtlasLocale["Pathaleon the Calculator"], NPC, 19220 };
+ Acronym = AL["Mech"];
+ { ORNG..AL["Reputation"]..": "..AL["The Sha'tar"], FACTION, 935 };
+ { ORNG..AL["Key"]..": "..AL["Warpforged Key"].." ("..AL["Heroic"]..")", ITEM, 30634 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..AL["Exit"] };
+ { WHITE.."1) "..AL["Gatewatcher Gyro-Kill"], NPC, 19218 };
+ { WHITE.."2) "..AL["Gatewatcher Iron-Hand"], NPC, 19710 };
+ { WHITE..INDENT..AL["Cache of the Legion"], OBJECT, 184465 };
+ { WHITE.."3) "..AL["Mechano-Lord Capacitus"], NPC, 19219 };
+ { WHITE..INDENT..AL["Overcharged Manacell"], OBJECT, 185015 };
+ { WHITE.."4) "..AL["Nethermancer Sepethrea"], NPC, 19221 };
+ { WHITE.."5) "..AL["Pathaleon the Calculator"], NPC, 19220 };
};
["TempestKeepTheEye"] = {
ZoneName = { BabbleZone["The Eye"], 3842 };
@@ -1828,17 +1828,17 @@ AtlasLoot_MapData = {
LevelRange = "70";
MinLevel = "70";
PlayerLimit = "10-25";
- Acronym = AtlasLocale["Eye"];
- { ORNG..AtlasLocale["Reputation"]..": "..AtlasLocale["The Sha'tar"], FACTION, 935 };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { WHITE.."1) "..AtlasLocale["Al'ar "], NPC, 19514 };
- { WHITE.."2) "..AtlasLocale["Void Reaver"], NPC, 19516 };
- { WHITE.."3) "..AtlasLocale["High Astromancer Solarian"], NPC, 18805 };
- { WHITE.."4) "..AtlasLocale["Kael'thas Sunstrider "], NPC, 19622 };
- { WHITE..INDENT..AtlasLocale["Thaladred the Darkener "].." ("..AtlasLocale["Warrior"]..")", NPC, 20064 };
- { WHITE..INDENT..AtlasLocale["Master Engineer Telonicus "].." ("..AtlasLocale["Hunter"]..")", NPC, 20063 };
- { WHITE..INDENT..AtlasLocale["Grand Astromancer Capernian "].." ("..AtlasLocale["Mage"]..")", NPC, 20062 };
- { WHITE..INDENT..AtlasLocale["Lord Sanguinar "].." ("..AtlasLocale["Paladin"]..")", NPC, 20060 };
+ Acronym = AL["Eye"];
+ { ORNG..AL["Reputation"]..": "..AL["The Sha'tar"], FACTION, 935 };
+ { BLUE.."A) "..AL["Entrance"] };
+ { WHITE.."1) "..AL["Al'ar "], NPC, 19514 };
+ { WHITE.."2) "..AL["Void Reaver"], NPC, 19516 };
+ { WHITE.."3) "..AL["High Astromancer Solarian"], NPC, 18805 };
+ { WHITE.."4) "..AL["Kael'thas Sunstrider "], NPC, 19622 };
+ { WHITE..INDENT..AL["Thaladred the Darkener "].." ("..AL["Warrior"]..")", NPC, 20064 };
+ { WHITE..INDENT..AL["Master Engineer Telonicus "].." ("..AL["Hunter"]..")", NPC, 20063 };
+ { WHITE..INDENT..AL["Grand Astromancer Capernian "].." ("..AL["Mage"]..")", NPC, 20062 };
+ { WHITE..INDENT..AL["Lord Sanguinar "].." ("..AL["Paladin"]..")", NPC, 20060 };
};
["ZulAman"] = {
ZoneName = { BabbleZone["Zul'Aman"], 3805 };
@@ -1846,39 +1846,39 @@ AtlasLoot_MapData = {
LevelRange = "70";
MinLevel = "68";
PlayerLimit = "5";
- Acronym = AtlasLocale["ZA"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE..INDENT..AtlasLocale["Harrison Jones"], NPC, 24358 };
- { WHITE.."1) "..AtlasLocale["Nalorakk "], NPC, 23576 };
- { WHITE..INDENT..AtlasLocale["Tanzar"], NPC, 23790 };
- { WHITE..INDENT..AtlasLocale["The Map of Zul'Aman"], OBJECT, 186733 };
- { WHITE.."2) "..AtlasLocale["Akil'Zon "], NPC, 23574 };
- { WHITE..INDENT..AtlasLocale["Harkor"], NPC, 23999 };
- { WHITE.."3) "..AtlasLocale["Jan'Alai "], NPC, 23578 };
- { WHITE..INDENT..AtlasLocale["Kraz"], NPC, 24024 };
- { WHITE.."4) "..AtlasLocale["Halazzi "], NPC, 23577 };
- { WHITE..INDENT..AtlasLocale["Ashli"], NPC, 24001 };
- { WHITE.."5) "..AtlasLocale["Zungam"], NPC, 23897 };
- { WHITE.."6) "..AtlasLocale["Hex Lord Malacrass"], NPC, 24239 };
- { WHITE..INDENT..AtlasLocale["Thurg"].." ("..AtlasLocale["Random"]..")", NPC, 24241 };
- { WHITE..INDENT..AtlasLocale["Gazakroth"].." ("..AtlasLocale["Random"]..")", NPC, 24244 };
- { WHITE..INDENT..AtlasLocale["Lord Raadan"].." ("..AtlasLocale["Random"]..")", NPC, 24243 };
- { WHITE..INDENT..AtlasLocale["Darkheart"].." ("..AtlasLocale["Random"]..")", NPC, 24246 };
- { WHITE..INDENT..AtlasLocale["Alyson Antille"].." ("..AtlasLocale["Random"]..")", NPC, 24240 };
- { WHITE..INDENT..AtlasLocale["Slither"].." ("..AtlasLocale["Random"]..")", NPC, 24242 };
- { WHITE..INDENT..AtlasLocale["Fenstalker"].." ("..AtlasLocale["Random"]..")", NPC, 24245 };
- { WHITE..INDENT..AtlasLocale["Koragg"].." ("..AtlasLocale["Random"]..")", NPC, 24247 };
- { WHITE.."7) "..AtlasLocale["Zul'jin"], NPC, 23863 };
- { GREN.."1') "..AtlasLocale["Forest Frogs"], NPC, 24396 };
- { GREN..INDENT..AtlasLocale["Kyren "], NPC, 24409 };
- { GREN..INDENT..AtlasLocale["Gunter "], NPC, 24408 };
- { GREN..INDENT..AtlasLocale["Adarrah"], NPC, 24405 };
- { GREN..INDENT..AtlasLocale["Brennan"], NPC, 24453 };
- { GREN..INDENT..AtlasLocale["Darwen"], NPC, 24407 };
- { GREN..INDENT..AtlasLocale["Deez"], NPC, 24403 };
- { GREN..INDENT..AtlasLocale["Galathryn"], NPC, 24404 };
- { GREN..INDENT..AtlasLocale["Mitzi"], NPC, 24445 };
- { GREN..INDENT..AtlasLocale["Mannuth"], NPC, 24397 };
+ Acronym = AL["ZA"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE..INDENT..AL["Harrison Jones"], NPC, 24358 };
+ { WHITE.."1) "..AL["Nalorakk "], NPC, 23576 };
+ { WHITE..INDENT..AL["Tanzar"], NPC, 23790 };
+ { WHITE..INDENT..AL["The Map of Zul'Aman"], OBJECT, 186733 };
+ { WHITE.."2) "..AL["Akil'Zon "], NPC, 23574 };
+ { WHITE..INDENT..AL["Harkor"], NPC, 23999 };
+ { WHITE.."3) "..AL["Jan'Alai "], NPC, 23578 };
+ { WHITE..INDENT..AL["Kraz"], NPC, 24024 };
+ { WHITE.."4) "..AL["Halazzi "], NPC, 23577 };
+ { WHITE..INDENT..AL["Ashli"], NPC, 24001 };
+ { WHITE.."5) "..AL["Zungam"], NPC, 23897 };
+ { WHITE.."6) "..AL["Hex Lord Malacrass"], NPC, 24239 };
+ { WHITE..INDENT..AL["Thurg"].." ("..AL["Random"]..")", NPC, 24241 };
+ { WHITE..INDENT..AL["Gazakroth"].." ("..AL["Random"]..")", NPC, 24244 };
+ { WHITE..INDENT..AL["Lord Raadan"].." ("..AL["Random"]..")", NPC, 24243 };
+ { WHITE..INDENT..AL["Darkheart"].." ("..AL["Random"]..")", NPC, 24246 };
+ { WHITE..INDENT..AL["Alyson Antille"].." ("..AL["Random"]..")", NPC, 24240 };
+ { WHITE..INDENT..AL["Slither"].." ("..AL["Random"]..")", NPC, 24242 };
+ { WHITE..INDENT..AL["Fenstalker"].." ("..AL["Random"]..")", NPC, 24245 };
+ { WHITE..INDENT..AL["Koragg"].." ("..AL["Random"]..")", NPC, 24247 };
+ { WHITE.."7) "..AL["Zul'jin"], NPC, 23863 };
+ { GREN.."1') "..AL["Forest Frogs"], NPC, 24396 };
+ { GREN..INDENT..AL["Kyren "], NPC, 24409 };
+ { GREN..INDENT..AL["Gunter "], NPC, 24408 };
+ { GREN..INDENT..AL["Adarrah"], NPC, 24405 };
+ { GREN..INDENT..AL["Brennan"], NPC, 24453 };
+ { GREN..INDENT..AL["Darwen"], NPC, 24407 };
+ { GREN..INDENT..AL["Deez"], NPC, 24403 };
+ { GREN..INDENT..AL["Galathryn"], NPC, 24404 };
+ { GREN..INDENT..AL["Mitzi"], NPC, 24445 };
+ { GREN..INDENT..AL["Mannuth"], NPC, 24397 };
};
--************************************************
@@ -1891,15 +1891,15 @@ AtlasLoot_MapData = {
LevelRange = "71-78";
MinLevel = "68";
PlayerLimit = "5";
- Acronym = AtlasLocale["AK, Kahet"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Exit"] };
- { WHITE.."1) "..AtlasLocale["Elder Nadox"], NPC, 29309 };
- { WHITE.."2) "..AtlasLocale["Prince Taldaram"], NPC, 29308 };
- { WHITE.."3) "..AtlasLocale["Amanitar"].." ("..AtlasLocale["Heroic"]..")", NPC, 30258 };
- { WHITE.."4) "..AtlasLocale["Jedoga Shadowseeker"], NPC, 29310 };
- { WHITE.."5) "..AtlasLocale["Herald Volazj"], NPC, 29311 };
- { WHITE.."6) "..AtlasLocale["Ahn'kahet Brazier"] };
+ Acronym = AL["AK, Kahet"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..AL["Exit"] };
+ { WHITE.."1) "..AL["Elder Nadox"], NPC, 29309 };
+ { WHITE.."2) "..AL["Prince Taldaram"], NPC, 29308 };
+ { WHITE.."3) "..AL["Amanitar"].." ("..AL["Heroic"]..")", NPC, 30258 };
+ { WHITE.."4) "..AL["Jedoga Shadowseeker"], NPC, 29310 };
+ { WHITE.."5) "..AL["Herald Volazj"], NPC, 29311 };
+ { WHITE.."6) "..AL["Ahn'kahet Brazier"] };
};
["AzjolNerub"] = {
ZoneName = { BabbleZone["Azjol-Nerub"], 3477 };
@@ -1907,17 +1907,17 @@ AtlasLoot_MapData = {
LevelRange = "70-77";
MinLevel = "67";
PlayerLimit = "5";
- Acronym = AtlasLocale["AN, Nerub"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Connection"] };
- { BLUE.."C) "..AtlasLocale["Exit"] };
- { WHITE.."1) "..AtlasLocale["Krik'thir the Gatewatcher"], NPC, 28684 };
- { WHITE..INDENT..AtlasLocale["Watcher Gashra"], NPC, 28730 };
- { WHITE..INDENT..AtlasLocale["Watcher Narjil"], NPC, 28729 };
- { WHITE..INDENT..AtlasLocale["Watcher Silthik"], NPC, 28731 };
- { WHITE.."2) "..AtlasLocale["Hadronox"], NPC, 28921 };
- { WHITE.."3) "..AtlasLocale["Elder Nurgen"].." ("..AtlasLocale["Lunar Festival"]..")", NPC, 30533 };
- { WHITE.."4) "..AtlasLocale["Anub'arak"], NPC, 29120 };
+ Acronym = AL["AN, Nerub"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..AL["Connection"] };
+ { BLUE.."C) "..AL["Exit"] };
+ { WHITE.."1) "..AL["Krik'thir the Gatewatcher"], NPC, 28684 };
+ { WHITE..INDENT..AL["Watcher Gashra"], NPC, 28730 };
+ { WHITE..INDENT..AL["Watcher Narjil"], NPC, 28729 };
+ { WHITE..INDENT..AL["Watcher Silthik"], NPC, 28731 };
+ { WHITE.."2) "..AL["Hadronox"], NPC, 28921 };
+ { WHITE.."3) "..AL["Elder Nurgen"].." ("..AL["Lunar Festival"]..")", NPC, 30533 };
+ { WHITE.."4) "..AL["Anub'arak"], NPC, 29120 };
};
["CoTOldStratholme"] = {
ZoneName = { BabbleZone["Caverns of Time"]..": "..BabbleZone["The Culling of Stratholme"], 4100 };
@@ -1925,20 +1925,20 @@ AtlasLoot_MapData = {
LevelRange = "78-80";
MinLevel = "75";
PlayerLimit = "5";
- Acronym = AtlasLocale["CoT-Strat"];
- { PURP..AtlasLocale["Event"]..": "..AtlasLocale["The Culling of Stratholme"] };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Exit"].." ("..AtlasLocale["Portal"]..")" };
- { ORNG.."X) "..AtlasLocale["Scourge Invasion Points"] };
- { ORNG..INDENT..AtlasLocale["Wave 5"]..": "..AtlasLocale["Meathook"], NPC, 26529 };
- { ORNG..INDENT..AtlasLocale["Wave 10"]..": "..AtlasLocale["Salramm the Fleshcrafter"], NPC, 26530 };
- { WHITE.."1) "..AtlasLocale["Chromie"], NPC, 26527 };
- { WHITE.."2) "..AtlasLocale["Chromie"], NPC, 27915 };
- { WHITE.."3) "..AtlasLocale["Chrono-Lord Epoch"], NPC, 26532 };
- { WHITE.."4) "..AtlasLocale["Infinite Corruptor"].." ("..AtlasLocale["Heroic"]..")", NPC, 32273 };
- { WHITE..INDENT..AtlasLocale["Guardian of Time"], NPC, 32281 };
- { WHITE.."5) "..AtlasLocale["Mal'Ganis"], NPC, 26533 };
- { WHITE..INDENT..AtlasLocale["Chromie"], NPC, 30997 };
+ Acronym = AL["CoT-Strat"];
+ { PURP..AL["Event"]..": "..AL["The Culling of Stratholme"] };
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..AL["Exit"].." ("..AL["Portal"]..")" };
+ { ORNG.."X) "..AL["Scourge Invasion Points"] };
+ { ORNG..INDENT..AL["Wave 5"]..": "..AL["Meathook"], NPC, 26529 };
+ { ORNG..INDENT..AL["Wave 10"]..": "..AL["Salramm the Fleshcrafter"], NPC, 26530 };
+ { WHITE.."1) "..AL["Chromie"], NPC, 26527 };
+ { WHITE.."2) "..AL["Chromie"], NPC, 27915 };
+ { WHITE.."3) "..AL["Chrono-Lord Epoch"], NPC, 26532 };
+ { WHITE.."4) "..AL["Infinite Corruptor"].." ("..AL["Heroic"]..")", NPC, 32273 };
+ { WHITE..INDENT..AL["Guardian of Time"], NPC, 32281 };
+ { WHITE.."5) "..AL["Mal'Ganis"], NPC, 26533 };
+ { WHITE..INDENT..AL["Chromie"], NPC, 30997 };
};
["DrakTharonKeep"] = {
ZoneName = { BabbleZone["Drak'Tharon Keep"], 4196 };
@@ -1946,17 +1946,17 @@ AtlasLoot_MapData = {
LevelRange = "72-78";
MinLevel = "69";
PlayerLimit = "5";
- Acronym = AtlasLocale["DTK"];
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Connection"] };
- { BLUE.."C) "..AtlasLocale["Connection"] };
- { WHITE.."1) "..AtlasLocale["Trollgore"], NPC, 26630 };
- { WHITE.."2) "..AtlasLocale["Kurzel"], NPC, 26664 };
- { WHITE.."3) "..AtlasLocale["Novos the Summoner"], NPC, 26631 };
- { WHITE.."4) "..AtlasLocale["Elder Kilias"].." ("..AtlasLocale["Lunar Festival"]..")", NPC, 30534 };
- { WHITE.."5) "..AtlasLocale["King Dred"], NPC, 27483 };
- { WHITE.."6) "..AtlasLocale["The Prophet Tharon'ja"], NPC, 26632 };
- { WHITE.."7) "..AtlasLocale["Drakuru's Brazier"] };
+ Acronym = AL["DTK"];
+ { BLUE.."A) "..AL["Entrance"] };
+ { BLUE.."B) "..AL["Connection"] };
+ { BLUE.."C) "..AL["Connection"] };
+ { WHITE.."1) "..AL["Trollgore"], NPC, 26630 };
+ { WHITE.."2) "..AL["Kurzel"], NPC, 26664 };
+ { WHITE.."3) "..AL["Novos the Summoner"], NPC, 26631 };
+ { WHITE.."4) "..AL["Elder Kilias"].." ("..AL["Lunar Festival"]..")", NPC, 30534 };
+ { WHITE.."5) "..AL["King Dred"], NPC, 27483 };
+ { WHITE.."6) "..AL["The Prophet Tharon'ja"], NPC, 26632 };
+ { WHITE.."7) "..AL["Drakuru's Brazier"] };
};
["FHHallsOfReflection"] = {
ZoneName = { BabbleSubZone["The Frozen Halls"]..": "..BabbleZone["Halls of Reflection"], 4820 };
@@ -1964,18 +1964,18 @@ AtlasLoot_MapData = {
LevelRange = "80+";
MinLevel = "80";
PlayerLimit = "5";
- Acronym = AtlasLocale["HoR"]..", "..AtlasLocale["FH3"];
- { ORNG..AtlasLocale["Attunement Required"] };
- { BLUE.."A) "..AtlasLocale["Entrance"] };
- { BLUE.."B) "..AtlasLocale["Portal"].." ("..BabbleZone["Dalaran"]..")", ZONE, 4395 };
- { WHITE.."1) "..AtlasLocale["Lady Jaina Proudmoore"].." ("..AtlasLocale["Alliance"]..")", NPC, 37221 };
- { WHITE..INDENT..AtlasLocale["Archmage Koreln