From 6681d2c905ff44ae1a91b9e5bfcb136298642c5e Mon Sep 17 00:00:00 2001
From: Spit <110714733+Otari98@users.noreply.github.com>
Date: Mon, 9 Sep 2024 16:11:38 +0300
Subject: [PATCH] Dungeons menu + minor fixes
---
Core/AtlasLoot.lua | 84 ++-
Core/AtlasLoot.xml | 6 +-
Core/ButtonRegistry.lua | 883 ++++++++++++++++++++++++++++++--
Core/Crafting.lua | 2 +
Core/Dungeons.lua | 288 +++++++++++
Core/Factions.lua | 2 +
Core/PvP.lua | 2 +
Core/Sets.lua | 2 +
Core/WorldBoss.lua | 2 +
Core/WorldEvents.lua | 2 +
Instances/instances.en.lua | 77 ++-
Locale/locale.en.lua | 18 +-
TableRegister/loottables.en.lua | 25 +-
13 files changed, 1295 insertions(+), 98 deletions(-)
create mode 100644 Core/Dungeons.lua
diff --git a/Core/AtlasLoot.lua b/Core/AtlasLoot.lua
index 4dca047..63bf464 100644
--- a/Core/AtlasLoot.lua
+++ b/Core/AtlasLoot.lua
@@ -69,7 +69,7 @@ local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
--Establish version number and compatible version of Atlas
local VERSION_MAJOR = "1";
local VERSION_MINOR = "2";
-local VERSION_BOSSES = "4";
+local VERSION_BOSSES = "5";
ATLASLOOT_VERSION = "|cffFF8400AtlasLoot TW Edition v"..VERSION_MAJOR.."."..VERSION_MINOR.."."..VERSION_BOSSES.."|r";
ATLASLOOT_CURRENT_ATLAS = "1.12.0";
ATLASLOOT_PREVIEW_ATLAS = "1.12.1";
@@ -166,6 +166,8 @@ local DefaultAtlasLootOptions = {
};
AtlasLoot_MenuList = {
+ "DUNGEONSMENU1",
+ "DUNGEONSMENU2",
"PVPMENU",
"ABRepMenu",
"AVRepMenu",
@@ -184,7 +186,6 @@ AtlasLoot_MenuList = {
"WORLDEPICS",
"REPMENU",
"WORLDEVENTMENU",
- --"AbyssalCouncil",
"ALCHEMYMENU",
"CRAFTINGMENU",
"SMITHINGMENU",
@@ -195,8 +196,8 @@ AtlasLoot_MenuList = {
"TAILORINGMENU",
"CRAFTSET",
"COOKINGMENU",
- "SURVIVALMENU",
"WORLDBOSSMENU"
+ --"AbyssalCouncil",
};
--entrance maps to instance maps NOT NEEDED FOR ATLAS 1.12
@@ -290,6 +291,7 @@ function AtlasLoot_OnVariablesLoaded()
if not AtlasLootCharDB["SearchResult"] then AtlasLootCharDB["SearchResult"] = {} end
--Add the loot browser to the special frames tables to enable closing wih the ESC key
tinsert(UISpecialFrames, "AtlasLootDefaultFrame");
+ tinsert(UISpecialFrames, "AtlasLootOptionsFrame")
--Set up options frame
AtlasLootOptions_OnLoad();
--Legacy code for those using the ultimately failed attempt at making Atlas load on demand
@@ -418,15 +420,16 @@ function AtlasLoot_OnVariablesLoaded()
--Position relevant UI objects for loot browser and set up menu
AtlasLootDefaultFrame_SelectedCategory:SetPoint("TOP", "AtlasLootDefaultFrame_Menu", "BOTTOM", 0, -4);
AtlasLootDefaultFrame_SelectedTable:SetPoint("TOP", "AtlasLootDefaultFrame_SubMenu", "BOTTOM", 0, -4);
- AtlasLootDefaultFrame_SelectedCategory:SetText(AL["Choose Table ..."]);
+ AtlasLootDefaultFrame_SelectedCategory:SetText(AtlasLootCharDB.LastBossText);
AtlasLootDefaultFrame_SelectedTable:SetText("");
AtlasLootDefaultFrame_SelectedCategory:Show();
AtlasLootDefaultFrame_SelectedTable:Show();
AtlasLootDefaultFrame_SubMenu:Disable();
--Load the last loaded sebmenu
- if AtlasLootCharDB["LastMenu"] then
+ --[[if AtlasLootCharDB["LastMenu"] then
+ AtlasLoot_ShowBossLoot(AtlasLootCharDB.LastBoss, AtlasLootCharDB.LastBossText, pFrame)
AtlasLoot_HewdropClick(AtlasLootCharDB["LastMenu"][1],AtlasLootCharDB["LastMenu"][2],AtlasLootCharDB["LastMenu"][3])
- end
+ end]]
end
--[[
@@ -1185,10 +1188,12 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
AtlasLoot_TailoringMenu();
elseif(dataID=="COOKINGMENU") then
AtlasLoot_CookingMenu();
- elseif(dataID=="SURVIVALMENU") then
- AtlasLoot_SurvivalMenu();
elseif(dataID=="WORLDBOSSMENU") then
AtlasLoot_WorldBossMenu();
+ elseif(dataID=="DUNGEONSMENU1") then
+ AtlasLoot_DungeonsMenu1();
+ elseif(dataID=="DUNGEONSMENU2") then
+ AtlasLoot_DungeonsMenu2();
else
--Iterate through each item object and set its properties
for i = 1, 30, 1 do
@@ -1822,6 +1827,10 @@ function AtlasLoot_OpenMenu(menu_name)
AtlasLoot_QuickLooks:Hide();
AtlasLootQuickLooksButton:Hide();
AtlasLootServerQueryButton:Hide();
+ AtlasLootDefaultFrame_SelectedCategory:SetText(menu_name)
+ AtlasLootDefaultFrame_SubMenu:Disable();
+ AtlasLootDefaultFrame_SelectedTable:SetText("");
+ AtlasLootDefaultFrame_SelectedTable:Show();
AtlasLootCharDB.LastBoss = this.lootpage;
AtlasLootCharDB.LastBossText = menu_name;
if menu_name == "Crafting" then
@@ -1842,12 +1851,10 @@ function AtlasLoot_OpenMenu(menu_name)
elseif menu_name == "World Bosses" then
AtlasLoot_WorldBossMenu()
CloseDropDownMenus()
+ elseif menu_name == "Dungeons & Raids" then
+ AtlasLoot_DungeonsMenu1()
+ CloseDropDownMenus()
end
- AtlasLootDefaultFrame_SelectedCategory:SetText(menu_name)
- AtlasLootDefaultFrame_SubMenu:Disable();
- AtlasLootDefaultFrame_SelectedTable:SetText("");
- AtlasLootDefaultFrame_SelectedTable:Show();
-
end
--[[
@@ -1879,27 +1886,33 @@ Requests the relevant loot page from a menu screen
function AtlasLootMenuItem_OnClick()
if this.isheader == nil or this.isheader == false then
local pagename = getglobal(this:GetName().."_Name"):GetText()
- --[[
for k,v in ipairs(AtlasLoot_HewdropDown) do
if not (type(v[1]) == "table") then
for k2, v2 in pairs(v) do
for k3, v3 in pairs(v2) do
for k4, v4 in pairs(v3) do
if not (type(v4[1]) == "table") then
- if v4[1] == pagename then
+ if v4[1] == pagename and v4[3] ~= "Table" then
AtlasLoot_HewdropClick(v4[2],v4[1],v4[3])
end
+ else
+ for k5,v5 in pairs(v4) do
+ if v5[1] == pagename then
+ AtlasLoot_HewdropClick(v5[2],v5[1],v5[3])
+ end
+ end
end
end
end
end
end
end
- ]]
CloseDropDownMenus()
AtlasLootCharDB.LastBoss = this.lootpage;
AtlasLootCharDB.LastBossText = pagename;
AtlasLoot_ShowBossLoot(this.lootpage, pagename, AtlasLoot_AnchorFrame);
+ AtlasLootDefaultFrame_SelectedCategory:SetText(pagename);
+ AtlasLootDefaultFrame_SelectedCategory:Show();
end
end
@@ -1908,6 +1921,15 @@ AtlasLoot_NavButton_OnClick:
Called when <-, -> or 'Back' are pressed and calls up the appropriate loot page
]]
function AtlasLoot_NavButton_OnClick()
+ if AtlasLootCharDB.LastBoss == "DUNGEONSMENU1" then
+ AtlasLoot_DungeonsMenu2()
+ AtlasLootDefaultFrame_SubMenu:Disable();
+ return
+ elseif AtlasLootCharDB.LastBoss == "DUNGEONSMENU2" then
+ AtlasLoot_DungeonsMenu1()
+ AtlasLootDefaultFrame_SubMenu:Disable();
+ return
+ end
if AtlasLootItemsFrame.refresh and AtlasLootItemsFrame.refresh[2] and AtlasLootItemsFrame.refresh[4] then
if string.sub(this.lootpage, 1, 16) == "SearchResultPage" then
AtlasLoot_ShowItemsFrame("SearchResult", this.lootpage, string.format((AL["Search Result: %s"]), AtlasLootCharDB.LastSearchedText or ""), AtlasLootItemsFrame.refresh[4]);
@@ -1917,6 +1939,11 @@ function AtlasLoot_NavButton_OnClick()
AtlasLootCharDB.LastBoss = this.lootpage;
AtlasLootCharDB.LastBossText = this.title;
AtlasLoot_ShowItemsFrame(this.lootpage, AtlasLootItemsFrame.refresh[2], this.title, AtlasLootItemsFrame.refresh[4]);
+ if AtlasLootDefaultFrame_SelectedTable:GetText()~=nil then
+ AtlasLootDefaultFrame_SelectedTable:SetText(AtlasLoot_BossName:GetText())
+ else
+ AtlasLootDefaultFrame_SelectedCategory:SetText(AtlasLoot_BossName:GetText())
+ end
end
elseif AtlasLootItemsFrame.refresh and AtlasLootItemsFrame.refresh[2] then
AtlasLoot_ShowItemsFrame(this.lootpage, AtlasLootItemsFrame.refresh[2], this.title, AtlasFrame);
@@ -1924,6 +1951,13 @@ function AtlasLoot_NavButton_OnClick()
--Fallback for if the requested loot page is a menu and does not have a .refresh instance
AtlasLoot_ShowItemsFrame(this.lootpage, "dummy", this.title, AtlasFrame);
end
+ for k,v in pairs(AtlasLoot_MenuList) do
+ if this.lootpage == v then
+ AtlasLootDefaultFrame_SubMenu:Disable();
+ AtlasLootDefaultFrame_SelectedCategory:SetText(AtlasLootCharDB.LastBossText)
+ AtlasLootDefaultFrame_SelectedTable:SetText()
+ end
+ end
end
--[[
@@ -2164,8 +2198,8 @@ function AtlasLootOptions_DefaultSettings()
AtlasLootCharDB.AtlasLootVersion = VERSION_MAJOR..VERSION_MINOR..VERSION_BOSSES;
AtlasLootCharDB.AutoQuery = false;
AtlasLootCharDB.PartialMatching = true;
- AtlasLootCharDB.LastBoss = "RFCTaragaman";
- AtlasLootCharDB.LastBossText = AL["Taragaman the Hungerer"];
+ AtlasLootCharDB.LastBoss = "DUNGEONSMENU1";
+ AtlasLootCharDB.LastBossText = AL["Dungeons & Raids"];
AtlasLootDefaultFrame:ClearAllPoints();
AtlasLootDefaultFrame:SetPoint("TOP", "UIParent", "TOP", 0, -30);
AtlasLootOptionsFrame:ClearAllPoints();
@@ -2368,7 +2402,7 @@ AtlasLoot_HewdropDown = {
[1] = {{ AL["Abyssal Council"], "AbyssalTemplars", "Table" },},
[2] = {{ AL["Children's Week"], "ChildrensWeek", "Table" },},
[3] = {{ AL["Elemental Invasion"], "ElementalInvasion", "Table" },},
- [4] = {{ AL["Feast of Winter Veil"], "Winterviel", "Table" },},
+ [4] = {{ AL["Feast of Winter Veil"], "Winterviel1", "Table" },},
[5] = {{ AL["Gurubashi Arena Booty Run"], "GurubashiArena", "Table" },},
[6] = {{ AL["Hallow's End"], "Halloween1", "Table" },},
[7] = {{ AL["Harvest Festival"], "HarvestFestival", "Table" },},
@@ -2827,7 +2861,7 @@ AtlasLoot_HewdropDown_SubTables = {
{ AL["Ossirian the Unscarred"], "AQ20Ossirian" },
{ AL["Trash Mobs"], "AQ20Trash" },
{ AL["Class Books"], "AQ20ClassBooks" },
- { AL["AQ Enchants"], "AQEnchants" },
+ { AL["AQ Enchants"], "AQ20Enchants" },
},
["TempleofAQ"] = {
{ AL["The Prophet Skeram"], "AQ40Skeram" },
@@ -2890,11 +2924,11 @@ AtlasLoot_HewdropDown_SubTables = {
{ AL["Ysondre"], "DYsondre" },
{ AL["Lord Kazzak"], "KKazzak"},
--{ "Turtlhu, the Black Turtle of Doom", "Turtlhu" },
- { "Nerubian Overseer", "Nerubian" },
- { "Dark Reaver of Karazhan", "Reaver" },
- { "Ostarius", "Ostarius" },
- { "Concavius", "Concavius" },
- { "There Is No Cow Level", "CowKing" },
+ { AL["Nerubian Overseer"], "Nerubian" },
+ { AL["Dark Reaver of Karazhan"], "Reaver" },
+ { AL["Ostarius"], "Ostarius" },
+ { AL["Concavius"], "Concavius" },
+ { AL["There Is No Cow Level"], "CowKing" },
},
["RareSpawns"] = {
{ "|cffffffff[17]|cffffd200 Earthcaller Rezengal |cffffffff(Stonetalon)", "EarthcallerRezengal" },
diff --git a/Core/AtlasLoot.xml b/Core/AtlasLoot.xml
index 88f9652..d3ed887 100644
--- a/Core/AtlasLoot.xml
+++ b/Core/AtlasLoot.xml
@@ -12,6 +12,7 @@
+
diff --git a/Core/ButtonRegistry.lua b/Core/ButtonRegistry.lua
index ae17b5f..d806237 100644
--- a/Core/ButtonRegistry.lua
+++ b/Core/ButtonRegistry.lua
@@ -11,10 +11,22 @@ local ORANGE = "|cffFF8400";
AtlasLoot_ButtonRegistry = {
--WoW Instances
+ ["DUNGEONSMENU1"] = {
+ Title = AL["Dungeons & Raids"];
+ Next_Page = "DUNGEONSMENU1";
+ Next_Title = AL["Dungeons & Raids"];
+ };
+ ["DUNGEONSMENU2"] = {
+ Title = AL["Dungeons & Raids"];
+ Prev_Page = "DUNGEONSMENU1";
+ Prev_Title = AL["Dungeons & Raids"];
+ };
["HQHighForemanBargulBlackhammer"] = {
Title = AL["High Foreman Bargul Blackhammer"];
Next_Page = "HQEngineerFiggles";
Next_Title = AL["Engineer Figgles"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["HQEngineerFiggles"] = {
Title = AL["Engineer Figgles"];
@@ -22,6 +34,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Corrosis"];
Prev_Page = "HQHighForemanBargulBlackhammer";
Prev_Title = AL["High Foreman Bargul Blackhammer"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["HQCorrosis"] = {
Title = AL["Corrosis"];
@@ -29,6 +43,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Hatereaver Annihilator"];
Prev_Page = "HQEngineerFiggles";
Prev_Title = AL["Engineer Figgles"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["HQHatereaverAnnihilator"] = {
Title = AL["Hatereaver Annihilator"];
@@ -36,6 +52,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Hargesh Doomcaller"];
Prev_Page = "HQCorrosis";
Prev_Title = AL["Corrosis"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["HQHargeshDoomcaller"] = {
Title = AL["Hargesh Doomcaller"];
@@ -43,16 +61,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "HQHatereaverAnnihilator";
Prev_Title = AL["Hatereaver Annihilator"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["HQTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "HQHargeshDoomcaller";
Prev_Title = AL["Hargesh Doomcaller"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDLordRoccor"] = {
Title = AL["Lord Roccor"];
Next_Page = "BRDHighInterrogatorGerstahn";
Next_Title = AL["High Interrogator Gerstahn"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDHighInterrogatorGerstahn"] = {
Title = AL["High Interrogator Gerstahn"];
@@ -60,6 +84,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Anub'shiah"];
Prev_Page = "BRDLordRoccor";
Prev_Title = AL["Lord Roccor"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDAnubshiah"] = {
Title = AL["Anub'shiah"];
@@ -67,6 +93,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Eviscerator"];
Prev_Page = "BRDHighInterrogatorGerstahn";
Prev_Title = AL["High Interrogator Gerstahn"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDEviscerator"] = {
Title = AL["Eviscerator"];
@@ -74,6 +102,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Gorosh the Dervish"];
Prev_Page = "BRDAnubshiah";
Prev_Title = AL["Anub'shiah"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDGorosh"] = {
Title = AL["Gorosh the Dervish"];
@@ -81,6 +111,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Grizzle"];
Prev_Page = "BRDEviscerator";
Prev_Title = AL["Eviscerator"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDGrizzle"] = {
Title = AL["Grizzle"];
@@ -88,6 +120,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Hedrum the Creeper"];
Prev_Page = "BRDGorosh";
Prev_Title = AL["Gorosh the Dervish"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDHedrum"] = {
Title = AL["Hedrum the Creeper"];
@@ -95,6 +129,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ok'thor the Breaker"];
Prev_Page = "BRDGrizzle";
Prev_Title = AL["Grizzle"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDOkthor"] = {
Title = AL["Ok'thor the Breaker"];
@@ -102,6 +138,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Theldren"];
Prev_Page = "BRDHedrum";
Prev_Title = AL["Hedrum the Creeper"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDTheldren"] = {
Title = AL["Theldren"];
@@ -109,6 +147,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Houndmaster Grebmar"];
Prev_Page = "BRDOkthor";
Prev_Title = AL["Ok'thor the Breaker"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDHoundmaster"] = {
Title = AL["Houndmaster Grebmar"];
@@ -116,6 +156,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Pyromancer Loregrain"].." ("..AL["Rare"]..")";
Prev_Page = "BRDTheldren";
Prev_Title = AL["Theldren"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDPyromancerLoregrain"] = {
Title = AL["Pyromancer Loregrain"].." ("..AL["Rare"]..")";
@@ -123,6 +165,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["The Vault"];
Prev_Page = "BRDHoundmaster";
Prev_Title = AL["Houndmaster Grebmar"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDTheVault"] = {
Title = AL["The Vault"];
@@ -130,6 +174,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Warder Stilgiss"].." ("..AL["Rare"]..")";
Prev_Page = "BRDPyromancerLoregrain";
Prev_Title = AL["Pyromancer Loregrain"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDWarderStilgiss"] = {
Title = AL["Warder Stilgiss"].." ("..AL["Rare"]..")";
@@ -137,6 +183,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Verek"].." ("..AL["Rare"]..")";
Prev_Page = "BRDTheVault";
Prev_Title = AL["The Vault"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDVerek"] = {
Title = AL["Verek"].." ("..AL["Rare"]..")";
@@ -144,6 +192,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Fineous Darkvire"];
Prev_Page = "BRDWarderStilgiss";
Prev_Title = AL["Warder Stilgiss"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDFineousDarkvire"] = {
Title = AL["Fineous Darkvire"];
@@ -151,6 +201,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lord Incendius"];
Prev_Page = "BRDVerek";
Prev_Title = AL["Verek"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDLordIncendius"] = {
Title = AL["Lord Incendius"];
@@ -158,6 +210,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Bael'Gar"];
Prev_Page = "BRDFineousDarkvire";
Prev_Title = AL["Fineous Darkvire"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDBaelGar"] = {
Title = AL["Bael'Gar"];
@@ -165,6 +219,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["General Angerforge"];
Prev_Page = "BRDLordIncendius";
Prev_Title = AL["Lord Incendius"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDGeneralAngerforge"] = {
Title = AL["General Angerforge"];
@@ -172,6 +228,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Golem Lord Argelmach"];
Prev_Page = "BRDBaelGar";
Prev_Title = AL["Bael'Gar"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDGolemLordArgelmach"] = {
Title = AL["Golem Lord Argelmach"];
@@ -179,6 +237,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["The Grim Guzzler"];
Prev_Page = "BRDGeneralAngerforge";
Prev_Title = AL["General Angerforge"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDGuzzler"] = {
Title = AL["The Grim Guzzler"];
@@ -186,6 +246,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ambassador Flamelash"];
Prev_Page = "BRDGolemLordArgelmach";
Prev_Title = AL["Golem Lord Argelmach"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDFlamelash"] = {
Title = AL["Ambassador Flamelash"];
@@ -193,6 +255,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Panzor the Invincible"].." ("..AL["Rare"]..")";
Prev_Page = "BRDGuzzler";
Prev_Title = AL["The Grim Guzzler"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDPanzor"] = {
Title = AL["Panzor the Invincible"].." ("..AL["Rare"]..")";
@@ -200,6 +264,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Summoner's Tomb"];
Prev_Page = "BRDFlamelash";
Prev_Title = AL["Ambassador Flamelash"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDTomb"] = {
Title = AL["Summoner's Tomb"];
@@ -207,6 +273,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Magmus"];
Prev_Page = "BRDPanzor";
Prev_Title = AL["Panzor the Invincible"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDMagmus"] = {
Title = AL["Magmus"];
@@ -214,6 +282,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Princess Moira Bronzebeard"];
Prev_Page = "BRDTomb";
Prev_Title = AL["Summoner's Tomb"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDPrincess"] = {
Title = AL["Princess Moira Bronzebeard"];
@@ -221,6 +291,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Emperor Dagran Thaurissan"];
Prev_Page = "BRDMagmus";
Prev_Title = AL["Magmus"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDEmperorDagranThaurissan"] = {
Title = AL["Emperor Dagran Thaurissan"];
@@ -228,16 +300,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "BRDPrincess";
Prev_Title = AL["Princess Moira Bronzebeard"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BRDTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "BRDEmperorDagranThaurissan";
Prev_Title = AL["Emperor Dagran Thaurissan"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSSpirestoneButcher"] = {
Title = AL["Spirestone Butcher"].." ("..AL["Rare"]..")";
Next_Page = "LBRSSpirestoneBattleLord";
Next_Title = AL["Spirestone Battle Lord"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSSpirestoneBattleLord"] = {
Title = AL["Spirestone Battle Lord"].." ("..AL["Rare"]..")";
@@ -245,6 +323,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Spirestone Lord Magus"].." ("..AL["Rare"]..")";
Prev_Page = "LBRSSpirestoneButcher";
Prev_Title = AL["Spirestone Butcher"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSSpirestoneLordMagus"] = {
Title = AL["Spirestone Lord Magus"].." ("..AL["Rare"]..")";
@@ -252,6 +332,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Highlord Omokk"];
Prev_Page = "LBRSSpirestoneBattleLord";
Prev_Title = AL["Spirestone Battle Lord"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSOmokk"] = {
Title = AL["Highlord Omokk"];
@@ -259,6 +341,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Shadow Hunter Vosh'gajin"];
Prev_Page = "LBRSSpirestoneLordMagus";
Prev_Title = AL["Spirestone Lord Magus"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSVosh"] = {
Title = AL["Shadow Hunter Vosh'gajin"];
@@ -266,6 +350,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["War Master Voone"];
Prev_Page = "LBRSOmokk";
Prev_Title = AL["Highlord Omokk"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSVoone"] = {
Title = AL["War Master Voone"];
@@ -273,6 +359,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Burning Felguard"].." ("..AL["Rare"]..")";
Prev_Page = "LBRSVosh";
Prev_Title = AL["Shadow Hunter Vosh'gajin"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSFelguard"] = {
Title = AL["Burning Felguard"].." ("..AL["Rare"]..")";
@@ -280,6 +368,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Mor Grayhoof"];
Prev_Page = "LBRSVoone";
Prev_Title = AL["War Master Voone"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSGrayhoof"] = {
Title = AL["Mor Grayhoof"];
@@ -287,6 +377,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Bannok Grimaxe"].." ("..AL["Rare"]..")";
Prev_Page = "LBRSFelguard";
Prev_Title = AL["Burning Felguard"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSGrimaxe"] = {
Title = AL["Bannok Grimaxe"].." ("..AL["Rare"]..")";
@@ -294,6 +386,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Mother Smolderweb"];
Prev_Page = "LBRSGrayhoof";
Prev_Title = AL["Mor Grayhoof"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSSmolderweb"] = {
Title = AL["Mother Smolderweb"];
@@ -301,6 +395,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Crystal Fang"].." ("..AL["Rare"]..")";
Prev_Page = "LBRSGrimaxe";
Prev_Title = AL["Bannok Grimaxe"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSCrystalFang"] = {
Title = AL["Crystal Fang"].." ("..AL["Rare"]..")";
@@ -308,6 +404,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Urok Doomhowl"];
Prev_Page = "LBRSSmolderweb";
Prev_Title = AL["Mother Smolderweb"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSDoomhowl"] = {
Title = AL["Urok Doomhowl"];
@@ -315,6 +413,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Quartermaster Zigris"];
Prev_Page = "LBRSCrystalFang";
Prev_Title = AL["Crystal Fang"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSZigris"] = {
Title = AL["Quartermaster Zigris"];
@@ -322,6 +422,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Halycon"];
Prev_Page = "LBRSDoomhowl";
Prev_Title = AL["Urok Doomhowl"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSHalycon"] = {
Title = AL["Halycon"];
@@ -329,6 +431,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Gizrul the Slavener"];
Prev_Page = "LBRSZigris";
Prev_Title = AL["Quartermaster Zigris"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSSlavener"] = {
Title = AL["Gizrul the Slavener"];
@@ -336,6 +440,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ghok Bashguud"].." ("..AL["Rare"]..")";
Prev_Page = "LBRSHalycon";
Prev_Title = AL["Halycon"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSBashguud"] = {
Title = AL["Ghok Bashguud"].." ("..AL["Rare"]..")";
@@ -343,6 +449,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Overlord Wyrmthalak"];
Prev_Page = "LBRSSlavener";
Prev_Title = AL["Gizrul the Slavener"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSWyrmthalak"] = {
Title = AL["Overlord Wyrmthalak"];
@@ -350,16 +458,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "LBRSBashguud";
Prev_Title = AL["Ghok Bashguud"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["LBRSTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "LBRSWyrmthalak";
Prev_Title = AL["Overlord Wyrmthalak"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UBRSEmberseer"] = {
Title = AL["Pyroguard Emberseer"];
Next_Page = "UBRSSolakar";
Next_Title = AL["Solakar Flamewreath"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UBRSSolakar"] = {
Title = AL["Solakar Flamewreath"];
@@ -367,6 +481,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Father Flame"];
Prev_Page = "UBRSEmberseer";
Prev_Title = AL["Pyroguard Emberseer"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UBRSFlame"] = {
Title = AL["Father Flame"];
@@ -374,6 +490,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Jed Runewatcher"].." ("..AL["Rare"]..")";
Prev_Page = "UBRSSolakar";
Prev_Title = AL["Solakar Flamewreath"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UBRSRunewatcher"] = {
Title = AL["Jed Runewatcher"].." ("..AL["Rare"]..")";
@@ -381,6 +499,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Goraluk Anvilcrack"].." ("..AL["Rare"]..")";
Prev_Page = "UBRSFlame";
Prev_Title = AL["Father Flame"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UBRSAnvilcrack"] = {
Title = AL["Goraluk Anvilcrack"].." ("..AL["Rare"]..")";
@@ -388,6 +508,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Warchief Rend Blackhand"];
Prev_Page = "UBRSRunewatcher";
Prev_Title = AL["Jed Runewatcher"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UBRSRend"] = {
Title = AL["Warchief Rend Blackhand"];
@@ -395,6 +517,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Gyth"];
Prev_Page = "UBRSAnvilcrack";
Prev_Title = AL["Goraluk Anvilcrack"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UBRSGyth"] = {
Title = AL["Gyth"];
@@ -402,6 +526,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["The Beast"];
Prev_Page = "UBRSRend";
Prev_Title = AL["Warchief Rend Blackhand"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UBRSBeast"] = {
Title = AL["The Beast"];
@@ -409,6 +535,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lord Valthalak"];
Prev_Page = "UBRSGyth";
Prev_Title = AL["Gyth"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UBRSValthalak"] = {
Title = AL["Lord Valthalak"];
@@ -416,6 +544,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["General Drakkisath"];
Prev_Page = "UBRSBeast";
Prev_Title = AL["The Beast"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UBRSDrakkisath"] = {
Title = AL["General Drakkisath"];
@@ -423,16 +553,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "UBRSValthalak";
Prev_Title = AL["Lord Valthalak"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UBRSTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "UBRSDrakkisath";
Prev_Title = AL["General Drakkisath"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["KCMarrowspike"] = {
Title = AL["Marrowspike"];
Next_Page = "KCHivaxxis";
Next_Title = AL["Hivaxxis"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["KCHivaxxis"] = {
Title = AL["Hivaxxis"];
@@ -440,6 +576,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Corpsemuncher"];
Prev_Page = "KCMarrowspike";
Prev_Title = AL["Marrowspike"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["KCCorpsemuncher"] = {
Title = AL["Corpsemuncher"];
@@ -447,6 +585,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Guard Captain Gort"];
Prev_Page = "KCHivaxxis";
Prev_Title = AL["Hivaxxis"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["KCGuardCaptainGort"] = {
Title = AL["Guard Captain Gort"];
@@ -454,6 +594,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Archlich Enkhraz"];
Prev_Page = "KCCorpsemuncher";
Prev_Title = AL["Corpsemuncher"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["KCArchlichEnkhraz"] = {
Title = AL["Archlich Enkhraz"];
@@ -461,6 +603,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Commander Andreon"];
Prev_Page = "KCGuardCaptainGort";
Prev_Title = AL["Guard Captain Gort"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["KCCommanderAndreon"] = {
Title = AL["Commander Andreon"];
@@ -468,6 +612,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Alarus"];
Prev_Page = "KCArchlichEnkhraz";
Prev_Title = AL["Archlich Enkhraz"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["KCAlarus"] = {
Title = AL["Alarus"];
@@ -475,6 +621,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Half-Buried Treasure Chest"];
Prev_Page = "KCCommanderAndreon";
Prev_Title = AL["Commander Andreon"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["KCTreasure"] = {
Title = AL["Half-Buried Treasure Chest"];
@@ -482,20 +630,22 @@ AtlasLoot_ButtonRegistry = {
Prev_Title = AL["Alarus"];
Next_Page = "KCTrash";
Next_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["KCTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "KCTreasure";
Prev_Title = AL["Half-Buried Treasure Chest"];
- Next_Page = "KCMarrowspike";
- Next_Title = AL["Marrowspike"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["COTBMChronar"] = {
Title = AL["Chronar"];
Next_Page = "COTBMEpidamu";
Next_Title = AL["Epidamu"];
- Prev_Page = "COTTrash";
- Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["COTBMEpidamu"] = {
Title = AL["Epidamu"];
@@ -503,6 +653,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Drifting Avatar of Time"];
Prev_Page = "COTBMChronar";
Prev_Title = AL["Chronar"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["COTBMDriftingAvatar"] = {
Title = AL["Drifting Avatar of Time"];
@@ -510,6 +662,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Time-Lord Epochronos"];
Prev_Page = "COTBMEpidamu";
Prev_Title = AL["Epidamu"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["COTBMTimeLordEpochronos"] = {
Title = AL["Time-Lord Epochronos"];
@@ -517,6 +671,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Mossheart"];
Prev_Page = "COTBMDriftingAvatar";
Prev_Title = AL["Drifting Avatar of Time"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["COTBMMossheart"] = {
Title = AL["Mossheart"];
@@ -524,6 +680,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Rotmaw"];
Prev_Page = "COTBMTimeLordEpochronos";
Prev_Title = AL["Time-Lord Epochronos"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["COTBMRotmaw"] = {
Title = AL["Rotmaw"];
@@ -531,6 +689,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Antnormi"];
Prev_Page = "COTBMMossheart";
Prev_Title = AL["Mossheart"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["COTBMAntnormi"] = {
Title = AL["Antnormi"];
@@ -538,13 +698,15 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "COTBMRotmaw";
Prev_Title = AL["Rotmaw"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["COTTrash"] = {
Title = AL["Trash Mobs"];
- Next_Page = "COTBMChronar";
- Next_Title = AL["Chronar"];
Prev_Page = "COTBMAntnormi";
Prev_Title = AL["Antnormi"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
--["COTBMInfiniteChromie"] = {
-- Title = AL["Infinite Chromie"];
@@ -552,11 +714,11 @@ AtlasLoot_ButtonRegistry = {
-- Prev_Title = AL["Antnormi"];
--};
["SWVAszoshGrimflame"] = {
- Prev_Page = "SWVTrash";
- Prev_Title = AL["Trash Mobs"];
Title = AL["Aszosh Grimflame"];
Next_Page = "SWVThamGrarr";
Next_Title = AL["Tham'Grarr"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWVThamGrarr"] = {
Title = AL["Tham'Grarr"];
@@ -564,6 +726,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Black Bride"];
Prev_Page = "SWVAszoshGrimflame";
Prev_Title = AL["Aszosh Grimflame"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWVBlackBride"] = {
Title = AL["Black Bride"];
@@ -571,6 +735,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Damian"];
Prev_Page = "SWVThamGrarr";
Prev_Title = AL["Tham'Grarr"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWVDamian"] = {
Title = AL["Damian"];
@@ -578,6 +744,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Volkan Cruelblade"];
Prev_Page = "SWVBlackBride";
Prev_Title = AL["Black Bride"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWVVolkanCruelblade"] = {
Title = AL["Volkan Cruelblade"];
@@ -585,6 +753,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Arc'tiras / Vault Armory Equipment"];
Prev_Page = "SWVDamian";
Prev_Title = AL["Damian"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWVVaultArmoryEquipment"] = {
Title = AL["Arc'tiras / Vault Armory Equipment"];
@@ -592,18 +762,22 @@ AtlasLoot_ButtonRegistry = {
Prev_Title = AL["Volkan Cruelblade"];
Next_Page = "SWVTrash";
Next_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWVTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "SWVVaultArmoryEquipment";
Prev_Title = AL["Arc'tiras / Vault Armory Equipment"];
- Next_Page = "SWVAszoshGrimflame";
- Next_Title = AL["Aszosh Grimflame"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["BWLRazorgore"] = {
Title = AL["Razorgore the Untamed"];
Next_Page = "BWLVaelastrasz";
Next_Title = AL["Vaelastrasz the Corrupt"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["BWLVaelastrasz"] = {
Title = AL["Vaelastrasz the Corrupt"];
@@ -611,6 +785,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Broodlord Lashlayer"];
Prev_Page = "BWLRazorgore";
Prev_Title = AL["Razorgore the Untamed"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["BWLLashlayer"] = {
Title = AL["Broodlord Lashlayer"];
@@ -618,6 +794,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Firemaw"];
Prev_Page = "BWLVaelastrasz";
Prev_Title = AL["Vaelastrasz the Corrupt"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["BWLFiremaw"] = {
Title = AL["Firemaw"];
@@ -625,6 +803,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ebonroc"];
Prev_Page = "BWLLashlayer";
Prev_Title = AL["Broodlord Lashlayer"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["BWLEbonroc"] = {
Title = AL["Ebonroc"];
@@ -632,6 +812,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Flamegor"];
Prev_Page = "BWLFiremaw";
Prev_Title = AL["Firemaw"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["BWLFlamegor"] = {
Title = AL["Flamegor"];
@@ -639,6 +821,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Chromaggus"];
Prev_Page = "BWLEbonroc";
Prev_Title = AL["Ebonroc"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["BWLChromaggus"] = {
Title = AL["Chromaggus"];
@@ -646,6 +830,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Nefarian"];
Prev_Page = "BWLFlamegor";
Prev_Title = AL["Flamegor"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["BWLNefarian"] = {
Title = AL["Nefarian"];
@@ -653,16 +839,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "BWLChromaggus";
Prev_Title = AL["Chromaggus"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["BWLTrashMobs"] = {
Title = AL["Trash Mobs"];
Prev_Page = "BWLNefarian";
Prev_Title = AL["Nefarian"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMRhahkZor"] = {
Title = AL["Rhahk'Zor"];
Next_Page = "DMMinerJohnson";
Next_Title = AL["Miner Johnson"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMMinerJohnson"] = {
Title = AL["Miner Johnson"].." ("..AL["Rare"]..")";
@@ -670,6 +862,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Sneed"];
Prev_Page = "DMRhahkZor";
Prev_Title = AL["Rhahk'Zor"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMSneed"] = {
Title = AL["Sneed"];
@@ -677,6 +871,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Sneed's Shredder"];
Prev_Page = "DMMinerJohnson";
Prev_Title = AL["Miner Johnson"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMSneedsShredder"] = {
Title = AL["Sneed's Shredder"];
@@ -684,6 +880,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Gilnid"];
Prev_Page = "DMSneed";
Prev_Title = AL["Sneed"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMGilnid"] = {
Title = AL["Gilnid"];
@@ -691,6 +889,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Mr. Smite"];
Prev_Page = "DMSneedsShredder";
Prev_Title = AL["Sneed's Shredder"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMMrSmite"] = {
Title = AL["Mr. Smite"];
@@ -698,6 +898,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Cookie"];
Prev_Page = "DMGilnid";
Prev_Title = AL["Gilnid"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMCookie"] = {
Title = AL["Cookie"];
@@ -705,6 +907,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Captain Greenskin"];
Prev_Page = "DMMrSmite";
Prev_Title = AL["Mr. Smite"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMCaptainGreenskin"] = {
Title = AL["Captain Greenskin"];
@@ -712,6 +916,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Edwin VanCleef"];
Prev_Page = "DMCookie";
Prev_Title = AL["Cookie"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMVanCleef"] = {
Title = AL["Edwin VanCleef"];
@@ -719,16 +925,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "DMCaptainGreenskin";
Prev_Title = AL["Captain Greenskin"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "DMVanCleef";
Prev_Title = AL["Edwin VanCleef"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["TCGGrovetenderEngryss"] = {
Title = AL["Grovetender Engryss"];
Next_Page = "TCGKeeperRanathos";
Next_Title = AL["Keeper Ranathos"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["TCGKeeperRanathos"] = {
Title = AL["Keeper Ranathos"];
@@ -736,6 +948,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["High Priestess A'lathea"];
Prev_Page = "TCGGrovetenderEngryss";
Prev_Title = AL["Grovetender Engryss"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["TCGHighPriestessAlathea"] = {
Title = AL["High Priestess A'lathea"];
@@ -743,6 +957,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Fenektis the Deceiver"];
Prev_Page = "TCGKeeperRanathos";
Prev_Title = AL["Keeper Ranathos"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["TCGFenektistheDeceiver"] = {
Title = AL["Fenektis the Deceiver"];
@@ -750,6 +966,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Master Raxxieth"];
Prev_Page = "TCGHighPriestessAlathea";
Prev_Title = AL["High Priestess A'lathea"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["TCGMasterRaxxieth"] = {
Title = AL["Master Raxxieth"];
@@ -757,16 +975,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "TCGFenektistheDeceiver";
Prev_Title = AL["Fenektis the Deceiver"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["TCGTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "TCGMasterRaxxieth";
Prev_Title = AL["Master Raxxieth"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GnGrubbis"] = {
Title = AL["Grubbis"];
Next_Page = "GnViscousFallout";
Next_Title = AL["Viscous Fallout"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GnViscousFallout"] = {
Title = AL["Viscous Fallout"];
@@ -774,6 +998,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Electrocutioner 6000"];
Prev_Page = "GnGrubbis";
Prev_Title = AL["Grubbis"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GnElectrocutioner6000"] = {
Title = AL["Electrocutioner 6000"];
@@ -781,6 +1007,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Crowd Pummeler 9-60"];
Prev_Page = "GnViscousFallout";
Prev_Title = AL["Viscous Fallout"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GnCrowdPummeler960"] = {
Title = AL["Crowd Pummeler 9-60"];
@@ -788,6 +1016,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Dark Iron Ambassador"];
Prev_Page = "GnElectrocutioner6000";
Prev_Title = AL["Electrocutioner 6000"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GnDIAmbassador"] = {
Title = AL["Dark Iron Ambassador"];
@@ -795,6 +1025,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Mekgineer Thermaplugg"];
Prev_Page = "GnCrowdPummeler960";
Prev_Title = AL["Crowd Pummeler 9-60"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GnMekgineerThermaplugg"] = {
Title = AL["Mekgineer Thermaplugg"];
@@ -802,16 +1034,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "GnDIAmbassador";
Prev_Title = AL["Dark Iron Ambassador"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GnTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "GnMekgineerThermaplugg";
Prev_Title = AL["Mekgineer Thermaplugg"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["MCLucifron"] = {
Title = AL["Lucifron"];
Next_Page = "MCMagmadar";
Next_Title = AL["Magmadar"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["MCMagmadar"] = {
Title = AL["Magmadar"];
@@ -819,6 +1057,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Gehennas"];
Prev_Page = "MCLucifron";
Prev_Title = AL["Lucifron"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["MCGehennas"] = {
Title = AL["Gehennas"];
@@ -826,6 +1066,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Garr"];
Prev_Page = "MCMagmadar";
Prev_Title = AL["Magmadar"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["MCGarr"] = {
Title = AL["Garr"];
@@ -833,6 +1075,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Shazzrah"];
Prev_Page = "MCGehennas";
Prev_Title = AL["Gehennas"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["MCShazzrah"] = {
Title = AL["Shazzrah"];
@@ -840,6 +1084,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Baron Geddon"];
Prev_Page = "MCGarr";
Prev_Title = AL["Garr"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["MCGeddon"] = {
Title = AL["Baron Geddon"];
@@ -847,6 +1093,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Golemagg the Incinerator"];
Prev_Page = "MCShazzrah";
Prev_Title = AL["Shazzrah"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["MCGolemagg"] = {
Title = AL["Golemagg the Incinerator"];
@@ -854,6 +1102,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Sulfuron Harbinger"];
Prev_Page = "MCGeddon";
Prev_Title = AL["Baron Geddon"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["MCSulfuron"] = {
Title = AL["Sulfuron Harbinger"];
@@ -861,6 +1111,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Majordomo Executus"];
Prev_Page = "MCGolemagg";
Prev_Title = AL["Golemagg the Incinerator"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["MCMajordomo"] = {
Title = AL["Majordomo Executus"];
@@ -868,6 +1120,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ragnaros"];
Prev_Page = "MCSulfuron";
Prev_Title = AL["Sulfuron Harbinger"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["MCRagnaros"] = {
Title = AL["Ragnaros"];
@@ -875,6 +1129,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "MCMajordomo";
Prev_Title = AL["Majordomo Executus"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["MCTrashMobs"] = {
Title = AL["Trash Mobs"];
@@ -882,16 +1138,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Random Boss Loot"];
Prev_Page = "MCRagnaros";
Prev_Title = AL["Ragnaros"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["MCRANDOMBOSSDROPS"] = {
Title = AL["Random Boss Loot"];
Prev_Page = "MCTrashMobs";
Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXPatchwerk"] = {
Title = AL["Patchwerk"];
Next_Page = "NAXGrobbulus";
Next_Title = AL["Grobbulus"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXGrobbulus"] = {
Title = AL["Grobbulus"];
@@ -899,6 +1161,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Gluth"];
Prev_Page = "NAXPatchwerk";
Prev_Title = AL["Patchwerk"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXGluth"] = {
Title = AL["Gluth"];
@@ -906,6 +1170,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Thaddius"];
Prev_Page = "NAXGrobbulus";
Prev_Title = AL["Grobbulus"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXThaddius"] = {
Title = AL["Thaddius"];
@@ -913,6 +1179,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Anub'Rekhan"];
Prev_Page = "NAXGluth";
Prev_Title = AL["Gluth"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXAnubRekhan"] = {
Title = AL["Anub'Rekhan"];
@@ -920,6 +1188,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Grand Widow Faerlina"];
Prev_Page = "NAXThaddius";
Prev_Title = AL["Thaddius"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXGrandWidowFaerlina"] = {
Title = AL["Grand Widow Faerlina"];
@@ -927,6 +1197,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Maexxna"];
Prev_Page = "NAXAnubRekhan";
Prev_Title = AL["Anub'Rekhan"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXMaexxna"] = {
Title = AL["Maexxna"];
@@ -934,6 +1206,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Noth the Plaguebringer"];
Prev_Page = "NAXGrandWidowFaerlina";
Prev_Title = AL["Grand Widow Faerlina"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXNoththePlaguebringer"] = {
Title = AL["Noth the Plaguebringer"];
@@ -941,6 +1215,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Heigan the Unclean"];
Prev_Page = "NAXMaexxna";
Prev_Title = AL["Maexxna"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXHeigantheUnclean"] = {
Title = AL["Heigan the Unclean"];
@@ -948,6 +1224,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Loatheb"];
Prev_Page = "NAXNoththePlaguebringer";
Prev_Title = AL["Noth the Plaguebringer"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXLoatheb"] = {
Title = AL["Loatheb"];
@@ -955,6 +1233,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Instructor Razuvious"];
Prev_Page = "NAXHeigantheUnclean";
Prev_Title = AL["Heigan the Unclean"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXInstructorRazuvious"] = {
Title = AL["Instructor Razuvious"];
@@ -962,6 +1242,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Gothik the Harvester"];
Prev_Page = "NAXLoatheb";
Prev_Title = AL["Loatheb"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXGothiktheHarvester"] = {
Title = AL["Gothik the Harvester"];
@@ -969,6 +1251,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["The Four Horsemen"];
Prev_Page = "NAXInstructorRazuvious";
Prev_Title = AL["Instructor Razuvious"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXTheFourHorsemen"] = {
Title = AL["The Four Horsemen"];
@@ -976,6 +1260,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Sapphiron"];
Prev_Page = "NAXGothiktheHarvester";
Prev_Title = AL["Gothik the Harvester"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXSapphiron"] = {
Title = AL["Sapphiron"];
@@ -983,6 +1269,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Kel'Thuzad"];
Prev_Page = "NAXTheFourHorsemen";
Prev_Title = AL["The Four Horsemen"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXKelThuzard"] = {
Title = AL["Kel'Thuzad"];
@@ -990,16 +1278,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "NAXSapphiron";
Prev_Title = AL["Sapphiron"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["NAXTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "NAXKelThuzard";
Prev_Title = AL["Kel'Thuzad"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMVishas"] = {
Title = AL["Interrogator Vishas"];
Next_Page = "SMScorn";
Next_Title = AL["Scorn"].." ("..AL["Scourge Invasion"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMScorn"] = {
Title = AL["Scorn"].." ("..AL["Scourge Invasion"]..")";
@@ -1007,6 +1301,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ironspine"].." ("..AL["Rare"]..")";
Prev_Page = "SMVishas";
Prev_Title = AL["Interrogator Vishas"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMIronspine"] = {
Title = AL["Ironspine"].." ("..AL["Rare"]..")";
@@ -1014,6 +1310,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Azshir the Sleepless"].." ("..AL["Rare"]..")";
Prev_Page = "SMScorn";
Prev_Title = AL["Scorn"].." ("..AL["Scourge Invasion"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMAzshir"] = {
Title = AL["Azshir the Sleepless"].." ("..AL["Rare"]..")";
@@ -1021,6 +1319,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Fallen Champion"].." ("..AL["Rare"]..")";
Prev_Page = "SMIronspine";
Prev_Title = AL["Ironspine"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMFallenChampion"] = {
Title = AL["Fallen Champion"].." ("..AL["Rare"]..")";
@@ -1028,6 +1328,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Bloodmage Thalnos"];
Prev_Page = "SMAzshir";
Prev_Title = AL["Azshir the Sleepless"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMBloodmageThalnos"] = {
Title = AL["Bloodmage Thalnos"];
@@ -1035,16 +1337,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "SMFallenChampion";
Prev_Title = AL["Fallen Champion"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMGTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "SMBloodmageThalnos";
Prev_Title = AL["Bloodmage Thalnos"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMHoundmasterLoksey"] = {
Title = AL["Houndmaster Loksey"];
Next_Page = "SMDoan";
Next_Title = AL["Arcanist Doan"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMDoan"] = {
Title = AL["Arcanist Doan"];
@@ -1052,26 +1360,36 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "SMHoundmasterLoksey";
Prev_Title = AL["Houndmaster Loksey"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMLTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "SMDoan";
Prev_Title = AL["Arcanist Doan"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMHerod"] = {
Title = AL["Herod"];
Next_Page = "SMATrash";
Next_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMATrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "SMHerod";
Prev_Title = AL["Herod"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMFairbanks"] = {
Title = AL["High Inquisitor Fairbanks"];
Next_Page = "SMMograine";
Next_Title = AL["Scarlet Commander Mograine"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMMograine"] = {
Title = AL["Scarlet Commander Mograine"];
@@ -1079,6 +1397,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["High Inquisitor Whitemane"];
Prev_Page = "SMFairbanks";
Prev_Title = AL["High Inquisitor Fairbanks"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMWhitemane"] = {
Title = AL["High Inquisitor Whitemane"];
@@ -1086,16 +1406,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "SMMograine";
Prev_Title = AL["Scarlet Commander Mograine"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SMCTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "SMWhitemane";
Prev_Title = AL["High Inquisitor Whitemane"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOBlood"] = {
Title = AL["Blood Steward of Kirtonos"];
Next_Page = "SCHOLOKirtonostheHerald";
Next_Title = AL["Kirtonos the Herald"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOKirtonostheHerald"] = {
Title = AL["Kirtonos the Herald"];
@@ -1103,6 +1429,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Jandice Barov"];
Prev_Page = "SCHOLOBlood";
Prev_Title = AL["Blood Steward of Kirtonos"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOJandiceBarov"] = {
Title = AL["Jandice Barov"];
@@ -1110,6 +1438,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lord Blackwood"].." ("..AL["Scourge Invasion"]..")";
Prev_Page = "SCHOLOKirtonostheHerald";
Prev_Title = AL["Kirtonos the Herald"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOLordBlackwood"] = {
Title = AL["Lord Blackwood"].." ("..AL["Scourge Invasion"]..")";
@@ -1117,6 +1447,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Rattlegore"];
Prev_Page = "SCHOLOJandiceBarov";
Prev_Title = AL["Jandice Barov"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLORattlegore"] = {
Title = AL["Rattlegore"];
@@ -1124,6 +1456,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Death Knight Darkreaver"];
Prev_Page = "SCHOLOLordBlackwood";
Prev_Title = AL["Lord Blackwood"].." ("..AL["Scourge Invasion"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLODeathKnight"] = {
Title = AL["Death Knight Darkreaver"];
@@ -1131,6 +1465,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Marduk Blackpool"];
Prev_Page = "SCHOLORattlegore";
Prev_Title = AL["Rattlegore"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOMarduk"] = {
Title = AL["Marduk Blackpool"];
@@ -1138,6 +1474,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Vectus"];
Prev_Page = "SCHOLODeathKnight";
Prev_Title = AL["Death Knight Darkreaver"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOVectus"] = {
Title = AL["Vectus"];
@@ -1145,6 +1483,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ras Frostwhisper"];
Prev_Page = "SCHOLOMarduk";
Prev_Title = AL["Marduk Blackpool"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLORasFrostwhisper"] = {
Title = AL["Ras Frostwhisper"];
@@ -1152,6 +1492,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Kormok"];
Prev_Page = "SCHOLOVectus";
Prev_Title = AL["Vectus"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOKormok"] = {
Title = AL["Kormok"];
@@ -1159,6 +1501,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Instructor Malicia"];
Prev_Page = "SCHOLORasFrostwhisper";
Prev_Title = AL["Ras Frostwhisper"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOInstructorMalicia"] = {
Title = AL["Instructor Malicia"];
@@ -1166,6 +1510,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Doctor Theolen Krastinov"];
Prev_Page = "SCHOLOKormok";
Prev_Title = AL["Kormok"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLODoctorTheolenKrastinov"] = {
Title = AL["Doctor Theolen Krastinov"];
@@ -1173,6 +1519,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lorekeeper Polkelt"];
Prev_Page = "SCHOLOInstructorMalicia";
Prev_Title = AL["Instructor Malicia"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOLorekeeperPolkelt"] = {
Title = AL["Lorekeeper Polkelt"];
@@ -1180,6 +1528,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["The Ravenian"];
Prev_Page = "SCHOLODoctorTheolenKrastinov";
Prev_Title = AL["Doctor Theolen Krastinov"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOTheRavenian"] = {
Title = AL["The Ravenian"];
@@ -1187,6 +1537,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lord Alexei Barov"];
Prev_Page = "SCHOLOLorekeeperPolkelt";
Prev_Title = AL["Lorekeeper Polkelt"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOLordAlexeiBarov"] = {
Title = AL["Lord Alexei Barov"];
@@ -1194,6 +1546,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lady Illucia Barov"];
Prev_Page = "SCHOLOTheRavenian";
Prev_Title = AL["The Ravenian"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOLadyIlluciaBarov"] = {
Title = AL["Lady Illucia Barov"];
@@ -1201,6 +1555,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Darkmaster Gandling"];
Prev_Page = "SCHOLOLordAlexeiBarov";
Prev_Title = AL["Lord Alexei Barov"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLODarkmasterGandling"] = {
Title = AL["Darkmaster Gandling"];
@@ -1208,16 +1564,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "SCHOLOLadyIlluciaBarov";
Prev_Title = AL["Lady Illucia Barov"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SCHOLOTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "SCHOLODarkmasterGandling";
Prev_Title = AL["Darkmaster Gandling"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKRethilgore"] = {
Title = AL["Rethilgore"];
Next_Page = "SFKFelSteed";
Next_Title = AL["Fel Steed"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKFelSteed"] = {
Title = AL["Fel Steed"];
@@ -1225,6 +1587,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Razorclaw the Butcher"];
Prev_Page = "SFKRethilgore";
Prev_Title = AL["Rethilgore"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKRazorclawtheButcher"] = {
Title = AL["Razorclaw the Butcher"];
@@ -1232,6 +1596,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Baron Silverlaine"];
Prev_Page = "SFKFelSteed";
Prev_Title = AL["Fel Steed"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKSilverlaine"] = {
Title = AL["Baron Silverlaine"];
@@ -1239,6 +1605,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Commander Springvale"];
Prev_Page = "SFKRazorclawtheButcher";
Prev_Title = AL["Razorclaw the Butcher"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKSpringvale"] = {
Title = AL["Commander Springvale"];
@@ -1246,6 +1614,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Sever"].." ("..AL["Scourge Invasion"]..")";
Prev_Page = "SFKSilverlaine";
Prev_Title = AL["Baron Silverlaine"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKSever"] = {
Title = AL["Sever"].." ("..AL["Scourge Invasion"]..")";
@@ -1253,6 +1623,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Odo the Blindwatcher"];
Prev_Page = "SFKSpringvale";
Prev_Title = AL["Commander Springvale"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKOdotheBlindwatcher"] = {
Title = AL["Odo the Blindwatcher"];
@@ -1260,6 +1632,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Deathsworn Captain"].." ("..AL["Rare"]..")";
Prev_Page = "SFKSever";
Prev_Title = AL["Sever"].." ("..AL["Scourge Invasion"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKDeathswornCaptain"] = {
Title = AL["Deathsworn Captain"].." ("..AL["Rare"]..")";
@@ -1267,6 +1641,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Fenrus the Devourer"];
Prev_Page = "SFKOdotheBlindwatcher";
Prev_Title = AL["Odo the Blindwatcher"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKFenrustheDevourer"] = {
Title = AL["Fenrus the Devourer"];
@@ -1274,6 +1650,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Arugal's Voidwalker"];
Prev_Page = "SFKDeathswornCaptain";
Prev_Title = AL["Deathsworn Captain"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKArugalsVoidwalker"] = {
Title = AL["Arugal's Voidwalker"];
@@ -1281,6 +1659,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Wolf Master Nandos"];
Prev_Page = "SFKFenrustheDevourer";
Prev_Title = AL["Fenrus the Devourer"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKWolfMasterNandos"] = {
Title = AL["Wolf Master Nandos"];
@@ -1288,6 +1668,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Archmage Arugal"];
Prev_Page = "SFKArugalsVoidwalker";
Prev_Title = AL["Arugal's Voidwalker"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKArchmageArugal"] = {
Title = AL["Archmage Arugal"];
@@ -1295,16 +1677,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "SFKWolfMasterNandos";
Prev_Title = AL["Wolf Master Nandos"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SFKTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "SFKArchmageArugal";
Prev_Title = AL["Archmage Arugal"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWStTargorr"] = {
Title = AL["Targorr the Dread"];
Next_Page = "SWStKamDeepfury";
Next_Title = AL["Kam Deepfury"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWStKamDeepfury"] = {
Title = AL["Kam Deepfury"];
@@ -1312,6 +1700,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Hamhock"];
Prev_Page = "SWStTargorr";
Prev_Title = AL["Targorr the Dread"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWStHamhock"] = {
Title = AL["Hamhock"];
@@ -1319,6 +1709,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Dextren Ward"];
Prev_Page = "SWStKamDeepfury";
Prev_Title = AL["Kam Deepfury"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWStDextren"] = {
Title = AL["Dextren Ward"];
@@ -1326,6 +1718,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Bazil Thredd"];
Prev_Page = "SWStHamhock";
Prev_Title = AL["Hamhock"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWStBazil"] = {
Title = AL["Bazil Thredd"];
@@ -1333,6 +1727,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Bruegal Ironknuckle"].." ("..AL["Rare"]..")";
Prev_Page = "SWStDextren";
Prev_Title = AL["Dextren Ward"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWStBruegalIronknuckle"] = {
Title = AL["Bruegal Ironknuckle"].." ("..AL["Rare"]..")";
@@ -1340,16 +1736,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "SWStBazil";
Prev_Title = AL["Bazil Thredd"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["SWStTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "SWStBruegalIronknuckle";
Prev_Title = AL["Bruegal Ironknuckle"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATSkull"] = {
Title = AL["Skul"].." ("..AL["Rare"]..")";
Next_Page = "STRATStratholmeCourier";
Next_Title = AL["Stratholme Courier"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATStratholmeCourier"] = {
Title = AL["Stratholme Courier"];
@@ -1357,6 +1759,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Postmaster Malown"];
Prev_Page = "STRATSkull";
Prev_Title = AL["Skul"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATPostmaster"] = {
Title = AL["Postmaster Malown"];
@@ -1364,6 +1768,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Fras Siabi"];
Prev_Page = "STRATStratholmeCourier";
Prev_Title = AL["Stratholme Courier"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATFrasSiabi"] = {
Title = AL["Fras Siabi"];
@@ -1371,6 +1777,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Atiesh"];
Prev_Page = "STRATPostmaster";
Prev_Title = AL["Postmaster Malown"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATAtiesh"] = {
Title = AL["Atiesh"];
@@ -1378,6 +1786,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Balzaphon"].." ("..AL["Scourge Invasion"]..")";
Prev_Page = "STRATFrasSiabi";
Prev_Title = AL["Fras Siabi"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATBalzaphon"] = {
Title = AL["Balzaphon"].." ("..AL["Scourge Invasion"]..")";
@@ -1385,6 +1795,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Hearthsinger Forresten"].." ("..AL["Rare"]..")";
Prev_Page = "STRATAtiesh";
Prev_Title = AL["Atiesh"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATHearthsingerForresten"] = {
Title = AL["Hearthsinger Forresten"].." ("..AL["Rare"]..")";
@@ -1392,6 +1804,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["The Unforgiven"];
Prev_Page = "STRATBalzaphon";
Prev_Title = AL["Balzaphon"].." ("..AL["Scourge Invasion"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATTheUnforgiven"] = {
Title = AL["The Unforgiven"];
@@ -1399,6 +1813,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Timmy the Cruel"];
Prev_Page = "STRATHearthsingerForresten";
Prev_Title = AL["Hearthsinger Forresten"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATTimmytheCruel"] = {
Title = AL["Timmy the Cruel"];
@@ -1406,6 +1822,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Malor the Zealous"];
Prev_Page = "STRATTheUnforgiven";
Prev_Title = AL["The Unforgiven"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATMalor"] = {
Title = AL["Malor the Zealous"];
@@ -1413,6 +1831,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Malor's Strongbox"];
Prev_Page = "STRATTimmytheCruel";
Prev_Title = AL["Timmy the Cruel"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATMalorsStrongbox"] = {
Title = AL["Malor's Strongbox"];
@@ -1420,6 +1840,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Crimson Hammersmith"];
Prev_Page = "STRATMalor";
Prev_Title = AL["Malor the Zealous"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATCrimsonHammersmith"] = {
Title = AL["Crimson Hammersmith"];
@@ -1427,6 +1849,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Cannon Master Willey"];
Prev_Page = "STRATMalorsStrongbox";
Prev_Title = AL["Malor's Strongbox"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATCannonMasterWilley"] = {
Title = AL["Cannon Master Willey"];
@@ -1434,6 +1858,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Archivist Galford"];
Prev_Page = "STRATCrimsonHammersmith";
Prev_Title = AL["Crimson Hammersmith"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATArchivistGalford"] = {
Title = AL["Archivist Galford"];
@@ -1441,6 +1867,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Balnazzar"];
Prev_Page = "STRATCannonMasterWilley";
Prev_Title = AL["Cannon Master Willey"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATBalnazzar"] = {
Title = AL["Balnazzar"];
@@ -1448,6 +1876,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Sothos"].." & "..AL["Jarien"];
Prev_Page = "STRATArchivistGalford";
Prev_Title = AL["Archivist Galford"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATSothosJarien"] = {
Title = AL["Sothos"].." & "..AL["Jarien"];
@@ -1455,6 +1885,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Stonespine"].." ("..AL["Rare"]..")";
Prev_Page = "STRATBalnazzar";
Prev_Title = AL["Balnazzar"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATStonespine"] = {
Title = AL["Stonespine"].." ("..AL["Rare"]..")";
@@ -1462,6 +1894,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Baroness Anastari"];
Prev_Page = "STRATSothosJarien";
Prev_Title = AL["Sothos"].." & "..AL["Jarien"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATBaronessAnastari"] = {
Title = AL["Baroness Anastari"];
@@ -1469,6 +1903,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Black Guard Swordsmith"];
Prev_Page = "STRATStonespine";
Prev_Title = AL["Stonespine"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATBlackGuardSwordsmith"] = {
Title = AL["Black Guard Swordsmith"];
@@ -1476,6 +1912,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Nerub'enkan"];
Prev_Page = "STRATBaronessAnastari";
Prev_Title = AL["Baroness Anastari"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATNerubenkan"] = {
Title = AL["Nerub'enkan"];
@@ -1483,6 +1921,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Maleki the Pallid"];
Prev_Page = "STRATBlackGuardSwordsmith";
Prev_Title = AL["Black Guard Swordsmith"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATMalekithePallid"] = {
Title = AL["Maleki the Pallid"];
@@ -1490,6 +1930,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Magistrate Barthilas"];
Prev_Page = "STRATNerubenkan";
Prev_Title = AL["Nerub'enkan"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATMagistrateBarthilas"] = {
Title = AL["Magistrate Barthilas"];
@@ -1497,6 +1939,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ramstein the Gorger"];
Prev_Page = "STRATMalekithePallid";
Prev_Title = AL["Maleki the Pallid"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATRamsteintheGorger"] = {
Title = AL["Ramstein the Gorger"];
@@ -1504,6 +1948,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Baron Rivendare"];
Prev_Page = "STRATMagistrateBarthilas";
Prev_Title = AL["Magistrate Barthilas"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATBaronRivendare"] = {
Title = AL["Baron Rivendare"];
@@ -1511,16 +1957,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "STRATRamsteintheGorger";
Prev_Title = AL["Ramstein the Gorger"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STRATTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "STRATBaronRivendare";
Prev_Title = AL["Baron Rivendare"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STBalconyMinibosses"] = {
Title = AL["Balcony Minibosses"];
Next_Page = "STAtalalarion";
Next_Title = AL["Atal'alarion"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STAtalalarion"] = {
Title = AL["Atal'alarion"];
@@ -1528,6 +1980,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Spawn of Hakkar"];
Prev_Page = "STBalconyMinibosses";
Prev_Title = AL["Balcony Minibosses"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STSpawnOfHakkar"] = {
Title = AL["Spawn of Hakkar"];
@@ -1535,6 +1989,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Avatar of Hakkar"];
Prev_Page = "STAtalalarion";
Prev_Title = AL["Atal'alarion"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STAvatarofHakkar"] = {
Title = AL["Avatar of Hakkar"];
@@ -1542,6 +1998,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Jammal'an the Prophet"];
Prev_Page = "STSpawnOfHakkar";
Prev_Title = AL["Spawn of Hakkar"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STJammalan"] = {
Title = AL["Jammal'an the Prophet"];
@@ -1549,6 +2007,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ogom the Wretched"];
Prev_Page = "STAvatarofHakkar";
Prev_Title = AL["Avatar of Hakkar"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STOgom"] = {
Title = AL["Ogom the Wretched"];
@@ -1556,6 +2016,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Dreamscythe"];
Prev_Page = "STJammalan";
Prev_Title = AL["Jammal'an the Prophet"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STDreamscythe"] = {
Title = AL["Dreamscythe"];
@@ -1563,6 +2025,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Weaver"];
Prev_Page = "STOgom";
Prev_Title = AL["Ogom the Wretched"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STWeaver"] = {
Title = AL["Weaver"];
@@ -1570,6 +2034,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Morphaz"];
Prev_Page = "STDreamscythe";
Prev_Title = AL["Dreamscythe"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STMorphaz"] = {
Title = AL["Morphaz"];
@@ -1577,6 +2043,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Hazzas"];
Prev_Page = "STWeaver";
Prev_Title = AL["Weaver"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STHazzas"] = {
Title = AL["Hazzas"];
@@ -1584,6 +2052,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Shade of Eranikus"];
Prev_Page = "STMorphaz";
Prev_Title = AL["Morphaz"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STEranikus"] = {
Title = AL["Shade of Eranikus"];
@@ -1591,16 +2061,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "STHazzas";
Prev_Title = AL["Hazzas"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["STTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "STEranikus";
Prev_Title = AL["Shade of Eranikus"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UldBaelog"] = {
Title = AL["Baelog"];
Next_Page = "UldOlaf";
Next_Title = AL["Olaf"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UldOlaf"] = {
Title = AL["Olaf"];
@@ -1608,6 +2084,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Eric 'The Swift'"];
Prev_Page = "UldBaelog";
Prev_Title = AL["Baelog"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UldEric"] = {
Title = AL["Eric 'The Swift'"];
@@ -1615,6 +2093,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Revelosh"];
Prev_Page = "UldOlaf";
Prev_Title = AL["Olaf"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UldRevelosh"] = {
Title = AL["Revelosh"];
@@ -1622,6 +2102,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ironaya"];
Prev_Page = "UldEric";
Prev_Title = AL["Eric 'The Swift'"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UldIronaya"] = {
Title = AL["Ironaya"];
@@ -1629,6 +2111,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ancient Stone Keeper"];
Prev_Page = "UldRevelosh";
Prev_Title = AL["Revelosh"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UldAncientStoneKeeper"] = {
Title = AL["Ancient Stone Keeper"];
@@ -1636,6 +2120,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Galgann Firehammer"];
Prev_Page = "UldIronaya";
Prev_Title = AL["Ironaya"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UldGalgannFirehammer"] = {
Title = AL["Galgann Firehammer"];
@@ -1643,6 +2129,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Grimlok"];
Prev_Page = "UldAncientStoneKeeper";
Prev_Title = AL["Ancient Stone Keeper"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UldGrimlok"] = {
Title = AL["Grimlok"];
@@ -1650,6 +2138,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Archaedas"];
Prev_Page = "UldGalgannFirehammer";
Prev_Title = AL["Galgann Firehammer"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UldArchaedas"] = {
Title = AL["Archaedas"];
@@ -1657,18 +2147,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "UldGrimlok";
Prev_Title = AL["Grimlok"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["UldTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "UldArchaedas";
Prev_Title = AL["Archaedas"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GCMatthiasHoltz"] = {
Title = AL["Matthias Holtz"];
Next_Page = "GCPackmasterRagetooth";
Next_Title = AL["Packmaster Ragetooth"];
- Prev_Page = "GCTrash";
- Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GCPackmasterRagetooth"] = {
Title = AL["Packmaster Ragetooth"];
@@ -1676,6 +2170,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Judge Sutherland"];
Prev_Page = "GCMatthiasHoltz";
Prev_Title = AL["Matthias Holtz"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GCJudgeSutherland"] = {
Title = AL["Judge Sutherland"];
@@ -1683,6 +2179,8 @@ AtlasLoot_ButtonRegistry = {
Prev_Title = AL["Packmaster Ragetooth"];
Next_Page = "GCDustivanBlackcowl";
Next_Title = AL["Dustivan Blackcowl"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GCDustivanBlackcowl"] = {
Title = AL["Dustivan Blackcowl"];
@@ -1690,6 +2188,8 @@ AtlasLoot_ButtonRegistry = {
Prev_Title = AL["Judge Sutherland"];
Next_Page = "GCMarshalMagnusGreystone";
Next_Title = AL["Marshal Magnus Greystone"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GCMarshalMagnusGreystone"] = {
Title = AL["Marshal Magnus Greystone"];
@@ -1697,6 +2197,8 @@ AtlasLoot_ButtonRegistry = {
Prev_Title = AL["Dustivan Blackcowl"];
Next_Page = "GCHorsemasterLevvin";
Next_Title = AL["Horsemaster Levvin"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GCHorsemasterLevvin"] = {
Title = AL["Horsemaster Levvin"];
@@ -1704,6 +2206,8 @@ AtlasLoot_ButtonRegistry = {
Prev_Title = AL["Marshal Magnus Greystone"];
Next_Page = "GCHarlowFamilyChest";
Next_Title = AL["Harlow Family Chest"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GCHarlowFamilyChest"] = {
Title = AL["Harlow Family Chest"];
@@ -1711,6 +2215,8 @@ AtlasLoot_ButtonRegistry = {
Prev_Title = AL["Horsemaster Levvin"];
Next_Page = "GCGennGreymane";
Next_Title = AL["Genn Greymane"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GCGennGreymane"] = {
Title = AL["Genn Greymane"];
@@ -1718,18 +2224,22 @@ AtlasLoot_ButtonRegistry = {
Prev_Title = AL["Harlow Family Chest"];
Next_Page = "GCTrash";
Next_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["GCTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "GCGennGreymane";
Prev_Title = AL["Genn Greymane"];
- Next_Page = "GCMatthiasHoltz";
- Next_Title = AL["Matthias Holtz"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGJeklik"] = {
Title = AL["High Priestess Jeklik"];
Next_Page = "ZGVenoxis";
Next_Title = AL["High Priest Venoxis"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGVenoxis"] = {
Title = AL["High Priest Venoxis"];
@@ -1737,6 +2247,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["High Priestess Mar'li"];
Prev_Page = "ZGJeklik";
Prev_Title = AL["High Priestess Jeklik"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGMarli"] = {
Title = AL["High Priestess Mar'li"];
@@ -1744,6 +2256,9 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Bloodlord Mandokir"];
Prev_Page = "ZGVenoxis";
Prev_Title = AL["High Priest Venoxis"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
+
};
["ZGMandokir"] = {
Title = AL["Bloodlord Mandokir"];
@@ -1751,6 +2266,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Gri'lek"];
Prev_Page = "ZGMarli";
Prev_Title = AL["High Priestess Mar'li"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGGrilek"] = {
Title = AL["Gri'lek"];
@@ -1758,6 +2275,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Hazza'rah"];
Prev_Page = "ZGMandokir";
Prev_Title = AL["Bloodlord Mandokir"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGHazzarah"] = {
Title = AL["Hazza'rah"];
@@ -1765,6 +2284,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Renataki"];
Prev_Page = "ZGGrilek";
Prev_Title = AL["Gri'lek"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGRenataki"] = {
Title = AL["Renataki"];
@@ -1772,6 +2293,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Wushoolay"];
Prev_Page = "ZGHazzarah";
Prev_Title = AL["Hazza'rah"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGWushoolay"] = {
Title = AL["Wushoolay"];
@@ -1779,6 +2302,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Gahz'ranka"];
Prev_Page = "ZGRenataki";
Prev_Title = AL["Renataki"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGGahzranka"] = {
Title = AL["Gahz'ranka"];
@@ -1786,6 +2311,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["High Priest Thekal"];
Prev_Page = "ZGWushoolay";
Prev_Title = AL["Wushoolay"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGThekal"] = {
Title = AL["High Priest Thekal"];
@@ -1793,6 +2320,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["High Priestess Arlokk"];
Prev_Page = "ZGGahzranka";
Prev_Title = AL["Gahz'ranka"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGArlokk"] = {
Title = AL["High Priestess Arlokk"];
@@ -1800,6 +2329,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Jin'do the Hexxer"];
Prev_Page = "ZGThekal";
Prev_Title = AL["High Priest Thekal"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGJindo"] = {
Title = AL["Jin'do the Hexxer"];
@@ -1807,6 +2338,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Hakkar"];
Prev_Page = "ZGArlokk";
Prev_Title = AL["High Priestess Arlokk"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGHakkar"] = {
Title = AL["Hakkar"];
@@ -1814,6 +2347,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Random Boss Loot"];
Prev_Page = "ZGJindo";
Prev_Title = AL["Jin'do the Hexxer"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGShared"] = {
Title = AL["Random Boss Loot"];
@@ -1821,6 +2356,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "ZGHakkar";
Prev_Title = AL["Hakkar"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGTrash1"] = {
Title = AL["Trash Mobs"];
@@ -1828,6 +2365,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "ZGShared";
Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGTrash2"] = {
Title = AL["Trash Mobs"];
@@ -1835,16 +2374,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["ZG Enchants"];
Prev_Page = "ZGTrash1";
Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZGEnchants"] = {
Title = AL["ZG Enchants"];
Prev_Page = "ZGTrash2";
Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["BFDGhamoora"] = {
Title = AL["Ghamoo-ra"];
Next_Page = "BFDLadySarevess";
Next_Title = AL["Lady Sarevess"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BFDLadySarevess"] = {
Title = AL["Lady Sarevess"];
@@ -1852,6 +2397,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Gelihast"];
Prev_Page = "BFDGhamoora";
Prev_Title = AL["Ghamoo-ra"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BFDGelihast"] = {
Title = AL["Gelihast"];
@@ -1859,6 +2406,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Baron Aquanis"];
Prev_Page = "BFDLadySarevess";
Prev_Title = AL["Lady Sarevess"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BFDBaronAquanis"] = {
Title = AL["Baron Aquanis"];
@@ -1866,6 +2415,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Twilight Lord Kelris"];
Prev_Page = "BFDGelihast";
Prev_Title = AL["Gelihast"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BFDTwilightLordKelris"] = {
Title = AL["Twilight Lord Kelris"];
@@ -1873,6 +2424,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Old Serra'kis"];
Prev_Page = "BFDBaronAquanis";
Prev_Title = AL["Baron Aquanis"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BFDOldSerrakis"] = {
Title = AL["Old Serra'kis"];
@@ -1880,6 +2433,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Aku'mai"];
Prev_Page = "BFDTwilightLordKelris";
Prev_Title = AL["Twilight Lord Kelris"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BFDAkumai"] = {
Title = AL["Aku'mai"];
@@ -1887,16 +2442,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "BFDOldSerrakis";
Prev_Title = AL["Old Serra'kis"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["BFDTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "BFDAkumai";
Prev_Title = AL["Aku'mai"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMEPusillin"] = {
Title = AL["Pusillin"];
Next_Page = "DMEZevrimThornhoof";
Next_Title = AL["Zevrim Thornhoof"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMEZevrimThornhoof"] = {
Title = AL["Zevrim Thornhoof"];
@@ -1904,6 +2465,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Hydrospawn"];
Prev_Page = "DMEPusillin";
Prev_Title = AL["Pusillin"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMEHydro"] = {
Title = AL["Hydrospawn"];
@@ -1911,6 +2474,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lethtendris"];
Prev_Page = "DMEZevrimThornhoof";
Prev_Title = AL["Zevrim Thornhoof"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMELethtendris"] = {
Title = AL["Lethtendris"];
@@ -1918,6 +2483,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Pimgib"];
Prev_Page = "DMEHydro";
Prev_Title = AL["Hydrospawn"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMEPimgib"] = {
Title = AL["Pimgib"];
@@ -1925,6 +2492,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Isalien"];
Prev_Page = "DMELethtendris";
Prev_Title = AL["Lethtendris"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMEIsalien"] = {
Title = AL["Isalien"];
@@ -1932,6 +2501,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Alzzin the Wildshaper"];
Prev_Page = "DMEPimgib";
Prev_Title = AL["Pimgib"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMEAlzzin"] = {
Title = AL["Alzzin the Wildshaper"];
@@ -1939,23 +2510,31 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "DMEIsalien";
Prev_Title = AL["Isalien"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMETrash"] = {
Title = AL["Trash Mobs"];
- Next_Page = "DMBooks";
+ Next_Page = "DMEBooks";
Next_Title = AL["Dire Maul Books"];
Prev_Page = "DMEAlzzin";
Prev_Title = AL["Alzzin the Wildshaper"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
- ["DMBooks"] = {
+ ["DMEBooks"] = {
Title = AL["Dire Maul Books"];
Prev_Page = "DMETrash";
Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMWTendrisWarpwood"] = {
Title = AL["Tendris Warpwood"];
Next_Page = "DMWIllyannaRavenoak";
Next_Title = AL["Illyanna Ravenoak"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMWIllyannaRavenoak"] = {
Title = AL["Illyanna Ravenoak"];
@@ -1963,6 +2542,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Magister Kalendris"];
Prev_Page = "DMWTendrisWarpwood";
Prev_Title = AL["Tendris Warpwood"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMWMagisterKalendris"] = {
Title = AL["Magister Kalendris"];
@@ -1970,6 +2551,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Tsu'zee"].." ("..AL["Rare"]..")";
Prev_Page = "DMWIllyannaRavenoak";
Prev_Title = AL["Illyanna Ravenoak"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMWTsuzee"] = {
Title = AL["Tsu'zee"].." ("..AL["Rare"]..")";
@@ -1977,6 +2560,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Revanchion"].." ("..AL["Scourge Invasion"]..")";
Prev_Page = "DMWMagisterKalendris";
Prev_Title = AL["Magister Kalendris"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMWRevanchion"] = {
Title = AL["Revanchion"].." ("..AL["Scourge Invasion"]..")";
@@ -1984,6 +2569,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Immol'thar"];
Prev_Page = "DMWTsuzee";
Prev_Title = AL["Tsu'zee"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMWImmolthar"] = {
Title = AL["Immol'thar"];
@@ -1991,6 +2578,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lord Hel'nurath"].." ("..AL["Rare"]..")";
Prev_Page = "DMWRevanchion";
Prev_Title = AL["Revanchion"].." ("..AL["Scourge Invasion"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMWHelnurath"] = {
Title = AL["Lord Hel'nurath"].." ("..AL["Rare"]..")";
@@ -1998,6 +2587,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Prince Tortheldrin"];
Prev_Page = "DMWImmolthar";
Prev_Title = AL["Immol'thar"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMWPrinceTortheldrin"] = {
Title = AL["Prince Tortheldrin"];
@@ -2005,23 +2596,31 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "DMWHelnurath";
Prev_Title = AL["Lord Hel'nurath"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMWTrash"] = {
Title = AL["Trash Mobs"];
- Next_Page = "DMBooks";
+ Next_Page = "DMWBooks";
Next_Title = AL["Dire Maul Books"];
Prev_Page = "DMWPrinceTortheldrin";
Prev_Title = AL["Prince Tortheldrin"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
- ["DMBooks"] = {
+ ["DMWBooks"] = {
Title = AL["Dire Maul Books"];
Prev_Page = "DMWTrash";
Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMNGuardMoldar"] = {
Title = AL["Guard Mol'dar"];
Next_Page = "DMNStomperKreeg";
Next_Title = AL["Stomper Kreeg"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMNStomperKreeg"] = {
Title = AL["Stomper Kreeg"];
@@ -2029,6 +2628,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Guard Fengus"];
Prev_Page = "DMNGuardMoldar";
Prev_Title = AL["Guard Mol'dar"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMNGuardFengus"] = {
Title = AL["Guard Fengus"];
@@ -2036,6 +2637,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Knot Thimblejack"];
Prev_Page = "DMNStomperKreeg";
Prev_Title = AL["Stomper Kreeg"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMNThimblejack"] = {
Title = AL["Knot Thimblejack"];
@@ -2043,6 +2646,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Guard Slip'kik"];
Prev_Page = "DMNGuardFengus";
Prev_Title = AL["Guard Fengus"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMNGuardSlipkik"] = {
Title = AL["Guard Slip'kik"];
@@ -2050,6 +2655,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Captain Kromcrush"];
Prev_Page = "DMNThimblejack";
Prev_Title = AL["Knot Thimblejack"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMNCaptainKromcrush"] = {
Title = AL["Captain Kromcrush"];
@@ -2057,6 +2664,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Cho'Rush the Observer"];
Prev_Page = "DMNGuardSlipkik";
Prev_Title = AL["Guard Slip'kik"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMNChoRush"] = {
Title = AL["Cho'Rush the Observer"];
@@ -2064,6 +2673,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["King Gordok"];
Prev_Page = "DMNCaptainKromcrush";
Prev_Title = AL["Captain Kromcrush"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMNKingGordok"] = {
Title = AL["King Gordok"];
@@ -2071,6 +2682,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Tribute Run"];
Prev_Page = "DMNChoRush";
Prev_Title = AL["Cho'Rush the Observer"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMNTRIBUTERUN"] = {
Title = AL["Tribute Run"];
@@ -2078,23 +2691,31 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "DMNKingGordok";
Prev_Title = AL["King Gordok"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["DMNTrash"] = {
Title = AL["Trash Mobs"];
- Next_Page = "DMBooks";
+ Next_Page = "DMNBooks";
Next_Title = AL["Dire Maul Books"];
Prev_Page = "DMNTRIBUTERUN";
Prev_Title = AL["Tribute Run"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
- ["DMBooks"] = {
+ ["DMNBooks"] = {
Title = AL["Dire Maul Books"];
Prev_Page = "DMNTrash";
Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["MaraNoxxion"] = {
Title = AL["Noxxion"];
Next_Page = "MaraRazorlash";
Next_Title = AL["Razorlash"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["MaraRazorlash"] = {
Title = AL["Razorlash"];
@@ -2102,6 +2723,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lord Vyletongue"];
Prev_Page = "MaraNoxxion";
Prev_Title = AL["Noxxion"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["MaraLordVyletongue"] = {
Title = AL["Lord Vyletongue"];
@@ -2109,6 +2732,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Meshlok the Harvester"].." ("..AL["Rare"]..")";
Prev_Page = "MaraRazorlash";
Prev_Title = AL["Razorlash"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["MaraMeshlok"] = {
Title = AL["Meshlok the Harvester"].." ("..AL["Rare"]..")";
@@ -2116,6 +2741,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Celebras the Cursed"];
Prev_Page = "MaraLordVyletongue";
Prev_Title = AL["Lord Vyletongue"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["MaraCelebras"] = {
Title = AL["Celebras the Cursed"];
@@ -2123,6 +2750,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Landslide"];
Prev_Page = "MaraMeshlok";
Prev_Title = AL["Meshlok the Harvester"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["MaraLandslide"] = {
Title = AL["Landslide"];
@@ -2130,6 +2759,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Tinkerer Gizlock"];
Prev_Page = "MaraCelebras";
Prev_Title = AL["Celebras the Cursed"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["MaraTinkererGizlock"] = {
Title = AL["Tinkerer Gizlock"];
@@ -2137,6 +2768,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Rotgrip"];
Prev_Page = "MaraLandslide";
Prev_Title = AL["Landslide"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["MaraRotgrip"] = {
Title = AL["Rotgrip"];
@@ -2144,6 +2777,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Princess Theradras"];
Prev_Page = "MaraTinkererGizlock";
Prev_Title = AL["Tinkerer Gizlock"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["MaraPrincessTheradras"] = {
Title = AL["Princess Theradras"];
@@ -2151,16 +2786,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "MaraRotgrip";
Prev_Title = AL["Rotgrip"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["MaraTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "MaraPrincessTheradras";
Prev_Title = AL["Princess Theradras"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFCTaragaman"] = {
Title = AL["Taragaman the Hungerer"];
Next_Page = "RFCOggleflint";
Next_Title = AL["Oggleflint"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFCOggleflint"] = {
Title = AL["Oggleflint"];
@@ -2168,6 +2809,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Jergosh the Invoker"];
Prev_Page = "RFCTaragaman";
Prev_Title = AL["Taragaman the Hungerer"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFCJergosh"] = {
Title = AL["Jergosh the Invoker"];
@@ -2175,16 +2818,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Bazzalan"];
Prev_Page = "RFCOggleflint";
Prev_Title = AL["Oggleflint"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFCBazzalan"] = {
Title = AL["Bazzalan"];
Prev_Page = "RFCJergosh";
Prev_Title = AL["Jergosh the Invoker"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFDTutenkash"] = {
Title = AL["Tuten'kash"];
Next_Page = "RFDLadyF";
Next_Title = AL["Lady Falther'ess"].." ("..AL["Scourge Invasion"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFDLadyF"] = {
Title = AL["Lady Falther'ess"].." ("..AL["Scourge Invasion"]..")";
@@ -2192,6 +2841,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Plaguemaw the Rotting"];
Prev_Page = "RFDTutenkash";
Prev_Title = AL["Tuten'kash"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFDPlaguemaw"] = {
Title = AL["Plaguemaw the Rotting"];
@@ -2199,6 +2850,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Mordresh Fire Eye"];
Prev_Page = "RFDLadyF";
Prev_Title = AL["Lady Falther'ess"].." ("..AL["Scourge Invasion"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFDMordreshFireEye"] = {
Title = AL["Mordresh Fire Eye"];
@@ -2206,6 +2859,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Glutton"];
Prev_Page = "RFDPlaguemaw";
Prev_Title = AL["Plaguemaw the Rotting"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFDGlutton"] = {
Title = AL["Glutton"];
@@ -2213,6 +2868,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ragglesnout"].." ("..AL["Rare"]..")";
Prev_Page = "RFDMordreshFireEye";
Prev_Title = AL["Mordresh Fire Eye"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFDRagglesnout"] = {
Title = AL["Ragglesnout"].." ("..AL["Rare"]..")";
@@ -2220,6 +2877,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Amnennar the Coldbringer"];
Prev_Page = "RFDGlutton";
Prev_Title = AL["Glutton"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFDAmnennar"] = {
Title = AL["Amnennar the Coldbringer"];
@@ -2227,16 +2886,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "RFDRagglesnout";
Prev_Title = AL["Ragglesnout"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFDTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "RFDAmnennar";
Prev_Title = AL["Amnennar the Coldbringer"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFKAggem"] = {
Title = AL["Aggem Thorncurse"];
Next_Page = "RFKDeathSpeakerJargba";
Next_Title = AL["Death Speaker Jargba"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFKDeathSpeakerJargba"] = {
Title = AL["Death Speaker Jargba"];
@@ -2244,6 +2909,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Overlord Ramtusk"];
Prev_Page = "RFKAggem";
Prev_Title = AL["Aggem Thorncurse"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFKOverlordRamtusk"] = {
Title = AL["Overlord Ramtusk"];
@@ -2251,6 +2918,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Razorfen Spearhide"].." ("..AL["Rare"]..")";
Prev_Page = "RFKDeathSpeakerJargba";
Prev_Title = AL["Death Speaker Jargba"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFKRazorfenSpearhide"] = {
Title = AL["Razorfen Spearhide"].." ("..AL["Rare"]..")";
@@ -2258,6 +2927,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Agathelos the Raging"];
Prev_Page = "RFKOverlordRamtusk";
Prev_Title = AL["Overlord Ramtusk"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFKAgathelos"] = {
Title = AL["Agathelos the Raging"];
@@ -2265,6 +2936,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Blind Hunter"].." ("..AL["Rare"]..")";
Prev_Page = "RFKRazorfenSpearhide";
Prev_Title = AL["Razorfen Spearhide"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFKBlindHunter"] = {
Title = AL["Blind Hunter"].." ("..AL["Rare"]..")";
@@ -2272,6 +2945,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Charlga Razorflank"];
Prev_Page = "RFKAgathelos";
Prev_Title = AL["Agathelos the Raging"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFKCharlgaRazorflank"] = {
Title = AL["Charlga Razorflank"];
@@ -2279,6 +2954,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Earthcaller Halmgar"].." ("..AL["Rare"]..")";
Prev_Page = "RFKBlindHunter";
Prev_Title = AL["Blind Hunter"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFKEarthcallerHalmgar"] = {
Title = AL["Earthcaller Halmgar"].." ("..AL["Rare"]..")";
@@ -2286,16 +2963,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "RFKCharlgaRazorflank";
Prev_Title = AL["Charlga Razorflank"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["RFKTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "RFKEarthcallerHalmgar";
Prev_Title = AL["Earthcaller Halmgar"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ20Kurinnaxx"] = {
Title = AL["Kurinnaxx"];
Next_Page = "AQ20Andorov";
Next_Title = AL["Lieutenant General Andorov"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ20Andorov"] = {
Title = AL["Lieutenant General Andorov"];
@@ -2303,6 +2986,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AtlasLoot_TableNames["AQ20CAPTAIN"][1];
Prev_Page = "AQ20Kurinnaxx";
Prev_Title = AL["Kurinnaxx"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ20CAPTAIN"] = {
Title = AtlasLoot_TableNames["AQ20CAPTAIN"][1];
@@ -2310,6 +2995,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["General Rajaxx"];
Prev_Page = "AQ20Andorov";
Prev_Title = AL["Lieutenant General Andorov"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ20Rajaxx"] = {
Title = AL["General Rajaxx"];
@@ -2317,6 +3004,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Moam"];
Prev_Page = "AQ20CAPTAIN";
Prev_Title = AtlasLoot_TableNames["AQ20CAPTAIN"][1];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ20Moam"] = {
Title = AL["Moam"];
@@ -2324,6 +3013,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Buru the Gorger"];
Prev_Page = "AQ20Rajaxx";
Prev_Title = AL["General Rajaxx"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ20Buru"] = {
Title = AL["Buru the Gorger"];
@@ -2331,6 +3022,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ayamiss the Hunter"];
Prev_Page = "AQ20Moam";
Prev_Title = AL["Moam"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ20Ayamiss"] = {
Title = AL["Ayamiss the Hunter"];
@@ -2338,6 +3031,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ossirian the Unscarred"];
Prev_Page = "AQ20Buru";
Prev_Title = AL["Buru the Gorger"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ20Ossirian"] = {
Title = AL["Ossirian the Unscarred"];
@@ -2345,6 +3040,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "AQ20Ayamiss";
Prev_Title = AL["Ayamiss the Hunter"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ20Trash"] = {
Title = AL["Trash Mobs"];
@@ -2352,23 +3049,31 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Class Books"];
Prev_Page = "AQ20Ossirian";
Prev_Title = AL["Ossirian the Unscarred"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ20ClassBooks"] = {
Title = AL["Class Books"];
- Next_Page = "AQEnchants";
+ Next_Page = "AQ20Enchants";
Next_Title = AL["AQ Enchants"];
Prev_Page = "AQ20Trash";
Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
- ["AQEnchants"] = {
+ ["AQ20Enchants"] = {
Title = AL["AQ Enchants"];
Prev_Page = "AQ20ClassBooks";
Prev_Title = AL["Class Books"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ40Skeram"] = {
Title = AL["The Prophet Skeram"];
Next_Page = "AQ40Trio";
Next_Title = AL["The Bug Family"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ40Trio"] = {
Title = AL["The Bug Family"];
@@ -2376,6 +3081,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Battleguard Sartura"];
Prev_Page = "AQ40Skeram";
Prev_Title = AL["The Prophet Skeram"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ40Sartura"] = {
Title = AL["Battleguard Sartura"];
@@ -2383,6 +3090,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Fankriss the Unyielding"];
Prev_Page = "AQ40Trio";
Prev_Title = AL["The Bug Family"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ40Fankriss"] = {
Title = AL["Fankriss the Unyielding"];
@@ -2390,6 +3099,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Viscidus"];
Prev_Page = "AQ40Sartura";
Prev_Title = AL["Battleguard Sartura"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ40Viscidus"] = {
Title = AL["Viscidus"];
@@ -2397,6 +3108,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Princess Huhuran"];
Prev_Page = "AQ40Fankriss";
Prev_Title = AL["Fankriss the Unyielding"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ40Huhuran"] = {
Title = AL["Princess Huhuran"];
@@ -2404,6 +3117,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["The Twin Emperors"];
Prev_Page = "AQ40Viscidus";
Prev_Title = AL["Viscidus"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ40Emperors"] = {
Title = AL["The Twin Emperors"];
@@ -2411,6 +3126,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ouro"];
Prev_Page = "AQ40Huhuran";
Prev_Title = AL["Princess Huhuran"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ40Ouro"] = {
Title = AL["Ouro"];
@@ -2418,6 +3135,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["C'Thun"];
Prev_Page = "AQ40Emperors";
Prev_Title = AL["The Twin Emperors"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ40CThun"] = {
Title = AL["C'Thun"];
@@ -2425,6 +3144,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "AQ40Ouro";
Prev_Title = AL["Ouro"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQ40Trash1"] = {
Title = AL["Trash Mobs"];
@@ -2432,6 +3153,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["AQ Enchants"];
Prev_Page = "AQ40CThun";
Prev_Title = AL["C'Thun"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQEnchants"] = {
Title = AL["AQ Enchants"];
@@ -2439,16 +3162,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["AQ Opening Quest Chain"];
Prev_Page = "AQ40Trash1";
Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["AQOpening"] = {
Title = AL["AQ Opening Quest Chain"];
Prev_Page = "AQEnchants";
Prev_Title = AL["AQ Enchants"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["WCLordCobrahn"] = {
Title = AL["Lord Cobrahn"];
Next_Page = "WCLadyAnacondra";
Next_Title = AL["Lady Anacondra"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["WCLadyAnacondra"] = {
Title = AL["Lady Anacondra"];
@@ -2456,6 +3185,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Kresh"];
Prev_Page = "WCLordCobrahn";
Prev_Title = AL["Lord Cobrahn"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["WCKresh"] = {
Title = AL["Kresh"];
@@ -2463,6 +3194,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lord Pythas"];
Prev_Page = "WCLadyAnacondra";
Prev_Title = AL["Lady Anacondra"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["WCLordPythas"] = {
Title = AL["Lord Pythas"];
@@ -2470,6 +3203,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Skum"];
Prev_Page = "WCKresh";
Prev_Title = AL["Kresh"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["WCSkum"] = {
Title = AL["Skum"];
@@ -2477,6 +3212,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lord Serpentis"];
Prev_Page = "WCLordPythas";
Prev_Title = AL["Lord Pythas"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["WCLordSerpentis"] = {
Title = AL["Lord Serpentis"];
@@ -2484,6 +3221,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Verdan the Everliving"];
Prev_Page = "WCSkum";
Prev_Title = AL["Skum"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["WCVerdan"] = {
Title = AL["Verdan the Everliving"];
@@ -2491,6 +3230,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Mutanus the Devourer"];
Prev_Page = "WCLordSerpentis";
Prev_Title = AL["Lord Serpentis"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["WCMutanus"] = {
Title = AL["Mutanus the Devourer"];
@@ -2498,6 +3239,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Deviate Faerie Dragon"].." ("..AL["Rare"]..")";
Prev_Page = "WCVerdan";
Prev_Title = AL["Verdan the Everliving"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["WCDeviateFaerieDragon"] = {
Title = AL["Deviate Faerie Dragon"].." ("..AL["Rare"]..")";
@@ -2505,16 +3248,22 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "WCMutanus";
Prev_Title = AL["Mutanus the Devourer"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["WCTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "WCDeviateFaerieDragon";
Prev_Title = AL["Deviate Faerie Dragon"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZFAntusul"] = {
Title = AL["Antu'sul"];
Next_Page = "ZFWitchDoctorZumrah";
Next_Title = AL["Witch Doctor Zum'rah"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZFWitchDoctorZumrah"] = {
Title = AL["Witch Doctor Zum'rah"];
@@ -2522,6 +3271,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Shadowpriest Sezz'ziz"];
Prev_Page = "ZFAntusul";
Prev_Title = AL["Antu'sul"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZFSezzziz"] = {
Title = AL["Shadowpriest Sezz'ziz"];
@@ -2529,6 +3280,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Dustwraith"].." ("..AL["Rare"]..")";
Prev_Page = "ZFWitchDoctorZumrah";
Prev_Title = AL["Witch Doctor Zum'rah"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZFDustwraith"] = {
Title = AL["Dustwraith"].." ("..AL["Rare"]..")";
@@ -2536,6 +3289,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Zerillis"].." ("..AL["Rare"]..")";
Prev_Page = "ZFSezzziz";
Prev_Title = AL["Shadowpriest Sezz'ziz"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZFZerillis"] = {
Title = AL["Zerillis"].." ("..AL["Rare"]..")";
@@ -2543,6 +3298,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Gahz'rilla"];
Prev_Page = "ZFDustwraith";
Prev_Title = AL["Dustwraith"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZFGahzrilla"] = {
Title = AL["Gahz'rilla"];
@@ -2550,6 +3307,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Chief Ukorz Sandscalp"];
Prev_Page = "ZFZerillis";
Prev_Title = AL["Zerillis"].." ("..AL["Rare"]..")";
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZFChiefUkorzSandscalp"] = {
Title = AL["Chief Ukorz Sandscalp"];
@@ -2557,11 +3316,15 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "ZFGahzrilla";
Prev_Title = AL["Gahz'rilla"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
["ZFTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "ZFChiefUkorzSandscalp";
Prev_Title = AL["Chief Ukorz Sandscalp"];
+ Back_Page = "DUNGEONSMENU1";
+ Back_Title = AL["Dungeons & Raids"];
};
-- Emerald Sanctum
@@ -2569,8 +3332,8 @@ AtlasLoot_ButtonRegistry = {
Title = AL["Erennius"];
Next_Page = "ESSolnius1";
Next_Title = AL["Solnius the Awakener"];
- Prev_Page = "ESTrash";
- Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ESSolnius1"] = {
Title = AL["Solnius the Awakener"];
@@ -2578,6 +3341,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Solnius the Awakener (Page 2)"];
Prev_Page = "ESErennius";
Prev_Title = AL["Erennius"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ESSolnius2"] = {
Title = AL["Solnius the Awakener (Page 2)"];
@@ -2585,6 +3350,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Favor of Erennius (ES Hard Mode)"];
Prev_Page = "ESSolnius1";
Prev_Title = AL["Solnius the Awakener"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ESHardMode"] = {
Title = AL["Favor of Erennius (ES Hard Mode)"];
@@ -2592,13 +3359,15 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "ESSolnius2";
Prev_Title = AL["Solnius the Awakener"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["ESTrash"] = {
Title = AL["Trash Mobs"];
- Next_Page = "ESErennius";
- Next_Title = AL["Erennius"];
Prev_Page = "ESSolnius2";
Prev_Title = AL["Solnius the Awakener (Page 2)"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
-- Lower Karazhan Halls
@@ -2606,8 +3375,8 @@ AtlasLoot_ButtonRegistry = {
Title = AL["Master Blacksmith Rolfen"];
Next_Page = "LKHBroodQueenAraxxna";
Next_Title = AL["Brood Queen Araxxna"];
- Prev_Page = "LKHEnchants";
- Prev_Title = AL["LKH Enchants"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["LKHBroodQueenAraxxna"] = {
Title = AL["Brood Queen Araxxna"];
@@ -2615,6 +3384,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Grizikil"];
Prev_Page = "LKHRolfen";
Prev_Title = AL["Master Blacksmith Rolfen"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["LKHGrizikil"] = {
Title = AL["Grizikil"];
@@ -2622,6 +3393,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Clawlord Howlfang"];
Prev_Page = "LKHBroodQueenAraxxna";
Prev_Title = AL["Brood Queen Araxxna"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["LKHClawlordHowlfang"] = {
Title = AL["Clawlord Howlfang"];
@@ -2629,6 +3402,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lord Blackwald II"];
Prev_Page = "LKHGrizikil";
Prev_Title = AL["Grizikil"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["LKHLordBlackwaldII"] = {
Title = AL["Lord Blackwald II"];
@@ -2636,6 +3411,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Moroes"];
Prev_Page = "LKHClawlordHowlfang";
Prev_Title = AL["Clawlord Howlfang"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["LKHMoroes"] = {
Title = AL["Moroes"];
@@ -2643,6 +3420,8 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Trash Mobs"];
Prev_Page = "LKHLordBlackwaldII";
Prev_Title = AL["Lord Blackwald II"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["LKHTrash"] = {
Title = AL["Trash Mobs"];
@@ -2650,15 +3429,21 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["LKH Enchants"];
Prev_Page = "LKHMoroes";
Prev_Title = AL["Moroes"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
["LKHEnchants"] = {
Title = AL["LKH Enchants"];
- Next_Page = "LKHRolfen";
- Next_Title = AL["Master Blacksmith Rolfen"];
Prev_Page = "LKHTrash";
Prev_Title = AL["Trash Mobs"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
+ };
+ ["Onyxia"] = {
+ Title = AL["Onyxia's Lair"];
+ Back_Page = "DUNGEONSMENU2";
+ Back_Title = AL["Dungeons & Raids"];
};
-
-- World Bosses
["AAzuregos"] = {
Title = AL["Azuregos"];
@@ -2740,7 +3525,7 @@ AtlasLoot_ButtonRegistry = {
["Concavius"] = {
Title = AL["Concavius"];
Next_Page = "CowKing";
- Next_Title = AL["The Cow King"];
+ Next_Title = AL["There Is No Cow Level"];
Prev_Page = "Ostarius";
Prev_Title = AL["Ostarius"];
Back_Page = "WORLDBOSSMENU"
@@ -2757,8 +3542,6 @@ AtlasLoot_ButtonRegistry = {
Title = AL["Earthcaller Rezengal"];
Next_Page = "ShadeMage";
Next_Title = AL["Shade Mage"];
- Prev_Page = "M0L1Y";
- Prev_Title = AL["M-0L1Y"];
};
["ShadeMage"] = {
Title = AL["Shade Mage"];
@@ -3000,8 +3783,6 @@ AtlasLoot_ButtonRegistry = {
};
["M0L1Y"] = {
Title = AL["M-0L1Y"];
- Next_Page = "EarthcallerRezengal";
- Next_Title = AL["Earthcaller Rezengal"];
Prev_Page = "WidowoftheWoods";
Prev_Title = AL["Widow of the Woods"];
};
@@ -3479,7 +4260,7 @@ AtlasLoot_ButtonRegistry = {
Prev_Page = "WSGRepExalted5059";
};
["PvP60Accessories1"] = {
- Title = AL["PvP Trinkets"];
+ Title = AL["PvP Accessories"];
Next_Page = "PvP60Accessories2";
Next_Title = AtlasLoot_TableNames["PvP60Accessories2"][1];
Back_Page = "PVPMENU";
@@ -3502,16 +4283,16 @@ AtlasLoot_ButtonRegistry = {
Back_Title = AL["PvP Rewards"];
};
["PVPWeapons1"] = {
- Title = AL["Rank 14 Weapons"];
+ Title = AL["PvP Weapons"];
Next_Page = "PVPWeapons2";
- Next_Title = AL["Rank 14 Weapons"];
+ Next_Title = AL["PvP Weapons"];
Back_Page = "PVPMENU";
Back_Title = AL["PvP Rewards"];
};
["PVPWeapons2"] = {
- Title = AL["Rank 14 Weapons"];
+ Title = AL["PvP Weapons"];
Prev_Page = "PVPWeapons1";
- Prev_Title = AL["Rank 14 Weapons"];
+ Prev_Title = AL["PvP Weapons"];
Back_Page = "PVPMENU";
Back_Title = AL["PvP Rewards"];
};
@@ -4073,7 +4854,7 @@ AtlasLoot_ButtonRegistry = {
["CraftedWeapons1"] = {
Title = AL["Crafted Epic Weapons"];
Back_Page = "CRAFTINGMENU";
- Back_Title = AL["Collections"];
+ Back_Title = AL["Crafting"];
};
["Tabards"] = {
Title = AL["Tabards"];
@@ -4970,7 +5751,7 @@ AtlasLoot_ButtonRegistry = {
Title = AL["Gnomish Engineering"];
Back_Page = "ENGINEERINGMENU";
Back_Title = AL["Engineering"];
- Prev_Page = "EngineeringMisc2";
+ Prev_Page = "EngineeringMisc3";
Prev_Title = AL["Engineering"] .. ": " .. AL["Misc"];
Next_Page = "Goblin1";
Next_Title = AL["Goblin Engineering"];
@@ -5101,8 +5882,8 @@ AtlasLoot_ButtonRegistry = {
Title = AL["Leatherworking"] .. ": " .. AL["Bracers"];
Back_Page = "LEATHERWORKINGMENU";
Back_Title = AL["Leatherworking"];
- Prev_Page = "LeatherCloak1";
- Prev_Title = AL["Leatherworking"] .. ": " .. AL["Cloak"];
+ Prev_Page = "LeatherChest2";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Chest"];
Next_Page = "LeatherGloves1";
Next_Title = AL["Leatherworking"] .. ": " .. AL["Gloves"];
};
@@ -5211,14 +5992,14 @@ AtlasLoot_ButtonRegistry = {
["Mining1"] = {
Title = AL["Mining"];
Back_Page = "MININGMENU";
- Back_Title = AL["Crafting"];
+ Back_Title = AL["Mining"];
Next_Page = "Mining2";
Next_Title = AL["Mining"];
};
["Mining2"] = {
Title = AL["Mining"];
Back_Page = "MININGMENU";
- Back_Title = AL["Crafting"];
+ Back_Title = AL["Mining"];
Next_Page = "Smelting1";
Next_Title = AL["Smelting"];
Prev_Page = "Mining1";
@@ -5227,7 +6008,7 @@ AtlasLoot_ButtonRegistry = {
["Smelting1"] = {
Title = AL["Smelting"];
Back_Page = "MININGMENU";
- Back_Title = AL["Crafting"];
+ Back_Title = AL["Mining"];
Prev_Page = "Mining2";
Prev_Title = AL["Mining"];
};
@@ -5352,8 +6133,8 @@ AtlasLoot_ButtonRegistry = {
Back_Title = AL["Tailoring"];
Prev_Page = "TailoringShoulders1";
Prev_Title = AL["Tailoring"] .. ": " .. AL["Shoulders"];
- Next_Page = "TailoringBracers1";
- Next_Title = AL["Tailoring"] .. ": " .. AL["Bracers"];
+ Next_Page = "TailoringChest1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Chest"];
};
["TailoringChest1"] = {
Title = AL["Tailoring"] .. ": " .. AL["Chest"];
@@ -5361,7 +6142,7 @@ AtlasLoot_ButtonRegistry = {
Back_Title = AL["Tailoring"];
Prev_Page = "TailoringCloak1";
Prev_Title = AL["Tailoring"] .. ": " .. AL["Cloak"];
- Next_Page = "LeatherChest2";
+ Next_Page = "TailoringChest2";
Next_Title = AL["Tailoring"] .. ": " .. AL["Chest"];
};
["TailoringChest2"] = {
diff --git a/Core/Crafting.lua b/Core/Crafting.lua
index 6733d01..c5ed26a 100644
--- a/Core/Crafting.lua
+++ b/Core/Crafting.lua
@@ -12,6 +12,8 @@ function AtlasLoot_CraftingMenu()
getglobal("AtlasLootMenuItem_"..i):Hide();
getglobal("AtlasLootMenuItem_"..i).isheader = false;
end
+ AtlasLootCharDB.LastBoss = "CRAFTINGMENU"
+ AtlasLootCharDB.LastBossText = "Crafting"
getglobal("AtlasLootItemsFrame_BACK"):Hide();
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
diff --git a/Core/Dungeons.lua b/Core/Dungeons.lua
new file mode 100644
index 0000000..9430c70
--- /dev/null
+++ b/Core/Dungeons.lua
@@ -0,0 +1,288 @@
+local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
+
+local RED = "|cffff0000";
+local ORANGE = "|cffFF8400";
+local WHITE = "|cffFFFFFF";
+
+function AtlasLoot_DungeonsMenu1()
+ for i = 1, 30, 1 do
+ getglobal("AtlasLootItem_"..i):Hide();
+ end
+ for i = 1, 30, 1 do
+ getglobal("AtlasLootMenuItem_"..i):Hide();
+ getglobal("AtlasLootMenuItem_"..i).isheader = false;
+ end
+ AtlasLootCharDB.LastBoss = "DUNGEONSMENU1"
+ AtlasLootCharDB.LastBossText = AL["Dungeons & Raids"]
+ getglobal("AtlasLootItemsFrame_BACK"):Hide();
+ getglobal("AtlasLootItemsFrame_NEXT"):Show();
+ getglobal("AtlasLootItemsFrame_PREV"):Hide();
+ getglobal("AtlasLootServerQueryButton"):Hide();
+ --RFC
+ AtlasLootMenuItem_1_Name:SetText(AL["Ragefire Chasm"]);
+ AtlasLootMenuItem_1_Extra:SetText(AL["Orgrimmar"]);
+ AtlasLootMenuItem_1_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_1.lootpage="RFCTaragaman";
+ AtlasLootMenuItem_1:Show();
+ --WC
+ AtlasLootMenuItem_2_Name:SetText(AL["Wailing Caverns"]);
+ AtlasLootMenuItem_2_Extra:SetText(AL["Barrens"]);
+ AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_2.lootpage="WCLordCobrahn";
+ AtlasLootMenuItem_2:Show();
+ --DM
+ AtlasLootMenuItem_3_Name:SetText(AL["The Deadmines"]);
+ AtlasLootMenuItem_3_Extra:SetText(AL["Westfall"]);
+ AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_3.lootpage="DMRhahkZor";
+ AtlasLootMenuItem_3:Show();
+ --SFK
+ AtlasLootMenuItem_4_Name:SetText(AL["Shadowfang Keep"]);
+ AtlasLootMenuItem_4_Extra:SetText(AL["Silverpine Forest"]);
+ AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_4.lootpage="SFKRethilgore";
+ AtlasLootMenuItem_4:Show();
+ --BFD
+ AtlasLootMenuItem_5_Name:SetText(AL["Blackfathom Deeps"]);
+ AtlasLootMenuItem_5_Extra:SetText(AL["Ashenvale"]);
+ AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_5.lootpage="BFDGhamoora";
+ AtlasLootMenuItem_5:Show();
+ --Stockades
+ AtlasLootMenuItem_6_Name:SetText(AL["The Stockade"]);
+ AtlasLootMenuItem_6_Extra:SetText(AL["Stormwind"]);
+ AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_6.lootpage="SWStTargorr";
+ AtlasLootMenuItem_6:Show();
+ --Gnomer
+ AtlasLootMenuItem_7_Name:SetText(AL["Gnomeregan"]);
+ AtlasLootMenuItem_7_Extra:SetText(AL["Dun Morogh"]);
+ AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_7.lootpage="GnGrubbis";
+ AtlasLootMenuItem_7:Show();
+ --RFK
+ AtlasLootMenuItem_8_Name:SetText(AL["Razorfen Kraul"]);
+ AtlasLootMenuItem_8_Extra:SetText(AL["Barrens"]);
+ AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_8.lootpage="RFKAggem";
+ AtlasLootMenuItem_8:Show();
+ --Crescent Grove
+ AtlasLootMenuItem_9_Name:SetText(AL["The Crescent Grove"]);
+ AtlasLootMenuItem_9_Extra:SetText(AL["Ashenvale"]);
+ AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_9.lootpage="TCGGrovetenderEngryss";
+ AtlasLootMenuItem_9:Show();
+ --SM GY
+ AtlasLootMenuItem_10_Name:SetText(AL["Scarlet Monastery (Graveyard)"]);
+ AtlasLootMenuItem_10_Extra:SetText(AL["Silverpine Forest"]);
+ AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_10.lootpage="SMVishas";
+ AtlasLootMenuItem_10:Show();
+ --SM Library
+ AtlasLootMenuItem_11_Name:SetText(AL["Scarlet Monastery (Library)"]);
+ AtlasLootMenuItem_11_Extra:SetText(AL["Silverpine Forest"]);
+ AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_11.lootpage="SMHoundmasterLoksey";
+ AtlasLootMenuItem_11:Show();
+ --SM Armory
+ AtlasLootMenuItem_12_Name:SetText(AL["Scarlet Monastery (Armory)"]);
+ AtlasLootMenuItem_12_Extra:SetText(AL["Silverpine Forest"]);
+ AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_12.lootpage="SMHerod";
+ AtlasLootMenuItem_12:Show();
+ --SM Cathedral
+ AtlasLootMenuItem_13_Name:SetText(AL["Scarlet Monastery (Cathedral)"]);
+ AtlasLootMenuItem_13_Extra:SetText(AL["Silverpine Forest"]);
+ AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_13.lootpage="SMFairbanks";
+ AtlasLootMenuItem_13:Show();
+ --RFD
+ AtlasLootMenuItem_14_Name:SetText(AL["Razorfen Downs"]);
+ AtlasLootMenuItem_14_Extra:SetText(AL["Barrens"]);
+ AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_14.lootpage="RFDTutenkash";
+ AtlasLootMenuItem_14:Show();
+ --Uldaman
+ AtlasLootMenuItem_15_Name:SetText(AL["Uldaman"]);
+ AtlasLootMenuItem_15_Extra:SetText(AL["Badlands"]);
+ AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_15.lootpage="UldBaelog";
+ AtlasLootMenuItem_15:Show();
+ --Gilneas
+ AtlasLootMenuItem_16_Name:SetText(AL["Gilneas City"]);
+ AtlasLootMenuItem_16_Extra:SetText(AL["Gilneas"]);
+ AtlasLootMenuItem_16_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_16.lootpage="GCMatthiasHoltz";
+ AtlasLootMenuItem_16:Show();
+ --Mara
+ AtlasLootMenuItem_17_Name:SetText(AL["Maraudon"]);
+ AtlasLootMenuItem_17_Extra:SetText(AL["Desolace"]);
+ AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_17.lootpage="MaraNoxxion";
+ AtlasLootMenuItem_17:Show();
+ --ZF
+ AtlasLootMenuItem_18_Name:SetText(AL["Zul'Farrak"]);
+ AtlasLootMenuItem_18_Extra:SetText(AL["Tanaris"]);
+ AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_18.lootpage="ZFAntusul";
+ AtlasLootMenuItem_18:Show();
+ --ST
+ AtlasLootMenuItem_19_Name:SetText(AL["The Sunken Temple"]);
+ AtlasLootMenuItem_19_Extra:SetText(AL["Swamp of Sorrows"]);
+ AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_19.lootpage="STBalconyMinibosses";
+ AtlasLootMenuItem_19:Show();
+ --HFQ
+ AtlasLootMenuItem_20_Name:SetText(AL["Hateforge Quarry"]);
+ AtlasLootMenuItem_20_Extra:SetText(AL["Burning Steppes"]);
+ AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_20.lootpage="HQHighForemanBargulBlackhammer";
+ AtlasLootMenuItem_20:Show();
+ --BRD
+ AtlasLootMenuItem_21_Name:SetText(AL["Blackrock Depths"]);
+ AtlasLootMenuItem_21_Extra:SetText(AL["Burning Steppes"]);
+ AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_21.lootpage="BRDLordRoccor";
+ AtlasLootMenuItem_21:Show();
+ --DME
+ AtlasLootMenuItem_22_Name:SetText(AL["Dire Maul (East)"]);
+ AtlasLootMenuItem_22_Extra:SetText(AL["Feralas"]);
+ AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_22.lootpage="DMEPusillin";
+ AtlasLootMenuItem_22:Show();
+ --DMW
+ AtlasLootMenuItem_23_Name:SetText(AL["Dire Maul (West)"]);
+ AtlasLootMenuItem_23_Extra:SetText(AL["Feralas"]);
+ AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_23.lootpage="DMWTendrisWarpwood";
+ AtlasLootMenuItem_23:Show();
+ --DMN
+ AtlasLootMenuItem_24_Name:SetText(AL["Dire Maul (North)"]);
+ AtlasLootMenuItem_24_Extra:SetText(AL["Feralas"]);
+ AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_24.lootpage="DMNGuardMoldar";
+ AtlasLootMenuItem_24:Show();
+ --Scholo
+ AtlasLootMenuItem_25_Name:SetText(AL["Scholomance"]);
+ AtlasLootMenuItem_25_Extra:SetText(AL["Western Plaguelands"]);
+ AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_25.lootpage="SCHOLOBlood";
+ AtlasLootMenuItem_25:Show();
+ --Strat
+ AtlasLootMenuItem_26_Name:SetText(AL["Stratholme"]);
+ AtlasLootMenuItem_26_Extra:SetText(AL["Eastern Plaguelands"]);
+ AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_26.lootpage="STRATSkull";
+ AtlasLootMenuItem_26:Show();
+ --LBRS
+ AtlasLootMenuItem_27_Name:SetText(AL["Lower Blackrock Spire"]);
+ AtlasLootMenuItem_27_Extra:SetText(AL["Burning Steppes"]);
+ AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_27.lootpage="LBRSSpirestoneButcher";
+ AtlasLootMenuItem_27:Show();
+ --UBRS
+ AtlasLootMenuItem_28_Name:SetText(AL["Upper Blackrock Spire"]);
+ AtlasLootMenuItem_28_Extra:SetText(AL["Burning Steppes"]);
+ AtlasLootMenuItem_28_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_28.lootpage="UBRSEmberseer";
+ AtlasLootMenuItem_28:Show();
+ --Kara crypt
+ AtlasLootMenuItem_29_Name:SetText(AL["Karazhan Crypt"]);
+ AtlasLootMenuItem_29_Extra:SetText(AL["Deadwind Pass"]);
+ AtlasLootMenuItem_29_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_29.lootpage="KCMarrowspike";
+ AtlasLootMenuItem_29:Show()
+ --CoT:BM
+ AtlasLootMenuItem_30_Name:SetText(AL["Caverns of Time: Black Morass"]);
+ AtlasLootMenuItem_30_Extra:SetText(AL["Caverns of Time"]);
+ AtlasLootMenuItem_30_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_30.lootpage="COTBMChronar";
+ AtlasLootMenuItem_30:Show()
+
+ for i = 1, 30, 1 do
+ getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
+ end
+ AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["Dungeons & Raids"]);
+ AtlasLoot_SetItemInfoFrame(AtlasLoot_AnchorFrame);
+end
+
+function AtlasLoot_DungeonsMenu2()
+ for i = 1, 30, 1 do
+ getglobal("AtlasLootItem_"..i):Hide();
+ end
+ for i = 1, 30, 1 do
+ getglobal("AtlasLootMenuItem_"..i):Hide();
+ getglobal("AtlasLootMenuItem_"..i).isheader = false;
+ end
+ AtlasLootCharDB.LastBoss = "DUNGEONSMENU2"
+ AtlasLootCharDB.LastBossText = AL["Dungeons & Raids"]
+ getglobal("AtlasLootItemsFrame_BACK"):Hide();
+ getglobal("AtlasLootItemsFrame_NEXT"):Hide();
+ getglobal("AtlasLootItemsFrame_PREV"):Show();
+ getglobal("AtlasLootServerQueryButton"):Hide();
+ --SWV
+ AtlasLootMenuItem_1_Name:SetText(AL["Stormwind Vault"]);
+ AtlasLootMenuItem_1_Extra:SetText(AL["Stormwind"]);
+ AtlasLootMenuItem_1_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalIronForge");
+ AtlasLootMenuItem_1.lootpage="SWVAszoshGrimflame";
+ AtlasLootMenuItem_1:Show();
+ --ZG
+ AtlasLootMenuItem_3_Name:SetText(AL["Zul'Gurub"]);
+ AtlasLootMenuItem_3_Extra:SetText(AL["Stranglethorn Vale"]);
+ AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalOrgrimmar");
+ AtlasLootMenuItem_3.lootpage="ZGJeklik";
+ AtlasLootMenuItem_3:Show();
+ --AQ20
+ AtlasLootMenuItem_4_Name:SetText(AL["Ruins of Ahn'Qiraj"]);
+ AtlasLootMenuItem_4_Extra:SetText(AL["Silithus"]);
+ AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalOrgrimmar");
+ AtlasLootMenuItem_4.lootpage="AQ20Kurinnaxx";
+ AtlasLootMenuItem_4:Show();
+ --MC
+ AtlasLootMenuItem_5_Name:SetText(AL["Molten Core"]);
+ AtlasLootMenuItem_5_Extra:SetText(AL["Burning Steppes"]);
+ AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalOrgrimmar");
+ AtlasLootMenuItem_5.lootpage="MCLucifron";
+ AtlasLootMenuItem_5:Show();
+ --Ony
+ AtlasLootMenuItem_6_Name:SetText(AL["Onyxia's Lair"]);
+ AtlasLootMenuItem_6_Extra:SetText(AL["Dustwallow Marsh"]);
+ AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalOrgrimmar");
+ AtlasLootMenuItem_6.lootpage="Onyxia";
+ AtlasLootMenuItem_6:Show();
+ --LKH
+ AtlasLootMenuItem_7_Name:SetText(AL["Lower Karazhan Halls"]);
+ AtlasLootMenuItem_7_Extra:SetText(AL["Deadwind Pass"]);
+ AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalOrgrimmar");
+ AtlasLootMenuItem_7.lootpage="LKHRolfen";
+ AtlasLootMenuItem_7:Show();
+ --BWL
+ AtlasLootMenuItem_8_Name:SetText(AL["Blackwing Lair"]);
+ AtlasLootMenuItem_8_Extra:SetText(AL["Burning Steppes"]);
+ AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalOrgrimmar");
+ AtlasLootMenuItem_8.lootpage="BWLRazorgore";
+ AtlasLootMenuItem_8:Show();
+ --ES
+ AtlasLootMenuItem_9_Name:SetText(AL["Emerald Sanctum"]);
+ AtlasLootMenuItem_9_Extra:SetText(AL["Hyjal"]);
+ AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalOrgrimmar");
+ AtlasLootMenuItem_9.lootpage="ESErennius";
+ AtlasLootMenuItem_9:Show();
+ --AQ40
+ AtlasLootMenuItem_10_Name:SetText(AL["Temple of Ahn'Qiraj"]);
+ AtlasLootMenuItem_10_Extra:SetText(AL["Silithus"]);
+ AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalOrgrimmar");
+ AtlasLootMenuItem_10.lootpage="AQ40Skeram";
+ AtlasLootMenuItem_10:Show();
+ --Naxx
+ AtlasLootMenuItem_11_Name:SetText(AL["Naxxramas"]);
+ AtlasLootMenuItem_11_Extra:SetText(AL["Eastern Plaguelands"]);
+ AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Spell_Arcane_PortalOrgrimmar");
+ AtlasLootMenuItem_11.lootpage="NAXPatchwerk";
+ AtlasLootMenuItem_11:Show();
+ for i = 1, 30, 1 do
+ getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
+ end
+ AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["Dungeons & Raids"]);
+ AtlasLoot_SetItemInfoFrame(AtlasLoot_AnchorFrame);
+end
\ No newline at end of file
diff --git a/Core/Factions.lua b/Core/Factions.lua
index 1f953cc..c554730 100644
--- a/Core/Factions.lua
+++ b/Core/Factions.lua
@@ -10,6 +10,8 @@ function AtlasLootRepMenu()
getglobal("AtlasLootMenuItem_"..i):Hide();
getglobal("AtlasLootMenuItem_"..i).isheader = false;
end
+ AtlasLootCharDB.LastBoss = "REPMENU"
+ AtlasLootCharDB.LastBossText = "Factions"
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
getglobal("AtlasLootItemsFrame_BACK"):Hide();
diff --git a/Core/PvP.lua b/Core/PvP.lua
index 72630ce..a259dcd 100644
--- a/Core/PvP.lua
+++ b/Core/PvP.lua
@@ -11,6 +11,8 @@ function AtlasLootPvPMenu()
getglobal("AtlasLootMenuItem_"..i):Hide();
getglobal("AtlasLootMenuItem_"..i).isheader = false;
end
+ AtlasLootCharDB.LastBoss = "PVPMENU"
+ AtlasLootCharDB.LastBossText = "PvP Rewards"
getglobal("AtlasLootItemsFrame_BACK"):Hide();
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
diff --git a/Core/Sets.lua b/Core/Sets.lua
index 5532dbd..de436de 100644
--- a/Core/Sets.lua
+++ b/Core/Sets.lua
@@ -10,6 +10,8 @@ function AtlasLootSetMenu()
getglobal("AtlasLootMenuItem_"..i):Hide();
getglobal("AtlasLootMenuItem_"..i).isheader = false;
end
+ AtlasLootCharDB.LastBoss = "SETMENU"
+ AtlasLootCharDB.LastBossText = "Collections"
getglobal("AtlasLootItemsFrame_BACK"):Hide();
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
diff --git a/Core/WorldBoss.lua b/Core/WorldBoss.lua
index 77372d7..ded27ae 100644
--- a/Core/WorldBoss.lua
+++ b/Core/WorldBoss.lua
@@ -8,6 +8,8 @@ function AtlasLoot_WorldBossMenu()
getglobal("AtlasLootMenuItem_"..i):Hide();
getglobal("AtlasLootMenuItem_"..i).isheader = false;
end
+ AtlasLootCharDB.LastBoss = "WORLDBOSSMENU"
+ AtlasLootCharDB.LastBossText = "World Bosses"
getglobal("AtlasLootItemsFrame_BACK"):Hide();
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
diff --git a/Core/WorldEvents.lua b/Core/WorldEvents.lua
index bc1cf3c..1c4f66d 100644
--- a/Core/WorldEvents.lua
+++ b/Core/WorldEvents.lua
@@ -10,6 +10,8 @@ function AtlasLootWorldEventMenu()
getglobal("AtlasLootMenuItem_"..i):Hide();
getglobal("AtlasLootMenuItem_"..i).isheader = false;
end
+ AtlasLootCharDB.LastBoss = "WORLDEVENTMENU"
+ AtlasLootCharDB.LastBossText = "World Events"
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
getglobal("AtlasLootItemsFrame_BACK"):Hide();
diff --git a/Instances/instances.en.lua b/Instances/instances.en.lua
index 7db1a31..695befe 100644
--- a/Instances/instances.en.lua
+++ b/Instances/instances.en.lua
@@ -216,7 +216,7 @@ AtlasLootBossButtons = {
"DMTome";
"";
"DMETrash";
- "DMBooks";
+ "DMEBooks";
"IRONWEAVE";
};
DireMaulNorth = {
@@ -245,7 +245,7 @@ AtlasLootBossButtons = {
"DMTome";
"";
"DMNTrash";
- "DMBooks";
+ "DMNBooks";
"DMNTRIBUTERUN";
};
DireMaulWest = {
@@ -277,7 +277,7 @@ AtlasLootBossButtons = {
"DMTome";
"";
"DMWTrash";
- "DMBooks";
+ "DMWBooks";
};
DireMaulEnt = {
"";
@@ -723,7 +723,7 @@ AtlasLootBossButtons = {
"";
"AQ20Trash";
"AQ20ClassBooks";
- "AQEnchants";
+ "AQ20Enchants";
"AQ20SET";
};
TheStockade = {
@@ -2512,6 +2512,15 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 20730, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Healing Power", "=ds=#p4# #m14#", "1%" },
{ 20727, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Shadow Power", "=ds=#p4# #m14#", "1%" },
};
+ AQ20Enchants = {
+ { 20728, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Frost Power", "=ds=#p4# #m14#", "1%" },
+ { 20731, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Superior Agility", "=ds=#p4# #m14#", "1%" },
+ { 20734, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Stealth", "=ds=#p4# #m14#", "1%" },
+ { 20729, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Fire Power", "=ds=#p4# #m14#", "1%" },
+ { 20736, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Dodge", "=ds=#p4# #m14#", "1%" },
+ { 20730, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Healing Power", "=ds=#p4# #m14#", "1%" },
+ { 20727, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Shadow Power", "=ds=#p4# #m14#", "1%" },
+ };
AQOpening = {
{ 21138, "INV_Misc_Gem_Ruby_03", "=q1=Red Scepter Shard", "=ds=#m3#" },
{ 21529, "INV_Jewelry_Necklace_17", "=q4=Amulet of Shadow Shielding", "=ds=#s2#" },
@@ -4933,7 +4942,65 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 18334,"INV_Misc_Book_11","=q2=Libram of Protection","=ds=#e20#", "1-2%" },
{ 18332,"INV_Misc_Book_02","=q2=Libram of Rapidity","=ds=#e20#", "1-2%" },
};
- DMBooks = {
+ DMNBooks = {
+ { 18401,"INV_Misc_Book_11","=q4=Foror's Compendium of Dragon Slaying","=ds=#e20# =q17=#c9#=ds=, =q16=#c4#" },
+ { 0,"","","" },
+ { 18362, "INV_Misc_Book_08", "=q3=Holy Bologna: What the Light Won't Tell You", "=ds=#e20# =q9=#c5#" },
+ { 18358, "INV_Misc_Book_01", "=q3=The Arcanist's Cookbook", "=ds=#e20# =q10=#c3#" },
+ { 18360, "INV_Misc_Book_05", "=q3=Harnessing Shadows", "=ds=#e20# =q11=#c8#" },
+ { 18356, "INV_Misc_Book_06", "=q3=Garona: A Study on Stealth and Treachery", "=ds=#e20# =q12=#c6#" },
+ { 18364, "INV_Misc_Book_10", "=q3=The Emerald Dream", "=ds=#e20# =q13=#c1#" },
+ { 18361, "INV_Misc_Book_02", "=q3=The Greatest Race of Hunters", "=ds=#e20# =q14=#c2#" },
+ { 18363, "INV_Misc_Book_04", "=q3=Frost Shock and You", "=ds=#e20# =q15=#c7#" },
+ { 18359, "INV_Misc_Book_11", "=q3=The Light and How to Swing It", "=ds=#e20# =q16=#c4#" },
+ { 18357, "INV_Misc_Book_07", "=q3=Codex of Defense", "=ds=#e20# =q17=#c9#" },
+ { 0,"","","" },
+ { 18333,"INV_Misc_Book_04","=q2=Libram of Focus","=ds=#e20#" },
+ { 18334,"INV_Misc_Book_11","=q2=Libram of Protection","=ds=#e20#" },
+ { 18332,"INV_Misc_Book_02","=q2=Libram of Rapidity","=ds=#e20#" },
+ { 18348,"INV_Sword_01","=q4=Quel'Serrar","=q1=#m4# =ds=#h3#, #w10#" },
+ { 0,"","","" },
+ { 18469, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q9=#c5#" },
+ { 18468, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q10=#c3#" },
+ { 18467, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q11=#c8#" },
+ { 18465, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q12=#c6#" },
+ { 18470, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q13=#c1#" },
+ { 18473, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q14=#c2#" },
+ { 18471, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q15=#c7#" },
+ { 18472, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q16=#c4#" },
+ { 18466, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q17=#c9#" },
+ { 0,"","","" },
+ };
+ DMEBooks = {
+ { 18401,"INV_Misc_Book_11","=q4=Foror's Compendium of Dragon Slaying","=ds=#e20# =q17=#c9#=ds=, =q16=#c4#" },
+ { 0,"","","" },
+ { 18362, "INV_Misc_Book_08", "=q3=Holy Bologna: What the Light Won't Tell You", "=ds=#e20# =q9=#c5#" },
+ { 18358, "INV_Misc_Book_01", "=q3=The Arcanist's Cookbook", "=ds=#e20# =q10=#c3#" },
+ { 18360, "INV_Misc_Book_05", "=q3=Harnessing Shadows", "=ds=#e20# =q11=#c8#" },
+ { 18356, "INV_Misc_Book_06", "=q3=Garona: A Study on Stealth and Treachery", "=ds=#e20# =q12=#c6#" },
+ { 18364, "INV_Misc_Book_10", "=q3=The Emerald Dream", "=ds=#e20# =q13=#c1#" },
+ { 18361, "INV_Misc_Book_02", "=q3=The Greatest Race of Hunters", "=ds=#e20# =q14=#c2#" },
+ { 18363, "INV_Misc_Book_04", "=q3=Frost Shock and You", "=ds=#e20# =q15=#c7#" },
+ { 18359, "INV_Misc_Book_11", "=q3=The Light and How to Swing It", "=ds=#e20# =q16=#c4#" },
+ { 18357, "INV_Misc_Book_07", "=q3=Codex of Defense", "=ds=#e20# =q17=#c9#" },
+ { 0,"","","" },
+ { 18333,"INV_Misc_Book_04","=q2=Libram of Focus","=ds=#e20#" },
+ { 18334,"INV_Misc_Book_11","=q2=Libram of Protection","=ds=#e20#" },
+ { 18332,"INV_Misc_Book_02","=q2=Libram of Rapidity","=ds=#e20#" },
+ { 18348,"INV_Sword_01","=q4=Quel'Serrar","=q1=#m4# =ds=#h3#, #w10#" },
+ { 0,"","","" },
+ { 18469, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q9=#c5#" },
+ { 18468, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q10=#c3#" },
+ { 18467, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q11=#c8#" },
+ { 18465, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q12=#c6#" },
+ { 18470, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q13=#c1#" },
+ { 18473, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q14=#c2#" },
+ { 18471, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q15=#c7#" },
+ { 18472, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q16=#c4#" },
+ { 18466, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q17=#c9#" },
+ { 0,"","","" },
+ };
+ DMWBooks = {
{ 18401,"INV_Misc_Book_11","=q4=Foror's Compendium of Dragon Slaying","=ds=#e20# =q17=#c9#=ds=, =q16=#c4#" },
{ 0,"","","" },
{ 18362, "INV_Misc_Book_08", "=q3=Holy Bologna: What the Light Won't Tell You", "=ds=#e20# =q9=#c5#" },
diff --git a/Locale/locale.en.lua b/Locale/locale.en.lua
index 5516317..8face5e 100644
--- a/Locale/locale.en.lua
+++ b/Locale/locale.en.lua
@@ -1236,7 +1236,6 @@ AL:RegisterTranslations("enUS", function() return {
["Lethon"] = true,
["Taerar"] = true,
["Ysondre"] = true,
- ["The Cow King"] = true,
["There Is No Cow Level"] = true,
["Nerubian Overseer"] = true,
["Turtlhu, the Black Turtle of Doom"] = true,
@@ -1377,7 +1376,6 @@ AL:RegisterTranslations("enUS", function() return {
["Plate"] = true,
["Dire Maul"] = "|cffffffff[55-60]|cffffd200 Dire Maul",
["Auchindoun"] = true,
- ["Caverns of Time"] = true,
["Coilfang Reservoir"] = true,
["Hellfire Citadel"] = true,
["Tempest Keep"] = true,
@@ -1438,7 +1436,6 @@ AL:RegisterTranslations("enUS", function() return {
["40-49 Exalted Rewards"] = true,
["50-59 Exalted Rewards"] = true,
["60 Exalted Rewards"] = true,
- ["PvP Trinkets"] = true,
["Cooking Fire"] = true,
["Moonwell"] = true,
["Alchemy Lab"] = true,
@@ -1469,6 +1466,11 @@ AL:RegisterTranslations("enUS", function() return {
["Wildhammer Clan"] = true,
["Undercity"] = true,
["Orgrimmar"] = true,
+ ["Barrens"] = true,
+ ["Westfall"] = true,
+ ["Tirisfal Glades"] = true,
+ ["Silverpine Forest"] = true,
+ ["Ashenvale"] = true,
["Thunder Bluff"] = true,
["Lower Karazhan Halls"] = "|cffff0000[RAID]|cffffd200 Lower Karazhan Halls",
["Emerald Sanctum"] = "|cffff0000[RAID]|cffffd200 Emerald Sanctum",
@@ -1532,5 +1534,15 @@ AL:RegisterTranslations("enUS", function() return {
["Rank 2-9"] = true,
["Donation Rewards"] = true,
["Fashion"] = true,
+ ["Dun Morogh"] = true,
+ ["Badlands"] = true,
+ ["Gilneas"] = true,
+ ["Swamp of Sorrows"] = true,
+ ["Burning Steppes"] = true,
+ ["Feralas"] = true,
+ ["Western Plaguelands"] = true,
+ ["Caverns of Time"] = true,
+ ["Hyjal"] = true,
+ ["Dustwallow Marsh"] = true,
}
end)
diff --git a/TableRegister/loottables.en.lua b/TableRegister/loottables.en.lua
index 1ba7a9f..be61a67 100644
--- a/TableRegister/loottables.en.lua
+++ b/TableRegister/loottables.en.lua
@@ -124,7 +124,7 @@ AtlasLoot_TableNames = {
["DMETrash"] = { AL["Trash Mobs"] .. " (" .. AL["Dire Maul (East)"] .. ")", "AtlasLootItems" },
["DMEShard"] = { AL["Felvine Shard"], "AtlasLootItems" },
["DMTome"] = { AL["A Dusty Tome"], "AtlasLootItems" },
- ["DMBooks"] = { "Dire Maul Books", "AtlasLootItems" },
+ ["DMEBooks"] = { "Dire Maul Books", "AtlasLootItems" },
--Dire Maul North
["DMNGuardMoldar"] = { AL["Guard Mol'dar"], "AtlasLootItems" },
["DMNStomperKreeg"] = { AL["Stomper Kreeg"], "AtlasLootItems" },
@@ -136,6 +136,7 @@ AtlasLoot_TableNames = {
["DMNKingGordok"] = { AL["King Gordok"], "AtlasLootItems" },
["DMNTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Dire Maul (North)"] .. ")", "AtlasLootItems" },
["DMNTRIBUTERUN"] = { AL["DM North Tribute Chest"], "AtlasLootItems" },
+ ["DMNBooks"] = { "Dire Maul Books", "AtlasLootItems" },
--Dire Maul West
["DMWTendrisWarpwood"] = { AL["Tendris Warpwood"], "AtlasLootItems" },
["DMWIllyannaRavenoak"] = { AL["Illyanna Ravenoak"], "AtlasLootItems" },
@@ -147,6 +148,7 @@ AtlasLoot_TableNames = {
["DMWPrinceTortheldrin"] = { AL["Prince Tortheldrin"], "AtlasLootItems" },
["DMWShendralarProvisioner"] = { AL["Shen'dralar Provisioner"], "AtlasLootItems" },
["DMWTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Dire Maul (West)"] .. ")", "AtlasLootItems" },
+ ["DMWBooks"] = { "Dire Maul Books", "AtlasLootItems" },
--Gnomeregan
["GnNamdoBizzfizzle"] = { AL["Namdo Bizzfizzle"], "AtlasLootItems" },
["GnTechbot"] = { AL["Techbot"], "AtlasLootItems" },
@@ -248,7 +250,7 @@ AtlasLoot_TableNames = {
["AQ20Ossirian"] = { AL["Ossirian the Unscarred"], "AtlasLootItems" },
["AQ20Trash"] = { AL["Trash Mobs"] .. " (AQ20)", "AtlasLootItems" },
["AQ20ClassBooks"] = { "AQ Class Books", "AtlasLootItems" },
- ["AQEnchants"] = { "AQ Enchants", "AtlasLootItems" },
+ ["AQ20Enchants"] = { "AQ Enchants", "AtlasLootItems" },
--Scarlet Monestery - Armory
["SMHerod"] = { AL["Herod"], "AtlasLootItems" },
["SMATrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery (Armory)"] .. ")", "AtlasLootItems" },
@@ -409,6 +411,7 @@ AtlasLoot_TableNames = {
["AQ40Trash1"] = { AL["Trash Mobs"] .. " (AQ40)", "AtlasLootItems" },
["AQ40Trash2"] = { AL["Trash Mobs"] .. " (AQ40)", "AtlasLootItems" },
["AQOpening"] = { "AQ Opening Quest Line", "AtlasLootItems" },
+ ["AQEnchants"] = { "AQ Enchants", "AtlasLootItems" },
--Uldaman
["UldMagreganDeepshadow"] = { AL["Magregan Deepshadow"], "AtlasLootItems" },
["UldTabletofRyuneh"] = { "Tablet of Ryun'eh", "AtlasLootItems" },
@@ -1012,8 +1015,8 @@ AtlasLoot_TableNames = {
["PvP60Accessories1"] = { AL["PvP Accessories"], "AtlasLootGeneralPvPItems" },
["PvP60Accessories2"] = { AL["PvP Accessories - Alliance"], "AtlasLootGeneralPvPItems" },
["PvP60Accessories3"] = { AL["PvP Accessories - Horde"], "AtlasLootGeneralPvPItems" },
- ["PVPWeapons1"] = { AL["Rank 14 Weapons"], "AtlasLootGeneralPvPItems" },
- ["PVPWeapons2"] = { AL["Rank 14 Weapons"], "AtlasLootGeneralPvPItems" },
+ ["PVPWeapons1"] = { AL["PvP Weapons"], "AtlasLootGeneralPvPItems" },
+ ["PVPWeapons2"] = { AL["PvP Weapons"], "AtlasLootGeneralPvPItems" },
["PvPMountsPvP"] = { AL["PvP Mounts"], "AtlasLootGeneralPvPItems" },
--Level 60 PvP Sets
["PVPDruid"] = { AL["Druid"] .. " - " .. AL["PvP Sets"], "AtlasLootGeneralPvPItems" },
@@ -1031,6 +1034,8 @@ AtlasLoot_TableNames = {
-------------
--Menus, the entry does nothing, but makes the generalised loot table code less complex
+ ["DUNGEONSMENU1"] = { "dummy", "dummy" },
+ ["DUNGEONSMENU2"] = { "dummy", "dummy" },
["PVPMENU"] = { "dummy", "dummy" },
["PVPSET"] = { "dummy", "dummy" },
["AVRepMenu"] = { "dummy", "dummy" },
@@ -1062,7 +1067,6 @@ AtlasLoot_TableNames = {
["TAILORINGMENU"] = { "dummy", "dummy" },
["COOKINGMENU"] = { "dummy", "dummy" },
["FIRSTAIDMENU"] = { "dummy", "dummy" },
- ["SURVIVALMENU"] = { "dummy", "dummy" },
["WORLDBOSSMENU"] = { "dummy", "dummy" },
["WishList"] = { AL["WishList"], "AtlasLootCharDB" },
--If all else fails!
@@ -1242,7 +1246,7 @@ AtlasLoot_TableNamesBoss = {
["DMETrash"] = { AL["Trash Mobs"] .. " (" .. AL["Dire Maul (East)"] .. ")", "AtlasLootItems" },
["DMEShard"] = { AL["Felvine Shard"], "AtlasLootItems" },
["DMTome"] = { AL["A Dusty Tome"], "AtlasLootItems" },
- ["DMBooks"] = { "Dire Maul Books", "AtlasLootItems" },
+ ["DMEBooks"] = { "Dire Maul Books", "AtlasLootItems" },
},
["Dire Maul North"] = {
["DMNGuardMoldar"] = { AL["Guard Mol'dar"], "AtlasLootItems" },
@@ -1255,6 +1259,7 @@ AtlasLoot_TableNamesBoss = {
["DMNKingGordok"] = { AL["King Gordok"], "AtlasLootItems" },
["DMNTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Dire Maul (North)"] .. ")", "AtlasLootItems" },
["DMNTRIBUTERUN"] = { AL["DM North Tribute Chest"], "AtlasLootItems" },
+ ["DMNBooks"] = { "Dire Maul Books", "AtlasLootItems" },
},
["Dire Maul West"] = {
["DMWTendrisWarpwood"] = { AL["Tendris Warpwood"], "AtlasLootItems" },
@@ -1267,6 +1272,7 @@ AtlasLoot_TableNamesBoss = {
["DMWPrinceTortheldrin"] = { AL["Prince Tortheldrin"], "AtlasLootItems" },
["DMWShendralarProvisioner"] = { AL["Shen'dralar Provisioner"], "AtlasLootItems" },
["DMWTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Dire Maul (West)"] .. ")", "AtlasLootItems" },
+ ["DMWBooks"] = { "Dire Maul Books", "AtlasLootItems" },
},
["Gnomeregan Entrance"] = {
["GnNamdoBizzfizzle"] = { AL["Namdo Bizzfizzle"], "AtlasLootItems" },
@@ -1381,7 +1387,7 @@ AtlasLoot_TableNamesBoss = {
["AQ20Ossirian"] = { AL["Ossirian the Unscarred"], "AtlasLootItems" },
["AQ20Trash"] = { AL["Trash Mobs"] .. " (AQ20)", "AtlasLootItems" },
["AQ20ClassBooks"] = { "AQ Class Books", "AtlasLootItems" },
- ["AQEnchants"] = { "AQ Enchants", "AtlasLootItems" },
+ ["AQ20Enchants"] = { "AQ Enchants", "AtlasLootItems" },
},
["Scarlet Monestery - Armory"] = {
["SMHerod"] = { AL["Herod"], "AtlasLootItems" },
@@ -1510,6 +1516,7 @@ AtlasLoot_TableNamesBoss = {
["AQ40Trash1"] = { AL["Trash Mobs"] .. " (AQ40)", "AtlasLootItems" },
["AQ40Trash2"] = { AL["Trash Mobs"] .. " (AQ40)", "AtlasLootItems" },
["AQOpening"] = { "AQ Opening Quest Line", "AtlasLootItems" },
+ ["AQEnchants"] = { "AQ Enchants", "AtlasLootItems" },
},
["Uldaman Entrance"] = {
["UldMagreganDeepshadow"] = { AL["Magregan Deepshadow"], "AtlasLootItems" },
@@ -2134,8 +2141,8 @@ AtlasLoot_TableNamesBoss = {
["PvP60Accessories1"] = { AL["PvP Accessories"], "AtlasLootGeneralPvPItems" },
["PvP60Accessories2"] = { AL["PvP Accessories - Alliance"], "AtlasLootGeneralPvPItems" },
["PvP60Accessories3"] = { AL["PvP Accessories - Horde"], "AtlasLootGeneralPvPItems" },
- ["PVPWeapons1"] = { AL["Rank 14 Weapons"], "AtlasLootGeneralPvPItems" },
- ["PVPWeapons2"] = { AL["Rank 14 Weapons"], "AtlasLootGeneralPvPItems" },
+ ["PVPWeapons1"] = { AL["PvP Weapons"], "AtlasLootGeneralPvPItems" },
+ ["PVPWeapons2"] = { AL["PvP Weapons"], "AtlasLootGeneralPvPItems" },
["PvPMountsPvP"] = { AL["PvP Mounts"], "AtlasLootGeneralPvPItems" },
--Level 60 PvP Sets
["PVPDruid"] = { AL["Druid"] .. " - " .. AL["PvP Sets"], "AtlasLootGeneralPvPItems" },