diff --git a/.gitignore b/.gitignore
index 44356e3..c6156ca 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,4 +4,6 @@
.install
.lua/*
.vscode
-.idea
\ No newline at end of file
+.idea
+
+.vscode/settings.json
diff --git a/AtlasLoot/AtlasLoot.toc b/AtlasLoot/AtlasLoot.toc
index 49ad473..22fafd6 100644
--- a/AtlasLoot/AtlasLoot.toc
+++ b/AtlasLoot/AtlasLoot.toc
@@ -1,10 +1,10 @@
-## Interface: 30300
+## Interface: 30300
## Title: AtlasLoot Ascension Edition
## Notes: Shows the possible loot from the bosses
-## Author: v7 Rebuid Done by: Anch/Rvng (Original: Hegarol, Ascension: Skray/Szyler/Anch/Rvng)
-## Version: v7.1.0
+## Author: v7 Rebuid Done by: Anch, Rvng
+## Version: v7.2.4
## X-eMail:
-## X-Credits: Daviesh, Lag, Cellelach, Asurn, Pernicus and many others.
+## X-Credits: Skray, Szyler and others.
## X-Category: Map
## X-License: GPL v2
## X-Website: https://discord.gg/uYCE2X2FgA
@@ -24,8 +24,8 @@
## RealTitle-zhCN: [地图]副本掉落物品查询
## RealTitle-zhTW: [地圖]AL 物品掉落[主程式]
## Notes-ruRU: Отображает весю возможную добычу с боссов
-## SavedVariables: AtlasLootOptions, AtlasLootDB, AtlasLootWishList
-## SavedVariablesPerCharacter: AtlasLootCharDB, AtlasLootFilterDB
+## SavedVariables: AtlasLootOptions, AtlasLootDB, AtlasLootWishList, AtlasLootFilterDB
+## SavedVariablesPerCharacter: AtlasLootCharDB
## OptionalDeps: LootLink, ItemSync, DewdropLib, FuBarPlugin-3.0, FuBar, Ace3, LibBabble-Boss-3.0, LibBabble-Faction-3.0, LibBabble-Inventory-3.0, LibBabble-Zone-3.0
embeds.xml
diff --git a/AtlasLoot/Core/AtlasDifficulty.lua b/AtlasLoot/Core/AtlasDifficulty.lua
index 498b0de..7377ed1 100644
--- a/AtlasLoot/Core/AtlasDifficulty.lua
+++ b/AtlasLoot/Core/AtlasDifficulty.lua
@@ -31,8 +31,9 @@ AtlasLoot_Difficulty = {
};
["ClassicRaid"] = {
- {"Normal Flex", 2},
- {"Heroic Flex", 3},
+ {"Normal", 2},
+ {"Heroic", 3},
+ {"Mythic", 5},
{"Ascended", 4},
{"Bloodforged", 1},
};
@@ -52,8 +53,9 @@ AtlasLoot_Difficulty = {
};
["BCRaid"] = {
- {"Normal Flex", 2},
- {"Heroic Flex", 3},
+ {"Normal", 2},
+ {"Heroic", 3},
+ {"Mythic", 5},
{"Ascended", 4},
{"Bloodforged", 1},
};
@@ -69,9 +71,10 @@ AtlasLoot_Difficulty = {
};
["WrathRaid"] = {
- {"Normal Flex", 2},
- {"Heroic Flex", 3},
- {"Ascended", 4},
+ {"Normal", 2},
+ {"Heroic", 3},
+ {"Mythic", 4},
+ {"Ascended", 5},
{"Bloodforged", 1},
};
@@ -80,6 +83,10 @@ AtlasLoot_Difficulty = {
{"Item Normal", 2 },
{"Bloodforged", 1 },
};
+ ["CraftingNoBF"] = {
+ {"Crafting Patterns", "Pattern" },
+ {"Item Normal", 2 },
+ };
["Search"] = {
{"Bloodforged", 1},
@@ -122,7 +129,7 @@ function AtlasLoot_Difficulty:getMaxDifficulty(difficultyKey)
elseif (difficultyKey == "ClassicDungeonExt" or difficultyKey == "BCDungeon" or difficultyKey == "WrathDungeon") then
return 44;
elseif (difficultyKey == "ClassicRaid" or difficultyKey == "BCRaid" or difficultyKey == "WrathRaid") then
- return 4;
+ return 5;
else
return 0;
end
diff --git a/AtlasLoot/Core/AtlasLoot.lua b/AtlasLoot/Core/AtlasLoot.lua
index a8d136e..6a60151 100644
--- a/AtlasLoot/Core/AtlasLoot.lua
+++ b/AtlasLoot/Core/AtlasLoot.lua
@@ -14,7 +14,6 @@ AtlasLoot_OnLoad()
AtlasLoot:ShowItemsFrame()
AtlasLoot:NavButton_OnClick()
AtlasLoot:IsLootTableAvailable(dataID)
-AtlasLoot:GetLODModule(dataSource)
AtlasLoot:LoadAllModules()
AtlasLoot:ShowQuickLooks(button)
AtlasLoot:RefreshQuickLookButtons()
@@ -52,6 +51,7 @@ ATLASLOOT_DEBUGSHOWN = false;
ATLASLOOT_FILTER_ENABLE = false;
ATLASLOOT_CURRENTTYPE = "Default";
ATLASLOOT_TYPE = {};
+ATLASLOOT_BACKENABLED = false;
-- Colours stored for code readability
local GREY = "|cff999999";
@@ -132,7 +132,10 @@ function AtlasLoot:OnEnable()
AtlasLoot.db:RegisterDefaults(AtlasLootDBDefaults);
if not AtlasLootCharDB then AtlasLootCharDB = {} end
if not AtlasLootCharDB["QuickLooks"] then AtlasLootCharDB["QuickLooks"] = {} end
+ if not AtlasLootCharDB.SelectedFilter then AtlasLootCharDB.SelectedFilter = 1 end
if not AtlasLootCharDB["SearchResult"] then AtlasLootCharDB["SearchResult"] = {Name = "Search Result" , Type = "Search", Back = true}; end
+ if not AtlasLootFilterDB then AtlasLootFilterDB = {["FilterLists"] = {{Name = "Default" }}} end;
+ if AtlasLootFilterDB and not AtlasLootFilterDB["FilterLists"] then AtlasLootFilterDB = {["FilterLists"] = {{Name = "Default" }}} end;
if AtlasLoot_Data then
AtlasLoot_Data["EmptyTable"] = {
Name = AL["Select a Loot Table..."];
@@ -220,7 +223,6 @@ function AtlasLoot:OnEnable()
panel.name=AL["AtlasLoot"];
InterfaceOptions_AddCategory(panel);
--Filter and wishlist options menus creates as part of the next 2 commands
- AtlasLoot_CreateFilterOptions();
AtlasLoot_CreateWishlistOptions();
panel = _G["AtlasLootHelpFrame"];
panel.name=AL["Help"];
@@ -231,11 +233,13 @@ function AtlasLoot:OnEnable()
end
AtlasLoot_UpdateLootBrowserScale();
local playerName = UnitName("player");
+ -- Is wishlist item disabled on load or not
if AtlasLootWishList["Options"][playerName]["AutoSortWishlist"] then
AtlasLootItemsFrame_Wishlist_UnLock:Disable();
else
AtlasLootItemsFrame_Wishlist_UnLock:Enable();
end
+ AtlasLoot:LoadItemIDsDatabase();
end
function AtlasLoot_Reset(data)
@@ -328,11 +332,9 @@ function AtlasLoot:OnInitialize()
end
--Sets the default loot tables for the current expansion enabled on the server.
- local function getExpac()
- local xpaclist = {"CLASSIC", "TBC", "WRATH"};
- AtlasLoot_Expac = xpaclist[GetAccountExpansionLevel()+1];
- end
- getExpac();
+ local xpaclist = {"CLASSIC", "TBC", "WRATH"};
+ AtlasLoot_Expac = xpaclist[GetAccountExpansionLevel()+1];
+
end
function AtlasLoot:CleandataID(newID, listnum)
@@ -371,30 +373,33 @@ function AtlasLoot:CreateToken(dataID)
[1] = { Name = itemName };
};
end
+ local count = #AtlasLoot_Data[dataID][1] * #AtlasLoot_Data[dataID];
+ local function addItem(itemID, v, t)
+ if itemType == select(9, GetItemInfo(itemID)) or itemType2 == select(9, GetItemInfo(itemID)) then
+ table.insert(AtlasLoot_TokenData[orgID][1], {#AtlasLoot_TokenData[orgID][1] + 1, v[2], v[3], v[4], t.Name});
+ end
+ if count == 1 then
+ AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3]);
+ end
+ count = count - 1;
+ end
--Fills table with items
for n, t in ipairs(AtlasLoot_Data[dataID]) do
for c, v in ipairs(t) do
if type(v) == "table" then
- local item = Item:CreateFromID(v[2]);
- item:ContinueOnLoad(function(itemID)
- if itemType == select(9, GetItemInfo(itemID)) or itemType2 == select(9, GetItemInfo(itemID)) then
- table.insert(AtlasLoot_TokenData[orgID][1], {#AtlasLoot_TokenData[orgID][1] + 1, v[2], v[3], v[4], t.Name});
- end
- if #t == n then
- AtlasLoot:CancelTimer(AtlasLoot.refreshTimer);
- AtlasLoot.refreshTimer = AtlasLoot:ScheduleTimer("Refresh", 2);
- end
- end)
+ if GetItemInfo(v[2]) then
+ addItem(v[2], v, t)
+ else
+ local item = Item:CreateFromID(v[2]);
+ item:ContinueOnLoad(function(itemID)
+ addItem(itemID, v, t)
+ end)
+ end
end
end
end
end
--- Refresh loottable after token table creation.
-function AtlasLoot:Refresh()
- AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3]);
-end
-
--[[
AtlasLoot:ShowItemsFrame(dataID, dataSource, tablenum):
dataID - Name of the loot table
@@ -424,6 +429,8 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
--Ditch the Quicklook selector
AtlasLootQuickLooksButton:Hide();
+ AtlasLoot:HideFilterCreateButtons();
+
--Hide Map and reshow lootbackground
AtlasLootDefaultFrame_Map:Hide();
AtlasLootDefaultFrame_LootBackground:Show();
@@ -465,9 +472,9 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
local difType = false;
-- Checks to see if type is the same
if ATLASLOOT_CURRENTTYPE ~= dataSource[dataID].Type then
- if dataSource[dataID].Type == "Crafting" then
+ if dataSource[dataID].Type == "Crafting" or dataSource[dataID].Type == "CraftingNoBF" then
ItemindexID = "Pattern";
- elseif ItemindexID == "Pattern" and dataSource[dataID].Type ~= "Crafting" then
+ elseif (ItemindexID == "Pattern" and dataSource[dataID].Type ~= "Crafting") or (ItemindexID == "Pattern" and dataSource[dataID].Type ~= "CraftingNoBF") then
ItemindexID = 2;
else
ItemindexID = ATLASLOOT_TYPE[dataSource[dataID].Type] or 2;
@@ -556,11 +563,11 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
toShow = false;
end
end
- IDfound = AtlasLoot:FindId(item[2], min(AtlasLoot_Difficulty:getMaxDifficulty(dataSource[dataID].Type), itemDif)) or item[2];
+ IDfound = AtlasLoot:FindId(item[2], min(AtlasLoot_Difficulty:getMaxDifficulty(dataSource[dataID].Type), itemDif),dataSource[dataID].Type) or item[2];
end
if string.sub(IDfound, 1, 1) == "s" then
- IDfound = AtlasLoot:FindId(item[2], itemDif) or item[2];
+ IDfound = AtlasLoot:FindId(item[2], itemDif, dataSource[dataID].Type) or item[2];
else
isItem = true;
end
@@ -574,10 +581,10 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
if tonumber(item[AtlasLoot_Difficulty.MAX_DIF]) < itemDif then itemDif = item[AtlasLoot_Difficulty.MAX_DIF] end;
end
--If something was found in itemID database show that if not show default table item
- IDfound = AtlasLoot:FindId(item[2], itemDif) or item[2];
+ IDfound = AtlasLoot:FindId(item[2], itemDif, dataSource[dataID].Type) or item[2];
if ItemindexID ~= "" and dataID == "SearchResult" then
- IDfound = AtlasLoot:FindId(item[9], itemDif) or item[2];
+ IDfound = AtlasLoot:FindId(item[9], itemDif, dataSource[dataID].Type) or item[2];
end
end
end
@@ -688,7 +695,7 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
extraFrame:Show();
--For convenience, we store information about the objects in the objects so that it can be easily accessed later
if((string.sub(IDfound, 1, 1) == "s") and (ItemindexID ~= "Pattern") and (tonumber(dataSource[dataID][tablenum][i][3]))) then
- IDfound = AtlasLoot:FindId(tonumber(dataSource[dataID][tablenum][i][3]), ItemindexID) or tonumber(dataSource[dataID][tablenum][i][3]);
+ IDfound = AtlasLoot:FindId(tonumber(dataSource[dataID][tablenum][i][3]), ItemindexID, dataSource[dataID].Type) or tonumber(dataSource[dataID][tablenum][i][3]);
itemButton.itemID = IDfound;
itemButton.spellitemID = dataSource[dataID][tablenum][i][3];
else
@@ -723,8 +730,10 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
if (dataID == "SearchResult" or dataSource_backup == "AtlasLoot_CurrentWishList") and dataSource[dataID][tablenum][i][8] then
itemButton.sourcePage = dataSource[dataID][tablenum][i][8];
- elseif dataSource[dataID][tablenum][i][8] ~= nil and dataSource[dataID][tablenum][i][8]:match("=LT=") then
+ elseif dataSource[dataID][tablenum][i][8] ~= nil and dataSource[dataID][tablenum][i][8]:match("=TT=") then
itemButton.sourcePage = string.sub(dataSource[dataID][tablenum][i][8], 5);
+ elseif dataSource[dataID][tablenum][i][8] ~= nil and dataSource[dataID][tablenum][i][8]:match("=LT=") then
+ itemButton.sourcePage = dataSource[dataID][tablenum][i][8];
else
itemButton.sourcePage = nil;
end
@@ -753,7 +762,8 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
end
if dataSource_backup ~= "AtlasLoot_CurrentWishList" and dataID ~= "FilterList" and dataSource[dataID].Back ~= true and dataID ~= "EmptyTable" then
- AtlasLoot.db.profile.LastBoss = {dataID, dataSource_backup, tablenum, ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE};
+ if not AtlasLoot.db.profile.LastBoss or type(AtlasLoot.db.profile.LastBoss) ~= "table" then AtlasLoot.db.profile.LastBoss = {} end;
+ AtlasLoot.db.profile.LastBoss[AtlasLoot_Expac] = {dataID, dataSource_backup, tablenum, ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE};
AtlasLoot.db.profile[ATLASLOOT_CURRENTTABLE] = {dataID, dataSource_backup, tablenum, ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE};
end
@@ -764,16 +774,18 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
local function filterCheck(find)
local mtype = {"Crafting", "Reputations", "WorldEvents", "PVP", "Collections"}
for m, t in pairs (mtype) do
- for i, v in ipairs (AtlasLoot_SubMenus[t..AtlasLoot_Expac]) do
- if find == v[2] then
- return true;
+ if AtlasLoot_SubMenus[t..AtlasLoot_Expac] then
+ for i, v in ipairs (AtlasLoot_SubMenus[t..AtlasLoot_Expac]) do
+ if find == v[2] then
+ return true;
+ end
end
end
end
end
-- Show the Filter Check-Box
- if dataID ~= "SearchResult" and filterCheck(dataID) ~= true and dataSource_backup ~= "AtlasLoot_TokenData" and dataSource_backup ~= "AtlasLoot_CurrentWishList" then
+ if filterCheck(dataID) ~= true then
AtlasLootFilterCheck:Show();
end
@@ -805,7 +817,7 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
tablenum = AtlasLootItemsFrame.refreshOri[3];
end
- if AtlasLootItemsFrame.refreshOri and tablenum ~= #_G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]] and dataSource_backup ~= "AtlasLoot_TokenData" then
+ if AtlasLootItemsFrame.refresh and AtlasLootItemsFrame.refreshOri and tablenum ~= #_G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]] and dataSource_backup ~= "AtlasLoot_TokenData" and dataID ~= "SearchResult" or tablenum ~= #_G[AtlasLootItemsFrame.refresh[2]][AtlasLootItemsFrame.refresh[1]] and dataID == "SearchResult" then
_G["AtlasLootItemsFrame_NEXT"]:Show();
_G["AtlasLootItemsFrame_NEXT"].tablenum = tablenum + 1;
_G["AtlasLootItemsFrame_NEXT"].tablebase = tablebase;
@@ -816,15 +828,17 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum)
_G["AtlasLootItemsFrame_PREV"].tablenum = tablenum - 1;
_G["AtlasLootItemsFrame_PREV"].tablebase = tablebase;
end
- if dataSource[dataID].Back then
- _G["AtlasLootItemsFrame_BACK"]:Show();
- end
+ if dataSource[dataID].Back or ATLASLOOT_BACKENABLED then
+ _G["AtlasLootItemsFrame_BACK"]:Show();
+ elseif dataID ~= "FilterList" then
+ AtlasLootItemsFrame.refreshBack = {dataID, dataSource_backup, tablenum};
+ end
end
--Anchor the item frame where it is supposed to be
if ATLASLOOT_FILTER_ENABLE and dataID ~= "FilterList" then
- AtlasLoot:HideNoUsableItems();
+ AtlasLoot:HideFilteredItems();
end
if dataID ~= "SearchResult" then
@@ -850,7 +864,8 @@ AtlasLoot:NavButton_OnClick:
Called when 'Back'Button is pressed and calls up the appropriate loot page
]]
function AtlasLoot:BackButton_OnClick()
- AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3]);
+ ATLASLOOT_BACKENABLED = false;
+ AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refreshBack[1], AtlasLootItemsFrame.refreshBack[2], AtlasLootItemsFrame.refreshBack[3]);
end
--[[
@@ -860,7 +875,7 @@ dataID: Loot table dataID
]]
function AtlasLoot:IsLootTableAvailable(dataSource)
local moduleName = nil;
- moduleName = AtlasLoot:GetLODModule(dataSource);
+ moduleName = AtlasLoot.ModuleName[dataSource];
if IsAddOnLoaded(moduleName) then
return true;
else
@@ -868,36 +883,28 @@ function AtlasLoot:IsLootTableAvailable(dataSource)
end
end
---[[
-AtlasLoot:GetLODModule(dataSource)
-Returns the name of the module that needs to be loaded
-dataSource: Location of the loot table
-]]
-function AtlasLoot:GetLODModule(dataSource)
- if (dataSource=="AtlasLootOriginalWoW") then
- return "AtlasLoot_OriginalWoW";
- elseif (dataSource=="AtlasLootBurningCrusade") then
- return "AtlasLoot_BurningCrusade";
- elseif (dataSource=="AtlasLootCrafting") then
- return "AtlasLoot_Crafting";
- elseif (dataSource=="AtlasLootWorldEvents") then
- return "AtlasLoot_WorldEvents";
- elseif (dataSource=="AtlasLootWotLK") then
- return "AtlasLoot_WrathoftheLichKing";
- end
-end
+-- List of Moduel Names
+AtlasLoot.ModuleName = {
+ ["AtlasLootOriginalWoW"] = "AtlasLoot_OriginalWoW";
+ ["AtlasLootBurningCrusade"] = "AtlasLoot_BurningCrusade";
+ ["AtlasLootCrafting"] = "AtlasLoot_Crafting";
+ ["AtlasLootWorldEvents"] = "AtlasLoot_WorldEvents";
+ ["AtlasLootWotLK"] = "AtlasLoot_WrathoftheLichKing";
+ ["AtlasLootVanity"] = "AtlasLoot_Vanity"
+}
--[[
AtlasLoot:LoadAllModules()
Used to load all available LoD modules
]]
function AtlasLoot:LoadAllModules()
- local orig, bc, wotlk, craft, world;
+ local orig, bc, wotlk, craft, world, vanity;
orig, _ = LoadAddOn("AtlasLoot_OriginalWoW");
bc, _ = LoadAddOn("AtlasLoot_BurningCrusade");
craft, _ = LoadAddOn("AtlasLoot_Crafting");
world, _ = LoadAddOn("AtlasLoot_WorldEvents");
wotlk, _ = LoadAddOn("AtlasLoot_WrathoftheLichKing");
+ vanity, _ = LoadAddOn("AtlasLoot_Vanity");
local flag=0;
if not orig then
LoadAddOn("AtlasLoot_OriginalWoW");
@@ -919,6 +926,10 @@ function AtlasLoot:LoadAllModules()
LoadAddOn("AtlasLoot_WrathoftheLichKing");
flag=1;
end
+ if not vanity then
+ LoadAddOn("AtlasLoot_Vanity");
+ flag=1;
+ end
if flag == 1 then
if ATLASLOOT_DEBUGMESSAGES then
DEFAULT_CHAT_FRAME:AddMessage(GREEN..AL["AtlasLoot"]..": "..WHITE..AL["All Available Modules Loaded"]);
@@ -1055,35 +1066,6 @@ function AtlasLoot:QueryLootPage()
queryNextItem(START);
end
---[[
-AtlasLoot:QueryLootPage()
-Querys all valid items on the current loot page.
-]]
-function AtlasLoot:QueryLootPageOLD()
-local lastitem
- for t = 1, 30, 1 do
- local xbutton = _G["AtlasLootItem_"..t];
- local xqueryitem = xbutton.itemID;
- if (xqueryitem) and (xqueryitem ~= nil) and (xqueryitem ~= "") and (xqueryitem ~= 0) and (string.sub(xqueryitem, 1, 1) ~= "s") then
- lastitem = t;
- end
- end
- for i = 1, 30, 1 do
- local button = _G["AtlasLootItem_"..i];
- local queryitem = button.itemID;
- if (queryitem) and (queryitem ~= nil) and (queryitem ~= "") and (queryitem ~= 0) and (string.sub(queryitem, 1, 1) ~= "s") then
- local item = Item:CreateFromID(queryitem);
- if not (item:GetInfo()) then
- item:ContinueOnLoad(function(itemId)
- if i == lastitem then
- AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3]);
- end
- end)
- end
- end
- end
-end
-
--[[
AtlasLoot:AddTooltip(frameb, tooltiptext)
Adds explanatory tooltips to UI objects.
@@ -1104,9 +1086,34 @@ AtlasLoot:FindId(id, difficulty)
Finds the Ids of other difficulties based on the normal id of the item and the difficulty parameter given.
On the form of {ID, {normal, heroic, mythic, mythic1, mythic2, ... ,mythicN}}
]]
-function AtlasLoot:FindId(id, difficulty)
- if ItemIDsDatabase[id] ~= nil then
+function AtlasLoot:FindId(id, difficulty, type)
+ if not ItemIDsDatabase[id] then return nil, false end
+
+ if difficulty == 5 and (type == "BCRaid" or type == "ClassicRaid") then
+ return ItemIDsDatabase[id]["MythicRaid"], true
+ else
return ItemIDsDatabase[id][difficulty], true
end
- return nil, false;
-end
\ No newline at end of file
+end
+-- Loads the Item Variations into a table from the data content folder
+function AtlasLoot:LoadItemIDsDatabase()
+ local content = C_ContentLoader:Load("ItemVariationData")
+ content:SetParser(function(index, data)
+ -- run for each item in the data
+ if index ~= 0 and data.Normal ~= 0 and not ItemIDsDatabase[data.Normal] then
+ ItemIDsDatabase[data.Normal] = {}
+ ItemIDsDatabase[data.Normal]["MythicRaid"] = tonumber("13"..data.Normal);
+ table.insert(ItemIDsDatabase[data.Normal],data.Bloodforged);
+ table.insert(ItemIDsDatabase[data.Normal],data.Normal);
+ if data.Heroic ~= 0 then table.insert(ItemIDsDatabase[data.Normal],data.Heroic) end
+ for _,v in ipairs(data["Mythic"]) do
+ if v ~= 0 then
+ table.insert(ItemIDsDatabase[data.Normal],v)
+ end
+ end
+ end
+ end)
+
+ -- This will run over time (usually about 30s for a file this size), but will maintain playable fps while running.
+ content:ParseAsync()
+ end
diff --git a/AtlasLoot/Core/AtlasLoot.xml b/AtlasLoot/Core/AtlasLoot.xml
index a6a7ffe..262f1b1 100644
--- a/AtlasLoot/Core/AtlasLoot.xml
+++ b/AtlasLoot/Core/AtlasLoot.xml
@@ -2,13 +2,14 @@
-
+
+
+
diff --git a/AtlasLoot/Core/Filter.lua b/AtlasLoot/Core/Filter.lua
index fea122a..88e84ce 100644
--- a/AtlasLoot/Core/Filter.lua
+++ b/AtlasLoot/Core/Filter.lua
@@ -5,7 +5,7 @@ Loot browser associating loot with instance bosses
Can be integrated with Atlas (http://www.atlasmod.com)
Functions:
-AtlasLoot:HideNoUsableItems()
+AtlasLoot:HideFilteredItems()
AtlasLoot_FilterEnableButton()
CreateCheckButton(parrent, text, num)
AtlasLoote_CreateFilterOptions()
@@ -16,359 +16,402 @@ local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
local OptionsLoadet = false
-AtlasLootFilterDB = {};
+AtlasLoot_FilterMenu = AceLibrary("Dewdrop-2.0");
+AtlasLoot_SetFiltersMenu = AceLibrary("Dewdrop-2.0");
-local FilterTableNames = {
- ["Armor"] = AL["Armor:"],
- ["WeaponsMeele"] = AL["Melee weapons:"],
- ["WeaponsMeeleTwoHand"] = BabbleInventory["Two-Hand"]..":",--.." "..AL["Melee weapons:"],
- ["WeaponsRanged"] = AL["Ranged weapons:"],
- ["Relics"] = AL["Relics:"],
- ["Other"] = AL["Other:"],
-}
-
-local FilterSort = {"Armor","WeaponsMeele","WeaponsMeeleTwoHand","WeaponsRanged","Relics","Other"}
local FilterTable = {
- ["Armor"] = {
- "Cloth", --1
- "Leather", --2
- "Mail", --3
- "Plate", --4
- },
-
- ["WeaponsMeele"] = {
- "Held in Off-Hand", --1
- "Dagger", --2
- "Mace", --3
- "Staff", --4
- "Axe", --5
- "Polearm", --6
- "Shield", --7
- "Sword", --8
- "Fist Weapon", --9
- },
-
- ["WeaponsMeeleTwoHand"] = {
- "Mace", --1
- "Axe", --2
- "Sword", --3
- },
-
- ["WeaponsRanged"] = {
- "Wand", --1
- "Bow", --2
- "Crossbow", --3
- "Gun", --4
- "Thrown", --5
- },
-
- ["Relics"] = {
- "Idol", --1
- "Totem", --2
- "Libram", --3
- "Sigils", --4
- },
-
- ["Other"] = {
- "Ring", --1
- "Trinket", --2
- "Neck", --3
- "Back", --4
- }
-}
-
-local ClassHides = {
- ["DRUID"] = {["Armor"] = {true,true,false,false},["WeaponsMeele"] = {true,true,true,true,false,true,false,false,false},["WeaponsMeeleTwoHand"] = {true,false,false},["WeaponsRanged"] = {false,false,false,false,false},["Relics"] = {true,false,false,false},["Other"] = {true,true,true,true}},
- ["MAGE"] = {["Armor"] = {true,false,false,false},["WeaponsMeele"] = {true,true,false,true,false,false,false,true,false},["WeaponsMeeleTwoHand"] = {false,false,false},["WeaponsRanged"] = {true,false,false,false,false},["Relics"] = {false,false,false,false},["Other"] = {true,true,true,true}},
- ["PALADIN"] = {["Armor"] = {true,true,true,true},["WeaponsMeele"] = {true,false,true,false,true,true,true,true,false},["WeaponsMeeleTwoHand"] = {true,false,true},["WeaponsRanged"] = {false,false,false,false,false},["Relics"] = {false,false,true,false},["Other"] = {true,true,true,true}},
- ["PRIEST"] = {["Armor"] = {true,false,false,false},["WeaponsMeele"] = {true,true,true,true,false,false,false,false,false},["WeaponsMeeleTwoHand"] = {false,false,false},["WeaponsRanged"] = {true,false,false,false,false},["Relics"] = {false,false,false,false},["Other"] = {true,true,true,true}},
- ["ROGUE"] = {["Armor"] = {true,true,false,false},["WeaponsMeele"] = {true,true,true,false,true,false,false,true,true},["WeaponsMeeleTwoHand"] = {false,false,false},["WeaponsRanged"] = {false,true,true,true,true},["Relics"] = {false,false,false,false},["Other"] = {true,true,true,true}},
- ["HUNTER"] = {["Armor"] = {false,true,true,false},["WeaponsMeele"] = {false,true,false,true,true,true,false,true,true},["WeaponsMeeleTwoHand"] = {false,true,true},["WeaponsRanged"] = {false,true,true,true,false},["Relics"] = {false,false,false,false},["Other"] = {true,true,true,true}},
- ["SHAMAN"] = {["Armor"] = {true,true,true,false},["WeaponsMeele"] = {true,true,true,true,true,false,true,false,true},["WeaponsMeeleTwoHand"] = {true,true,false},["WeaponsRanged"] = {false,false,false,false,false},["Relics"] = {false,true,false,false},["Other"] = {true,true,true,true}},
- ["WARLOCK"] = {["Armor"] = {true,false,false,false},["WeaponsMeele"] = {true,true,false,true,false,false,false,true,false},["WeaponsMeeleTwoHand"] = {false,false,false},["WeaponsRanged"] = {true,false,false,false,false},["Relics"] = {false,false,false,false},["Other"] = {true,true,true,true}},
- ["WARRIOR"] = {["Armor"] = {true,true,true,true},["WeaponsMeele"] = {true,true,true,true,true,true,true,true,true},["WeaponsMeeleTwoHand"] = {true,true,true},["WeaponsRanged"] = {false,true,true,true,true},["Relics"] = {false,false,false,false},["Other"] = {true,true,true,true}},
- ["DEATHKNIGHT"] = {["Armor"] = {true,true,true,true},["WeaponsMeele"] = {true,false,true,false,true,true,false,true,false},["WeaponsMeeleTwoHand"] = {true,false,true},["WeaponsRanged"] = {false,false,false,false,false},["Relics"] = {false,false,false,true},["Other"] = {true,true,true,true}}
+ {
+ Name = AL["Armor Type"],
+ Type = "ArmorType",
+ {"Cloth", "Cloth"},
+ {"Leather", "Leather"},
+ {"Mail", "Mail"},
+ {"Plate", "Plate"},
+ },
+ {
+ Name = AL["Weapons"],
+ Type = "InvType",
+ {"One-Hand", "INVTYPE_WEAPON"},
+ {"Two-Hand", "INVTYPE_2HWEAPON"},
+ {"Main Hand", "INVTYPE_WEAPONMAINHAND"},
+ {"Off Hand", "INVTYPE_WEAPONOFFHAND"},
+ {"Caster Off Hand", "INVTYPE_HOLDABLE"},
+ {"Ranged", "INVTYPE_RANGED"},
+ {"Thrown", "INVTYPE_THROWN"},
+ {"Relic", "INVTYPE_RELIC"},
+ {"Shield", "INVTYPE_SHIELD"}
+ },
+ {
+ Name = AL["Accessories"],
+ Type = "InvType",
+ {"Necklace", "INVTYPE_NECK"},
+ {"Back", "INVTYPE_CLOAK"},
+ {"Ring", "INVTYPE_FINGER"},
+ {"Trinket", "INVTYPE_TRINKET"}
+ },
+ {
+ Name = AL["Secondary Stats"],
+ Type = "Stat",
+ {"Crit", "ITEM_MOD_CRIT_RATING_SHORT"},
+ {"Hit", "ITEM_MOD_HIT_RATING_SHORT"},
+ {"Haste", "ITEM_MOD_HASTE_RATING_SHORT"},
+ {"Expertise", "ITEM_MOD_EXPERTISE_RATING_SHORT"},
+ {"Armor Pen", "ITEM_MOD_ARMOR_PENETRATION_RATING_SHORT"},
+ {"Spell Pen", "ITEM_MOD_SPELL_PENETRATION_SHORT"}
+ },
+ {
+ Name = AL["Primary Stats"],
+ Type = "PrimaryStat",
+ {"Strength", "ITEM_MOD_STRENGTH_SHORT"},
+ {"Agility", "ITEM_MOD_AGILITY_SHORT"},
+ {"Intellect", "ITEM_MOD_INTELLECT_SHORT"},
+ {"Spirit", "ITEM_MOD_SPIRIT_SHORT"},
+ {"Attack Power", "ITEM_MOD_ATTACK_POWER_SHORT"},
+ {"Spell Power", "ITEM_MOD_SPELL_POWER_SHORT"}
+ },
+ {
+ Name = AL["Defensive Stats"],
+ Type = "Stat",
+ {"Defense", "ITEM_MOD_DEFENSE_SKILL_RATING_SHORT"},
+ {"Dodge", "ITEM_MOD_DODGE_RATING_SHORT"},
+ {"Parry", "ITEM_MOD_PARRY_RATING_SHORT"},
+ {"Block", "ITEM_MOD_BLOCK_RATING_SHORT"},
+ {"Block Value", "ITEM_MOD_BLOCK_VALUE_SHORT"},
+ {"Resilience", "ITEM_MOD_RESILIENCE_RATING"}
+ },
}
-- **********************************************************************
-- ItemFilter:
--- AtlasLoot:HideNoUsableItems()
+-- AtlasLoot:HideFilteredItems()
-- AtlasLoot_FilterEnableButton()
-- **********************************************************************
+AtlasLootFilter = {};
+AtlasLootFilter["FilterList"] = {};
-AtlasLoot_Data["FilterList"] = { [1] = {}; };
-
-function AtlasLoot_Testabc()
- print(BabbleInventory["Two-Hand"])
-end
-
-function AtlasLoot:HideNoUsableItems()
+function AtlasLoot:HideFilteredItems()
local dataID, dataSource, tablenum = AtlasLootItemsFrame.refreshFilter[1], _G[AtlasLootItemsFrame.refreshFilter[2]], AtlasLootItemsFrame.refreshFilter[3];
-
local tablebase = dataSource[dataID][tablenum]
- if not tablebase or dataID == "WishList" or dataID == "SearchResult" then return end
- local itemCount = 0
- local countAll = 1
- local count = 0
- local leatherworking = GetSpellInfo(2108)
+ if not tablebase or dataID == "WishList" or dataID == "SearchResult" or AtlasLootCharDB.SelectedFilter == nil then return end
+ AtlasLootFilter["FilterList"] = {};
+ AtlasLootFilter["FilterList"].Type = dataSource[dataID].Type;
+ AtlasLootFilter["FilterList"].Name = dataSource[dataID].Name;
+ AtlasLootFilter["FilterList"].Back = dataSource[dataID].Back;
+ AtlasLootFilter["FilterList"].Map = dataSource[dataID].Map;
+ AtlasLootFilter["FilterList"][1] = {Name = dataSource[dataID][tablenum].Name};
- AtlasLoot_Data["FilterList"] = { Type = dataSource[dataID].Type; Name = dataSource[dataID].Name; Back = dataSource[dataID].Back; Map = dataSource[dataID].Map; [tablenum] = {Name = dataSource[dataID][tablenum].Name}; };
-
- for i=1,30 do
- local info = _G["AtlasLootItem_"..i.."_Extra"]:GetText()
- if _G["AtlasLootItem_"..i]:IsShown() then
- local xgo = true
- local countOld = count
- itemCount = itemCount + 1
- countAll = countAll + count
- count = 0
- local xitemID = _G["AtlasLootItem_"..i].itemID
- local xspellitemID = _G["AtlasLootItem_"..i].spellitemID
- local xitemTexture = tablebase[itemCount][3]
- local xitemExtraText = AtlasLoot_FixText(tablebase[itemCount][5])
- local xitemExtraTextSave = xitemExtraText
- -- remove the "-"
- xitemExtraText = gsub(xitemExtraText, "-", "")
- local xitemNameText = _G["AtlasLootItem_"..i.."_Name"]:GetText()
-
- if xitemExtraText and xitemExtraText ~= "" then
- for k = 1,#FilterSort do
- k = FilterSort[k]
- if type(FilterTable[k]) == "table" then
- for i,j in pairs(FilterTable[k]) do
- local Slotname = ""
- -- Bugfix with Sigils
- if j == "Sigils" then
- Slotname = AL["Sigil"]
- else
- Slotname = BabbleInventory[j]
- end
-
- if (k ~= "WeaponsMeeleTwoHand" and not strfind(xitemExtraText, BabbleInventory["Two-Hand"]) and strfind(xitemExtraText, Slotname) and AtlasLootFilterDB[k][j] == false) then
- xgo = false
- -- German fix
- if j == "Shield" and not strfind(xitemExtraText, BabbleInventory["Held in Off-Hand"]) and not strfind(xitemExtraText, BabbleInventory["Off Hand"]) then
- xgo = false
- elseif j == "Shield" and strfind(xitemExtraText, BabbleInventory["Held in Off-Hand"]) and AtlasLootFilterDB["WeaponsMeele"]["Held in Off-Hand"] == true then
- xgo = true
- end
- elseif k == "WeaponsMeeleTwoHand" and strfind(xitemExtraText, BabbleInventory["Two-Hand"]) and strfind(xitemExtraText, Slotname) and AtlasLootFilterDB[k][j] == false then
- xgo = false
- -- Fix bug with Leatherworking Patterns
- elseif strfind(xitemExtraText, leatherworking) then
- xgo = true
- end
- end
+ local function getStats(itemID,sType)
+ for i,v in pairs(AtlasLootFilterDB["FilterLists"][AtlasLootCharDB.SelectedFilter]) do
+ if type(v) == "table" then
+ if v[1] and v[3] == sType then
+ local ItemStats = {};
+ GetItemStats(select(2,GetItemInfo(itemID)), ItemStats);
+ if ItemStats[v[2]] then
+ return true;
end
end
end
-
- -- Sort the items
- if xgo == true then
- if i==16 and countOld > 0 then
- AtlasLoot_Data["FilterList"][tablenum][16] = { 16, xitemID, xitemTexture, xitemNameText, xitemExtraTextSave}
- countAll = 16
- elseif i==16 and xitemExtraText and strfind(xitemExtraText, AL["Token"]) then
- AtlasLoot_Data["FilterList"][tablenum][16] = { 16, xitemID, xitemTexture, xitemNameText, xitemExtraTextSave}
- countAll = 16
- elseif countAll < 16 and xitemNameText and strfind(xitemNameText, AL["Hard Mode"]) then
- AtlasLoot_Data["FilterList"][tablenum][16] = { 16, xitemID, xitemTexture, xitemNameText, xitemExtraTextSave}
- countAll = 16
- elseif i==16 and xitemTexture == "INV_Box_01" then
- AtlasLoot_Data["FilterList"][tablenum][16] = { 16, xitemID, xitemTexture, xitemNameText, xitemExtraTextSave}
- countAll = 16
- else
- AtlasLoot_Data["FilterList"][tablenum][countAll] = { countAll, xitemID, xitemTexture, xitemNameText, xitemExtraTextSave}
- end
-
- if tablebase[itemCount][6] and countAll==16 then
- AtlasLoot_Data["FilterList"][tablenum][16][6] = tablebase[itemCount][6]
- elseif tablebase[itemCount][6] and countAll~=16 then
- AtlasLoot_Data["FilterList"][tablenum][countAll][6] = tablebase[itemCount][6]
- end
- if tablebase[itemCount][7] and countAll==16 then
- AtlasLoot_Data["FilterList"][tablenum][16][7] = tablebase[itemCount][7]
- elseif tablebase[itemCount][7] and countAll~=16 then
- AtlasLoot_Data["FilterList"][tablenum][countAll][7] = tablebase[itemCount][7]
- end
- if tablebase[itemCount][8] and countAll==16 then
- AtlasLoot_Data["FilterList"][tablenum][16][8] = tablebase[itemCount][8]
- elseif tablebase[itemCount][8] and countAll~=16 then
- AtlasLoot_Data["FilterList"][tablenum][countAll][8] = tablebase[itemCount][8]
- end
-
- countAll = countAll + 1
- count = 0
- end
- else
- count = count + 1
end
end
- AtlasLoot:ShowItemsFrame("FilterList", "AtlasLoot_Data", AtlasLootItemsFrame.refresh[3])
+ local function checkNofilter(itemID, filter)
+ if getStats(itemID,filter) then return true end;
+ for i,v in pairs(AtlasLootFilterDB["FilterLists"][AtlasLootCharDB.SelectedFilter]) do
+ for n,t in ipairs(FilterTable) do
+ if t.Type == filter and v[1] then
+ return true;
+ end
+ end
+ end
+ end
+
+ local count = 0
+ local function getFilterType(itemID)
+ local filterSelect3, filterSelect2,_ , filterSelect1 = select(6,GetItemInfo(itemID));
+ local filter1 = AtlasLootFilterDB["FilterLists"][AtlasLootCharDB.SelectedFilter][filterSelect1];
+ local filter2 = AtlasLootFilterDB["FilterLists"][AtlasLootCharDB.SelectedFilter][filterSelect2];
+
+ if (filter1 and filter1[1] and filter1[3] == "InvType" and getStats(itemID,"PrimaryStat") and checkNofilter(itemID, "Stat")) or
+ (filter2 and filter2[1] and filter2[3] == "ArmorType" and getStats(itemID,"PrimaryStat") and checkNofilter(itemID, "Stat"))
+ then
+ return true;
+ else
+ for _,v in pairs(FilterTable) do
+ for _,t in ipairs(v) do
+ if t[2] == filterSelect1 or t[2] == filterSelect2 or t[2] == filterSelect3 then
+ return false;
+ end
+ end
+ end
+ return true;
+ end
+ end
+ for i,v in ipairs(tablebase) do
+ if getFilterType(v[2]) or v[2] == 0 then
+ if v[1] == 16 then
+ count = 0;
+ end
+ table.insert(AtlasLootFilter["FilterList"][1],{v[1] - count,v[2],v[3],v[4],v[5],v[6],v[7],v[8]});
+ elseif v[1] == 16 then
+ count = 1
+ else
+ count = count + 1;
+ end
+ end
+
+ AtlasLoot:ShowItemsFrame("FilterList", "AtlasLootFilter", 1)
end
-function AtlasLoot_FilterEnableButton()
- if ATLASLOOT_FILTER_ENABLE == true then
- ATLASLOOT_FILTER_ENABLE = false;
- AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refreshFilter[1], AtlasLootItemsFrame.refreshFilter[2], AtlasLootItemsFrame.refreshFilter[3]);
+function AtlasLoot_FilterEnableButton(self, btnclick)
+ if btnclick == "RightButton" then
+ if AtlasLoot_FilterMenu:IsOpen() then
+ AtlasLoot_FilterMenu:Close();
+ else
+ AtlasLoot_FilterMenu:Unregister(AtlasLootFilterCheck);
+ AtlasLoot:FilterMenuRegister();
+ AtlasLoot_FilterMenu:Open(self);
+ end
+ if AtlasLootFilterCheck:GetChecked() then
+ AtlasLootFilterCheck:SetChecked(false);
+ else
+ AtlasLootFilterCheck:SetChecked(true);
+ end
else
- ATLASLOOT_FILTER_ENABLE = true
- AtlasLoot:HideNoUsableItems();
+ if ATLASLOOT_FILTER_ENABLE then
+ ATLASLOOT_FILTER_ENABLE = false;
+ AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refreshFilter[1], AtlasLootItemsFrame.refreshFilter[2], AtlasLootItemsFrame.refreshFilter[3]);
+ else
+ ATLASLOOT_FILTER_ENABLE = true
+ AtlasLoot:HideFilteredItems();
+ end
end
end
+--[[
+AtlasLoot:FilterMenuRegister:
+Constructs the Filter menu.
+]]
+function AtlasLoot:FilterMenuRegister()
+ AtlasLoot_FilterMenu:Register(AtlasLootFilterCheck,
+ 'point', function(parent)
+ return "TOP", "BOTTOM"
+ end,
+ 'children', function(level, value)
+ for i,v in ipairs(AtlasLootFilterDB["FilterLists"]) do
+ local setFilter = false;
+ if AtlasLootCharDB.SelectedFilter == i then setFilter = true end
+ AtlasLoot_FilterMenu:AddLine(
+ "text", v.Name,
+ "func", function()
+ AtlasLootCharDB.SelectedFilter = i;
+ AtlasLoot_FilterMenu:Close();
+ end,
+ "checked", setFilter
+ );
+ end
+ AtlasLoot_FilterMenu:AddLine(
+ "text", AL["Add Filter Set"],
+ "func", function() AtlasLoot:OpenFilterCreate() end,
+ "notCheckable", true
+ );
+ --Close button
+ AtlasLoot_FilterMenu:AddLine(
+ 'text', AL["Close Menu"],
+ 'textR', 0,
+ 'textG', 1,
+ 'textB', 1,
+ 'func', function() AtlasLoot_FilterMenu:Close() end,
+ 'notCheckable', true
+ );
+ end,
+ 'dontHook', true
+ )
+end
+
+--Sets all the filter check boxs for current filter
+local function setFilterChecks()
+ local filterList = AtlasLootFilterDB["FilterLists"][AtlasLootCharDB.SelectedFilter];
+ local count = 1;
+ for i,v in ipairs(FilterTable) do
+ count = count + 1;
+ for n,t in ipairs(v) do
+ if filterList[t[2]] and filterList[t[2]][1] then
+ _G["AtlasLootFilterButton_"..count]:SetChecked(true);
+ else
+ _G["AtlasLootFilterButton_"..count]:SetChecked(false);
+ end
+ count = count + 1;
+ end
+ end
+end
+
+local function setFilter(arg1,type)
+ if AtlasLootFilterDB["FilterLists"][AtlasLootCharDB.SelectedFilter][arg1] and AtlasLootFilterDB["FilterLists"][AtlasLootCharDB.SelectedFilter][arg1][1] then
+ AtlasLootFilterDB["FilterLists"][AtlasLootCharDB.SelectedFilter][arg1] = {false,arg1,type};
+ else
+ AtlasLootFilterDB["FilterLists"][AtlasLootCharDB.SelectedFilter][arg1] = {true,arg1,type};
+ end
+end
+
+function AtlasLoot:HideFilterCreateButtons()
+ if not ATLASLOOT_BUILD_FILTER_LIST then return end
+ for i=1, 41 do
+ _G["AtlasLootFilterButton_"..i]:Hide();
+ end
+ AtlasLootFilterSelect:Hide();
+ AtlasLootFilterCreate:Hide();
+ AtlasLootFilterDelete:Hide();
+end
+
-- **********************************************************************
-- Options:
--- AtlasLoot:HideNoUsableItems()
--- CreateCheckButton(parrent, text, num)
--- AtlasLoote_CreateFilterOptions()
+-- AtlasLoot:HideFilteredItems()
-- **********************************************************************
-local ypos = -40
-local xpos = 0
-local linecount = 1
-local lastframewidht,lastframeheight = 0,0
-
-local function CreateCheckButton(parrent, text, num)
- local framewidht = InterfaceOptionsFramePanelContainer:GetWidth()
- local Check = CreateFrame("CheckButton", "AtlasLootOptionsCheck"..text..num, parrent, "OptionsCheckButtonTemplate")
- Check:SetPoint("LEFT", parrent, "TOPLEFT", xpos, ypos)
- Check:SetWidth(25)
- Check:SetHeight(25)
- Check:SetScript("OnShow", function()
- _G[this:GetName().."Text"]:SetText(BabbleInventory[text]);
- if AtlasLootFilterDB[num][text] then
- this:SetChecked(1);
+ATLASLOOT_BUILD_FILTER_LIST = false;
+-- Place to add new or edit existing filter lists
+function AtlasLoot:OpenFilterCreate()
+ if not ATLASLOOT_BUILD_FILTER_LIST then
+ ATLASLOOT_BUILD_FILTER_LIST = true;
+ local count = 1;
+ for i,v in ipairs(FilterTable) do
+ local filterCatLable = AtlasLootItemsFrame:CreateFontString("AtlasLootFilterButton_"..count,"OVERLAY","GameFontNormal");
+ filterCatLable:SetText(v.Name);
+ filterCatLable:Show();
+ if count == 1 then
+ filterCatLable:SetPoint("TOP", "AtlasLootItemsFrame", "TOP",-150,-90);
+ elseif count == 16 then
+ filterCatLable:SetPoint("TOP", "AtlasLootItemsFrame", "TOP",0,-90);
+ elseif count == 28 then
+ filterCatLable:SetPoint("TOP", "AtlasLootItemsFrame", "TOP",150,-90);
else
- this:SetChecked(nil);
+ filterCatLable:SetPoint("LEFT", "AtlasLootFilterButton_"..(count - 1), "LEFT",0,-25);
end
- end)
- Check:SetScript("OnClick", function()
- if AtlasLootFilterDB[num][text] then
- AtlasLootFilterDB[num][text] = false;
- else
- AtlasLootFilterDB[num][text] = true;
- end
- end)
-
- if xpos == framewidht/2 then
- xpos = 0
- ypos = ypos - 20
- linecount = 1
- elseif xpos == 0 then
- xpos = framewidht/2
- linecount = 2
+ count = count + 1;
+ for n,t in ipairs(v) do
+ local button = CreateFrame("CheckButton", "AtlasLootFilterButton_"..count, AtlasLootItemsFrame, "OptionsCheckButtonTemplate");
+ _G["AtlasLootFilterButton_"..count.."Text"]:SetText(t[1]);
+ button:SetScript("OnClick", function() setFilter(t[2],v.Type) end)
+ if n == 1 then
+ button:SetPoint("LEFT", "AtlasLootFilterButton_"..(count - 1), "LEFT",0,-25);
+ else
+ button:SetPoint("LEFT", "AtlasLootFilterButton_"..(count - 1), "LEFT",0,-20);
+ end
+ count = count + 1;
+ end
+ end
+
+ local filterSelectButton = CreateFrame("Button", "AtlasLootFilterSelect", AtlasLootItemsFrame, "UIDropDownMenuTemplate");
+ filterSelectButton:SetSize(190,24);
+ filterSelectButton:SetPoint("Top", "AtlasLootItemsFrame", "TOP",-110,-35);
+
+ local createFilterButton = CreateFrame("Button", "AtlasLootFilterCreate", AtlasLootItemsFrame, "OptionsButtonTemplate");
+ createFilterButton:SetSize(130,20);
+ createFilterButton:SetPoint("LEFT", "AtlasLootItemsFrame_BACK", "LEFT",-150,0);
+ createFilterButton:SetText(AL["Add/Edit Filter"]);
+ createFilterButton:SetScript("OnClick", function(self) StaticPopup_Show("ATLASLOOT_ADD_FILTER_LIST") end);
+
+ local deleteFilterButton = CreateFrame("Button", "AtlasLootFilterDelete", AtlasLootItemsFrame, "OptionsButtonTemplate");
+ deleteFilterButton:SetSize(130,20);
+ deleteFilterButton:SetPoint("RIGHT", "AtlasLootItemsFrame_BACK", "RIGHT",150,0);
+ deleteFilterButton:SetText(AL["Delete Filter"]);
+ deleteFilterButton:SetScript("OnClick", function(self) StaticPopup_Show("ATLASLOOT_DELETE_FILTERLIST") end);
+ end
+ UIDropDownMenu_Initialize(AtlasLootFilterSelect, AtlasLoot.FilterSelectorMenuInitialize);
+ UIDropDownMenu_SetSelectedID(AtlasLootFilterSelect, AtlasLootCharDB.SelectedFilter);
+
+ setFilterChecks();
+
+ for i=1,41 do
+ _G["AtlasLootFilterButton_"..i]:Show();
+ end
+ AtlasLootFilterSelect:Show();
+ AtlasLootFilterCreate:Show();
+ AtlasLootFilterDelete:Show();
+
+ --Ditch the Quicklook selector
+ AtlasLootQuickLooksButton:Hide();
+ -- Hide the Filter Check-Box
+ AtlasLootFilterCheck:Hide();
+ --Hide navigation buttons by default, only show what we need
+ _G["AtlasLootItemsFrame_BACK"]:Show();
+ _G["AtlasLootItemsFrame_NEXT"]:Hide();
+ _G["AtlasLootItemsFrame_PREV"]:Hide();
+ --Hide UI objects so that only needed ones are shown
+ for i = 1, 30, 1 do
+ _G["AtlasLootItem_"..i.."_Unsafe"]:Hide();
+ _G["AtlasLootItem_"..i]:Hide();
+ _G["AtlasLootItem_"..i].itemID = 0;
+ _G["AtlasLootItem_"..i].spellitemID = 0;
+ end
+ --Set Page Title
+ AtlasLoot_BossName:SetText("Create Filter Set");
+ AtlasLoot_FilterMenu:Close();
+end
+
+local function FilterSelectOnClick()
+ AtlasLootCharDB.SelectedFilter = this:GetID();
+ UIDropDownMenu_SetSelectedID(AtlasLootFilterSelect, AtlasLootCharDB.SelectedFilter);
+ setFilterChecks();
+end
+
+function AtlasLoot:FilterSelectorMenuInitialize()
+ for i,v in ipairs(AtlasLootFilterDB["FilterLists"]) do
+ local info = {
+ text = v.Name;
+ func = FilterSelectOnClick;
+ };
+ UIDropDownMenu_AddButton(info);
end
end
-local function CreateCat(parrent, text)
- if not AtlasLootFilterDB[text] then AtlasLootFilterDB[text] = {} end
- if linecount == 2 then
- ypos = ypos - 10
- else
- ypos = ypos + 10
- end
- local Text = parrent:CreateFontString("AtlasLoot"..text,"OVERLAY","GameFontNormal")
- Text:SetPoint("TOPLEFT", parrent, "TOPLEFT", xpos, ypos)
- Text:SetText(FilterTableNames[text]);
- Text:SetHeight(20)
- Text:SetTextColor(1.0, 1.0, 1.0, 1.0);
-
- ypos = ypos - 30
-
- for i,j in pairs(FilterTable[text]) do
- if AtlasLootFilterDB[text][j] ~= true and AtlasLootFilterDB[text][j] ~= false then AtlasLootFilterDB[text][j] = true end
- CreateCheckButton(parrent, j, text)
- end
-
- xpos = 0
- ypos = ypos - 10
-end
+--[[
+StaticPopupDialogs["ATLASLOOT_ADD_FILTER_LIST"]
+This is shown, if you want too add a add/edit a filter list
+]]
+StaticPopupDialogs["ATLASLOOT_ADD_FILTER_LIST"] = {
+ text = "Filter Name",
+ button1 = "Add Filter",
+ button3 = "Edit Filter",
+ button2 = AL["Cancel"],
+ OnShow = function(self)
+ self.editBox:SetText(UIDropDownMenu_GetText(AtlasLootFilterSelect))
+ self:SetFrameStrata("TOOLTIP");
+ end,
+ OnAccept = function(self)
+ local text = self.editBox:GetText();
+ table.insert(AtlasLootFilterDB["FilterLists"],AtlasLoot:CloneTable(AtlasLootFilterDB["FilterLists"][UIDropDownMenu_GetSelectedID(AtlasLootFilterSelect)]));
+ AtlasLootFilterDB["FilterLists"][#AtlasLootFilterDB["FilterLists"]].Name = text;
+ UIDropDownMenu_SetSelectedID(AtlasLootFilterSelect,#AtlasLootFilterDB["FilterLists"]);
+ UIDropDownMenu_SetText(AtlasLootFilterSelect,text);
+ end,
+ OnButton3 = function(self)
+ local text = self.editBox:GetText();
+ AtlasLootFilterDB["FilterLists"][UIDropDownMenu_GetSelectedID(AtlasLootFilterSelect)].Name = self.editBox:GetText();
+ UIDropDownMenu_SetText(AtlasLootFilterSelect,text);
+ end,
+ hasEditBox = 1,
+ timeout = 0,
+ whileDead = 1,
+ hideOnEscape = 1
+};
-function AtlasLoot_CreateFilterOptions()
- if OptionsLoadet then return end
- local FilterOptionsFrame = CreateFrame("FRAME", nil)
- FilterOptionsFrame.name = AL["Filter"];
- FilterOptionsFrame.parent = AL["AtlasLoot"];
-
- local framewidht = InterfaceOptionsFramePanelContainer:GetWidth()
- local panel3 = CreateFrame("ScrollFrame", "AtlasLootFilterOptionsScrollFrame", FilterOptionsFrame, "UIPanelScrollFrameTemplate")
- local scc = CreateFrame("Frame", "AtlasLootFilterOptionsScrollInhalt", panel3)
- panel3:SetScrollChild(scc)
- panel3:SetPoint("TOPLEFT", FilterOptionsFrame, "TOPLEFT", 10, -10)
- scc:SetPoint("TOPLEFT", panel3, "TOPLEFT", 0, 0)
- panel3:SetWidth(framewidht-45)
- panel3:SetHeight(410)
- scc:SetWidth(framewidht-45)
- scc:SetHeight(410)
- panel3:SetHorizontalScroll(-50)
- panel3:SetVerticalScroll(50)
- panel3:SetBackdrop({bgFile="Interface\\DialogFrame\\UI-DialogBox-Background", edgeFile="", tile = false, tileSize = 0, edgeSize = 0, insets = { left = 0, right = 0, top = 0, bottom = 0 }})
- panel3:SetScript("OnVerticalScroll", function() end)
- panel3:EnableMouse(true)
- panel3:SetVerticalScroll(0)
- panel3:SetHorizontalScroll(0)
- panel3:SetScript("OnUpdate", function()
- local xframewidht = InterfaceOptionsFramePanelContainer:GetWidth()
- local xframeheight = InterfaceOptionsFramePanelContainer:GetHeight()
- if xframewidht ~= lastframewidht or xframeheight ~= lastframeheight then
- panel3:SetWidth(xframewidht-45)
- scc:SetWidth(xframewidht-45)
- panel3:SetHeight(xframeheight-20)
- scc:SetHeight(xframeheight-20)
- end
- end)
-
- local FilterDisableButton = CreateFrame("BUTTON", nil, scc, "UIPanelButtonTemplate")
- FilterDisableButton:SetHeight(20)
- FilterDisableButton:SetWidth(150)
- FilterDisableButton:SetPoint("TOPLEFT", scc, "TOPLEFT",0,-5)
- FilterDisableButton:SetText(AL["Select All Loot"])
- FilterDisableButton:SetWidth(FilterDisableButton:GetTextWidth()+20)
- FilterDisableButton:SetScript("OnClick", function()
- for k,v in pairs(FilterTable) do
- if type(v) == "table" then
- for i,j in pairs(FilterTable[k]) do
- AtlasLootFilterDB[k][j] = true
- end
- end
- end
- scc:Hide()
- scc:Show()
- end)
-
- local locClass,playerClass = UnitClass("player");
- local ClassFilterLoadButton = CreateFrame("BUTTON", nil, scc, "UIPanelButtonTemplate")
- ClassFilterLoadButton:SetHeight(20)
- ClassFilterLoadButton:SetWidth(150)
- ClassFilterLoadButton:SetPoint("TOPRIGHT", scc, "TOPRIGHT",0,-5)
- ClassFilterLoadButton:SetText(AL["Apply Filter:"].." "..locClass)
- ClassFilterLoadButton:SetWidth(ClassFilterLoadButton:GetTextWidth()+20)
- ClassFilterLoadButton:SetScript("OnClick", function()
- for k,v in pairs(FilterTable) do
- if type(v) == "table" then
- for i,j in pairs(FilterTable[k]) do
- if ClassHides[playerClass][k][i] == false then
- AtlasLootFilterDB[k][j] = false
- else
- AtlasLootFilterDB[k][j] = true
- end
- end
- end
- end
- scc:Hide()
- scc:Show()
- end)
-
-
-
- CreateCat(scc, "Armor")
- CreateCat(scc, "WeaponsMeele")
- CreateCat(scc, "WeaponsMeeleTwoHand")
- CreateCat(scc, "WeaponsRanged")
- CreateCat(scc, "Relics")
- CreateCat(scc, "Other")
-
- InterfaceOptions_AddCategory(FilterOptionsFrame)
- OptionsLoadet = true
-end
+--[[
+StaticPopupDialogs["ATLASLOOT_DELETE_FILTERLIST"]
+This is shown, if you want too delete a filter list
+]]
+StaticPopupDialogs["ATLASLOOT_DELETE_FILTERLIST"] = {
+ text = AL["Delete Filter"],
+ button1 = AL["Delete"],
+ button2 = AL["Cancel"],
+ OnShow = function()
+ this:SetFrameStrata("TOOLTIP");
+ end,
+ OnAccept = function()
+ table.remove(AtlasLootFilterDB["FilterLists"],UIDropDownMenu_GetSelectedID(AtlasLootFilterSelect));
+ UIDropDownMenu_SetSelectedID(AtlasLootFilterSelect,1);
+ UIDropDownMenu_SetText(AtlasLootFilterSelect,UIDropDownMenu_GetText(AtlasLootFilterSelect));
+ end,
+ timeout = 0,
+ whileDead = 1,
+ hideOnEscape = 1
+};
diff --git a/AtlasLoot/Core/ItemIDsDatabaseFixes.lua b/AtlasLoot/Core/ItemIDsDatabaseFixes.lua
index 78c1d3b..b22234e 100644
--- a/AtlasLoot/Core/ItemIDsDatabaseFixes.lua
+++ b/AtlasLoot/Core/ItemIDsDatabaseFixes.lua
@@ -1,119 +1,220 @@
+ItemIDsDatabase = {};
+
--Items not added from generated file
-ItemIDsDatabase[18563] = {18563, 18563, 318563, 218563};
-ItemIDsDatabase[18564] = {18564, 18564, 318564, 218564};
-ItemIDsDatabase[17204] = {17204, 17204, 317204, 217204};
-ItemIDsDatabase[19017] = {19017, 19017, 319017, 219017};
-ItemIDsDatabase[11879] = {11879, 11879, 311879, 211879};
+ItemIDsDatabase[18563] = { 18563, 18563, 318563, 218563 };
+ItemIDsDatabase[18564] = { 18564, 18564, 318564, 218564 };
+ItemIDsDatabase[17204] = { 17204, 17204, 317204, 217204 };
+ItemIDsDatabase[19017] = { 19017, 19017, 319017, 219017 };
+ItemIDsDatabase[11879] = { 11879, 11879, 311879, 211879 };
-ItemIDsDatabase[22589] = {6022589, 22589, 322589, 222589};
-ItemIDsDatabase[22632] = {6022632, 22632, 322632, 222632};
-ItemIDsDatabase[22631] = {6022631, 22631, 322631, 222631};
-ItemIDsDatabase[22630] = {6022630, 22630, 322630, 222630};
+ItemIDsDatabase[22589] = { 6022589, 22589, 322589, 222589 };
+ItemIDsDatabase[22632] = { 6022632, 22632, 322632, 222632 };
+ItemIDsDatabase[22631] = { 6022631, 22631, 322631, 222631 };
+ItemIDsDatabase[22630] = { 6022630, 22630, 322630, 222630 };
-ItemIDsDatabase[2032902] = {6053891, 2032902, 2232902, 2332902};
-ItemIDsDatabase[44831] = {6044831, 44831, 344831, 244831};
-ItemIDsDatabase[27896] = {6027896, 27896, 27896, 427896};
+ItemIDsDatabase[2032902] = { 6053891, 2032902, 2232902, 2332902 };
+ItemIDsDatabase[44831] = { 6044831, 44831, 344831, 244831 };
+ItemIDsDatabase[27896] = { 6027896, 27896, 27896, 427896 };
-ItemIDsDatabase[30007] = {6030007, 30007, 330007, 230007};
-ItemIDsDatabase[30015] = {6030015, 30015, 330015, 230015};
-ItemIDsDatabase[30017] = {6030017, 30017, 330017, 230017};
-ItemIDsDatabase[30018] = {6030018, 30018, 330018, 230018};
-ItemIDsDatabase[32837] = {6032837, 32837, 332837, 232837};
-ItemIDsDatabase[32838] = {6032838, 32838, 332838, 232838};
-ItemIDsDatabase[30104] = {6033482, 30104, 330104, 230104};
+ItemIDsDatabase[30007] = { 6030007, 30007, 330007, 230007 };
+ItemIDsDatabase[30015] = { 6030015, 30015, 330015, 230015 };
+ItemIDsDatabase[30017] = { 6030017, 30017, 330017, 230017 };
+ItemIDsDatabase[30018] = { 6030018, 30018, 330018, 230018 };
+ItemIDsDatabase[32837] = { 6032837, 32837, 332837, 232837 };
+ItemIDsDatabase[32838] = { 6032838, 32838, 332838, 232838 };
+ItemIDsDatabase[30104] = { 6033482, 30104, 330104, 230104 };
+
+--MC/Ony Items
+
+ItemIDsDatabase[18216] = { 6018216, 18216, 318216, 218216 };
+ItemIDsDatabase[18215] = { 6018215, 18215, 318215, 218215 };
+ItemIDsDatabase[18211] = { 6018211, 18211, 318211, 218211 };
+ItemIDsDatabase[17084] = { 6017084, 17084, 317084, 217084 };
+ItemIDsDatabase[18212] = { 6018212, 18212, 318212, 218212 };
+ItemIDsDatabase[17083] = { 6017083, 17083, 317083, 217083 };
+
+--T2 missing sets
+ItemIDsDatabase[1516900] = { 7516900, 1516900, 1816900, MythicRaid = 2816900, 1716900 };
+ItemIDsDatabase[1516902] = { 7516902, 1516902, 1816902, MythicRaid = 2816902, 1716902 };
+ItemIDsDatabase[1516897] = { 7516897, 1516897, 1816897, MythicRaid = 2816897, 1716897 };
+ItemIDsDatabase[1516904] = { 7516904, 1516904, 1816904, MythicRaid = 2816904, 1716904 };
+ItemIDsDatabase[1516904] = { 7516904, 1516904, 1816904, MythicRaid = 2816904, 1716904 };
+ItemIDsDatabase[1516899] = { 7516899, 1516899, 1816899, MythicRaid = 2816899, 1716899 };
+ItemIDsDatabase[1516903] = { 7516903, 1516903, 1816903, MythicRaid = 2816903, 1716903 };
+ItemIDsDatabase[1516898] = { 7516898, 1516898, 1816898, MythicRaid = 2816898, 1716898 };
+
+ItemIDsDatabase[1516892] = { 7516892, 1516892, 1816892, MythicRaid = 2816892, 1716892 };
+ItemIDsDatabase[1516894] = { 7516894, 1516894, 1816894, MythicRaid = 2816894, 1716894 };
+ItemIDsDatabase[1516889] = { 7516889, 1516889, 1816889, MythicRaid = 2816889, 1716889 };
+ItemIDsDatabase[1516896] = { 7516896, 1516896, 1816896, MythicRaid = 2816896, 1716896 };
+ItemIDsDatabase[1516891] = { 7516891, 1516891, 1816891, MythicRaid = 2816891, 1716891 };
+ItemIDsDatabase[1516895] = { 7516895, 1516895, 1816895, MythicRaid = 2816895, 1716895 };
+ItemIDsDatabase[1516893] = { 7516893, 1516893, 1816893, MythicRaid = 2816893, 1716893 };
+ItemIDsDatabase[1516890] = { 7516890, 1516890, 1816890, MythicRaid = 2816890, 1716890 };
+
+ItemIDsDatabase[1516955] = { 7516955, 1516955, 1816955, MythicRaid = 2816955, 1716955 };
+ItemIDsDatabase[1516953] = { 7516953, 1516953, 1816953, MythicRaid = 2816953, 1716953 };
+ItemIDsDatabase[1516958] = { 7516958, 1516958, 1816958, MythicRaid = 2816958, 1716958 };
+ItemIDsDatabase[1516951] = { 7516951, 1516951, 1816951, MythicRaid = 2816951, 1716951 };
+ItemIDsDatabase[1516956] = { 7516956, 1516956, 1816956, MythicRaid = 2816956, 1716956 };
+ItemIDsDatabase[1516952] = { 7516952, 1516952, 1816952, MythicRaid = 2816952, 1716952 };
+ItemIDsDatabase[1516954] = { 7516954, 1516954, 1816954, MythicRaid = 2816954, 1716954 };
+ItemIDsDatabase[1516957] = { 7516957, 1516957, 1816957, MythicRaid = 2816957, 1716957 };
+
+ItemIDsDatabase[1516921] = { 7516921, 1516921, 1816921, MythicRaid = 2816921, 1716921 };
+ItemIDsDatabase[1516924] = { 7516924, 1516924, 1816924, MythicRaid = 2816924, 1716924 };
+ItemIDsDatabase[1516923] = { 7516923, 1516923, 1816923, MythicRaid = 2816923, 1716923 };
+ItemIDsDatabase[1516926] = { 7516926, 1516926, 1816926, MythicRaid = 2816926, 1716926 };
+ItemIDsDatabase[1516920] = { 7516920, 1516920, 1816920, MythicRaid = 2816920, 1716920 };
+ItemIDsDatabase[1516925] = { 7516925, 1516925, 1816925, MythicRaid = 2816925, 1716925 };
+ItemIDsDatabase[1516922] = { 7516922, 1516922, 1816922, MythicRaid = 2816922, 1716922 };
+ItemIDsDatabase[1516919] = { 7516919, 1516919, 1816919, MythicRaid = 2816919, 1716919 };
+
+ItemIDsDatabase[1516947] = { 7516947, 1516947, 1816947, MythicRaid = 2816947, 1716947 };
+ItemIDsDatabase[1516945] = { 7516945, 1516945, 1816945, MythicRaid = 2816945, 1716945 };
+ItemIDsDatabase[1516950] = { 7516950, 1516950, 1816950, MythicRaid = 2816950, 1716950 };
+ItemIDsDatabase[1516943] = { 7516943, 1516943, 1816943, MythicRaid = 2816943, 1716943 };
+ItemIDsDatabase[1516948] = { 7516948, 1516948, 1816948, MythicRaid = 2816948, 1716948 };
+ItemIDsDatabase[1516944] = { 7516944, 1516944, 1816944, MythicRaid = 2816944, 1716944 };
+ItemIDsDatabase[1516946] = { 7516946, 1516946, 1816946, MythicRaid = 2816946, 1716946 };
+ItemIDsDatabase[1516949] = { 7516949, 1516949, 1816949, MythicRaid = 2816949, 1716949 };
+
+ItemIDsDatabase[1516963] = { 7516963, 1516963, 1816963, MythicRaid = 2816963, 1716963 };
+ItemIDsDatabase[1516961] = { 7516961, 1516961, 1816961, MythicRaid = 2816961, 1716961 };
+ItemIDsDatabase[1516966] = { 7516966, 1516966, 1816966, MythicRaid = 2816966, 1716966 };
+ItemIDsDatabase[1516959] = { 7516959, 1516959, 1816959, MythicRaid = 2816959, 1716959 };
+ItemIDsDatabase[1516964] = { 7516964, 1516964, 1816964, MythicRaid = 2816964, 1716964 };
+ItemIDsDatabase[1516960] = { 7516960, 1516960, 1816960, MythicRaid = 2816960, 1716960 };
+ItemIDsDatabase[1516962] = { 7516962, 1516962, 1816962, MythicRaid = 2816962, 1716962 };
+ItemIDsDatabase[1516965] = { 7516965, 1516965, 1816965, MythicRaid = 2816965, 1716965 };
--Tier 1 Tokens
-ItemIDsDatabase[2522360] = {2522360, 2522360, 2622360, 2722360};
-ItemIDsDatabase[2522361] = {2522361, 2522361, 2622361, 2722361};
-ItemIDsDatabase[2522350] = {2522350, 2522350, 2622350, 2722350};
-ItemIDsDatabase[2522362] = {2522362, 2522362, 2622362, 2722362};
-ItemIDsDatabase[2522363] = {2522363, 2522363, 2622363, 2722363};
-ItemIDsDatabase[2522364] = {2522364, 2522364, 2622364, 2722364};
-ItemIDsDatabase[2522359] = {2522359, 2522359, 2622359, 2722359};
-ItemIDsDatabase[2522365] = {2522365, 2522365, 2622365, 2722365};
+ItemIDsDatabase[2522360] = { 2522360, 2522360, 2622360, 2722360, MythicRaid = 3722360 };
+ItemIDsDatabase[2522361] = { 2522361, 2522361, 2622361, 2722361, MythicRaid = 3722361 };
+ItemIDsDatabase[2522350] = { 2522350, 2522350, 2622350, 2722350, MythicRaid = 3722350 };
+ItemIDsDatabase[2522362] = { 2522362, 2522362, 2622362, 2722362, MythicRaid = 3722362 };
+ItemIDsDatabase[2522363] = { 2522363, 2522363, 2622363, 2722363, MythicRaid = 3722363 };
+ItemIDsDatabase[2522364] = { 2522364, 2522364, 2622364, 2722364, MythicRaid = 3722364 };
+ItemIDsDatabase[2522359] = { 2522359, 2522359, 2622359, 2722359, MythicRaid = 3722359 };
+ItemIDsDatabase[2522365] = { 2522365, 2522365, 2622365, 2722365, MythicRaid = 3722365 };
+
+--Tier 1 New Sets
+ItemIDsDatabase[11533] = { 6011533, 11533, 311533, 211533 };
+ItemIDsDatabase[11534] = { 6011534, 11534, 311534, 211534 };
+ItemIDsDatabase[11535] = { 6011535, 11535, 311535, 211535 };
+ItemIDsDatabase[11536] = { 6011536, 11536, 311536, 211536 };
+ItemIDsDatabase[11537] = { 6011537, 11537, 311537, 211537 };
+ItemIDsDatabase[11538] = { 6011538, 11538, 311538, 211538 };
+ItemIDsDatabase[11531] = { 6011531, 11531, 311531, 211531 };
+ItemIDsDatabase[11532] = { 6011532, 11532, 311532, 211532 };
+
+ItemIDsDatabase[11789] = { 6011789, 11789, 311789, 211789 };
+ItemIDsDatabase[11790] = { 6011790, 11790, 311790, 211790 };
+ItemIDsDatabase[11791] = { 6011791, 11791, 311791, 211791 };
+ItemIDsDatabase[11792] = { 6011792, 11792, 311792, 211792 };
+ItemIDsDatabase[11793] = { 6011793, 11793, 311793, 211793 };
+ItemIDsDatabase[11794] = { 6011794, 11794, 311794, 211794 };
+ItemIDsDatabase[11795] = { 6011795, 11795, 311795, 211795 };
+ItemIDsDatabase[11796] = { 6011796, 11796, 311796, 211796 };
+
+ItemIDsDatabase[13432] = { 6013432, 13432, 313432, 213432 };
+ItemIDsDatabase[13433] = { 6013433, 13433, 313433, 213433 };
+ItemIDsDatabase[13434] = { 6013434, 13434, 313434, 213434 };
+ItemIDsDatabase[13435] = { 6013435, 13435, 313435, 213435 };
+ItemIDsDatabase[13436] = { 6013436, 13436, 313436, 213436 };
+ItemIDsDatabase[13437] = { 6013437, 13437, 313437, 213437 };
+ItemIDsDatabase[13438] = { 6013438, 13438, 313438, 213438 };
+ItemIDsDatabase[13439] = { 6013439, 13439, 313439, 213439 };
+
--Tier 2 Tokens
-ItemIDsDatabase[2522460] = {2522460, 2522460, 2622460, 2722460};
-ItemIDsDatabase[2522461] = {2522461, 2522461, 2622461, 2722461};
-ItemIDsDatabase[2522450] = {2522450, 2522450, 2622450, 2722450};
-ItemIDsDatabase[2522462] = {2522462, 2522462, 2622462, 2722462};
-ItemIDsDatabase[2522464] = {2522464, 2522464, 2622464, 2722464};
-ItemIDsDatabase[2522463] = {2522463, 2522463, 2622463, 2722463};
-ItemIDsDatabase[2522459] = {2522459, 2522459, 2622459, 2722459};
-ItemIDsDatabase[2522465] = {2522465, 2522465, 2622465, 2722465};
+ItemIDsDatabase[2522460] = { 2522460, 2522460, 2622460, 2722460, MythicRaid = 3722460 };
+ItemIDsDatabase[2522461] = { 2522461, 2522461, 2622461, 2722461, MythicRaid = 3722461 };
+ItemIDsDatabase[2522450] = { 2522450, 2522450, 2622450, 2722450, MythicRaid = 3722450 };
+ItemIDsDatabase[2522462] = { 2522462, 2522462, 2622462, 2722462, MythicRaid = 3722462 };
+ItemIDsDatabase[2522464] = { 2522464, 2522464, 2622464, 2722464, MythicRaid = 3722464 };
+ItemIDsDatabase[2522463] = { 2522463, 2522463, 2622463, 2722463, MythicRaid = 3722463 };
+ItemIDsDatabase[2522459] = { 2522459, 2522459, 2622459, 2722459, MythicRaid = 3722459 };
+ItemIDsDatabase[2522465] = { 2522465, 2522465, 2622465, 2722465, MythicRaid = 3722465 };
--Tier 3 Tokens
-ItemIDsDatabase[22353] = {22353, 22353, 102278, 222353};
-ItemIDsDatabase[22354] = {22354, 22354, 102286, 222354};
-ItemIDsDatabase[22349] = {22349, 22349, 102264, 222349};
-ItemIDsDatabase[22355] = {22355, 22355, 102262, 222355};
-ItemIDsDatabase[22357] = {22357, 22357, 102268, 222357};
-ItemIDsDatabase[22356] = {22356, 22356, 102300, 222356};
-ItemIDsDatabase[22352] = {22352, 22352, 102284, 222352};
-ItemIDsDatabase[22358] = {22358, 22358, 102290, 222358};
+ItemIDsDatabase[22353] = { 22353, 22353, 102278, 222353 };
+ItemIDsDatabase[22354] = { 22354, 22354, 102286, 222354 };
+ItemIDsDatabase[22349] = { 22349, 22349, 102264, 222349 };
+ItemIDsDatabase[22355] = { 22355, 22355, 102262, 222355 };
+ItemIDsDatabase[22357] = { 22357, 22357, 102268, 222357 };
+ItemIDsDatabase[22356] = { 22356, 22356, 102300, 222356 };
+ItemIDsDatabase[22352] = { 22352, 22352, 102284, 222352 };
+ItemIDsDatabase[22358] = { 22358, 22358, 102290, 222358 };
--Tier 4 Tokens
-ItemIDsDatabase[29761] = {29761, 29761, 329761, 229761};
-ItemIDsDatabase[29764] = {29764, 29764, 329764, 229764};
-ItemIDsDatabase[29753] = {29753, 29753, 329753, 229753};
-ItemIDsDatabase[29758] = {29758, 29758, 329758, 229758};
-ItemIDsDatabase[29767] = {29767, 29767, 329767, 229767};
+ItemIDsDatabase[29761] = { 29761, 29761, 329761, 229761 };
+ItemIDsDatabase[29764] = { 29764, 29764, 329764, 229764 };
+ItemIDsDatabase[29753] = { 29753, 29753, 329753, 229753 };
+ItemIDsDatabase[29758] = { 29758, 29758, 329758, 229758 };
+ItemIDsDatabase[29767] = { 29767, 29767, 329767, 229767 };
--Tier 5 Tokens
-ItemIDsDatabase[30243] = {30243, 30243, 330243, 230243};
-ItemIDsDatabase[30249] = {30249, 30249, 330249, 230249};
-ItemIDsDatabase[30237] = {30237, 30237, 330237, 230237};
-ItemIDsDatabase[30240] = {30240, 30240, 330240, 230240};
-ItemIDsDatabase[30246] = {30246, 30246, 30246, 230246};
+ItemIDsDatabase[30243] = { 30243, 30243, 330243, 230243 };
+ItemIDsDatabase[30249] = { 30249, 30249, 330249, 230249 };
+ItemIDsDatabase[30237] = { 30237, 30237, 330237, 230237 };
+ItemIDsDatabase[30240] = { 30240, 30240, 330240, 230240 };
+ItemIDsDatabase[30246] = { 30246, 30246, 330246, 230246 };
--Druid
-ItemIDsDatabase[29098] = {6029098, 29098, 314712, 214712};
-ItemIDsDatabase[29100] = {6029100, 29100, 314714, 214714};
-ItemIDsDatabase[29096] = {6029096, 29096, 314710, 214710};
-ItemIDsDatabase[29097] = {6029097, 29097, 314711, 214711};
-ItemIDsDatabase[29099] = {6029099, 29099, 314713, 214713};
+ItemIDsDatabase[29098] = { 6029098, 29098, 314712, 214712 };
+ItemIDsDatabase[29100] = { 6029100, 29100, 314714, 214714 };
+ItemIDsDatabase[29096] = { 6029096, 29096, 314710, 214710 };
+ItemIDsDatabase[29097] = { 6029097, 29097, 314711, 214711 };
+ItemIDsDatabase[29099] = { 6029099, 29099, 314713, 214713 };
--ZA New Items
-ItemIDsDatabase[21824] = {6021824, 21824, 321824, 221824};
-ItemIDsDatabase[24574] = {6024574, 24574, 324574, 224574};
-ItemIDsDatabase[28354] = {6028354, 28354, 328354, 228354};
-ItemIDsDatabase[33059] = {6033059, 33059, 333059, 233059};
-ItemIDsDatabase[33983] = {6033983, 33983, 333983, 233983};
-ItemIDsDatabase[39755] = {6039755, 39755, 339755, 239755};
-ItemIDsDatabase[33533] = {6033533, 33533, 333533, 233533};
-ItemIDsDatabase[33979] = {6033979, 33979, 333979, 233979};
-ItemIDsDatabase[34071] = {6034071, 34071, 334071, 234071};
-ItemIDsDatabase[38634] = {6038634, 38634, 338634, 238634};
-ItemIDsDatabase[33500] = {6033500, 33500, 333500, 233500};
-ItemIDsDatabase[33496] = {6033496, 33496, 333496, 233496};
-ItemIDsDatabase[33498] = {6033498, 33498, 333498, 233498};
-ItemIDsDatabase[33971] = {6033971, 33971, 333971, 233971};
-ItemIDsDatabase[33495] = {6033495, 33495, 333495, 233495};
-ItemIDsDatabase[33480] = {6033480, 33480, 333480, 233480};
-ItemIDsDatabase[33591] = {6033591, 33591, 333591, 233591};
-ItemIDsDatabase[33590] = {6033590, 33590, 333590, 233590};
-ItemIDsDatabase[33481] = {6033481, 33481, 333481, 233481};
-ItemIDsDatabase[33492] = {6033492, 33492, 333492, 233492};
-ItemIDsDatabase[33499] = {6033499, 33499, 333499, 233499};
-ItemIDsDatabase[33805] = {6033805, 33805, 333805, 233805};
-ItemIDsDatabase[33491] = {6033491, 33491, 333491, 233491};
-ItemIDsDatabase[33490] = {6033490, 33490, 333490, 233490};
-ItemIDsDatabase[33489] = {6033489, 33489, 333489, 233489};
-ItemIDsDatabase[33483] = {6033483, 33483, 333483, 233483};
-ItemIDsDatabase[33493] = {6033493, 33493, 333493, 233493};
-ItemIDsDatabase[33497] = {6033497, 33497, 333497, 233497};
-ItemIDsDatabase[33494] = {6033494, 33494, 333494, 233494};
-ItemIDsDatabase[24537] = {6024537, 24537, 324537, 224537};
+ItemIDsDatabase[21824] = { 6021824, 21824, 321824, 221824 };
+ItemIDsDatabase[24574] = { 6024574, 24574, 324574, 224574 };
+ItemIDsDatabase[28354] = { 6028354, 28354, 328354, 228354 };
+ItemIDsDatabase[33059] = { 6033059, 33059, 333059, 233059 };
+ItemIDsDatabase[33983] = { 6033983, 33983, 333983, 233983 };
+ItemIDsDatabase[39755] = { 6039755, 39755, 339755, 239755 };
+ItemIDsDatabase[33533] = { 6033533, 33533, 333533, 233533 };
+ItemIDsDatabase[33979] = { 6033979, 33979, 333979, 233979 };
+ItemIDsDatabase[34071] = { 6034071, 34071, 334071, 234071 };
+ItemIDsDatabase[38634] = { 6038634, 38634, 338634, 238634 };
+ItemIDsDatabase[33500] = { 6033500, 33500, 333500, 233500 };
+ItemIDsDatabase[33496] = { 6033496, 33496, 333496, 233496 };
+ItemIDsDatabase[33498] = { 6033498, 33498, 333498, 233498 };
+ItemIDsDatabase[33971] = { 6033971, 33971, 333971, 233971 };
+ItemIDsDatabase[33495] = { 6033495, 33495, 333495, 233495 };
+ItemIDsDatabase[33480] = { 6033480, 33480, 333480, 233480 };
+ItemIDsDatabase[33591] = { 6033591, 33591, 333591, 233591 };
+ItemIDsDatabase[33590] = { 6033590, 33590, 333590, 233590 };
+ItemIDsDatabase[33481] = { 6033481, 33481, 333481, 233481 };
+ItemIDsDatabase[33492] = { 6033492, 33492, 333492, 233492 };
+ItemIDsDatabase[33499] = { 6033499, 33499, 333499, 233499 };
+ItemIDsDatabase[33805] = { 6033805, 33805, 333805, 233805 };
+ItemIDsDatabase[33491] = { 6033491, 33491, 333491, 233491 };
+ItemIDsDatabase[33490] = { 6033490, 33490, 333490, 233490 };
+ItemIDsDatabase[33489] = { 6033489, 33489, 333489, 233489 };
+ItemIDsDatabase[33483] = { 6033483, 33483, 333483, 233483 };
+ItemIDsDatabase[33493] = { 6033493, 33493, 333493, 233493 };
+ItemIDsDatabase[33497] = { 6033497, 33497, 333497, 233497 };
+ItemIDsDatabase[33494] = { 6033494, 33494, 333494, 233494 };
+ItemIDsDatabase[24537] = { 6024537, 24537, 324537, 224537 };
--ZA Bears
-ItemIDsDatabase[1333809] = {1333809, 1333809, 1433809, 1233809};
+ItemIDsDatabase[1333809] = { 1333809, 1333809, 1433809, 1233809 };
--intact vial of kael'thas sunstrider
-ItemIDsDatabase[450001] = {450001, 450001, 450003, 450005};
-ItemIDsDatabase[450000] = {450000, 450000, 450002, 450004};
\ No newline at end of file
+ItemIDsDatabase[450001] = { 450001, 450001, 450003, 450005, MythicRaid = 1450003 };
+ItemIDsDatabase[450000] = { 450000, 450000, 450002, 450004, MythicRaid = 1450002 };
+
+for _, v in pairs(ItemIDsDatabase) do
+ if not v["MythicRaid"] then
+ v["MythicRaid"] = tonumber("13"..v[2]);
+ end
+end
diff --git a/AtlasLoot/Core/LootButtons.lua b/AtlasLoot/Core/LootButtons.lua
index 8a2f869..c4db4e9 100644
--- a/AtlasLoot/Core/LootButtons.lua
+++ b/AtlasLoot/Core/LootButtons.lua
@@ -69,7 +69,9 @@ function AtlasLootItem_OnEnter(self)
if ( AtlasLoot.db.profile.ItemIDs ) then
AtlasLootTooltip:AddLine(BLUE..AL["ItemID:"].." "..self.itemID, nil, nil, nil, 1);
end
- if( self.droprate ~= nil) then
+ if( self.droprate ~= nil) and ( self.droprate:match("=EI=") ) then
+ AtlasLootTooltip:AddLine(AL["Extra Info: "]..string.sub(self.droprate, 5), 1, 1, 0);
+ elseif( self.droprate ~= nil) then
AtlasLootTooltip:AddLine(AL["Drop Rate: "]..self.droprate, 1, 1, 0);
end
if( DKP ~= nil and DKP ~= "" ) then
@@ -96,8 +98,10 @@ function AtlasLootItem_OnEnter(self)
if ( AtlasLoot.db.profile.ItemIDs ) then
AtlasLootTooltip:AddLine(BLUE..AL["ItemID:"].." "..self.itemID, nil, nil, nil, 1);
end
- if( self.droprate ~= nil) then
- AtlasLootTooltip:AddLine(AL["Drop Rate: "]..self.droprate, 1, 1, 0, 1);
+ if( self.droprate ~= nil) and (self.droprate:match("=EI=")) then
+ AtlasLootTooltip:AddLine(AL["Extra Info: "]..string.sub(self.droprate, 5), 1, 1, 0);
+ elseif( self.droprate ~= nil) then
+ AtlasLootTooltip:AddLine(AL["Drop Rate: "]..self.droprate, 1, 1, 0);
end
if( DKP ~= nil and DKP ~= "" ) then
AtlasLootTooltip:AddLine(RED..DKP.." "..AL["DKP"], 1, 1, 0);
@@ -118,8 +122,10 @@ function AtlasLootItem_OnEnter(self)
if ( AtlasLoot.db.profile.ItemIDs ) then
GameTooltip:AddLine(BLUE..AL["ItemID:"].." "..self.itemID, nil, nil, nil, 1);
end
- if( self.droprate ~= nil) then
- GameTooltip:AddLine(AL["Drop Rate: "]..self.droprate, 1, 1, 0);
+ if( self.droprate ~= nil) and ( self.droprate:match("=EI=") ) then
+ AtlasLootTooltip:AddLine(AL["Extra Info: "]..string.sub(self.droprate, 5), 1, 1, 0);
+ elseif( self.droprate ~= nil) then
+ AtlasLootTooltip:AddLine(AL["Drop Rate: "]..self.droprate, 1, 1, 0);
end
if( DKP ~= nil and DKP ~= "" ) then
GameTooltip:AddLine(RED..DKP.." "..AL["DKP"], 1, 1, 0);
@@ -141,7 +147,9 @@ function AtlasLootItem_OnEnter(self)
if ( AtlasLoot.db.profile.ItemIDs ) then
AtlasLootTooltip:AddLine(BLUE..AL["ItemID:"].." "..self.itemID, nil, nil, nil, 1);
end
- if( self.droprate ~= nil) then
+ if( self.droprate ~= nil) and ( self.droprate:match("=EI=") ) then
+ AtlasLootTooltip:AddLine(AL["Extra Info: "]..string.sub(self.droprate, 5), 1, 1, 0);
+ elseif( self.droprate ~= nil) then
AtlasLootTooltip:AddLine(AL["Drop Rate: "]..self.droprate, 1, 1, 0);
end
if( DKP ~= nil and DKP ~= "" ) then
@@ -154,15 +162,6 @@ function AtlasLootItem_OnEnter(self)
if((AtlasLoot.db.profile.EquipCompare and ((not EquipCompare_RegisterTooltip) or (not EquipCompare_Enabled)))) or IsShiftKeyDown() then
AtlasLootItem_ShowCompareItem(self); --- CALL MISSING METHOD TO SHOW 2 TOOLTIPS (Item Compare)
end
- else
- AtlasLootTooltip:SetOwner(self, "ANCHOR_RIGHT", -(self:GetWidth() / 2), 24);
- AtlasLootTooltip:ClearLines();
- AtlasLootTooltip:AddLine(RED..AL["Item Unavailable"], nil, nil, nil, 1);
- AtlasLootTooltip:AddLine(BLUE..AL["ItemID:"].." "..self.itemID, nil, nil, nil, 1);
- AtlasLootTooltip:AddLine(AL["self item is unsafe. To view self item without the risk of disconnection, you need to have first seen it in the game world. This is a restriction enforced by Blizzard since Patch 1.10."], nil, nil, nil, 1);
- AtlasLootTooltip:AddLine(" ");
- AtlasLootTooltip:AddLine(AL["You can right-click to attempt to query the server. You may be disconnected."], nil, nil, nil, 1);
- AtlasLootTooltip:Show();
end
end
end
@@ -224,7 +223,7 @@ function AtlasLootItem_OnClick(self ,arg1)
if arg1=="RightButton" and ATLASLOOT_ITEM_UNLOCK then
AtlasLoot:MoveWishlistItem("Down",self.number);
elseif IsAltKeyDown() and arg1=="LeftButton" and ATLASLOOT_ITEM_UNLOCK then
- StaticPopup_Show ("ATLASLOOT_ADD_CUSTOMHEADER");
+ StaticPopup_Show("ATLASLOOT_ADD_CUSTOMHEADER");
StaticPopupDialogs.ATLASLOOT_ADD_CUSTOMHEADER.num = self.number;
elseif (arg1=="LeftButton") and ATLASLOOT_ITEM_UNLOCK then
AtlasLoot:MoveWishlistItem("Up",self.number);
@@ -252,10 +251,10 @@ function AtlasLootItem_OnClick(self ,arg1)
else
if(AtlasLootItemsFrame.refresh[1] == "SearchResult") then
local datID, _, datPage = strsplit("|", self.sourcePage);
- AtlasLoot_ShowWishListDropDown(self.itemID, self.itemTexture, _G["AtlasLootItem_"..self:GetID().."_Name"]:GetText(),
- AtlasLoot_Data[datID][tonumber(datPage)].Name, self.sourcePage, self);
+ AtlasLoot_ShowWishListDropDown(self.itemID, self.itemTexture, _G["AtlasLootItem_"..self:GetID().."_Name"]:GetText(), AtlasLoot_Data[datID][tonumber(datPage)].Name,
+ datID .. "|" .. "AtlasLoot_Data" .. "|" .. tostring(datPage), self);
else
- AtlasLoot_ShowWishListDropDown(self.itemID, self.itemTexture, _G["AtlasLootItem_"..self:GetID().."_Name"]:GetText(),
+ AtlasLoot_ShowWishListDropDown(self.itemID, self.itemTexture, _G["AtlasLootItem_"..self:GetID().."_Name"]:GetText(),
AtlasLoot_BossName:GetText(), self.dataID .. "|" .. "AtlasLoot_Data" .. "|" .. tostring(self.tablenum), self);
end
end
@@ -264,6 +263,12 @@ function AtlasLootItem_OnClick(self ,arg1)
if(dataID and dataSource) then
AtlasLoot:ShowItemsFrame(dataID, "AtlasLoot_Data", tonumber(dataPage));
end
+ elseif( self.sourcePage and self.sourcePage:match("=LT=") ) then
+ local dataID, dataSource, dataPage = strsplit("|", string.sub(self.sourcePage, 5));
+ if(dataID and dataSource) then
+ ATLASLOOT_BACKENABLED = true;
+ AtlasLoot:ShowItemsFrame(dataID, "AtlasLoot_Data", tonumber(dataPage));
+ end
elseif (arg1=="LeftButton") and self.sourcePage then
--Create token table if there isnt one
if AtlasLoot_TokenData[self.sourcePage] == nil then
@@ -297,6 +302,12 @@ function AtlasLootItem_OnClick(self ,arg1)
if(dataID and dataSource) then
AtlasLoot:ShowItemsFrame(dataID, "AtlasLoot_Data", tonumber(dataPage));
end
+ elseif( self.sourcePage and self.sourcePage:match("=LT=") ) then
+ local dataID, dataSource, dataPage = strsplit("|", string.sub(self.sourcePage, 5));
+ if(dataID and dataSource) then
+ ATLASLOOT_BACKENABLED = true;
+ AtlasLoot:ShowItemsFrame(dataID, "AtlasLoot_Data", tonumber(dataPage));
+ end
end
end
end
diff --git a/AtlasLoot/Core/Options.lua b/AtlasLoot/Core/Options.lua
index 8c20264..cc51653 100644
--- a/AtlasLoot/Core/Options.lua
+++ b/AtlasLoot/Core/Options.lua
@@ -181,6 +181,8 @@ function AtlasLoot_DisplayHelp()
WHITE..AL["While on the wishlist screen, just Alt+Left Click on an item to delete it."].."\n\n"..
ORANGE..AL["What else does the wishlist do?"].."\n"..
WHITE..AL["If you Left Click any item on the wishlist, you can jump to the loot page the item comes from. Also, on a loot page any item already in your wishlist is marked with a yellow star."].."\n\n"..
+ ORANGE..AL["How to set of change a page filter:"].."\n"..
+ WHITE..AL["If you Right Click on the filter check box you will get a drop downmenu with a list of filters. Click the filter you want to use or click add filter set to add new custom filters."].."\n\n"..
ORANGE..AL["HELP!! I have broken the mod somehow!"].."\n"..
WHITE..AL["Use the reset buttons available in the options menu, or type '/al reset' in your chat window."].."\n\n"..
GREY..AL["For further help, see our website and forums: "]..GREEN.."https://discord.gg/uYCE2X2FgA"
@@ -235,8 +237,6 @@ function AtlasLoot_OptionsOnShow()
UIDropDownMenu_SetWidth(AtlasLoot_SelectLootBrowserStyle, 150);
end
-
-
function AtlasLoot_SelectLootBrowserStyle_OnClick()
local thisID = this:GetID();
UIDropDownMenu_SetSelectedID(AtlasLoot_SelectLootBrowserStyle, thisID);
@@ -249,32 +249,6 @@ function AtlasLoot_SelectLootBrowserStyle_OnClick()
AtlasLoot_OptionsOnShow();
end
-local Authors = {
- ["Calî"] = "Arthas",
- ["Lâg"] = "Arthas",
- --["Daviesh"] = "Thaurissan",
- ["Hegarol"] = "Dun Morogh",
-
-}
-
-function AtlasLoot_UnitTarget()
- local name = GameTooltip:GetUnit()
- if UnitName("mouseover") == name then
- local _, realm = UnitName("mouseover")
- if not realm then
- realm = GetRealmName()
- end;
- if name and Authors[name] then
- if Authors[name] == realm then
- GameTooltip:AddLine("AtlasLoot Author |TInterface\\AddOns\\AtlasLoot\\Images\\gold:0|t", 0, 1, 0 )
- end
- end
- end
-end
-GameTooltip:HookScript("OnTooltipSetUnit", AtlasLoot_UnitTarget)
-
-
-
local helpframe = CreateFrame("Frame", "AtlasLootHelpFrame")
helpframe:SetSize(425,450);
helpframe:Hide();
@@ -403,7 +377,7 @@ local fooshow = CreateFrame("Button", "AtlasLootOptionsFrame_FuBarShow", AtlasLo
end
end);
- local foohide = CreateFrame("Button", "AtlasLootOptionsFrame_FuBarShow", AtlasLootOptionsFrame, "OptionsButtonTemplate");
+local foohide = CreateFrame("Button", "AtlasLootOptionsFrame_FuBarHide", AtlasLootOptionsFrame, "OptionsButtonTemplate");
foohide:SetSize(150,25);
foohide:SetText(AL["Hide FuBar Plugin"]);
foohide:SetPoint("TOP", "AtlasLootOptionsFrame", "TOP", 85, -390);
diff --git a/AtlasLoot/Core/Search.lua b/AtlasLoot/Core/Search.lua
index 7be47bf..1147c53 100644
--- a/AtlasLoot/Core/Search.lua
+++ b/AtlasLoot/Core/Search.lua
@@ -7,7 +7,7 @@ local BLUE = "|cff0070dd";
local ORANGE = "|cffFF8400";
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
-local modules = {"AtlasLoot_BurningCrusade", "AtlasLoot_Crafting", "AtlasLoot_OriginalWoW", "AtlasLoot_WorldEvents", "AtlasLoot_WrathoftheLichKing"};
+local modules = {"AtlasLoot_BurningCrusade", "AtlasLoot_Vanity", "AtlasLoot_Crafting", "AtlasLoot_OriginalWoW", "AtlasLoot_WorldEvents", "AtlasLoot_WrathoftheLichKing"};
local currentPage = 1;
local SearchResult = nil;
@@ -665,7 +665,7 @@ local function DoSearch(searchText)
end
else
local difficultyCap = min(AtlasLoot_Difficulty:getMaxDifficulty(data.Type), ItemindexID);
- itemId = AtlasLoot:FindId(itemId, difficultyCap) or 2;
+ itemId = AtlasLoot:FindId(itemId, difficultyCap, data.Type) or 2;
local item = Item:CreateFromID(itemId);
diff --git a/AtlasLoot/Core/SearchAdvanced.lua b/AtlasLoot/Core/SearchAdvanced.lua
index 57d11c1..b367752 100644
--- a/AtlasLoot/Core/SearchAdvanced.lua
+++ b/AtlasLoot/Core/SearchAdvanced.lua
@@ -1,5 +1,5 @@
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
-local modules = {"AtlasLoot_BurningCrusade", "AtlasLoot_Crafting", "AtlasLoot_OriginalWoW", "AtlasLoot_WorldEvents", "AtlasLoot_WrathoftheLichKing"};
+local modules = {"AtlasLoot_BurningCrusade", "AtlasLoot_Vanity", "AtlasLoot_Crafting", "AtlasLoot_OriginalWoW", "AtlasLoot_WorldEvents", "AtlasLoot_WrathoftheLichKing"};
AtlasLoot_QualityMenu = AceLibrary("Dewdrop-2.0");
AtlasLoot_DifficultyMenu = AceLibrary("Dewdrop-2.0");
@@ -144,7 +144,7 @@ AtlasLoot_AdvancedSearchArguments = {
["Primary Stats"] = {{"Stamina", "sta"}, {"Strength", "str"}, {"Agility", "agi"}, {"Intellect", "int"}, {"Spirit", "spi"}}
},
[2] = {
- ["Secondary Stats"] = {{"Attack Power", "ap"}, {"Spell Power", "sp"}, {"Crit", "crit"}, {"Hit", "hit"}, {"Haste", "haste"}, {"Expertise", "exp"}, {"Armor Pen", "arp"}, {"Spell Pen", "spp"}}
+ ["Secondary Stats"] = {{"Attack Power", "ap"}, {"Spell Power", "sp"}, {"Crit", "crit"}, {"Hit", "hit"}, {"Haste", "haste"}, {"Expertise", "exp"}, {"Armor Pen", "arp"}, {"Spell Pen", "spp"}, {"Mana Per 5", "mp5"}}
},
[3] = {
["Defensive Stats"] = {{"Defense", "def"}, {"Dodge", "dodge"}, {"Parry", "parry"}, {"Block", "block"}, {"Block Value", "bv"}, {"Resilience", "res"}}
diff --git a/AtlasLoot/Core/TextParsing.lua b/AtlasLoot/Core/TextParsing.lua
index bd0c0e8..012cf58 100644
--- a/AtlasLoot/Core/TextParsing.lua
+++ b/AtlasLoot/Core/TextParsing.lua
@@ -1120,6 +1120,7 @@ function AtlasLoot_FixText(text)
text = gsub(text, "#halaaresearch#", "|TInterface\\Icons\\INV_Misc_Rune_09:0|t");
text = gsub(text, "#spiritshard#", "|TInterface\\Icons\\INV_Jewelry_FrostwolfTrinket_04:0|t");
text = gsub(text, "#wintergrasp#", "|TInterface\\Icons\\INV_Misc_Platnumdisks:0|t");
+ text = gsub(text, "#tokenofprestige#", "|TInterface\\Icons\\Spell_Holy_MindSooth:0|t");
text = gsub(text, "#wintergraspmark#", "|TInterface\\Icons\\INV_Jewelry_Ring_66:0|t");
text = gsub(text, "#venturecoin#", "|TInterface\\Icons\\INV_Misc_Coin_16:0|t");
text = gsub(text, "#heroic#", "|TInterface\\Icons\\Spell_Holy_ChampionsBond:0|t");
diff --git a/AtlasLoot/Core/WishList.lua b/AtlasLoot/Core/WishList.lua
index ebbb302..28d7626 100644
--- a/AtlasLoot/Core/WishList.lua
+++ b/AtlasLoot/Core/WishList.lua
@@ -77,7 +77,12 @@ function AtlasLoot_WishListAddDropClick(typ, arg2, arg3, arg4)
DEFAULT_CHAT_FRAME:AddMessage(BLUE..AL["AtlasLoot"]..": "..AtlasLoot_FixText(itemName)..RED..AL[" already in the WishList!"]..WHITE.." ("..AtlasLootWishList["Own"][arg2].Name..")");
return;
end
- table.insert(AtlasLootWishList["Own"][arg2], { #AtlasLootWishList["Own"][arg2] + 1, itemID, itemTexture, itemName, AtlasLoot_Data[AtlasLootItemsFrame.refresh[1]].Name, "", "", sourcePage});
+ if(AtlasLootItemsFrame.refresh[1] == "SearchResult") then
+ local dataID, _, dataPage = strsplit("|", sourcePage);
+ table.insert(AtlasLootWishList["Own"][arg2], { #AtlasLootWishList["Own"][arg2] + 1, itemID, itemTexture, itemName, AtlasLoot_Data[dataID][tonumber(dataPage)].Name, "", "", sourcePage});
+ else
+ table.insert(AtlasLootWishList["Own"][arg2], { #AtlasLootWishList["Own"][arg2] + 1, itemID, itemTexture, itemName, AtlasLoot_Data[AtlasLootItemsFrame.refresh[1]].Name, "", "", sourcePage});
+ end
if AtlasLootWishList["Options"][playerName]["AutoSortWishlist"] then
AtlasLoot:SortWishList(nil,"Own", arg2);
end
@@ -98,12 +103,12 @@ function AtlasLoot_WishListAddDropClick(typ, arg2, arg3, arg4)
end
end
-local function CloneTable(t) -- return a copy of the table t
+function AtlasLoot:CloneTable(t) -- return a copy of the table t
local new = {}; -- create a new table
local i, v = next(t, nil); -- i is an index of t, v = t[i]
while i do
if type(v)=="table" then
- v=CloneTable(v);
+ v=AtlasLoot:CloneTable(v);
end
new[i] = v;
i, v = next(t, i); -- get next index
@@ -966,14 +971,29 @@ function AtlasLoot_GetWishList(wlstrg,sendername)
local success, wltab = ALModule:Deserialize(wlstrg);
if success then
for i,v in ipairs(wltab) do
- v[8] = v[8].."|"..v[9].."|"..v[10];
- table.remove(v,9)
- table.remove(v,10)
+ if v[8] then
+ v[8] = v[8].."|"..v[9].."|"..v[10];
+ table.remove(v,9)
+ table.remove(v,10)
+ end
end
table.insert(AtlasLootWishList["Shared"],wltab)
end
end
+local EscapePatterns={
+ "|[cC]%x%x%x%x%x%x";
+ "|T[^|]+|t";
+ "|H[^|]+|h%[(.-)%]|h";
+};
+
+local function StripEscapes(str)
+ for _,pattern in ipairs(EscapePatterns) do
+ str=str:gsub(pattern,pattern:find("%(.-[^%%]%)") and "%1" or "");
+ end
+ return str:gsub("^%s*(.-)%s*$","%1"):gsub("%s+"," ");-- Strip extra spaces
+end
+
--[[
ALModule:OnCommReceived(prefix, message, distribution, sender)
Incomming messages from AceComm
@@ -986,13 +1006,15 @@ function ALModule:OnCommReceived(prefix, message, distribution, sender)
elseif message == "FinishSend" then
SpamFilter[string.lower(sender)] = GetTime()
elseif message == "AcceptWishlist" then
- local wsltable = CloneTable(_G[curtable[2]][curtable[1]][curtable[3]]);
+ local wsltable = AtlasLoot:CloneTable(_G[curtable[2]][curtable[1]][curtable[3]]);
for i,v in ipairs(wsltable) do
- v[4] = ""
- local dataID, dataSource, dataPage = strsplit("|", v[8])
- v[8] = dataID;
- v[9] = dataSource;
- v[10] = dataPage;
+ v[4] = gsub(StripEscapes(v[4]),"FF","");
+ if v[8] then
+ local dataID, dataSource, dataPage = strsplit("|", v[8])
+ v[8] = dataID;
+ v[9] = dataSource;
+ v[10] = dataPage;
+ end
end
local sendData = ALModule:Serialize(wsltable);
ALModule:SendCommMessage("AtlasLootWishlist", sendData, "WHISPER", sender);
diff --git a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua
index 45bdf2e..3c02384 100644
--- a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua
+++ b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua
@@ -35,11 +35,13 @@ Called whenever the loot browser is shown and sets up buttons and loot tables
function AtlasLootDefaultFrame_OnShow()
--Definition of where I want the loot table to be shown
--Remove the selection of a loot table in Atlas
- AtlasLootItemsFrame.activeBoss = nil;
+ AtlasLootItemsFrame.activeBoss = nil;
--Set the item table to the loot table
--Show the last displayed loot table
- local lastboss = AtlasLoot.db.profile.LastBoss;
- if AtlasLoot.db.profile.AutoCurrentInstance and AtlasLoot:ShowInstance() then elseif lastboss and lastboss[4] then
+ local lastboss = AtlasLoot.db.profile.LastBoss[AtlasLoot_Expac];
+ if AtlasLoot.db.profile.AutoCurrentInstance and AtlasLoot:ShowInstance() then
+ return;
+ elseif lastboss and lastboss[4] then
ATLASLOOT_CURRENTTABLE = lastboss[5];
ATLASLOOT_LASTMODULE = lastboss[4];
AtlasLoot:IsLootTableAvailable(lastboss[4]);
@@ -54,8 +56,8 @@ end
-- Show the Instance you are in
function AtlasLoot:ShowInstance()
- for i,v in pairs(AtlasLoot_SubMenus) do
- for n,t in ipairs(v) do
+ for i, v in pairs(AtlasLoot_SubMenus) do
+ for n, t in ipairs(v) do
if t[4] == BabbleZone[GetRealZoneText()] then
ATLASLOOT_CURRENTTABLE = v.SubMenu;
ATLASLOOT_LASTMODULE = v.Module;
@@ -89,6 +91,7 @@ Called when a button in AtlasLoot_Dewdrop is clicked
]]
function AtlasLoot:DewDropClick(tablename, text, tablenum)
ATLASLOOT_FILTER_ENABLE = false;
+ ATLASLOOT_BACKENABLED = false;
AtlasLootFilterCheck:SetChecked(false);
tablename = tablename .. AtlasLoot_Expac;
ATLASLOOT_CURRENTTABLE = tablename;
@@ -114,6 +117,7 @@ text - Heading for the loot table
Called when a button in AtlasLoot_DewdropSubMenu is clicked
]]
function AtlasLoot:DewDropSubMenuClick(tablename)
+ ATLASLOOT_BACKENABLED = false;
--Show the select loot table
local tablenum = AtlasLoot_Data[tablename].Loadfirst or 1;
--Show the table that has been selected
@@ -123,12 +127,13 @@ end
--[[
AtlasLoot:DewdropExpansionMenuClick(expansion, name):
-tablename - Name of the loot table in the database
-text - Heading for the loot table
-Called when a button in AtlasLoot_DewdropSubMenu is clicked
+expansion - expansion to load
+name - label for the expansion
+Called when a button in DewdropExpansionMenuClick is clicked
]]
function AtlasLoot:DewdropExpansionMenuClick(expansion, name)
- AtlasLootDefaultFrame_ExpansionMenu:SetText(name);
+ ATLASLOOT_BACKENABLED = false;
+ AtlasLootDefaultFrame_ExpansionMenu:SetText(name);
AtlasLoot_DewdropExpansionMenu:Close(1);
AtlasLoot_Expac = expansion;
if ATLASLOOT_CURRENTTABLE then
@@ -157,22 +162,22 @@ function AtlasLoot:DewdropExpansionMenuRegister()
'point', function(parent)
return "TOP", "BOTTOM"
end,
- 'children', function(level, value)
- if AtlasLoot_ExpansionMenu then
- for k,v in ipairs(AtlasLoot_ExpansionMenu) do
+ 'children', function(level, value)
+ if AtlasLoot_ExpansionMenu then
+ for k, v in ipairs(AtlasLoot_ExpansionMenu) do
if type(v) == "table" then
- --If a link to show a expansion menu
- AtlasLoot_Dewdrop:AddLine(
- 'text', v[1],
- 'textR', 1,
- 'textG', 0.82,
- 'textB', 0,
- 'func', function(arg1,arg2,arg3) AtlasLoot:DewdropExpansionMenuClick(arg1,arg2,arg3) end,
- 'arg1', v[2],
- 'arg2', v[1],
- 'arg3', k,
- 'notCheckable', true
- )
+ --If a link to show a expansion menu
+ AtlasLoot_Dewdrop:AddLine(
+ 'text', v[1],
+ 'textR', 1,
+ 'textG', 0.82,
+ 'textB', 0,
+ 'func', function(arg1, arg2, arg3) AtlasLoot:DewdropExpansionMenuClick(arg1, arg2, arg3) end,
+ 'arg1', v[2],
+ 'arg2', v[1],
+ 'arg3', k,
+ 'notCheckable', true
+ )
end
end
end
@@ -184,10 +189,10 @@ function AtlasLoot:DewdropExpansionMenuRegister()
'textB', 1,
'func', function() AtlasLoot_Dewdrop:Close() end,
'notCheckable', true
- )
- end,
- 'dontHook', true
- )
+ )
+ end,
+ 'dontHook', true
+ )
end
--[[
@@ -196,45 +201,45 @@ loottable - Table defining the sub menu
Generates the sub menu needed by passing a table of loot tables and titles
]]
function AtlasLoot:DewdropSubMenuRegister(loottable)
- AtlasLoot_DewdropSubMenu:Register(AtlasLootDefaultFrame_SubMenu,
+ AtlasLoot_DewdropSubMenu:Register(AtlasLootDefaultFrame_SubMenu,
'point', function(parent)
return "TOP", "BOTTOM"
end,
'children', function(level, value)
- for k,v in pairs(loottable) do
- if type(v) == "table" then
- if v[3] == "Header" then
- AtlasLoot_DewdropSubMenu:AddLine(
- 'text', v[1],
- 'textR', 0.2,
- 'textG', 0.82,
- 'textB', 0.5,
- 'func', function(arg1) AtlasLoot:DewDropSubMenuClick(arg1) end,
- 'arg1', v[2],
- 'notCheckable', true
- )
- else
- AtlasLoot_DewdropSubMenu:AddLine(
- 'text', AtlasLoot_Data[v[2]].Name,
- 'func', function(arg1,arg2) AtlasLoot:DewDropSubMenuClick(arg1) end,
- 'arg1', v[2],
- 'notCheckable', true
- )
- end
+ for k, v in pairs(loottable) do
+ if type(v) == "table" then
+ if v[3] == "Header" then
+ AtlasLoot_DewdropSubMenu:AddLine(
+ 'text', v[1],
+ 'textR', 0.2,
+ 'textG', 0.82,
+ 'textB', 0.5,
+ 'func', function(arg1) AtlasLoot:DewDropSubMenuClick(arg1) end,
+ 'arg1', v[2],
+ 'notCheckable', true
+ )
+ else
+ AtlasLoot_DewdropSubMenu:AddLine(
+ 'text', AtlasLoot_Data[v[2]].Name,
+ 'func', function(arg1, arg2) AtlasLoot:DewDropSubMenuClick(arg1) end,
+ 'arg1', v[2],
+ 'notCheckable', true
+ )
end
end
- --Close button
- AtlasLoot_DewdropSubMenu:AddLine(
- 'text', AL["Close Menu"],
- 'textR', 0,
- 'textG', 1,
- 'textB', 1,
- 'func', function() AtlasLoot_DewdropSubMenu:Close() end,
- 'notCheckable', true
- )
- end,
- 'dontHook', true
- )
+ end
+ --Close button
+ AtlasLoot_DewdropSubMenu:AddLine(
+ 'text', AL["Close Menu"],
+ 'textR', 0,
+ 'textG', 1,
+ 'textB', 1,
+ 'func', function() AtlasLoot_DewdropSubMenu:Close() end,
+ 'notCheckable', true
+ )
+ end,
+ 'dontHook', true
+ )
end
--[[
@@ -242,39 +247,39 @@ AtlasLoot:DewdropRegister:
Constructs the main category menu from a tiered table
]]
function AtlasLoot:DewdropRegister()
- AtlasLoot_Dewdrop:Register(AtlasLootDefaultFrame_Menu,
+ AtlasLoot_Dewdrop:Register(AtlasLootDefaultFrame_Menu,
'point', function(parent)
return "TOP", "BOTTOM"
end,
- 'children', function(level, value)
- if AtlasLoot_Modules then
- for k,v in ipairs(AtlasLoot_Modules) do
- --If a link to show a submenu
- AtlasLoot_Dewdrop:AddLine(
- 'text', v[1],
- 'textR', 1,
- 'textG', 0.82,
- 'textB', 0,
- 'func', function(arg1,arg2,arg3) AtlasLoot:DewDropClick(arg1,arg2,arg3) end,
- 'arg1', v[2],
- 'arg2', v[1],
- 'arg3', v[3],
- 'notCheckable', true
- )
- end
+ 'children', function(level, value)
+ if AtlasLoot_Modules then
+ for k, v in ipairs(AtlasLoot_Modules) do
+ --If a link to show a submenu
+ AtlasLoot_Dewdrop:AddLine(
+ 'text', v[1],
+ 'textR', 1,
+ 'textG', 0.82,
+ 'textB', 0,
+ 'func', function(arg1, arg2, arg3) AtlasLoot:DewDropClick(arg1, arg2, arg3) end,
+ 'arg1', v[2],
+ 'arg2', v[1],
+ 'arg3', v[3],
+ 'notCheckable', true
+ )
end
- --Close button
- AtlasLoot_Dewdrop:AddLine(
- 'text', AL["Close Menu"],
- 'textR', 0,
- 'textG', 1,
- 'textB', 1,
- 'func', function() AtlasLoot_Dewdrop:Close() end,
- 'notCheckable', true
- )
- end,
- 'dontHook', true
- )
+ end
+ --Close button
+ AtlasLoot_Dewdrop:AddLine(
+ 'text', AL["Close Menu"],
+ 'textR', 0,
+ 'textG', 1,
+ 'textB', 1,
+ 'func', function() AtlasLoot_Dewdrop:Close() end,
+ 'notCheckable', true
+ )
+ end,
+ 'dontHook', true
+ )
end
--[[
@@ -285,20 +290,20 @@ Create the new Default Frame style
]]
function AtlasLoot:SetNewStyle(style)
- local buttons = {
- "AtlasLootDefaultFrame_Options",
- "AtlasLootDefaultFrame_LoadModules",
- "AtlasLootDefaultFrame_Menu",
- "AtlasLootDefaultFrame_SubMenu",
- "AtlasLootDefaultFrame_ExpansionMenu",
- "AtlasLootDefaultFrame_Preset1",
- "AtlasLootDefaultFrame_Preset2",
- "AtlasLootDefaultFrame_Preset3",
- "AtlasLootDefaultFrame_Preset4",
- "AtlasLootDefaultFrameSearchButton",
- "AtlasLootDefaultFrameSearchClearButton",
- "AtlasLootDefaultFrameLastResultButton",
- "AtlasLootDefaultFrameWishListButton",
+ local buttons = {
+ "AtlasLootDefaultFrame_Options",
+ "AtlasLootDefaultFrame_LoadModules",
+ "AtlasLootDefaultFrame_Menu",
+ "AtlasLootDefaultFrame_SubMenu",
+ "AtlasLootDefaultFrame_ExpansionMenu",
+ "AtlasLootDefaultFrame_Preset1",
+ "AtlasLootDefaultFrame_Preset2",
+ "AtlasLootDefaultFrame_Preset3",
+ "AtlasLootDefaultFrame_Preset4",
+ "AtlasLootDefaultFrameSearchButton",
+ "AtlasLootDefaultFrameSearchClearButton",
+ "AtlasLootDefaultFrameLastResultButton",
+ "AtlasLootDefaultFrameWishListButton",
"AtlasLootDefaultFrameAdvancedSearchButton",
"AtlasLootDefaultFrame_AdvancedSearchPanel_EquipButton",
"AtlasLootDefaultFrame_AdvancedSearchPanel_EquipSubButton",
@@ -308,87 +313,87 @@ function AtlasLoot:SetNewStyle(style)
"AtlasLootDefaultFrame_MapButton",
"AtlasLootDefaultFrame_MapSelectButton",
"AtlasLootDefaultFrame_LoadInstanceButton",
- }
+ }
- if style == "new" then
- AtlasLootDefaultFrame_LootBackground:SetBackdrop({bgFile = "Interface/AchievementFrame/UI-Achievement-StatsBackground"});
- AtlasLootDefaultFrame_LootBackground:SetBackdropColor(1,1,1,0.5);
+ if style == "new" then
+ AtlasLootDefaultFrame_LootBackground:SetBackdrop({ bgFile = "Interface/AchievementFrame/UI-Achievement-StatsBackground" });
+ AtlasLootDefaultFrame_LootBackground:SetBackdropColor(1, 1, 1, 0.5);
- AtlasLootDefaultFrame:SetBackdrop({bgFile = "Interface/AchievementFrame/UI-Achievement-AchievementBackground",
- edgeFile = "Interface/Tooltips/UI-Tooltip-Border",
- edgeSize = 16,
- insets = { left = 4, right = 4, top = 4, bottom = 4 }});
- AtlasLootDefaultFrame:SetBackdropColor(1,1,1,0.5)
- AtlasLootDefaultFrame:SetBackdropBorderColor(1,0.675,0.125,1)
- AtlasLootDefaultFrameHeader:SetTexture("Interface\\AchievementFrame\\UI-Achievement-Alert-Background.blp")
- AtlasLootDefaultFrameHeader:SetTexCoord(0,0.605,0,0.703)
- AtlasLootDefaultFrameHeader:SetWidth(299)
- AtlasLootDefaultFrameHeader:SetHeight(60)
- AtlasLootDefaultFrameHeader:SetPoint("TOP",AtlasLootDefaultFrame,"TOP",-3,22)
+ AtlasLootDefaultFrame:SetBackdrop({ bgFile = "Interface/AchievementFrame/UI-Achievement-AchievementBackground",
+ edgeFile = "Interface/Tooltips/UI-Tooltip-Border",
+ edgeSize = 16,
+ insets = { left = 4, right = 4, top = 4, bottom = 4 } });
+ AtlasLootDefaultFrame:SetBackdropColor(1, 1, 1, 0.5)
+ AtlasLootDefaultFrame:SetBackdropBorderColor(1, 0.675, 0.125, 1)
+ AtlasLootDefaultFrameHeader:SetTexture("Interface\\AchievementFrame\\UI-Achievement-Alert-Background.blp")
+ AtlasLootDefaultFrameHeader:SetTexCoord(0, 0.605, 0, 0.703)
+ AtlasLootDefaultFrameHeader:SetWidth(299)
+ AtlasLootDefaultFrameHeader:SetHeight(60)
+ AtlasLootDefaultFrameHeader:SetPoint("TOP", AtlasLootDefaultFrame, "TOP", -3, 22)
- AtlasLootDefaultFrame_Options:SetNormalTexture("Interface/AchievementFrame/UI-Achievement-Category-Background")
- AtlasLootDefaultFrame_Options:SetHeight(24)
- AtlasLootDefaultFrame_Options:SetPushedTexture("Interface/AchievementFrame/UI-Achievement-Category-Background")
- AtlasLootDefaultFrame_Options:SetHeight(24)
+ AtlasLootDefaultFrame_Options:SetNormalTexture("Interface/AchievementFrame/UI-Achievement-Category-Background")
+ AtlasLootDefaultFrame_Options:SetHeight(24)
+ AtlasLootDefaultFrame_Options:SetPushedTexture("Interface/AchievementFrame/UI-Achievement-Category-Background")
+ AtlasLootDefaultFrame_Options:SetHeight(24)
- local function SetButtons(path)
- _G[path]:SetNormalTexture("Interface/AchievementFrame/UI-Achievement-Category-Background")
- _G[path]:SetHeight(24)
- _G[path]:SetPushedTexture("Interface/AchievementFrame/UI-Achievement-Category-Background")
- _G[path]:SetHeight(24)
- local tex = _G[path]:GetNormalTexture();
- tex:SetTexCoord(0, 0.6640625, 0, 0.8);
- tex:SetHeight(32)
+ local function SetButtons(path)
+ _G[path]:SetNormalTexture("Interface/AchievementFrame/UI-Achievement-Category-Background")
+ _G[path]:SetHeight(24)
+ _G[path]:SetPushedTexture("Interface/AchievementFrame/UI-Achievement-Category-Background")
+ _G[path]:SetHeight(24)
+ local tex = _G[path]:GetNormalTexture();
+ tex:SetTexCoord(0, 0.6640625, 0, 0.8);
+ tex:SetHeight(32)
- local tex2 = _G[path]:GetPushedTexture();
- tex2:SetTexCoord(0, 0.6640625, 0, 0.8);
- tex2:SetHeight(32)
- end
+ local tex2 = _G[path]:GetPushedTexture();
+ tex2:SetTexCoord(0, 0.6640625, 0, 0.8);
+ tex2:SetHeight(32)
+ end
- for k,v in pairs(buttons) do
- SetButtons(v)
- end
- elseif style == "old" then
+ for k, v in pairs(buttons) do
+ SetButtons(v)
+ end
+ elseif style == "old" then
- AtlasLootDefaultFrame_LootBackground:SetBackdrop({bgFile = ""});
- AtlasLootDefaultFrame_LootBackground:SetBackdropColor(0,0,0.5,0.5);
+ AtlasLootDefaultFrame_LootBackground:SetBackdrop({ bgFile = "" });
+ AtlasLootDefaultFrame_LootBackground:SetBackdropColor(0, 0, 0.5, 0.5);
- AtlasLootDefaultFrame:SetBackdrop({bgFile = "Interface/DialogFrame/UI-DialogBox-Background",
- edgeFile = "Interface/DialogFrame/UI-DialogBox-Border",
- edgeSize = 32,
- insets = { left = 11, right = 12, top = 12, bottom = 11 }});
- AtlasLootDefaultFrame:SetBackdropColor(1,1,1,1)
- AtlasLootDefaultFrame:SetBackdropBorderColor(1,1,1,1)
+ AtlasLootDefaultFrame:SetBackdrop({ bgFile = "Interface/DialogFrame/UI-DialogBox-Background",
+ edgeFile = "Interface/DialogFrame/UI-DialogBox-Border",
+ edgeSize = 32,
+ insets = { left = 11, right = 12, top = 12, bottom = 11 } });
+ AtlasLootDefaultFrame:SetBackdropColor(1, 1, 1, 1)
+ AtlasLootDefaultFrame:SetBackdropBorderColor(1, 1, 1, 1)
- AtlasLootDefaultFrameHeader:SetTexture("Interface/DialogFrame/UI-DialogBox-Header")
- AtlasLootDefaultFrameHeader:SetTexCoord(0,1,0,1)
- AtlasLootDefaultFrameHeader:SetWidth(425)
- AtlasLootDefaultFrameHeader:SetHeight(64)
- AtlasLootDefaultFrameHeader:SetPoint("TOP",AtlasLootDefaultFrame,"TOP",0,12)
+ AtlasLootDefaultFrameHeader:SetTexture("Interface/DialogFrame/UI-DialogBox-Header")
+ AtlasLootDefaultFrameHeader:SetTexCoord(0, 1, 0, 1)
+ AtlasLootDefaultFrameHeader:SetWidth(425)
+ AtlasLootDefaultFrameHeader:SetHeight(64)
+ AtlasLootDefaultFrameHeader:SetPoint("TOP", AtlasLootDefaultFrame, "TOP", 0, 12)
- AtlasLootDefaultFrame_Options:SetNormalTexture("Interface/Buttons/UI-Panel-Button-Up")
- AtlasLootDefaultFrame_Options:SetHeight(20)
- AtlasLootDefaultFrame_Options:SetPushedTexture("Interface/Buttons/UI-Panel-Button-Down")
- AtlasLootDefaultFrame_Options:SetHeight(20)
+ AtlasLootDefaultFrame_Options:SetNormalTexture("Interface/Buttons/UI-Panel-Button-Up")
+ AtlasLootDefaultFrame_Options:SetHeight(20)
+ AtlasLootDefaultFrame_Options:SetPushedTexture("Interface/Buttons/UI-Panel-Button-Down")
+ AtlasLootDefaultFrame_Options:SetHeight(20)
- local function SetButtons(path)
- _G[path]:SetNormalTexture("Interface/Buttons/UI-Panel-Button-Up")
- _G[path]:SetHeight(20)
- _G[path]:SetPushedTexture("Interface/Buttons/UI-Panel-Button-Down")
- _G[path]:SetHeight(20)
- local tex = _G[path]:GetNormalTexture();
- tex:SetTexCoord(0, 0.625, 0, 0.6875);
- tex:SetHeight(20)
+ local function SetButtons(path)
+ _G[path]:SetNormalTexture("Interface/Buttons/UI-Panel-Button-Up")
+ _G[path]:SetHeight(20)
+ _G[path]:SetPushedTexture("Interface/Buttons/UI-Panel-Button-Down")
+ _G[path]:SetHeight(20)
+ local tex = _G[path]:GetNormalTexture();
+ tex:SetTexCoord(0, 0.625, 0, 0.6875);
+ tex:SetHeight(20)
- local tex2 = _G[path]:GetPushedTexture();
- tex2:SetTexCoord(0, 0.625, 0, 0.6875);
- tex2:SetHeight(20)
- end
+ local tex2 = _G[path]:GetPushedTexture();
+ tex2:SetTexCoord(0, 0.625, 0, 0.6875);
+ tex2:SetHeight(20)
+ end
- for k,v in pairs(buttons) do
- SetButtons(v)
- end
+ for k, v in pairs(buttons) do
+ SetButtons(v)
+ end
- end
+ end
end
diff --git a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua
index 02afffe..3359c53 100644
--- a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua
+++ b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua
@@ -52,7 +52,7 @@ local lootbground = CreateFrame("Frame", "AtlasLootDefaultFrame_LootBackground",
lootbground:SetBackdropColor(0,0,0.5,0.5);
lootbground:EnableMouse();
lootbground:SetScript("OnMouseDown",function(self, button)
- if _G[AtlasLootItemsFrame.refresh[2]][AtlasLootItemsFrame.refresh[1]].Back and button == "RightButton" then
+ if _G["AtlasLootItemsFrame_BACK"]:IsVisible() and button == "RightButton" then
AtlasLoot:BackButton_OnClick();
elseif AtlasLootDefaultFrame_AdvancedSearchPanel:IsVisible() and button == "RightButton" then
AtlasLoot_AdvancedSearchClose();
@@ -88,7 +88,7 @@ local itemframe = CreateFrame("Frame", "AtlasLootItemsFrame", AtlasLootDefaultFr
end
end);
-local function createLootItemButtons(num)
+for num = 1, 30 do
local button = CreateFrame("Button","AtlasLootItem_"..num, AtlasLootItemsFrame);
button:SetID(num);
button:SetSize(236,28);
@@ -123,10 +123,6 @@ local function createLootItemButtons(num)
end
end
- for i = 1, 30 do
- createLootItemButtons(i);
- end
-
-- LootInfo
local lootinfo = CreateFrame("Frame", "AtlasLootInfo")
lootinfo:SetSize(128,75);
@@ -238,7 +234,8 @@ local filterbtn = CreateFrame("CheckButton","AtlasLootFilterCheck",AtlasLootItem
filterbtn.Label = filterbtn:CreateFontString("AtlasLootFilterCheckText","OVERLAY","GameFontNormal");
filterbtn.Label:SetText(AL["Filter"]);
filterbtn.Label:SetPoint("RIGHT", AtlasLootFilterCheck, 30, 2);
- filterbtn:SetScript("OnClick", function() AtlasLoot_FilterEnableButton() end);
+ filterbtn:RegisterForClicks("LeftButtonDown","RightButtonDown");
+ filterbtn:SetScript("OnClick", function(self, btnclick) AtlasLoot_FilterEnableButton(self, btnclick) end);
-- Quick Looks Button
local looksbtn = CreateFrame("Button", "AtlasLootQuickLooksButton", AtlasLootItemsFrame);
@@ -561,9 +558,9 @@ end)
scrollFrame.scrollBar = scrollSlider
local rows = setmetatable({}, { __index = function(t, i)
- local row = CreateFrame("CheckButton", "$parentRow"..i, scrollFrame)
+ local row = CreateFrame("CheckButton", "$parentRow"..i, Atlasloot_Difficulty_ScrollFrame)
row:SetSize(230, ROW_HEIGHT);
- row:SetFrameStrata("Dialog");
+ row:SetFrameStrata("HIGH");
row:SetNormalFontObject(GameFontHighlightLeft);
row:SetCheckedTexture("Interface\\QuestFrame\\UI-QuestTitleHighlight", "ADD");
row:SetScript("OnClick", function()
@@ -578,7 +575,6 @@ local rows = setmetatable({}, { __index = function(t, i)
end
AtlasLoot:ScrollFrameUpdate();
end
-
end)
if i == 1 then
row:SetPoint("TOPLEFT", scrollFrame, 8, -8)
@@ -655,9 +651,9 @@ local scrollSlider2 = CreateFrame("ScrollFrame","AtlasLootDefaultFrameSubTableSc
subtableFrame.scrollBar = scrollSlider2
local rows2 = setmetatable({}, { __index = function(t, i)
- local row = CreateFrame("CheckButton", "$parentRow"..i, subtableFrame)
+ local row = CreateFrame("CheckButton", "$parentRow"..i, Atlasloot_SubTableFrame)
row:SetSize(230, ROW_HEIGHT);
- row:SetFrameStrata("Dialog");
+ row:SetFrameStrata("HIGH");
row:SetNormalFontObject(GameFontHighlightLeft);
row:SetCheckedTexture("Interface\\QuestFrame\\UI-QuestTitleHighlight", "ADD");
row.Text = row:CreateFontString("$parentRow"..i.."Text","OVERLAY","GameFontNormal");
diff --git a/AtlasLoot/Libs/LibStub/LibStub.lua b/AtlasLoot/Libs/LibStub/LibStub.lua
index 0a41ac0..0a4a641 100644
--- a/AtlasLoot/Libs/LibStub/LibStub.lua
+++ b/AtlasLoot/Libs/LibStub/LibStub.lua
@@ -1,4 +1,4 @@
--- LibStub is a simple versioning stub meant for use in Libraries. http://www.wowace.com/wiki/LibStub for more info
+ -- LibStub is a simple versioning stub meant for use in Libraries. http://www.wowace.com/wiki/LibStub for more info
-- LibStub is hereby placed in the Public Domain Credits: Kaelten, Cladhaire, ckknight, Mikk, Ammo, Nevcairiel, joshborke
local LIBSTUB_MAJOR, LIBSTUB_MINOR = "LibStub", 2 -- NEVER MAKE THIS AN SVN REVISION! IT NEEDS TO BE USABLE IN ALL REPOS!
local LibStub = _G[LIBSTUB_MAJOR]
diff --git a/AtlasLoot/Locales/constants.en.lua b/AtlasLoot/Locales/constants.en.lua
index 374f69b..b308501 100644
--- a/AtlasLoot/Locales/constants.en.lua
+++ b/AtlasLoot/Locales/constants.en.lua
@@ -26,6 +26,7 @@ if AL then
AL["Select Sub-Table"] = true;
AL["Select Difficulty"] = true;
AL["Drop Rate: "] = true;
+ AL["Extra Info: "] = true;
AL["DKP"] = true;
AL["Priority:"] = true;
AL["Click boss name to view loot."] = true;
@@ -203,6 +204,7 @@ if AL then
AL["Legendary Items"] = true;
AL["Mounts"] = true;
AL["Vanity Pets"] = true;
+ AL["Vanity"] = true;
AL["Misc Sets"] = true;
AL["Classic Sets"] = true;
AL["Burning Crusade Sets"] = true;
@@ -284,6 +286,9 @@ if AL then
AL["Ranged weapons:"] = true;
AL["Relics:"] = true;
AL["Other:"] = true;
+ AL["How to set of change a page filter:"] = true;
+ AL["If you Right Click on the filter check box you will get a drop downmenu with a list of filters. Click the filter you want to use or click add filter set to add new custom filters."] = true;
+
-- Wishlist
AL["Close"] = true;
@@ -300,6 +305,7 @@ if AL then
AL["Add Wishlist"] = true;
AL["Edit Wishlist"] = true;
AL["Sort Wishlist"] = true;
+ AL["Add Filter Set"] = true;
AL["Auto Sort WishLists"] = true;
AL["Copy Wishlist To Own"] = true;
AL["Make Wishlist Default"] = true;
@@ -326,6 +332,8 @@ if AL then
AL["Please set a default Wishlist."] = true;
AL["Set as default Wishlist"] = true;
AL["Please Create a Wishlist First."] = true;
+ AL["Add/Edit Filter"] = true;
+ AL["Delete Filter"] = true;
-- Misc Inventory related words
AL["Enchant"] = true;
@@ -385,6 +393,19 @@ if AL then
AL["Quivers and Ammo Pouches"] = true;
AL["Drums, Bags and Misc."] = true;
+ --Stats etc
+ AL["Accessories"] = true;
+ AL["Weapons"] = true;
+ AL["Armor Type"] = true;
+ AL["Relics"] = true;
+ AL["Weapons One-Handers"] = true;
+ AL["Weapons Two-Handers"] = true;
+ AL["Ranged Weapons"] = true;
+ AL["Primary Stats"] = true;
+ AL["Secondary Stats"] = true;
+ AL["Defensive Stats"] = true;
+ AL["Resistances"] = true;
+
-- Tailoring
AL["Cloth Armor"] = true;
AL["Shirts"] = true;
diff --git a/AtlasLoot/Menus/DungeonRaidMenus.lua b/AtlasLoot/Menus/DungeonRaidMenus.lua
index be4588f..bceb906 100644
--- a/AtlasLoot/Menus/DungeonRaidMenus.lua
+++ b/AtlasLoot/Menus/DungeonRaidMenus.lua
@@ -6,114 +6,108 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0");
local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0");
--Dungeon and Raid Menus
+AtlasLoot_SubMenus["Dungeons and RaidsCLASSIC"] = {
+ Module = "AtlasLootOriginalWoW";
+ SubMenu = "Dungeons and RaidsCLASSIC";
+ { "Raids:", "OldKeys", "Header" };
+ { "", "ZulGurub", "", "Zul'Gurub" };
+ { "", "MoltenCore", "", "Molten Core" };
+ { "", "Onyxia60", "", "Onyxias Hort" };
+ { "", "BlackwingLair", "", "Blackwing Lair" };
+ { "", "RuinsofAQ", "", "Ruinen von Ahn'Qiraj" };
+ { "", "TempleofAQ", "", "Tempel von Ahn'Qiraj" };
+ { "", "Naxxramas60", "", "Naxxramas" };
+ { "", "WorldBossesCLASSIC","", "World Bosses" };
+ ---- Dungeons -----
+ { "Dungeons:", "OldKeys", "Header" };
+ { "", "BlackfathomDeeps", "", "Blackfathom Deeps" };
+ { "", "BlackrockDepths", "", "Blackrock Depths" };
+ { "", "LowerBlackrock", "", "Lower Blackrock Spire" };
+ { "", "UpperBlackrock", "", "Upper Blackrock Spire" };
+ { "", "TheDeadmines", "", "The Deadmines" };
+ { "", "DireMaulNorth", "", "Dire Maul (North)" };
+ { "", "DireMaulEast", "", "Dire Maul (East)" };
+ { "", "DireMaulWest", "", "Dire Maul (West)" };
+ { "", "Gnomeregan", "", "Gnomeregan" };
+ { "", "Maraudon", "", "Maraudon" };
+ { "", "RagefireChasm", "", "Ragefire Chasm" };
+ { "", "RazorfenDowns", "", "Razorfen Downs" };
+ { "", "RazorfenKraul", "", "Razorfen Kraul" };
+ { "", "Scarlet Monastery", "", "Scarlet Monastery" };
+ { "", "Scholomance", "", "Scholomance" };
+ { "", "ShadowfangKeep", "", "Shadowfang Keep" };
+ { "", "TheStockade", "", "The Stockade" };
+ { "", "Stratholme", "", "Stratholme" };
+ { "", "SunkenTemple", "", "Sunken Temple" };
+ { "", "Uldaman", "", "Uldaman" };
+ { "", "WailingCaverns", "", "Wailing Caverns" };
+ { "", "ZulFarrak", "", "Zul'Farrak" };
+};
- AtlasLoot_SubMenus["Dungeons and RaidsCLASSIC"] = {
- Module = "AtlasLootOriginalWoW";
- SubMenu = "Dungeons and RaidsCLASSIC";
- {"Raids:", "OldKeys", "Header"};
- {"", "MoltenCore", "", "Molten Core"};
- {"", "ZulGurub", "", "Zul'Gurub"};
- {"", "Onyxia60", "", "Onyxias Hort"};
- {"", "BlackwingLair", "", "Blackwing Lair"};
- {"", "RuinsofAQ", "", "Ruinen von Ahn'Qiraj"};
- {"", "TempleofAQ", "", "Tempel von Ahn'Qiraj"};
- {"", "Naxxramas60", "", "Naxxramas"};
- {"Dungeons:", "OldKeys", "Header"};
- {"", "BlackfathomDeeps", "", "Blackfathom Deeps"};
- {"", "BlackrockDepths", "", "Blackrock Depths"};
- {"", "LowerBlackrock", "", "Lower Blackrock Spire"};
- {"", "UpperBlackrock", "", "Upper Blackrock Spire"};
- {"", "TheDeadmines", "", "The Deadmines"};
- {"", "DireMaulNorth", "", "Dire Maul (North)"};
- {"", "DireMaulEast", "", "Dire Maul (East)"};
- {"", "DireMaulWest", "", "Dire Maul (West)"};
- {"", "Gnomeregan", "", "Gnomeregan"};
- {"", "Maraudon", "", "Maraudon"};
- {"", "RagefireChasm", "", "Ragefire Chasm"};
- {"", "RazorfenDowns", "", "Razorfen Downs"};
- {"", "RazorfenKraul", "", "Razorfen Kraul"};
- {"", "Scarlet Monastery", "", "Scarlet Monastery"};
- {"", "Scholomance", "", "Scholomance"};
- {"", "ShadowfangKeep", "", "Shadowfang Keep"};
- {"", "TheStockade", "", "The Stockade"};
- {"", "Stratholme", "", "Stratholme"};
- {"", "SunkenTemple", "", "Sunken Temple"};
- {"", "Uldaman", "", "Uldaman"};
- {"", "WailingCaverns", "", "Wailing Caverns"};
- {"", "ZulFarrak", "", "Zul'Farrak"};
- };
+AtlasLoot_SubMenus["Dungeons and RaidsTBC"] = {
+ Module = "AtlasLootBurningCrusade";
+ SubMenu = "Dungeons and RaidsTBC";
+ { "Raids:", "BCKeys", "Header" };
+ { "", "Karazhan", "", "Karazhan" };
+ { "", "GruulsLair", "", "Gruul's Lair" };
+ { "", "HCMagtheridon", "", "Magtheridon's Lair" };
+ { "", "CFRSerpentshrine", "", "Serpentshrine Cavern" };
+ { "", "TKEye", "", "The Eye" };
+ { "", "ZulAman", "", "Zul'Aman" };
+ { "", "CoTHyjal", "", "Mount Hyjal" };
+ { "", "BlackTemple", "", "Black Temple" };
+ { "", "SunwellPlateau", "", "Sunwell Plateau" };
+ { "", "WorldBossesTBC","", "World Bosses" };
+ ---- Dungeons -----
+ { "Dungeons:", "BCKeys", "Header" };
+ { "", "HCRamparts", "", "Hellfire Ramparts" };
+ { "", "HCShatteredHalls", "", "The Shattered Halls" };
+ { "", "HCFurnace", "", "The Blood Furnace" };
+ { "", "TKBot", "", "The Botanica" };
+ { "", "TKArc", "", "The Arcatraz" };
+ { "", "TKMech", "", "The Mechanar" };
+ { "", "AuchCrypts", "", "Auchenai Crypts" };
+ { "", "AuchManaTombs", "", "Mana-Tombs" };
+ { "", "AuchSethekk", "", "Sethekk Halls" };
+ { "", "AuchShadowLab", "", "Shadow Labyrinth" };
+ { "", "CoTOldHillsbrad", "", "Old Hillsbrad Foothills" };
+ { "", "CoTBlackMorass", "", "The Black Morass" };
+ { "", "CFRSlavePens", "", "The Slave Pens" };
+ { "", "CFRSteamvault", "", "The Steamvault" };
+ { "", "CFRUnderbog", "", "The Underbog" };
+ { "", "MagistersTerrace", "", "Magisters' Terrace" };
+};
- AtlasLoot_SubMenus["Dungeons and RaidsTBC"] = {
- Module = "AtlasLootBurningCrusade";
- SubMenu = "Dungeons and RaidsTBC";
- {"Raids:", "BCKeys", "Header"};
- {"", "Karazhan", "", "Karazhan"};
- {"", "GruulsLair", "", "Gruul's Lair"};
- {"", "HCMagtheridon", "", "Magtheridon's Lair"};
- {"", "CFRSerpentshrine", "", "Serpentshrine Cavern"};
- {"", "TKEye", "", "The Eye"};
- {"", "ZulAman", "", "Zul'Aman"};
- {"", "CoTHyjal", "", "Mount Hyjal"};
- {"", "BlackTemple", "", "Black Temple"};
- {"", "SunwellPlateau", "", "Sunwell Plateau"};
- ---- Dungeons -----
- {"Dungeons:", "BCKeys", "Header"};
- {"", "HCRamparts", "", "Hellfire Ramparts"};
- {"", "HCShatteredHalls", "", "The Shattered Halls"};
- {"", "HCFurnace", "", "The Blood Furnace"};
- {"", "TKBot", "", "The Botanica"};
- {"", "TKArc", "", "The Arcatraz"};
- {"", "TKMech", "", "The Mechanar"};
- {"", "AuchCrypts", "", "Auchenai Crypts"};
- {"", "AuchManaTombs", "", "Mana-Tombs"};
- {"", "AuchSethekk", "", "Sethekk Halls"};
- {"", "AuchShadowLab", "", "Shadow Labyrinth"};
- {"", "CoTOldHillsbrad", "", "Old Hillsbrad Foothills"};
- {"", "CoTBlackMorass", "", "The Black Morass"};
- {"", "CFRSlavePens", "", "The Slave Pens"};
- {"", "CFRSteamvault", "", "The Steamvault"};
- {"", "CFRUnderbog", "", "The Underbog"};
- {"", "MagistersTerrace", "", "Magisters' Terrace"};
- };
-
- AtlasLoot_SubMenus["Dungeons and RaidsWRATH"] = {
- Module = "AtlasLootWotLK";
- SubMenu = "Dungeons and RaidsWRATH";
- {"Raids:", "WrathKeys", "Header"};
- {"", "Naxxramas80"};
- {"", "Sartharion"};
- {"", "Malygos"};
- {"", "VaultofArchavon_A"};
- {"", "Ulduar"};
- {"", "TrialoftheCrusader_A"};
- {"", "Onyxia_1"};
- {"", "IcecrownCitadel"};
- {"", "Halion"};
- {"Dungeons:", "WrathKeys", "Header"};
- {"", "Ahnkahet"};
- {"", "AzjolNerub"};
- {"", "CoTStratholme"};
- {"", "DrakTharonKeep"};
- {"", "ForgeofSouls"};
- {"", "Gundrak"};
- {"", "HallsofLightning"};
- {"", "HallsofReflection"};
- {"", "HallsofStone"};
- {"", "TheNexus"};
- {"", "TheOculus"};
- {"", "PitofSaron"};
- {"", "TrialoftheChampion"};
- {"", "UtgardeKeep"};
- {"", "UtgardePinnacle"};
- {"", "TheVioletHold"};
- };
-
- AtlasLoot_SubMenus["WorldBossesMenuCLASSIC"] = {
- Module = "AtlasLootOriginalWoW";
- { "","WorldBossesCLASSIC"};
- };
-
- AtlasLoot_SubMenus["WorldBossesMenuTBC"] = {
- Module = "AtlasLootBurningCrusade";
- { "","WorldBossesTBC"};
- };
\ No newline at end of file
+AtlasLoot_SubMenus["Dungeons and RaidsWRATH"] = {
+ Module = "AtlasLootWotLK";
+ SubMenu = "Dungeons and RaidsWRATH";
+ { "Raids:", "WrathKeys", "Header" };
+ { "", "Naxxramas80", "Naxxramas" };
+ { "", "Sartharion", "Sartharion" };
+ { "", "Malygos", "Malygos" };
+ { "", "VaultofArchavon", "Vault of Archavon" };
+ { "", "Ulduar", "Ulduar" };
+ { "", "TrialoftheCrusader", "Trial of the Crusader" };
+ { "", "TrialoftheCrusader2", "Trial of the Crusader" };
+ { "", "Onyxia80", "Onyxia" };
+ { "", "IcecrownCitadel", "Icecrown Citadel" };
+ { "", "Halion", "Halion" };
+ ---- Dungeons -----
+ { "Dungeons:", "WrathKeys", "Header" };
+ { "", "Ahnkahet", "Ahnkahet" };
+ { "", "AzjolNerub", "AzjolNerub" };
+ { "", "CoTStratholme", "The Culling of Stratholme" };
+ { "", "DrakTharonKeep", "DrakTharon Keep" };
+ { "", "ForgeofSouls", "Forge of Souls" };
+ { "", "Gundrak", "Gundrak" };
+ { "", "HallsofLightning", "Halls of Lightning" };
+ { "", "HallsofReflection", "Halls of Reflection" };
+ { "", "HallsofStone", "Halls of Stone" };
+ { "", "TheNexus", "The Nexus" };
+ { "", "TheOculus", "The Oculus" };
+ { "", "PitofSaron", "Pit of Saron" };
+ { "", "TrialoftheChampion", "Trial of the Champion" };
+ { "", "UtgardeKeep", "Utgarde Keep" };
+ { "", "UtgardePinnacle", "Utgarde Pinnacle" };
+ { "", "TheVioletHold", "The Violet Hold" };
+};
diff --git a/AtlasLoot/Menus/Mainmenu.lua b/AtlasLoot/Menus/Mainmenu.lua
index 4938dba..57fe3a6 100644
--- a/AtlasLoot/Menus/Mainmenu.lua
+++ b/AtlasLoot/Menus/Mainmenu.lua
@@ -17,7 +17,7 @@ AtlasLoot_Modules = {
{AL["Crafting"], "Crafting"};
{AL["Sets/Collections"], "Collections"};
{AL["PvP Rewards"], "PVP"};
- {AL["World Bosses"], "WorldBossesMenu"};
+ {AL["Vanity"], "Vanity"};
{AL["Reputation Factions"], "Reputations"};
{AL["World Events"], "WorldEvents"};
};
@@ -27,7 +27,7 @@ AtlasLoot_SubMenus = {};
AtlasLoot_ExpansionMenu = {
{ AL["Classic"], "CLASSIC" };
{ AL["Burning Crusade"], "TBC" };
- --{ AL["Wrath of the Lich King"], "WRATH" };
+ { AL["Wrath of the Lich King"], "WRATH" };
};
AtlasLoot_Data["EmptyTable"] = {
diff --git a/AtlasLoot/Menus/PvPMenus.lua b/AtlasLoot/Menus/PvPMenus.lua
index 3a29578..2f3ff5e 100644
--- a/AtlasLoot/Menus/PvPMenus.lua
+++ b/AtlasLoot/Menus/PvPMenus.lua
@@ -48,3 +48,25 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ "", "ArenaWarlockTBC"};
{ "", "ArenaWarriorTBC"};
};
+
+ AtlasLoot_SubMenus["PVPWRATH"] = {
+ Module = "AtlasLootWotLK";
+ { "PVP Factions", "LakeWintergrasp", "Header"};
+ { "", "LakeWintergrasp"};
+ { "", "VentureBay"};
+ { "", "PvP80Misc"};
+ { "", "PVPidolWRATH"};
+ { "", "PvP80NonSet"};
+ { "", "WeaponsWRATH"};
+ { "PVP Sets", "ArenaDruidWRATH", "Header"};
+ { "", "ArenaDruidWRATH"};
+ { "", "ArenaHunterWRATH"};
+ { "", "ArenaMageWRATH"};
+ { "", "ArenaPaladinWRATH"};
+ { "", "ArenaPriestWRATH"};
+ { "", "ArenaRogueWRATH"};
+ { "", "ArenaShamanWRATH"};
+ { "", "ArenaWarlockWRATH"};
+ { "", "ArenaWarriorWRATH"};
+ { "", "ArenaDeathKnightWRATH"};
+ };
diff --git a/AtlasLoot/Menus/RepMenus.lua b/AtlasLoot/Menus/RepMenus.lua
index 2da35c7..ac3b080 100644
--- a/AtlasLoot/Menus/RepMenus.lua
+++ b/AtlasLoot/Menus/RepMenus.lua
@@ -46,16 +46,16 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
AtlasLoot_SubMenus["ReputationsWRATH"] = {
Module = "AtlasLootWotLK";
- { "", "AllianceVanguard1", "spell_misc_hellifrepvphonorholdfavor", "=ds="..BabbleFaction["Alliance Vanguard"], "=q5="..BabbleFaction["Alliance"]};
- { "", "WinterfinRetreat", "INV_Misc_Shell_04", "=ds="..BabbleFaction["Winterfin Retreat"], "=q5="..BabbleZone["Borean Tundra"]};
- { "", "TheWyrmrestAccord", "achievement_reputation_wyrmresttemple", "=ds="..BabbleFaction["The Wyrmrest Accord"], "=q5="..BabbleZone["Dragonblight"]};
- { "", "KnightsoftheEbonBlade", "achievement_reputation_knightsoftheebonblade", "=ds="..BabbleFaction["Knights of the Ebon Blade"], "=q5="..BabbleZone["Zul'Drak"].." / "..BabbleZone["Icecrown"]};
- { "", "TheOracles", "inv_misc_head_murloc_01", "=ds="..BabbleFaction["The Oracles"], "=q5="..BabbleZone["Sholazar Basin"]};
- { "", "TheSonsofHodir1", "Spell_Holy_DivinePurpose", "=ds="..BabbleFaction["The Sons of Hodir"], "=q5="..BabbleZone["The Storm Peaks"]};
- { "", "HordeExpedition1", "spell_misc_hellifrepvpthrallmarfavor", "=ds="..BabbleFaction["Horde Expedition"], "=q5="..BabbleFaction["Horde"]};
- { "", "TheKaluak", "INV_Fishingpole_03", "=ds="..BabbleFaction["The Kalu'ak"], "" };
- { "", "KirinTor", "achievement_reputation_kirintor", "=ds="..BabbleFaction["Kirin Tor"], "=q5="..BabbleZone["Borean Tundra"].." / "..BabbleZone["Dalaran"]};
- { "", "ArgentCrusade", "INV_Jewelry_Talisman_08", "=ds="..BabbleFaction["Argent Crusade"], "=q5="..BabbleZone["Zul'Drak"].." / "..BabbleZone["Icecrown"]};
- { "", "FrenzyheartTribe", "ability_mount_whitedirewolf", "=ds="..BabbleFaction["Frenzyheart Tribe"], "=q5="..BabbleZone["Sholazar Basin"]};
- { "", "AshenVerdict", "INV_Jewelry_Ring_85", "=ds="..BabbleFaction["The Ashen Verdict"], "=q5="..BabbleZone["Icecrown"]};
+ { "", "AllianceVanguard"};
+ { "", "WinterfinRetreat"};
+ { "", "TheWyrmrestAccord"};
+ { "", "KnightsoftheEbonBlade"};
+ { "", "TheOracles"};
+ { "", "TheSonsofHodir"};
+ { "", "HordeExpedition"};
+ { "", "TheKaluak"};
+ { "", "KirinTor"};
+ { "", "ArgentCrusade"};
+ { "", "FrenzyheartTribe"};
+ { "", "AshenVerdict"};
};
\ No newline at end of file
diff --git a/AtlasLoot/Menus/SetMenus.lua b/AtlasLoot/Menus/SetMenus.lua
index 3692234..939e080 100644
--- a/AtlasLoot/Menus/SetMenus.lua
+++ b/AtlasLoot/Menus/SetMenus.lua
@@ -1,7 +1,8 @@
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
-local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0")
-local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
-local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
+local BabbleBoss = AtlasLoot_GetLocaleLibBabble("LibBabble-Boss-3.0");
+local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0");
+local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0");
+local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0");
-- { #, "MOUNTMENU", "INV_Misc_QirajiCrystal_05", "=ds="..AL["Mounts"], ""};
-- { #, "PETMENU", "INV_Box_PetCarrier_01", "=ds="..AL["Vanity Pets"], ""};
@@ -11,6 +12,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
AtlasLoot_SubMenus["CollectionsCLASSIC"] = {
Module = "AtlasLootOriginalWoW";
+ { "", "Heirloom"};
{ "", "ClassicSets"};
{ "", "WorldEpicsCLASSIC"};
{ "", "ZGSets"};
@@ -24,6 +26,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
AtlasLoot_SubMenus["CollectionsTBC"] = {
Module = "AtlasLootBurningCrusade";
+ { "", "Heirloom"};
{ "", "DS3"};
{ "", "WorldEpicsTBC"};
{ "", "TBCSets"};
@@ -36,348 +39,95 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ "", "T6"};
};
- AtlasLoot_Data["SETMENUWRATH"] = {
- { 1, "EMBLEMOFFROSTMENU", "inv_misc_frostemblem_01", "=ds="..AL["Emblem of Frost Rewards"], "=q5="..AL["Wrath of the Lich King"]};
- { 2, "EMBLEMOFTRIUMPHMENU", "spell_holy_summonchampion", "=ds="..AL["Emblem of Triumph Rewards"], "=q5="..AL["Wrath of the Lich King"]};
- { 3, "EMBLEMOFCONQUESTMENU", "Spell_Holy_ChampionsGrace", "=ds="..AL["Emblem of Conquest Rewards"], "=q5="..AL["Wrath of the Lich King"]};
- { 4, "EMBLEMOFVALORMENU", "Spell_Holy_ProclaimChampion_02", "=ds="..AL["Emblem of Valor Rewards"], "=q5="..AL["Wrath of the Lich King"]};
- { 5, "EMBLEMOFHEROISMMENU", "Spell_Holy_ProclaimChampion", "=ds="..AL["Emblem of Heroism Rewards"], "=q5="..AL["Wrath of the Lich King"]};
- { 7, "Heirloom", "INV_Sword_43", "=ds="..AL["Heirloom"], ""};
- { 8, "WorldEpicsWrath", "INV_Sword_109", "=ds=".."World Epics", ""};
- { 9, "SETSWRATHOFLICHKING", "inv_misc_monsterscales_15", "=ds="..AL["Wrath of the Lich King Sets"], ""};
- { 10, "Legendaries", "INV_Staff_Medivh", "=ds="..AL["Legendary Items"], ""};
- { 16, "T7T8SET", "INV_Chest_Chain_15", "=ds="..AL["Tier 7/8 Sets"], "=q5="..AL["10/25 Man"]};
- { 17, "T9SET", "inv_gauntlets_80", "=ds="..AL["Tier 9 Sets"], "=q5="..AL["10/25 Man"]};
- { 18, "T10SET", "INV_Chest_Chain_15", "=ds="..AL["Tier 10 Sets"], "=q5="..AL["10/25 Man"]};
- Prev = "SETMENUTBC";
- Next = "SETMENUCLASSIC";
- Submenu = "Expansion";
+ AtlasLoot_SubMenus["CollectionsWRATH"] = {
+ Module = "AtlasLootWotLK";
+ { "", "Heirloom"};
+ { "", "WorldEpicsWrath"};
+ { "", "Legendaries"};
+ { "Badge Rewards", "EmblemofHeroism", "Header"};
+ { "", "EmblemofHeroism"};
+ { "", "EmblemofValor"};
+ { "", "EmblemofConquest"};
+ { "", "EmblemofTriumph"};
+ { "", "EmblemofFrost"};
+ { "Tier Sets", "T7", "Header"};
+ { "", "T7"};
+ { "", "T8"};
+ { "", "T9"};
+ { "", "T10"};
+ };
+
+ AtlasLoot_SubMenus["VanityCLASSIC"] = {
+ Module = "AtlasLootVanity";
+ { "", "Tabards"};
+ { "", "VanityPets"};
+ { "", "Mounts"};
+ };
+
+ AtlasLoot_SubMenus["VanityTBC"] = AtlasLoot_SubMenus["VanityCLASSIC"];
+ AtlasLoot_SubMenus["VanityWRATH"] = AtlasLoot_SubMenus["VanityCLASSIC"];
+
+----------------------
+--- Heirloom Items ---
+----------------------
+AtlasLoot_Data["Heirloom"] = {
+ Name = AL["Heirloom"];
+ {
+ Name = "Chests";
+ { 1, 48691, "", "=q7=Tattered Dreadmist Robe", "=ds=#s5#, #a1#", "1200 #tokenofprestige#" };
+ { 2, 48687, "", "=q7=Preened Ironfeather Breastplate", "=ds=#s5#, #a2#", "1200 #tokenofprestige#" };
+ { 3, 48689, "", "=q7=Stained Shadowcraft Tunic", "=ds=#s5#, #a2#", "1200 #tokenofprestige#" };
+ { 4, 48677, "", "=q7=Champion's Deathdealer Breastplate", "=ds=#s5#, #a3#", "1200 #tokenofprestige#" };
+ { 5, 48683, "", "=q7=Mystical Vest of Elements", "=ds=#s5#, #a3#", "1200 #tokenofprestige#" };
+ { 6, 48685, "", "=q7=Polished Breastplate of Valor", "=ds=#s5#, #a4#", "1200 #tokenofprestige#" };
+ { 7, 1548685, "", "=q7=Polished Breastplate of Might", "=ds=#s5#, #a4#", "1200 #tokenofprestige#" };
+
};
-
- AtlasLoot_Data["70TOKENMENU"] = {
- { 2, "HardModeCloth", "Spell_Holy_ChampionsBond", "=ds="..BabbleInventory["Cloth"], ""};
- { 3, "HardModeMail", "Spell_Holy_ChampionsBond", "=ds="..BabbleInventory["Mail"], ""};
- { 4, "HardModeResist", "Spell_Holy_ChampionsBond", "=ds="..AL["Fire Resistance Gear"], ""};
- { 6, "HardModeRelic", "Spell_Holy_ChampionsBond", "=ds="..BabbleInventory["Relic"], ""};
- { 8, "HardModeWeapons", "Spell_Holy_ChampionsBond", "=ds="..AL["Weapons"], ""};
- { 17, "HardModeLeather", "Spell_Holy_ChampionsBond", "=ds="..BabbleInventory["Leather"], ""};
- { 18, "HardModePlate", "Spell_Holy_ChampionsBond", "=ds="..BabbleInventory["Plate"], ""};
- { 19, "HardModeCloaks", "Spell_Holy_ChampionsBond", "=ds="..BabbleInventory["Back"], ""};
- { 21, "HardModeArena", "Spell_Holy_ChampionsBond", "=ds="..AL["PvP Rewards"], ""};
- { 23, "HardModeAccessories", "Spell_Holy_ChampionsBond", "=ds="..AL["Accessories"], ""};
- Back = "SETMENUTBC";
+ {
+ Name = "Shoulders";
+ { 1, 42985, "", "=q7=Tattered Dreadmist Mantle", "=ds=#s3#, #a1#", "800 #tokenofprestige#" };
+ { 2, 42984, "", "=q7=Preened Ironfeather Shoulders", "=ds=#s3#, #a2#", "800 #tokenofprestige#" };
+ { 3, 42952, "", "=q7=Stained Shadowcraft Spaulders", "=ds=#s3#, #a2#", "800 #tokenofprestige#" };
+ { 4, 42950, "", "=q7=Champion Herod's Shoulder", "=ds=#s3#, #a3#", "800 #tokenofprestige#" };
+ { 5, 42951, "", "=q7=Mystical Pauldrons of Elements", "=ds=#s3#, #a3#", "800 #tokenofprestige#" };
+ { 6, 42949, "", "=q7=Polished Spaulders of Valor", "=ds=#s3#, #a4#", "800 #tokenofprestige#" };
+ { 7, 1542949, "", "=q7=Polished Spaulders of Might", "=ds=#s3#, #a4#", "800 #tokenofprestige#" };
+ { 16, 44107, "", "=q7=Exquisite Sunderseer Mantle", "=ds=#s3#, #a1#", "800 #tokenofprestige#" };
+ { 17, 44103, "", "=q7=Exceptional Stormshroud Shoulders", "=ds=#s3#, #a2#", "800 #tokenofprestige#" };
+ { 18, 44105, "", "=q7=Lasting Feralheart Spaulders", "=ds=#s3#, #a2#", "800 #tokenofprestige#" };
+ { 19, 44102, "", "=q7=Aged Pauldrons of The Five Thunders", "=ds=#s3#, #a3#", "800 #tokenofprestige#" };
+ { 20, 44101, "", "=q7=Prized Beastmaster's Mantle", "=ds=#s3#, #a3#", "800 #tokenofprestige#" };
+ { 21, 44100, "", "=q7=Pristine Lightforge Spaulders", "=ds=#s3#, #a4#", "800 #tokenofprestige#" };
+ { 22, 44099, "", "=q7=Strengthened Stockade Pauldrons", "=ds=#s3#, #a4#", "800 #tokenofprestige#" };
};
-
- AtlasLoot_Data["EMBLEMOFHEROISMMENU"] = {
- { 2, "EmblemofHeroism", "Spell_Holy_ProclaimChampion", "=ds="..BabbleInventory["Armor"].." & "..AL["Weapons"], ""};
- { 3, "EmblemofHeroism3", "Spell_Holy_ProclaimChampion", "=ds="..BabbleInventory["Miscellaneous"], ""};
- { 4, "LEVEL80PVPSETS", "Spell_Holy_ProclaimChampion", "=ds="..AL["Level 80 PvP Sets"], "" };
- { 17, "EmblemofHeroism2", "Spell_Holy_ProclaimChampion", "=ds="..AL["Accessories"], ""};
- { 18, "EmblemofHeroism4", "Spell_Holy_ProclaimChampion", "=ds="..AL["Heirloom"], ""};
- Back = "SETMENUWRATH";
+ {
+ Name = "Trinkets/Rings";
+ { 1, 42992, "", "=q7=Discerning Eye of the Beast", "=ds=#s14#", "500 #tokenofprestige#" };
+ { 2, 42991, "", "=q7=Swift Hand of Justice", "=ds=#s14#", "500 #tokenofprestige#" };
+ { 3, 44098, "", "=q7=Inherited Insignia of the Alliance", "500 #tokenofprestige#" };
+ { 4, 44097, "", "=q7=Inherited Insignia of the Horde", "500 #tokenofprestige#" };
+ { 6, 50255, "", "=q7=Dread Pirate Ring", "=ds=#s13#", "" };
};
-
- AtlasLoot_Data["EMBLEMOFCONQUESTMENU"] = {
- { 2, "EmblemofConquest1", "Spell_Holy_ChampionsGrace", "=ds="..AL["Vendor"], ""};
- { 17, "LEVEL80PVPSETS", "Spell_Holy_ChampionsGrace", "=ds="..AL["Level 80 PvP Sets"], "" };
- Back = "SETMENUWRATH";
+ {
+ Name = "Weapons";
+ { 1, 42944, "", "=q7=Balanced Heartseeker", "=ds=#w4#, #h1#", "600 #tokenofprestige#" };
+ { 2, 42945, "", "=q7=Venerable Dal'Rend's Sacred Charge", "=ds=#w10#, #h3#", "600 #tokenofprestige#" };
+ { 3, 42948, "", "=q7=Devout Aurastone Hammer", "600 #tokenofprestige#" };
+ { 4, 48716, "", "=q7=Venerable Mass of McGowan", "600 #tokenofprestige#" };
+ { 5, 44091, "", "=q7=Sharpened Scarlet Kris", "=ds=#h1#, #w4#", "600 #tokenofprestige#" };
+ { 6, 44096, "", "=q7=Battleworn Thrash Blade", "=ds=#h1#, #w10#", "600 #tokenofprestige#" };
+ { 7, 44094, "", "=q7=The Blessed Hammer of Grace", "=ds=#h3#, #w6#", "600 #tokenofprestige#" };
+ { 7, 1540350, "", "=q7=Urn of Aspiring Light", "=ds=#h3#, #w6#", "600 #tokenofprestige#" };
+ { 16, 42943, "", "=q7=Bloodied Arcanite Reaper", "=ds=#w1#, #h2#", "1000 #tokenofprestige#" };
+ { 17, 1542943, "", "=q7=Sturdied Arcanite Spear", "=ds=#w1#, #h2#", "1000 #tokenofprestige#" };
+ { 18, 48718, "", "=q7=Repurposed Lava Dredger", "=ds=#w6#, #h2#", "1000 #tokenofprestige#" };
+ { 19, 42947, "", "=q7=Dignified Headmaster's Charge", "=ds=#w9#", "1000 #tokenofprestige#" };
+ { 20, 44092, "", "=q7=Reforged Truesilver Champion", "=ds=#h2#, #w10#", "1000 #tokenofprestige#" };
+ { 21, 44095, "", "=q7=Grand Staff of Jordan", "=ds=#w9#", "1000 #tokenofprestige#" };
+ { 23, 42946, "", "=q7=Charmed Ancient Bone Bow", "=ds=#w2#", "1000 #tokenofprestige#" };
+ { 24, 44093, "", "=q7=Upgraded Dwarven Hand Cannon", "=ds=#w5#", "1000 #tokenofprestige#" };
};
+};
- AtlasLoot_Data["EMBLEMOFVALORMENU"] = {
- { 2, "EmblemofValor", "Spell_Holy_ProclaimChampion_02", "=ds="..BabbleInventory["Armor"], ""};
- { 3, "LEVEL80PVPSETS", "Spell_Holy_ProclaimChampion_02", "=ds="..AL["Level 80 PvP Sets"], "" };
- { 17, "EmblemofValor2", "Spell_Holy_ProclaimChampion_02", "=ds="..AL["Accessories"], ""};
- Back = "SETMENUWRATH";
- };
- AtlasLoot_Data["EMBLEMOFTRIUMPHMENU"] = {
- { 2, "EmblemofTriumph1_A", "spell_holy_summonchampion", "=ds="..BabbleInventory["Armor"], ""};
- { 3, "EmblemofTriumph2", "spell_holy_summonchampion", "=ds="..AL["Accessories"].." & "..AL["Weapons"], ""};
- { 17, "LEVEL80PVPSETS", "spell_holy_summonchampion", "=ds="..AL["Level 80 PvP Sets"], "" };
- { 18, "T9SET", "spell_holy_summonchampion", "=ds="..AL["Tier 9 Sets"], "=q5="..AL["10/25 Man"]};
- Back = "SETMENUWRATH";
- };
- AtlasLoot_Data["EMBLEMOFFROSTMENU"] = {
- { 2, "EmblemofFrost", "inv_misc_frostemblem_01", "=ds="..BabbleInventory["Armor"].." & "..AL["Weapons"], ""};
- { 17, "T10SET", "inv_misc_frostemblem_01", "=ds="..AL["Tier 10 Sets"], "=q5="..AL["10/25 Man"]};
- Back = "SETMENUWRATH";
- };
-
- AtlasLoot_Data["MOUNTMENU"] = {
- { 2, "MountsAlliance1", "achievement_pvp_a_16", "=ds="..AL["Alliance Mounts"], ""};
- { 3, "MountsFaction1", "ability_mount_warhippogryph", "=ds="..AL["Neutral Faction Mounts"], ""};
- { 4, "MountsRare1", "ability_mount_drake_bronze", "=ds="..AL["Rare Mounts"], ""};
- { 5, "MountsEvent1", "achievement_halloween_witch_01", "=ds="..AL["World Events"], ""};
- { 17, "MountsHorde1", "achievement_pvp_h_16", "=ds="..AL["Horde Mounts"], ""};
- { 18, "MountsPvP1", "ability_mount_netherdrakeelite", "=ds="..AL["PvP Mounts"], ""};
- { 19, "MountsCraftQuestPromotion1", "INV_Misc_QirajiCrystal_05", "=ds="..AL["Quest"].." / "..AL["Promotional"].." / "..AL["Crafted Mounts"], ""};
- Back = "SETMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["PETMENU"] = {
- { 2, "PetsMerchant1", "spell_nature_polymorph", "=ds="..AL["Merchant Sold"], ""};
- { 3, "PetsRare1", "spell_shaman_hex", "=ds="..AL["Rare"], ""};
- { 4, "PetsPromotional1", "inv_netherwhelp", "=ds="..AL["Promotional"], ""};
- { 5, "PetsAccessories1", "inv_misc_petbiscuit_01", "=ds="..AL["Accessories"], ""};
- { 17, "PetsQuestCrafted1", "inv_drink_19", "=ds="..AL["Quest"].." / "..AL["Crafted"], ""};
- { 18, "PetsEvent1", "inv_pet_egbert", "=ds="..AL["World Events"], ""};
- { 19, "PetsPetStore1", "INV_Misc_Coin_01", "=ds="..AL["Pet Store"], ""};
- Back = "SETMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["SETSCLASSIC"] = {
- { 2, "VWOWSets1", "INV_Pants_12", "=ds="..AL["Defias Leather"], "=q5="..BabbleZone["The Deadmines"]};
- { 3, "VWOWSets1", "INV_Shirt_16", "=ds="..AL["Embrace of the Viper"], "=q5="..BabbleZone["Wailing Caverns"]};
- { 4, "VWOWSets1", "INV_Gauntlets_19", "=ds="..AL["Chain of the Scarlet Crusade"], "=q5="..BabbleZone["Scarlet Monastery"]};
- { 5, "VWOWSets1", "INV_Helmet_01", "=ds="..AL["The Gladiator"], "=q5="..BabbleZone["Blackrock Depths"]};
- { 6, "VWOWSets2", "INV_Boots_Cloth_05", "=ds="..AL["Ironweave Battlesuit"], "=q5="..AL["Various Locations"]};
- { 7, "VWOWSets2", "INV_Boots_02", "=ds="..AL["The Postmaster"], "=q5="..BabbleZone["Stratholme"]};
- { 8, "VWOWScholo", "INV_Shoulder_02", "=ds="..AL["Necropile Raiment"], "=q5="..BabbleZone["Scholomance"]};
- { 9, "VWOWScholo", "INV_Belt_16", "=ds="..AL["Cadaverous Garb"], "=q5="..BabbleZone["Scholomance"]};
- { 10, "VWOWScholo", "INV_Gauntlets_26", "=ds="..AL["Bloodmail Regalia"], "=q5="..BabbleZone["Scholomance"]};
- { 11, "VWOWScholo", "INV_Belt_12", "=ds="..AL["Deathbone Guardian"], "=q5="..BabbleZone["Scholomance"]};
- { 12, "VWOWSets3", "INV_Weapon_ShortBlade_16", "=ds="..AL["Spider's Kiss"], "=q5="..BabbleZone["Lower Blackrock Spire"]};
- { 13, "VWOWSets3", "INV_Sword_43", "=ds="..AL["Dal'Rend's Arms"], "=q5="..BabbleZone["Upper Blackrock Spire"]};
- { 17, "VWOWSets3", "INV_Misc_MonsterScales_15", "=ds="..AL["Shard of the Gods"], "=q5="..AL["Various Locations"]};
- { 18, "VWOWSets3", "INV_Misc_MonsterClaw_04", "=ds="..AL["Spirit of Eskhandar"], "=q5="..AL["Various Locations"]};
- { 20, "VWOWZulGurub", "INV_Weapon_Hand_01", "=ds="..AL["Misc Zul'Gurub Sets"], ""};
- Back = "SETMENUCLASSIC";
- };
-
- AtlasLoot_Data["SETSBURNINGCURSADE"] = {
- { 2, "TBCSets", "INV_Sword_76", "=ds="..AL["Latro's Flurry"], "=q5="..AL["World Drop"]};
- { 3, "TBCSets", "INV_Jewelry_Necklace_36", "=ds="..AL["The Twin Stars"], "=q5="..AL["World Drop"]};
- { 4, "TBCSets", "INV_Weapon_Hand_14", "=ds="..AL["The Fists of Fury"], "=q5="..BabbleZone["Hyjal Summit"]};
- { 5, "TBCSets", "INV_Weapon_Glave_01", "=ds="..AL["The Twin Blades of Azzinoth"], "=q5="..BabbleZone["Black Temple"]};
- Back = "SETMENUTBC";
- };
-
- AtlasLoot_Data["SETSWRATHOFLICHKING"] = {
- { 2, "WOTLKSets", "inv_jewelry_necklace_27", "=ds="..AL["Raine's Revenge"], "=q5="..AL["World Drop"]};
- { 3, "WOTLKSets", "inv_misc_monsterscales_15", "=ds="..AL["Purified Shard of the Gods"], "=q5="..BabbleZone["Onyxia's Lair"]};
- { 4, "WOTLKSets", "inv_misc_monsterscales_15", "=ds="..AL["Shiny Shard of the Gods"], "=q5="..BabbleZone["Onyxia's Lair"]};
- Back = "SETMENUWRATH";
- };
-
- AtlasLoot_Data["T0SET"] = {
- { 3, "T0Druid", "Spell_Nature_Regeneration", "=ds=".."Druid", ""};
- { 4, "T0Mage", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 5, "T0Priest", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], ""};
- { 6, "T0Shaman", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], ""};
- { 7, "T0Warrior", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], ""};
- { 18, "T0Hunter", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 19, "T0Paladin", "Spell_Holy_SealOfMight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], ""};
- { 20, "T0Rogue", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 21, "T0Warlock", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- Back = "SETMENUCLASSIC";
- };
-
- AtlasLoot_Data["DS3SET"] = {
- { 2, "DS3Cloth", "Spell_Holy_InnerFire", "=ds="..AL["Hallowed Raiment"], "=q5="..BabbleInventory["Cloth"]};
- { 3, "DS3Cloth", "INV_Elemental_Mote_Nether", "=ds="..AL["Mana-Etched Regalia"], "=q5="..BabbleInventory["Cloth"]};
- { 5, "DS3Leather", "Ability_Rogue_SinisterCalling", "=ds="..AL["Assassination Armor"], "=q5="..BabbleInventory["Leather"]};
- { 6, "DS3Leather", "Ability_Hunter_RapidKilling", "=ds="..AL["Wastewalker Armor"], "=q5="..BabbleInventory["Leather"]};
- { 8, "DS3Mail", "Ability_Hunter_Pet_Wolf", "=ds="..AL["Beast Lord Armor"], "=q5="..BabbleInventory["Mail"]};
- { 9, "DS3Mail", "INV_Helmet_70", "=ds="..AL["Tidefury Raiment"], "=q5="..BabbleInventory["Mail"]};
- { 11, "DS3Plate", "Spell_Fire_EnchantWeapon", "=ds="..AL["Bold Armor"], "=q5="..BabbleInventory["Plate"]};
- { 12, "DS3Plate", "INV_Hammer_02", "=ds="..AL["Righteous Armor"], "=q5="..BabbleInventory["Plate"]};
- { 17, "DS3Cloth", "Ability_Creature_Cursed_04", "=ds="..AL["Incanter's Regalia"], "=q5="..BabbleInventory["Cloth"]};
- { 18, "DS3Cloth", "Ability_Creature_Cursed_03", "=ds="..AL["Oblivion Raiment"], "=q5="..BabbleInventory["Cloth"]};
- { 20, "DS3Leather", "Spell_Holy_SealOfRighteousness", "=ds="..AL["Moonglade Raiment"], "=q5="..BabbleInventory["Leather"]};
- { 23, "DS3Mail", "Ability_FiegnDead", "=ds="..AL["Desolation Battlegear"], "=q5="..BabbleInventory["Mail"]};
- { 26, "DS3Plate", "INV_Helmet_08", "=ds="..AL["Doomplate Battlegear"], "=q5="..BabbleInventory["Plate"]};
- Back = "SETMENUTBC";
- Next = "T4SET";
- };
-
- AtlasLoot_Data["T1SET"] = {
- { 1, "T1Druid", "Spell_Nature_Regeneration", "=ds=".."Druid", "=q5="..AL["Tier 1 Sets"]};
- { 3, "T1Mage", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], "=q5="..AL["Tier 1 Sets"]};
- { 5, "T1Priest", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Tier 1 Sets"]};
- { 7, "T1Shaman", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Tier 1 Sets"]};
- { 9, "T1Warrior", "INV_Shield_05", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Tier 1 Sets"]};
- { 16, "T1Hunter", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "=q5="..AL["Tier 1 Sets"]};
- { 18, "T1Paladin", "Spell_Holy_SealOfMight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Tier 1 Sets"]};
- { 20, "T1Rogue", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "=q5="..AL["Tier 1 Sets"]};
- { 22, "T1Warlock", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "=q5="..AL["Tier 1 Sets"]};
- { 10, "T1DPSWarrior", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Tier 1 Sets"]};
- Prev = "T3SET";
- Next = "T2SET";
- Back = "SETMENUCLASSIC";
- };
-
- AtlasLoot_Data["T2SET"] = {
- { 1, "T2Druid", "Spell_Nature_Regeneration", "=ds=".."Druid", "=q5="..AL["Tier 2 Sets"]};
- { 3, "T2Mage", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], "=q5="..AL["Tier 2 Sets"]};
- { 5, "T2Priest", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Tier 2 Sets"]};
- { 7, "T2Shaman", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Tier 2 Sets"]};
- { 9, "T2Warrior", "INV_Shield_05", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Tier 2 Sets"]};
- { 16, "T2Hunter", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "=q5="..AL["Tier 2 Sets"]};
- { 18, "T2Paladin", "Spell_Holy_SealOfMight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Tier 2 Sets"]};
- { 20, "T2Rogue", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "=q5="..AL["Tier 2 Sets"]};
- { 22, "T2Warlock", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "=q5="..AL["Tier 2 Sets"]};
- { 10, "T2DPSWarrior", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Tier 2 Sets"]};
- Prev = "T1SET";
- Next = "T3SET";
- Back = "SETMENUCLASSIC";
- };
-
- AtlasLoot_Data["T3SET"] = {
- { 1, "T3Druid", "Spell_Nature_Regeneration", "=ds=".."Druid", "=q5="..AL["Tier 3 Sets"]};
- { 3, "T3Mage", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], "=q5="..AL["Tier 3 Sets"]};
- { 5, "T3Priest", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Tier 3 Sets"]};
- { 7, "T3Shaman", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Tier 3 Sets"]};
- { 9, "T3Warrior", "INV_Shield_05", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Tier 3 Sets"]};
- { 16, "T3Hunter", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "=q5="..AL["Tier 3 Sets"]};
- { 18, "T3Paladin", "Spell_Holy_SealOfMight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Tier 3 Sets"]};
- { 20, "T3Rogue", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "=q5="..AL["Tier 3 Sets"]};
- { 22, "T3Warlock", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "=q5="..AL["Tier 3 Sets"]};
- { 10, "T3DPSWarrior", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Tier 3 Sets"]};
- Prev = "T2SET";
- Next = "T1SET";
- Back = "SETMENUCLASSIC";
- };
-
- AtlasLoot_Data["T4SET"] = {
- { 2, "T4DruidBalance", "Spell_Nature_InsectSwarm", "=ds=".."Druid", "=q5="..AL["Balance"]};
- { 3, "T4DruidFeral", "Ability_Druid_Maul", "=ds=".."Druid", "=q5="..AL["Feral"]};
- { 4, "T4DruidRestoration", "Spell_Nature_Regeneration", "=ds=".."Druid", "=q5="..AL["Restoration"]};
- { 6, "T4Hunter", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 8, "T4Mage", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 10, "T4PaladinHoly", "Spell_Holy_HolyBolt", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 11, "T4PaladinProtection", "Spell_Holy_SealOfMight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 12, "T4PaladinRetribution", "Spell_Holy_AuraOfLight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 17, "T4PriestHoly", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 18, "T4PriestShadow", "Spell_Shadow_AntiShadow", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 20, "T4Rogue", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 22, "T4ShamanElemental", "Spell_Nature_Lightning", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 23, "T4ShamanEnhancement", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 24, "T4ShamanRestoration", "Spell_Nature_HealingWaveGreater", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 26, "T4Warlock", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 28, "T4WarriorFury", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Fury"]};
- { 29, "T4WarriorProtection", "INV_Shield_05", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- Back = "SETMENUTBC";
- Prev = "DS3SET";
- Next = "T5SET";
- };
-
- AtlasLoot_Data["T5SET"] = {
- { 2, "T5DruidBalance", "Spell_Nature_InsectSwarm", "=ds=".."Druid", "=q5="..AL["Balance"]};
- { 3, "T5DruidFeral", "Ability_Druid_Maul", "=ds=".."Druid", "=q5="..AL["Feral"]};
- { 4, "T5DruidRestoration", "Spell_Nature_Regeneration", "=ds=".."Druid", "=q5="..AL["Restoration"]};
- { 6, "T5Hunter", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 8, "T5Mage", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 10, "T5PaladinHoly", "Spell_Holy_HolyBolt", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 11, "T5PaladinProtection", "Spell_Holy_SealOfMight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 12, "T5PaladinRetribution", "Spell_Holy_AuraOfLight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 17, "T5PriestHoly", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 18, "T5PriestShadow", "Spell_Shadow_AntiShadow", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 20, "T5Rogue", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 22, "T5ShamanElemental", "Spell_Nature_Lightning", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 23, "T5ShamanEnhancement", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 24, "T5ShamanRestoration", "Spell_Nature_HealingWaveGreater", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 26, "T5Warlock", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 28, "T5WarriorFury", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Fury"]};
- { 29, "T5WarriorProtection", "INV_Shield_05", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- Back = "SETMENUTBC";
- Prev = "T4SET";
- Next = "T6SET";
- };
-
- AtlasLoot_Data["T6SET"] = {
- { 2, "T6DruidBalance", "Spell_Nature_InsectSwarm", "=ds=".."Druid", "=q5="..AL["Balance"]};
- { 3, "T6DruidFeral", "Ability_Druid_Maul", "=ds=".."Druid", "=q5="..AL["Feral"]};
- { 4, "T6DruidRestoration", "Spell_Nature_Regeneration", "=ds=".."Druid", "=q5="..AL["Restoration"]};
- { 6, "T6Hunter", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 8, "T6Mage", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 10, "T6PaladinHoly", "Spell_Holy_HolyBolt", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 11, "T6PaladinProtection", "Spell_Holy_SealOfMight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 12, "T6PaladinRetribution", "Spell_Holy_AuraOfLight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 17, "T6PriestHoly", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 18, "T6PriestShadow", "Spell_Shadow_AntiShadow", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 20, "T6Rogue", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 22, "T6ShamanElemental", "Spell_Nature_Lightning", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 23, "T6ShamanEnhancement", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 24, "T6ShamanRestoration", "Spell_Nature_HealingWaveGreater", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 26, "T6Warlock", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 28, "T6WarriorFury", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Fury"]};
- { 29, "T6WarriorProtection", "INV_Shield_05", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- Back = "SETMENUTBC";
- Prev = "T5SET";
- };
-
- AtlasLoot_Data["T7T8SET"] = {
- { 2, "NaxxDeathKnightDPS", "Spell_Deathknight_DeathStrike", "=ds="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 3, "NaxxDeathKnightTank", "Spell_Deathknight_DeathStrike", "=ds="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 5, "NaxxDruidBalance", "Spell_Nature_InsectSwarm", "=ds=".."Druid", "=q5="..AL["Balance"]};
- { 6, "NaxxDruidFeral", "Ability_Druid_Maul", "=ds=".."Druid", "=q5="..AL["Feral"]};
- { 7, "NaxxDruidRestoration", "Spell_Nature_Regeneration", "=ds=".."Druid", "=q5="..AL["Restoration"]};
- { 9, "NaxxHunter", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 11, "NaxxMage", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 13, "NaxxPaladinHoly", "Spell_Holy_HolyBolt", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 14, "NaxxPaladinProtection", "Spell_Holy_SealOfMight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 15, "NaxxPaladinRetribution", "Spell_Holy_AuraOfLight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 17, "NaxxPriestHoly", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 18, "NaxxPriestShadow", "Spell_Shadow_AntiShadow", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 20, "NaxxRogue", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 22, "NaxxShamanElemental", "Spell_Nature_Lightning", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 23, "NaxxShamanEnhancement", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 24, "NaxxShamanRestoration", "Spell_Nature_HealingWaveGreater", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 26, "NaxxWarlock", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 28, "NaxxWarriorFury", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Fury"]};
- { 29, "NaxxWarriorProtection", "INV_Shield_05", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- Back = "SETMENUWRATH";
- Next = "T9SET";
- };
-
- AtlasLoot_Data["T9SET"] = {
- { 2, "T9DeathKnightDPS_A", "Spell_Deathknight_DeathStrike", "=ds="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 3, "T9DeathKnightTank_A", "Spell_Deathknight_DeathStrike", "=ds="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 5, "T9DruidBalance_A", "Spell_Nature_InsectSwarm", "=ds=".."Druid", "=q5="..AL["Balance"]};
- { 6, "T9DruidFeral_A", "Ability_Druid_Maul", "=ds=".."Druid", "=q5="..AL["Feral"]};
- { 7, "T9DruidRestoration_A", "Spell_Nature_Regeneration", "=ds=".."Druid", "=q5="..AL["Restoration"]};
- { 9, "T9Hunter_A", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 11, "T9Mage_A", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 13, "T9PaladinHoly_A", "Spell_Holy_HolyBolt", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 14, "T9PaladinProtection_A", "Spell_Holy_SealOfMight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 15, "T9PaladinRetribution_A", "Spell_Holy_AuraOfLight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 17, "T9PriestHoly_A", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 18, "T9PriestShadow_A", "Spell_Shadow_AntiShadow", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 20, "T9Rogue_A", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 22, "T9ShamanElemental_A", "Spell_Nature_Lightning", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 23, "T9ShamanEnhancement_A", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 24, "T9ShamanRestoration_A", "Spell_Nature_HealingWaveGreater", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 26, "T9Warlock_A", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 28, "T9WarriorFury_A", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Fury"]};
- { 29, "T9WarriorProtection_A", "INV_Shield_05", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- Back = "SETMENUWRATH";
- Prev = "T7T8SET";
- Next = "T10SET";
- };
-
- AtlasLoot_Data["T10SET"] = {
- { 2, "T10DeathKnightDPS", "Spell_Deathknight_DeathStrike", "=ds="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 3, "T10DeathKnightTank", "Spell_Deathknight_DeathStrike", "=ds="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 5, "T10DruidBalance", "Spell_Nature_InsectSwarm", "=ds=".."Druid", "=q5="..AL["Balance"]};
- { 6, "T10DruidFeral", "Ability_Druid_Maul", "=ds=".."Druid", "=q5="..AL["Feral"]};
- { 7, "T10DruidRestoration", "Spell_Nature_Regeneration", "=ds=".."Druid", "=q5="..AL["Restoration"]};
- { 9, "T10Hunter", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 11, "T10Mage", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 13, "T10PaladinHoly", "Spell_Holy_HolyBolt", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 14, "T10PaladinProtection", "Spell_Holy_SealOfMight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 15, "T10PaladinRetribution", "Spell_Holy_AuraOfLight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 17, "T10PriestHoly", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 18, "T10PriestShadow", "Spell_Shadow_AntiShadow", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 20, "T10Rogue", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 22, "T10ShamanElemental", "Spell_Nature_Lightning", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 23, "T10ShamanEnhancement", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 24, "T10ShamanRestoration", "Spell_Nature_HealingWaveGreater", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 26, "T10Warlock", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 28, "T10WarriorFury", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Fury"]};
- { 29, "T10WarriorProtection", "INV_Shield_05", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- Back = "SETMENUWRATH";
- Prev = "T9SET";
- };
\ No newline at end of file
diff --git a/AtlasLoot_BurningCrusade/burningcrusade.lua b/AtlasLoot_BurningCrusade/burningcrusade.lua
index 8f8e3a8..eddff5c 100644
--- a/AtlasLoot_BurningCrusade/burningcrusade.lua
+++ b/AtlasLoot_BurningCrusade/burningcrusade.lua
@@ -74,5015 +74,5021 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0");
---- BoE World Epics
--- World Bosses
- ------------------------
- --- Dungeons & BCRaids ---
- ------------------------
+------------------------
+--- Dungeons & BCRaids ---
+------------------------
- ------------
- --- Keys ---
- ------------
+------------
+--- Keys ---
+------------
- AtlasLoot_Data["BCKeys"] = {
- Name = "BCKeys";
- {
- Name = "BCKeys";
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 27991, "", "=q1=Shadow Labyrinth Key", "=ds=#e9#"};
- { 3, 28395, "", "=q1=Shattered Halls Key", "=ds=#e9#"};
- { 4, 31084, "", "=q1=Key to the Arcatraz", "=ds=#e9#"};
- { 6, 0, "INV_Box_01", "#j27#", ""};
- { 7, 30622, "", "=q1=Flamewrought Key", "=ds=#e9# =ec1=#m7#"};
- { 8, 30637, "", "=q1=Flamewrought Key", "=ds=#e9# =ec1=#m6#"};
- { 9, 30623, "", "=q1=Reservoir Key", "=ds=#e9#"};
- { 10, 30633, "", "=q1=Auchenai Key", "=ds=#e9#"};
- { 11, 30635, "", "=q1=Key of Time", "=ds=#e9#"};
- { 12, 30634, "", "=q1=Warpforged Key", "=ds=#e9#"};
- { 16, 0, "INV_Box_01", "=q6=#j2#", ""};
- { 17, 24490, "", "=q1=The Master's Key", "=ds=#e9#"};
- { 19, 0, "INV_Box_01", "=q6=#m20#", ""};
- { 20, 32092, "", "=q3=The Eye of Haramad", "=ds=#m27#"};
- { 21, 32449, "", "=q1=Essence-Infused Moonstone", "=ds=#m27#"};
- };
+AtlasLoot_Data["BCKeys"] = {
+ Name = "BCKeys";
+ {
+ Name = "BCKeys";
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 27991, "", "=q1=Shadow Labyrinth Key", "=ds=#e9#" };
+ { 3, 28395, "", "=q1=Shattered Halls Key", "=ds=#e9#" };
+ { 4, 31084, "", "=q1=Key to the Arcatraz", "=ds=#e9#" };
+ { 6, 0, "INV_Box_01", "#j27#", "" };
+ { 7, 30622, "", "=q1=Flamewrought Key", "=ds=#e9# =ec1=#m7#" };
+ { 8, 30637, "", "=q1=Flamewrought Key", "=ds=#e9# =ec1=#m6#" };
+ { 9, 30623, "", "=q1=Reservoir Key", "=ds=#e9#" };
+ { 10, 30633, "", "=q1=Auchenai Key", "=ds=#e9#" };
+ { 11, 30635, "", "=q1=Key of Time", "=ds=#e9#" };
+ { 12, 30634, "", "=q1=Warpforged Key", "=ds=#e9#" };
+ { 16, 0, "INV_Box_01", "=q6=#j2#", "" };
+ { 17, 24490, "", "=q1=The Master's Key", "=ds=#e9#" };
+ { 19, 0, "INV_Box_01", "=q6=#m20#", "" };
+ { 20, 32092, "", "=q3=The Eye of Haramad", "=ds=#m27#" };
+ { 21, 32449, "", "=q1=Essence-Infused Moonstone", "=ds=#m27#" };
};
+};
- -----------------------------------
- --- Auchindoun: Auchenai Crypts ---
- -----------------------------------
+-----------------------------------
+--- Auchindoun: Auchenai Crypts ---
+-----------------------------------
- AtlasLoot_Data["AuchCrypts"] = {
- Name = BabbleZone["Auchindoun"]..": "..BabbleZone["Auchenai Crypts"];
- DisplayName = BabbleZone["Auchenai Crypts"];
- Type = "BCDungeon";
- Map = "AuchAuchenaiCrypts";
- {
- Name = BabbleBoss["Shirrak the Dead Watcher"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 27410, "", "=q3=Collar of Command", "=ds=#s1#, #a1#", "", "13.00%"};
- { 3, 27409, "", "=q3=Raven-Heart Headdress", "=ds=#s1#, #a2#", "", "11.18%"};
- { 4, 27408, "", "=q3=Hope Bearer Helm", "=ds=#s1#, #a4#", "", "15.16%"};
- { 5, 26055, "", "=q3=Oculus of the Hidden Eye", "=ds=#s14#", "", "15.16%"};
- { 6, 25964, "", "=q3=Shaarde the Lesser", "=ds=#h1#, #w10#", "", "11.59%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30587, "", "=q4=Champion's Fire Opal", "=ds=#e7#", "", "11.67%"};
- { 19, 30588, "", "=q4=Potent Fire Opal", "=ds=#e7#", "", "1.67%"};
- { 20, 30586, "", "=q4=Seer's Chrysoprase", "=ds=#e7#", "", "11.67%"};
- { 22, 27866, "", "=q3=Scintillating Headdress of Second Sight", "=ds=#s1#, #a1#", "", "15.00%"};
- { 23, 27493, "", "=q3=Gloves of the Deadwatcher", "=ds=#s9#, #a1#", "", "10.87%"};
- { 24, 27865, "", "=q3=Bracers of Shirrak", "=ds=#s8#, #a3#", "", "21.74%"};
- { 25, 27845, "", "=q3=Magma Plume Boots", "=ds=#s12#, #a3#", "", "23.91%"};
- { 26, 27847, "", "=q3=Fanblade Pauldrons", "=ds=#s3#, #a4#", "", "6.52%"};
- { 27, 27846, "", "=q3=Claw of the Watcher", "=ds=#h3#, #w13#", "", "6.52%"};
- };
- {
- Name = BabbleBoss["Exarch Maladaar"];
- { 1, 0, "INV_Box_01", "#j27#", ""};
- { 2, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 3, 29354, "", "=q4=Light-Touched Stole of Altruism", "=ds=#s4#", "", "6.67%"};
- { 4, 29257, "", "=q4=Sash of Arcane Visions", "=ds=#s10#, #a1#", "", "6.67%"};
- { 5, 29244, "", "=q4=Wave-Song Girdle", "=ds=#s10#, #a3#", "", "20.00%"};
- { 7, 27867, "", "=q3=Boots of the Unjust", "=ds=#s12#, #a2#", "", "3.33%"};
- { 8, 27871, "", "=q3=Maladaar's Blessed Chaplet", "=ds=#s2#", "", "18.33%"};
- { 9, 27869, "", "=q3=Soulpriest's Ring of Resolve", "=ds=#s13#", "", "18.33%"};
- { 10, 27523, "", "=q3=Exarch's Diamond Band", "=ds=#s13#", "", "13.33%"};
- { 11, 27872, "", "=q3=The Harvester of Souls", "=ds=#h1#, #w1#", "", "11.67%"};
- { 13, 33836, "", "=q1=The Exarch's Soul Gem", "=ds=#m3#", "", "100%"};
- { 16, 30587, "", "=q4=Champion's Fire Opal", "=ds=#e7#", "", "11.67%"};
- { 17, 30588, "", "=q4=Potent Fire Opal", "=ds=#e7#", "", "1.67%"};
- { 18, 30586, "", "=q4=Seer's Chrysoprase", "=ds=#e7#", "", "11.67%"};
- { 20, 427870, "", "=q3=Doomplate Legguards", "=ds=#s11#, #a4# (D3)", "", "3.33%"};
- { 22, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 23, 27411, "", "=q3=Slippers of Serenity", "=ds=#s12#, #a1#", "", "8.14%"};
- { 24, 27415, "", "=q3=Darkguard Face Mask", "=ds=#s1#, #a2#", "", "11.44%"};
- { 25, 27414, "", "=q3=Mok'Nathal Beast-Mask", "=ds=#s1#, #a3#", "", "11.27%"};
- { 26, 27413, "", "=q3=Ring of the Exarchs", "=ds=#s13#", "", "10.42%"};
- { 27, 27416, "", "=q3=Fetish of the Fallen", "=ds=#s14#", "", "12.81%"};
- { 28, 27412, "", "=q3=Ironstaff of Regeneration", "=ds=#h2#, #w9#", "", "11.95%"};
- };
- {
- Name = AL["Avatar of the Martyred"];
- { 1, 27878, "", "=q3=Auchenai Death Shroud", "=ds=#s4#", "", "4.41%"};
- { 2, 28268, "", "=q3=Natural Mender's Wraps", "=ds=#s9#, #a2#", "", "3.94%"};
- { 3, 27876, "", "=q3=Will of the Fallen Exarch", "=ds=#h3#, #w6#", "", "5.10%"};
- { 4, 27937, "", "=q3=Sky Breaker", "=ds=#h3#, #w6#", "", "3.48%"};
- { 5, 27877, "", "=q3=Draenic Wildstaff", "=ds=#h2#, #w9#", "", "4.87%"};
- { 7, 27797, "", "=q3=Wastewalker Shoulderpads", "=ds=#s3#, #a2# (D3)", "", "3.94%"};
- };
+AtlasLoot_Data["AuchCrypts"] = {
+ Name = BabbleZone["Auchindoun"] .. ": " .. BabbleZone["Auchenai Crypts"];
+ DisplayName = BabbleZone["Auchenai Crypts"];
+ Type = "BCDungeon";
+ Map = "AuchAuchenaiCrypts";
+ {
+ Name = BabbleBoss["Shirrak the Dead Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 27410, "", "=q3=Collar of Command", "=ds=#s1#, #a1#", "", "13.00%" };
+ { 3, 27409, "", "=q3=Raven-Heart Headdress", "=ds=#s1#, #a2#", "", "11.18%" };
+ { 4, 27408, "", "=q3=Hope Bearer Helm", "=ds=#s1#, #a4#", "", "15.16%" };
+ { 5, 26055, "", "=q3=Oculus of the Hidden Eye", "=ds=#s14#", "", "15.16%" };
+ { 6, 25964, "", "=q3=Shaarde the Lesser", "=ds=#h1#, #w10#", "", "11.59%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30587, "", "=q4=Champion's Fire Opal", "=ds=#e7#", "", "11.67%" };
+ { 19, 30588, "", "=q4=Potent Fire Opal", "=ds=#e7#", "", "1.67%" };
+ { 20, 30586, "", "=q4=Seer's Chrysoprase", "=ds=#e7#", "", "11.67%" };
+ { 22, 27866, "", "=q3=Scintillating Headdress of Second Sight", "=ds=#s1#, #a1#", "", "15.00%" };
+ { 23, 27493, "", "=q3=Gloves of the Deadwatcher", "=ds=#s9#, #a1#", "", "10.87%" };
+ { 24, 27865, "", "=q3=Bracers of Shirrak", "=ds=#s8#, #a3#", "", "21.74%" };
+ { 25, 27845, "", "=q3=Magma Plume Boots", "=ds=#s12#, #a3#", "", "23.91%" };
+ { 26, 27847, "", "=q3=Fanblade Pauldrons", "=ds=#s3#, #a4#", "", "6.52%" };
+ { 27, 27846, "", "=q3=Claw of the Watcher", "=ds=#h3#, #w13#", "", "6.52%" };
};
-
- ------------------------------
- --- Auchindoun: Mana-Tombs ---
- ------------------------------
-
- AtlasLoot_Data["AuchManaTombs"] = {
- Name = BabbleZone["Auchindoun"]..": "..BabbleZone["Mana-Tombs"];
- DisplayName = BabbleZone["Mana-Tombs"];
- Type = "BCDungeon";
- Map = "AuchManaTombs";
- {
- Name = BabbleBoss["Pandemonius"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 25941, "", "=q3=Boots of the Outlander", "=ds=#s12#, #a3#", "", "10.55%"};
- { 3, 25942, "", "=q3=Faith Bearer's Gauntlets", "=ds=#s9#, #a4#", "", "11.41%"};
- { 4, 25940, "", "=q3=Idol of the Claw", "=ds=#s16#, #w14#", "", "12.18%"};
- { 5, 25943, "", "=q3=Creepjacker", "=ds=#h3#, #w13#", "", "14.22%"};
- { 6, 28166, "", "=q3=Shield of the Void", "=ds=#w8#", "", "10.81%"};
- { 7, 25939, "", "=q3=Voidfire Wand", "=ds=#w12#", "", "13.04%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30584, "", "=q4=Enscribed Fire Opal", "=ds=#e7#", "", "0.08%"};
- { 19, 30585, "", "=q4=Glistening Fire Opal", "=ds=#e7#", "", "6.06%"};
- { 20, 30583, "", "=q4=Timeless Chrysoprase", "=ds=#e7#", "", "9.09%"};
- { 22, 27816, "", "=q3=Mindrage Pauldrons", "=ds=#s3#, #a1#", "", "13.95%"};
- { 23, 27818, "", "=q3=Starry Robes of the Crescent", "=ds=#s5#, #a2#", "", "11.63%"};
- { 24, 27813, "", "=q3=Boots of the Colossus", "=ds=#s12#, #a4#", "", "13.95%"};
- { 25, 27815, "", "=q3=Totem of the Astral Winds", "=ds=#s16#, #w15#", "", "2.33%"};
- { 26, 27814, "", "=q3=Twinblade of Mastery", "=ds=#h1#, #w4#", "", "6.98%"};
- { 27, 27817, "", "=q3=Starbolt Longbow", "=ds=#w2#", "", "9.30%"};
- };
- {
- Name = BabbleBoss["Tavarok"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 25945, "", "=q3=Cloak of Revival", "=ds=#s4#", "", "8.08%"};
- { 3, 25946, "", "=q3=Nethershade Boots", "=ds=#s12#, #a2#", "", "11.62%"};
- { 4, 25947, "", "=q3=Lightning-Rod Pauldrons", "=ds=#s3#, #a3#", "", "11.25%"};
- { 5, 25952, "", "=q3=Scimitar of the Nexus-Stalkers", "=ds=#h1#, #w10#", "", "12.12%"};
- { 6, 25944, "", "=q3=Shaarde the Greater", "=ds=#h2#, #w10#", "", "9.35%"};
- { 7, 25950, "", "=q3=Staff of Polarities", "=ds=#h2#, #w9#", "", "9.91%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30584, "", "=q4=Enscribed Fire Opal", "=ds=#e7#", "", "0.08%"};
- { 19, 30585, "", "=q4=Glistening Fire Opal", "=ds=#e7#", "", "6.06%"};
- { 20, 30583, "", "=q4=Timeless Chrysoprase", "=ds=#e7#", "", "9.09%"};
- { 22, 27824, "", "=q3=Robe of the Great Dark Beyond", "=ds=#s5#, #a1#", "", "9.09%"};
- { 23, 27821, "", "=q3=Extravagant Boots of Malice", "=ds=#s12#, #a1#", "", "9.09%"};
- { 24, 27825, "", "=q3=Predatory Gloves", "=ds=#s9#, #a2#", "", "15.15%"};
- { 25, 27826, "", "=q3=Mantle of the Sea Wolf", "=ds=#s3#, #a3#", "", "3.03%"};
- { 26, 27823, "", "=q3=Shard Encrusted Breastplate", "=ds=#s5#, #a3#", "", "15.15%"};
- { 27, 27822, "", "=q3=Crystal Band of Valor", "=ds=#s13#", "", "15.15%"};
- };
- {
- Name = BabbleBoss["Nexus-Prince Shaffar"];
- { 1, 25957, "", "=q3=Ethereal Boots of the Skystrider", "=ds=#s12#, #a1#", "", "11.60%"};
- { 2, 25955, "", "=q3=Mask of the Howling Storm", "=ds=#s1#, #a3#", "", "12.37%"};
- { 3, 25956, "", "=q3=Nexus-Bracers of Vigor", "=ds=#s8#, #a4#", "", "10.84%"};
- { 4, 25954, "", "=q3=Sigil of Shaffar", "=ds=#s2#", "", "12.45%"};
- { 5, 25962, "", "=q3=Longstrider's Loop", "=ds=#s13#", "", "12.32%"};
- { 6, 25953, "", "=q3=Ethereal Warp-Bow", "=ds=#w2#", "", "14.19%"};
- { 8, 22921, "", "=q2=Recipe: Major Frost Protection Potion", "=ds=#p1# (360)", "", "0.85%"};
- { 10, 28490, "", "=q1=Shaffar's Wrappings", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Nexus-Prince Shaffar"].." ("..AL["Heroic"]..")";
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 29240, "", "=q4=Bands of Negation", "=ds=#s8#, #a1#", "", "3.03%"};
- { 3, 30535, "", "=q4=Forestwalker Kilt", "=ds=#s11#, #a2#", "", "27.27%"};
- { 4, 29352, "", "=q4=Cobalt Band of Tyrigosa", "=ds=#s13#", "", "0.21%"};
- { 5, 32082, "", "=q4=The Fel Barrier", "=ds=#w8#"};
- { 7, 27831, "", "=q3=Mantle of the Unforgiven", "=ds=#s3#, #a1#", "", "9.20%"};
- { 8, 27843, "", "=q3=Glyph-Lined Sash", "=ds=#s10#, #a1#", "", "10.80%"};
- { 9, 27827, "", "=q3=Lucid Dream Bracers", "=ds=#s8#, #a2#"};
- { 10, 27835, "", "=q3=Stillwater Girdle", "=ds=#s10#, #a3#", "", "6.06%"};
- { 11, 27844, "", "=q3=Pauldrons of Swift Retribution", "=ds=#s3#, #a4#", "", "8.10%"};
- { 12, 27798, "", "=q3=Gauntlets of Vindication", "=ds=#s9#, #a4#", "", "11.80%"};
- { 14, 33835, "", "=q1=Shaffar's Wondrous Amulet", "=ds=#m3#", "", "100%"};
- { 15, 28490, "", "=q1=Shaffar's Wrappings", "=ds=#m3#", "", "100%"};
- { 16, 30584, "", "=q4=Enscribed Fire Opal", "=ds=#e7#", "", "0.08%"};
- { 17, 30585, "", "=q4=Glistening Fire Opal", "=ds=#e7#", "", "6.06%"};
- { 18, 30583, "", "=q4=Timeless Chrysoprase", "=ds=#e7#", "", "9.09%"};
- { 20, 27837, "", "=q3=Wastewalker Leggings", "=ds=#s11#, #a2# (D3)", "", "3.03%"};
- { 22, 27828, "", "=q3=Warp-Scarab Brooch", "=ds=#s14#", "", "30.30%"};
- { 23, 28400, "", "=q3=Warp-Storm Warblade", "=ds=#h1#, #w10#"};
- { 24, 27829, "", "=q3=Axe of the Nexus-Kings", "=ds=#h2#, #w1#", "", "9.09%"};
- { 25, 27840, "", "=q3=Scepter of Sha'tar", "=ds=#h2#, #w6#"};
- { 26, 27842, "", "=q3=Grand Scepter of the Nexus-Kings", "=ds=#h2#, #w9#", "", "9.09%"};
- { 28, 22921, "", "=q2=Recipe: Major Frost Protection Potion", "=ds=#p1# (360)", "", "2.85%"};
- };
- {
- Name = AL["Yor"].." ("..AL["Heroic"]..")";
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 31919, "", "=q4=Nexus-Prince's Ring of Balance", "=ds=#s13#"};
- { 3, 31920, "", "=q4=Shaffar's Band of Brutality", "=ds=#s13#"};
- { 4, 31921, "", "=q4=Yor's Collapsing Band", "=ds=#s13#"};
- { 5, 31922, "", "=q4=Ring of Conflict Survival", "=ds=#s13#"};
- { 6, 31923, "", "=q4=Band of the Crystalline Void", "=ds=#s13#"};
- { 7, 31924, "", "=q4=Yor's Revenge", "=ds=#s13#"};
- { 9, 31554, "", "=q3=Windchanneller's Tunic", "=ds=#s5#, #a1# =q2=#m16#"};
- { 10, 31562, "", "=q3=Skystalker's Tunic", "=ds=#s5#, #a2# =q2=#m16#"};
- { 11, 31570, "", "=q3=Mistshroud Tunic", "=ds=#s5#, #a3# =q2=#m16#"};
- { 12, 31578, "", "=q3=Slatesteel Breastplate", "=ds=#s5# #a4#, =q2=#m16#"};
- { 16, 30584, "", "=q4=Enscribed Fire Opal", "=ds=#e7#", "", "0.08%"};
- { 17, 30585, "", "=q4=Glistening Fire Opal", "=ds=#e7#", "", "6.06%"};
- { 18, 30583, "", "=q4=Timeless Chrysoprase", "=ds=#e7#", "", "9.09%"};
- };
+ {
+ Name = BabbleBoss["Exarch Maladaar"];
+ { 1, 0, "INV_Box_01", "#j27#", "" };
+ { 2, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 3, 29354, "", "=q4=Light-Touched Stole of Altruism", "=ds=#s4#", "", "6.67%" };
+ { 4, 29257, "", "=q4=Sash of Arcane Visions", "=ds=#s10#, #a1#", "", "6.67%" };
+ { 5, 29244, "", "=q4=Wave-Song Girdle", "=ds=#s10#, #a3#", "", "20.00%" };
+ { 7, 27867, "", "=q3=Boots of the Unjust", "=ds=#s12#, #a2#", "", "3.33%" };
+ { 8, 27871, "", "=q3=Maladaar's Blessed Chaplet", "=ds=#s2#", "", "18.33%" };
+ { 9, 27869, "", "=q3=Soulpriest's Ring of Resolve", "=ds=#s13#", "", "18.33%" };
+ { 10, 27523, "", "=q3=Exarch's Diamond Band", "=ds=#s13#", "", "13.33%" };
+ { 11, 27872, "", "=q3=The Harvester of Souls", "=ds=#h1#, #w1#", "", "11.67%" };
+ { 13, 33836, "", "=q1=The Exarch's Soul Gem", "=ds=#m3#", "", "100%" };
+ { 16, 30587, "", "=q4=Champion's Fire Opal", "=ds=#e7#", "", "11.67%" };
+ { 17, 30588, "", "=q4=Potent Fire Opal", "=ds=#e7#", "", "1.67%" };
+ { 18, 30586, "", "=q4=Seer's Chrysoprase", "=ds=#e7#", "", "11.67%" };
+ { 20, 427870, "", "=q3=Doomplate Legguards", "=ds=#s11#, #a4# (D3)", "", "3.33%" };
+ { 22, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 23, 27411, "", "=q3=Slippers of Serenity", "=ds=#s12#, #a1#", "", "8.14%" };
+ { 24, 27415, "", "=q3=Darkguard Face Mask", "=ds=#s1#, #a2#", "", "11.44%" };
+ { 25, 27414, "", "=q3=Mok'Nathal Beast-Mask", "=ds=#s1#, #a3#", "", "11.27%" };
+ { 26, 27413, "", "=q3=Ring of the Exarchs", "=ds=#s13#", "", "10.42%" };
+ { 27, 27416, "", "=q3=Fetish of the Fallen", "=ds=#s14#", "", "12.81%" };
+ { 28, 27412, "", "=q3=Ironstaff of Regeneration", "=ds=#h2#, #w9#", "", "11.95%" };
};
-
- ---------------------------------
- --- Auchindoun: Sethekk Halls ---
- ---------------------------------
-
- AtlasLoot_Data["AuchSethekk"] = {
- Name = BabbleZone["Auchindoun"]..": "..BabbleZone["Sethekk Halls"];
- DisplayName = BabbleZone["Sethekk Halls"];
- Type = "BCDungeon";
- Map = "AuchSethekkHalls";
- {
- Name = BabbleBoss["Darkweaver Syth"];
- { 1, 27919, "", "=q3=Light-Woven Slippers", "=ds=#s12#, #a1#", "", "13.90%"};
- { 2, 27914, "", "=q3=Moonstrider Boots", "=ds=#s12#, #a2#", "", "12.26%"};
- { 3, 27915, "", "=q3=Sky-Hunter Swift Boots", "=ds=#s12#, #a3#", "", "11.74%"};
- { 4, 27918, "", "=q3=Bands of Syth", "=ds=#s8#, #a4#", "", "11.81%"};
- { 5, 27917, "", "=q3=Libram of the Eternal Rest", "=ds=#s16#, #w16#", "", "14.12%"};
- { 6, 27916, "", "=q3=Sethekk Feather-Darts", "=ds=#w11#", "", "11.34%"};
- { 8, 24160, "", "=q3=Design: Khorium Inferno Band", "=ds=#p12# (355)", "", "0.29%"};
- { 10, 27633, "", "=q1=Terokk's Mask", "=ds=#m3#", "", "100%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30553, "", "=q4=Pristine Fire Opal", "=ds=#e7#", "", "15.73%"};
- { 19, 30554, "", "=q4=Stalwart Fire Opal", "=ds=#e7#", "", "10.11%"};
- { 20, 30552, "", "=q4=Blessed Tanzanite", "=ds=#e7#", "", "0.18%"};
- { 22, 25461, "", "=q1=Book of Forgotten Names", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Anzu"].." ("..AL["Heroic"]..")";
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 32768, "", "=q4=Reins of the Raven Lord", "=ds=#e12#"};
- { 3, 30553, "", "=q4=Pristine Fire Opal", "=ds=#e7#", "", "15.73%"};
- { 4, 30554, "", "=q4=Stalwart Fire Opal", "=ds=#e7#", "", "10.11%"};
- { 5, 30552, "", "=q4=Blessed Tanzanite", "=ds=#e7#", "", "0.18%"};
- { 7, 32769, "", "=q3=Belt of the Raven Lord", "=ds=#s10#, #a2#"};
- { 8, 32778, "", "=q3=Boots of Righteous Fortitude", "=ds=#s12#, #a4#"};
- { 9, 32779, "", "=q3=Band of Frigid Elements", "=ds=#s13#"};
- { 10, 32781, "", "=q3=Talon of Anzu", "=ds=#h1#, #w4#"};
- { 11, 32780, "", "=q3=The Boomstick", "=ds=#w5#"};
- };
- {
- Name = BabbleBoss["Talon King Ikiss"];
- { 1, 27948, "", "=q3=Trousers of Oblivion", "=ds=#s11#, #a1# (D3)", "", "8.89%"};
- { 2, 27838, "", "=q3=Incanter's Trousers", "=ds=#s11#, #a1# (D3)", "", "9.54%"};
- { 3, 27875, "", "=q3=Hallowed Trousers", "=ds=#s11#, #a1# (D3)", "", "10.28%"};
- { 4, 27776, "", "=q3=Shoulderpads of Assassination", "#s3#, #a2# (D3)", "", "10.21%"};
- { 5, 27936, "", "=q3=Greaves of Desolation", "=ds=#s11#, #a3# (D3)", "", "12.00%"};
- { 7, 27946, "", "=q3=Avian Cloak of Feathers", "=ds=#s4#", "", "10.21%"};
- { 8, 27981, "", "=q3=Sethekk Oracle Cloak", "=ds=#s4#", "", "10.00%"};
- { 9, 27985, "", "=q3=Deathforge Girdle", "=ds=#s10#, #a4#", "", "9.24%"};
- { 10, 27925, "", "=q3=Ravenclaw Band", "=ds=#s13#", "", "12.79%"};
- { 11, 27980, "", "=q3=Terokk's Nightmace", "=ds=#h1#, #w6#", "", "11.18%"};
- { 12, 27986, "", "=q3=Crow Wing Reaper", "=ds=#h2#, #w1#", "", "8.50%"};
- { 14, 27632, "", "=q1=Terokk's Quill", "=ds=#m3#", "", "100%"};
- { 15, 27991, "", "=q1=Shadow Labyrinth Key", "=ds=#e9#", "", "100%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30553, "", "=q4=Pristine Fire Opal", "=ds=#e7#", "", "15.73%"};
- { 19, 30554, "", "=q4=Stalwart Fire Opal", "=ds=#e7#", "", "10.11%"};
- { 20, 30552, "", "=q4=Blessed Tanzanite", "=ds=#e7#", "", "0.18%"};
- { 22, 29249, "", "=q4=Bands of the Benevolent", "=ds=#s8#, #a1#", "", "4.49%"};
- { 23, 29259, "", "=q4=Bracers of the Hunt", "=ds=#s8#, #a3#", "", "7.87%"};
- { 24, 32073, "", "=q4=Spaulders of Dementia", "=ds=#s3#, #a4#"};
- { 25, 29355, "", "=q4=Terokk's Shadowstaff", "=ds=#h2#, #w9#", "", "0.16%"};
- { 27, 33834, "", "=q1=The Headfeathers of Ikiss", "=ds=#m3#", "", "100%"};
- };
+ {
+ Name = AL["Avatar of the Martyred"];
+ { 1, 27878, "", "=q3=Auchenai Death Shroud", "=ds=#s4#", "", "4.41%" };
+ { 2, 28268, "", "=q3=Natural Mender's Wraps", "=ds=#s9#, #a2#", "", "3.94%" };
+ { 3, 27876, "", "=q3=Will of the Fallen Exarch", "=ds=#h3#, #w6#", "", "5.10%" };
+ { 4, 27937, "", "=q3=Sky Breaker", "=ds=#h3#, #w6#", "", "3.48%" };
+ { 5, 27877, "", "=q3=Draenic Wildstaff", "=ds=#h2#, #w9#", "", "4.87%" };
+ { 7, 27797, "", "=q3=Wastewalker Shoulderpads", "=ds=#s3#, #a2# (D3)", "", "3.94%" };
};
+};
- ------------------------------------
- --- Auchindoun: Shadow Labyrinth ---
- ------------------------------------
+------------------------------
+--- Auchindoun: Mana-Tombs ---
+------------------------------
- AtlasLoot_Data["AuchShadowLab"] = {
- Name = BabbleZone["Auchindoun"]..": "..BabbleZone["Shadow Labyrinth"];
- DisplayName = BabbleZone["Shadow Labyrinth"];
- Type = "BCDungeon";
- Map = "AuchShadowLabyrinth";
- {
- Name = BabbleBoss["Ambassador Hellmaw"];
- { 1, 27889, "", "=q3=Jaedenfire Gloves of Annihilation", "=ds=#s9#, #a1#", "", "13.58%"};
- { 2, 27888, "", "=q3=Dream-Wing Helm", "=ds=#s1#, #a3#", "", "11.81%"};
- { 3, 27884, "", "=q3=Ornate Boots of the Sanctified", "=ds=#s12#, #a4#", "", "13.15%"};
- { 4, 27886, "", "=q3=Idol of the Emerald Queen", "=ds=#s16#, #w14#", "", "12.94%"};
- { 5, 27887, "", "=q3=Platinum Shield of the Valorous", "=ds=#w8#", "", "10.88%"};
- { 6, 27885, "", "=q3=Soul-Wand of the Aldor", "=ds=#w12#", "", "13.34%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30563, "", "=q4=Regal Tanzanite", "=ds=#e7#", "", "16.67%"};
- { 19, 30559, "", "=q4=Etched Fire Opal", "=ds=#e7#", "", "17.85%"};
- { 20, 30560, "", "=q4=Rune Covered Chrysoprase", "=ds=#e7#", "", "15.47%"};
- };
- {
- Name = BabbleBoss["Blackheart the Inciter"];
- { 1, 27468, "", "=q3=Moonglade Handwraps", "=ds=#s9#, #a2# (D3)", "", "6.67%"};
- { 3, 27892, "", "=q3=Cloak of the Inciter", "=ds=#s4#", "", "16.32%"};
- { 4, 27893, "", "=q3=Ornate Leggings of the Venerated", "=ds=#s11#, #a4#", "", "13.35%"};
- { 5, 28134, "", "=q3=Brooch of Hightened Potential", "=ds=#s2#", "", "10.54%"};
- { 6, 27891, "", "=q3=Adamantine Figurine", "=ds=#s14#", "", "10.93%"};
- { 7, 27890, "", "=q3=Wand of the Netherwing", "=ds=#w12#", "", "10.77%"};
- { 9, 25728, "", "=q3=Pattern: Stylin' Purple Hat", "=ds=#p7# (350)", "", "0.94%"};
- { 11, 30808, "", "=q1=Book of Fel Names", "=ds=#m3#", "", "100%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30563, "", "=q4=Regal Tanzanite", "=ds=#e7#", "", "16.67%"};
- { 19, 30559, "", "=q4=Etched Fire Opal", "=ds=#e7#", "", "17.85%"};
- { 20, 30560, "", "=q4=Rune Covered Chrysoprase", "=ds=#e7#", "", "15.47%"};
- };
- {
- Name = BabbleBoss["Grandmaster Vorpil"];
- { 1, 27775, "", "=q3=Hallowed Pauldrons", "=ds=#s3#, #a1# (D3)", "", "16.11%"};
- { 3, 27897, "", "=q3=Breastplate of Many Graces", "=ds=#s5#, #a4#", "", "12.67%"};
- { 4, 27900, "", "=q3=Jewel of Charismatic Mystique", "=ds=#s14#", "", "16.64%"};
- { 5, 27901, "", "=q3=Blackout Truncheon", "=ds=#h1#, #w6#", "", "14.35%"};
- { 6, 27898, "", "=q3=Wrathfire Hand-Cannon", "=ds=#w5#", "", "14.71%"};
- { 8, 30827, "", "=q1=Lexicon Demonica", "=ds=#m3#", "", "100%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30563, "", "=q4=Regal Tanzanite", "=ds=#e7#", "", "16.67%"};
- { 19, 30559, "", "=q4=Etched Fire Opal", "=ds=#e7#", "", "17.85%"};
- { 20, 30560, "", "=q4=Rune Covered Chrysoprase", "=ds=#e7#", "", "15.47%"};
- };
- {
- Name = BabbleBoss["Murmur"];
- { 1, 24309, "", "=q4=Pattern: Spellstrike Pants", "=ds=#p8# (375)", "", "0.37%"};
- { 3, 27902, "", "=q3=Silent Slippers of Meditation", "=ds=#s12#, #a1#", "", "12.28%"};
- { 4, 27912, "", "=q3=Harness of the Deep Currents", "=ds=#s5#, #a3#", "", "13.59%"};
- { 5, 27913, "", "=q3=Whispering Blade of Slaying", "=ds=#h1#, #w4#", "", "9.69%"};
- { 6, 27905, "", "=q3=Greatsword of Horrid Dreams", "=ds=#h3#, #w10#", "", "9.35%"};
- { 7, 27903, "", "=q3=Sonic Spear", "=ds=#w7#", "", "11.17%"};
- { 8, 27910, "", "=q3=Silvermoon Crest Shield", "=ds=#w8#", "", "12.46%"};
- { 10, 27778, "", "=q3=Spaulders of Oblivion", "=ds=#s3#, #a1# (D3)", "", "12.28%"};
- { 11, 28232, "", "=q3=Robe of Oblivion", "=ds=#s5#, #a1# (D3)", "", "10.47%"};
- { 12, 28230, "", "=q3=Hallowed Garments", "=ds=#s5#, #a1# (D3)", "", "11.46%"};
- { 13, 27908, "", "=q3=Leggings of Assassination", "=ds=#s11#, #a2# (D3)", "", "8.76%"};
- { 14, 27909, "", "=q3=Tidefury Kilt", "=ds=#s11#, #a3# (D3)", "", "13.87%"};
- { 15, 27803, "", "=q3=Shoulderguards of the Bold", "=ds=#s3#, #a4# (D3)", "", "9.49%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30563, "", "=q4=Regal Tanzanite", "=ds=#e7#", "", "16.67%"};
- { 19, 30559, "", "=q4=Etched Fire Opal", "=ds=#e7#", "", "17.85%"};
- { 20, 30560, "", "=q4=Rune Covered Chrysoprase", "=ds=#e7#", "", "15.47%"};
- { 22, 30532, "", "=q4=Kirin Tor Master's Trousers", "=ds=#s11#, #a1#", "", "11.90%"};
- { 23, 29357, "", "=q4=Master Thief's Gloves", "=ds=#s9#, #a2#"};
- { 24, 29261, "", "=q4=Girdle of Ferocity", "=ds=#s10#, #a3#", "", "3.57%"};
- { 25, 29353, "", "=q4=Shockwave Truncheon", "=ds=#h3#, #w6#", "", "10.71%"};
- { 27, 31722, "", "=q1=Murmur's Essence", "=ds=#m3#", "", "100%"};
- { 28, 33840, "", "=q1=Murmur's Whisper", "=ds=#m3#", "", "100%"};
- Prev = "AuchShadowGrandmaster";
-
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], "=q5="..BabbleZone["Mana-Tombs"]};
- { 2, 23615, "", "=q3=Plans: Swiftsteel Gloves", "=ds=#p2# (370), =q1=#n54#", "", "0.52%"};
- { 3, 22543, "", "=q2=Formula: Enchant Boots - Fortitude", "=ds=#p4# (320) =q1=#n83#", "", "0.52%"};
- { 5, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], "=q5="..BabbleZone["Sethekk Halls"]};
- { 6, 25731, "", "=q3=Pattern: Stylin' Crimson Hat", "=ds=#p7# (350) =q1=#n84#", "", "0.46%"};
- { 7, 29669, "", "=q2=Pattern: Shadow Armor Kit", "=ds=#p7# (340) =q1=#n85#", "", "0.39%"};
- { 9, 0, "INV_Box_01", "=q6="..AL["The Saga of Terokk"], "=q5="..BabbleZone["Sethekk Halls"]};
- { 10, 27634, "", "=q1=The Saga of Terokk", "=ds=#m3#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], "=q5="..BabbleZone["Auchenai Crypts"]};
- { 17, 23605, "", "=q3=Plans: Felsteel Gloves", "=ds=#p2# (360), =q1=#n55#", "", "0.69%"};
- { 18, 22544, "", "=q2=Formula: Enchant Boots - Dexterity", "=ds=#p4# (340) =q1=#n82#", "", "0.60%"};
- { 20, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], "=q5="..BabbleZone["Shadow Labyrinth"]};
- { 21, 23607, "", "=q3=Plans: Felsteel Helm", "=ds=#p2# (365), =q1=#n56#", "", "0.61%"};
- { 23, 0, "INV_Box_01", "=q6="..AL["First Fragment Guardian"], "=q5="..BabbleZone["Shadow Labyrinth"]};
- { 24, 24514, "", "=q1=First Key Fragment", "=ds=#m3#", "", "100%"};
- };
+AtlasLoot_Data["AuchManaTombs"] = {
+ Name = BabbleZone["Auchindoun"] .. ": " .. BabbleZone["Mana-Tombs"];
+ DisplayName = BabbleZone["Mana-Tombs"];
+ Type = "BCDungeon";
+ Map = "AuchManaTombs";
+ {
+ Name = BabbleBoss["Pandemonius"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 25941, "", "=q3=Boots of the Outlander", "=ds=#s12#, #a3#", "", "10.55%" };
+ { 3, 25942, "", "=q3=Faith Bearer's Gauntlets", "=ds=#s9#, #a4#", "", "11.41%" };
+ { 4, 25940, "", "=q3=Idol of the Claw", "=ds=#s16#, #w14#", "", "12.18%" };
+ { 5, 25943, "", "=q3=Creepjacker", "=ds=#h3#, #w13#", "", "14.22%" };
+ { 6, 28166, "", "=q3=Shield of the Void", "=ds=#w8#", "", "10.81%" };
+ { 7, 25939, "", "=q3=Voidfire Wand", "=ds=#w12#", "", "13.04%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30584, "", "=q4=Enscribed Fire Opal", "=ds=#e7#", "", "0.08%" };
+ { 19, 30585, "", "=q4=Glistening Fire Opal", "=ds=#e7#", "", "6.06%" };
+ { 20, 30583, "", "=q4=Timeless Chrysoprase", "=ds=#e7#", "", "9.09%" };
+ { 22, 27816, "", "=q3=Mindrage Pauldrons", "=ds=#s3#, #a1#", "", "13.95%" };
+ { 23, 27818, "", "=q3=Starry Robes of the Crescent", "=ds=#s5#, #a2#", "", "11.63%" };
+ { 24, 27813, "", "=q3=Boots of the Colossus", "=ds=#s12#, #a4#", "", "13.95%" };
+ { 25, 27815, "", "=q3=Totem of the Astral Winds", "=ds=#s16#, #w15#", "", "2.33%" };
+ { 26, 27814, "", "=q3=Twinblade of Mastery", "=ds=#h1#, #w4#", "", "6.98%" };
+ { 27, 27817, "", "=q3=Starbolt Longbow", "=ds=#w2#", "", "9.30%" };
};
-
-
-
-
- --------------------
- --- Black Temple ---
- --------------------
-
- AtlasLoot_Data["BlackTemple"] = {
- Name = BabbleZone["Black Temple"];
- Type = "BCRaid";
- Map = "BlackTempleStart";
- {
- Name = BabbleBoss["High Warlord Naj'entus"];
- { 1, 32239, "", "=q4=Slippers of the Seacaller", "=ds=#s12#, #a1#", "", "15%"};
- { 2, 32240, "", "=q4=Guise of the Tidal Lurker", "=ds=#s1#, #a2#", "", "16%"};
- { 3, 32377, "", "=q4=Mantle of Darkness", "=ds=#s3#, #a2#", "", "15%"};
- { 4, 32241, "", "=q4=Helm of Soothing Currents", "=ds=#s1#, #a3#", "", "10%"};
- { 5, 32234, "", "=q4=Fists of Mukoa", "=ds=#s9#, #a3#", "", "16%"};
- { 6, 32242, "", "=q4=Boots of Oceanic Fury", "=ds=#s12#, #a3#", "", "6%"};
- { 7, 32232, "", "=q4=Eternium Shell Bracers", "=ds=#s8#, #a4#", "", "16%"};
- { 8, 32243, "", "=q4=Pearl Inlaid Boots", "=ds=#s12#, #a4#", "", "10%"};
- { 9, 32245, "", "=q4=Tide-stomper's Greaves", "=ds=#s12#, #a4#", "", "7%"};
- { 16, 32238, "", "=q4=Ring of Calming Waves", "=ds=#s13#", "", "16%"};
- { 17, 32247, "", "=q4=Ring of Captured Storms", "=ds=#s13#", "", "16%"};
- { 18, 32237, "", "=q4=The Maelstrom's Fury", "=ds=#h3#, #w4#", "", "15%"};
- { 19, 32236, "", "=q4=Rising Tide", "=ds=#h1#, #w1#", "", "16%"};
- { 20, 32248, "", "=q4=Halberd of Desolation", "=ds=#w7#", "", "16%"};
- { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Supremus"];
- { 1, 32256, "", "=q4=Waistwrap of Infinity", "=ds=#s10#, #a1#", "", "16%"};
- { 2, 32252, "", "=q4=Nether Shadow Tunic", "=ds=#s5#, #a2#", "", "14%"};
- { 3, 32259, "", "=q4=Bands of the Coming Storm", "=ds=#s8#, #a3#", "", "6%"};
- { 4, 32251, "", "=q4=Wraps of Precise Flight", "=ds=#s8#, #a3#", "", "15%"};
- { 5, 32258, "", "=q4=Naturalist's Preserving Cinch", "=ds=#s10#, #a3#", "", "9%"};
- { 6, 32250, "", "=q4=Pauldrons of Abyssal Fury", "=ds=#s3#, #a4#", "", "16%"};
- { 8, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 16, 32260, "", "=q4=Choker of Endless Nightmares", "=ds=#s2#", "", "17%"};
- { 17, 32261, "", "=q4=Band of the Abyssal Lord", "=ds=#s13#", "", "14%"};
- { 18, 32257, "", "=q4=Idol of the White Stag", "=ds=#s16#, #w14#", "", "15%"};
- { 19, 32254, "", "=q4=The Brutalizer", "=ds=#h1#, #w1#", "", "15%"};
- { 20, 32262, "", "=q4=Syphon of the Nathrezim", "=ds=#h1#, #w6#", "", "16%"};
- { 21, 32255, "", "=q4=Felstone Bulwark", "=ds=#w8#", "", "15%"};
- { 22, 32253, "", "=q4=Legionkiller", "=ds=#w3#", "", "16%"};
- };
- {
- Name = BabbleBoss["Shade of Akama"];
- { 1, 32273, "", "=q4=Amice of Brilliant Light", "=ds=#s3#, #a1#", "", "16%"};
- { 2, 32270, "", "=q4=Focused Mana Bindings", "=ds=#s8#, #a1#", "", "15%"};
- { 3, 32513, "", "=q4=Wristbands of Divine Influence", "=ds=#s8#, #a1#", "", "16%"};
- { 4, 32265, "", "=q4=Shadow-walker's Cord", "=ds=#s10#, #a2#", "", "16%"};
- { 5, 32271, "", "=q4=Kilt of Immortal Nature", "=ds=#s11#, #a2#", "", "14%"};
- { 6, 32264, "", "=q4=Shoulders of the Hidden Predator", "=ds=#s3#, #a3#", "", "16%"};
- { 7, 32275, "", "=q4=Spiritwalker Gauntlets", "=ds=#s9#, #a3#", "", "9%"};
- { 8, 32276, "", "=q4=Flashfire Girdle", "=ds=#s10#, #a3#", "", "5%"};
- { 9, 32279, "", "=q4=The Seeker's Wristguards", "=ds=#s8#, #a4#", "", "8%"};
- { 10, 32278, "", "=q4=Grips of Silent Justice", "=ds=#s9#, #a4#", "", "15%"};
- { 11, 32263, "", "=q4=Praetorian's Legguards", "=ds=#s11#, #a4#", "", "14%"};
- { 12, 32268, "", "=q4=Myrmidon's Treads", "=ds=#s12#, #a4#", "", "16%"};
- { 16, 32266, "", "=q4=Ring of Deceitful Intent", "=ds=#s13#", "", "16%"};
- { 17, 32361, "", "=q4=Blind-Seers Icon", "=ds=#s15#", "", "15%"};
- { 19, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Teron Gorefiend"];
- { 1, 32323, "", "=q4=Shadowmoon Destroyer's Drape", "=ds=#s4#", "", "17%"};
- { 2, 32329, "", "=q4=Cowl of Benevolence", "=ds=#s1#, #a1#", "", "17%"};
- { 3, 32327, "", "=q4=Robe of the Shadow Council", "=ds=#s5#, #a1#", "", "15%"};
- { 4, 32324, "", "=q4=Insidious Bands", "=ds=#s8#, #a2#", "", "17%"};
- { 5, 32328, "", "=q4=Botanist's Gloves of Growth", "=ds=#s9#, #a2#", "", "17%"};
- { 6, 32510, "", "=q4=Softstep Boots of Tracking", "=ds=#s12#, #a3#", "", "15%"};
- { 7, 32280, "", "=q4=Gauntlets of Enforcement", "=ds=#s9#, #a4#", "", "15%"};
- { 8, 32512, "", "=q4=Girdle of Lordaeron's Fallen", "=ds=#s10#, #a4#", "", "19%"};
- { 16, 32330, "", "=q4=Totem of Ancestral Guidance", "=ds=#s16#, #w15#", "", "13%"};
- { 17, 32348, "", "=q4=Soul Cleaver", "=ds=#h2#, #w1#", "", "19%"};
- { 18, 32326, "", "=q4=Twisted Blades of Zarak", "=ds=#w11#", "", "11%"};
- { 19, 32325, "", "=q4=Rifle of the Stoic Guardian", "=ds=#w5#", "", "14%"};
- { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Gurtogg Bloodboil"];
- { 1, 32337, "", "=q4=Shroud of Forgiveness", "=ds=#s4#", "", "16%"};
- { 2, 32338, "", "=q4=Blood-cursed Shoulderpads", "=ds=#s3#, #a1#", "", "15%"};
- { 3, 32340, "", "=q4=Garments of Temperance", "=ds=#s5#, #a1#", "", "15%"};
- { 4, 32339, "", "=q4=Belt of Primal Majesty", "=ds=#s10#, #a2#", "", "14%"};
- { 5, 32334, "", "=q4=Vest of Mounting Assault", "=ds=#s5#, #a3#", "", "15%"};
- { 6, 32342, "", "=q4=Girdle of Mighty Resolve", "=ds=#s10#, #a4#", "", "8%"};
- { 7, 32333, "", "=q4=Girdle of Stability", "=ds=#s10#, #a4#", "", "16%"};
- { 8, 32341, "", "=q4=Leggings of Divine Retribution", "=ds=#s11#, #a4#", "", "14%"};
- { 16, 32335, "", "=q4=Unstoppable Aggressor's Ring", "=ds=#s13#", "", "16%"};
- { 17, 32501, "", "=q4=Shadowmoon Insignia", "=ds=#s14#", "", "15%"};
- { 18, 32269, "", "=q4=Messenger of Fate", "=ds=#h1#, #w4#", "", "16%"};
- { 19, 32344, "", "=q4=Staff of Immaculate Recovery", "=ds=#h2#, #w9#", "", "15%"};
- { 20, 32343, "", "=q4=Wand of Prismatic Focus", "=ds=#w12#", "", "14%"};
- { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = "Essence of Souls";
- { 1, 32353, "", "=q4=Gloves of Unfailing Faith", "=ds=#s9#, #a1#", "", "17%"};
- { 2, 32351, "", "=q4=Elunite Empowered Bracers", "=ds=#s8#, #a2#", "", "8%"};
- { 3, 32347, "", "=q4=Grips of Damnation", "=ds=#s9#, #a2#", "", "16%"};
- { 4, 32352, "", "=q4=Naturewarden's Treads", "=ds=#s12#, #a2#", "", "9%"};
- { 5, 32517, "", "=q4=The Wavemender's Mantle", "=ds=#s3#, #a3#", "", "17%"};
- { 6, 32346, "", "=q4=Boneweave Girdle", "=ds=#s10#, #a3#", "", "16%"};
- { 7, 32354, "", "=q4=Crown of Empowered Fate", "=ds=#s1#, #a4#", "", "16%"};
- { 8, 32345, "", "=q4=Dreadboots of the Legion", "=ds=#s12#, #a4#", "", "15%"};
- { 16, 32349, "", "=q4=Translucent Spellthread Necklace", "=ds=#s2#", "", "16%"};
- { 17, 32362, "", "=q4=Pendant of Titans", "=ds=#s2#", "", "15%"};
- { 18, 32350, "", "=q4=Touch of Inspiration", "=ds=#s15#", "", "16%"};
- { 19, 32332, "", "=q4=Torch of the Damned", "=ds=#h2#, #w6#", "", "17%"};
- { 20, 32363, "", "=q4=Naaru-Blessed Life Rod", "=ds=#w12#", "", "14%"};
- { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Mother Shahraz"];
- { 1, 32367, "", "=q4=Leggings of Devastation", "=ds=#s11#, #a1#", "", "16%"};
- { 2, 32366, "", "=q4=Shadowmaster's Boots", "=ds=#s12#, #a2#", "", "15%"};
- { 3, 32365, "", "=q4=Heartshatter Breastplate", "=ds=#s5#, #a4#", "", "15%"};
- { 4, 32370, "", "=q4=Nadina's Pendant of Purity", "=ds=#s2#", "", "15%"};
- { 5, 32368, "", "=q4=Tome of the Lightbringer", "=ds=#s16#, #w16#", "", "15%"};
- { 6, 32369, "", "=q4=Blade of Savagery", "=ds=#h1#, #w10#", "", "15%"};
- { 16, 31101, "", "=q4=Pauldrons of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "76%"};
- { 17, 31103, "", "=q4=Pauldrons of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "80%"};
- { 18, 31102, "", "=q4=Pauldrons of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "77%"};
- { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["The Illidari Council"];
- { 1, 32331, "", "=q4=Cloak of the Illidari Council", "=ds=#s4#", "", "16%"};
- { 2, 32519, "", "=q4=Belt of Divine Guidance", "=ds=#s10#, #a1#", "", "16%"};
- { 3, 32518, "", "=q4=Veil of Turning Leaves", "=ds=#s3#, #a2#", "", "12%"};
- { 4, 32376, "", "=q4=Forest Prowler's Helm", "=ds=#s1#, #a3#", "", "17%"};
- { 5, 32373, "", "=q4=Helm of the Illidari Shatterer", "=ds=#s1#, #a4#", "", "17%"};
- { 6, 32505, "", "=q4=Madness of the Betrayer", "=ds=#s14#", "", "16%"};
- { 16, 31098, "", "=q4=Leggings of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "34%"};
- { 17, 31100, "", "=q4=Leggings of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "33%"};
- { 18, 31099, "", "=q4=Leggings of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "34%"};
- { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Illidan Stormrage"];
- { 1, 32524, "", "=q4=Shroud of the Highborne", "=ds=#s4#", "", "16%"};
- { 2, 32525, "", "=q4=Cowl of the Illidari High Lord", "=ds=#s1#, #a1#", "", "15%"};
- { 3, 32235, "", "=q4=Cursed Vision of Sargeras", "=ds=#s1#, #a2#", "", "16%"};
- { 4, 32521, "", "=q4=Faceplate of the Impenetrable", "=ds=#s1#, #a4#", "", "14%"};
- { 5, 32497, "", "=q4=Stormrage Signet Ring", "=ds=#s13#", "", "15%"};
- { 6, 32483, "", "=q4=The Skull of Gul'dan", "=ds=#s14#", "", "16%"};
- { 7, 32496, "", "=q4=Memento of Tyrande", "=ds=#s14#", "", "15%"};
- { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 11, 32837, "", "=q5=Warglaive of Azzinoth", "=ds=#h3#, #w10#, =q1=#m1# =ds=#c9#, #c6#", "", "4%"};
- { 12, 32838, "", "=q5=Warglaive of Azzinoth", "=ds=#h4#, #w10#, =q1=#m1# =ds=#c9#, #c6#", "", "4%"};
- { 16, 31089, "", "=q4=Chestguard of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "78%"};
- { 17, 31091, "", "=q4=Chestguard of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "79%"};
- { 18, 31090, "", "=q4=Chestguard of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "78%"};
- { 20, 32471, "", "=q4=Shard of Azzinoth", "=ds=#h1#, #w4#", "", "16%"};
- { 21, 32500, "", "=q4=Crystal Spire of Karabor", "=ds=#h3#, #w6#", "", "15%"};
- { 22, 32374, "", "=q4=Zhar'doom, Greatstaff of the Devourer", "=ds=#h2#, #w9#", "", "14%"};
- { 23, 32375, "", "=q4=Bulwark of Azzinoth", "=ds=#w8#", "", "14%"};
- { 24, 32336, "", "=q4=Black Bow of the Betrayer", "=ds=#w2#", "", "16%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 32590, "", "=q4=Nethervoid Cloak", "=ds=#s4#", "", "1%"};
- { 2, 34012, "", "=q4=Shroud of the Final Stand", "=ds=#s4#", "", "1%"};
- { 3, 32609, "", "=q4=Boots of the Divine Light", "=ds=#s12#, #a1#", "", "1%"};
- { 4, 32593, "", "=q4=Treads of the Den Mother", "=ds=#s12#, #a2#", "", "1%"};
- { 5, 32592, "", "=q4=Chestguard of Relentless Storms", "=ds=#s5#, #a3#", "", "1%"};
- { 6, 32608, "", "=q4=Pillager's Gauntlets", "=ds=#s9#, #a4#", "", "1%"};
- { 7, 32606, "", "=q4=Girdle of the Lightbearer", "=ds=#s10#, #a4#", "", "1%"};
- { 8, 32591, "", "=q4=Choker of Serrated Blades", "=ds=#s2#", "", "1%"};
- { 9, 32589, "", "=q4=Hellfire-Encased Pendant", "=ds=#s2#", "", "1%"};
- { 10, 32526, "", "=q4=Band of Devastation", "=ds=#s13#", "", "1%"};
- { 11, 32528, "", "=q4=Blessed Band of Karabor", "=ds=#s13#", "", "1%"};
- { 12, 32527, "", "=q4=Ring of Ancient Knowledge", "=ds=#s13#", "", "2%"};
- { 16, 34009, "", "=q4=Hammer of Judgement", "=ds=#h3#, #w6#", "", "1%"};
- { 17, 32943, "", "=q4=Swiftsteel Bludgeon", "=ds=#h1#, #w6#", "", "2%"};
- { 18, 34011, "", "=q4=Illidari Runeshield", "=ds=#w8#", "", "1%"};
- { 20, 32228, "", "=q4=Empyrean Sapphire", "=ds=#e7#", "", "12%"};
- { 21, 32231, "", "=q4=Pyrestone", "=ds=#e7#", "", "8%"};
- { 22, 32229, "", "=q4=Lionseye", "=ds=#e7#", "", "6%"};
- { 23, 32249, "", "=q4=Seaspray Emerald", "=ds=#e7#", "", "9%"};
- { 24, 32230, "", "=q4=Shadowsong Amethyst", "=ds=#e7#", "", "6%"};
- { 25, 32227, "", "=q4=Crimson Spinel", "=ds=#e7#", "", "8%"};
- { 27, 32428, "", "=q3=Heart of Darkness", "=ds=#e8#", "", "16%"};
- { 28, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"};
- };
- {
- Name = "BT Patterns/Plans";
- { 1, 32738, "", "=q4=Plans: Dawnsteel Bracers", "=ds=#p2# (375)"};
- { 2, 32739, "", "=q4=Plans: Dawnsteel Shoulders", "=ds=#p2# (375)"};
- { 3, 32736, "", "=q4=Plans: Swiftsteel Bracers", "=ds=#p2# (375)"};
- { 4, 32737, "", "=q4=Plans: Swiftsteel Shoulders", "=ds=#p2# (375)"};
- { 5, 32748, "", "=q4=Pattern: Bindings of Lightning Reflexes", "=ds=#p7# (375)"};
- { 6, 32744, "", "=q4=Pattern: Bracers of Renewed Life", "=ds=#p7# (375)"};
- { 7, 32750, "", "=q4=Pattern: Living Earth Bindings", "=ds=#p7# (375)"};
- { 8, 32751, "", "=q4=Pattern: Living Earth Shoulders", "=ds=#p7# (375)"};
- { 9, 32749, "", "=q4=Pattern: Shoulders of Lightning Reflexes", "=ds=#p7# (375)"};
- { 10, 32745, "", "=q4=Pattern: Shoulderpads of Renewed Life", "=ds=#p7# (375)"};
- { 11, 32746, "", "=q4=Pattern: Swiftstrike Bracers", "=ds=#p7# (375)"};
- { 12, 32747, "", "=q4=Pattern: Swiftstrike Shoulders", "=ds=#p7# (375)"};
- { 16, 32754, "", "=q4=Pattern: Bracers of Nimble Thought", "=ds=#p8# (375)"};
- { 17, 32755, "", "=q4=Pattern: Mantle of Nimble Thought", "=ds=#p8# (375)"};
- { 18, 32753, "", "=q4=Pattern: Swiftheal Mantle", "=ds=#p8# (375)"};
- { 19, 32752, "", "=q4=Pattern: Swiftheal Wraps", "=ds=#p8# (375)"};
- };
+ {
+ Name = BabbleBoss["Tavarok"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 25945, "", "=q3=Cloak of Revival", "=ds=#s4#", "", "8.08%" };
+ { 3, 25946, "", "=q3=Nethershade Boots", "=ds=#s12#, #a2#", "", "11.62%" };
+ { 4, 25947, "", "=q3=Lightning-Rod Pauldrons", "=ds=#s3#, #a3#", "", "11.25%" };
+ { 5, 25952, "", "=q3=Scimitar of the Nexus-Stalkers", "=ds=#h1#, #w10#", "", "12.12%" };
+ { 6, 25944, "", "=q3=Shaarde the Greater", "=ds=#h2#, #w10#", "", "9.35%" };
+ { 7, 25950, "", "=q3=Staff of Polarities", "=ds=#h2#, #w9#", "", "9.91%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30584, "", "=q4=Enscribed Fire Opal", "=ds=#e7#", "", "0.08%" };
+ { 19, 30585, "", "=q4=Glistening Fire Opal", "=ds=#e7#", "", "6.06%" };
+ { 20, 30583, "", "=q4=Timeless Chrysoprase", "=ds=#e7#", "", "9.09%" };
+ { 22, 27824, "", "=q3=Robe of the Great Dark Beyond", "=ds=#s5#, #a1#", "", "9.09%" };
+ { 23, 27821, "", "=q3=Extravagant Boots of Malice", "=ds=#s12#, #a1#", "", "9.09%" };
+ { 24, 27825, "", "=q3=Predatory Gloves", "=ds=#s9#, #a2#", "", "15.15%" };
+ { 25, 27826, "", "=q3=Mantle of the Sea Wolf", "=ds=#s3#, #a3#", "", "3.03%" };
+ { 26, 27823, "", "=q3=Shard Encrusted Breastplate", "=ds=#s5#, #a3#", "", "15.15%" };
+ { 27, 27822, "", "=q3=Crystal Band of Valor", "=ds=#s13#", "", "15.15%" };
};
-
-
- ------------------------------------------------
- --- Caverns of Time: Old Hillsbrad Foothills ---
- ------------------------------------------------
-
- AtlasLoot_Data["CoTOldHillsbrad"] = {
- Name = BabbleZone["Caverns of Time"]..": "..BabbleZone["Old Hillsbrad Foothills"];
- DisplayName = BabbleZone["Old Hillsbrad Foothills"];
- Type = "BCDungeon";
- Map = "CoTOldHillsbrad";
- {
- Name = BabbleBoss["Lieutenant Drake"];
- { 1, 27423, "", "=q3=Cloak of Impulsiveness", "=ds=#s4#", "", "19.68%"};
- { 2, 27418, "", "=q3=Stormreaver Shadow-Kilt", "=ds=#s11#, #a1#", "", "18.16%"};
- { 3, 27417, "", "=q3=Ravenwing Pauldrons", "=ds=#s3#, #a2#", "", "18.33%"};
- { 4, 27420, "", "=q3=Uther's Ceremonial Warboots", "=ds=#s12#, #a4#", "", "17.14%"};
- { 5, 27436, "", "=q3=Iron Band of the Unbreakable", "=ds=#s13#", "", "15.09%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30589, "", "=q4=Dazzling Chrysoprase", "=ds=#e7#", "", "0.66%"};
- { 19, 30591, "", "=q4=Empowered Fire Opal", "=ds=#e7#", "", "0.24%"};
- { 20, 30590, "", "=q4=Enduring Chrysoprase", "=ds=#e7#", "", "0.10%"};
- { 22, 28212, "", "=q3=Aran's Sorcerous Slacks", "=ds=#s11#, #a1#", "", "11.43%"};
- { 23, 28214, "", "=q3=Grips of the Lunar Eclipse", "=ds=#s9#, #a2#", "", "2.86%"};
- { 24, 28215, "", "=q3=Mok'Nathal Mask of Battle", "=ds=#s1#, #a3#", "", "11.43%"};
- { 25, 28211, "", "=q3=Lieutenant's Signet of Lordaeron", "=ds=#s13#", "", "5.71%"};
- { 26, 28213, "", "=q3=Lordaeron Medical Guide", "=ds=#s15#", "", "8.57%"};
- { 27, 28210, "", "=q3=Bloodskull Destroyer", "=ds=#h1#, #w6#", "", "5.71%"};
- };
- {
- Name = BabbleBoss["Captain Skarloc"];
- { 1, 27428, "", "=q3=Stormfront Gauntlets", "=ds=#s9#, #a3#", "", "19.04%"};
- { 2, 27430, "", "=q3=Scaled Greaves of Patience", "=ds=#s11#, #a3#", "", "19.22%"};
- { 3, 27427, "", "=q3=Durotan's Battle Harness", "=ds=#s5#, #a4#", "", "14.83%"};
- { 4, 27424, "", "=q3=Amani Venom-Axe", "=ds=#h1#, #w1#", "", "18.50%"};
- { 5, 27426, "", "=q3=Northshire Battlemace", "=ds=#h3#, #w6#", "", "15.37%"};
- { 7, 22927, "", "=q2=Recipe: Ironshield Potion", "=ds=#p1# (365)", "", "1.03%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30589, "", "=q4=Dazzling Chrysoprase", "=ds=#e7#", "", "0.66%"};
- { 19, 30591, "", "=q4=Empowered Fire Opal", "=ds=#e7#", "", "0.24%"};
- { 20, 30590, "", "=q4=Enduring Chrysoprase", "=ds=#e7#", "", "0.10%"};
- { 22, 28218, "", "=q3=Pontiff's Pantaloons of Prophecy", "=ds=#s11#, #a1#", "", "18.18%"};
- { 23, 28220, "", "=q3=Moon-Crown Antlers", "=ds=#s1#, #a2#", "", "0.14%"};
- { 24, 28219, "", "=q3=Emerald-Scale Greaves", "=ds=#s11#, #a3#", "", "3.03%"};
- { 25, 28221, "", "=q3=Boots of the Watchful Heart", "=ds=#s12#, #a4#", "", "0.52%"};
- { 26, 28217, "", "=q3=Tarren Mill Vitality Locket", "=ds=#s2#", "", "9.09%"};
- { 27, 28216, "", "=q3=Dathrohan's Ceremonial Hammer", "=ds=#h3#, #w6#", "", "6.06%"};
- };
- {
- Name = BabbleBoss["Epoch Hunter"];
- { 1, 27433, "", "=q3=Pauldrons of Sufferance", "=ds=#s3#, #a1#", "", "19.11%"};
- { 2, 27434, "", "=q3=Mantle of Perenolde", "=ds=#s3#, #a2#", "", "16.26%"};
- { 3, 27440, "", "=q3=Diamond Prism of Recurrence", "=ds=#s2#", "", "16.12%"};
- { 4, 27432, "", "=q3=Broxigar's Ring of Valor", "=ds=#s13#", "", "16.35%"};
- { 5, 27431, "", "=q3=Time-Shifted Dagger", "=ds=#h3#, #w4#", "", "14.09%"};
- { 6, 0, "INV_Box_01", "#j27#", ""};
- { 7, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 8, 29250, "", "=q4=Cord of Sanctification", "=ds=#s10#, #a1#"};
- { 9, 29246, "", "=q4=Nightfall Wristguards", "=ds=#s8#, #a2#"};
- { 10, 29357, "", "=q4=Master Thief's Gloves", "=ds=#s9#, #a2#", "", "10.00%"};
- { 11, 30534, "", "=q4=Wyrmscale Greaves", "=ds=#s11#, #a3#"};
- { 12, 30536, "", "=q4=Greaves of the Martyr", "=ds=#s11#, #a4#", "", "15.00%"};
- { 13, 27911, "", "=q3=Epoch's Whispering Cinch", "=ds=#s10#, #a2#", "", "10.00%"};
- { 14, 28344, "", "=q3=Wyrmfury Pauldrons", "=ds=#s3#, #a3#", "", "0.24%"};
- { 15, 28233, "", "=q3=Necklace of Resplendent Hope", "=ds=#s2#", "", "15.00%"};
- { 16, 27904, "", "=q3=Resounding Ring of Glory", "=ds=#s13#", "", "0.17%"};
- { 17, 28227, "", "=q3=Sparking Arcanite Ring", "=ds=#s13#", "", "0.24%"};
- { 18, 28223, "", "=q3=Arcanist's Stone", "=ds=#s14#", "", "10.00%"};
- { 19, 28226, "", "=q3=Timeslicer", "=ds=#h1#, #w4#", "", "5.00%"};
- { 20, 28222, "", "=q3=Reaver of the Infinites", "=ds=#h2#, #w1#", "", "0.48%"};
- { 21, 30589, "", "=q4=Dazzling Chrysoprase", "=ds=#e7#", "", "0.66%"};
- { 22, 30591, "", "=q4=Empowered Fire Opal", "=ds=#e7#", "", "0.24%"};
- { 23, 30590, "", "=q4=Enduring Chrysoprase", "=ds=#e7#", "", "0.10%"};
- { 24, 24173, "", "=q4=Design: Circlet of Arcane Might", "=ds=#p12# (370)", "", "0.10%"};
- { 25, 28191, "", "=q3=Mana-Etched Vestments", "=ds=#s5#, #a1# (D3)", "", "0.24%"};
- { 26, 28224, "", "=q3=Wastewalker Helm", "=ds=#s1#, #a2# (D3)", "", "0.24%"};
- { 27, 28401, "", "=q3=Hauberk of Desolation", "=ds=#s5#, #a3# (D3)", "", "0.14%"};
- { 28, 28225, "", "=q3=Doomplate Warhelm", "=ds=#s1#, #a4# (D3)", "", "0.14%"};
- { 30, 33847, "", "=q1=Epoch Hunter's Head", "=ds=#m3#", "", "100%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], "=q5="..BabbleZone["Old Hillsbrad Foothills"]};
- { 2, 25729, "", "=q3=Pattern: Stylin' Adventure Hat", "=ds=#p7# (350) =q1=#n94#", "", "0.25%"};
- { 4, 0, "INV_Box_01", "=q6="..AL["Don Carlos"], "=q5="..BabbleZone["Old Hillsbrad Foothills"]};
- { 5, 38506, "", "=q3=Don Carlos' Famous Hat", "=ds=#s1#, #a1# =q2=#j3#"};
- { 6, 38329, "", "=q1=Don Carlos' Hat", "=q1=#m3#"};
- { 7, 38276, "", "=q1=Haliscan Brimmed Hat", "=q1=#m4#: =ds=#s1#, #a1#"};
- { 9, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], "=q5="..BabbleZone["The Black Morass"]};
- { 10, 25730, "", "=q3=Pattern: Stylin' Jungle Hat", "=ds=#p7# (350) =q1=#n95#", "", "0.29%"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Thomas Yance"], "=q5="..BabbleZone["Old Hillsbrad Foothills"]};
- { 17, 25725, "", "=q1=Pattern: Riding Crop", "=ds=#p7# (350)"};
- { 19, 0, "INV_Box_01", "=q6="..AL["Aged Dalaran Wizard"], "=q5="..BabbleZone["Old Hillsbrad Foothills"]};
- { 20, 22539, "", "=q1=Formula: Enchant Shield - Intellect", "=ds=#p4# (325)"};
- };
+ {
+ Name = BabbleBoss["Nexus-Prince Shaffar"];
+ { 1, 25957, "", "=q3=Ethereal Boots of the Skystrider", "=ds=#s12#, #a1#", "", "11.60%" };
+ { 2, 25955, "", "=q3=Mask of the Howling Storm", "=ds=#s1#, #a3#", "", "12.37%" };
+ { 3, 25956, "", "=q3=Nexus-Bracers of Vigor", "=ds=#s8#, #a4#", "", "10.84%" };
+ { 4, 25954, "", "=q3=Sigil of Shaffar", "=ds=#s2#", "", "12.45%" };
+ { 5, 25962, "", "=q3=Longstrider's Loop", "=ds=#s13#", "", "12.32%" };
+ { 6, 25953, "", "=q3=Ethereal Warp-Bow", "=ds=#w2#", "", "14.19%" };
+ { 8, 22921, "", "=q2=Recipe: Major Frost Protection Potion", "=ds=#p1# (360)", "", "0.85%" };
+ { 10, 28490, "", "=q1=Shaffar's Wrappings", "=ds=#m3#", "", "100%" };
};
-
-
-
-
-
- -----------------------------------------
- --- Caverns of Time: The Black Morass ---
- -----------------------------------------
-
- AtlasLoot_Data["CoTBlackMorass"] = {
- Name = BabbleZone["Caverns of Time"]..": "..BabbleZone["The Black Morass"];
- DisplayName = BabbleZone["The Black Morass"];
- Type = "BCDungeon";
- Map = "CoTBlackMorass";
- {
- Name = BabbleBoss["Chrono Lord Deja"];
- { 1, 27988, "", "=q3=Burnoose of Shifting Ages", "=ds=#s4#", "", "13.87%"};
- { 2, 27994, "", "=q3=Mantle of Three Terrors", "=ds=#s3#, #a1#", "", "12.30%"};
- { 3, 27995, "", "=q3=Sun-Gilded Shouldercaps", "=ds=#s3#, #a2#", "", "13.13%"};
- { 4, 27993, "", "=q3=Mask of Inner Fire", "=ds=#s1#, #a3#", "", "13.84%"};
- { 5, 27996, "", "=q3=Ring of Spiritual Precision", "=ds=#s13#", "", "14.45%"};
- { 6, 27987, "", "=q3=Melmorta's Twilight Longbow", "=ds=#w2#", "", "11.51%"};
- { 8, 29675, "", "=q2=Pattern: Arcane Armor Kit", "=ds=#p7# (340)", "", "0.35%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30558, "", "=q4=Glimmering Fire Opal", "=ds=#e7#"};
- { 19, 30556, "", "=q4=Glinting Fire Opal", "=ds=#e7#"};
- { 20, 30555, "", "=q4=Glowing Tanzanite", "=ds=#e7#"};
- };
- {
- Name = BabbleBoss["Temporus"];
- { 1, 28185, "", "=q3=Khadgar's Kilt of Abjuration", "=ds=#s11#, #a1#", "", "14.26%"};
- { 2, 28186, "", "=q3=Laughing Skull Battle-Harness", "=ds=#s5#, #a3#", "", "13.14%"};
- { 3, 28034, "", "=q3=Hourglass of the Unraveller", "=ds=#s14#", "", "13.69%"};
- { 4, 28187, "", "=q3=Star-Heart Lamp", "=ds=#s15#", "", "11.83%"};
- { 5, 28184, "", "=q3=Millennium Blade", "=ds=#h1#, #w10#", "", "11.74%"};
- { 6, 28033, "", "=q3=Epoch-Mender", "=ds=#h2#, #w9#", "", "13.80%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30558, "", "=q4=Glimmering Fire Opal", "=ds=#e7#"};
- { 19, 30556, "", "=q4=Glinting Fire Opal", "=ds=#e7#"};
- { 20, 30555, "", "=q4=Glowing Tanzanite", "=ds=#e7#"};
- };
- {
- Name = BabbleBoss["Aeonus"];
- { 1, 28193, "", "=q3=Mana-Etched Crown", "=ds=#s1#, #a1# (D3)", "", "11.99%"};
- { 2, 27509, "", "=q3=Handgrips of Assassination", "=ds=#s9#, #a2# (D3)", "", "12.84%"};
- { 3, 27873, "", "=q3=Moonglade Pants", "=ds=#s11#, #a2# (D3)", "", "11.28%"};
- { 4, 28192, "", "=q3=Helm of Desolation", "=ds=#s1#, #a3# (D3)", "", "12.77%"};
- { 5, 27977, "", "=q3=Legplates of the Bold", "=ds=#s11#, #a4# (D3)", "", "9.92%"};
- { 6, 27839, "", "=q3=Legplates of the Righteous", "=ds=#s11#, #a4# (D3)", "", "12.10%"};
- { 8, 28206, "", "=q3=Cowl of the Guiltless", "=ds=#s1#, #a2#", "", "12.25%"};
- { 9, 28194, "", "=q3=Primal Surge Bracers", "=ds=#s8#, #a3#", "", "13.51%"};
- { 10, 28207, "", "=q3=Pauldrons of the Crimson Flight", "=ds=#s3#, #a4#", "", "11.11%"};
- { 11, 28190, "", "=q3=Scarab of the Infinite Cycle", "=ds=#s14#", "", "11.32%"};
- { 12, 28189, "", "=q3=Latro's Shifting Sword", "=ds=#h1#, #w10#", "", "9.70%"};
- { 13, 28188, "", "=q3=Bloodfire Greatstaff", "=ds=#h2#, #w9#", "", "10.48%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30558, "", "=q4=Glimmering Fire Opal", "=ds=#e7#"};
- { 19, 30556, "", "=q4=Glinting Fire Opal", "=ds=#e7#"};
- { 20, 30555, "", "=q4=Glowing Tanzanite", "=ds=#e7#"};
- { 22, 30531, "", "=q4=Breeches of the Occultist", "=ds=#s11#, #a1#", "", "1.49%"};
- { 23, 29247, "", "=q4=Girdle of the Deathdealer", "=ds=#s10#, #a2#"};
- { 24, 29253, "", "=q4=Girdle of Valorous Deeds", "=ds=#s10#, #a4#"};
- { 25, 29356, "", "=q4=Quantum Blade", "=ds=#h2#, #w10#"};
- { 27, 33858, "", "=q1=Aeonus's Hourglass", "=ds=#m3#", "", "100%"};
- };
+ {
+ Name = BabbleBoss["Nexus-Prince Shaffar"] .. " (" .. AL["Heroic"] .. ")";
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 29240, "", "=q4=Bands of Negation", "=ds=#s8#, #a1#", "", "3.03%" };
+ { 3, 30535, "", "=q4=Forestwalker Kilt", "=ds=#s11#, #a2#", "", "27.27%" };
+ { 4, 29352, "", "=q4=Cobalt Band of Tyrigosa", "=ds=#s13#", "", "0.21%" };
+ { 5, 32082, "", "=q4=The Fel Barrier", "=ds=#w8#" };
+ { 7, 27831, "", "=q3=Mantle of the Unforgiven", "=ds=#s3#, #a1#", "", "9.20%" };
+ { 8, 27843, "", "=q3=Glyph-Lined Sash", "=ds=#s10#, #a1#", "", "10.80%" };
+ { 9, 27827, "", "=q3=Lucid Dream Bracers", "=ds=#s8#, #a2#" };
+ { 10, 27835, "", "=q3=Stillwater Girdle", "=ds=#s10#, #a3#", "", "6.06%" };
+ { 11, 27844, "", "=q3=Pauldrons of Swift Retribution", "=ds=#s3#, #a4#", "", "8.10%" };
+ { 12, 27798, "", "=q3=Gauntlets of Vindication", "=ds=#s9#, #a4#", "", "11.80%" };
+ { 14, 33835, "", "=q1=Shaffar's Wondrous Amulet", "=ds=#m3#", "", "100%" };
+ { 15, 28490, "", "=q1=Shaffar's Wrappings", "=ds=#m3#", "", "100%" };
+ { 16, 30584, "", "=q4=Enscribed Fire Opal", "=ds=#e7#", "", "0.08%" };
+ { 17, 30585, "", "=q4=Glistening Fire Opal", "=ds=#e7#", "", "6.06%" };
+ { 18, 30583, "", "=q4=Timeless Chrysoprase", "=ds=#e7#", "", "9.09%" };
+ { 20, 27837, "", "=q3=Wastewalker Leggings", "=ds=#s11#, #a2# (D3)", "", "3.03%" };
+ { 22, 27828, "", "=q3=Warp-Scarab Brooch", "=ds=#s14#", "", "30.30%" };
+ { 23, 28400, "", "=q3=Warp-Storm Warblade", "=ds=#h1#, #w10#" };
+ { 24, 27829, "", "=q3=Axe of the Nexus-Kings", "=ds=#h2#, #w1#", "", "9.09%" };
+ { 25, 27840, "", "=q3=Scepter of Sha'tar", "=ds=#h2#, #w6#" };
+ { 26, 27842, "", "=q3=Grand Scepter of the Nexus-Kings", "=ds=#h2#, #w9#", "", "9.09%" };
+ { 28, 22921, "", "=q2=Recipe: Major Frost Protection Potion", "=ds=#p1# (360)", "", "2.85%" };
};
-
-
-
-
- -------------------------------------
- --- Caverns of Time: Hyjal Summit ---
- -------------------------------------
-
- AtlasLoot_Data["CoTHyjal"] = {
- Name = BabbleZone["Caverns of Time"]..": "..BabbleZone["Hyjal Summit"];
- DisplayName = BabbleZone["Hyjal Summit"];
- Type = "BCRaid";
- Map = "CoTHyjal";
- {
- Name = BabbleBoss["Rage Winterchill"];
- { 1, 30871, "", "=q4=Bracers of Martyrdom", "=ds=#s8#, #a1#", "", "17%"};
- { 2, 30870, "", "=q4=Cuffs of Devastation", "=ds=#s8#, #a1#", "", "16%"};
- { 3, 30863, "", "=q4=Deadly Cuffs", "=ds=#s8#, #a2#", "", "15%"};
- { 4, 30868, "", "=q4=Rejuvenating Bracers", "=ds=#s8#, #a2#", "", "16%"};
- { 5, 30864, "", "=q4=Bracers of the Pathfinder", "=ds=#s8#, #a3#", "", "15%"};
- { 6, 30869, "", "=q4=Howling Wind Bracers", "=ds=#s8#, #a3#", "", "12%"};
- { 7, 30873, "", "=q4=Stillwater Boots", "=ds=#s12#, #a3#", "", "14%"};
- { 8, 30866, "", "=q4=Blood-stained Pauldrons", "=ds=#s3#, #a4#", "", "15%"};
- { 9, 30862, "", "=q4=Blessed Adamantite Bracers", "=ds=#s8#, #a4#", "", "15%"};
- { 10, 30861, "", "=q4=Furious Shackles", "=ds=#s8#, #a4#", "", "15%"};
- { 16, 30865, "", "=q4=Tracker's Blade", "=ds=#h1#, #w4#", "", "15%"};
- { 17, 30872, "", "=q4=Chronicle of Dark Secrets", "=ds=#s15#", "", "16%"};
- { 19, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 21, 32459, "", "=q1=Time-Phased Phylactery", "=ds=#m3#", "", "8%"};
- };
- {
- Name = BabbleBoss["Anetheron"];
- { 1, 30884, "", "=q4=Hatefury Mantle", "=ds=#s3#, #a1#", "", "16%"};
- { 2, 30888, "", "=q4=Anetheron's Noose", "=ds=#s10#, #a1#", "", "16%"};
- { 3, 30885, "", "=q4=Archbishop's Slippers", "=ds=#s12#, #a1#", "", "17%"};
- { 4, 30879, "", "=q4=Don Alejandro's Money Belt", "=ds=#s10#, #a2#", "", "16%"};
- { 5, 30886, "", "=q4=Enchanted Leather Sandals", "=ds=#s12#, #a2#", "", "15%"};
- { 6, 30887, "", "=q4=Golden Links of Restoration", "=ds=#s5#, #a3#", "", "16%"};
- { 7, 30880, "", "=q4=Quickstrider Moccasins", "=ds=#s12#, #a3#", "", "16%"};
- { 8, 30878, "", "=q4=Glimmering Steel Mantle", "=ds=#s3#, #a4#", "", "16%"};
- { 16, 30874, "", "=q4=The Unbreakable Will", "=ds=#h1#, #w10#", "", "16%"};
- { 17, 30881, "", "=q4=Blade of Infamy", "=ds=#h1#, #w10#", "", "15%"};
- { 18, 30883, "", "=q4=Pillar of Ferocity", "=ds=#h2#, #w9#", "", "16%"};
- { 19, 30882, "", "=q4=Bastion of Light", "=ds=#w8#", "", "15%"};
- { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Kaz'rogal"];
- { 1, 30895, "", "=q4=Angelista's Sash", "=ds=#s10#, #a1#", "", "16%"};
- { 2, 30916, "", "=q4=Leggings of Channeled Elements", "=ds=#s11#, #a1#", "", "17%"};
- { 3, 30894, "", "=q4=Blue Suede Shoes", "=ds=#s12#, #a1#", "", "16%"};
- { 4, 30917, "", "=q4=Razorfury Mantle", "=ds=#s3#, #a2#", "", "17%"};
- { 5, 30914, "", "=q4=Belt of the Crescent Moon", "=ds=#s10#, #a2#", "", "9%"};
- { 6, 30891, "", "=q4=Black Featherlight Boots", "=ds=#s12#, #a2#", "", "14%"};
- { 7, 30892, "", "=q4=Beast-tamer's Shoulders", "=ds=#s3#, #a3#", "", "15%"};
- { 8, 30919, "", "=q4=Valestalker Girdle", "=ds=#s10#, #a3#", "", "15%"};
- { 9, 30893, "", "=q4=Sun-touched Chain Leggings", "=ds=#s11#, #a3#", "", "15%"};
- { 10, 30915, "", "=q4=Belt of Seething Fury", "=ds=#s10#, #a4#", "", "17%"};
- { 16, 30918, "", "=q4=Hammer of Atonement", "=ds=#h3#, #w6#", "", "17%"};
- { 17, 30889, "", "=q4=Kaz'rogal's Hardened Heart", "=ds=#w8#", "", "16%"};
- { 19, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Azgalor"];
- { 1, 30899, "", "=q4=Don Rodrigo's Poncho", "=ds=#s5#, #a2#", "", "15%"};
- { 2, 30898, "", "=q4=Shady Dealer's Pantaloons", "=ds=#s11#, #a2#", "", "16%"};
- { 3, 30900, "", "=q4=Bow-stitched Leggings", "=ds=#s11#, #a3#", "", "15%"};
- { 4, 30896, "", "=q4=Glory of the Defender", "=ds=#s5#, #a4#", "", "15%"};
- { 5, 30897, "", "=q4=Girdle of Hope", "=ds=#s10#, #a4#", "", "15%"};
- { 6, 30901, "", "=q4=Boundless Agony", "=ds=#h1#, #w4#", "", "16%"};
- { 16, 31092, "", "=q4=Gloves of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "74%"};
- { 17, 31094, "", "=q4=Gloves of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "73%"};
- { 18, 31093, "", "=q4=Gloves of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "73%"};
- { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Archimonde"];
- { 1, 30913, "", "=q4=Robes of Rhonin", "=ds=#s5#, #a1#", "", "15%"};
- { 2, 30912, "", "=q4=Leggings of Eternity", "=ds=#s11#, #a1#", "", "15%"};
- { 3, 30905, "", "=q4=Midnight Chestguard", "=ds=#s5#, #a2#", "", "14%"};
- { 4, 30907, "", "=q4=Mail of Fevered Pursuit", "=ds=#s5#, #a3#", "", "15%"};
- { 5, 30904, "", "=q4=Savior's Grasp", "=ds=#s5#, #a4#", "", "14%"};
- { 6, 30903, "", "=q4=Legguards of Endless Rage", "=ds=#s11#, #a4#", "", "15%"};
- { 7, 30911, "", "=q4=Scepter of Purification", "=ds=#s15#", "", "15%"};
- { 9, 30910, "", "=q4=Tempest of Chaos", "=ds=#h3#, #w10#", "", "14%"};
- { 10, 30902, "", "=q4=Cataclysm's Edge", "=ds=#h2#, #w10#", "", "15%"};
- { 11, 30908, "", "=q4=Apostle of Argus", "=ds=#h2#, #w9#", "", "15%"};
- { 12, 30909, "", "=q4=Antonidas's Aegis of Rapt Concentration", "=ds=#w8#", "", "15%"};
- { 13, 30906, "", "=q4=Bristleblitz Striker", "=ds=#w2#", "", "16%"};
- { 16, 31097, "", "=q4=Helm of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "70%"};
- { 17, 31095, "", "=q4=Helm of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "72%"};
- { 18, 31096, "", "=q4=Helm of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "73%"};
- { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 32590, "", "=q4=Nethervoid Cloak", "=ds=#s4#", "", "1%"};
- { 2, 34010, "", "=q4=Pepe's Shroud of Pacification", "=ds=#s4#", "", "1%"};
- { 3, 32609, "", "=q4=Boots of the Divine Light", "=ds=#s12#, #a1#", "", "1%"};
- { 4, 32592, "", "=q4=Chestguard of Relentless Storms", "=ds=#s5#, #a3#", "", "1%"};
- { 5, 32591, "", "=q4=Choker of Serrated Blades", "=ds=#s2#", "", "1%"};
- { 6, 32589, "", "=q4=Hellfire-Encased Pendant", "=ds=#s2#", "", "1%"};
- { 7, 34009, "", "=q4=Hammer of Judgement", "=ds=#h3#, #w6#", "", "1%"};
- { 8, 32946, "", "=q4=Claw of Molten Fury", "=ds=#h3#, #w13#", "", "0.46%"};
- { 9, 32945, "", "=q4=Fist of Molten Fury", "=ds=#h4#, #w13#", "", "0.42%"};
- { 11, 32428, "", "=q3=Heart of Darkness", "=ds=#e8#", "", "16%"};
- { 12, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"};
- { 16, 32285, "", "=q4=Design: Flashing Crimson Spinel", "=ds=#p12# (375)", "", "4%"};
- { 17, 32296, "", "=q4=Design: Great Lionseye", "=ds=#p12# (375)", "", "3%"};
- { 18, 32303, "", "=q4=Design: Inscribed Pyrestone", "=ds=#p12# (375)", "", "3%"};
- { 19, 32295, "", "=q4=Design: Mystic Lionseye", "=ds=#p12# (375)", "", "4%"};
- { 20, 32298, "", "=q4=Design: Shifting Shadowsong Amethyst", "=ds=#p12# (375)", "", "4%"};
- { 21, 32297, "", "=q4=Design: Sovereign Shadowsong Amethyst", "=ds=#p12# (375)", "", "4%"};
- { 22, 32289, "", "=q4=Design: Stormy Empyrean Sapphire", "=ds=#p12# (375)", "", "4%"};
- { 23, 32307, "", "=q4=Design: Veiled Pyrestone", "=ds=#p12# (375)", "", "3%"};
- };
+ {
+ Name = AL["Yor"] .. " (" .. AL["Heroic"] .. ")";
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 31919, "", "=q4=Nexus-Prince's Ring of Balance", "=ds=#s13#" };
+ { 3, 31920, "", "=q4=Shaffar's Band of Brutality", "=ds=#s13#" };
+ { 4, 31921, "", "=q4=Yor's Collapsing Band", "=ds=#s13#" };
+ { 5, 31922, "", "=q4=Ring of Conflict Survival", "=ds=#s13#" };
+ { 6, 31923, "", "=q4=Band of the Crystalline Void", "=ds=#s13#" };
+ { 7, 31924, "", "=q4=Yor's Revenge", "=ds=#s13#" };
+ { 9, 31554, "", "=q3=Windchanneller's Tunic", "=ds=#s5#, #a1# =q2=#m16#" };
+ { 10, 31562, "", "=q3=Skystalker's Tunic", "=ds=#s5#, #a2# =q2=#m16#" };
+ { 11, 31570, "", "=q3=Mistshroud Tunic", "=ds=#s5#, #a3# =q2=#m16#" };
+ { 12, 31578, "", "=q3=Slatesteel Breastplate", "=ds=#s5# #a4#, =q2=#m16#" };
+ { 16, 30584, "", "=q4=Enscribed Fire Opal", "=ds=#e7#", "", "0.08%" };
+ { 17, 30585, "", "=q4=Glistening Fire Opal", "=ds=#e7#", "", "6.06%" };
+ { 18, 30583, "", "=q4=Timeless Chrysoprase", "=ds=#e7#", "", "9.09%" };
};
+};
- ------------------------------------------
- --- Coilfang Reservoir: The Slave Pens ---
- ------------------------------------------
+---------------------------------
+--- Auchindoun: Sethekk Halls ---
+---------------------------------
- AtlasLoot_Data["CFRSlavePens"] = {
- Name = BabbleZone["Coilfang Reservoir"]..": "..BabbleZone["The Slave Pens"];
- DisplayName = BabbleZone["The Slave Pens"];
- Type = "BCDungeon";
- Map = "CFRTheSlavePens";
- {
- Name = BabbleBoss["Mennu the Betrayer"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 24359, "", "=q3=Princely Reign Leggings", "=ds=#s11#, #a1#", "", "10.20%"};
- { 3, 24357, "", "=q3=Vest of Living Lightning", "=ds=#s5#, #a3#", "", "11.94%"};
- { 4, 24360, "", "=q3=Tracker's Belt", "=ds=#s10#, #a3#", "", "11.07%"};
- { 5, 24356, "", "=q3=Wastewalker Shiv", "=ds=#h1#, #w4#", "", "12.47%"};
- { 6, 24361, "", "=q3=Spellfire Longsword", "=ds=#h3#, #w10#", "", "11.07%"};
- { 8, 29674, "", "=q2=Pattern: Nature Armor Kit", "=ds=#p7# (340)", "", "0.80%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30604, "", "=q4=Resplendent Fire Opal", "=ds=#e7#", "", "22.49%"};
- { 19, 30605, "", "=q4=Vivid Chrysoprase", "=ds=#e7#", "", "9.39%"};
- { 20, 30603, "", "=q4=Royal Tanzanite", "=ds=#e7#", "", "10.48%"};
- { 22, 27542, "", "=q3=Cord of Belief", "=ds=#s10#, #a1#", "", "16.50%"};
- { 23, 27545, "", "=q3=Mennu's Scaled Leggings", "=ds=#s11#, #a2#", "", "8.50%"};
- { 24, 27541, "", "=q3=Archery Belt of the Broken", "=ds=#s10#, #a3#", "", "12.75%"};
- { 25, 27546, "", "=q3=Traitor's Noose", "=ds=#s2#", "", "13.75%"};
- { 26, 27544, "", "=q3=Totem of Spontaneous Regrowth", "=ds=#s16#, #w15#", "", "12.25%"};
- { 27, 27543, "", "=q3=Starlight Dagger", "=ds=#h3#, #w4#", "", "20.00%"};
- { 29, 29674, "", "=q2=Pattern: Nature Armor Kit", "=ds=#p7# (340)", "", "0.80%"};
-
- };
- {
- Name = BabbleBoss["Rokmar the Crackler"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 24379, "", "=q3=Bogstrok Scale Cloak", "=ds=#s4#", "", "10.05%"};
- { 3, 24376, "", "=q3=Runed Fungalcap", "=ds=#s14#", "", "11.45%"};
- { 4, 24378, "", "=q3=Coilfang Hammer of Renewal", "=ds=#h3#, #w6#", "", "9.66%"};
- { 5, 24380, "", "=q3=Calming Spore Reed", "=ds=#w12#", "", "10.26%"};
- { 6, 24381, "", "=q3=Coilfang Needler", "=ds=#w3#", "", "10.05%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30604, "", "=q4=Resplendent Fire Opal", "=ds=#e7#", "", "22.49%"};
- { 19, 30605, "", "=q4=Vivid Chrysoprase", "=ds=#e7#", "", "9.39%"};
- { 20, 30603, "", "=q4=Royal Tanzanite", "=ds=#e7#", "", "10.48%"};
- { 22, 27550, "", "=q3=Ironscale War Cloak", "=ds=#s4#", "", "11.48%"};
- { 23, 27547, "", "=q3=Coldwhisper Cord", "=ds=#s10#, #a1#", "", "14.85%"};
- { 24, 28124, "", "=q3=Liar's Cord", "=ds=#s10#, #a2#", "", "8.96%"};
- { 25, 27549, "", "=q3=Wavefury Boots", "=ds=#s12#, #a3#", "", "9.80%"};
- { 26, 27548, "", "=q3=Girdle of Many Blessings", "=ds=#s10#, #a4#", "", "14.85%"};
- { 27, 27551, "", "=q3=Skeletal Necklace of Battlerage", "=ds=#s2#", "", "16.25%"};
- };
- {
- Name = BabbleBoss["Quagmirran"];
- { 1, 27796, "", "=q3=Mana-Etched Spaulders", "=ds=#s3#, #a1# (D3)", "", "5.24%"};
- { 2, 27713, "", "=q3=Pauldrons of Desolation", "=ds=#s3#, #a3# (D3)", "", "10.70%"};
- { 4, 27742, "", "=q3=Mage-Fury Girdle", "=ds=#s10#, #a1#", "", "12.00%"};
- { 5, 27712, "", "=q3=Shackles of Quagmirran", "=ds=#s8#, #a2#"};
- { 6, 27800, "", "=q3=Earthsoul Britches", "=ds=#s11#, #a2#", "", "13.76%"};
- { 7, 28337, "", "=q3=Breastplate of Righteous Fury", "=ds=#s5#, #a4#", "", "8.73%"};
- { 8, 27672, "", "=q3=Girdle of the Immovable", "=ds=#s10#, #a4#", "", "7.64%"};
- { 9, 27740, "", "=q3=Band of Ursol", "=ds=#s13#", "", "12.23%"};
- { 10, 27683, "", "=q3=Quagmirran's Eye", "=ds=#s14#", "", "7.86%"};
- { 11, 27714, "", "=q3=Swamplight Lantern", "=ds=#s15#", "", "10.92%"};
- { 12, 27673, "", "=q3=Phosphorescent Blade", "=ds=#h1#, #w10#"};
- { 13, 27741, "", "=q3=Bleeding Hollow Warhammer", "=ds=#h3#, #w6#", "", "9.83%"};
- { 15, 33821, "", "=q1=The Heart of Quagmirran", "=ds=#m3#", "", "100%"};
- { 16, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 17, 30604, "", "=q4=Resplendent Fire Opal", "=ds=#e7#", "", "22.49%"};
- { 18, 30605, "", "=q4=Vivid Chrysoprase", "=ds=#e7#", "", "9.39%"};
- { 19, 30603, "", "=q4=Royal Tanzanite", "=ds=#e7#", "", "10.48%"};
- { 20, 29242, "", "=q4=Boots of Blasphemy", "=ds=#s12#, #a1#", "", "10.04%"};
- { 21, 30538, "", "=q4=Midnight Legguards", "=ds=#s11#, #a2#", "", "8.95%"};
- { 22, 32078, "", "=q4=Pauldrons of Wild Magic", "=ds=#s3#, #a3#"};
- { 23, 29349, "", "=q4=Adamantine Chain of the Unbroken", "=ds=#s2#", "", "1.53%"};
- { 25, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 26, 24362, "", "=q3=Spore-Soaked Vaneer", "=ds=#s4#", "", "10.63%"};
- { 27, 24365, "", "=q3=Deft Handguards", "=ds=#s9#, #a2#", "", "10.89%"};
- { 28, 24366, "", "=q3=Scorpid-Sting Mantle", "=ds=#s3#, #a3#", "", "11.72%"};
- { 29, 24363, "", "=q3=Unscarred Breastplate", "=ds=#s5#, #a4#", "", "9.54%"};
- { 30, 24364, "", "=q3=Azureplate Greaves", "=ds=#s11#, #a4#", "", "9.98%"};
- };
+AtlasLoot_Data["AuchSethekk"] = {
+ Name = BabbleZone["Auchindoun"] .. ": " .. BabbleZone["Sethekk Halls"];
+ DisplayName = BabbleZone["Sethekk Halls"];
+ Type = "BCDungeon";
+ Map = "AuchSethekkHalls";
+ {
+ Name = BabbleBoss["Darkweaver Syth"];
+ { 1, 27919, "", "=q3=Light-Woven Slippers", "=ds=#s12#, #a1#", "", "13.90%" };
+ { 2, 27914, "", "=q3=Moonstrider Boots", "=ds=#s12#, #a2#", "", "12.26%" };
+ { 3, 27915, "", "=q3=Sky-Hunter Swift Boots", "=ds=#s12#, #a3#", "", "11.74%" };
+ { 4, 27918, "", "=q3=Bands of Syth", "=ds=#s8#, #a4#", "", "11.81%" };
+ { 5, 27917, "", "=q3=Libram of the Eternal Rest", "=ds=#s16#, #w16#", "", "14.12%" };
+ { 6, 27916, "", "=q3=Sethekk Feather-Darts", "=ds=#w11#", "", "11.34%" };
+ { 8, 24160, "", "=q3=Design: Khorium Inferno Band", "=ds=#p12# (355)", "", "0.29%" };
+ { 10, 27633, "", "=q1=Terokk's Mask", "=ds=#m3#", "", "100%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30553, "", "=q4=Pristine Fire Opal", "=ds=#e7#", "", "15.73%" };
+ { 19, 30554, "", "=q4=Stalwart Fire Opal", "=ds=#e7#", "", "10.11%" };
+ { 20, 30552, "", "=q4=Blessed Tanzanite", "=ds=#e7#", "", "0.18%" };
+ { 22, 25461, "", "=q1=Book of Forgotten Names", "=ds=#m3#", "", "100%" };
};
-
- ------------------------------------------
- --- Coilfang Reservoir: The Steamvault ---
- ------------------------------------------
-
- AtlasLoot_Data["CFRSteamvault"] = {
- Name = BabbleZone["Coilfang Reservoir"]..": "..BabbleZone["The Steamvault"];
- DisplayName = BabbleZone["The Steamvault"];
- Type = "BCDungeon";
- Map = "CFRTheSteamvault";
- {
- Name = BabbleBoss["Hydromancer Thespia"];
- { 1, 27508, "", "=q3=Incanter's Gloves", "=ds=#s9#, #a1# (D3)", "", "17.09%"};
- { 3, 27789, "", "=q3=Cloak of Whispering Shells", "=ds=#s4#", "", "14.32%"};
- { 4, 27787, "", "=q3=Chestguard of No Remorse", "=ds=#s5#, #a2#", "", "17.65%"};
- { 5, 27783, "", "=q3=Moonrage Girdle", "=ds=#s10#, #a2#", "", "18.71%"};
- { 6, 27784, "", "=q3=Scintillating Coral Band", "=ds=#s13#", "", "16.72%"};
- { 8, 29673, "", "=q2=Pattern: Frost Armor Kit", "=ds=#p7# (340)", "", "0.60%"};
- { 10, 30828, "", "=q1=Vial of Underworld Loam", "=ds=#m3#", "", "100%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30550, "", "=q4=Sundered Chrysoprase", "=ds=#e7#", "", "8.59%"};
- { 19, 30551, "", "=q4=Infused Fire Opal", "=ds=#e7#", "", "6.64%"};
- { 20, 30549, "", "=q4=Shifting Tanzanite", "=ds=#e7#", "", "1.56%"};
- };
- {
- Name = BabbleBoss["Mekgineer Steamrigger"];
- { 1, 27793, "", "=q3=Earth Mantle Handwraps", "=ds=#s9#, #a3#", "", "16.92%"};
- { 2, 27790, "", "=q3=Mask of Penance", "=ds=#s1#, #a4#", "", "16.65%"};
- { 3, 27792, "", "=q3=Steam-Hinge Chain of Valor", "=ds=#s2#", "", "14.49%"};
- { 4, 27791, "", "=q3=Serpentcrest Life-Staff", "=ds=#h2#, #w9#", "", "17.09%"};
- { 5, 27794, "", "=q3=Recoilless Rocket Ripper X-54", "=ds=#w5#", "", "15.88%"};
- { 7, 23887, "", "=q3=Schematic: Rocket Boots Xtreme", "=ds=#p5# (355)", "", "0.52%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30550, "", "=q4=Sundered Chrysoprase", "=ds=#e7#", "", "8.59%"};
- { 19, 30551, "", "=q4=Infused Fire Opal", "=ds=#e7#", "", "6.64%"};
- { 20, 30549, "", "=q4=Shifting Tanzanite", "=ds=#e7#", "", "1.56%"};
- };
- {
- Name = BabbleBoss["Warlord Kalithresh"];
- { 1, 24313, "", "=q4=Pattern: Battlecast Hood", "=ds=#p8# (375)", "", "0.20%"};
- { 3, 27738, "", "=q3=Incanter's Pauldrons", "=ds=#s3#, #a1# (D3)", "", "12.25%"};
- { 4, 27737, "", "=q3=Moonglade Shoulders", "=ds=#s3#, #a2# (D3)", "", "12.89%"};
- { 5, 27801, "", "=q3=Beast Lord Mantle", "=ds=#s3#, #a3# (D3)", "", "10.63%"};
- { 6, 27510, "", "=q3=Tidefury Gauntlets", "=ds=#s9#, #a3# (D3)", "", "12.45%"};
- { 7, 27874, "", "=q3=Beast Lord Leggings", "=ds=#s11#, #a3# (D3)", "", "9.56%"};
- { 8, 28203, "", "=q3=Breastplate of the Righteous", "=ds=#s5#, #a4# (D3)", "", "10.98%"};
- { 9, 27475, "", "=q3=Gauntlets of the Bold", "=ds=#s9#, #a4# (D3)", "", "10.05%"};
- { 11, 27804, "", "=q3=Devilshark Cape", "=ds=#s4#", "", "12.18%"};
- { 12, 27799, "", "=q3=Vermillion Robes of the Dominant", "=ds=#s5#, #a1#", "", "12.47%"};
- { 13, 27795, "", "=q3=Sash of Serpentra", "=ds=#s10#, #a1#", "", "11.03%"};
- { 14, 27806, "", "=q3=Fathomheart Gauntlets", "=ds=#s9#, #a3#", "", "14.84%"};
- { 15, 27805, "", "=q3=Ring of the Silver Hand", "=ds=#s13#", "", "13.95%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30550, "", "=q4=Sundered Chrysoprase", "=ds=#e7#", "", "8.59%"};
- { 19, 30551, "", "=q4=Infused Fire Opal", "=ds=#e7#", "", "6.64%"};
- { 20, 30549, "", "=q4=Shifting Tanzanite", "=ds=#e7#", "", "1.56%"};
- { 21, 30543, "", "=q4=Pontifex Kilt", "=ds=#s11#, #a1#", "", "7.81%"};
- { 22, 29243, "", "=q4=Wave-Fury Vambraces", "=ds=#s8#, #a3#", "", "17.97%"};
- { 23, 29463, "", "=q4=Amber Bands of the Aggressor", "=ds=#s8#, #a4#", "", "2.34%"};
- { 24, 29351, "", "=q4=Wrathtide Longbow", "=ds=#w2#", "", "3.52%"};
- { 26, 31721, "", "=q1=Kalithresh's Trident", "=ds=#m3#", "", "100%"};
- { 27, 33827, "", "=q1=The Warlord's Treatise", "=ds=#m3#", "", "100%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 24159, "", "=q3=Design: Khorium Band of Frost", "=ds=#p12# (355) =q1=#n86#", "", "0.14%"};
- { 3, 22533, "", "=q2=Formula: Enchant Bracer - Fortitude", "=ds=#p4# (350) =q1=#n87#", "", "0.40%"};
- { 5, 24367, "", "=q1=Orders from Lady Vashj", "=ds=#m2#"};
- { 6, 24368, "", "=q1=Coilfang Armaments", "=ds=#m3#", "", "12.68%"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Second Fragment Guardian"], "=q5="..BabbleZone["The Steamvault"]};
- { 17, 24487, "", "=q1=Second Key Fragment", "=ds=#m3#", "", "100%"};
- };
+ {
+ Name = BabbleBoss["Anzu"] .. " (" .. AL["Heroic"] .. ")";
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 32768, "", "=q4=Reins of the Raven Lord", "=ds=#e12#" };
+ { 3, 30553, "", "=q4=Pristine Fire Opal", "=ds=#e7#", "", "15.73%" };
+ { 4, 30554, "", "=q4=Stalwart Fire Opal", "=ds=#e7#", "", "10.11%" };
+ { 5, 30552, "", "=q4=Blessed Tanzanite", "=ds=#e7#", "", "0.18%" };
+ { 7, 32769, "", "=q3=Belt of the Raven Lord", "=ds=#s10#, #a2#" };
+ { 8, 32778, "", "=q3=Boots of Righteous Fortitude", "=ds=#s12#, #a4#" };
+ { 9, 32779, "", "=q3=Band of Frigid Elements", "=ds=#s13#" };
+ { 10, 32781, "", "=q3=Talon of Anzu", "=ds=#h1#, #w4#" };
+ { 11, 32780, "", "=q3=The Boomstick", "=ds=#w5#" };
};
-
- ----------------------------------------
- --- Coilfang Reservoir: The Underbog ---
- ----------------------------------------
-
- AtlasLoot_Data["CFRUnderbog"] = {
- Name = BabbleZone["Coilfang Reservoir"]..": "..BabbleZone["The Underbog"];
- DisplayName = BabbleZone["The Underbog"];
- Type = "BCDungeon";
- Map = "CFRTheUnderbog";
- {
- Name = BabbleBoss["Hungarfen"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 24450, "", "=q3=Manaspark Gloves", "=ds=#s9#, #a1#", "", "11.72%"};
- { 3, 24452, "", "=q3=Starlight Gauntlets", "=ds=#s9#, #a2#", "", "12.35%"};
- { 4, 24451, "", "=q3=Lykul Bloodbands", "=ds=#s8#, #a3#", "", "11.75%"};
- { 5, 24413, "", "=q3=Totem of the Thunderhead", "=ds=#s16#, #w15#", "", "12.86%"};
- { 6, 27631, "", "=q3=Needle Shrike", "=ds=#w11#", "", "11.60%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30606, "", "=q4=Lambent Chrysoprase", "=ds=#e7#", "", "17.89%"};
- { 19, 30607, "", "=q4=Splendid Fire Opal", "=ds=#e7#", "", "6.50%"};
- { 20, 30608, "", "=q4=Radiant Chrysoprase", "=ds=#e7#", "", "9.76%"};
- { 22, 27746, "", "=q3=Arcanium Signet Bands", "=ds=#s8#, #a1#", "", "8.37%"};
- { 23, 27745, "", "=q3=Hungarhide Gauntlets", "=ds=#s9#, #a3#", "", "13.79%"};
- { 24, 27743, "", "=q3=Girdle of Living Flame", "=ds=#s10#, #a3#", "", "13.79%"};
- { 25, 27748, "", "=q3=Cassock of the Loyal", "=ds=#s11#, #a4#", "", "7.39%"};
- { 26, 27744, "", "=q3=Idol of Ursoc", "=ds=#s16#, #w14#", "", "16.26%"};
- { 27, 27747, "", "=q3=Boggspine Knuckles", "=ds=#h4#, #w13#", "", "12.81%"};
- };
- {
- Name = BabbleBoss["Ghaz'an"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 24459, "", "=q3=Cloak of Healing Rays", "=ds=#s4#", "", "14.18%"};
- { 3, 24458, "", "=q3=Studded Girdle of Virtue", "=ds=#s10#, #a4#", "", "14.06%"};
- { 4, 24460, "", "=q3=Talisman of Tenacity", "=ds=#s2#", "", "12.99%"};
- { 5, 24462, "", "=q3=Luminous Pearls of Insight", "=ds=#s2#", "", "12.75%"};
- { 6, 24461, "", "=q3=Hatebringer", "=ds=#h2#, #w6#", "", "14.12%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30606, "", "=q4=Lambent Chrysoprase", "=ds=#e7#", "", "17.89%"};
- { 19, 30607, "", "=q4=Splendid Fire Opal", "=ds=#e7#", "", "6.50%"};
- { 20, 30608, "", "=q4=Radiant Chrysoprase", "=ds=#e7#", "", "9.76%"};
- { 22, 27760, "", "=q3=Dunewind Sash", "=ds=#s10#, #a2#", "", "14.67%"};
- { 23, 27759, "", "=q3=Headdress of the Tides", "=ds=#s1#, #a3#", "", "13.33%"};
- { 24, 27755, "", "=q3=Girdle of Gallantry", "=ds=#s10#, #a4#", "", "7.33%"};
- { 25, 27758, "", "=q3=Hydra-fang Necklace", "=ds=#s2#", "", "12.00%"};
- { 26, 27761, "", "=q3=Ring of the Shadow Deeps", "=ds=#s13#", "", "18.67%"};
- { 27, 27757, "", "=q3=Greatstaff of the Leviathan", "=ds=#h2#, #w9#", "", "16.00%"};
- };
- {
- Name = BabbleBoss["Swamplord Musel'ek"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 24454, "", "=q3=Cloak of Enduring Swiftness", "=ds=#s4#", "", "17.23%"};
- { 3, 24455, "", "=q3=Tunic of the Nightwatcher", "=ds=#s5#, #a2#", "", "14.47%"};
- { 4, 24457, "", "=q3=Truth Bearer Shoulderguards", "=ds=#s3#, #a4#", "", "14.42%"};
- { 5, 24456, "", "=q3=Greaves of the Iron Guardian", "=ds=#s11#, #a4#", "", "12.41%"};
- { 6, 24453, "", "=q3=Zangartooth Shortblade", "=ds=#h3#, #w4#", "", "15.17%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30606, "", "=q4=Lambent Chrysoprase", "=ds=#e7#", "", "17.89%"};
- { 19, 30607, "", "=q4=Splendid Fire Opal", "=ds=#e7#", "", "6.50%"};
- { 20, 30608, "", "=q4=Radiant Chrysoprase", "=ds=#e7#", "", "9.76%"};
- { 22, 27764, "", "=q3=Hands of the Sun", "=ds=#s9#, #a1#", "", "12.14%"};
- { 23, 27763, "", "=q3=Crown of the Forest Lord", "=ds=#s1#, #a2#", "", "20.00%"};
- { 24, 27765, "", "=q3=Armwraps of Disdain", "=ds=#s8#, #a2#", "", "9.29%"};
- { 25, 27766, "", "=q3=Swampstone Necklace", "=ds=#s2#", "", "17.14%"};
- { 26, 27762, "", "=q3=Weathered Band of the Swamplord", "=ds=#s13#"};
- { 27, 27767, "", "=q3=Bogreaver", "=ds=#h1#, #w1#", "", "9.29%"};
- };
- {
- Name = BabbleBoss["The Black Stalker"];
- { 1, 24481, "", "=q3=Robes of the Augurer", "=ds=#s5#, #a1#", "", "10.55%"};
- { 2, 24466, "", "=q3=Skulldugger's Leggings", "=ds=#s11#, #a2#", "", "13.23%"};
- { 3, 24465, "", "=q3=Shamblehide Chestguard", "=ds=#s5#, #a3#", "", "10.95%"};
- { 4, 24463, "", "=q3=Pauldrons of Brute Force", "=ds=#s3#, #a4#", "", "11.95%"};
- { 5, 24464, "", "=q3=The Stalker's Fangs", "=ds=#h1#, #w4#", "", "14.31%"};
- { 7, 24248, "", "=q1=Brain of the Black Stalker", "=ds=#m3#", "", "100%"};
- };
- { --only heroic
- Name = BabbleBoss["The Black Stalker"].." ("..AL["Heroic"]..")";
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 29265, "", "=q4=Barkchip Boots", "=ds=#s12#, #a2#", "", "8.54%"};
- { 3, 30541, "", "=q4=Stormsong Kilt", "=ds=#s11#, #a3#", "", "6.50%"};
- { 4, 32081, "", "=q4=Eye of the Stalker", "=ds=#s13#"};
- { 5, 29350, "", "=q4=The Black Stalk", "=ds=#w12#", "", "4.88%"};
- { 7, 27781, "", "=q3=Demonfang Ritual Helm", "=ds=#s1#, #a1#", "", "8.94%"};
- { 8, 27768, "", "=q3=Oracle Belt of Timeless Mystery", "=ds=#s10#, #a1#", "", "14.63%"};
- { 9, 27938, "", "=q3=Savage Mask of the Lynx Lord", "=ds=#s1#, #a2#", "", "1.63%"};
- { 10, 27773, "", "=q3=Barbaric Legstraps", "=ds=#s11#, #a3#", "", "9.35%"};
- { 11, 27779, "", "=q3=Bone Chain Necklace", "=ds=#s2#", "", "14.23%"};
- { 12, 27780, "", "=q3=Ring of Fabled Hope", "=ds=#s13#", "", "9.90%"};
- { 13, 27896, "", "=q3=Alembic of Infernal Power", "=ds=#s14#", "", "12.60%"};
- { 14, 27770, "", "=q3=Argussian Compass", "=ds=#s14#", "", "3.66%"};
- { 16, 30606, "", "=q4=Lambent Chrysoprase", "=ds=#e7#", "", "17.89%"};
- { 17, 30607, "", "=q4=Splendid Fire Opal", "=ds=#e7#", "", "6.50%"};
- { 18, 30608, "", "=q4=Radiant Chrysoprase", "=ds=#e7#", "", "9.76%"};
- { 20, 27907, "", "=q3=Mana-Etched Pantaloons", "=ds=#s11#, #a1# (D3)", "", "4.88%"};
- { 21, 27771, "", "=q3=Doomplate Shoulderguards", "=ds=#s3#, #a4# (D3)", "", "6.50%"};
- { 23, 27769, "", "=q3=Endbringer", "=ds=#h2#, #w10#", "", "9.35%"};
- { 24, 27772, "", "=q3=Stormshield of Renewal", "=ds=#w8#", "", "13.01%"};
- { 26, 24248, "", "=q1=Brain of the Black Stalker", "=ds=#m3#", "", "100%"};
- { 27, 33826, "", "=q1=Black Stalker Egg", "=ds=#m3#", "", "100%"};
- };
+ {
+ Name = BabbleBoss["Talon King Ikiss"];
+ { 1, 27948, "", "=q3=Trousers of Oblivion", "=ds=#s11#, #a1# (D3)", "", "8.89%" };
+ { 2, 27838, "", "=q3=Incanter's Trousers", "=ds=#s11#, #a1# (D3)", "", "9.54%" };
+ { 3, 27875, "", "=q3=Hallowed Trousers", "=ds=#s11#, #a1# (D3)", "", "10.28%" };
+ { 4, 27776, "", "=q3=Shoulderpads of Assassination", "#s3#, #a2# (D3)", "", "10.21%" };
+ { 5, 27936, "", "=q3=Greaves of Desolation", "=ds=#s11#, #a3# (D3)", "", "12.00%" };
+ { 7, 27946, "", "=q3=Avian Cloak of Feathers", "=ds=#s4#", "", "10.21%" };
+ { 8, 27981, "", "=q3=Sethekk Oracle Cloak", "=ds=#s4#", "", "10.00%" };
+ { 9, 27985, "", "=q3=Deathforge Girdle", "=ds=#s10#, #a4#", "", "9.24%" };
+ { 10, 27925, "", "=q3=Ravenclaw Band", "=ds=#s13#", "", "12.79%" };
+ { 11, 27980, "", "=q3=Terokk's Nightmace", "=ds=#h1#, #w6#", "", "11.18%" };
+ { 12, 27986, "", "=q3=Crow Wing Reaper", "=ds=#h2#, #w1#", "", "8.50%" };
+ { 14, 27632, "", "=q1=Terokk's Quill", "=ds=#m3#", "", "100%" };
+ { 15, 27991, "", "=q1=Shadow Labyrinth Key", "=ds=#e9#", "", "100%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30553, "", "=q4=Pristine Fire Opal", "=ds=#e7#", "", "15.73%" };
+ { 19, 30554, "", "=q4=Stalwart Fire Opal", "=ds=#e7#", "", "10.11%" };
+ { 20, 30552, "", "=q4=Blessed Tanzanite", "=ds=#e7#", "", "0.18%" };
+ { 22, 29249, "", "=q4=Bands of the Benevolent", "=ds=#s8#, #a1#", "", "4.49%" };
+ { 23, 29259, "", "=q4=Bracers of the Hunt", "=ds=#s8#, #a3#", "", "7.87%" };
+ { 24, 32073, "", "=q4=Spaulders of Dementia", "=ds=#s3#, #a4#" };
+ { 25, 29355, "", "=q4=Terokk's Shadowstaff", "=ds=#h2#, #w9#", "", "0.16%" };
+ { 27, 33834, "", "=q1=The Headfeathers of Ikiss", "=ds=#m3#", "", "100%" };
};
- ------------------------------------------------
- --- Coilfang Reservoir: Serpentshrine Cavern ---
- ------------------------------------------------
+};
- AtlasLoot_Data["CFRSerpentshrine"] = {
- Name = BabbleZone["Coilfang Reservoir"]..": "..BabbleZone["Serpentshrine Cavern"];
- DisplayName = BabbleZone["Serpentshrine Cavern"];
- Type = "BCRaid";
- Map = "CFRSerpentshrineCavern";
- {
- Name = BabbleBoss["Hydross the Unstable"];
- { 1, 30056, "", "=q4=Robe of Hateful Echoes", "=ds=#s5#, #a1#", "", "18%"};
- { 2, 32516, "", "=q4=Wraps of Purification", "=ds=#s8#, #a1#", "", "18%"};
- { 3, 30050, "", "=q4=Boots of the Shifting Nightmare", "=ds=#s12#, #a1#", "", "17%"};
- { 4, 30055, "", "=q4=Shoulderpads of the Stranger", "=ds=#s3#, #a2#", "", "16%"};
- { 5, 30047, "", "=q4=Blackfathom Warbands", "=ds=#s8#, #a3#", "", "19%"};
- { 6, 30054, "", "=q4=Ranger-General's Chestguard", "=ds=#s5#, #a3#", "", "18%"};
- { 7, 30048, "", "=q4=Brighthelm of Justice", "=ds=#s1#, #a4#", "", "21%"};
- { 8, 30053, "", "=q4=Pauldrons of the Wardancer", "=ds=#s3#, #a4#", "", "16%"};
- { 16, 30052, "", "=q4=Ring of Lethality", "=ds=#s13#", "", "20%"};
- { 17, 33055, "", "=q4=Band of Vile Aggression", "=ds=#s13#", "", "14%"};
- { 18, 30664, "", "=q4=Living Root of the Wildheart", "=ds=#s14#, =q1=#m1# =ds=#c1#", "", "18%"};
- { 19, 30629, "", "=q4=Scarab of Displacement", "=ds=#s14#", "", "21%"};
- { 20, 30049, "", "=q4=Fathomstone", "=ds=#s15#", "", "19%"};
- { 21, 30051, "", "=q4=Idol of the Crescent Goddess", "=ds=#s16#, #w14#", "", "11%"};
- { 23, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 24, 816254, "", "=q3=Formula: Enchant Cloak - Crushing Wave", "=ds=#p4# (350)", "", "N:2%/H:5%/A:10%"};
- };
- {
- Name = BabbleBoss["The Lurker Below"];
- { 1, 30064, "", "=q4=Cord of Screaming Terrors", "=ds=#s10#, #a1#", "", "17%"};
- { 2, 30067, "", "=q4=Velvet Boots of the Guardian", "=ds=#s12#, #a1#", "", "17%"};
- { 3, 30062, "", "=q4=Grove-Bands of Remulos", "=ds=#s8#, #a2#", "", "21%"};
- { 4, 30060, "", "=q4=Boots of Effortless Striking", "=ds=#s12#, #a2#", "", "21%"};
- { 5, 30066, "", "=q4=Tempest-Strider Boots", "=ds=#s12#, #a3#", "", "21%"};
- { 6, 30065, "", "=q4=Glowing Breastplate of Truth", "=ds=#s5#, #a4#", "", "20%"};
- { 7, 30057, "", "=q4=Bracers of Eradication", "=ds=#s8#, #a4#", "", "19%"};
- { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 16, 30059, "", "=q4=Choker of Animalistic Fury", "=ds=#s2#", "", "21%"};
- { 17, 30061, "", "=q4=Ancestral Ring of Conquest", "=ds=#s13#", "", "20%"};
- { 18, 33054, "", "=q4=The Seal of Danzalar", "=ds=#s13#", "", "14%"};
- { 19, 30665, "", "=q4=Earring of Soulful Meditation", "=ds=#s14#, =q1=#m1# =ds=#c5#", "", "18%"};
- { 20, 30063, "", "=q4=Libram of Absolute Truth", "=ds=#s16#, #w16#", "", "17%"};
- { 21, 30058, "", "=q4=Mallet of the Tides", "=ds=#h1#, #w6#", "", "20%"};
- };
- {
- Name = BabbleBoss["Leotheras the Blind"];
- { 1, 30092, "", "=q4=Orca-Hide Boots", "=ds=#s12#, #a2#", "", "13%"};
- { 2, 30097, "", "=q4=Coral-Barbed Shoulderpads", "=ds=#s3#, #a3#", "", "15%"};
- { 3, 30091, "", "=q4=True-Aim Stalker Bands", "=ds=#s8#, #a3#", "", "17%"};
- { 4, 30096, "", "=q4=Girdle of the Invulnerable", "=ds=#s10#, #a4#", "", "14%"};
- { 5, 30627, "", "=q4=Tsunami Talisman", "=ds=#s14#", "", "15%"};
- { 6, 30095, "", "=q4=Fang of the Leviathan", "=ds=#h3#, #w10#", "", "14%"};
- { 16, 30240, "", "=q4=Gloves of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5HAND"};
- { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Fathom-Lord Karathress"];
- { 1, 30100, "", "=q4=Soul-Strider Boots", "=ds=#s12#, #a1#", "", "15%"};
- { 2, 30101, "", "=q4=Bloodsea Brigand's Vest", "=ds=#s5#, #a2#", "", "15%"};
- { 3, 30099, "", "=q4=Frayed Tether of the Drowned", "=ds=#s2#", "", "15%"};
- { 4, 30663, "", "=q4=Fathom-Brooch of the Tidewalker", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "15%"};
- { 5, 30626, "", "=q4=Sextant of Unstable Currents", "=ds=#s14#", "", "14%"};
- { 6, 30090, "", "=q4=World Breaker", "=ds=#h2#, #w6#", "", "15%"};
- { 16, 30246, "", "=q4=Leggings of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5LEGS"};
- { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Morogrim Tidewalker"];
- { 1, 30098, "", "=q4=Razor-Scale Battlecloak", "=ds=#s4#", "", "22%"};
- { 2, 30079, "", "=q4=Illidari Shoulderpads", "=ds=#s3#, #a1#", "", "15%"};
- { 3, 30075, "", "=q4=Gnarled Chestpiece of the Ancients", "=ds=#s5#, #a2#", "", "19%"};
- { 4, 30085, "", "=q4=Mantle of the Tireless Tracker", "=ds=#s3#, #a3#", "", "20%"};
- { 5, 30068, "", "=q4=Girdle of the Tidal Call", "=ds=#s10#, #a3#", "", "17%"};
- { 6, 30084, "", "=q4=Pauldrons of the Argent Sentinel", "=ds=#s3#, #a4#", "", "21%"};
- { 7, 30081, "", "=q4=Warboots of Obliteration", "=ds=#s12#, #a4#", "", "21%"};
- { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 16, 30008, "", "=q4=Pendant of the Lost Ages", "=ds=#s2#", "", "18%"};
- { 17, 30083, "", "=q4=Ring of Sundered Souls", "=ds=#s13#", "", "21%"};
- { 18, 33058, "", "=q4=Band of the Vigilant", "=ds=#s13#", "", "19%"};
- { 19, 30720, "", "=q4=Serpent-Coil Braid", "=ds=#s14#, =q1=#m1# =ds=#c3#", "", "20%"};
- { 20, 30082, "", "=q4=Talon of Azshara", "=ds=#h1#, #w10#", "", "20%"};
- { 21, 30080, "", "=q4=Luminescent Rod of the Naaru", "=ds=#w12#", "", "15%"};
- };
- {
- Name = BabbleBoss["Lady Vashj"];
- { 1, 30107, "", "=q4=Vestments of the Sea-Witch", "=ds=#s5#, #a1#", "", "13%"};
- { 2, 30111, "", "=q4=Runetotem's Mantle", "=ds=#s3#, #a2#", "", "14%"};
- { 3, 30106, "", "=q4=Belt of One-Hundred Deaths", "=ds=#s10#, #a2#", "", "12%"};
- { 4, 30104, "", "=q4=Cobra-Lash Boots", "=ds=#s12#, #a3#", "", "13%"};
- { 5, 30102, "", "=q4=Krakken-Heart Breastplate", "=ds=#s5#, #a4#", "", "15%"};
- { 6, 30112, "", "=q4=Glorious Gauntlets of Crestfall", "=ds=#s9#, #a4#", "", "14%"};
- { 7, 30109, "", "=q4=Ring of Endless Coils", "=ds=#s13#", "", "13%"};
- { 8, 30110, "", "=q4=Coral Band of the Revived", "=ds=#s13#", "", "16%"};
- { 9, 30621, "", "=q4=Prism of Inner Calm", "=ds=#s14#", "", "13%"};
- { 10, 30103, "", "=q4=Fang of Vashj", "=ds=#h1#, #w4#", "", "14%"};
- { 11, 30108, "", "=q4=Lightfathom Scepter", "=ds=#h3#, #w6#", "", "14%"};
- { 12, 30105, "", "=q4=Serpent Spine Longbow", "=ds=#w2#", "", "13%"};
- { 16, 30243, "", "=q4=Helm of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5HEAD"};
- { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 19, 29906, "", "=q1=Vashj's Vial Remnant", "=ds=#m3#", "", "35%"};
- { 21, 450000, "", "=q5=Intact Vial of Lady Vashj", "", "", "5%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 30027, "", "=q4=Boots of Courage Unending", "=ds=#s12#, #a4#", "", "3%"};
- { 2, 30022, "", "=q4=Pendant of the Perilous", "=ds=#s2#", "", "3%"};
- { 3, 30620, "", "=q4=Spyglass of the Hidden Fleet", "=ds=#s14#", "", "4%"};
- { 4, 30023, "", "=q4=Totem of the Maelstrom", "=ds=#s16#, #w15#", "", "3%"};
- { 5, 30021, "", "=q4=Wildfury Greatstaff", "=ds=#h2#, #w9#", "", "3%"};
- { 6, 30025, "", "=q4=Serpentshrine Shuriken", "=ds=#w11#", "", "3%"};
- { 7, 44831, "", "=q4=Mmrgrg glm Nuubs", "=ds=#s15#", "", "3%"};
- { 9, 30324, "", "=q4=Plans: Red Havoc Boots", "=ds=#p2# (375)", "", "1%"};
- { 10, 30322, "", "=q4=Plans: Red Belt of Battle", "=ds=#p2# (375)", "", "2%"};
- { 11, 30323, "", "=q4=Plans: Boots of the Protector", "=ds=#p2# (375)", "", "2%"};
- { 12, 30321, "", "=q4=Plans: Belt of the Guardian", "=ds=#p2# (375)", "", "2%"};
- { 13, 30280, "", "=q4=Pattern: Belt of Blasting", "=ds=#p8# (375)", "", "1%"};
- { 14, 30282, "", "=q4=Pattern: Boots of Blasting", "=ds=#p8# (375)", "", "1%"};
- { 15, 30283, "", "=q4=Pattern: Boots of the Long Road", "=ds=#p8# (375)", "", "2%"};
- { 16, 30281, "", "=q4=Pattern: Belt of the Long Road", "=ds=#p8# (375)", "", "1%"};
- { 17, 30308, "", "=q4=Pattern: Hurricane Boots", "=ds=#p7# (375)", "", "1%"};
- { 18, 30304, "", "=q4=Pattern: Monsoon Belt", "=ds=#p7# (375)", "", "1%"};
- { 19, 30305, "", "=q4=Pattern: Boots of Natural Grace", "=ds=#p7# (375)", "", "2%"};
- { 20, 30307, "", "=q4=Pattern: Boots of the Crimson Hawk", "=ds=#p7# (375)", "", "1%"};
- { 21, 30306, "", "=q4=Pattern: Boots of Utter Darkness", "=ds=#p7# (375)", "", "2%"};
- { 22, 30301, "", "=q4=Pattern: Belt of Natural Power", "=ds=#p7# (375)", "", "1%"};
- { 23, 30303, "", "=q4=Pattern: Belt of the Black Eagle", "=ds=#p7# (375)", "", "1%"};
- { 24, 30302, "", "=q4=Pattern: Belt of Deep Shadow", "=ds=#p7# (375)", "", "1%"};
- { 26, 30183, "", "=q4=Nether Vortex", "=ds=#e8#", "", "75%"};
- { 28, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"};
- };
+------------------------------------
+--- Auchindoun: Shadow Labyrinth ---
+------------------------------------
+
+AtlasLoot_Data["AuchShadowLab"] = {
+ Name = BabbleZone["Auchindoun"] .. ": " .. BabbleZone["Shadow Labyrinth"];
+ DisplayName = BabbleZone["Shadow Labyrinth"];
+ Type = "BCDungeon";
+ Map = "AuchShadowLabyrinth";
+ {
+ Name = BabbleBoss["Ambassador Hellmaw"];
+ { 1, 27889, "", "=q3=Jaedenfire Gloves of Annihilation", "=ds=#s9#, #a1#", "", "13.58%" };
+ { 2, 27888, "", "=q3=Dream-Wing Helm", "=ds=#s1#, #a3#", "", "11.81%" };
+ { 3, 27884, "", "=q3=Ornate Boots of the Sanctified", "=ds=#s12#, #a4#", "", "13.15%" };
+ { 4, 27886, "", "=q3=Idol of the Emerald Queen", "=ds=#s16#, #w14#", "", "12.94%" };
+ { 5, 27887, "", "=q3=Platinum Shield of the Valorous", "=ds=#w8#", "", "10.88%" };
+ { 6, 27885, "", "=q3=Soul-Wand of the Aldor", "=ds=#w12#", "", "13.34%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30563, "", "=q4=Regal Tanzanite", "=ds=#e7#", "", "16.67%" };
+ { 19, 30559, "", "=q4=Etched Fire Opal", "=ds=#e7#", "", "17.85%" };
+ { 20, 30560, "", "=q4=Rune Covered Chrysoprase", "=ds=#e7#", "", "15.47%" };
};
-
- --------------------
- --- Gruul's Lair ---
- --------------------
-
- AtlasLoot_Data["GruulsLair"] = {
- Name = BabbleZone["Gruul's Lair"];
- Type = "BCRaid";
- Map = "GruulsLair";
- {
- Name = BabbleBoss["High King Maulgar"];
- { 1, 28797, "", "=q4=Brute Cloak of the Ogre-Magi", "#s4#", "", "8.39%"};
- { 2, 28799, "", "=q4=Belt of Divine Inspiration", "#s10#, #a1#", "", "9.98%"};
- { 3, 28796, "", "=q4=Malefic Mask of the Shadows", "=ds=#s1#, #a2#", "", "12.93%"};
- { 4, 28801, "", "=q4=Maulgar's Warhelm", "=ds=#s1#, #a3#", "", "21.32%"};
- { 5, 28795, "", "=q4=Bladespire Warbands", "=ds=#s8#, #a4#", "", "12.02%"};
- { 6, 28800, "", "=q4=Hammer of the Naaru", "=ds=#h2#, #w6#", "", "15.87%"};
- { 16, 29764, "", "=q4=Pauldrons of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T4SHOULDER"};
- { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 19, 816252, "", "=q3=Formula: Enchant Weapon - Undaunted Might", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%"};
- };
- {
- Name = BabbleBoss["Gruul the Dragonkiller"];
- { 1, 28804, "", "=q4=Collar of Cho'gall", "=ds=#s1#, #a1#", "", "14.96%"};
- { 2, 28803, "", "=q4=Cowl of Nature's Breath", "=ds=#s1#, #a2#", "", "14.21%"};
- { 3, 28828, "", "=q4=Gronn-Stitched Girdle", "=ds=#s10#, #a2#", "", "11.22%"};
- { 4, 28827, "", "=q4=Gauntlets of the Dragonslayer", "=ds=#s9#, #a3#", "", "7.48%"};
- { 5, 28810, "", "=q4=Windshear Boots", "=ds=#s12#, #a3#", "", "10.22%"};
- { 6, 28824, "", "=q4=Gauntlets of Martial Perfection", "=ds=#s9#, #a4#", "", "12.22%"};
- { 7, 28822, "", "=q4=Teeth of Gruul", "=ds=#s2#", "", "11.47%"};
- { 8, 28823, "", "=q4=Eye of Gruul", "=ds=#s14#", "", "6.73%"};
- { 9, 28830, "", "=q4=Dragonspine Trophy", "=ds=#s14#", "", "11.72%"};
- { 11, 31750, "", "=q1=Earthen Signet", "=ds=#m3#", "", "100%"};
- { 16, 29767, "", "=q4=Leggings of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T4LEGS"};
- { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 20, 28802, "", "=q4=Bloodmaw Magus-Blade", "=ds=#h3#, #w10#", "", "9.23%"};
- { 21, 28794, "", "=q4=Axe of the Gronn Lords", "=ds=#h2#, #w1#", "", "6.73%"};
- { 22, 28825, "", "=q4=Aldori Legacy Defender", "=ds=#w8#", "", "2.99%"};
- { 23, 28826, "", "=q4=Shuriken of Negation", "=ds=#w11#", "", "16.21%"};
- };
+ {
+ Name = BabbleBoss["Blackheart the Inciter"];
+ { 1, 27468, "", "=q3=Moonglade Handwraps", "=ds=#s9#, #a2# (D3)", "", "6.67%" };
+ { 3, 27892, "", "=q3=Cloak of the Inciter", "=ds=#s4#", "", "16.32%" };
+ { 4, 27893, "", "=q3=Ornate Leggings of the Venerated", "=ds=#s11#, #a4#", "", "13.35%" };
+ { 5, 28134, "", "=q3=Brooch of Hightened Potential", "=ds=#s2#", "", "10.54%" };
+ { 6, 27891, "", "=q3=Adamantine Figurine", "=ds=#s14#", "", "10.93%" };
+ { 7, 27890, "", "=q3=Wand of the Netherwing", "=ds=#w12#", "", "10.77%" };
+ { 9, 25728, "", "=q3=Pattern: Stylin' Purple Hat", "=ds=#p7# (350)", "", "0.94%" };
+ { 11, 30808, "", "=q1=Book of Fel Names", "=ds=#m3#", "", "100%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30563, "", "=q4=Regal Tanzanite", "=ds=#e7#", "", "16.67%" };
+ { 19, 30559, "", "=q4=Etched Fire Opal", "=ds=#e7#", "", "17.85%" };
+ { 20, 30560, "", "=q4=Rune Covered Chrysoprase", "=ds=#e7#", "", "15.47%" };
};
-
-
-
- -------------------------------------------
- --- Hellfire Citadel: Hellfire Ramparts ---
- -------------------------------------------
-
- AtlasLoot_Data["HCRamparts"] = {
- Name = BabbleZone["Hellfire Citadel"]..": "..BabbleZone["Hellfire Ramparts"];
- DisplayName = BabbleZone["Hellfire Ramparts"];
- Type = "BCDungeon";
- Map = "HCHellfireRamparts";
- {
- Name = BabbleBoss["Watchkeeper Gargolmar"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 24024, "", "=q3=Pauldrons of Arcane Rage", "=ds=#s3#, #a1#", "", "14.69%"};
- { 3, 24023, "", "=q3=Bracers of Finesse", "=ds=#s8#, #a2#", "", "13.29%"};
- { 4, 24022, "", "=q3=Scale Leggings of the Skirmisher", "=ds=#s11#, #a3#", "", "14.38%"};
- { 5, 24021, "", "=q3=Light-Touched Breastplate", "=ds=#s5#, #a4#", "", "13.03%"};
- { 6, 24020, "", "=q3=Shadowrend Longblade", "=ds=#h1#, #w10#", "", "13.09%"};
- { 8, 23881, "", "=q1=Gargolmar's Hand", "=ds=#m3#", "", "100%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30593, "", "=q4=Iridescent Fire Opal", "=ds=#e7#", "", "11.11%"};
- { 19, 30594, "", "=q4=Effulgent Chrysoprase", "=ds=#e7#", "", "12.35%"};
- { 20, 30592, "", "=q4=Steady Chrysoprase", "=ds=#e7#", "", "8.64%"};
- { 22, 27448, "", "=q3=Cloak of the Everliving", "=ds=#s4#", "", "28.37%"};
- { 23, 27451, "", "=q3=Boots of the Darkwalker", "=ds=#s12#, #a1#", "", "16.61%"};
- { 24, 27450, "", "=q3=Wild Stalker Boots", "=ds=#s12#, #a3#", "", "14.19%"};
- { 25, 27447, "", "=q3=Bracers of Just Rewards", "=ds=#s8#, #a4#", "", "13.84%"};
- { 26, 27449, "", "=q3=Blood Knight Defender", "=ds=#w8#", "", "13.15%"};
- { 28, 23881, "", "=q1=Gargolmar's Hand", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Omor the Unscarred"];
- { 1, 0, "INV_Box_01", "#j27#", ""};
- { 2, 27465, "", "=q3=Mana-Etched Gloves", "=ds=#s9#, #a1#", "", "11.74%"};
- { 3, 27466, "", "=q3=Headdress of Alacrity", "=ds=#s1#, #a1#", "", "12.10%"};
- { 4, 27462, "", "=q3=Crimson Bracers of Gloom", "=ds=#s8#, #a1#", "", "7.12%"};
- { 5, 27467, "", "=q3=Silent-Strider Kneeboots", "=ds=#s12#, #a2#", "", "16.37%"};
- { 6, 27478, "", "=q3=Girdle of the Blasted Reaches", "=ds=#s10#, #a3#", "", "14.59%"};
- { 7, 27539, "", "=q3=Justice Bearer's Pauldrons", "=ds=#s3#, #a4#", "", "8.90%"};
- { 8, 27906, "", "=q3=Crimsonforge Breastplate", "#s5#, #a4#", "", "12.10%"};
- { 9, 27464, "", "=q3=Omor's Unyielding Will", "=ds=#s2#", "", "13.52%"};
- { 10, 27895, "", "=q3=Band of Many Prisms", "=ds=#s13#", "", "11.74%"};
- { 11, 27477, "", "=q3=Faol's Signet of Cleansing", "=ds=#s15#", "", "10.32%"};
- { 12, 27463, "", "=q3=Terror Flame Dagger", "=ds=#h1#, #w4#", "", "8.90%"};
- { 13, 27476, "", "=q3=Truncheon of Five Hells", "=ds=#h1#, #w6#", "", "9.25%"};
- { 16, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 17, 30593, "", "=q4=Iridescent Fire Opal", "=ds=#e7#", "", "11.11%"};
- { 18, 30594, "", "=q4=Effulgent Chrysoprase", "=ds=#e7#", "", "12.35%"};
- { 19, 30592, "", "=q4=Steady Chrysoprase", "=ds=#e7#", "", "8.64%"};
- { 21, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 22, 24090, "", "=q3=Bloodstained Ravager Gauntlets", "=ds=#s9#, #a3#", "", "12.14%"};
- { 23, 24091, "", "=q3=Tenacious Defender", "=ds=#s10#, #a4#", "", "12.67%"};
- { 24, 24073, "", "=q3=Garotte-String Necklace", "=ds=#s2#", "", "11.60%"};
- { 25, 24096, "", "=q3=Heartblood Prayer Beads", "=ds=#s2#", "", "11.15%"};
- { 26, 24094, "", "=q3=Heart Fire Warhammer", "=ds=#h2#, #w6#", "", "14.76%"};
- { 27, 24069, "", "=q3=Crystalfire Staff", "=ds=#h2#, #w9#", "", "12.43%"};
- { 29, 23886, "", "=q1=Omor's Hoof", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Vazruden"];
- { 1, 0, "INV_Box_01", "=q6="..AL["Reinforced Fel Iron Chest"], ""};
- { 2, 24150, "", "=q3=Mok'Nathal Wildercloak", "=ds=#s4#", "", "15.65%"};
- { 3, 24083, "", "=q3=Lifegiver Britches", "=ds=#s11#, #a1#", "", "17.00%"};
- { 4, 24063, "", "=q3=Shifting Sash of Midnight", "=ds=#s10#, #a2#", "", "17.25%"};
- { 5, 24046, "", "=q3=Kilt of Rolling Thunders", "=ds=#s11#, #a3#", "", "15.96%"};
- { 6, 24064, "", "=q3=Ironsole Clompers", "=ds=#s12#, #a4#", "", "13.80%"};
- { 7, 24045, "", "=q3=Band of Renewal", "=ds=#s13#", "", "14.44%"};
- { 8, 24154, "", "=q3=Witching Band", "=ds=#s13#", "", "13.23%"};
- { 9, 24151, "", "=q3=Mok'Nathal Clan Ring", "=ds=#s13#", "", "15.45%"};
- { 10, 24044, "", "=q3=Hellreaver", "=ds=#w7#", "", "13.91%"};
- { 11, 24155, "", "=q3=Ursol's Claw", "=ds=#h2#, #w9#", "", "16.21%"};
- { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Vazruden"], ""};
- { 17, 23892, "", "=q1=Ominous Letter", "=ds=#m2#", "", "100%"};
- { 19, 0, "INV_Box_01", "=q6="..BabbleBoss["Nazan"], ""};
- { 20, 23901, "", "=q1=Nazan's Head", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Vazruden"].." ("..AL["Heroic"]..")";
- { 1, 29264, "", "=q4=Tree-Mender's Belt", "=ds=#s10#, #a2#", "", "16.05%"};
- { 2, 32077, "", "=q4=Wrath Infused Gauntlets", "=ds=#s9#, #a3#"};
- { 3, 29238, "", "=q4=Lion's Heart Girdle", "=ds=#s10#, #a4#", "", "14.81%"};
- { 4, 29346, "", "=q4=Feltooth Eviscerator", "=ds=#h1#, #w4#", "", "5.56%"};
- { 6, 27452, "", "=q3=Light Scribe Bands", "=ds=#s8#, #a1#", "", "11.73%"};
- { 7, 27461, "", "=q3=Chestguard of the Prowler", "=ds=#s5#, #a2#", "", "11.73%"};
- { 8, 27456, "", "=q3=Raiments of Nature's Breath", "=ds=#s5#, #a2#", "", "19.75%"};
- { 9, 27454, "", "=q3=Volcanic Pauldrons", "=ds=#s3#, #a3#", "", "16.66%"};
- { 10, 27458, "", "=q3=Oceansong Kilt", "=ds=#s11#, #a3#", "", "10.49%"};
- { 11, 27455, "", "=q3=Irondrake Faceguard", "=ds=#s1#, #a4#", "", "11.11%"};
- { 12, 27459, "", "=q3=Vambraces of Daring", "=ds=#s8#, #a4#", "", "10.49%"};
- { 13, 27457, "", "=q3=Life Bearer's Gauntlets", "=ds=#s9#, #a4#", "", "8.02%"};
- { 16, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 17, 30593, "", "=q4=Iridescent Fire Opal", "=ds=#e7#", "", "11.11%"};
- { 18, 30594, "", "=q4=Effulgent Chrysoprase", "=ds=#e7#", "", "12.35%"};
- { 19, 30592, "", "=q4=Steady Chrysoprase", "=ds=#e7#", "", "8.64%"};
- { 21, 27453, "", "=q3=Averinn's Ring of Slaying", "=ds=#s13#", "", "14.20%"};
- { 22, 27460, "", "=q3=Reavers' Ring", "=ds=#s13#", "", "17.90%"};
- { 24, 0, "INV_Box_01", "=q6="..BabbleBoss["Vazruden"], ""};
- { 25, 23892, "", "=q1=Ominous Letter", "=ds=#m2#", "", "100%"};
- { 27, 0, "INV_Box_01", "=q6="..BabbleBoss["Nazan"], ""};
- { 28, 23901, "", "=q1=Nazan's Head", "=ds=#m3#", "", "100%"};
- };
+ {
+ Name = BabbleBoss["Grandmaster Vorpil"];
+ { 1, 27775, "", "=q3=Hallowed Pauldrons", "=ds=#s3#, #a1# (D3)", "", "16.11%" };
+ { 3, 27897, "", "=q3=Breastplate of Many Graces", "=ds=#s5#, #a4#", "", "12.67%" };
+ { 4, 27900, "", "=q3=Jewel of Charismatic Mystique", "=ds=#s14#", "", "16.64%" };
+ { 5, 27901, "", "=q3=Blackout Truncheon", "=ds=#h1#, #w6#", "", "14.35%" };
+ { 6, 27898, "", "=q3=Wrathfire Hand-Cannon", "=ds=#w5#", "", "14.71%" };
+ { 8, 30827, "", "=q1=Lexicon Demonica", "=ds=#m3#", "", "100%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30563, "", "=q4=Regal Tanzanite", "=ds=#e7#", "", "16.67%" };
+ { 19, 30559, "", "=q4=Etched Fire Opal", "=ds=#e7#", "", "17.85%" };
+ { 20, 30560, "", "=q4=Rune Covered Chrysoprase", "=ds=#e7#", "", "15.47%" };
};
+ {
+ Name = BabbleBoss["Murmur"];
+ { 1, 24309, "", "=q4=Pattern: Spellstrike Pants", "=ds=#p8# (375)", "", "0.37%" };
+ { 3, 27902, "", "=q3=Silent Slippers of Meditation", "=ds=#s12#, #a1#", "", "12.28%" };
+ { 4, 27912, "", "=q3=Harness of the Deep Currents", "=ds=#s5#, #a3#", "", "13.59%" };
+ { 5, 27913, "", "=q3=Whispering Blade of Slaying", "=ds=#h1#, #w4#", "", "9.69%" };
+ { 6, 27905, "", "=q3=Greatsword of Horrid Dreams", "=ds=#h3#, #w10#", "", "9.35%" };
+ { 7, 27903, "", "=q3=Sonic Spear", "=ds=#w7#", "", "11.17%" };
+ { 8, 27910, "", "=q3=Silvermoon Crest Shield", "=ds=#w8#", "", "12.46%" };
+ { 10, 27778, "", "=q3=Spaulders of Oblivion", "=ds=#s3#, #a1# (D3)", "", "12.28%" };
+ { 11, 28232, "", "=q3=Robe of Oblivion", "=ds=#s5#, #a1# (D3)", "", "10.47%" };
+ { 12, 28230, "", "=q3=Hallowed Garments", "=ds=#s5#, #a1# (D3)", "", "11.46%" };
+ { 13, 27908, "", "=q3=Leggings of Assassination", "=ds=#s11#, #a2# (D3)", "", "8.76%" };
+ { 14, 27909, "", "=q3=Tidefury Kilt", "=ds=#s11#, #a3# (D3)", "", "13.87%" };
+ { 15, 27803, "", "=q3=Shoulderguards of the Bold", "=ds=#s3#, #a4# (D3)", "", "9.49%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30563, "", "=q4=Regal Tanzanite", "=ds=#e7#", "", "16.67%" };
+ { 19, 30559, "", "=q4=Etched Fire Opal", "=ds=#e7#", "", "17.85%" };
+ { 20, 30560, "", "=q4=Rune Covered Chrysoprase", "=ds=#e7#", "", "15.47%" };
+ { 22, 30532, "", "=q4=Kirin Tor Master's Trousers", "=ds=#s11#, #a1#", "", "11.90%" };
+ { 23, 29357, "", "=q4=Master Thief's Gloves", "=ds=#s9#, #a2#" };
+ { 24, 29261, "", "=q4=Girdle of Ferocity", "=ds=#s10#, #a3#", "", "3.57%" };
+ { 25, 29353, "", "=q4=Shockwave Truncheon", "=ds=#h3#, #w6#", "", "10.71%" };
+ { 27, 31722, "", "=q1=Murmur's Essence", "=ds=#m3#", "", "100%" };
+ { 28, 33840, "", "=q1=Murmur's Whisper", "=ds=#m3#", "", "100%" };
+ Prev = "AuchShadowGrandmaster";
-
-
-
- -------------------------------------------
- --- Hellfire Citadel: The Blood Furnace ---
- -------------------------------------------
-
- AtlasLoot_Data["HCFurnace"] = {
- Name = BabbleZone["Hellfire Citadel"]..": "..BabbleZone["The Blood Furnace"];
- DisplayName = BabbleZone["The Blood Furnace"];
- Type = "BCDungeon";
- Map = "HCBloodFurnace";
- {
- Name = BabbleBoss["The Maker"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 24388, "", "=q3=Girdle of the Gale Storm", "=ds=#s10#, #a3#", "", "15.84%"};
- { 3, 24387, "", "=q3=Ironblade Gauntlets", "=ds=#s9#, #a4#", "", "13.27%"};
- { 4, 24385, "", "=q3=Pendant of Battle-Lust", "=ds=#s2#", "", "15.43%"};
- { 5, 24386, "", "=q3=Libram of Saints Departed", "=ds=#s16#, #w16#", "", "14.78%"};
- { 6, 24384, "", "=q3=Diamond-Core Sledgemace", "=ds=#h3#, #w6#", "", "12.90%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30601, "", "=q4=Beaming Fire Opal", "=ds=#e7#", "", "18.18%"};
- { 19, 30600, "", "=q4=Fluorescent Tanzanite", "=ds=#e7#", "", "9.85%"};
- { 20, 30602, "", "=q4=Jagged Chrysoprase", "=ds=#e7#", "", "12.12%"};
- { 22, 27485, "", "=q3=Embroidered Cape of Mysteries", "=ds=#s4#", "", "13.89%"};
- { 23, 27488, "", "=q3=Mage-Collar of the Firestorm", "=ds=#s1#, #a1#", "", "16.67%"};
- { 24, 27483, "", "=q3=Moon-Touched Bands", "=ds=#s8#, #a2#", "", "25.00%"};
- { 25, 27487, "", "=q3=Bloodlord Legplates", "=ds=#s11#, #a4#", "", "9.26%"};
- { 26, 27484, "", "=q3=Libram of Avengement", "=ds=#s16#, #w16#", "", "14.81%"};
- };
- {
- Name = BabbleBoss["Broggok"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 24392, "", "=q3=Arcing Bracers", "=ds=#s8#, #a1#", "", "14.37%"};
- { 3, 24393, "", "=q3=Bloody Surgeon's Mitts", "=ds=#s9#, #a1#", "", "17.62%"};
- { 4, 24391, "", "=q3=Kilt of the Night Strider", "=ds=#s11#, #a2#", "", "16.58%"};
- { 5, 24390, "", "=q3=Auslese's Light Channeler", "=ds=#s14#", "", "11.57%"};
- { 6, 24389, "", "=q3=Legion Blunderbuss", "=ds=#w5#", "", "17.69%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30601, "", "=q4=Beaming Fire Opal", "=ds=#e7#", "", "18.18%"};
- { 19, 30600, "", "=q4=Fluorescent Tanzanite", "=ds=#e7#", "", "9.85%"};
- { 20, 30602, "", "=q4=Jagged Chrysoprase", "=ds=#e7#", "", "12.12%"};
- { 22, 27848, "", "=q3=Embroidered Spellpyre Boots", "=ds=#s12#, #a1#", "", "8.33%"};
- { 23, 27492, "", "=q3=Moonchild Leggings", "=ds=#s11#, #a2#", "", "13.89%"};
- { 24, 27489, "", "=q3=Virtue Bearer's Vambraces", "=ds=#s8#, #a4#", "", "22.22%"};
- { 25, 27491, "", "=q3=Signet of Repose", "=ds=#s13#", "", "30.56%"};
- { 26, 27490, "", "=q3=Firebrand Battleaxe", "=ds=#h1#, #w1#", "", "9.72%"};
- };
- {
- Name = BabbleBoss["Keli'dan the Breaker"];
- { 1, 28264, "", "=q3=Wastewalker Tunic", "=ds=#s5#, #a2# (D3)", "", "6.82%"};
- { 2, 27497, "", "=q3=Doomplate Gauntlets", "=ds=#s9#, #a4# (D3)", "", "9.09%"};
- { 4, 27506, "", "=q3=Robe of Effervescent Light", "=ds=#s5#, #a1#", "", "17.42%"};
- { 5, 27514, "", "=q3=Leggings of the Unrepentant", "=ds=#s11#, #a2#", "", "13.64%"};
- { 6, 27522, "", "=q3=World's End Bracers", "=ds=#s8#, #a3#", "", "25.76%"};
- { 7, 27494, "", "=q3=Emerald Eye Bracer", "=ds=#s8#, #a3#", "", "11.50%"};
- { 8, 27505, "", "=q3=Ruby Helm of the Just", "=ds=#s1#, #a4#", "", "11.36%"};
- { 9, 27788, "", "=q3=Bloodsworn Warboots", "=ds=#s12#, #a4#"};
- { 10, 27495, "", "=q3=Soldier's Dog Tags", "=ds=#s2#", "", "9.85%"};
- { 11, 28121, "", "=q3=Icon of Unyielding Courage", "=ds=#s14#", "", "8.33%"};
- { 12, 27512, "", "=q3=The Willbreaker", "=ds=#h3#, #w10#", "", "6.06%"};
- { 13, 27507, "", "=q3=Adamantine Repeater", "=ds=#w3#", "", "6.82%"};
- { 15, 33814, "", "=q1=Keli'dan's Feathered Stave", "=ds=#m3#", "", "100%"};
- { 16, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 17, 30601, "", "=q4=Beaming Fire Opal", "=ds=#e7#", "", "18.18%"};
- { 18, 30600, "", "=q4=Fluorescent Tanzanite", "=ds=#e7#", "", "9.85%"};
- { 19, 30602, "", "=q4=Jagged Chrysoprase", "=ds=#e7#", "", "12.12%"};
- { 20, 32080, "", "=q4=Mantle of Shadowy Embrace", "=ds=#s3#, #a2#"};
- { 21, 29245, "", "=q4=Wave-Crest Striders", "=ds=#s12#, #a3#", "", "3.79%"};
- { 22, 29239, "", "=q4=Eaglecrest Warboots", "=ds=#s12#, #a4#", "", "6.82%"};
- { 23, 29347, "", "=q4=Talisman of the Breaker", "=ds=#s2#", "", "7.58%"};
- { 25, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 26, 24397, "", "=q3=Raiments of Divine Authority", "=ds=#s5#, #a1#", "", "16.92%"};
- { 27, 24395, "", "=q3=Mindfire Waistband", "=ds=#s10#, #a1#", "", "16.64%"};
- { 28, 24398, "", "=q3=Mantle of the Dusk-Dweller", "=ds=#s3#, #a2#", "", "14.29%"};
- { 29, 24396, "", "=q3=Vest of Vengeance", "=ds=#s5#, #a2#", "", "15.46%"};
- { 30, 24394, "", "=q3=Warsong Howling Axe", "=ds=#h2#, #w1#", "", "15.52%"};
- };
};
-
- ---------------------------------------------
- --- Hellfire Citadel: The Shattered Halls ---
- ---------------------------------------------
-
- AtlasLoot_Data["HCShatteredHalls"] = {
- Name = BabbleZone["Hellfire Citadel"]..": "..BabbleZone["The Shattered Halls"];
- Type = "BCDungeon";
- Map = "HCTheShatteredHalls";
- {
- Name = BabbleBoss["Grand Warlock Nethekurse"];
- { 1, 24312, "", "=q4=Pattern: Spellstrike Hood", "=ds=#p8# (375)", "", "0.47%"};
- { 3, 27519, "", "=q3=Cloak of Malice", "=ds=#s4#", "", "17.44%"};
- { 4, 27517, "", "=q3=Bands of Nethekurse", "=ds=#s8#, #a1#", "", "17.52%"};
- { 5, 27521, "", "=q3=Telaari Hunting Girdle", "=ds=#s10#, #a3#", "", "16.50%"};
- { 6, 27520, "", "=q3=Greathelm of the Unbreakable", "=ds=#s1#, #a4#", "", "16.47%"};
- { 7, 27518, "", "=q3=Ivory Idol of the Moongoddess", "=ds=#s16#, #w14#", "", "17.42%"};
- { 9, 23735, "", "=q1=Grand Warlock's Amulet", "=ds=#m3#", "", "100%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 24312, "", "=q4=Pattern: Spellstrike Hood", "=ds=#p8# (375)", "", "0.47%"};
- { 19, 30548, "", "=q4=Polished Chrysoprase", "=ds=#e7#", "", "0.16%"};
- { 20, 30547, "", "=q4=Luminous Fire Opal", "=ds=#e7#", "", "0.19%"};
- { 21, 30546, "", "=q4=Sovereign Tanzanite", "=ds=#e7#", "", "3.39%"};
- { 23, 25462, "", "=q1=Tome of Dusk", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Blood Guard Porung"].." ("..AL["Heroic"]..")";
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 30548, "", "=q4=Polished Chrysoprase", "=ds=#e7#", "", "0.16%"};
- { 3, 30547, "", "=q4=Luminous Fire Opal", "=ds=#e7#", "", "0.19%"};
- { 4, 30546, "", "=q4=Sovereign Tanzanite", "=ds=#e7#", "", "3.39%"};
- { 6, 30709, "", "=q3=Pantaloons of Flaming Wrath", "=ds=#s11#, #a1#", "", "14.58%"};
- { 7, 30707, "", "=q3=Nimble-foot Treads", "=ds=#s12#, #a2#", "", "10.42%"};
- { 8, 30708, "", "=q3=Belt of Flowing Thought", "=ds=#s10#, #a3#", "", "12.50%"};
- { 9, 30705, "", "=q3=Spaulders of Slaughter", "=ds=#s3#, #a4#", "", "21.88%"};
- { 10, 30710, "", "=q3=Blood Guard's Necklace of Ferocity", "=ds=#s2#", "", "10.42%"};
- };
- {
- Name = BabbleBoss["Warbringer O'mrogg"];
- { 1, 27802, "", "=q3=Tidefury Shoulderguards", "=ds=#s3#, #a3# (D3)", "", "17.02%"};
- { 3, 27525, "", "=q3=Jeweled Boots of Sanctification", "=ds=#s12#, #a1#", "", "18.26%"};
- { 4, 27868, "", "=q3=Runesong Dagger", "=ds=#h3#, #w4#", "", "15.32%"};
- { 5, 27524, "", "=q3=Firemaul of Destruction", "=ds=#h2#, #w6#", "", "17.95%"};
- { 6, 27526, "", "=q3=Skyfire Hawk-Bow", "=ds=#w2#", "", "17.31%"};
- { 8, 30829, "", "=q1=Tear of the Earthmother", "=ds=#m3#", "", "100%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30548, "", "=q4=Polished Chrysoprase", "=ds=#e7#", "", "0.16%"};
- { 19, 30547, "", "=q4=Luminous Fire Opal", "=ds=#e7#", "", "0.19%"};
- { 20, 30546, "", "=q4=Sovereign Tanzanite", "=ds=#e7#", "", "3.39%"};
- };
- {
- Name = BabbleBoss["Warchief Kargath Bladefist"];
- { 1, 27536, "", "=q3=Hallowed Handwraps", "=ds=#s9#, #a1# (D3)", "", "12.63%"};
- { 2, 27537, "", "=q3=Gloves of Oblivion", "=ds=#s9#, #a1# (D3)", "", "12.54%"};
- { 3, 27531, "", "=q3=Wastewalker Gloves", "=ds=#s9#, #a2# (D3)", "", "11.03%"};
- { 4, 27474, "", "=q3=Beast Lord Handguards", "=ds=#s9#, #a3# (D3)", "", "10.73%"};
- { 5, 27528, "", "=q3=Gauntlets of Desolation", "=ds=#s9#, #a3# (D3)", "", "13.86%"};
- { 6, 27535, "", "=q3=Gauntlets of the Righteous", "=ds=#s9#, #a4# (D3)", "", "11.24%"};
- { 8, 27527, "", "=q3=Greaves of the Shatterer", "=ds=#s11#, #a4#", "", "12.89%"};
- { 9, 27529, "", "=q3=Figurine of the Colossus", "=ds=#s14#", "", "10.41%"};
- { 10, 27534, "", "=q3=Hortus' Seal of Brilliance", "=ds=#s15#", "", "12.98%"};
- { 11, 27533, "", "=q3=Demonblood Eviscerator", "=ds=#h3#, #w13#", "", "12.70%"};
- { 12, 27538, "", "=q3=Lightsworn Hammer", "=ds=#h3#, #w6#", "", "10.6%"};
- { 13, 27540, "", "=q3=Nexus Torch", "=ds=#w12#", "", "13.02%"};
- { 15, 23723, "", "=q1=Warchief Kargath's Fist", "=ds=#m3#", "", "100%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30548, "", "=q4=Polished Chrysoprase", "=ds=#e7#", "", "0.16%"};
- { 19, 30547, "", "=q4=Luminous Fire Opal", "=ds=#e7#", "", "0.19%"};
- { 20, 30546, "", "=q4=Sovereign Tanzanite", "=ds=#e7#", "", "3.39%"};
- { 22, 29255, "", "=q4=Bands of Rarefied Magic", "=ds=#s8#, #a1#", "", "0.58%"};
- { 23, 29263, "", "=q4=Forestheart Bracers", "=ds=#s8#, #a2#", "", "0.28%"};
- { 24, 29254, "", "=q4=Boots of the Righteous Path", "=ds=#s12#, #a4#"};
- { 25, 29348, "", "=q4=The Bladefist", "=ds=#h3#, #w13#", "", "3.39%"};
- { 27, 33815, "", "=q1=Bladefist's Seal", "=ds=#m3#", "", "100%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 22554, "", "=q2=Formula: Enchant 2H Weapon - Savagery", "=ds=#p4# (350) =q1=#n88#", "", "1.65%"};
- { 3, 0, "INV_Box_01", "=q6="..AL["Shattered Hand Executioner"], ""};
- { 4, 31716, "", "=q1=Unused Axe of the Executioner", "=ds=#m3#", "", "100%"};
- };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Trash Mobs"], "=q5=" .. BabbleZone["Mana-Tombs"] };
+ { 2, 23615, "", "=q3=Plans: Swiftsteel Gloves", "=ds=#p2# (370), =q1=#n54#", "", "0.52%" };
+ { 3, 22543, "", "=q2=Formula: Enchant Boots - Fortitude", "=ds=#p4# (320) =q1=#n83#", "", "0.52%" };
+ { 5, 0, "INV_Box_01", "=q6=" .. AL["Trash Mobs"], "=q5=" .. BabbleZone["Sethekk Halls"] };
+ { 6, 25731, "", "=q3=Pattern: Stylin' Crimson Hat", "=ds=#p7# (350) =q1=#n84#", "", "0.46%" };
+ { 7, 29669, "", "=q2=Pattern: Shadow Armor Kit", "=ds=#p7# (340) =q1=#n85#", "", "0.39%" };
+ { 9, 0, "INV_Box_01", "=q6=" .. AL["The Saga of Terokk"], "=q5=" .. BabbleZone["Sethekk Halls"] };
+ { 10, 27634, "", "=q1=The Saga of Terokk", "=ds=#m3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Trash Mobs"], "=q5=" .. BabbleZone["Auchenai Crypts"] };
+ { 17, 23605, "", "=q3=Plans: Felsteel Gloves", "=ds=#p2# (360), =q1=#n55#", "", "0.69%" };
+ { 18, 22544, "", "=q2=Formula: Enchant Boots - Dexterity", "=ds=#p4# (340) =q1=#n82#", "", "0.60%" };
+ { 20, 0, "INV_Box_01", "=q6=" .. AL["Trash Mobs"], "=q5=" .. BabbleZone["Shadow Labyrinth"] };
+ { 21, 23607, "", "=q3=Plans: Felsteel Helm", "=ds=#p2# (365), =q1=#n56#", "", "0.61%" };
+ { 23, 0, "INV_Box_01", "=q6=" .. AL["First Fragment Guardian"], "=q5=" .. BabbleZone["Shadow Labyrinth"] };
+ { 24, 24514, "", "=q1=First Key Fragment", "=ds=#m3#", "", "100%" };
};
- --------------------------------------------
- --- Hellfire Citadel: Magtheridon's Lair ---
- --------------------------------------------
+};
- AtlasLoot_Data["HCMagtheridon"] = {
- Name = BabbleZone["Hellfire Citadel"]..": "..BabbleZone["Magtheridon's Lair"];
- DisplayName = BabbleZone["Magtheridon's Lair"];
- Type = "BCRaid";
- Map = "HCMagtheridonsLair";
- {
- Name = BabbleBoss["Magtheridon"];
- { 1, 28777, "", "=q4=Cloak of the Pit Stalker", "=ds=#s4#"};
- { 2, 28780, "", "=q4=Soul-Eater's Handwraps", "=ds=#s9#, #a1#"};
- { 3, 28776, "", "=q4=Liar's Tongue Gloves", "=ds=#s9#, #a2#"};
- { 4, 28778, "", "=q4=Terror Pit Girdle", "=ds=#s10#, #a3#"};
- { 5, 28775, "", "=q4=Thundering Greathelm", "=ds=#s1#, #a4#"};
- { 6, 28779, "", "=q4=Girdle of the Endless Pit", "=ds=#s10#, #a4#"};
- { 7, 28789, "", "=q4=Eye of Magtheridon", "=ds=#s14#"};
- { 8, 28781, "", "=q4=Karaborian Talisman", "=ds=#s15#"};
- { 9, 28774, "", "=q4=Glaive of the Pit", "=ds=#w7#"};
- { 10, 28782, "", "=q4=Crystalheart Pulse-Staff", "=ds=#h2#, #w9#"};
- { 11, 29458, "", "=q4=Aegis of the Vindicator", "=ds=#w8#"};
- { 12, 28783, "", "=q4=Eredar Wand of Obliteration", "=ds=#w12#"};
- { 14, 34845, "", "=q4=Pit Lord's Satchel", "=ds=#e1# #m15#"};
- { 15, 34846, "", "=q2=Black Sack of Gems", "=ds=#e1#"};
- { 16, 29753, "", "=q4=Chestguard of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T4CHEST"};
- { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 19, 32385, "", "=q4=Magtheridon's Head", "=ds=#m2#", "", "100%"};
- { 20, 28791, "", "=q4=Ring of the Recalcitrant", "=q1=#m4#: =ds=#s13#"};
- { 21, 28790, "", "=q4=Naaru Lightwarden's Band", "=q1=#m4#: =ds=#s13#"};
- { 22, 28793, "", "=q4=Band of Crimson Fury", "=q1=#m4#: =ds=#s13#"};
- { 23, 28792, "", "=q4=A'dal's Signet of Defense", "=q1=#m4#: =ds=#s13#"};
- { 25, 428775, "", "=q4=Bor -o G'urth, the Hand of Death", "=ds=#w7#", [AtlasLoot_Difficulty.MIN_DIF] = AtlasLoot_Difficulty.Mythic};
- { 26, 428776, "", "=q4=Lebed -o G'urth, the Finger of Death", "=ds=#w7#", [AtlasLoot_Difficulty.MIN_DIF] = AtlasLoot_Difficulty.Mythic};
- };
+
+
+
+--------------------
+--- Black Temple ---
+--------------------
+
+AtlasLoot_Data["BlackTemple"] = {
+ Name = BabbleZone["Black Temple"];
+ Type = "BCRaid";
+ Map = "BlackTempleStart";
+ {
+ Name = BabbleBoss["High Warlord Naj'entus"];
+ { 1, 32239, "", "=q4=Slippers of the Seacaller", "=ds=#s12#, #a1#", "", "15%" };
+ { 2, 32240, "", "=q4=Guise of the Tidal Lurker", "=ds=#s1#, #a2#", "", "16%" };
+ { 3, 32377, "", "=q4=Mantle of Darkness", "=ds=#s3#, #a2#", "", "15%" };
+ { 4, 32241, "", "=q4=Helm of Soothing Currents", "=ds=#s1#, #a3#", "", "10%" };
+ { 5, 32234, "", "=q4=Fists of Mukoa", "=ds=#s9#, #a3#", "", "16%" };
+ { 6, 32242, "", "=q4=Boots of Oceanic Fury", "=ds=#s12#, #a3#", "", "6%" };
+ { 7, 32232, "", "=q4=Eternium Shell Bracers", "=ds=#s8#, #a4#", "", "16%" };
+ { 8, 32243, "", "=q4=Pearl Inlaid Boots", "=ds=#s12#, #a4#", "", "10%" };
+ { 9, 32245, "", "=q4=Tide-stomper's Greaves", "=ds=#s12#, #a4#", "", "7%" };
+ { 16, 32238, "", "=q4=Ring of Calming Waves", "=ds=#s13#", "", "16%" };
+ { 17, 32247, "", "=q4=Ring of Captured Storms", "=ds=#s13#", "", "16%" };
+ { 18, 32237, "", "=q4=The Maelstrom's Fury", "=ds=#h3#, #w4#", "", "15%" };
+ { 19, 32236, "", "=q4=Rising Tide", "=ds=#h1#, #w1#", "", "16%" };
+ { 20, 32248, "", "=q4=Halberd of Desolation", "=ds=#w7#", "", "16%" };
+ { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
- ----------------
- --- Karazhan ---
- ----------------
-
- AtlasLoot_Data["Karazhan"] = {
- Name = "Karazhan";
- Type = "BCRaid";
- Map = "KarazhanStart";
- Loadfirst = 3;
- {
- Name = "Charred Bone Fragment ("..AL["Quest Item"]..")";
- { 1, 24152, "INV_Misc_Bone_10", "=q1=Charred Bone Fragment", "=ds=#m3#"};
- };
- {
- Name = "Servant's Quarter Animal Bosses";
- { 1, 0, "Ability_Hunter_Pet_Spider", "=q6="..BabbleBoss["Hyakiss the Lurker"], "=q5="..AL["Spider"]};
- { 2, 30675, "", "=q4=Lurker's Cord", "=ds=#s10#, #a1# =q2=#m16#", "", "32.81%"};
- { 3, 30676, "", "=q4=Lurker's Grasp", "=ds=#s10#, #a2# =q2=#m16#", "", "9.38%"};
- { 4, 30677, "", "=q4=Lurker's Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "23.44%"};
- { 5, 30678, "", "=q4=Lurker's Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "15.62%"};
- { 7, 0, "Ability_Hunter_Pet_Hyena", "=q6="..BabbleBoss["Rokad the Ravager"], "=q5="..AL["Darkhound"]};
- { 8, 30684, "", "=q4=Ravager's Cuffs", "=ds=#s8#, #a1# =q2=#m16#", "", "27.78%"};
- { 9, 30685, "", "=q4=Ravager's Wrist-Wraps", "=ds=#s8#, #a2# =q2=#m16#", "", "11.11%"};
- { 10, 30686, "", "=q4=Ravager's Bands", "=ds=#s8#, #a3# =q2=#m16#", "", "23.33%"};
- { 11, 30687, "", "=q4=Ravager's Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "8.89%"};
- { 16, 0, "Ability_Hunter_Pet_Bat", "=q6="..BabbleBoss["Shadikith the Glider"], "=q5="..AL["Bat"]};
- { 17, 30680, "", "=q4=Glider's Foot-Wraps", "=ds=#s12#, #a1# =q2=#m16#", "", "9.68%"};
- { 18, 30681, "", "=q4=Glider's Boots", "=ds=#s12#, #a2# =q2=#m16#", "", "22.58%"};
- { 19, 30682, "", "=q4=Glider's Sabatons", "=ds=#s12#, #a3# =q2=#m16#", "", "9.68%"};
- { 20, 30683, "", "=q4=Glider's Greaves", "=ds=#s12#, #a4# =q2=#m16#", "", "8.60%"};
- };
- {
- Name = BabbleBoss["Attumen the Huntsman"];
- { 1, 28477, "", "=q4=Harbinger Bands", "=ds=#s8#, #a1#", "", "14.68%"};
- { 2, 28507, "", "=q4=Handwraps of Flowing Thought", "=ds=#s9#, #a1#", "", "12.44%"};
- { 3, 28508, "", "=q4=Gloves of Saintly Blessings", "=ds=#s9#, #a1#", "", "11.69%"};
- { 4, 28453, "", "=q4=Bracers of the White Stag", "=ds=#s8#, #a2#", "", "12.19%"};
- { 5, 28506, "", "=q4=Gloves of Dexterous Manipulation", "=ds=#s9#, #a2#", "", "14.68%"};
- { 6, 28503, "", "=q4=Whirlwind Bracers", "=ds=#s8#, #a3#", "", "9.20%"};
- { 7, 28454, "", "=q4=Stalker's War Bands", "=ds=#s8#, #a3#", "", "16.17%"};
- { 8, 28502, "", "=q4=Vambraces of Courage", "=ds=#s8#, #a4#", "", "10.70%"};
- { 9, 28505, "", "=q4=Gauntlets of Renewed Hope", "=ds=#s9#, #a4#", "", "10.95%"};
- { 16, 28509, "", "=q4=Worgen Claw Necklace", "=ds=#s2#", "", "17.16%"};
- { 17, 28510, "", "=q4=Spectral Band of Innervation", "=ds=#s13#", "", "10.70%"};
- { 18, 28504, "", "=q4=Steelhawk Crossbow", "=ds=#w3#", "", "12.44%"};
- { 19, 30480, "", "=q4=Fiery Warhorse's Reins", "=ds=#e12#", "", "0.25%"};
- { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 23, 23809, "", "=q3=Schematic: Stabilized Eternium Scope", "=ds=#p5# (375)", "", "1.00%"};
- };
- {
- Name = BabbleBoss["Moroes"];
- { 1, 28529, "", "=q4=Royal Cloak of Arathi Kings", "=ds=#s4#", "", "15.91%"};
- { 2, 28570, "", "=q4=Shadow-Cloak of Dalaran", "=ds=#s4#", "", "12.18%"};
- { 3, 28565, "", "=q4=Nethershard Girdle", "=ds=#s10#, #a1#", "", "14.08%"};
- { 4, 28545, "", "=q4=Edgewalker Longboots", "=ds=#s12#, #a2#", "", "11.07%"};
- { 5, 28567, "", "=q4=Belt of Gale Force", "=ds=#s10#, #a3#", "", "12.05%"};
- { 6, 28566, "", "=q4=Crimson Girdle of the Indomitable", "=ds=#s10#, #a4#", "", "10.81%"};
- { 7, 28569, "", "=q4=Boots of Valiance", "=ds=#s12#, #a4#", "", "11.33%"};
- { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 16, 28530, "", "=q4=Brooch of Unquenchable Fury", "=ds=#s2#", "", "12.25%"};
- { 17, 28528, "", "=q4=Moroes' Lucky Pocket Watch", "=ds=#s14#", "", "12.05%"};
- { 18, 28525, "", "=q4=Signet of Unshakable Faith", "=ds=#s15#", "", "14.54%"};
- { 19, 28568, "", "=q4=Idol of the Avian Heart", "=ds=#s16#, #w14#", "", "14.08%"};
- { 20, 28524, "", "=q4=Emerald Ripper", "=ds=#h1#, #w4#", "", "12.90%"};
- { 22, 22559, "", "=q3=Formula: Enchant Weapon - Mongoose", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%"};
- };
- {
- Name = "Keanna's Log ("..AL["Quest Item"]..")";
- { 1, 24492, "", "=q1=Keanna's Log", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Maiden of Virtue"];
- { 1, 28511, "", "=q4=Bands of Indwelling", "=ds=#s8#, #a1#", "", "12.46%"};
- { 2, 28515, "", "=q4=Bands of Nefarious Deeds", "=ds=#s8#, #a1#", "", "13.87%"};
- { 3, 28517, "", "=q4=Boots of Foretelling", "=ds=#s12#, #a1#", "", "16.96%"};
- { 4, 28514, "", "=q4=Bracers of Maliciousness", "=ds=#s8#, #a2#", "", "15.90%"};
- { 5, 28521, "", "=q4=Mitts of the Treemender", "=ds=#s9#, #a2#", "", "13.16%"};
- { 6, 28520, "", "=q4=Gloves of Centering", "=ds=#s9#, #a3#", "", "13.16%"};
- { 7, 28519, "", "=q4=Gloves of Quickening", "=ds=#s9#, #a3#", "", "14.22%"};
- { 8, 28512, "", "=q4=Bracers of Justice", "=ds=#s8#, #a4#", "", "15%"};
- { 9, 28518, "", "=q4=Iron Gauntlets of the Maiden", "=ds=#s9#, #a4#", "", "12.63%"};
- { 16, 28516, "", "=q4=Barbed Choker of Discipline", "=ds=#s2#", "", "11.48%"};
- { 17, 28523, "", "=q4=Totem of Healing Rains", "=ds=#s16#, #w15#", "", "14.58%"};
- { 18, 28522, "", "=q4=Shard of the Virtuous", "=ds=#h3#, #w6#", "", "10.69%"};
- { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 21, 816253, "", "=q3=Formula: Enchant Weapon - Faith", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%"};
- };
- {
- Name = "Opera Event";
- { 1, 0, "INV_Box_01", "=q6="..AL["Shared Drops"], ""};
- { 2, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 3, 28594, "", "=q4=Trial-FireTrousers", "=ds=#s11#, #a1#", "", "15.96%"};
- { 4, 28591, "", "=q4=Earthsoul Leggings", "=ds=#s11#, #a2#", "", "12.45%"};
- { 5, 28589, "", "=q4=Beastmaw Pauldrons", "=ds=#s3#, #a3#", "", "12.54%"};
- { 6, 28593, "", "=q4=Eternium Greathelm", "=ds=#s1#, #a4#", "", "11.53%"};
- { 7, 28590, "", "=q4=Ribbon of Sacrifice", "=ds=#s14#", "", "18.41%"};
- { 8, 28592, "", "=q4=Libram of Souls Redeemed", "=ds=#s16#, #w16#", "", "8.38%"};
- { 10, 0, "INV_Box_01", "=q6="..BabbleBoss["The Crone"], "=q5="..AL["Wizard of Oz"]};
- { 11, 28586, "", "=q4=Wicked Witch's Hat", "=ds=#s1#, #a1#", "", "20.12%"};
- { 12, 28585, "", "=q4=Ruby Slippers", "=ds=#s12#, #a1#", "", "25.39%"};
- { 13, 28587, "", "=q4=Legacy", "=ds=#h2#, #w1#", "", "20.43%"};
- { 14, 28588, "", "=q4=Blue Diamond Witchwand", "=ds=#w12#", "", "17.96%"};
- { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Romulo & Julianne"], "=q5="..AL["Romulo & Julianne"]};
- { 17, 28578, "", "=q4=Masquerade Gown", "=ds=#s5#, #a1#", "", "22.73%"};
- { 18, 28579, "", "=q4=Romulo's Poison Vial", "=ds=#s14#", "", "29.54%"};
- { 19, 28572, "", "=q4=Blade of the Unrequited", "=ds=#h1#, #w4#", "", "13.52%"};
- { 20, 28573, "", "=q4=Despair", "=ds=#h2#, #w10#", "", "30.07%"};
- { 24, 0, "INV_Box_01", "=q6="..BabbleBoss["The Big Bad Wolf"], "=q5="..AL["Red Riding Hood"]};
- { 25, 28582, "", "=q4=Red Riding Hood's Cloak", "=ds=#s4#", "", "12.85%"};
- { 26, 28583, "", "=q4=Big Bad Wolf's Head", "=ds=#s1#, #a3#", "", "16.37%"};
- { 27, 28584, "", "=q4=Big Bad Wolf's Paw", "=ds=#h3#, #w13#", "", "16.12%"};
- { 28, 28581, "", "=q4=Wolfslayer Sniper Rifle", "=ds=#w5#", "", "22.42%"};
- };
- {
- Name = BabbleBoss["Nightbane"];
- { 1, 28602, "", "=q4=Robe of the Elder Scribes", "=ds=#s5#, #a1#", "", "17.38%"};
- { 2, 28600, "", "=q4=Stonebough Jerkin", "=ds=#s5#, #a2#", "", "13.33%"};
- { 3, 28601, "", "=q4=Chestguard of the Conniver", "=ds=#s5#, #a2#", "", "10.24%"};
- { 4, 28599, "", "=q4=Scaled Breastplate of Carnage", "=ds=#s5#, #a3#", "", "11.67%"};
- { 5, 28610, "", "=q4=Ferocious Swift-Kickers", "=ds=#s12#, #a3#", "", "15.71%"};
- { 6, 28597, "", "=q4=Panzar'Thar Breastplate", "=ds=#s5#, #a4#", "", "10.00%"};
- { 7, 28608, "", "=q4=Ironstriders of Urgency", "=ds=#s12#, #a4#", "", "9.05%"};
- { 9, 31751, "", "=q1=Blazing Signet", "=ds=#m3#", "", "100%"};
- { 10, 24139, "", "=q1=Faint Arcane Essence", "=ds=#m3#", "", "100%"};
- { 16, 28609, "", "=q4=Emberspur Talisman", "=ds=#s2#", "", "13.33%"};
- { 17, 28603, "", "=q4=Talisman of Nightbane", "=ds=#s15#", "", "12.62%"};
- { 18, 28604, "", "=q4=Nightstaff of the Everliving", "=ds=#h2#, #w9#", "", "16.67%"};
- { 19, 28611, "", "=q4=Dragonheart Flameshield", "=ds=#w8#", "", "13.57%"};
- { 20, 28606, "", "=q4=Shield of Impenetrable Darkness", "=ds=#w8#", "", "12.14%"};
- { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["The Curator"];
- { 1, 28612, "", "=q4=Pauldrons of the Solace-Giver", "=ds=#s3#, #a1#", "", "15.19%"};
- { 2, 28647, "", "=q4=Forest Wind Shoulderpads", "=ds=#s3#, #a2#", "", "10.56%"};
- { 3, 28631, "", "=q4=Dragon-Quake Shoulderguards", "=ds=#s3#, #a3#", "", "13.47%"};
- { 4, 28621, "", "=q4=Wrynn Dynasty Greaves", "=ds=#s11#, #a4#", "", "11.85%"};
- { 5, 28649, "", "=q4=Garona's Signet Ring", "=ds=#s13#", "", "12.07%"};
- { 6, 28633, "", "=q4=Staff of Infinite Mysteries", "=ds=#h2#, #w9#", "", "12.28%"};
- { 8, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 16, 29758, "", "=q4=Gloves of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T4HAND"};
- };
- {
- Name = BabbleBoss["Terestian Illhoof"];
- { 1, 28660, "", "=q4=Gilded Thorium Cloak", "=ds=#s4#", "", "14.63%"};
- { 2, 28653, "", "=q4=Shadowvine Cloak of Infusion", "=ds=#s4#", "", "10.45%"};
- { 3, 28652, "", "=q4=Cincture of Will", "=ds=#s10#, #a1#", "", "10.75%"};
- { 4, 28654, "", "=q4=Malefic Girdle", "=ds=#s10#, #a1#", "", "11.04%"};
- { 5, 28655, "", "=q4=Cord of Nature's Sustenance", "=ds=#s10#, #a2#", "", "14.93%"};
- { 6, 28656, "", "=q4=Girdle of the Prowler", "=ds=#s10#, #a3#", "", "17.91%"};
- { 7, 28662, "", "=q4=Breastplate of the Lightbinder", "=ds=#s5#, #a4#", "", "17.31%"};
- { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 16, 28661, "", "=q4=Mender's Heart-Ring", "=ds=#s13#", "", "11.64%"};
- { 17, 28785, "", "=q4=The Lightning Capacitor", "=ds=#s14#", "", "10.75%"};
- { 18, 28657, "", "=q4=Fool's Bane", "=ds=#h1#, #w6#", "", "14.63%"};
- { 19, 28658, "", "=q4=Terestian's Stranglestaff", "=ds=#h2#, #w9#", "", "7.46%"};
- { 20, 28659, "", "=q4=Xavian Stiletto", "=ds=#w11#", "", "13.43%"};
- { 22, 22561, "", "=q3=Formula: Enchant Weapon - Soulfrost", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%"};
- };
- {
- Name = BabbleBoss["Shade of Aran"];
- { 1, 28672, "", "=q4=Drape of the Dark Reavers", "=ds=#s4#", "", "11.70%"};
- { 2, 28726, "", "=q4=Mantle of the Mind Flayer", "=ds=#s3#, #a1#", "", "16.03%"};
- { 3, 28670, "", "=q4=Boots of the Infernal Coven", "=ds=#s12#, #a1#", "", "9.29%"};
- { 4, 28663, "", "=q4=Boots of the Incorrupt", "=ds=#s12#, #a1#", "", "12.72%"};
- { 5, 28669, "", "=q4=Rapscallion Boots", "=ds=#s12#, #a2#", "", "11.32%"};
- { 6, 28671, "", "=q4=Steelspine Faceguard", "=ds=#s1#, #a3#", "", "12.21%"};
- { 7, 28666, "", "=q4=Pauldrons of the Justice-Seeker", "=ds=#s3#, #a4#", "", "11.58%"};
- { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 11, 23933, "", "=q1=Medivh's Journal", "=ds=#m3#", "", "100%"};
- { 16, 28674, "", "=q4=Saberclaw Talisman", "=ds=#s2#", "", "11.20%"};
- { 17, 28675, "", "=q4=Shermanar Great-Ring", "=ds=#s13#", "", "10.43%"};
- { 18, 28727, "", "=q4=Pendant of the Violet Eye", "=ds=#s14#", "", "15.39%"};
- { 19, 28728, "", "=q4=Aran's Soothing Sapphire", "=ds=#s15#", "", "12.72%"};
- { 20, 28673, "", "=q4=Tirisfal Wand of Ascendancy", "=ds=#w12#", "", "7.25%"};
- { 22, 22560, "", "=q3=Formula: Enchant Weapon - Sunfire", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%"};
- };
- {
- Name = BabbleBoss["Netherspite"];
- { 1, 28744, "", "=q4=Uni-Mind Headdress", "=ds=#s1#, #a1#", "", "12.91%"};
- { 2, 28742, "", "=q4=Pantaloons of Repentence", "=ds=#s11#, #a1#", "", "10.99%"};
- { 3, 28732, "", "=q4=Cowl of Defiance", "=ds=#s1#, #a2#", "", "17.31%"};
- { 4, 28741, "", "=q4=Skulker's Greaves", "=ds=#s11#, #a2#", "", "15.38%"};
- { 5, 28735, "", "=q4=Earthblood Chestguard", "=ds=#s5#, #a3#", "", "15.93%"};
- { 6, 28740, "", "=q4=Rip-Flayer Leggings", "=ds=#s11#, #a3#", "", "10.16%"};
- { 7, 28743, "", "=q4=Mantle of Abrahmis", "=ds=#s3#, #a4#", "", "9.34%"};
- { 8, 28733, "", "=q4=Girdle of Truth", "=ds=#s10#, #a4#", "", "10.44%"};
- { 16, 28731, "", "=q4=Shining Chain of the Afterworld", "=ds=#s2#", "", "15.11%"};
- { 17, 28730, "", "=q4=Mithril Band of the Unscarred", "=ds=#s13#", "", "10.99%"};
- { 18, 28734, "", "=q4=Jewel of Infinite Possibilities", "=ds=#s15#", "", "11.64%"};
- { 19, 28729, "", "=q4=Spiteblade", "=ds=#h1#, #w10#", "", "6.32%"};
- { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Chess Event"];
- { 1, 28756, "", "=q4=Headdress of the High Potentate", "=ds=#s1#, #a1#", "", "17.98%"};
- { 2, 28755, "", "=q4=Bladed Shoulderpads of the Merciless", "=ds=#s3#, #a2#", "", "13.55%"};
- { 3, 28750, "", "=q4=Girdle of Treachery", "=ds=#s10#, #a2#", "", "15.02%"};
- { 4, 28752, "", "=q4=Forestlord Striders", "=ds=#s12#, #a2#", "", "14.04%"};
- { 5, 28751, "", "=q4=Heart-Flame Leggings", "=ds=#s11#, #a3#", "", "12.56%"};
- { 6, 28746, "", "=q4=Fiend Slayer Boots", "=ds=#s12#, #a3#", "", "16.26%"};
- { 7, 28748, "", "=q4=Legplates of the Innocent", "=ds=#s11#, #a4#", "", "13.79%"};
- { 8, 28747, "", "=q4=Battlescar Boots", "=ds=#s12#, #a4#", "", "13.79%"};
- { 16, 28745, "", "=q4=Mithril Chain of Heroism", "=ds=#s2#", "", "12.81%"};
- { 17, 28753, "", "=q4=Ring of Recurrence", "=ds=#s13#", "", "12.56%"};
- { 18, 28749, "", "=q4=King's Defender", "=ds=#h1#, #w10#", "", "12.07%"};
- { 19, 28754, "", "=q4=Triptych Shield of the Ancients", "=ds=#w8#", "", "13.30%"};
- { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Prince Malchezaar"];
- { 1, 28765, "", "=q4=Stainless Cloak of the Pure Hearted", "=ds=#s4#", "", "10.37%"};
- { 2, 28766, "", "=q4=Ruby Drape of the Mysticant", "=ds=#s4#", "", "12.50%"};
- { 3, 28764, "", "=q4=Farstrider Wildercloak", "=ds=#s4#", "", "15.96%"};
- { 4, 28762, "", "=q4=Adornment of Stolen Souls", "=ds=#s2#", "", "9.57%"};
- { 5, 28763, "", "=q4=Jade Ring of the Everliving", "=ds=#s13#", "", "11.84%"};
- { 6, 28757, "", "=q4=Ring of a Thousand Marks", "=ds=#s13#", "", "12.90%"};
- { 8, 28770, "", "=q4=Nathrezim Mindblade", "=ds=#h3#, #w4#", "", "10.64%"};
- { 9, 28768, "", "=q4=Malchazeen", "=ds=#h1#, #w4#", "", "9.84%"};
- { 10, 28767, "", "=q4=The Decapitator", "=ds=#h1#, #w1#", "", "15.43%"};
- { 11, 28773, "", "=q4=Gorehowl", "=ds=#h2#, #w1#", "", "12.63%"};
- { 12, 28771, "", "=q4=Light's Justice", "=ds=#h3#, #w6#", "", "11.17%"};
- { 13, 28772, "", "=q4=Sunfury Bow of the Phoenix", "=ds=#w2#", "", "9.97%"};
- { 16, 29761, "", "=q4=Helm of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T4HEAD"};
- { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 20, 499438, "", "=q4=Smoldering Emberwyrm", "=ds=#e12#", [AtlasLoot_Difficulty.MIN_DIF] = AtlasLoot_Difficulty.Heroic, "" };
- };
- { --Trash Mobs
- Name = AL["Trash Mobs"];
- { 1, 30642, "", "=q4=Drape of the Righteous", "=ds=#s4#", "", "0.22%"};
- { 2, 30668, "", "=q4=Grasp of the Dead", "=ds=#s9#, #a1#", "", "0.17%"};
- { 3, 30673, "", "=q4=Inferno Waist Cord", "=ds=#s10#, #a1#", "", "0.21%"};
- { 4, 30644, "", "=q4=Grips of the Deftness", "=ds=#s9#, #a2#", "", "0.23%"};
- { 5, 30674, "", "=q4=Zierhut's Lost Treads", "=ds=#s12#, #a2#", "", "0.17%"};
- { 6, 30643, "", "=q4=Belt of the Tracker", "=ds=#s10#, #a3#", "", "0.19%"};
- { 7, 30641, "", "=q4=Boots of Elusion", "=ds=#s12#, #a4#", "", "0.13%"};
- { 9, 23857, "", "=q1=Legacy of the Mountain King", "=ds="};
- { 10, 23864, "", "=q1=Torment of the Worgen", "=ds="};
- { 11, 23862, "", "=q1=Redemption of the Fallen", "=ds="};
- { 12, 23865, "", "=q1=Wrath of the Titans", "=ds="};
- { 14, 21882, "", "=q1=Soul Essence", "=ds=#e8#"};
- { 16, 30666, "", "=q4=Ritssyn's Lost Pendant", "=ds=#s2#", "", "0.18%"};
- { 17, 30667, "", "=q4=Ring of Unrelenting Storms", "=ds=#s13#", "", "0.17%"};
- { 19, 21903, "", "=q4=Pattern: Soulcloth Shoulders", "=ds=#p8# (375)", "", "0.74%"};
- { 20, 21904, "", "=q4=Pattern: Soulcloth Vest", "=ds=#p8# (375)", "", "1.07%"};
- { 21, 22545, "", "=q2=Formula: Enchant Boots - Surefooted", "=ds=#p4# (370)", "", "0.66%"};
- };
+ {
+ Name = BabbleBoss["Supremus"];
+ { 1, 32256, "", "=q4=Waistwrap of Infinity", "=ds=#s10#, #a1#", "", "16%" };
+ { 2, 32252, "", "=q4=Nether Shadow Tunic", "=ds=#s5#, #a2#", "", "14%" };
+ { 3, 32259, "", "=q4=Bands of the Coming Storm", "=ds=#s8#, #a3#", "", "6%" };
+ { 4, 32251, "", "=q4=Wraps of Precise Flight", "=ds=#s8#, #a3#", "", "15%" };
+ { 5, 32258, "", "=q4=Naturalist's Preserving Cinch", "=ds=#s10#, #a3#", "", "9%" };
+ { 6, 32250, "", "=q4=Pauldrons of Abyssal Fury", "=ds=#s3#, #a4#", "", "16%" };
+ { 8, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 16, 32260, "", "=q4=Choker of Endless Nightmares", "=ds=#s2#", "", "17%" };
+ { 17, 32261, "", "=q4=Band of the Abyssal Lord", "=ds=#s13#", "", "14%" };
+ { 18, 32257, "", "=q4=Idol of the White Stag", "=ds=#s16#, #w14#", "", "15%" };
+ { 19, 32254, "", "=q4=The Brutalizer", "=ds=#h1#, #w1#", "", "15%" };
+ { 20, 32262, "", "=q4=Syphon of the Nathrezim", "=ds=#h1#, #w6#", "", "16%" };
+ { 21, 32255, "", "=q4=Felstone Bulwark", "=ds=#w8#", "", "15%" };
+ { 22, 32253, "", "=q4=Legionkiller", "=ds=#w3#", "", "16%" };
};
- ----------------------------------------
- --- Sunwell Isle: Magister's Terrace ---
- ----------------------------------------
-
- AtlasLoot_Data["MagistersTerrace"] = {
- Name = AL["Sunwell Isle"]..": "..BabbleZone["Magisters' Terrace"];
- DisplayName = BabbleZone["Magisters' Terrace"];
- Type = "BCDungeon";
- Map = "MagistersTerrace";
- {
- Name = BabbleBoss["Selin Fireheart"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 434702, "", "=q3=Cloak of Swift Mending", "=ds=#s4#", "", "5%"};
- { 3, 434697, "", "=q3=Bindings of Raging Fire", "=ds=#s8#, #a1#", "", "5%"};
- { 4, 434701, "", "=q3=Leggings of the Betrayed", "=ds=#s11#, #a2#", "", "5%"};
- { 5, 434698, "", "=q3=Bracers of the Forest Stalker", "=ds=#s8#, #a3#", "", "5%"};
- { 6, 434700, "", "=q3=Gauntlets of Divine Blessings", "=ds=#s9#, #a4#", "", "5%"};
- { 7, 434699, "", "=q3=Sun-forged Cleaver", "=ds=#h1#, #w1#", "", "5%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 434602, "", "=q4=Eversong Cuffs", "=ds=#s8#, #a2#", "", "20%"};
- { 19, 434601, "", "=q4=Shoulderplates of Everlasting Pain", "=ds=#s3#, #a4#", "", "21%"};
- { 20, 434604, "", "=q4=Jaded Crystal Dagger", "=ds=#h3#, #w4#", "", "21%"};
- { 21, 434603, "", "=q4=Distracting Blades", "=ds=#w11#", "", "21%"};
- { 23, 435275, "", "=q3=Orb of the Sin'dorei", "=ds=#m20#", "", "2%"};
- };
- {
- Name = BabbleBoss["Vexallus"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 434708, "", "=q3=Cloak of the Coming Night", "=ds=#s4#", "", "17%"};
- { 3, 434705, "", "=q3=Bracers of Divine Infusion", "=ds=#s8#, #a1#", "", "5%"};
- { 4, 434707, "", "=q3=Boots of Resuscitation", "=ds=#s12#, #a2#", "", "16%"};
- { 5, 434704, "", "=q3=Band of Arcane Alacrity", "=ds=#s13#", "", "18%"};
- { 6, 434706, "", "=q3=Band of Determination", "=ds=#s13#", "", "5%"};
- { 7, 434703, "", "=q3=Latro's Dancing Blade", "=ds=#h1#, #w10#", "", "16%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 434607, "", "=q4=Fel-tinged Mantle", "=ds=#s3#, #a1#", "", "20%"};
- { 19, 434605, "", "=q4=Breastplate of Fierce Survival", "=ds=#s5#, #a4#", "", "19%"};
- { 20, 434606, "", "=q4=Edge of Oppression", "=ds=#h1#, #w4#", "", "20%"};
- { 21, 434608, "", "=q4=Rod of the Blazing Light", "=ds=#h2#, #w9#", "", "19%"};
- { 23, 435275, "", "=q3=Orb of the Sin'dorei", "=ds=#m20#", "", "2%"};
- };
- {
- Name = BabbleBoss["Priestess Delrissa"];
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 434792, "", "=q3=Cloak of the Betrayed", "=ds=#s4#", "", "17%"};
- { 3, 434788, "", "=q3=Duskhallow Mantle", "=ds=#s3#, #a1#", "", "5%"};
- { 4, 434791, "", "=q3=Gauntlets of the Tranquil Waves", "=ds=#s9#, #a3#", "", "16%"};
- { 5, 434789, "", "=q3=Bracers of Slaughter", "=ds=#s8#, #a4#", "", "17%"};
- { 6, 434790, "", "=q3=Battle-mace of the High Priestess", "=ds=#h3#, #w6#", "", "16%"};
- { 7, 434783, "", "=q3=Nightstrike", "=ds=#w11#", "", "17%"};
- { 9, 35756, "", "=q3=Formula: Enchant Cloak - Steelweave", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 434473, "", "=q4=Commendation of Kael'thas", "=ds=#s14#", "", "19%"};
- { 19, 434472, "", "=q4=Shard of Contempt", "=ds=#s14#", "", "19%"};
- { 20, 434470, "", "=q4=Timbal's Focusing Crystal", "=ds=#s14#", "", "19%"};
- { 21, 434471, "", "=q4=Vial of the Sunwell", "=ds=#s14#", "", "19%"};
- { 23, 435275, "", "=q3=Orb of the Sin'dorei", "=ds=#m20#", "", "2%"};
- };
- {
- Name = BabbleBoss["Kael'thas Sunstrider"];
- { 1, 434810, "", "=q4=Cloak of Blade Turning", "=ds=#s4#", "", "5%"};
- { 2, 434808, "", "=q4=Gloves of Arcane Acuity", "=ds=#s9#, #a1#", "", "5%"};
- { 3, 434809, "", "=q4=Sunrage Treads", "=ds=#s12#, #a2#", "", "15%"};
- { 4, 434799, "", "=q4=Hauberk of the War Bringer", "=ds=#s5#, #a3#", "", "13%"};
- { 5, 434807, "", "=q4=Sunstrider Warboots", "=ds=#s12#, #a4#", "", "5%"};
- { 6, 434625, "", "=q4=Kharmaa's Ring of Fate", "=ds=#s13#", "", "5%"};
- { 8, 34157, "", "=q1=Head of Kael'thas", "=ds=#m3#", "", "56%"};
- { 16, 434793, "", "=q3=Cord of Reconstruction", "=ds=#s10#, #a1#", "", "5%"};
- { 17, 434796, "", "=q3=Robes of Summer Flame", "=ds=#s5#, #a2#", "", "5%"};
- { 18, 434795, "", "=q3=Helm of Sanctification", "=ds=#s1#, #a4#", "", "5%"};
- { 19, 434798, "", "=q3=Band of Celerity", "=ds=#s13#", "", "5%"};
- { 20, 434794, "", "=q3=Axe of Shattered Dreams", "=ds=#h2#, #w1#", "", "5%"};
- { 21, 434797, "", "=q3=Sun-infused Focus Staff", "=ds=#h2#, #w9#", "", "14%"};
- { 22, 35504, "", "=q3=Phoenix Hatchling", "=ds=#e13#", "", "7%"};
- };
- {
- Name = BabbleBoss["Kael'thas Sunstrider"].." ("..AL["Heroic"]..")";
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 434610, "", "=q4=Scarlet Sin'dorei Robes", "=ds=#s5#, #a1#", "", "19%"};
- { 3, 434613, "", "=q4=Shoulderpads of the Silvermoon Retainer", "=ds=#s3#, #a2#", "", "19%"};
- { 4, 434614, "", "=q4=Tunic of the Ranger Lord", "=ds=#s5#, #a3#", "", "18%"};
- { 5, 434615, "", "=q4=Netherforce Chestplate", "=ds=#s5#, #a4#", "", "19%"};
- { 6, 434612, "", "=q4=Greaves of the Penitent Knight", "=ds=#s12#, #a4#", "", "19%"};
- { 8, 34160, "", "=q1=The Signet Ring of Prince Kael'thas", "=ds=#m3#", "", "12%"};
- { 16, 434609, "", "=q4=Quickening Blade of the Prince", "=ds=#h1#, #w10#", "", "20%"};
- { 17, 434616, "", "=q4=Breeching Comet", "=ds=#h1#, #w1#", "", "19%"};
- { 18, 434611, "", "=q4=Cudgel of Consecration", "=ds=#h3#, #w6#", "", "19%"};
- { 19, 35513, "", "=q4=Swift White Hawkstrider", "=ds=#e12#", "", "3%"};
- { 21, 35504, "", "=q3=Phoenix Hatchling", "=ds=#e13#", "", "7%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 35516, "", "=q3=Sun Touched Satchel", "=ds=#e1# #m15#", "", "1%"};
- };
+ {
+ Name = BabbleBoss["Shade of Akama"];
+ { 1, 32273, "", "=q4=Amice of Brilliant Light", "=ds=#s3#, #a1#", "", "16%" };
+ { 2, 32270, "", "=q4=Focused Mana Bindings", "=ds=#s8#, #a1#", "", "15%" };
+ { 3, 32513, "", "=q4=Wristbands of Divine Influence", "=ds=#s8#, #a1#", "", "16%" };
+ { 4, 32265, "", "=q4=Shadow-walker's Cord", "=ds=#s10#, #a2#", "", "16%" };
+ { 5, 32271, "", "=q4=Kilt of Immortal Nature", "=ds=#s11#, #a2#", "", "14%" };
+ { 6, 32264, "", "=q4=Shoulders of the Hidden Predator", "=ds=#s3#, #a3#", "", "16%" };
+ { 7, 32275, "", "=q4=Spiritwalker Gauntlets", "=ds=#s9#, #a3#", "", "9%" };
+ { 8, 32276, "", "=q4=Flashfire Girdle", "=ds=#s10#, #a3#", "", "5%" };
+ { 9, 32279, "", "=q4=The Seeker's Wristguards", "=ds=#s8#, #a4#", "", "8%" };
+ { 10, 32278, "", "=q4=Grips of Silent Justice", "=ds=#s9#, #a4#", "", "15%" };
+ { 11, 32263, "", "=q4=Praetorian's Legguards", "=ds=#s11#, #a4#", "", "14%" };
+ { 12, 32268, "", "=q4=Myrmidon's Treads", "=ds=#s12#, #a4#", "", "16%" };
+ { 16, 32266, "", "=q4=Ring of Deceitful Intent", "=ds=#s13#", "", "16%" };
+ { 17, 32361, "", "=q4=Blind-Seers Icon", "=ds=#s15#", "", "15%" };
+ { 19, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
- -------------------------------------
- --- Sunwell Isle: Sunwell Plateau ---
- -------------------------------------
-
- AtlasLoot_Data["SunwellPlateau"] = {
- Name = AL["Sunwell Isle"]..": "..BabbleZone["Sunwell Plateau"];
- DisplayName = BabbleZone["Sunwell Plateau"];
- Type = "BCRaid";
- Map = "SunwellPlateau";
- {
- Name = BabbleBoss["Kalecgos"];
- { 1, 34170, "", "=q4=Pantaloons of Calming Strife", "=ds=#s11#, #a1#"};
- { 2, 34386, "", "=q4=Pantaloons of Growing Strife", "=ds=#m29#"};
- { 3, 34169, "", "=q4=Breeches of Natural Aggression", "=ds=#s11#, #a2#"};
- { 4, 34384, "", "=q4=Breeches of Natural Splendor", "=ds=#m29#"};
- { 5, 34168, "", "=q4=Starstalker Legguards", "=ds=#s11#, #a3#", "", "1.#INF%"};
- { 6, 34167, "", "=q4=Legplates of the Holy Juggernaut", "=ds=#s11#, #a4#"};
- { 7, 34382, "", "=q4=Judicator's Legguards", "=ds=#m29#"};
- { 8, 34166, "", "=q4=Band of Lucent Beams", "=ds=#s13#", "", "1.#INF%"};
- { 9, 34165, "", "=q4=Fang of Kalecgos", "=ds=#h1#, #w4#"};
- { 10, 34164, "", "=q4=Dragonscale-Encrusted Longblade", "=ds=#h1#, #w10#"};
- { 16, 34848, "", "=q4=Bracers of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "10%"};
- { 17, 34851, "", "=q4=Bracers of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "11%"};
- { 18, 34852, "", "=q4=Bracers of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "12%"};
- { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Brutallus"];
- { 1, 34181, "", "=q4=Leggings of Calamity", "=ds=#s11#, #a1#", "", "15%"};
- { 2, 34180, "", "=q4=Felfury Legplates", "=ds=#s11#, #a4#", "", "13%"};
- { 3, 34381, "", "=q4=Felstrength Legplates", "=ds=#m29#"};
- { 4, 34178, "", "=q4=Collar of the Pit Lord", "=ds=#s2#", "", "15%"};
- { 5, 34177, "", "=q4=Clutch of Demise", "=ds=#s2#", "", "15%"};
- { 6, 34179, "", "=q4=Heart of the Pit", "=ds=#s15#", "", "13%"};
- { 7, 34176, "", "=q4=Reign of Misery", "=ds=#h3#, #w6#", "", "17%"};
- { 16, 34853, "", "=q4=Belt of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "74%"};
- { 17, 34854, "", "=q4=Belt of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "70%"};
- { 18, 34855, "", "=q4=Belt of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "75%"};
- { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Felmyst"];
- { 1, 34352, "", "=q4=Borderland Fortress Grips", "=ds=#s9#, #a4#", "", "15%"};
- { 2, 34188, "", "=q4=Leggings of the Immortal Night", "=ds=#s11#, #a2#", "", "14%"};
- { 3, 34385, "", "=q4=Leggings of the Immortal Beast", "=ds=#m29#"};
- { 4, 34186, "", "=q4=Chain Links of the Tumultuous Storm", "=ds=#s11#, #a3#", "", "15%"};
- { 5, 34383, "", "=q4=Kilt of Spiritual Reconstruction", "=ds=#m29#"};
- { 6, 34184, "", "=q4=Brooch of the Highborne", "=ds=#s2#", "", "16%"};
- { 7, 34185, "", "=q4=Sword Breaker's Bulwark", "=ds=#w8#", "", "16%"};
- { 8, 34182, "", "=q4=Grand Magister's Staff of Torrents", "=ds=#h2#, #w9#", "", "17%"};
- { 16, 34856, "", "=q4=Boots of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "79%"};
- { 17, 34857, "", "=q4=Boots of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "86%"};
- { 18, 34858, "", "=q4=Boots of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "77%"};
- { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["The Eredar Twins"];
- { 1, 34205, "", "=q4=Shroud of Redeemed Souls", "=ds=#s4#", "", "18%"};
- { 2, 34190, "", "=q4=Crimson Paragon's Cover", "=ds=#s4#", "", "16%"};
- { 3, 34210, "", "=q4=Amice of the Convoker", "=ds=#s3#, #a1#", "", "19%"};
- { 4, 34202, "", "=q4=Shawl of Wonderment", "=ds=#s3#, #a1#", "", "23%"};
- { 5, 34393, "", "=q4=Shoulderpads of Knowledge's Pursuit", "=ds=#m29#"};
- { 6, 34209, "", "=q4=Spaulders of Reclamation", "=ds=#s3#, #a2#", "", "20%"};
- { 7, 34391, "", "=q4=Spaulders of Devastation", "=ds=#m29#"};
- { 8, 34195, "", "=q4=Shoulderpads of Vehemence", "=ds=#s3#, #a2#", "", "17%"};
- { 9, 34392, "", "=q4=Demontooth Shoulderpads", "=ds=#m29#"};
- { 10, 34194, "", "=q4=Mantle of the Golden Forest", "=ds=#s3#, #a3#", "", "21%"};
- { 11, 34208, "", "=q4=Equilibrium Epaulets", "=ds=#s3#, #a3#", "", "19%"};
- { 12, 34390, "", "=q4=Erupting Epaulets", "=ds=#m29#"};
- { 13, 34192, "", "=q4=Pauldrons of Perseverance", "=ds=#s3#, #a4#", "", "19%"};
- { 14, 34388, "", "=q4=Pauldrons of Berserking", "=ds=#m29#"};
- { 16, 34193, "", "=q4=Spaulders of the Thalassian Savior", "=ds=#s3#, #a4#", "", "17%"};
- { 17, 34389, "", "=q4=Spaulders of the Thalassian Defender", "=ds=#m29#"};
- { 18, 35290, "", "=q4=Sin'dorei Pendant of Conquest", "=ds=#s2#", "", "33%"};
- { 19, 35291, "", "=q4=Sin'dorei Pendant of Salvation", "=ds=#s2#", "", "32%"};
- { 20, 35292, "", "=q4=Sin'dorei Pendant of Triumph", "=ds=#s2#", "", "32%"};
- { 21, 34204, "", "=q4=Amulet of Unfettered Magics", "=ds=#s2#", "", "20%"};
- { 22, 34189, "", "=q4=Band of Ruinous Delight", "=ds=#s13#", "", "18%"};
- { 23, 34206, "", "=q4=Book of Highborne Hymns", "=ds=#s15#", "", "22%"};
- { 24, 34197, "", "=q4=Shiv of Exsanguination", "=ds=#h1#, #w4#", "", "23%"};
- { 25, 34199, "", "=q4=Archon's Gavel", "=ds=#h3#, #w6#", "", "17%"};
- { 26, 34203, "", "=q4=Grip of Mannoroth", "=ds=#h4#, #w13#", "", "20%"};
- { 27, 34198, "", "=q4=Stanchion of Primal Instinct", "=ds=#h2#, #w9#", "", "19%"};
- { 28, 34196, "", "=q4=Golden Bow of Quel'Thalas", "=ds=#w2#", "", "18%"};
- { 30, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["M'uru"];
- { 1, 34232, "", "=q4=Fel Conquerer Raiments", "=ds=#s5#, #a1#", "", "13%"};
- { 2, 34233, "", "=q4=Robes of Faltered Light", "=ds=#s5#, #a1#", "", "17%"};
- { 3, 34399, "", "=q4=Robes of Ghostly Hatred", "=ds=#m29#"};
- { 4, 34212, "", "=q4=Sunglow Vest", "=ds=#s5#, #a2#", "", "14%"};
- { 5, 34398, "", "=q4=Utopian Tunic of Elune", "=ds=#m29#"};
- { 6, 34211, "", "=q4=Harness of Carnal Instinct", "=ds=#s5#, #a2#", "", "15%"};
- { 7, 34397, "", "=q4=Bladed Chaos Tunic", "=ds=#m29#"};
- { 8, 34234, "", "=q4=Shadowed Gauntlets of Paroxysm", "=ds=#s9#, #a2#", "", "18%"};
- { 9, 34408, "", "=q4=Gloves of the Forest Drifter", "=ds=#m29#"};
- { 10, 34229, "", "=q4=Garments of Serene Shores", "=ds=#s5#, #a3#", "", "13%"};
- { 11, 34396, "", "=q4=Garments of Crashing Shores", "=ds=#m29#"};
- { 12, 34228, "", "=q4=Vicious Hawkstrider Hauberk", "=ds=#s5#, #a3#", "", "15%"};
- { 13, 34215, "", "=q4=Warharness of Reckless Fury", "=ds=#s5#, #a4#", "", "16%"};
- { 14, 34394, "", "=q4=Breastplate of Agony's Aversion", "=ds=#m29#"};
- { 15, 34240, "", "=q4=Gauntlets of the Soothed Soul", "=ds=#s9#, #a4#", "", "15%"};
- { 16, 34216, "", "=q4=Heroic Judicator's Chestguard", "=ds=#s5#, #a4#", "", "16%"};
- { 17, 34395, "", "=q4=Noble Judicator's Chestguard", "=ds=#m29#"};
- { 18, 34213, "", "=q4=Ring of Hardened Resolve", "=ds=#s13#", "", "15%"};
- { 19, 34230, "", "=q4=Ring of Omnipotence", "=ds=#s13#", "", "16%"};
- { 20, 35282, "", "=q4=Sin'dorei Band of Dominance", "=ds=#s13#", "", "31%"};
- { 21, 35283, "", "=q4=Sin'dorei Band of Salvation", "=ds=#s13#", "", "31%"};
- { 22, 35284, "", "=q4=Sin'dorei Band of Triumph", "=ds=#s13#", "", "34%"};
- { 23, 34427, "", "=q4=Blackened Naaru Sliver", "=ds=#s14#", "", "13%"};
- { 24, 34430, "", "=q4=Glimmering Naaru Sliver", "=ds=#s14#", "", "16%"};
- { 25, 34429, "", "=q4=Shifting Naaru Sliver", "=ds=#s14#", "", "15%"};
- { 26, 34428, "", "=q4=Steely Naaru Sliver", "=ds=#s14#", "", "15%"};
- { 27, 34214, "", "=q4=Muramasa", "=ds=#h1#, #w10#", "", "16%"};
- { 28, 34231, "", "=q4=Aegis of Angelic Fortune", "=ds=#w8#", "", "14%"};
- { 30, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Kil'jaeden"];
- { 1, 34241, "", "=q4=Cloak of Unforgivable Sin", "=ds=#s4#", "", "16%"};
- { 2, 34242, "", "=q4=Tattered Cape of Antonidas", "=ds=#s4#", "", "16%"};
- { 3, 34339, "", "=q4=Cowl of Light's Purity", "=ds=#s1#, #a1#", "", "18%"};
- { 4, 34405, "", "=q4=Helm of Arcane Purity", "=ds=#m29#"};
- { 5, 34340, "", "=q4=Dark Conjuror's Collar", "=ds=#s1#, #a1#", "", "20%"};
- { 6, 34342, "", "=q4=Handguards of the Dawn", "=ds=#s9#, #a1#", "", "19%"};
- { 7, 34406, "", "=q4=Gloves of Tyri's Power", "=ds=#m29#"};
- { 8, 34344, "", "=q4=Handguards of the Defiled Worlds", "=ds=#s9#, #a1#", "", "22%"};
- { 9, 34244, "", "=q4=Duplicitous Guise", "=ds=#s1#, #a2#", "", "17%"};
- { 10, 34404, "", "=q4=Mask of the Furry Hunter", "=ds=#m29#"};
- { 11, 34245, "", "=q4=Cover of Ursol the Wise", "=ds=#s1#, #a2#", "", "14%"};
- { 12, 34403, "", "=q4=Cover of Ursoc the Mighty", "=ds=#m29#"};
- { 13, 34333, "", "=q4=Coif of Alleria", "=ds=#s1#, #a3#", "", "14%"};
- { 14, 34332, "", "=q4=Cowl of Gul'dan", "=ds=#s1#, #a3#", "", "14%"};
- { 15, 34402, "", "=q4=Shroud of Chieftain Ner'zhul", "=ds=#m29#"};
- { 16, 34343, "", "=q4=Thalassian Ranger Gauntlets", "=ds=#s9#, #a3#", "", "18%"};
- { 17, 34243, "", "=q4=Helm of Burning Righteousness", "=ds=#s1#, #a4#", "", "21%"};
- { 18, 34401, "", "=q4=Helm of Uther's Resolve", "=ds=#m29#"};
- { 19, 34345, "", "=q4=Crown of Anasterian", "=ds=#s1#, #a4#", "", "16%"};
- { 20, 34400, "", "=q4=Crown of Dath'Remar", "=ds=#m29#"};
- { 21, 34341, "", "=q4=Borderland Paingrips", "=ds=#s9#, #a4#", "", "18%"};
- { 23, 34334, "", "=q5=Thori'dal, the Stars' Fury", "=ds=#w2#", "", "6%"};
- { 25, 34329, "", "=q4=Crux of the Apocalypse", "=ds=#h1#, #w4#", "", "16%"};
- { 26, 34247, "", "=q4=Apolyon, the Soul-Render", "=ds=#h2#, #w10#", "", "17%"};
- { 27, 34335, "", "=q4=Hammer of Sanctification", "=ds=#h3#, #w6#", "", "20%"};
- { 28, 34331, "", "=q4=Hand of the Deceiver", "=ds=#h3#, #w13#", "", "17%"};
- { 29, 34336, "", "=q4=Sunflare", "=ds=#h3#, #w4#", "", "18%"};
- { 30, 34337, "", "=q4=Golden Staff of the Sin'dorei", "=ds=#h2#, #w9#", "", "14%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 34351, "", "=q4=Tranquil Majesty Wraps", "=ds=#s9#, #a2#", "", "1%"};
- { 2, 34407, "", "=q4=Tranquil Moonlight Wraps", "=ds=#m29#"};
- { 3, 34350, "", "=q4=Gauntlets of the Ancient Shadowmoon", "=ds=#s9#, #a3#", "", "2%"};
- { 4, 34409, "", "=q4=Gauntlets of the Ancient Frostwolf", "=ds=#m29#"};
- { 5, 35733, "", "=q4=Ring of Harmonic Beauty", "=ds=#s13#", "", "8%"};
- { 6, 34183, "", "=q4=Shivering Felspine", "=ds=#h2#, #w7#", "", "1%"};
- { 7, 34346, "", "=q4=Mounting Vengeance", "=ds=#h4#, #w13#", "", "2%"};
- { 8, 34349, "", "=q4=Blade of Life's Inevitability", "=ds=#w11#", "", "2%"};
- { 9, 34348, "", "=q4=Wand of Cleansing Light", "=ds=#w12#", "", "4%"};
- { 10, 34347, "", "=q4=Wand of the Demonsoul", "=ds=#w12#", "", "2%"};
- { 12, 35273, "", "=q3=Study of Advanced Smelting", "=ds=#p23# (375)", "", "3%"};
- { 14, 34664, "", "=q3=Sunmote", "=ds=#m20#", "", "66%"};
- { 16, 32228, "", "=q4=Empyrean Sapphire", "=ds=#e7#", "", "12%"};
- { 17, 32231, "", "=q4=Pyrestone", "=ds=#e7#", "", "8%"};
- { 18, 32229, "", "=q4=Lionseye", "=ds=#e7#", "", "6%"};
- { 19, 32249, "", "=q4=Seaspray Emerald", "=ds=#e7#", "", "9%"};
- { 20, 32230, "", "=q4=Shadowsong Amethyst", "=ds=#e7#", "", "6%"};
- { 21, 32227, "", "=q4=Crimson Spinel", "=ds=#e7#", "", "8%"};
- { 23, 35208, "", "=q4=Plans: Sunblessed Gauntlets", "=ds=#p2# (365)", "", "0.25%"};
- { 24, 35210, "", "=q4=Plans: Sunblessed Breastplate", "=ds=#p2# (365)", "", "0.25%"};
- { 25, 35209, "", "=q4=Plans: Hard Khorium Battlefists", "=ds=#p2# (365)", "", "6%"};
- { 26, 35211, "", "=q4=Plans: Hard Khorium Battleplate", "=ds=#p2# (365)", "", "0.38%"};
- };
- {
- Name = "SP Patterns/Plans";
- { 1, 35212, "", "=q4=Pattern: Leather Gauntlets of the Sun", "=ds=#p7# (365)"};
- { 2, 35216, "", "=q4=Pattern: Leather Chestguard of the Sun", "=ds=#p7# (365)"};
- { 3, 35213, "", "=q4=Pattern: Fletcher's Gloves of the Phoenix", "=ds=#p7# (365)"};
- { 4, 35217, "", "=q4=Pattern: Pattern: Embrace of the Phoenix", "=ds=#p7# (365)"};
- { 5, 35214, "", "=q4=Pattern: Gloves of Immortal Dusk", "=ds=#p7# (365)"};
- { 6, 35218, "", "=q4=Pattern: Carapace of Sun and Shadow", "=ds=#p7# (365)"};
- { 7, 35215, "", "=q4=Pattern: Sun-Drenched Scale Gloves", "=ds=#p7# (365)"};
- { 8, 35219, "", "=q4=Pattern: Sun-Drenched Scale Chestguard", "=ds=#p7# (365)"};
- { 9, 35204, "", "=q4=Pattern: Sunfire Handwraps", "=ds=#p8# (365)"};
- { 10, 35206, "", "=q4=Pattern: Sunfire Robe", "=ds=#p8# (365)"};
- { 11, 35205, "", "=q4=Pattern: Hands of Eternal Light", "=ds=#p8# (365)"};
- { 12, 35207, "", "=q4=Pattern: Robe of Eternal Light", "=ds=#p8# (365)"};
- { 13, 35198, "", "=q4=Design: Loop of Forged Power", "=ds=#p12# (365)"};
- { 14, 35201, "", "=q4=Design: Pendant of Sunfire", "=ds=#p12# (365)"};
- { 15, 35199, "", "=q4=Design: Ring of Flowing Life", "=ds=#p12# (365)"};
- { 16, 35202, "", "=q4=Design: Amulet of Flowing Life", "=ds=#p12# (365)"};
- { 17, 35200, "", "=q4=Design: Hard Khorium Band", "=ds=#p12# (365)"};
- { 18, 35203, "", "=q4=Design: Hard Khorium Choker", "=ds=#p12# (365)"};
- { 19, 35186, "", "=q4=Schematic: Annihilator Holo-Gogs", "=ds=#p5# (375)"};
- { 20, 35187, "", "=q4=Schematic: Justicebringer 3000 Specs", "=ds=#p5# (375)"};
- { 21, 35189, "", "=q4=Schematic: Powerheal 9000 Lens", "=ds=#p5# (375)"};
- { 22, 35190, "", "=q4=Schematic: Hyper-Magnified Moon Specs", "=ds=#p5# (375)"};
- { 23, 35191, "", "=q4=Schematic: Wonderheal XT68 Shades", "=ds=#p5# (375)"};
- { 24, 35192, "", "=q4=Schematic: Primal-Attuned Goggles", "=ds=#p5# (375)"};
- { 25, 35193, "", "=q4=Schematic: Lightning Etched Specs", "=ds=#p5# (375)"};
- { 26, 35194, "", "=q4=Schematic: Surestrike Goggles v3.0", "=ds=#p5# (375)"};
- { 27, 35195, "", "=q4=Schematic: Mayhem Projection Goggles", "=ds=#p5# (375)"};
- { 28, 35196, "", "=q4=Schematic: Hard Khorium Goggles", "=ds=#p5# (375)"};
- { 29, 35197, "", "=q4=Schematic: Quad Deathblow X44 Goggles", "=ds=#p5# (375)"};
- };
+ {
+ Name = BabbleBoss["Teron Gorefiend"];
+ { 1, 32323, "", "=q4=Shadowmoon Destroyer's Drape", "=ds=#s4#", "", "17%" };
+ { 2, 32329, "", "=q4=Cowl of Benevolence", "=ds=#s1#, #a1#", "", "17%" };
+ { 3, 32327, "", "=q4=Robe of the Shadow Council", "=ds=#s5#, #a1#", "", "15%" };
+ { 4, 32324, "", "=q4=Insidious Bands", "=ds=#s8#, #a2#", "", "17%" };
+ { 5, 32328, "", "=q4=Botanist's Gloves of Growth", "=ds=#s9#, #a2#", "", "17%" };
+ { 6, 32510, "", "=q4=Softstep Boots of Tracking", "=ds=#s12#, #a3#", "", "15%" };
+ { 7, 32280, "", "=q4=Gauntlets of Enforcement", "=ds=#s9#, #a4#", "", "15%" };
+ { 8, 32512, "", "=q4=Girdle of Lordaeron's Fallen", "=ds=#s10#, #a4#", "", "19%" };
+ { 16, 32330, "", "=q4=Totem of Ancestral Guidance", "=ds=#s16#, #w15#", "", "13%" };
+ { 17, 32348, "", "=q4=Soul Cleaver", "=ds=#h2#, #w1#", "", "19%" };
+ { 18, 32326, "", "=q4=Twisted Blades of Zarak", "=ds=#w11#", "", "11%" };
+ { 19, 32325, "", "=q4=Rifle of the Stoic Guardian", "=ds=#w5#", "", "14%" };
+ { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
-
- ----------------------------------
- --- Tempest Keep: The Arcatraz ---
- ----------------------------------
-
- AtlasLoot_Data["TKArc"] = {
- Name = BabbleZone["Tempest Keep"]..": "..BabbleZone["The Arcatraz"];
- DisplayName = BabbleZone["The Arcatraz"];
- Type = "BCDungeon";
- Map = "TempestKeepArcatraz";
- {
- Name = BabbleBoss["Zereketh the Unbound"];
- { 1, 28373, "", "=q3=Cloak of Scintillating Auras", "=ds=#s4#", "", "17.13%"};
- { 2, 28374, "", "=q3=Mana-Sphere Shoulderguards", "=ds=#s3#, #a1#", "", "20.35%"};
- { 3, 28384, "", "=q3=Outland Striders", "=ds=#s12#, #a3#", "", "19.52%"};
- { 4, 28375, "", "=q3=Rubium War-Girdle", "=ds=#s10#, #a4#", "", "14.38%"};
- { 5, 28372, "", "=q3=Idol of Feral Shadows", "=ds=#s16#, #w14#", "", "15.80%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30582, "", "=q4=Deadly Fire Opal", "=ds=#e7#", "", "0.18%"};
- { 19, 30575, "", "=q4=Nimble Fire Opal", "=ds=#e7#", "", "0.18%"};
- { 20, 30581, "", "=q4=Durable Fire Opal", "=ds=#e7#", "", "0.18%"};
- };
- {
- Name = BabbleBoss["Wrath-Scryer Soccothrates"];
- { 1, 28396, "", "=q3=Gloves of the Unbound", "=ds=#s9#, #a2#", "", "17.80%"};
- { 2, 28398, "", "=q3=The Sleeper's Cord", "=ds=#s10#, #a2#", "", "16.29%"};
- { 3, 28394, "", "=q3=Ryngo's Band of Ingenuity", "=ds=#s13#", "", "16.81%"};
- { 4, 28393, "", "=q3=Warmaul of Infused Light", "=ds=#h2#, #w6#", "", "16.14%"};
- { 5, 28397, "", "=q3=Emberhawk Crossbow", "=ds=#w3#", "", "17.65%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30582, "", "=q4=Deadly Fire Opal", "=ds=#e7#", "", "0.18%"};
- { 19, 30575, "", "=q4=Nimble Fire Opal", "=ds=#e7#", "", "0.18%"};
- { 20, 30581, "", "=q4=Durable Fire Opal", "=ds=#e7#", "", "0.18%"};
- };
- {
- Name = BabbleBoss["Dalliah the Doomsayer"];
- { 1, 24308, "", "=q4=Pattern: Whitemend Pants", "=ds=#p8# (375)", "", "0.29%"};
- { 3, 28391, "", "=q3=Worldfire Chestguard", "=ds=#s5#, #a3#", "", "18.57%"};
- { 4, 28390, "", "=q3=Thatia's Self-Correcting Gauntlets", "=ds=#s9#, #a4#", "", "14.80%"};
- { 5, 28387, "", "=q3=Lamp of Peaceful Repose", "=ds=#s15#", "", "15.92%"};
- { 6, 28392, "", "=q3=Reflex Blades", "=ds=#h3#, #w13#", "", "18.37%"};
- { 7, 28386, "", "=q3=Nether Core's Control Rod", "#w12#", "", "15.29%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30582, "", "=q4=Deadly Fire Opal", "=ds=#e7#", "", "0.18%"};
- { 19, 30575, "", "=q4=Nimble Fire Opal", "=ds=#e7#", "", "0.18%"};
- { 20, 30581, "", "=q4=Durable Fire Opal", "=ds=#e7#", "", "0.18%"};
- };
- {
- Name = BabbleBoss["Harbinger Skyriss"];
- { 1, 28415, "", "=q3=Hood of Oblivion", "=ds=#s1#, #a1# (D3)", "", "12.23%"};
- { 2, 28413, "", "=q3=Hallowed Crown", "=ds=#s1#, #a1# (D3)", "", "12.17%"};
- { 3, 28414, "", "=q3=Helm of Assassination", "=ds=#s1#, #a2# (D3)", "", "11.25%"};
- { 4, 28231, "", "=q3=Tidefury Chestpiece", "=ds=#s5#, #a3# (D3)", "", "14.98%"};
- { 5, 28403, "", "=q3=Doomplate Chestguard", "=ds=#s5#, #a4# (D3)", "", "13.15%"};
- { 6, 28205, "", "=q3=Breastplate of the Bold", "=ds=#s5#, #a4# (D3)", "", "11.19%"};
- { 8, 28406, "", "=q3=Sigil-Laced Boots", "=ds=#s12#, #a1#", "", "12.23%"};
- { 9, 28419, "", "=q3=Choker of Fluid Thought", "=ds=#s2#", "", "14.92%"};
- { 10, 28407, "", "=q3=Elementium Band of the Sentry", "=ds=#s13#", "", "10.70%"};
- { 11, 28418, "", "=q3=Shiffar's Nexus-Horn", "=ds=#s14#", "", "12.23%"};
- { 12, 28412, "", "=q3=Lamp of Peaceful Radiance", "=ds=#s15#", "", "13.15%"};
- { 13, 28416, "", "=q3=Hungering Spineripper", "=ds=#h1#, #w4#", "", "12.35%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30582, "", "=q4=Deadly Fire Opal", "=ds=#e7#", "", "0.18%"};
- { 19, 30575, "", "=q4=Nimble Fire Opal", "=ds=#e7#", "", "0.18%"};
- { 20, 30581, "", "=q4=Durable Fire Opal", "=ds=#e7#", "", "0.18%"};
- { 22, 29241, "", "=q4=Belt of Depravity", "=ds=#s10#, #a1#", "", "8.47%"};
- { 23, 29248, "", "=q4=Shadowstep Striders", "=ds=#s12#, #a2#", "", "0.61%"};
- { 24, 29252, "", "=q4=Bracers of Dignity", "=ds=#s8#, #a4#", "", "3.03%"};
- { 25, 29360, "", "=q4=Vileblade of the Betrayer", "=ds=#h1#, #w4#", "", "0.18%"};
- { 27, 33861, "", "=q1=The Scroll of Skyriss", "=ds=#m3#", "", "100%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], "=q5="..BabbleZone["The Botanica"]};
- { 2, 24172, "", "=q4=Design: Coronet of Verdant Flame", "=ds=#p12# (370) =q1=#n92#", "", "0.27%"};
- { 4, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], "=q5="..BabbleZone["The Mechanar"]};
- { 5, 22920, "", "=q2=Recipe: Major Fire Protection Potion", "=ds=#p1# (360) =q1=#n93#", "", "0.30%"};
- { 6, 21906, "", "=q2=Pattern: Arcanoweave Boots", "=ds=#p8# (360) =q1=#n93#", "", "0.57%"};
- { 8, 0, "INV_Box_01", "=q6="..AL["Overcharged Manacell"], "=q5="..BabbleZone["The Mechanar"]};
- { 9, 30824, "", "=q1=Overcharged Manacell", "=ds=#m3#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], "=q5="..BabbleZone["The Arcatraz"]};
- { 17, 23606, "", "=q3=Plans: Felsteel Leggings", "=ds=#p2# (360), =q1=#n57#", "", "3.93%"};
- { 18, 22556, "", "=q2=Formula: Enchant 2H Weapon - Major Agility", "=ds=#p4# (360) =q1=#n89#", "", "1.68%"};
- { 19, 29672, "", "=q2=Pattern: Flame Armor Kit", "=ds=#p7# (340) =q1=#n91#", "", "1.84%"};
- { 20, 21905, "", "=q2=Pattern: Arcanoweave Bracers", "=ds=#p8# (350) =q1=#n90#", "", "1.21%"};
- { 22, 0, "INV_Box_01", "=q6="..AL["Third Fragment Guardian"], "=q5="..BabbleZone["The Arcatraz"]};
- { 23, 24488, "", "=q1=Third Key Fragment", "=ds=#m3#", "", "100%"};
- };
+ {
+ Name = BabbleBoss["Gurtogg Bloodboil"];
+ { 1, 32337, "", "=q4=Shroud of Forgiveness", "=ds=#s4#", "", "16%" };
+ { 2, 32338, "", "=q4=Blood-cursed Shoulderpads", "=ds=#s3#, #a1#", "", "15%" };
+ { 3, 32340, "", "=q4=Garments of Temperance", "=ds=#s5#, #a1#", "", "15%" };
+ { 4, 32339, "", "=q4=Belt of Primal Majesty", "=ds=#s10#, #a2#", "", "14%" };
+ { 5, 32334, "", "=q4=Vest of Mounting Assault", "=ds=#s5#, #a3#", "", "15%" };
+ { 6, 32342, "", "=q4=Girdle of Mighty Resolve", "=ds=#s10#, #a4#", "", "8%" };
+ { 7, 32333, "", "=q4=Girdle of Stability", "=ds=#s10#, #a4#", "", "16%" };
+ { 8, 32341, "", "=q4=Leggings of Divine Retribution", "=ds=#s11#, #a4#", "", "14%" };
+ { 16, 32335, "", "=q4=Unstoppable Aggressor's Ring", "=ds=#s13#", "", "16%" };
+ { 17, 32501, "", "=q4=Shadowmoon Insignia", "=ds=#s14#", "", "15%" };
+ { 18, 32269, "", "=q4=Messenger of Fate", "=ds=#h1#, #w4#", "", "16%" };
+ { 19, 32344, "", "=q4=Staff of Immaculate Recovery", "=ds=#h2#, #w9#", "", "15%" };
+ { 20, 32343, "", "=q4=Wand of Prismatic Focus", "=ds=#w12#", "", "14%" };
+ { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
-
- ----------------------------------
- --- Tempest Keep: The Botanica ---
- ----------------------------------
-
- AtlasLoot_Data["TKBot"] = {
- Name = BabbleZone["Tempest Keep"]..": "..BabbleZone["The Botanica"];
- DisplayName = BabbleZone["The Botanica"];
- Type = "BCDungeon";
- Map = "TempestKeepBotanica";
- {
- Name = BabbleBoss["Commander Sarannis"];
- { 1, 28301, "", "=q3=Syrannis' Mystic Sheen", "=ds=#s4#", "", "28.54%"};
- { 2, 28304, "", "=q3=Prismatic Mittens of Mending", "=ds=#s9#, #a1#", "", "32.46%"};
- { 3, 28306, "", "=q3=Towering Mantle of the Hunt", "=ds=#s3#, #a3#", "", "30.68%"};
- { 4, 28296, "", "=q3=Libram of the Lightbringer", "=ds=#s16#, #w16#", "", "34.10%"};
- { 5, 28311, "", "=q3=Revenger", "=ds=#h1#, #w10#", "", "26.25%"};
- { 7, 28769, "", "=q1=The Keystone", "=ds=#m3#", "", "100%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30574, "", "=q4=Brutal Tanzanite", "=ds=#e7#", "", "8.00%"};
- { 19, 30572, "", "=q4=Imperial Tanzanite", "=ds=#e7#", "", "8.00%"};
- { 20, 30573, "", "=q4=Mysterious Fire Opal", "=ds=#e7#", "", "8.00%"};
- };
- {
- Name = BabbleBoss["High Botanist Freywinn"];
- { 1, 28317, "", "=q3=Energis Armwraps", "=ds=#s9#, #a1#", "", "17.60%"};
- { 2, 28318, "", "=q3=Obsidian Clodstompers", "=ds=#s12#, #a4#", "", "16.48%"};
- { 3, 28321, "", "=q3=Enchanted Thorium Torque", "=ds=#s2#", "", "18.09%"};
- { 4, 28315, "", "=q3=Stormreaver Warblades", "=ds=#h4#, #w13#", "", "16.75%"};
- { 5, 28316, "", "=q3=Aegis of the Sunbird", "=ds=#w8#", "", "14.60%"};
- { 7, 23617, "", "=q3=Plans: Earthpeace Breastplate", "=ds=#p2# (370)", "", "1.07%"};
- { 9, 31744, "", "=q1=Botanist's Field Guide", "=ds=#m3#", "", "100%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30574, "", "=q4=Brutal Tanzanite", "=ds=#e7#", "", "8.00%"};
- { 19, 30572, "", "=q4=Imperial Tanzanite", "=ds=#e7#", "", "8.00%"};
- { 20, 30573, "", "=q4=Mysterious Fire Opal", "=ds=#e7#", "", "8.00%"};
- };
- {
- Name = BabbleBoss["Thorngrin the Tender"];
- { 1, 24310, "", "=q4=Pattern: Battlecast Pants", "=ds=#p8# (375)", "", "0.44%"};
- { 3, 28324, "", "=q3=Gauntlets of Cruel Intention", "=ds=#s9#, #a4#", "", "15.56%"};
- { 4, 28327, "", "=q3=Arcane Netherband", "=ds=#s13#", "", "17.77%"};
- { 5, 28323, "", "=q3=Ring of Umbral Doom", "=ds=#s13#", "", "16.25%"};
- { 6, 28322, "", "=q3=Runed Dagger of Solace", "=ds=#h3#, #w4#", "", "18.16%"};
- { 7, 28325, "", "=q3=Dreamer's Dragonstaff", "=ds=#h2#, #w9#", "", "15.46%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30574, "", "=q4=Brutal Tanzanite", "=ds=#e7#", "", "8.00%"};
- { 19, 30572, "", "=q4=Imperial Tanzanite", "=ds=#e7#", "", "8.00%"};
- { 20, 30573, "", "=q4=Mysterious Fire Opal", "=ds=#e7#", "", "8.00%"};
- };
- {
- Name = BabbleBoss["Laj"];
- { 1, 27739, "", "=q3=Spaulders of the Righteous", "=ds=#s3#, #a4# (D3)", "", "18.13%"};
- { 3, 28328, "", "=q3=Mithril-Bark Cloak", "=ds=#s4#", "", "20.88%"};
- { 4, 28338, "", "=q3=Devil-Stitched Leggings", "=ds=#s11#, #a1#", "", "18.71%"};
- { 5, 28340, "", "=q3=Mantle of Autumn", "=ds=#s3#, #a2#", "", "17.19%"};
- { 6, 28339, "", "=q3=Boots of the Shifting Sands", "=ds=#s12#, #a2#", "", "19.07%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30574, "", "=q4=Brutal Tanzanite", "=ds=#e7#", "", "8.00%"};
- { 19, 30572, "", "=q4=Imperial Tanzanite", "=ds=#e7#", "", "8.00%"};
- { 20, 30573, "", "=q4=Mysterious Fire Opal", "=ds=#e7#", "", "8.00%"};
- };
- {
- Name = BabbleBoss["Warp Splinter"];
- { 1, 24311, "", "=q4=Pattern: Whitemend Hood", "=ds=#p8# (375)", "", "0.30%"};
- { 3, 28371, "", "=q3=Netherfury Cape", "=ds=#s4#", "", "13.52%"};
- { 4, 28342, "", "=q3=Warp Infused Drape", "=ds=#s5#, #a1#", "", "10.27%"};
- { 5, 28347, "", "=q3=Warpscale Leggings", "=ds=#s11#, #a2#", "", "11.74%"};
- { 6, 28343, "", "=q3=Jagged Bark Pendant", "=ds=#s2#", "", "12.34%"};
- { 7, 28370, "", "=q3=Bangle of Endless Blessings", "=ds=#s14#", "", "12.38%"};
- { 8, 28345, "", "=q3=Warp Splinter's Thorn", "=ds=#h1#, #w4#", "", "10.37%"};
- { 9, 28367, "", "=q3=Greatsword of Forlorn Visions", "=ds=#h2#, #w10#", "", "11.64%"};
- { 10, 28341, "", "=q3=Warpstaff of Arcanum", "=ds=#h2#, #w9#", "", "10.47%"};
- { 12, 31085, "", "=q1=Top Shard of the Arcatraz Key", "=ds=#m3#", "", "100%"};
- { 16, 28229, "", "=q3=Incanter's Robe", "=ds=#s5#, #a1# (D3)", "", "8.42%"};
- { 17, 28348, "", "=q3=Moonglade Cowl", "=ds=#s1#, #a2# (D3)", "", "11.17%"};
- { 18, 28349, "", "=q3=Tidefury Helm", "=ds=#s1#, #a3# (D3)", "", "13.85%"};
- { 19, 28228, "", "=q3=Beast Lord Curiass", "=ds=#s5#, #a3# (D3)", "", "9.59%"};
- { 20, 28350, "", "=q3=Warhelm of the Bold", "=ds=#s1#, #a4# (D3)", "", "8.96%"};
- };
- { -- only heroic
- Name = BabbleBoss["Warp Splinter"].." ("..AL["Heroic"]..")";
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 29258, "", "=q4=Boots of Ethereal Manipulation", "=ds=#s11#, #a1#"};
- { 3, 29262, "", "=q4=Boots of the Endless Hunt", "=ds=#s12#, #a3#", "", "4.00%"};
- { 4, 32072, "", "=q4=Gauntlets of Dissension", "=ds=#s9#, #a4#"};
- { 5, 29359, "", "=q4=Feral Staff of Lashing", "=ds=#h2#, #w9#"};
- { 6, 24311, "", "=q4=Pattern: Whitemend Hood", "=ds=#p8# (375)", "", "0.30%"};
- { 8, 28371, "", "=q3=Netherfury Cape", "=ds=#s4#", "", "4.00%"};
- { 9, 28342, "", "=q3=Warp Infused Drape", "=ds=#s5#, #a1#", "", "8.00%"};
- { 10, 28347, "", "=q3=Warpscale Leggings", "=ds=#s11#, #a2#", "", "12.00%"};
- { 11, 28343, "", "=q3=Jagged Bark Pendant", "=ds=#s2#", "", "4.00%"};
- { 12, 28370, "", "=q3=Bangle of Endless Blessings", "=ds=#s14#", "", "28.00%"};
- { 13, 28345, "", "=q3=Warp Splinter's Thorn", "=ds=#h1#, #w4#", "", "28.00%"};
- { 14, 28367, "", "=q3=Greatsword of Forlorn Visions", "=ds=#h2#, #w10#", "", "8.00%"};
- { 15, 28341, "", "=q3=Warpstaff of Arcanum", "=ds=#h2#, #w9#", "", "4.00%"};
- { 16, 30574, "", "=q4=Brutal Tanzanite", "=ds=#e7#", "", "8.00%"};
- { 17, 30572, "", "=q4=Imperial Tanzanite", "=ds=#e7#", "", "8.00%"};
- { 18, 30573, "", "=q4=Mysterious Fire Opal", "=ds=#e7#", "", "8.00%"};
- { 20, 28229, "", "=q3=Incanter's Robe", "=ds=#s5#, #a1# (D3)", "", "4.00%"};
- { 21, 28348, "", "=q3=Moonglade Cowl", "=ds=#s1#, #a2# (D3)", "", "12.00%"};
- { 22, 28349, "", "=q3=Tidefury Helm", "=ds=#s1#, #a3# (D3)", "", "12.00%"};
- { 23, 28228, "", "=q3=Beast Lord Curiass", "=ds=#s5#, #a3# (D3)", "", "20.00%"};
- { 24, 28350, "", "=q3=Warhelm of the Bold", "=ds=#s1#, #a4# (D3)", "", "16.00%"};
- { 26, 31085, "", "=q1=Top Shard of the Arcatraz Key", "=ds=#m3#", "", "100%"};
- { 27, 33859, "", "=q1=Warp Splinter Clipping", "=ds=#m3#", "", "100%"};
- };
+ {
+ Name = "Essence of Souls";
+ { 1, 32353, "", "=q4=Gloves of Unfailing Faith", "=ds=#s9#, #a1#", "", "17%" };
+ { 2, 32351, "", "=q4=Elunite Empowered Bracers", "=ds=#s8#, #a2#", "", "8%" };
+ { 3, 32347, "", "=q4=Grips of Damnation", "=ds=#s9#, #a2#", "", "16%" };
+ { 4, 32352, "", "=q4=Naturewarden's Treads", "=ds=#s12#, #a2#", "", "9%" };
+ { 5, 32517, "", "=q4=The Wavemender's Mantle", "=ds=#s3#, #a3#", "", "17%" };
+ { 6, 32346, "", "=q4=Boneweave Girdle", "=ds=#s10#, #a3#", "", "16%" };
+ { 7, 32354, "", "=q4=Crown of Empowered Fate", "=ds=#s1#, #a4#", "", "16%" };
+ { 8, 32345, "", "=q4=Dreadboots of the Legion", "=ds=#s12#, #a4#", "", "15%" };
+ { 16, 32349, "", "=q4=Translucent Spellthread Necklace", "=ds=#s2#", "", "16%" };
+ { 17, 32362, "", "=q4=Pendant of Titans", "=ds=#s2#", "", "15%" };
+ { 18, 32350, "", "=q4=Touch of Inspiration", "=ds=#s15#", "", "16%" };
+ { 19, 32332, "", "=q4=Torch of the Damned", "=ds=#h2#, #w6#", "", "17%" };
+ { 20, 32363, "", "=q4=Naaru-Blessed Life Rod", "=ds=#w12#", "", "14%" };
+ { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
-
-
-
- ----------------------------------
- --- Tempest Keep: The Mechanar ---
- ----------------------------------
-
- AtlasLoot_Data["TKMech"] = {
- Name = BabbleZone["Tempest Keep"]..": "..BabbleZone["The Mechanar"];
- DisplayName = BabbleZone["The Mechanar"];
- Type = "BCDungeon";
- Map = "TempestKeepMechanar";
- {
- Name = AL["Cache of the Legion"];
- { 1, 0, "INV_Box_01", "=q6="..AL["Cache of the Legion"], ""};
- { 2, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 3, 28249, "", "=q3=Capacitus' Cloak of Calibration", "=ds=#s4#", "", "21.16%"};
- { 4, 28250, "", "=q3=Vestia's Pauldrons of Inner Grace", "=ds=#s3#, #a1#", "", "17.89%"};
- { 5, 28252, "", "=q3=Bloodfyre Robes of Annihilation", "=ds=#s5#, #a1#", "", "22.53%"};
- { 6, 28251, "", "=q3=Boots of the Glade-Keeper", "=ds=#s12#, #a2#", "", "18.74%"};
- { 7, 28248, "", "=q3=Totem of the Void", "=ds=#s16#, #w15#", "", "19.58%"};
- { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Gatewatcher Gyro-Kill"], ""};
- { 17, 30436, "", "=q1=Jagged Blue Crystal", "=ds=#e9#", "", "100%"};
- { 19, 0, "INV_Box_01", "=q6="..BabbleBoss["Gatewatcher Iron-Hand"], ""};
- { 20, 30437, "", "=q1=Jagged Red Crystal", "=ds=#e9#", "", "100%"};
- };
- {
- Name = BabbleBoss["Mechano-Lord Capacitus"];
- { 1, 28256, "", "=q3=Thoriumweave Cloak", "=ds=#s4#", "", "14.81%"};
- { 2, 28255, "", "=q3=Lunar-Claw Pauldrons", "=ds=#s3#, #a2#", "", "16.98%"};
- { 3, 28254, "", "=q3=Warp Engineer's Prismatic Chain", "=ds=#s2#", "", "16.81%"};
- { 4, 28257, "", "=q3=Hammer of the Penitent", "=ds=#h3#, #w6#", "", "14.36%"};
- { 5, 28253, "", "=q3=Plasma Rat's Hyper-Scythe", "=ds=#w7#", "", "17.69%"};
- { 7, 35582, "", "=q3=Schematic: Rocket Boots Xtreme Lite", "=ds=#p5# (355)"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30565, "", "=q4=Assassin's Fire Opal", "=ds=#e7#", "", "18.72%"};
- { 19, 30566, "", "=q4=Defender's Tanzanite", "=ds=#e7#", "", "8.87%"};
- { 20, 30564, "", "=q4=Shining Fire Opal", "=ds=#e7#", "", "3.45%"};
- };
- {
- Name = BabbleBoss["Nethermancer Sepethrea"];
- { 1, 28262, "", "=q3=Jade-Skull Breastplate", "=ds=#s5#, #a4#", "", "15.37%"};
- { 2, 28259, "", "=q3=Cosmic Lifeband", "=ds=#s13#", "", "18.06%"};
- { 3, 28260, "", "=q3=Manual of the Nethermancer", "=ds=#s15#", "", "15.61%"};
- { 4, 28263, "", "=q3=Stellaris", "=ds=#h1#, #w1#", "", "15.58%"};
- { 5, 28258, "", "=q3=Nethershrike", "=ds=#w11#", "", "15.88%"};
- { 7, 22920, "", "=q2=Recipe: Major Fire Protection Potion", "=ds=#p1# (360) =q1=#n93#"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 30565, "", "=q4=Assassin's Fire Opal", "=ds=#e7#", "", "18.72%"};
- { 19, 30566, "", "=q4=Defender's Tanzanite", "=ds=#e7#", "", "8.87%"};
- { 20, 30564, "", "=q4=Shining Fire Opal", "=ds=#e7#", "", "3.45%"};
- };
- {
- Name = BabbleBoss["Pathaleon the Calculator"];
- { 1, 28269, "", "=q3=Baba's Cloak of Arcanistry", "=ds=#s4#", "", "11.82%"};
- { 2, 28266, "", "=q3=Molten Earth Kilt", "=ds=#s11#, #a3#", "", "14.29%"};
- { 3, 28265, "", "=q3=Dath'Remar's Ring of Defense", "=ds=#s13#", "", "8.87%"};
- { 4, 28288, "", "=q3=Abacus of Violent Odds", "=ds=#s14#", "", "8.37%"};
- { 5, 27899, "", "=q3=Mana Wrath", "=ds=#h3#, #w10#", "", "9.36%"};
- { 6, 28267, "", "=q3=Edge of the Cosmos", "=ds=#h1#, #w10#", "", "11.82%"};
- { 7, 28286, "", "=q3=Telescopic Sharprifle", "=ds=#w5#", "", "9.85%"};
- { 9, 28278, "", "=q3=Incanter's Cowl", "=ds=#s1#, #a1# (D3)", "", "14.29%"};
- { 10, 28202, "", "=q3=Moonglade Robe", "=ds=#s5#, #a2# (D3)", "", "11.33%"};
- { 11, 28204, "", "=q3=Tunic of Assassination", "=ds=#s5#, #a2# (D3)", "", "8.87%"};
- { 12, 28275, "", "=q3=Beast Lord Helm", "=ds=#s1#, #a3# (D3)", "", "14.78%"};
- { 13, 28285, "", "=q3=Helm of the Righteous", "=ds=#s1#, #a4# (D3)", "", "10.34%"};
- { 15, 21907, "", "=q2=Pattern: Arcanoweave Robe", "=ds=#p8# (370)", "", "1.11%"};
- { 16, 0, "INV_Box_01", "#j27#", ""};
- { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 18, 29251, "", "=q4=Boots of the Pious", "=ds=#s12#, #a1#", "", "7.88%"};
- { 19, 32076, "", "=q4=Handguards of the Steady", "=ds=#s9#, #a3#"};
- { 20, 30533, "", "=q4=Vanquisher's Legplates", "=ds=#s11#, #a4#", "", "6.90%"};
- { 21, 29362, "", "=q4=The Sun Eater", "=ds=#h1#, #w10#", "", "1.48%"};
- { 23, 30565, "", "=q4=Assassin's Fire Opal", "=ds=#e7#", "", "18.72%"};
- { 24, 30566, "", "=q4=Defender's Tanzanite", "=ds=#e7#", "", "8.87%"};
- { 25, 30564, "", "=q4=Shining Fire Opal", "=ds=#e7#", "", "3.45%"};
- { 29, 33860, "", "=q1=Pathaleon's Projector", "=ds=#m3#", "", "100%"};
- { 30, 31086, "", "=q1=Bottom Shard of the Arcatraz Key", "=ds=#m3#", "", "100%"};
- };
+ {
+ Name = BabbleBoss["Mother Shahraz"];
+ { 1, 32367, "", "=q4=Leggings of Devastation", "=ds=#s11#, #a1#", "", "16%" };
+ { 2, 32366, "", "=q4=Shadowmaster's Boots", "=ds=#s12#, #a2#", "", "15%" };
+ { 3, 32365, "", "=q4=Heartshatter Breastplate", "=ds=#s5#, #a4#", "", "15%" };
+ { 4, 32370, "", "=q4=Nadina's Pendant of Purity", "=ds=#s2#", "", "15%" };
+ { 5, 32368, "", "=q4=Tome of the Lightbringer", "=ds=#s16#, #w16#", "", "15%" };
+ { 6, 32369, "", "=q4=Blade of Savagery", "=ds=#h1#, #w10#", "", "15%" };
+ { 16, 31101, "", "=q4=Pauldrons of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "76%" };
+ { 17, 31103, "", "=q4=Pauldrons of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "80%" };
+ { 18, 31102, "", "=q4=Pauldrons of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "77%" };
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
- -----------------------------
- --- Tempest Keep: The Eye ---
- -----------------------------
-
- AtlasLoot_Data["TKEye"] = {
- Name = BabbleZone["Tempest Keep"]..": "..BabbleZone["The Eye"];
- DisplayName = BabbleZone["The Eye"];
- Type = "BCRaid";
- Map = "TempestKeepTheEye";
- {
- Name = BabbleBoss["Al'ar"];
- { 1, 29925, "", "=q4=Phoenix-Wing Cloak", "=ds=#s4#", "", "23%"};
- { 2, 29918, "", "=q4=Mindstorm Wristbands", "=ds=#s8#, #a1#", "", "22%"};
- { 3, 29947, "", "=q4=Gloves of the Searing Grip", "=ds=#s9#, #a2#", "", "23%"};
- { 4, 29921, "", "=q4=Fire Crest Breastplate", "=ds=#s5#, #a3#", "", "20%"};
- { 5, 29922, "", "=q4=Band of Al'ar", "=ds=#s13#", "", "21%"};
- { 6, 29920, "", "=q4=Phoenix-Ring of Rebirth", "=ds=#s13#", "", "21%"};
- { 7, 30448, "", "=q4=Talon of Al'ar", "=ds=#s14#, =q1=#m1# =ds=#c2#", "", "22%"};
- { 8, 30447, "", "=q4=Tome of Fiery Redemption", "=ds=#s14#, =q1=#m1# =ds=#c4#", "", "21%"};
- { 9, 29923, "", "=q4=Talisman of the Sun King", "=ds=#s15#", "", "23%"};
- { 16, 32944, "", "=q4=Talon of the Phoenix", "=ds=#h3#, #w13#", "", "12%"};
- { 17, 29948, "", "=q4=Claw of the Phoenix", "=ds=#h4#, #w13#", "", "10%"};
- { 18, 29924, "", "=q4=Netherbane", "=ds=#h1#, #w1#", "", "21%"};
- { 19, 29949, "", "=q4=Arcanite Steam-Pistol", "=ds=#w5#", "", "22%"};
- { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 22, 1816254, "", "=q3=Forumla: Enchant Cloak - Phoenix Fire", "=ds=#p4# (375)", "", "6.75%"};
- };
- {
- Name = BabbleBoss["Void Reaver"];
- { 1, 29986, "", "=q4=Cowl of the Grand Engineer", "=ds=#s1#, #a1#", "", "13%"};
- { 2, 29984, "", "=q4=Girdle of Zaetar", "=ds=#s10#, #a2#", "", "13%"};
- { 3, 29985, "", "=q4=Void Reaver Greaves", "=ds=#s11#, #a3#", "", "14%"};
- { 4, 29983, "", "=q4=Fel-Steel Warhelm", "=ds=#s1#, #a4#", "", "12%"};
- { 5, 32515, "", "=q4=Wristguards of Determination", "=ds=#s8#, #a4#", "", "13%"};
- { 6, 30619, "", "=q4=Fel Reaver's Piston", "=ds=#s14#", "", "13%"};
- { 7, 30450, "", "=q4=Warp-Spring Coil", "=ds=#s14#, =q1=#m1# =ds=#c6#", "", "12%"};
- { 16, 30249, "", "=q4=Pauldrons of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5SHOULDER"};
- { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["High Astromancer Solarian"];
- { 1, 29977, "", "=q4=Star-Soul Breeches", "=ds=#s11#, #a1#", "", "19%"};
- { 2, 29972, "", "=q4=Trousers of the Astromancer", "=ds=#s11#, #a1#", "", "19%"};
- { 3, 29966, "", "=q4=Vambraces of Ending", "=ds=#s8#, #a2#", "", "23%"};
- { 4, 29976, "", "=q4=Worldstorm Gauntlets", "=ds=#s9#, #a3#", "", "18%"};
- { 5, 29951, "", "=q4=Star-Strider Boots", "=ds=#s12#, #a3#", "", "23%"};
- { 6, 29965, "", "=q4=Girdle of the Righteous Path", "=ds=#s10#, #a4#", "", "21%"};
- { 7, 29950, "", "=q4=Greaves of the Bloodwarder", "=ds=#s11#, #a4#", "", "19%"};
- { 8, 32267, "", "=q4=Boots of the Resilient", "=ds=#s12#, #a4#", "", "17%"};
- { 16, 30446, "", "=q4=Solarian's Sapphire", "=ds=#s14#, =q1=#m1# =ds=#c9#", "", "21%"};
- { 17, 30449, "", "=q4=Void Star Talisman", "=ds=#s14#, =q1=#m1# =ds=#c8#", "", "22%"};
- { 18, 29962, "", "=q4=Heartrazor", "=ds=#h1#, #w4#", "", "23%"};
- { 19, 29981, "", "=q4=Ethereum Life-Staff", "=ds=#w9#", "", "21%"};
- { 20, 29982, "", "=q4=Wand of the Forgotten Star", "=ds=#w12#", "", "18%"};
- { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- };
- {
- Name = BabbleBoss["Kael'thas Sunstrider"];
- { 1, 29992, "", "=q4=Royal Cloak of the Sunstriders", "=ds=#s4#", "", "14%"};
- { 2, 29989, "", "=q4=Sunshower Light Cloak", "=ds=#s4#", "", "12%"};
- { 3, 29994, "", "=q4=Thalassian Wildercloak", "=ds=#s4#", "", "14%"};
- { 4, 29990, "", "=q4=Crown of the Sun", "=ds=#s1#, #a1#", "", "14%"};
- { 5, 29987, "", "=q4=Gauntlets of the Sun King", "=ds=#s9#, #a1#", "", "14%"};
- { 6, 29995, "", "=q4=Leggings of Murderous Intent", "=ds=#s11#, #a2#", "", "15%"};
- { 7, 29991, "", "=q4=Sunhawk Leggings", "=ds=#s11#, #a3#", "", "13%"};
- { 8, 29998, "", "=q4=Royal Gauntlets of Silvermoon", "=ds=#s9#, #a4#", "", "12%"};
- { 9, 29997, "", "=q4=Band of the Ranger-General", "=ds=#s13#", "", "14%"};
- { 10, 29993, "", "=q4=Twinblade of the Phoenix", "=ds=#h2#, #w10#", "", "12%"};
- { 11, 29996, "", "=q4=Rod of the Sun King", "=ds=#h1#, #w6#", "", "15%"};
- { 12, 29988, "", "=q4=The Nexus Key", "=ds=#h2#, #w9#", "", "14%"};
- { 14, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 16, 30237, "", "=q4=Chestguard of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5CHEST"};
- { 18, 32458, "", "=q4=Ashes of Al'ar", "=ds=#e12#", "", "2%"};
- { 19, 32405, "", "=q4=Verdant Sphere", "=ds=#m2#", "", "100%"};
- { 20, 30018, "", "=q4=Lord Sanguinar's Claim", "=q1=#m4#: =ds=#s2#"};
- { 21, 30017, "", "=q4=Telonicus's Pendant of Mayhem", "=q1=#m4#: =ds=#s2#"};
- { 22, 30007, "", "=q4=The Darkener's Grasp", "=q1=#m4#: =ds=#s2#"};
- { 23, 30015, "", "=q4=The Sun King's Talisman", "=q1=#m4#: =ds=#s2#"};
- { 25, 29905, "", "=q1=Kael's Vial Remnant", "=ds=#m3#", "", "37%"};
- { 26, 450001, "", "=q5=Intact Vial of Kael'thas Sunstrider", "", "", "5%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 30024, "", "=q4=Mantle of the Elven Kings", "=ds=#s3#, #a1#", "", "3%"};
- { 2, 30020, "", "=q4=Fire-Cord of the Magus", "=ds=#s10#, #a1#", "", "2%"};
- { 3, 30029, "", "=q4=Bark-Gloves of Ancient Wisdom", "=ds=#s9#, #a2#", "", "2%"};
- { 4, 30026, "", "=q4=Bands of the Celestial Archer", "=ds=#s8#, #a3#", "", "2%"};
- { 5, 30030, "", "=q4=Girdle of Fallen Stars", "=ds=#s10#, #a3#", "", "2%"};
- { 6, 30028, "", "=q4=Seventh Ring of the Tirisfalen", "=ds=#s13#", "", "2%"};
- { 7, 2032902, "", "=q4=Bottled Nethergron Extract", "=ds=#s14#, =q1=#m1# =ds=#c6#", "", "2%"};
- { 9, 30324, "", "=q4=Plans: Red Havoc Boots", "=ds=#p2# (375)", "", "1%"};
- { 10, 30322, "", "=q4=Plans: Red Belt of Battle", "=ds=#p2# (375)", "", "2%"};
- { 11, 30323, "", "=q4=Plans: Boots of the Protector", "=ds=#p2# (375)", "", "2%"};
- { 12, 30321, "", "=q4=Plans: Belt of the Guardian", "=ds=#p2# (375)", "", "2%"};
- { 13, 30280, "", "=q4=Pattern: Belt of Blasting", "=ds=#p8# (375)", "", "1%"};
- { 14, 30282, "", "=q4=Pattern: Boots of Blasting", "=ds=#p8# (375)", "", "1%"};
- { 15, 30283, "", "=q4=Pattern: Boots of the Long Road", "=ds=#p8# (375)", "", "2%"};
- { 16, 30281, "", "=q4=Pattern: Belt of the Long Road", "=ds=#p8# (375)", "", "1%"};
- { 17, 30308, "", "=q4=Pattern: Hurricane Boots", "=ds=#p7# (375)", "", "1%"};
- { 18, 30304, "", "=q4=Pattern: Monsoon Belt", "=ds=#p7# (375)", "", "1%"};
- { 19, 30305, "", "=q4=Pattern: Boots of Natural Grace", "=ds=#p7# (375)", "", "2%"};
- { 20, 30307, "", "=q4=Pattern: Boots of the Crimson Hawk", "=ds=#p7# (375)", "", "1%"};
- { 21, 30306, "", "=q4=Pattern: Boots of Utter Darkness", "=ds=#p7# (375)", "", "2%"};
- { 22, 30301, "", "=q4=Pattern: Belt of Natural Power", "=ds=#p7# (375)", "", "1%"};
- { 23, 30303, "", "=q4=Pattern: Belt of the Black Eagle", "=ds=#p7# (375)", "", "1%"};
- { 24, 30302, "", "=q4=Pattern: Belt of Deep Shadow", "=ds=#p7# (375)", "", "1%"};
- { 26, 30183, "", "=q4=Nether Vortex", "=ds=#e8#", "", "75%"};
- { 28, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"};
- };
- {
- Name = "Legendary Items for Kael'thas Fight";
- { 1, 30312, "", "=q5=Infinity Blade", "=ds=#h1#, #w4#"};
- { 2, 30311, "", "=q5=Warp Slicer", "=ds=#h1#, #w10#"};
- { 3, 30317, "", "=q5=Cosmic Infuser", "=ds=#h3#, #w6#"};
- { 4, 30316, "", "=q5=Devastation", "=ds=#h2#, #w1#"};
- { 5, 30313, "", "=q5=Staff of Disintegration", "=ds=#h2#, #w9#"};
- { 6, 30314, "", "=q5=Phaseshift Bulwark", "=ds=#w8#"};
- { 7, 30318, "", "=q5=Netherstrand Longbow", "=ds=#w2#, =q1=#m1# =ds=#c2#"};
- { 8, 30319, "", "=q5=Nether Spike", "=ds=#w17#"};
- };
+ {
+ Name = BabbleBoss["The Illidari Council"];
+ { 1, 32331, "", "=q4=Cloak of the Illidari Council", "=ds=#s4#", "", "16%" };
+ { 2, 32519, "", "=q4=Belt of Divine Guidance", "=ds=#s10#, #a1#", "", "16%" };
+ { 3, 32518, "", "=q4=Veil of Turning Leaves", "=ds=#s3#, #a2#", "", "12%" };
+ { 4, 32376, "", "=q4=Forest Prowler's Helm", "=ds=#s1#, #a3#", "", "17%" };
+ { 5, 32373, "", "=q4=Helm of the Illidari Shatterer", "=ds=#s1#, #a4#", "", "17%" };
+ { 6, 32505, "", "=q4=Madness of the Betrayer", "=ds=#s14#", "", "16%" };
+ { 16, 31098, "", "=q4=Leggings of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "34%" };
+ { 17, 31100, "", "=q4=Leggings of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "33%" };
+ { 18, 31099, "", "=q4=Leggings of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "34%" };
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
-
-
- ----------------
- --- Zul'Aman ---
- ----------------
-
- AtlasLoot_Data["ZulAman"] = {
- Name = BabbleZone["Zul'Aman"];
- Type = "BCRaid";
- Map = "ZulAman";
- {
- Name = BabbleBoss["Nalorakk"];
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 33203, "", "=q4=Robes of Heavenly Purpose", "=ds=#s5#, #a1#", "", "13%"};
- { 3, 33285, "", "=q4=Fury of the Ursine", "=ds=#s8#, #a1#", "", "13%"};
- { 4, 33211, "", "=q4=Bladeangel's Money Belt", "=ds=#s10#, #a2#", "", "14%"};
- { 5, 33206, "", "=q4=Pauldrons of Primal Fury", "=ds=#s3#, #a3#", "", "13%"};
- { 6, 33327, "", "=q4=Mask of Introspection", "=ds=#s1#, #a4#", "", "13%"};
- { 7, 33191, "", "=q4=Jungle Stompers", "=ds=#s12#, #a4#", "", "13%"};
- { 8, 33640, "", "=q4=Fury", "=ds=#h4#, #w13#", "", "14%"};
- { 16, 33496, "", "=q4=Signet of Primal Wrath", "=ds=#s13#", "", "23%"};
- { 17, 33498, "", "=q4=Signet of the Quiet Forest", "=ds=#s13#", "", "21%"};
- { 18, 33971, "", "=q4=Elunite Imbued Leggings", "=ds=#s11#, #a2#", "", "10%"};
- { 19, 33495, "", "=q4=Rage", "=ds=#h3#, #w13#", "", "12%"};
- { 20, 33480, "", "=q4=Cord of BBCRaided Troll Hair", "=ds=#s10#, #a1#", "", "10%"};
-
- };
- {
- Name = BabbleBoss["Akil'zon"];
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 33286, "", "=q4=Mojo-mender's Mask", "=ds=#s1#, #a3#", "", "13%"};
- { 3, 33215, "", "=q4=Bloodstained Elven Battlevest", "=ds=#s5#, #a4#", "", "13%"};
- { 4, 33216, "", "=q4=Chestguard of Hidden Purpose", "=ds=#s5#, #a4#", "", "13%"};
- { 5, 33281, "", "=q4=Brooch of Nature's Mercy", "=ds=#s2#", "", "13%"};
- { 6, 33293, "", "=q4=Signet of Ancient Magics", "=ds=#s13#", "", "13%"};
- { 7, 33214, "", "=q4=Akil'zon's Talonblade", "=ds=#h1#, #w10#", "", "13%"};
- { 8, 33283, "", "=q4=Amani Punisher", "=ds=#h3#, #w6#", "", "14%"};
- { 16, 33591, "", "=q4=Shadowcaster's Drape", "=ds=#s4#", "", "11%"};
- { 17, 33590, "", "=q4=Cloak of Fiends", "=ds=#s4#", "", "10%"};
- { 18, 33481, "", "=q4=Pauldrons of Stone Resolve", "=ds=#s3#, #a4#", "", "11%"};
- { 19, 33492, "", "=q4=Trollbane", "=ds=#h2#, #w1#", "", "11%"};
- { 20, 33500, "", "=q4=Signet of Eternal Life", "=ds=#s13#", "", "20%"};
- };
- {
- Name = BabbleBoss["Jan'alai"];
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 33357, "", "=q4=Footpads of Madness", "=ds=#s12#, #a1#", "", "13%"};
- { 3, 33356, "", "=q4=Helm of Natural Regeneration", "=ds=#s1#, #a2#", "", "13%"};
- { 4, 33329, "", "=q4=Shadowtooth Trollskin Cuirass", "=ds=#s5#, #a2#", "", "13%"};
- { 5, 33328, "", "=q4=Arrow-fall Chestguard", "=ds=#s5#, #a3#", "", "13%"};
- { 6, 33354, "", "=q4=Wub's Cursed Hexblade", "=ds=#h3#, #w4#", "", "14%"};
- { 7, 33326, "", "=q4=Bulwark of the Amani Empire", "=ds=#w8#", "", "13%"};
- { 8, 33332, "", "=q4=Enamelled Disc of Mojo", "=ds=#w8#", "", "12%"};
- { 16, 33499, "", "=q4=Signet of the Last Defender", "=ds=#s13#", "", "18%"};
- { 17, 33805, "", "=q4=Shadowhunter's Treads", "=ds=#s12#, #a3#", "", "10%"};
- { 18, 33491, "", "=q4=Tuskbreaker", "=ds=#w5#", "", "12%"};
- { 19, 33490, "", "=q4=Staff of Dark Mending", "=ds=#h2#, #w9#", "", "13%"};
- { 20, 33489, "", "=q4=Mantle of Ill Intent", "=ds=#s3#, #a1#", "", "11%"};
- };
- {
- Name = BabbleBoss["Halazzi"];
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 33317, "", "=q4=Robe of Departed Spirits", "=ds=#s5#, #a1#", "", "13%"};
- { 3, 33300, "", "=q4=Shoulderpads of Dancing Blades", "=ds=#s3#, #a2#", "", "14%"};
- { 4, 33322, "", "=q4=Shimmer-pelt Vest", "=ds=#s5#, #a2#", "", "13%"};
- { 5, 33533, "", "=q4=Avalanche Leggings", "=ds=#s11#, #a3#", "", "13%"};
- { 6, 33299, "", "=q4=Spaulders of the Advocate", "=ds=#s3#, #a4#", "", "13%"};
- { 7, 33303, "", "=q4=Skullshatter Warboots", "=ds=#s12#, #a4#", "", "14%"};
- { 8, 33297, "", "=q4=The Savage's Choker", "=ds=#s2#", "", "13%"};
- { 16, 33483, "", "=q4=Life-step Belt", "=ds=#s10#, #a2#", "", "12%"};
- { 17, 33493, "", "=q4=Umbral Shiv", "=ds=#h1#, #w4#", "", "12%"};
- { 18, 33497, "", "=q4=Mana Attuned Band", "=ds=#s13#", "", "18%"};
- { 19, 33979, "", "=q4=Sightless Head", "=ds=#h1#, #w6#", "", ""};
- { 20, 33465, "", "=q4=Staff of Primal Fury", "=ds=#h2#, #w9#", "", "13%"};
- };
- {
- Name = BabbleBoss["Hex Lord Malacrass"];
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 33592, "", "=q4=Cloak of Ancient Rituals", "=ds=#s4#", "", "13%"};
- { 3, 33453, "", "=q4=Hood of Hexing", "=ds=#s1#, #a1#", "", "13%"};
- { 4, 33463, "", "=q4=Hood of the Third Eye", "=ds=#s1#, #a1#", "", "13%"};
- { 5, 33432, "", "=q4=Coif of the Jungle Stalker", "=ds=#s1#, #a3#", "", "15%"};
- { 6, 33464, "", "=q4=Hex Lord's Voodoo Pauldrons", "=ds=#s3#, #a3#", "", "13%"};
- { 7, 33421, "", "=q4=Battleworn Tuskguard", "=ds=#s1#, #a4#", "", "15%"};
- { 8, 33446, "", "=q4=Girdle of Stromgarde's Hope", "=ds=#s10#, #a4#", "", "15%"};
- { 10, 2033307, "", "=q3=Formula: Enchant Weapon - Witchdoctor", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%"};
- { 16, 34029, "", "=q4=Tiny Voodoo Mask", "=ds=#s14#", "", "25%"};
- { 17, 33828, "", "=q4=Tome of Diabolic Remedy", "=ds=#s14#", "", "13%"};
- { 18, 38634, "", "=q4=Troll Dice", "=ds=#s14#", "", "11%"};
- { 19, 33389, "", "=q4=Dagger of Bad Mojo", "=ds=#h1#, #w4#", "", "15%"};
- { 20, 33298, "", "=q4=Prowler's Strikeblade", "=ds=#h1#, #w4#", "", "14%"};
- { 21, 33388, "", "=q4=Heartless", "=ds=#h1#, #w10#", "", "15%"};
- { 22, 33494, "", "=q4=Amani Divining Staff", "=ds=#h2#, #w9#", "", "11%"};
- { 24, 1333809, "", "=q4=Amani Bear", "Time Run", "", "100%"};
- };
- {
- Name = BabbleBoss["Zul'jin"];
- { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 2, 33471, "", "=q4=Two-toed Sandals", "=ds=#s12#, #a1#", "", "15%"};
- { 3, 33479, "", "=q4=Grimgin Faceguard", "=ds=#s1#, #a2#", "", "15%"};
- { 4, 33469, "", "=q4=Hauberk of the Empire's Champion", "=ds=#s5#, #a3#", "", "16%"};
- { 5, 33473, "", "=q4=Chestguard of the Warlord", "=ds=#s5#, #a4#", "", "15%"};
- { 6, 33466, "", "=q4=Loop of Cursed Bones", "=ds=#s2#", "", "14%"};
- { 7, 33830, "", "=q4=Ancient Aqir Artifact", "=ds=#s14#", "", "14%"};
- { 8, 33831, "", "=q4=Berserker's Call", "=ds=#s14#", "", "14%"};
- { 9, 33829, "", "=q4=Hex Shrunken Head", "=ds=#s14#", "", "14%"};
- { 10, 24537, "", "=q4=Waistband of Crushed Skulls", "=ds=#s10#", "", "14%"};
- { 12, 33307, "", "=q3=Formula: Enchant Weapon - Executioner", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%"};
- { 16, 33467, "", "=q4=Blade of Twisted Visions", "=ds=#h3#, #w10#", "", "14%"};
- { 17, 33478, "", "=q4=Jin'rohk, The Great Apocalypse", "=ds=#h2#, #w10#", "", "14%"};
- { 18, 33476, "", "=q4=Cleaver of the Unforgiving", "=ds=#h1#, #w1#", "", "15%"};
- { 19, 33468, "", "=q4=Dark Blessing", "=ds=#h3#, #w6#", "", "15%"};
- { 20, 33474, "", "=q4=Ancient Amani Longbow", "=ds=#w2#", "", "14%"};
- { 21, 34071, "", "=q4=Seething Hate", "=ds=#h1#, #w13#", "", ""};
- { 23, 33102, "", "=q4=Blood of Zul'Jin", "", "", "87%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 21824, "", "=q4=The Krakmon Wand", "=ds=#w12#", "", ""};
- { 2, 24574, "", "=q4=Massacre Cloak", "=ds=#s4#", "", ""};
- { 3, 28354, "", "=q4=Throat Crushers", "=ds=#s9#, #a4#", "", ""};
- { 4, 33059, "", "=q4=Seal of the Amani'shi Berserker", "=ds=#s13#", "", ""};
- { 5, 33983, "", "=q4=Staff of Blazing Glory", "=ds=#h2#, #w9#", "", ""};
- { 6, 39755, "", "=q4=String of Ears", "=ds=#s2#", "", ""};
- { 16, 33865, "", "=q2=Amani Hex Stick", "=ds=#m20#", "", "40%"};
- { 17, 33930, "", "=q2=Amani Charm of the Bloodletter", "=ds=#m26#", "", "25%"};
- { 18, 33932, "", "=q2=Amani Charm of the Witch Doctor", "=ds=#m26#", "", "24%"};
- { 19, 33931, "", "=q2=Amani Charm of Mighty Mojo", "=ds=#m26#", "", "25%"};
- { 20, 33933, "", "=q2=Amani Charm of the Raging Defender", "=ds=#m26#", "", "25%"};
- { 22, 33993, "", "=q3=Mojo", "=ds=#e13#"};
- };
+ {
+ Name = BabbleBoss["Illidan Stormrage"];
+ { 1, 32524, "", "=q4=Shroud of the Highborne", "=ds=#s4#", "", "16%" };
+ { 2, 32525, "", "=q4=Cowl of the Illidari High Lord", "=ds=#s1#, #a1#", "", "15%" };
+ { 3, 32235, "", "=q4=Cursed Vision of Sargeras", "=ds=#s1#, #a2#", "", "16%" };
+ { 4, 32521, "", "=q4=Faceplate of the Impenetrable", "=ds=#s1#, #a4#", "", "14%" };
+ { 5, 32497, "", "=q4=Stormrage Signet Ring", "=ds=#s13#", "", "15%" };
+ { 6, 32483, "", "=q4=The Skull of Gul'dan", "=ds=#s14#", "", "16%" };
+ { 7, 32496, "", "=q4=Memento of Tyrande", "=ds=#s14#", "", "15%" };
+ { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 11, 32837, "", "=q5=Warglaive of Azzinoth", "=ds=#h3#, #w10#, =q1=#m1# =ds=#c9#, #c6#", "", "4%" };
+ { 12, 32838, "", "=q5=Warglaive of Azzinoth", "=ds=#h4#, #w10#, =q1=#m1# =ds=#c9#, #c6#", "", "4%" };
+ { 16, 31089, "", "=q4=Chestguard of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "78%" };
+ { 17, 31091, "", "=q4=Chestguard of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "79%" };
+ { 18, 31090, "", "=q4=Chestguard of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "78%" };
+ { 20, 32471, "", "=q4=Shard of Azzinoth", "=ds=#h1#, #w4#", "", "16%" };
+ { 21, 32500, "", "=q4=Crystal Spire of Karabor", "=ds=#h3#, #w6#", "", "15%" };
+ { 22, 32374, "", "=q4=Zhar'doom, Greatstaff of the Devourer", "=ds=#h2#, #w9#", "", "14%" };
+ { 23, 32375, "", "=q4=Bulwark of Azzinoth", "=ds=#w8#", "", "14%" };
+ { 24, 32336, "", "=q4=Black Bow of the Betrayer", "=ds=#w2#", "", "16%" };
};
-
-
-
-
-
- ----------------
- --- Factions ---
- ----------------
-
- ----------------------------
- --- Ashtongue Deathsworn ---
- ----------------------------
-
- AtlasLoot_Data["Ashtongue"] = {
- Name = BabbleFaction["Ashtongue Deathsworn"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 32444, "", "=q1=Plans: Shadesteel Girdle", "=ds=#p2# (375)"};
- { 2, 32442, "", "=q1=Plans: Shadesteel Bracers", "=ds=#p2# (375)"};
- { 3, 32436, "", "=q1=Pattern: Redeemed Soul Cinch", "=ds=#p7# (375)"};
- { 4, 32435, "", "=q1=Pattern: Redeemed Soul Legguards", "=ds=#p7# (375)"};
- { 5, 32430, "", "=q1=Pattern: Bracers of Shackled Souls", "=ds=#p7# (375)"};
- { 6, 32429, "", "=q1=Pattern: Boots of Shackled Souls", "=ds=#p7# (375)"};
- { 7, 32440, "", "=q1=Pattern: Soulguard Girdle", "=ds=#p8# (375)"};
- { 8, 32438, "", "=q1=Pattern: Soulguard Bracers", "=ds=#p8# (375)"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 32443, "", "=q1=Plans: Shadesteel Greaves", "=ds=#p2# (375)"};
- { 2, 32441, "", "=q1=Plans: Shadesteel Sabots", "=ds=#p2# (375)"};
- { 3, 32433, "", "=q1=Pattern: Redeemed Soul Mocassins", "=ds=#p7# (375)"};
- { 4, 32434, "", "=q1=Pattern: Redeemed Soul Wristguards", "=ds=#p7# (375)"};
- { 5, 32431, "", "=q1=Pattern: Greaves of Shackled Souls", "=ds=#p7# (375)"};
- { 6, 32432, "", "=q1=Pattern: Waistguard of Shackled Souls", "=ds=#p7# (375)"};
- { 7, 32447, "", "=q1=Pattern: Night's End", "=ds=#p8# (375)"};
- { 8, 32439, "", "=q1=Pattern: Soulguard Leggings", "=ds=#p8# (375)"};
- { 9, 32437, "", "=q1=Pattern: Soulguard Slippers", "=ds=#p8# (375)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 32486, "", "=q4=Ashtongue Talisman of Equilibrium", "=ds=#s14#, =q1=#m1# =ds=#c1#"};
- { 2, 32487, "", "=q4=Ashtongue Talisman of Swiftness", "=ds=#s14#, =q1=#m1# =ds=#c2#"};
- { 3, 32488, "", "=q4=Ashtongue Talisman of Insight", "=ds=#s14#, =q1=#m1# =ds=#c3#"};
- { 4, 32489, "", "=q4=Ashtongue Talisman of Zeal", "=ds=#s14#, =q1=#m1# =ds=#c4#"};
- { 5, 32490, "", "=q4=Ashtongue Talisman of Acumen", "=ds=#s14#, =q1=#m1# =ds=#c5#"};
- { 6, 32492, "", "=q4=Ashtongue Talisman of Lethality", "=ds=#s14#, =q1=#m1# =ds=#c6#"};
- { 7, 32491, "", "=q4=Ashtongue Talisman of Vision", "=ds=#s14#, =q1=#m1# =ds=#c7#"};
- { 8, 32493, "", "=q4=Ashtongue Talisman of Shadows", "=ds=#s14#, =q1=#m1# =ds=#c8#"};
- { 9, 32485, "", "=q4=Ashtongue Talisman of Valor", "=ds=#s14#, =q1=#m1# =ds=#c9#"};
- };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 32590, "", "=q4=Nethervoid Cloak", "=ds=#s4#", "", "1%" };
+ { 2, 34012, "", "=q4=Shroud of the Final Stand", "=ds=#s4#", "", "1%" };
+ { 3, 32609, "", "=q4=Boots of the Divine Light", "=ds=#s12#, #a1#", "", "1%" };
+ { 4, 32593, "", "=q4=Treads of the Den Mother", "=ds=#s12#, #a2#", "", "1%" };
+ { 5, 32592, "", "=q4=Chestguard of Relentless Storms", "=ds=#s5#, #a3#", "", "1%" };
+ { 6, 32608, "", "=q4=Pillager's Gauntlets", "=ds=#s9#, #a4#", "", "1%" };
+ { 7, 32606, "", "=q4=Girdle of the Lightbearer", "=ds=#s10#, #a4#", "", "1%" };
+ { 8, 32591, "", "=q4=Choker of Serrated Blades", "=ds=#s2#", "", "1%" };
+ { 9, 32589, "", "=q4=Hellfire-Encased Pendant", "=ds=#s2#", "", "1%" };
+ { 10, 32526, "", "=q4=Band of Devastation", "=ds=#s13#", "", "1%" };
+ { 11, 32528, "", "=q4=Blessed Band of Karabor", "=ds=#s13#", "", "1%" };
+ { 12, 32527, "", "=q4=Ring of Ancient Knowledge", "=ds=#s13#", "", "2%" };
+ { 16, 34009, "", "=q4=Hammer of Judgement", "=ds=#h3#, #w6#", "", "1%" };
+ { 17, 32943, "", "=q4=Swiftsteel Bludgeon", "=ds=#h1#, #w6#", "", "2%" };
+ { 18, 34011, "", "=q4=Illidari Runeshield", "=ds=#w8#", "", "1%" };
+ { 20, 32228, "", "=q4=Empyrean Sapphire", "=ds=#e7#", "", "12%" };
+ { 21, 32231, "", "=q4=Pyrestone", "=ds=#e7#", "", "8%" };
+ { 22, 32229, "", "=q4=Lionseye", "=ds=#e7#", "", "6%" };
+ { 23, 32249, "", "=q4=Seaspray Emerald", "=ds=#e7#", "", "9%" };
+ { 24, 32230, "", "=q4=Shadowsong Amethyst", "=ds=#e7#", "", "6%" };
+ { 25, 32227, "", "=q4=Crimson Spinel", "=ds=#e7#", "", "8%" };
+ { 27, 32428, "", "=q3=Heart of Darkness", "=ds=#e8#", "", "16%" };
+ { 28, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%" };
};
-
- ----------------------------
- --- Cenarion Expedition ---
- ----------------------------
-
- AtlasLoot_Data["CExpedition"] = {
- Name = BabbleFaction["Cenarion Expedition"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 25737, "", "=q3=Pattern: Heavy Clefthoof Boots", "=ds=#p7# (355)"};
- { 2, 24417, "", "=q2=Scout's Arrow", "=ds=#w17#"};
- { 3, 23814, "", "=q1=Schematic: Green Smoke Flare", "=ds=#p5# (335)"};
- { 4, 24429, "", "=q1=Expedition Flare", ""};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 25838, "", "=q3=Warden's Hauberk", "=ds=#s5#, #a2#"};
- { 2, 25836, "", "=q3=Preserver's Cudgel", "=ds=#h3#, #w6#"};
- { 3, 25835, "", "=q3=Explorer's Walking Stick", "=ds=#h2#, #w9#"};
- { 4, 25735, "", "=q3=Pattern: Heavy Clefthoof Vest", "=ds=#p7# (360)"};
- { 5, 25736, "", "=q3=Pattern: Heavy Clefthoof Leggings", "=ds=#p7# (355)"};
- { 6, 29194, "", "=q2=Arcanum of Nature Warding", "#s1# #e17#"};
- { 7, 25869, "", "=q1=Recipe: Transmute Earthstorm Diamond", "=ds=#p1# (350)"};
- { 8, 32070, "", "=q1=Recipe: Earthen Elixir", "=ds=#p1# (320)"};
- { 9, 23618, "", "=q1=Plans: Adamantite Sharpening Stone", "=ds=#p2# (350)"};
- { 10, 28632, "", "=q1=Plans: Adamantite Weightstone", "=ds=#p2# (350)"};
- { 11, 25526, "", "=q1=Plans: Greater Rune of Warding", "=ds=#p2# (350)"};
- { 12, 29720, "", "=q1=Pattern: Clefthide Leg Armor", "=ds=#p7# (335)"};
- { 13, 30623, "", "=q1=Reservoir Key", "=ds=#e9#"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 31392, "", "=q4=Plans: Wildguard Helm", "=ds=#p2# (375)"};
- { 2, 31391, "", "=q4=Plans: Wildguard Leggings", "=ds=#p2# (375)"};
- { 3, 29174, "", "=q3=Watcher's Cowl", "=ds=#s1#, #a1#"};
- { 4, 29173, "", "=q3=Strength of the Untamed", "=ds=#s2#"};
- { 5, 31949, "", "=q3=Warden's Arrow", "=ds=#w17#"};
- { 6, 24183, "", "=q3=Design: Nightseye Panther", "=ds=#p12# (370)"};
- { 7, 29192, "", "=q2=Arcanum of Ferocity", "=ds=#s1# #e17#"};
- { 8, 22918, "", "=q2=Recipe: Transmute Primal Water to Air", "=ds=#p1# (350)"};
- { 9, 28271, "", "=q2=Formula: Enchant Gloves - Spell Strike", "=ds=#p4# (360)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 29170, "", "=q4=Windcaller's Orb", "=ds=#s15#"};
- { 2, 29172, "", "=q4=Ashyen's Gift", "=ds=#s13#"};
- { 3, 29171, "", "=q4=Earthwarden", "=ds=#h2#, #w6#"};
- { 4, 33999, "", "=q4=Cenarion War Hippogryph", "=ds=#e12#"};
- { 5, 31390, "", "=q4=Plans: Wildguard Breastplate", "=ds=#p2# (375)"};
- { 6, 31402, "", "=q4=Design: The Natural Ward", "=ds=#p12# (375)"};
- { 7, 33149, "", "=q3=Formula: Enchant Cloak - Stealth", "=ds=#p4# (300)"};
- { 8, 31356, "", "=q2=Recipe: Flask of Distilled Wisdom", "=ds=#p1# (300)"};
- { 9, 22922, "", "=q1=Recipe: Major Nature Protection Potion", "=ds=#p1# (360)"};
- { 10, 29721, "", "=q1=Pattern: Nethercleft Leg Armor", "=ds=#p7# (365)"};
- { 11, 31804, "", "=q1=Cenarion Expedition Tabard", "=ds=#s7#"};
- };
+ {
+ Name = "BT Patterns/Plans";
+ { 1, 32738, "", "=q4=Plans: Dawnsteel Bracers", "=ds=#p2# (375)" };
+ { 2, 32739, "", "=q4=Plans: Dawnsteel Shoulders", "=ds=#p2# (375)" };
+ { 3, 32736, "", "=q4=Plans: Swiftsteel Bracers", "=ds=#p2# (375)" };
+ { 4, 32737, "", "=q4=Plans: Swiftsteel Shoulders", "=ds=#p2# (375)" };
+ { 5, 32748, "", "=q4=Pattern: Bindings of Lightning Reflexes", "=ds=#p7# (375)" };
+ { 6, 32744, "", "=q4=Pattern: Bracers of Renewed Life", "=ds=#p7# (375)" };
+ { 7, 32750, "", "=q4=Pattern: Living Earth Bindings", "=ds=#p7# (375)" };
+ { 8, 32751, "", "=q4=Pattern: Living Earth Shoulders", "=ds=#p7# (375)" };
+ { 9, 32749, "", "=q4=Pattern: Shoulders of Lightning Reflexes", "=ds=#p7# (375)" };
+ { 10, 32745, "", "=q4=Pattern: Shoulderpads of Renewed Life", "=ds=#p7# (375)" };
+ { 11, 32746, "", "=q4=Pattern: Swiftstrike Bracers", "=ds=#p7# (375)" };
+ { 12, 32747, "", "=q4=Pattern: Swiftstrike Shoulders", "=ds=#p7# (375)" };
+ { 16, 32754, "", "=q4=Pattern: Bracers of Nimble Thought", "=ds=#p8# (375)" };
+ { 17, 32755, "", "=q4=Pattern: Mantle of Nimble Thought", "=ds=#p8# (375)" };
+ { 18, 32753, "", "=q4=Pattern: Swiftheal Mantle", "=ds=#p8# (375)" };
+ { 19, 32752, "", "=q4=Pattern: Swiftheal Wraps", "=ds=#p8# (375)" };
};
+};
- ------------------
- --- Honor Hold ---
- ------------------
- AtlasLoot_Data["HonorHold"] = {
- Name = BabbleFaction["Honor Hold"].." - "..BabbleFaction["Alliance"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 29213, "", "=q3=Pattern: Felstalker Belt", "=ds=#p7# (350)"};
- { 2, 23142, "", "=q2=Design: Enduring Deep Peridot", "=ds=#p12# (315)"};
- { 3, 22531, "", "=q1=Formula: Enchant Bracer - Superior Healing", "=ds=#p4# (325)"};
- { 4, 24007, "", "=q1=Footman's Waterskin", "=ds=#e4#"};
- { 5, 24008, "", "=q1=Dried Mushroom Rations", "=ds=#e3#"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 25826, "", "=q3=Sage's Band", "=ds=#s13#"};
- { 2, 25825, "", "=q3=Footman's Longsword", "=ds=#h1#, #w10#"};
- { 3, 29214, "", "=q3=Pattern: Felstalker Bracers", "=ds=#p7# (360)"};
- { 4, 29215, "", "=q3=Pattern: Felstalker Breastplate", "=ds=#p7# (360)"};
- { 5, 29196, "", "=q2=Arcanum of Fire Warding", "=ds=#s1# #e17#"};
- { 6, 25870, "", "=q1=Recipe: Transmute Skyfire Diamond", "=ds=#p1# (350)"};
- { 7, 22905, "", "=q1=Recipe: Elixir of Major Agility", "=ds=#p1# (330)"};
- { 8, 29719, "", "=q1=Pattern: Cobrahide Leg Armor", "=ds=#p7# (335)"};
- { 9, 30622, "", "=q1=Flamewrought Key", "=ds=#e9#"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 29169, "", "=q3=Ring of Convalescence", "=ds=#s13#"};
- { 2, 29166, "", "=q3=Hellforged Halberd", "=ds=#w7#"};
- { 3, 32883, "", "=q3=Felbane Slugs", "=ds=#w18#"};
- { 4, 24180, "", "=q3=Design: Dawnstone Crab", "=ds=#p12# (370)"};
- { 5, 29189, "", "=q2=Arcanum of Renewal", "=ds=#s1# #e17#"};
- { 6, 22547, "", "=q1=Formula: Enchant Chest - Exceptional Stats", "=ds=#p4# (345)"};
- { 7, 34218, "", "=q1=Pattern: Netherscale Ammo Pouch", "=ds=#p7# (350)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 29153, "", "=q4=Blade of the Archmage", "=ds=#h3#, #w10#"};
- { 2, 29156, "", "=q4=Honor's Call", "=ds=#h1#, #w10#"};
- { 3, 29151, "", "=q4=Veteran's Musket", "=ds=#w5#"};
- { 4, 33150, "", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# (300)"};
- { 5, 23619, "", "=q1=Plans: Felsteel Shield Spike", "=ds=#p2# (360)"};
- { 6, 29722, "", "=q1=Pattern: Nethercobra Leg Armor", "=ds=#p7# (365)"};
- { 7, 23999, "", "=q1=Honor Hold Tabard", "=ds=#s7#"};
- };
+------------------------------------------------
+--- Caverns of Time: Old Hillsbrad Foothills ---
+------------------------------------------------
+
+AtlasLoot_Data["CoTOldHillsbrad"] = {
+ Name = BabbleZone["Caverns of Time"] .. ": " .. BabbleZone["Old Hillsbrad Foothills"];
+ DisplayName = BabbleZone["Old Hillsbrad Foothills"];
+ Type = "BCDungeon";
+ Map = "CoTOldHillsbrad";
+ {
+ Name = BabbleBoss["Lieutenant Drake"];
+ { 1, 27423, "", "=q3=Cloak of Impulsiveness", "=ds=#s4#", "", "19.68%" };
+ { 2, 27418, "", "=q3=Stormreaver Shadow-Kilt", "=ds=#s11#, #a1#", "", "18.16%" };
+ { 3, 27417, "", "=q3=Ravenwing Pauldrons", "=ds=#s3#, #a2#", "", "18.33%" };
+ { 4, 27420, "", "=q3=Uther's Ceremonial Warboots", "=ds=#s12#, #a4#", "", "17.14%" };
+ { 5, 27436, "", "=q3=Iron Band of the Unbreakable", "=ds=#s13#", "", "15.09%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30589, "", "=q4=Dazzling Chrysoprase", "=ds=#e7#", "", "0.66%" };
+ { 19, 30591, "", "=q4=Empowered Fire Opal", "=ds=#e7#", "", "0.24%" };
+ { 20, 30590, "", "=q4=Enduring Chrysoprase", "=ds=#e7#", "", "0.10%" };
+ { 22, 28212, "", "=q3=Aran's Sorcerous Slacks", "=ds=#s11#, #a1#", "", "11.43%" };
+ { 23, 28214, "", "=q3=Grips of the Lunar Eclipse", "=ds=#s9#, #a2#", "", "2.86%" };
+ { 24, 28215, "", "=q3=Mok'Nathal Mask of Battle", "=ds=#s1#, #a3#", "", "11.43%" };
+ { 25, 28211, "", "=q3=Lieutenant's Signet of Lordaeron", "=ds=#s13#", "", "5.71%" };
+ { 26, 28213, "", "=q3=Lordaeron Medical Guide", "=ds=#s15#", "", "8.57%" };
+ { 27, 28210, "", "=q3=Bloodskull Destroyer", "=ds=#h1#, #w6#", "", "5.71%" };
};
-
- -----------------------
- --- Keepers of Time ---
- -----------------------
-
- AtlasLoot_Data["KeepersofTime"] = {
- Name = BabbleFaction["Keepers of Time"];
- {
- Name = BabbleFaction["Honored"];
- { 1, 29198, "", "=q2=Arcanum of Frost Warding", "=ds=#s1# #e17#"};
- { 2, 28272, "", "=q2=Formula: Enchant Gloves - Major Spellpower", "=ds=#p4# (360)"};
- { 3, 22536, "", "=q1=Formula: Enchant Ring - Spellpower", "=ds=#p4# (360)"};
- { 4, 25910, "", "=q1=Design: Enigmatic Skyfire Diamond", "=ds=#p12# (365)"};
- { 5, 33160, "", "=q1=Design: Facet of Eternity", "=ds=#p12# (360)"};
- { 6, 29713, "", "=q1=Pattern: Drums of Panic", "=ds=#p7# (370)"};
- { 7, 30635, "", "=q1=Key of Time", "=ds=#e9#"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 29184, "", "=q3=Timewarden's Leggings", "=ds=#s11#, #a4#"};
- { 2, 29185, "", "=q3=Continuum Blade", "=ds=#h3#, #w10#"};
- { 3, 24181, "", "=q3=Design: Living Ruby Serpent", "=ds=#p12# (370)"};
- { 4, 24174, "", "=q3=Design: Pendant of Frozen Flame", "=ds=#p12# (360)"};
- { 5, 29186, "", "=q2=Arcanum of the Defender", "=ds=#s1# #e17#"};
- { 6, 33158, "", "=q1=Design: Stone of Blades", "=ds=#p12# (360)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 29183, "", "=q4=Bindings of the Timewalker", "=ds=#s8#, #a1#"};
- { 2, 29181, "", "=q4=Timelapse Shard", "=ds=#s14#"};
- { 3, 29182, "", "=q4=Riftmaker", "=ds=#h1#, #w4#"};
- { 4, 33152, "", "=q3=Formula: Enchant Gloves - Superior Agility", "=ds=#p4# (300)"};
- { 5, 31355, "", "=q2=Recipe: Flask of Supreme Power", "=ds=#p1# (300)"};
- { 6, 31777, "", "=q1=Keepers of Time Tabard", "=ds=#s7#"};
- };
+ {
+ Name = BabbleBoss["Captain Skarloc"];
+ { 1, 27428, "", "=q3=Stormfront Gauntlets", "=ds=#s9#, #a3#", "", "19.04%" };
+ { 2, 27430, "", "=q3=Scaled Greaves of Patience", "=ds=#s11#, #a3#", "", "19.22%" };
+ { 3, 27427, "", "=q3=Durotan's Battle Harness", "=ds=#s5#, #a4#", "", "14.83%" };
+ { 4, 27424, "", "=q3=Amani Venom-Axe", "=ds=#h1#, #w1#", "", "18.50%" };
+ { 5, 27426, "", "=q3=Northshire Battlemace", "=ds=#h3#, #w6#", "", "15.37%" };
+ { 7, 22927, "", "=q2=Recipe: Ironshield Potion", "=ds=#p1# (365)", "", "1.03%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30589, "", "=q4=Dazzling Chrysoprase", "=ds=#e7#", "", "0.66%" };
+ { 19, 30591, "", "=q4=Empowered Fire Opal", "=ds=#e7#", "", "0.24%" };
+ { 20, 30590, "", "=q4=Enduring Chrysoprase", "=ds=#e7#", "", "0.10%" };
+ { 22, 28218, "", "=q3=Pontiff's Pantaloons of Prophecy", "=ds=#s11#, #a1#", "", "18.18%" };
+ { 23, 28220, "", "=q3=Moon-Crown Antlers", "=ds=#s1#, #a2#", "", "0.14%" };
+ { 24, 28219, "", "=q3=Emerald-Scale Greaves", "=ds=#s11#, #a3#", "", "3.03%" };
+ { 25, 28221, "", "=q3=Boots of the Watchful Heart", "=ds=#s12#, #a4#", "", "0.52%" };
+ { 26, 28217, "", "=q3=Tarren Mill Vitality Locket", "=ds=#s2#", "", "9.09%" };
+ { 27, 28216, "", "=q3=Dathrohan's Ceremonial Hammer", "=ds=#h3#, #w6#", "", "6.06%" };
};
-
- ---------------
- --- Kurenai ---
- ---------------
-
- AtlasLoot_Data["Kurenai"] = {
- Name = BabbleFaction["Kurenai"].." - "..BabbleFaction["Alliance"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 29217, "", "=q3=Pattern: Netherfury Belt", "=ds=#p7# (340)"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 29144, "", "=q3=Worg Hide Quiver", "=ds=#m14# #w19# =q1=#m1# =ds=#c2#"};
- { 2, 29219, "", "=q3=Pattern: Netherfury Leggings", "=ds=#p7# (340)"};
- { 3, 34175, "", "=q1=Pattern: Drums of Restoration", "=ds=#p7# (350)"};
- { 4, 34173, "", "=q1=Pattern: Drums of Speed", "=ds=#p7# (345)"};
- { 5, 30444, "", "=q1=Pattern: Reinforced Mining Bag", "=ds=#p7# (325)"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 29148, "", "=q3=Blackened Leather Spaulders", "=ds=#s3#, #a2#"};
- { 2, 29142, "", "=q3=Kurenai Kilt", "=ds=#s11#, #a2#"};
- { 3, 29146, "", "=q3=Band of Elemental Spirits", "=ds=#s13#"};
- { 4, 29218, "", "=q3=Pattern: Netherfury Boots", "=ds=#p7# (350)"};
- { 5, 30443, "", "=q2=Recipe: Transmute Primal Fire to Earth", "=ds=#p1# (350)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 29227, "", "=q4=Reins of the Cobalt War Talbuk", "=ds=#e12#"};
- { 2, 29229, "", "=q4=Reins of the Silver War Talbuk", "=ds=#e12#"};
- { 3, 29230, "", "=q4=Reins of the Tan War Talbuk", "=ds=#e12#"};
- { 4, 29231, "", "=q4=Reins of the White War Talbuk", "=ds=#e12#"};
- { 5, 31830, "", "=q4=Reins of the Cobalt Riding Talbuk", "=ds=#e12#"};
- { 6, 31832, "", "=q4=Reins of the Silver Riding Talbuk", "=ds=#e12#"};
- { 7, 31834, "", "=q4=Reins of the Tan Riding Talbuk", "=ds=#e12#"};
- { 8, 31836, "", "=q4=Reins of the White Riding Talbuk", "=ds=#e12#"};
- { 9, 29140, "", "=q3=Cloak of the Ancient Spirits", "=ds=#s4#"};
- { 10, 29136, "", "=q3=Far Seer's Helm", "=ds=#s1#, #a3#"};
- { 11, 29138, "", "=q3=Arechron's Gift", "=ds=#h2#, #w6#"};
- { 12, 31774, "", "=q1=Kurenai Tabard", "=ds=#s7#"};
- };
+ {
+ Name = BabbleBoss["Epoch Hunter"];
+ { 1, 27433, "", "=q3=Pauldrons of Sufferance", "=ds=#s3#, #a1#", "", "19.11%" };
+ { 2, 27434, "", "=q3=Mantle of Perenolde", "=ds=#s3#, #a2#", "", "16.26%" };
+ { 3, 27440, "", "=q3=Diamond Prism of Recurrence", "=ds=#s2#", "", "16.12%" };
+ { 4, 27432, "", "=q3=Broxigar's Ring of Valor", "=ds=#s13#", "", "16.35%" };
+ { 5, 27431, "", "=q3=Time-Shifted Dagger", "=ds=#h3#, #w4#", "", "14.09%" };
+ { 6, 0, "INV_Box_01", "#j27#", "" };
+ { 7, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 8, 29250, "", "=q4=Cord of Sanctification", "=ds=#s10#, #a1#" };
+ { 9, 29246, "", "=q4=Nightfall Wristguards", "=ds=#s8#, #a2#" };
+ { 10, 29357, "", "=q4=Master Thief's Gloves", "=ds=#s9#, #a2#", "", "10.00%" };
+ { 11, 30534, "", "=q4=Wyrmscale Greaves", "=ds=#s11#, #a3#" };
+ { 12, 30536, "", "=q4=Greaves of the Martyr", "=ds=#s11#, #a4#", "", "15.00%" };
+ { 13, 27911, "", "=q3=Epoch's Whispering Cinch", "=ds=#s10#, #a2#", "", "10.00%" };
+ { 14, 28344, "", "=q3=Wyrmfury Pauldrons", "=ds=#s3#, #a3#", "", "0.24%" };
+ { 15, 28233, "", "=q3=Necklace of Resplendent Hope", "=ds=#s2#", "", "15.00%" };
+ { 16, 27904, "", "=q3=Resounding Ring of Glory", "=ds=#s13#", "", "0.17%" };
+ { 17, 28227, "", "=q3=Sparking Arcanite Ring", "=ds=#s13#", "", "0.24%" };
+ { 18, 28223, "", "=q3=Arcanist's Stone", "=ds=#s14#", "", "10.00%" };
+ { 19, 28226, "", "=q3=Timeslicer", "=ds=#h1#, #w4#", "", "5.00%" };
+ { 20, 28222, "", "=q3=Reaver of the Infinites", "=ds=#h2#, #w1#", "", "0.48%" };
+ { 21, 30589, "", "=q4=Dazzling Chrysoprase", "=ds=#e7#", "", "0.66%" };
+ { 22, 30591, "", "=q4=Empowered Fire Opal", "=ds=#e7#", "", "0.24%" };
+ { 23, 30590, "", "=q4=Enduring Chrysoprase", "=ds=#e7#", "", "0.10%" };
+ { 24, 24173, "", "=q4=Design: Circlet of Arcane Might", "=ds=#p12# (370)", "", "0.10%" };
+ { 25, 28191, "", "=q3=Mana-Etched Vestments", "=ds=#s5#, #a1# (D3)", "", "0.24%" };
+ { 26, 28224, "", "=q3=Wastewalker Helm", "=ds=#s1#, #a2# (D3)", "", "0.24%" };
+ { 27, 28401, "", "=q3=Hauberk of Desolation", "=ds=#s5#, #a3# (D3)", "", "0.14%" };
+ { 28, 28225, "", "=q3=Doomplate Warhelm", "=ds=#s1#, #a4# (D3)", "", "0.14%" };
+ { 30, 33847, "", "=q1=Epoch Hunter's Head", "=ds=#m3#", "", "100%" };
};
-
- ------------------
- --- Lower City ---
- ------------------
-
- AtlasLoot_Data["LowerCity"] = {
- Name = BabbleFaction["Lower City"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 23138, "", "=q2=Design: Potent Flame Spessarite", "=ds=#p12# (325)"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 30836, "", "=q3=Leggings of the Skettis Exile", "=ds=#s11#, #a1#"};
- { 2, 30835, "", "=q3=Salvager's Hauberk", "=ds=#s5#, #a3#"};
- { 3, 30841, "", "=q3=Lower City Prayerbook", "=ds=#s14#"};
- { 4, 24179, "", "=q3=Design: Felsteel Boar", "=ds=#p12# (370)"};
- { 5, 24175, "", "=q3=Design: Pendant of Thawing", "=ds=#p12# (360)"};
- { 6, 30846, "", "=q2=Arcanum of the Outcast", "=ds=#s1# #e17#"};
- { 7, 22910, "", "=q2=Recipe: Elixir of Major Shadow Power", "=ds=#p1# (350)"};
- { 8, 33157, "", "=q1=Design: Falling Star", "=ds=#p12# (360)"};
- { 9, 34200, "", "=q1=Pattern: Quiver of a Thousand Arrows", "=ds=#p7# (350)"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 29199, "", "=q2=Arcanum of Shadow Warding", "=ds=#s1# #e17#"};
- { 2, 22538, "", "=q1=Formula: Enchant Ring - Stats", "=ds=#p4# (375)"};
- { 3, 30833, "", "=q1=Pattern: Cloak of Arcane Evasion", "=ds=#p8# (350)"};
- { 4, 30633, "", "=q1=Auchenai Key", "=ds=#e9#"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 30834, "", "=q4=Shapeshifter's Signet", "=ds=#s13#"};
- { 2, 30832, "", "=q4=Gavel of Unearthed Secrets", "=ds=#h3#, #w6#"};
- { 3, 30830, "", "=q4=Trident of the Outcast Tribe", "=ds=#w7#"};
- { 4, 33148, "", "=q3=Formula: Enchant Cloak - Dodge", "=ds=#p4# (300)"};
- { 5, 31357, "", "=q2=Recipe: Flask of Chromatic Resistance", "=ds=#p1# (300)"};
- { 6, 31778, "", "=q1=Lower City Tabard", "=ds=#s7#"};
- };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Trash Mobs"], "=q5=" .. BabbleZone["Old Hillsbrad Foothills"] };
+ { 2, 25729, "", "=q3=Pattern: Stylin' Adventure Hat", "=ds=#p7# (350) =q1=#n94#", "", "0.25%" };
+ { 4, 0, "INV_Box_01", "=q6=" .. AL["Don Carlos"], "=q5=" .. BabbleZone["Old Hillsbrad Foothills"] };
+ { 5, 38506, "", "=q3=Don Carlos' Famous Hat", "=ds=#s1#, #a1# =q2=#j3#" };
+ { 6, 38329, "", "=q1=Don Carlos' Hat", "=q1=#m3#" };
+ { 7, 38276, "", "=q1=Haliscan Brimmed Hat", "=q1=#m4#: =ds=#s1#, #a1#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. AL["Trash Mobs"], "=q5=" .. BabbleZone["The Black Morass"] };
+ { 10, 25730, "", "=q3=Pattern: Stylin' Jungle Hat", "=ds=#p7# (350) =q1=#n95#", "", "0.29%" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Thomas Yance"], "=q5=" .. BabbleZone["Old Hillsbrad Foothills"] };
+ { 17, 25725, "", "=q1=Pattern: Riding Crop", "=ds=#p7# (350)" };
+ { 19, 0, "INV_Box_01", "=q6=" .. AL["Aged Dalaran Wizard"], "=q5=" .. BabbleZone["Old Hillsbrad Foothills"] };
+ { 20, 22539, "", "=q1=Formula: Enchant Shield - Intellect", "=ds=#p4# (325)" };
};
+};
- ------------------
- --- Netherwing ---
- ------------------
- AtlasLoot_Data["Netherwing"] = {
- Name = BabbleFaction["Netherwing"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 32694, "", "=q2=Overseer's Badge", "=ds=#s14#"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 32695, "", "=q3=Captain's Badge", "=ds=#s14#"};
- { 2, 32863, "", "=q3=Skybreaker Whip", "=q1=#m4#: =ds=#s14#"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 32864, "", "=q3=Commander's Badge", "=ds=#s14#"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 32858, "", "=q4=Reins of the Azure Netherwing Drake", "=ds=#e12#"};
- { 2, 32859, "", "=q4=Reins of the Cobalt Netherwing Drake", "=ds=#e12#"};
- { 3, 32857, "", "=q4=Reins of the Onyx Netherwing Drake", "=ds=#e12#"};
- { 4, 32860, "", "=q4=Reins of the Purple Netherwing Drake", "=ds=#e12#"};
- { 5, 32861, "", "=q4=Reins of the Veridian Netherwing Drake", "=ds=#e12#"};
- { 6, 32862, "", "=q4=Reins of the Violet Netherwing Drake", "=ds=#e12#"};
- };
+
+
+
+-----------------------------------------
+--- Caverns of Time: The Black Morass ---
+-----------------------------------------
+
+AtlasLoot_Data["CoTBlackMorass"] = {
+ Name = BabbleZone["Caverns of Time"] .. ": " .. BabbleZone["The Black Morass"];
+ DisplayName = BabbleZone["The Black Morass"];
+ Type = "BCDungeon";
+ Map = "CoTBlackMorass";
+ {
+ Name = BabbleBoss["Chrono Lord Deja"];
+ { 1, 27988, "", "=q3=Burnoose of Shifting Ages", "=ds=#s4#", "", "13.87%" };
+ { 2, 27994, "", "=q3=Mantle of Three Terrors", "=ds=#s3#, #a1#", "", "12.30%" };
+ { 3, 27995, "", "=q3=Sun-Gilded Shouldercaps", "=ds=#s3#, #a2#", "", "13.13%" };
+ { 4, 27993, "", "=q3=Mask of Inner Fire", "=ds=#s1#, #a3#", "", "13.84%" };
+ { 5, 27996, "", "=q3=Ring of Spiritual Precision", "=ds=#s13#", "", "14.45%" };
+ { 6, 27987, "", "=q3=Melmorta's Twilight Longbow", "=ds=#w2#", "", "11.51%" };
+ { 8, 29675, "", "=q2=Pattern: Arcane Armor Kit", "=ds=#p7# (340)", "", "0.35%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30558, "", "=q4=Glimmering Fire Opal", "=ds=#e7#" };
+ { 19, 30556, "", "=q4=Glinting Fire Opal", "=ds=#e7#" };
+ { 20, 30555, "", "=q4=Glowing Tanzanite", "=ds=#e7#" };
};
-
- ---------------
- --- Ogri'la ---
- ---------------
-
- AtlasLoot_Data["Ogrila"] = {
- Name = BabbleFaction["Ogri'la"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 32910, "", "=q1=Red Ogre Brew Special", "=q1=#m4#: =ds=#e2#"};
- { 2, 32909, "", "=q1=Blue Ogre Brew Special", "=q1=#m4#: =ds=#e2#"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 32784, "", "=q1=Red Ogre Brew", "=ds=#e2#", "2 #ogrilashard#", ""};
- { 2, 32783, "", "=q1=Blue Ogre Brew", "=ds=#e2#", "3 #ogrilashard#", ""};
- { 3, 32572, "", "=q3=Apexis Crystal", "=ds=#m17#"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 32653, "", "=q3=Apexis Cloak", "=ds=#s4#", "1 #ogrilacrystal# 50 #ogrilashard#", ""};
- { 2, 32654, "", "=q3=Crystalforged Trinket", "=ds=#s14#", "1 #ogrilacrystal# 50 #ogrilashard#", ""};
- { 3, 32652, "", "=q3=Ogri'la Aegis", "=ds=#w8#", "1 #ogrilacrystal# 50 #ogrilashard#", ""};
- { 4, 32650, "", "=q3=Cerulean Crystal Rod", "=ds=#w12#", "1 #ogrilacrystal# 50 #ogrilashard#", ""};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 32647, "", "=q4=Shard-bound Bracers", "=ds=#s8#, #a2#", "4 #ogrilacrystal# 100 #ogrilashard#", ""};
- { 2, 32648, "", "=q4=Vortex Walking Boots", "=ds=#s12#, #a4#", "4 #ogrilacrystal# 100 #ogrilashard#", ""};
- { 3, 32651, "", "=q4=Crystal Orb of Enlightenment", "=ds=#s15#", "4 #ogrilacrystal# 100 #ogrilashard#", ""};
- { 4, 32645, "", "=q4=Crystalline Crossbow", "=ds=#w3#", "4 #ogrilacrystal# 100 #ogrilashard#", ""};
- { 5, 32828, "", "=q1=Ogri'la Tabard", "=ds=#s7#", "10 #ogrilashard#", ""};
- { 6, 32569, "", "=q1=Apexis Shard", "=ds=#m17#"};
- };
+ {
+ Name = BabbleBoss["Temporus"];
+ { 1, 28185, "", "=q3=Khadgar's Kilt of Abjuration", "=ds=#s11#, #a1#", "", "14.26%" };
+ { 2, 28186, "", "=q3=Laughing Skull Battle-Harness", "=ds=#s5#, #a3#", "", "13.14%" };
+ { 3, 28034, "", "=q3=Hourglass of the Unraveller", "=ds=#s14#", "", "13.69%" };
+ { 4, 28187, "", "=q3=Star-Heart Lamp", "=ds=#s15#", "", "11.83%" };
+ { 5, 28184, "", "=q3=Millennium Blade", "=ds=#h1#, #w10#", "", "11.74%" };
+ { 6, 28033, "", "=q3=Epoch-Mender", "=ds=#h2#, #w9#", "", "13.80%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30558, "", "=q4=Glimmering Fire Opal", "=ds=#e7#" };
+ { 19, 30556, "", "=q4=Glinting Fire Opal", "=ds=#e7#" };
+ { 20, 30555, "", "=q4=Glowing Tanzanite", "=ds=#e7#" };
};
-
- -------------------------
- --- Sha'tari Skyguard ---
- -------------------------
-
- AtlasLoot_Data["Skyguard"] = {
- Name = BabbleFaction["Sha'tari Skyguard"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 32722, "", "=q1=Enriched Terocone Juice", "=ds=#e4#"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 32721, "", "=q1=Skyguard Rations", "=ds=#e3#"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 32539, "", "=q3=Skyguard's Drape", "=ds=#s4#"};
- { 2, 32538, "", "=q3=Skywitch's Drape", "=ds=#s4#"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 32770, "", "=q4=Skyguard Silver Cross", "=ds=#s14#"};
- { 2, 32771, "", "=q4=Airman's Ribbon of Gallantry", "=ds=#s14#"};
- { 3, 32319, "", "=q4=Blue Riding Nether Ray", "=ds=#e12#"};
- { 4, 32314, "", "=q4=Green Riding Nether Ray", "=ds=#e12#"};
- { 5, 32317, "", "=q4=Red Riding Nether Ray", "=ds=#e12#"};
- { 6, 32316, "", "=q4=Purple Riding Nether Ray", "=ds=#e12#"};
- { 7, 32318, "", "=q4=Silver Riding Nether Ray", "=ds=#e12#"};
- { 8, 38628, "", "=q3=Nether Ray Fry", "=ds=#e13#"};
- { 9, 32445, "", "=q1=Skyguard Tabard", "=ds=#s7#"};
- };
+ {
+ Name = BabbleBoss["Aeonus"];
+ { 1, 28193, "", "=q3=Mana-Etched Crown", "=ds=#s1#, #a1# (D3)", "", "11.99%" };
+ { 2, 27509, "", "=q3=Handgrips of Assassination", "=ds=#s9#, #a2# (D3)", "", "12.84%" };
+ { 3, 27873, "", "=q3=Moonglade Pants", "=ds=#s11#, #a2# (D3)", "", "11.28%" };
+ { 4, 28192, "", "=q3=Helm of Desolation", "=ds=#s1#, #a3# (D3)", "", "12.77%" };
+ { 5, 27977, "", "=q3=Legplates of the Bold", "=ds=#s11#, #a4# (D3)", "", "9.92%" };
+ { 6, 27839, "", "=q3=Legplates of the Righteous", "=ds=#s11#, #a4# (D3)", "", "12.10%" };
+ { 8, 28206, "", "=q3=Cowl of the Guiltless", "=ds=#s1#, #a2#", "", "12.25%" };
+ { 9, 28194, "", "=q3=Primal Surge Bracers", "=ds=#s8#, #a3#", "", "13.51%" };
+ { 10, 28207, "", "=q3=Pauldrons of the Crimson Flight", "=ds=#s3#, #a4#", "", "11.11%" };
+ { 11, 28190, "", "=q3=Scarab of the Infinite Cycle", "=ds=#s14#", "", "11.32%" };
+ { 12, 28189, "", "=q3=Latro's Shifting Sword", "=ds=#h1#, #w10#", "", "9.70%" };
+ { 13, 28188, "", "=q3=Bloodfire Greatstaff", "=ds=#h2#, #w9#", "", "10.48%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30558, "", "=q4=Glimmering Fire Opal", "=ds=#e7#" };
+ { 19, 30556, "", "=q4=Glinting Fire Opal", "=ds=#e7#" };
+ { 20, 30555, "", "=q4=Glowing Tanzanite", "=ds=#e7#" };
+ { 22, 30531, "", "=q4=Breeches of the Occultist", "=ds=#s11#, #a1#", "", "1.49%" };
+ { 23, 29247, "", "=q4=Girdle of the Deathdealer", "=ds=#s10#, #a2#" };
+ { 24, 29253, "", "=q4=Girdle of Valorous Deeds", "=ds=#s10#, #a4#" };
+ { 25, 29356, "", "=q4=Quantum Blade", "=ds=#h2#, #w10#" };
+ { 27, 33858, "", "=q1=Aeonus's Hourglass", "=ds=#m3#", "", "100%" };
};
+};
- -------------------------------
- --- Shattered Sun Offensive ---
- -------------------------------
- AtlasLoot_Data["SunOffensive"] = {
- Name = BabbleFaction["Shattered Sun Offensive"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 35244, "", "=q1=Design: Bold Crimson Spinel", "=ds=#p12# (375)"};
- { 2, 35245, "", "=q1=Design: Bright Crimson Spinel", "=ds=#p12# (375)"};
- { 3, 35255, "", "=q1=Design: Brilliant Lionseye", "=ds=#p12# (375)"};
- { 4, 35246, "", "=q1=Design: Delicate Crimson Spinel", "=ds=#p12# (375)"};
- { 5, 35256, "", "=q1=Design: Gleaming Lionseye", "=ds=#p12# (375)"};
- { 6, 35262, "", "=q1=Design: Lustrous Empyrean Sapphire", "=ds=#p12# (375)"};
- { 7, 35248, "", "=q1=Design: Runed Crimson Spinel", "=ds=#p12# (375)"};
- { 8, 35260, "", "=q1=Design: Smooth Lionseye", "=ds=#p12# (375)"};
- { 9, 35263, "", "=q1=Design: Solid Empyrean Sapphire", "=ds=#p12# (375)"};
- { 10, 35264, "", "=q1=Design: Sparkling Empyrean Sapphire", "=ds=#p12# (375)"};
- { 11, 35249, "", "=q1=Design: Subtle Crimson Spinel", "=ds=#p12# (375)"};
- { 12, 35250, "", "=q1=Design: Teardrop Crimson Spinel", "=ds=#p12# (375)"};
- { 13, 35261, "", "=q1=Design: Thick Lionseye", "=ds=#p12# (375)"};
- { 14, 34780, "", "=q1=Naaru Ration", "=ds=#e3#"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 35238, "", "=q1=Design: Balanced Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 2, 35251, "", "=q1=Design: Dazzling Seaspray Emerald", "=ds=#p12# (375)"};
- { 3, 35266, "", "=q1=Design: Glinting Pyrestone", "=ds=#p12# (375)"};
- { 4, 35239, "", "=q1=Design: Glowing Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 5, 35240, "", "=q1=Design: Infused Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 6, 35253, "", "=q1=Design: Jagged Seaspray Emerald", "=ds=#p12# (375)"};
- { 7, 35268, "", "=q1=Design: Luminous Pyrestone", "=ds=#p12# (375)"};
- { 8, 35269, "", "=q1=Design: Potent Pyrestone", "=ds=#p12# (375)"};
- { 9, 35254, "", "=q1=Design: Radiant Seaspray Emerald", "=ds=#p12# (375)"};
- { 10, 34872, "", "=q1=Formula: Void Shatter", "=ds=#p4# (375)"};
- { 11, 35500, "", "=q1=Formula: Enchant Chest - Defense", "=ds=#p4# (360)"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 35769, "", "=q4=Design: Forceful Seaspray Emerald", "=ds=#p12# (375)"};
- { 2, 35768, "", "=q4=Design: Quick Lionseye", "=ds=#p12# (375)"};
- { 3, 35767, "", "=q4=Design: Reckless Pyrestone", "=ds=#p12# (375)"};
- { 4, 35766, "", "=q4=Design: Steady Seaspray Emerald", "=ds=#p12# (375)"};
- { 5, 34665, "", "=q3=Bombardier's Blade", "=ds=#h1#, #w4#"};
- { 6, 34667, "", "=q3=Archmage's Guile", "=ds=#h3#, #w10#"};
- { 7, 34672, "", "=q3=Inuuro's Blade", "=ds=#h1#, #w10#"};
- { 8, 34666, "", "=q3=The Sunbreaker", "=ds=#h1#, #w10#"};
- { 9, 34671, "", "=q3=K'iru's Presage", "=ds=#h3#, #w6#"};
- { 10, 34670, "", "=q3=Seeker's Gavel", "=ds=#h3#, #w6#"};
- { 11, 34673, "", "=q3=Legionfoe", "=ds=#h2#, #w1#"};
- { 12, 34674, "", "=q3=Truestrike Crossbow", "=ds=#w3#"};
- { 13, 29193, "", "=q2=Arcanum of the Gladiator", "=ds=#s1# #e17#"};
- { 14, 35252, "", "=q1=Design: Enduring Seaspray Emerald", "=ds=#p12# (375)"};
- { 15, 35697, "", "=q1=Design: Figurine - Crimson Serpent", "=ds=#p12# (375)"};
- { 16, 35695, "", "=q1=Design: Figurine - Empyrean Tortoise", "=ds=#p12# (375)"};
- { 17, 35696, "", "=q1=Design: Figurine - Khorium Boar", "=ds=#p12# (375)"};
- { 18, 35699, "", "=q1=Design: Figurine - Seaspray Albatross", "=ds=#p12# (375)"};
- { 19, 35698, "", "=q1=Design: Figurine - Shadowsong Panther", "=ds=#p12# (375)"};
- { 20, 35259, "", "=q1=Design: Rigid Lionseye", "=ds=#p12# (375)"};
- { 21, 35241, "", "=q1=Design: Royal Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 22, 35271, "", "=q1=Design: Wicked Pyrestone", "=ds=#p12# (375)"};
- { 23, 35505, "", "=q1=Design: Ember Skyfire Diamond", "=ds=#p12# (370)"};
- { 24, 35502, "", "=q1=Design: Eternal Earthstorm Diamond", "=ds=#p12# (370)"};
- { 25, 35708, "", "=q1=Design: Regal Nightseye", "=ds=#p12# (350)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 34678, "", "=q4=Shattered Sun Pendant of Acumen", "=ds=#s2#"};
- { 2, 34679, "", "=q4=Shattered Sun Pendant of Might", "=ds=#s2#"};
- { 3, 34680, "", "=q4=Shattered Sun Pendant of Resolve", "=ds=#s2#"};
- { 4, 34677, "", "=q4=Shattered Sun Pendant of Restoration", "=ds=#s2#"};
- { 5, 34676, "", "=q4=Dawnforged Defender", "=ds=#w8#"};
- { 6, 34675, "", "=q4=Sunward Crest", "=ds=#w8#"};
- { 7, 35325, "", "=q3=Design: Forceful Talasite", "=ds=#p12# (350)"};
- { 8, 35322, "", "=q3=Design: Quick Dawnstone", "=ds=#p12# (350)"};
- { 9, 35323, "", "=q3=Design: Reckless Noble Topaz", "=ds=#p12# (350)"};
- { 10, 35221, "", "=q1=Tabard of the Shattered Sun", "=ds=#s7#"};
- { 11, 35247, "", "=q1=Design: Flashing Crimson Spinel", "=ds=#p12# (375)"};
- { 12, 35257, "", "=q1=Design: Great Lionseye", "=ds=#p12# (375)"};
- { 13, 35267, "", "=q1=Design: Inscribed Pyrestone", "=ds=#p12# (375)"};
- { 14, 35258, "", "=q1=Design: Mystic Lionseye", "=ds=#p12# (375)"};
- { 15, 37504, "", "=q1=Design: Purified Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 16, 35242, "", "=q1=Design: Shifting Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 17, 35243, "", "=q1=Design: Sovereign Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 18, 35265, "", "=q1=Design: Stormy Empyrean Sapphire", "=ds=#p12# (375)"};
- { 19, 35270, "", "=q1=Design: Veiled Pyrestone", "=ds=#p12# (375)"};
- { 20, 35755, "", "=q1=Recipe: Assassin's Alchemist Stone", "=ds=#p1# (375)"};
- { 21, 35752, "", "=q1=Recipe: Guardian's Alchemist Stone", "=ds=#p1# (375)"};
- { 22, 35754, "", "=q1=Recipe: Redeemer's Alchemist Stone", "=ds=#p1# (375)"};
- { 23, 35753, "", "=q1=Recipe: Sorcerer's Alchemist Stone", "=ds=#p1# (375)"};
- };
+
+
+-------------------------------------
+--- Caverns of Time: Hyjal Summit ---
+-------------------------------------
+
+AtlasLoot_Data["CoTHyjal"] = {
+ Name = BabbleZone["Caverns of Time"] .. ": " .. BabbleZone["Hyjal Summit"];
+ DisplayName = BabbleZone["Hyjal Summit"];
+ Type = "BCRaid";
+ Map = "CoTHyjal";
+ {
+ Name = BabbleBoss["Rage Winterchill"];
+ { 1, 30871, "", "=q4=Bracers of Martyrdom", "=ds=#s8#, #a1#", "", "17%" };
+ { 2, 30870, "", "=q4=Cuffs of Devastation", "=ds=#s8#, #a1#", "", "16%" };
+ { 3, 30863, "", "=q4=Deadly Cuffs", "=ds=#s8#, #a2#", "", "15%" };
+ { 4, 30868, "", "=q4=Rejuvenating Bracers", "=ds=#s8#, #a2#", "", "16%" };
+ { 5, 30864, "", "=q4=Bracers of the Pathfinder", "=ds=#s8#, #a3#", "", "15%" };
+ { 6, 30869, "", "=q4=Howling Wind Bracers", "=ds=#s8#, #a3#", "", "12%" };
+ { 7, 30873, "", "=q4=Stillwater Boots", "=ds=#s12#, #a3#", "", "14%" };
+ { 8, 30866, "", "=q4=Blood-stained Pauldrons", "=ds=#s3#, #a4#", "", "15%" };
+ { 9, 30862, "", "=q4=Blessed Adamantite Bracers", "=ds=#s8#, #a4#", "", "15%" };
+ { 10, 30861, "", "=q4=Furious Shackles", "=ds=#s8#, #a4#", "", "15%" };
+ { 16, 30865, "", "=q4=Tracker's Blade", "=ds=#h1#, #w4#", "", "15%" };
+ { 17, 30872, "", "=q4=Chronicle of Dark Secrets", "=ds=#s15#", "", "16%" };
+ { 19, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 21, 32459, "", "=q1=Time-Phased Phylactery", "=ds=#m3#", "", "8%" };
};
-
- -----------------
- --- Sporeggar ---
- -----------------
-
- AtlasLoot_Data["Sporeggar"] = {
- Name = BabbleFaction["Sporeggar"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 27689, "", "=q1=Recipe: Sporeling Snack", "=ds=#p3# (310)", "2 #glowcap#", ""};
- { 2, 30156, "", "=q1=Recipe: Clam Bar", "=ds=#p3# (300)", "1 #glowcap#", ""};
- { 3, 25548, "", "=q1=Tallstalk Mushroom", "=ds=#e3#", "1 #glowcap#", ""};
- { 4, 24539, "", "=q1=Marsh Lichen", "=ds=#e3#", "2 #glowcap#", ""};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 25827, "", "=q3=Muck-Covered Drape", "=ds=#s4#", "25 #glowcap#", ""};
- { 2, 25828, "", "=q3=Petrified Lichen Guard", "=ds=#w8#", "15 #glowcap#", ""};
- { 3, 25550, "", "=q1=Redcap Toadstool", "=ds=#e3#", "1 #glowcap#", ""};
- { 4, 24245, "", "=q1=Glowcap", "=ds=#m17#", "", ""};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 29150, "", "=q3=Hardened Stone Shard", "=ds=#h1#, #w4#", "45 #glowcap#", ""};
- { 2, 29149, "", "=q3=Sporeling's Firestick", "=ds=#w12#", "20 #glowcap#", ""};
- { 3, 22916, "", "=q2=Recipe: Transmute Primal Earth to Water", "=ds=#p1# (350)", "25 #glowcap#", ""};
- { 4, 38229, "", "=q1=Pattern: Mycah's Botanical Bag", "=ds=#p8# (375)", "25 #glowcap#", ""};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 34478, "", "=q3=Tiny Sporebat", "=ds=#e13#", "30 #glowcap#", ""};
- { 2, 22906, "", "=q2=Recipe: Shrouding Potion", "=ds=#p1# (335)", "30 #glowcap#", ""};
- { 3, 31775, "", "=q1=Sporeggar Tabard", "=ds=#s7#", "10 #glowcap#", ""};
- };
+ {
+ Name = BabbleBoss["Anetheron"];
+ { 1, 30884, "", "=q4=Hatefury Mantle", "=ds=#s3#, #a1#", "", "16%" };
+ { 2, 30888, "", "=q4=Anetheron's Noose", "=ds=#s10#, #a1#", "", "16%" };
+ { 3, 30885, "", "=q4=Archbishop's Slippers", "=ds=#s12#, #a1#", "", "17%" };
+ { 4, 30879, "", "=q4=Don Alejandro's Money Belt", "=ds=#s10#, #a2#", "", "16%" };
+ { 5, 30886, "", "=q4=Enchanted Leather Sandals", "=ds=#s12#, #a2#", "", "15%" };
+ { 6, 30887, "", "=q4=Golden Links of Restoration", "=ds=#s5#, #a3#", "", "16%" };
+ { 7, 30880, "", "=q4=Quickstrider Moccasins", "=ds=#s12#, #a3#", "", "16%" };
+ { 8, 30878, "", "=q4=Glimmering Steel Mantle", "=ds=#s3#, #a4#", "", "16%" };
+ { 16, 30874, "", "=q4=The Unbreakable Will", "=ds=#h1#, #w10#", "", "16%" };
+ { 17, 30881, "", "=q4=Blade of Infamy", "=ds=#h1#, #w10#", "", "15%" };
+ { 18, 30883, "", "=q4=Pillar of Ferocity", "=ds=#h2#, #w9#", "", "16%" };
+ { 19, 30882, "", "=q4=Bastion of Light", "=ds=#w8#", "", "15%" };
+ { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
-
- -----------------
- --- The Aldor ---
- -----------------
-
- AtlasLoot_Data["Aldor"] = {
- Name = BabbleFaction["The Aldor"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 23149, "", "=q2=Design: Gleaming Golden Draenite", "=ds=#p12# (305)"};
- { 2, 23601, "", "=q1=Plans: Flamebane Bracers", "=ds=#p2# (350)"};
- { 3, 30842, "", "=q1=Pattern: Flameheart Bracers", "=ds=#p8# (350)"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 29129, "", "=q3=Anchorite's Robes", "=ds=#a1#, #s5#"};
- { 2, 28881, "", "=q2=Inscription of Discipline", "=ds=#s3# #e17#"};
- { 3, 28878, "", "=q2=Inscription of Faith", "=ds=#s3# #e17#"};
- { 4, 28885, "", "=q2=Inscription of Vengeance", "=ds=#s3# #e17#"};
- { 5, 28882, "", "=q2=Inscription of Warding", "=ds=#s3# #e17#"};
- { 6, 23145, "", "=q2=Design: Royal Shadow Draenite", "=ds=#p12# (305)"};
- { 7, 23603, "", "=q1=Plans: Flamebane Gloves", "=ds=#p2# (360)"};
- { 8, 29704, "", "=q1=Pattern: Blastguard Belt", "=ds=#p7# (350)"};
- { 9, 29693, "", "=q1=Pattern: Flamescale Belt", "=ds=#p7# (350)"};
- { 10, 30843, "", "=q1=Pattern: Flameheart Gloves", "=ds=#p8# (360)"};
- { 11, 24293, "", "=q1=Pattern: Silver Spellthread", "=ds=#p8# (335)"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 29127, "", "=q3=Vindicator's Hauberk", "=ds=#s5#, #a4#"};
- { 2, 29128, "", "=q3=Lightwarden's Band", "=ds=#s13#"};
- { 3, 29130, "", "=q3=Auchenai Staff", "=ds=#h2#, #w9#"};
- { 4, 24177, "", "=q3=Design: Pendant of Shadow's End", "=ds=#p12# (360)"};
- { 5, 23604, "", "=q1=Plans: Flamebane Breastplate", "=ds=#p2# (365)"};
- { 6, 29703, "", "=q1=Pattern: Blastguard Boots", "=ds=#p7# (350)"};
- { 7, 29691, "", "=q1=Pattern: Flamescale Boots", "=ds=#p7# (350)"};
- { 8, 25721, "", "=q1=Pattern: Vindicator's Armor Kit", "=ds=#p7# (325)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 29123, "", "=q4=Medallion of the Lightbearer", "=ds=#s2#"};
- { 2, 29124, "", "=q4=Vindicator's Brand", "=ds=#h1#, #w10#"};
- { 3, 28886, "", "=q3=Greater Inscription of Discipline", "=ds=#s3# #e17#"};
- { 4, 28887, "", "=q3=Greater Inscription of Faith", "=ds=#s3# #e17#"};
- { 5, 28888, "", "=q3=Greater Inscription of Vengeance", "=ds=#s3# #e17#"};
- { 6, 28889, "", "=q3=Greater Inscription of Warding", "=ds=#s3# #e17#"};
- { 7, 23602, "", "=q1=Plans: Flamebane Helm", "=ds=#p2# (355)"};
- { 8, 29702, "", "=q1=Pattern: Blastguard Pants", "=ds=#p7# (350)"};
- { 9, 29689, "", "=q1=Pattern: Flamescale Leggings", "=ds=#p7# (350)"};
- { 10, 24295, "", "=q1=Pattern: Golden Spellthread", "=ds=#p8# (375)"};
- { 11, 30844, "", "=q1=Pattern: Flameheart Vest", "=ds=#p8# (370)"};
- { 12, 31779, "", "=q1=Aldor Tabard", "=ds=#s7#"};
- };
+ {
+ Name = BabbleBoss["Kaz'rogal"];
+ { 1, 30895, "", "=q4=Angelista's Sash", "=ds=#s10#, #a1#", "", "16%" };
+ { 2, 30916, "", "=q4=Leggings of Channeled Elements", "=ds=#s11#, #a1#", "", "17%" };
+ { 3, 30894, "", "=q4=Blue Suede Shoes", "=ds=#s12#, #a1#", "", "16%" };
+ { 4, 30917, "", "=q4=Razorfury Mantle", "=ds=#s3#, #a2#", "", "17%" };
+ { 5, 30914, "", "=q4=Belt of the Crescent Moon", "=ds=#s10#, #a2#", "", "9%" };
+ { 6, 30891, "", "=q4=Black Featherlight Boots", "=ds=#s12#, #a2#", "", "14%" };
+ { 7, 30892, "", "=q4=Beast-tamer's Shoulders", "=ds=#s3#, #a3#", "", "15%" };
+ { 8, 30919, "", "=q4=Valestalker Girdle", "=ds=#s10#, #a3#", "", "15%" };
+ { 9, 30893, "", "=q4=Sun-touched Chain Leggings", "=ds=#s11#, #a3#", "", "15%" };
+ { 10, 30915, "", "=q4=Belt of Seething Fury", "=ds=#s10#, #a4#", "", "17%" };
+ { 16, 30918, "", "=q4=Hammer of Atonement", "=ds=#h3#, #w6#", "", "17%" };
+ { 17, 30889, "", "=q4=Kaz'rogal's Hardened Heart", "=ds=#w8#", "", "16%" };
+ { 19, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
-
- ----------------------
- --- The Consortium ---
- ----------------------
-
- AtlasLoot_Data["Consortium"] = {
- Name = BabbleFaction["The Consortium"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 25732, "", "=q3=Pattern: Fel Leather Gloves", "=ds=#p7# (340)"};
- { 2, 28274, "", "=q2=Formula: Enchant Cloak - Spell Penetration", "=ds=#p4# (325)"};
- { 3, 23146, "", "=q2=Design: Shifting Shadow Draenite", "=ds=#p12# (315)"};
- { 4, 23136, "", "=q2=Design: Luminous Flame Spessarite", "=ds=#p12# (305)"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 29457, "", "=q3=Nethershard", "=ds=#h3#, #w4#"};
- { 2, 29456, "", "=q3=Gift of the Ethereal", "=ds=#h1#, #w10#"};
- { 3, 29118, "", "=q3=Smuggler's Ammo Pouch", "=ds=#m14# #w20# =q1=#m1# =ds=#c2#"};
- { 4, 25733, "", "=q3=Pattern: Fel Leather Boots", "=ds=#p7# (350)"};
- { 5, 23134, "", "=q2=Design: Delicate Blood Garnet", "=ds=#p12# (325)"};
- { 6, 23155, "", "=q2=Design: Lustrous Azure Moonstone", "=ds=#p12# (325)"};
- { 7, 23150, "", "=q2=Design: Thick Golden Draenite", "=ds=#p12# (315)"};
- { 8, 22552, "", "=q1=Formula: Enchant Weapon - Major Striking", "=ds=#p4# (340)"};
- { 9, 25908, "", "=q1=Design: Swift Skyfire Diamond", "=ds=#p12# (365)"};
- { 10, 25902, "", "=q1=Design: Powerful Earthstorm Diamond", "=ds=#p12# (365) (#z12#)"};
- { 11, 24314, "", "=q1=Pattern: Bag of Jewels", "=ds=#p8# (340)"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 29117, "", "=q3=Stormspire Vest", "=ds=#s5#, #a1#"};
- { 2, 29116, "", "=q3=Nomad's Leggings", "=ds=#s11#, #a2#"};
- { 3, 29115, "", "=q3=Consortium Blaster", "=ds=#w5#"};
- { 4, 24178, "", "=q3=Design: Pendant of the Null Rune", "=ds=#p12# (360)"};
- { 5, 25734, "", "=q3=Pattern: Fel Leather Leggings", "=ds=#p7# (350)"};
- { 6, 22535, "", "=q1=Formula: Enchant Ring - Striking", "=ds=#p4# (360) (#z12#)"};
- { 7, 23874, "", "=q1=Schematic: Elemental Seaforium Charge", "=ds=#p5# (350)"};
- { 8, 25903, "", "=q1=Design: Bracing Earthstorm Diamond", "=ds=#p12# (365) (#z12#)"};
- { 9, 33156, "", "=q1=Design: Crimson Sun", "=ds=#p12# (360)"};
- { 10, 33305, "", "=q1=Design: Don Julio's Heart", "=ds=#p12# (360)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 29122, "", "=q4=Nether Runner's Cowl", "=ds=#s1#, #a1#"};
- { 2, 29119, "", "=q4=Haramad's Bargain", "=ds=#s2#"};
- { 3, 29121, "", "=q4=Guile of Khoraazi", "=ds=#h1#, #w4#"};
- { 4, 33622, "", "=q3=Design: Relentless Earthstorm Diamond", "=ds=#p12# (365)"};
- { 5, 31776, "", "=q1=Consortium Tabard", "=ds=#s7#"};
- };
+ {
+ Name = BabbleBoss["Azgalor"];
+ { 1, 30899, "", "=q4=Don Rodrigo's Poncho", "=ds=#s5#, #a2#", "", "15%" };
+ { 2, 30898, "", "=q4=Shady Dealer's Pantaloons", "=ds=#s11#, #a2#", "", "16%" };
+ { 3, 30900, "", "=q4=Bow-stitched Leggings", "=ds=#s11#, #a3#", "", "15%" };
+ { 4, 30896, "", "=q4=Glory of the Defender", "=ds=#s5#, #a4#", "", "15%" };
+ { 5, 30897, "", "=q4=Girdle of Hope", "=ds=#s10#, #a4#", "", "15%" };
+ { 6, 30901, "", "=q4=Boundless Agony", "=ds=#h1#, #w4#", "", "16%" };
+ { 16, 31092, "", "=q4=Gloves of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "74%" };
+ { 17, 31094, "", "=q4=Gloves of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "73%" };
+ { 18, 31093, "", "=q4=Gloves of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "73%" };
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
-
- -------------------
- --- The Mag'har ---
- -------------------
-
- AtlasLoot_Data["Maghar"] = {
- Name = BabbleFaction["The Mag'har"].." - "..BabbleFaction["Horde"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 25741, "", "=q3=Pattern: Netherfury Belt", "=ds=#p7# (340)"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 29143, "", "=q3=Clefthoof Hide Quiver", "=ds=#m14# #w19# =q1=#m1# =ds=#c2#"};
- { 2, 25742, "", "=q3=Pattern: Netherfury Leggings", "=ds=#p7# (340)"};
- { 3, 34174, "", "=q1=Pattern: Drums of Restoration", "=ds=#p7# (350)"};
- { 4, 34172, "", "=q1=Pattern: Drums of Speed", "=ds=#p7# (345)"};
- { 5, 29664, "", "=q1=Pattern: Reinforced Mining Bag", "=ds=#p7# (325)"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 29147, "", "=q3=Talbuk Hide Spaulders", "=ds=#s3#, #a2#"};
- { 2, 29141, "", "=q3=Tempest Leggings", "=ds=#s11#, #a2#"};
- { 3, 29145, "", "=q3=Band of Ancestral Spirits", "=ds=#s13#"};
- { 4, 25743, "", "=q3=Pattern: Netherfury Boots", "=ds=#p7# (350)"};
- { 5, 22917, "", "=q2=Recipe: Transmute Primal Fire to Earth", "=ds=#p1# (350)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 29102, "", "=q4=Reins of the Cobalt War Talbuk", "=ds=#e12#"};
- { 2, 29104, "", "=q4=Reins of the Silver War Talbuk", "=ds=#e12#"};
- { 3, 29105, "", "=q4=Reins of the Tan War Talbuk", "=ds=#e12#"};
- { 4, 29103, "", "=q4=Reins of the White War Talbuk", "=ds=#e12#"};
- { 5, 31829, "", "=q4=Reins of the Cobalt Riding Talbuk", "=ds=#e12#"};
- { 6, 31831, "", "=q4=Reins of the Silver Riding Talbuk", "=ds=#e12#"};
- { 7, 31833, "", "=q4=Reins of the Tan Riding Talbuk", "=ds=#e12#"};
- { 8, 31835, "", "=q4=Reins of the White Riding Talbuk", "=ds=#e12#"};
- { 9, 29139, "", "=q3=Ceremonial Cover", "=ds=#s4#"};
- { 10, 29135, "", "=q3=Earthcaller's Headdress", "=ds=#s1#, #a3#"};
- { 11, 29137, "", "=q3=Hellscream's Will", "=ds=#h2#, #w1#"};
- { 12, 31773, "", "=q1=Mag'har Tabard", "=ds=#s7#"};
- };
+ {
+ Name = BabbleBoss["Archimonde"];
+ { 1, 30913, "", "=q4=Robes of Rhonin", "=ds=#s5#, #a1#", "", "15%" };
+ { 2, 30912, "", "=q4=Leggings of Eternity", "=ds=#s11#, #a1#", "", "15%" };
+ { 3, 30905, "", "=q4=Midnight Chestguard", "=ds=#s5#, #a2#", "", "14%" };
+ { 4, 30907, "", "=q4=Mail of Fevered Pursuit", "=ds=#s5#, #a3#", "", "15%" };
+ { 5, 30904, "", "=q4=Savior's Grasp", "=ds=#s5#, #a4#", "", "14%" };
+ { 6, 30903, "", "=q4=Legguards of Endless Rage", "=ds=#s11#, #a4#", "", "15%" };
+ { 7, 30911, "", "=q4=Scepter of Purification", "=ds=#s15#", "", "15%" };
+ { 9, 30910, "", "=q4=Tempest of Chaos", "=ds=#h3#, #w10#", "", "14%" };
+ { 10, 30902, "", "=q4=Cataclysm's Edge", "=ds=#h2#, #w10#", "", "15%" };
+ { 11, 30908, "", "=q4=Apostle of Argus", "=ds=#h2#, #w9#", "", "15%" };
+ { 12, 30909, "", "=q4=Antonidas's Aegis of Rapt Concentration", "=ds=#w8#", "", "15%" };
+ { 13, 30906, "", "=q4=Bristleblitz Striker", "=ds=#w2#", "", "16%" };
+ { 16, 31097, "", "=q4=Helm of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "70%" };
+ { 17, 31095, "", "=q4=Helm of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "72%" };
+ { 18, 31096, "", "=q4=Helm of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "73%" };
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
-
- ------------------------------
- --- The Scale of the Sands ---
- ------------------------------
-
- AtlasLoot_Data["ScaleSands"] = {
- Name = BabbleFaction["The Scale of the Sands"];
- {
- Name = "Rings";
- { 1, 29298, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r2#"};
- { 2, 29299, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r3#"};
- { 3, 29300, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r4#"};
- { 4, 29301, "", "=q4=Band of the Eternal Champion", "=ds=#s13#, =q1=#r5#"};
- { 6, 29294, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r2#"};
- { 7, 29295, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r3#"};
- { 8, 29296, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r4#"};
- { 9, 29297, "", "=q4=Band of the Eternal Defender", "=ds=#s13#, =q1=#r5#"};
- { 16, 29302, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r2#"};
- { 17, 29303, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r3#"};
- { 18, 29304, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r4#"};
- { 19, 29305, "", "=q4=Band of the Eternal Sage", "=ds=#s13#, =q1=#r5#"};
- { 21, 29307, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r2#"};
- { 22, 29306, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r3#"};
- { 23, 29308, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r4#"};
- { 24, 29309, "", "=q4=Band of the Eternal Restorer", "=ds=#s13#, =q1=#r5#"};
- };
- {
- Name = BabbleFaction["Friendly"];
- { 1, 32274, "", "=q4=Design: Bold Crimson Spinel", "=ds=#p12# (375)"};
- { 2, 32283, "", "=q4=Design: Bright Crimson Spinel", "=ds=#p12# (375)"};
- { 3, 32277, "", "=q4=Design: Delicate Crimson Spinel", "=ds=#p12# (375)"};
- { 4, 32282, "", "=q4=Design: Runed Crimson Spinel", "=ds=#p12# (375)"};
- { 5, 32284, "", "=q4=Design: Subtle Crimson Spinel", "=ds=#p12# (375)"};
- { 6, 32281, "", "=q4=Design: Teardrop Crimson Spinel", "=ds=#p12# (375)"};
- { 7, 32288, "", "=q4=Design: Lustrous Empyrean Sapphire", "=ds=#p12# (375)"};
- { 8, 32286, "", "=q4=Design: Solid Empyrean Sapphire", "=ds=#p12# (375)"};
- { 9, 32287, "", "=q4=Design: Sparkling Empyrean Sapphire", "=ds=#p12# (375)"};
- { 10, 32290, "", "=q4=Design: Brilliant Lionseye", "=ds=#p12# (375)"};
- { 11, 32293, "", "=q4=Design: Gleaming Lionseye", "=ds=#p12# (375)"};
- { 12, 32291, "", "=q4=Design: Smooth Lionseye", "=ds=#p12# (375)"};
- { 13, 32294, "", "=q4=Design: Thick Lionseye", "=ds=#p12# (375)"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 35763, "", "=q4=Design: Quick Lionseye", "=ds=#p12# (375)"};
- { 2, 32306, "", "=q4=Design: Glinting Pyrestone", "=ds=#p12# (375)"};
- { 3, 32305, "", "=q4=Design: Luminous Pyrestone", "=ds=#p12# (375)"};
- { 4, 32304, "", "=q4=Design: Potent Pyrestone", "=ds=#p12# (375)"};
- { 5, 35762, "", "=q4=Design: Reckless Pyrestone", "=ds=#p12# (375)"};
- { 6, 32299, "", "=q4=Design: Balanced Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 7, 32301, "", "=q4=Design: Glowing Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 8, 32300, "", "=q4=Design: Infused Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 9, 32311, "", "=q4=Design: Dazzling Seaspray Emerald", "=ds=#p12# (375)"};
- { 10, 35765, "", "=q4=Design: Forceful Seaspray Emerald", "=ds=#p12# (375)"};
- { 11, 32312, "", "=q4=Design: Jagged Seaspray Emerald", "=ds=#p12# (375)"};
- { 12, 32310, "", "=q4=Design: Radiant Seaspray Emerald", "=ds=#p12# (375)"};
- { 13, 35764, "", "=q4=Design: Steady Seaspray Emerald", "=ds=#p12# (375)"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 31737, "", "=q4=Timeless Arrow", "=ds=#w17#"};
- { 2, 31735, "", "=q4=Timeless Shell", "=ds=#w18#"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 32292, "", "=q4=Design: Rigid Lionseye", "=ds=#p12# (375)"};
- { 2, 32308, "", "=q4=Design: Wicked Pyrestone", "=ds=#p12# (375)"};
- { 3, 32309, "", "=q4=Design: Enduring Seaspray Emerald", "=ds=#p12# (375)"};
- { 4, 32302, "", "=q4=Design: Royal Shadowsong Amethyst", "=ds=#p12# (375)"};
- };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 32590, "", "=q4=Nethervoid Cloak", "=ds=#s4#", "", "1%" };
+ { 2, 34010, "", "=q4=Pepe's Shroud of Pacification", "=ds=#s4#", "", "1%" };
+ { 3, 32609, "", "=q4=Boots of the Divine Light", "=ds=#s12#, #a1#", "", "1%" };
+ { 4, 32592, "", "=q4=Chestguard of Relentless Storms", "=ds=#s5#, #a3#", "", "1%" };
+ { 5, 32591, "", "=q4=Choker of Serrated Blades", "=ds=#s2#", "", "1%" };
+ { 6, 32589, "", "=q4=Hellfire-Encased Pendant", "=ds=#s2#", "", "1%" };
+ { 7, 34009, "", "=q4=Hammer of Judgement", "=ds=#h3#, #w6#", "", "1%" };
+ { 8, 32946, "", "=q4=Claw of Molten Fury", "=ds=#h3#, #w13#", "", "0.46%" };
+ { 9, 32945, "", "=q4=Fist of Molten Fury", "=ds=#h4#, #w13#", "", "0.42%" };
+ { 11, 32428, "", "=q3=Heart of Darkness", "=ds=#e8#", "", "16%" };
+ { 12, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%" };
+ { 16, 32285, "", "=q4=Design: Flashing Crimson Spinel", "=ds=#p12# (375)", "", "4%" };
+ { 17, 32296, "", "=q4=Design: Great Lionseye", "=ds=#p12# (375)", "", "3%" };
+ { 18, 32303, "", "=q4=Design: Inscribed Pyrestone", "=ds=#p12# (375)", "", "3%" };
+ { 19, 32295, "", "=q4=Design: Mystic Lionseye", "=ds=#p12# (375)", "", "4%" };
+ { 20, 32298, "", "=q4=Design: Shifting Shadowsong Amethyst", "=ds=#p12# (375)", "", "4%" };
+ { 21, 32297, "", "=q4=Design: Sovereign Shadowsong Amethyst", "=ds=#p12# (375)", "", "4%" };
+ { 22, 32289, "", "=q4=Design: Stormy Empyrean Sapphire", "=ds=#p12# (375)", "", "4%" };
+ { 23, 32307, "", "=q4=Design: Veiled Pyrestone", "=ds=#p12# (375)", "", "3%" };
};
+};
- -------------------
- --- The Scryers ---
- -------------------
+------------------------------------------
+--- Coilfang Reservoir: The Slave Pens ---
+------------------------------------------
+
+AtlasLoot_Data["CFRSlavePens"] = {
+ Name = BabbleZone["Coilfang Reservoir"] .. ": " .. BabbleZone["The Slave Pens"];
+ DisplayName = BabbleZone["The Slave Pens"];
+ Type = "BCDungeon";
+ Map = "CFRTheSlavePens";
+ {
+ Name = BabbleBoss["Mennu the Betrayer"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 24359, "", "=q3=Princely Reign Leggings", "=ds=#s11#, #a1#", "", "10.20%" };
+ { 3, 24357, "", "=q3=Vest of Living Lightning", "=ds=#s5#, #a3#", "", "11.94%" };
+ { 4, 24360, "", "=q3=Tracker's Belt", "=ds=#s10#, #a3#", "", "11.07%" };
+ { 5, 24356, "", "=q3=Wastewalker Shiv", "=ds=#h1#, #w4#", "", "12.47%" };
+ { 6, 24361, "", "=q3=Spellfire Longsword", "=ds=#h3#, #w10#", "", "11.07%" };
+ { 8, 29674, "", "=q2=Pattern: Nature Armor Kit", "=ds=#p7# (340)", "", "0.80%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30604, "", "=q4=Resplendent Fire Opal", "=ds=#e7#", "", "22.49%" };
+ { 19, 30605, "", "=q4=Vivid Chrysoprase", "=ds=#e7#", "", "9.39%" };
+ { 20, 30603, "", "=q4=Royal Tanzanite", "=ds=#e7#", "", "10.48%" };
+ { 22, 27542, "", "=q3=Cord of Belief", "=ds=#s10#, #a1#", "", "16.50%" };
+ { 23, 27545, "", "=q3=Mennu's Scaled Leggings", "=ds=#s11#, #a2#", "", "8.50%" };
+ { 24, 27541, "", "=q3=Archery Belt of the Broken", "=ds=#s10#, #a3#", "", "12.75%" };
+ { 25, 27546, "", "=q3=Traitor's Noose", "=ds=#s2#", "", "13.75%" };
+ { 26, 27544, "", "=q3=Totem of Spontaneous Regrowth", "=ds=#s16#, #w15#", "", "12.25%" };
+ { 27, 27543, "", "=q3=Starlight Dagger", "=ds=#h3#, #w4#", "", "20.00%" };
+ { 29, 29674, "", "=q2=Pattern: Nature Armor Kit", "=ds=#p7# (340)", "", "0.80%" };
- AtlasLoot_Data["Scryer"] = {
- Name = BabbleFaction["The Scryers"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 23133, "", "=q2=Design: Runed Blood Garnet", "=ds=#p12# (315)"};
- { 2, 23597, "", "=q1=Plans: Enchanted Adamantite Belt", "=ds=#p2# (355)"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 28907, "", "=q2=Inscription of the Blade", "=ds=#s3# #e17#"};
- { 2, 28908, "", "=q2=Inscription of the Knight", "=ds=#s3# #e17#"};
- { 3, 28904, "", "=q2=Inscription of the Oracle", "=ds=#s3# #e17#"};
- { 4, 28903, "", "=q2=Inscription of the Orb", "=ds=#s3# #e17#"};
- { 5, 23143, "", "=q2=Design: Dazzling Deep Peridot", "=ds=#p12# (325)"};
- { 6, 23598, "", "=q1=Plans: Enchanted Adamantite Boots", "=ds=#p2# (355)"};
- { 7, 29701, "", "=q1=Pattern: Enchanted Clefthoof Boots", "=ds=#p7# (350)"};
- { 8, 29682, "", "=q1=Pattern: Enchanted Felscale Gloves", "=ds=#p7# (350)"};
- { 9, 24292, "", "=q1=Pattern: Mystic Spellthread", "=ds=#p8# (335)"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 29131, "", "=q3=Retainer's Leggings", "=ds=#s11#, #a2# "};
- { 2, 29134, "", "=q3=Gauntlets of the Chosen", "=ds=#s9#, #a4# "};
- { 3, 29132, "", "=q3=Scryer's Bloodgem", "=ds=#s14#"};
- { 4, 29133, "", "=q3=Seer's Cane", "=ds=#h2#, #w9#"};
- { 5, 24176, "", "=q3=Design: Pendant of Withering", "=ds=#p12# (360)"};
- { 6, 22908, "", "=q2=Recipe: Elixir of Major Firepower", "=ds=#p1# (345)"};
- { 7, 23599, "", "=q1=Plans: Enchanted Adamantite Breastplate", "=ds=#p2# (360)"};
- { 8, 29700, "", "=q1=Pattern: Enchanted Clefthoof Gloves", "=ds=#p7# (350)"};
- { 9, 29684, "", "=q1=Pattern: Enchanted Felscale Boots", "=ds=#p7# (350)"};
- { 10, 25722, "", "=q1=Pattern: Magister's Armor Kit", "=ds=#p7# (325)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 29126, "", "=q4=Seer's Signet", "=ds=#s13#"};
- { 2, 29125, "", "=q4=Retainer's Blade", "=ds=#h1#, #w4#"};
- { 3, 28910, "", "=q3=Greater Inscription of the Blade", "=ds=#s3# #e17#"};
- { 4, 28911, "", "=q3=Greater Inscription of the Knight", "=ds=#s3# #e17#"};
- { 5, 28912, "", "=q3=Greater Inscription of the Oracle", "=ds=#s3# #e17#"};
- { 6, 28909, "", "=q3=Greater Inscription of the Orb", "=ds=#s3# #e17#"};
- { 7, 23600, "", "=q1=Plans: Enchanted Adamantite Leggings", "=ds=#p2# (365)"};
- { 8, 29698, "", "=q1=Pattern: Enchanted Clefthoof Leggings", "=ds=#p7# (350)"};
- { 9, 29677, "", "=q1=Pattern: Enchanted Felscale Leggings", "=ds=#p7# (350)"};
- { 10, 24294, "", "=q1=Pattern: Runic Spellthread", "=ds=#p8# (375)"};
- { 11, 31780, "", "=q1=Scryers Tabard", "=ds=#s7#"};
- };
};
-
- -------------------
- --- The Sha'tar ---
- -------------------
-
- AtlasLoot_Data["Shatar"] = {
- Name = BabbleFaction["The Sha'tar"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 25904, "", "=q1=Design: Insightful Earthstorm Diamond", "=ds=#p12# (365)"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 29180, "", "=q3=Blessed Scale Girdle", "=ds=#s10#, #a3#"};
- { 2, 29179, "", "=q3=Xi'ri's Gift", "=ds=#s14#"};
- { 3, 24182, "", "=q3=Design: Talasite Owl", "=ds=#p12# (370)"};
- { 4, 29191, "", "=q2=Arcanum of Power", "=ds=#s1# #e17#"};
- { 5, 22915, "", "=q2=Recipe: Transmute Primal Air to Fire", "=ds=#p1# (350)"};
- { 6, 28281, "", "=q2=Formula: Enchant Weapon - Major Healing", "=ds=#p4# (350)"};
- { 7, 13517, "", "=q1=Recipe: Alchemist's Stone", "=ds=#p1# (350)"};
- { 8, 22537, "", "=q1=Formula: Enchant Ring - Healing Power", "=ds=#p4# (370)"};
- { 9, 33159, "", "=q1=Design: Blood of Amber", "=ds=#p12# (360)"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 30826, "", "=q3=Design: Ring of Arcane Shielding", "=ds=#p12# (360)"};
- { 2, 29195, "", "=q2=Arcanum of Arcane Warding", "=ds=#s1# #e17#"};
- { 3, 28273, "", "=q2=Formula: Enchant Gloves - Major Healing", "=ds=#p4# (350)"};
- { 4, 33155, "", "=q1=Design: Kailee's Rose", "=ds=#p12# (360)"};
- { 5, 29717, "", "=q1=Pattern: Drums of Battle", "=ds=#p7# (365)"};
- { 6, 30634, "", "=q1=Warpforged Key", "=ds=#e9#"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 29177, "", "=q4=A'dal's Command", "=ds=#s13#"};
- { 2, 29175, "", "=q4=Gavel of Pure Light", "=ds=#h3#, #w6#"};
- { 3, 29176, "", "=q4=Crest of the Sha'tar", "=ds=#w8#"};
- { 4, 33153, "", "=q3=Formula: Enchant Gloves - Threat", "=ds=#p4# (300)"};
- { 5, 31354, "", "=q2=Recipe: Flask of the Titans", "=ds=#p1# (300)"};
- { 6, 31781, "", "=q1=Sha'tar Tabard", "=ds=#s7#"};
- };
+ {
+ Name = BabbleBoss["Rokmar the Crackler"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 24379, "", "=q3=Bogstrok Scale Cloak", "=ds=#s4#", "", "10.05%" };
+ { 3, 24376, "", "=q3=Runed Fungalcap", "=ds=#s14#", "", "11.45%" };
+ { 4, 24378, "", "=q3=Coilfang Hammer of Renewal", "=ds=#h3#, #w6#", "", "9.66%" };
+ { 5, 24380, "", "=q3=Calming Spore Reed", "=ds=#w12#", "", "10.26%" };
+ { 6, 24381, "", "=q3=Coilfang Needler", "=ds=#w3#", "", "10.05%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30604, "", "=q4=Resplendent Fire Opal", "=ds=#e7#", "", "22.49%" };
+ { 19, 30605, "", "=q4=Vivid Chrysoprase", "=ds=#e7#", "", "9.39%" };
+ { 20, 30603, "", "=q4=Royal Tanzanite", "=ds=#e7#", "", "10.48%" };
+ { 22, 27550, "", "=q3=Ironscale War Cloak", "=ds=#s4#", "", "11.48%" };
+ { 23, 27547, "", "=q3=Coldwhisper Cord", "=ds=#s10#, #a1#", "", "14.85%" };
+ { 24, 28124, "", "=q3=Liar's Cord", "=ds=#s10#, #a2#", "", "8.96%" };
+ { 25, 27549, "", "=q3=Wavefury Boots", "=ds=#s12#, #a3#", "", "9.80%" };
+ { 26, 27548, "", "=q3=Girdle of Many Blessings", "=ds=#s10#, #a4#", "", "14.85%" };
+ { 27, 27551, "", "=q3=Skeletal Necklace of Battlerage", "=ds=#s2#", "", "16.25%" };
};
-
- ----------------------
- --- The Violet Eye ---
- ----------------------
-
- AtlasLoot_Data["VioletEye"] = {
- Name = BabbleFaction["The Violet Eye"];
- {
- Name = "Rings";
- { 1, 0, "INV_Jewelry_Ring_62", "=q6="..AL["Path of the Violet Assassin"], ""};
- { 2, 29280, "", "=q3=Violet Signet", "=ds=#s13#, =q1=#r2#"};
- { 3, 29281, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r3#"};
- { 4, 29282, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r4#"};
- { 5, 29283, "", "=q4=Violet Signet of the Master Assassin", "=ds=#s13#, =q1=#r5#"};
- { 7, 0, "INV_Jewelry_Ring_62", "=q6="..AL["Path of the Violet Mage"], ""};
- { 8, 29284, "", "=q3=Violet Signet", "=ds=#s13#, =q1=#r2#"};
- { 9, 29285, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r3#"};
- { 10, 29286, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r4#"};
- { 11, 29287, "", "=q4=Violet Signet of the Archmage", "=ds=#s13#, =q1=#r5#"};
- { 16, 0, "INV_Jewelry_Ring_62", "=q6="..AL["Path of the Violet Restorer"], ""};
- { 17, 29288, "", "=q3=Violet Signet", "=ds=#s13#, =q1=#r2#"};
- { 18, 29289, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r3#"};
- { 19, 29291, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r4#"};
- { 20, 29290, "", "=q4=Violet Signet of the Grand Restorer", "=ds=#s13#, =q1=#r5#"};
- { 22, 0, "INV_Jewelry_Ring_62", "=q6="..AL["Path of the Violet Protector"], ""};
- { 23, 29276, "", "=q3=Violet Signet", "=ds=#s13#, =q1=#r2#"};
- { 24, 29277, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r3#"};
- { 25, 29278, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r4#"};
- { 26, 29279, "", "=q4=Violet Signet of the Great Protector", "=ds=#s13#, =q1=#r5#"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 31113, "", "=q4=Violet Badge", "=q1=#m4#: =ds=#s14#"};
- { 2, 31395, "", "=q4=Plans: Iceguard Helm", "=ds=#p2# (375)"};
- { 3, 31393, "", "=q4=Plans: Iceguard Breastplate", "=ds=#p2# (375)"};
- { 4, 31401, "", "=q4=Design: The Frozen Eye", "=ds=#p12# (375)"};
- { 5, 29187, "", "=q2=Inscription of Endurance", "=ds=#s3# #e17#"};
- { 6, 33209, "", "=q2=Recipe: Flask of Chromatic Wonder", "=ds=#p1# (375)"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 34581, "", "=q4=Mysterious Arrow", "=ds=#w17#"};
- { 2, 34582, "", "=q4=Mysterious Shell", "=ds=#w18#"};
- { 3, 31394, "", "=q4=Plans: Iceguard Leggings", "=ds=#p2# (375)"};
- { 4, 33205, "", "=q4=Pattern: Shadowprowler's Chestguard", "=ds=#p7# (365)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 33124, "", "=q3=Pattern: Cloak of Darkness", "=ds=#p7# (360)"};
- { 2, 33165, "", "=q1=Formula: Enchant Weapon - Greater Agility", "=ds=#p4# (350)"};
- };
+ {
+ Name = BabbleBoss["Quagmirran"];
+ { 1, 27796, "", "=q3=Mana-Etched Spaulders", "=ds=#s3#, #a1# (D3)", "", "5.24%" };
+ { 2, 27713, "", "=q3=Pauldrons of Desolation", "=ds=#s3#, #a3# (D3)", "", "10.70%" };
+ { 4, 27742, "", "=q3=Mage-Fury Girdle", "=ds=#s10#, #a1#", "", "12.00%" };
+ { 5, 27712, "", "=q3=Shackles of Quagmirran", "=ds=#s8#, #a2#" };
+ { 6, 27800, "", "=q3=Earthsoul Britches", "=ds=#s11#, #a2#", "", "13.76%" };
+ { 7, 28337, "", "=q3=Breastplate of Righteous Fury", "=ds=#s5#, #a4#", "", "8.73%" };
+ { 8, 27672, "", "=q3=Girdle of the Immovable", "=ds=#s10#, #a4#", "", "7.64%" };
+ { 9, 27740, "", "=q3=Band of Ursol", "=ds=#s13#", "", "12.23%" };
+ { 10, 27683, "", "=q3=Quagmirran's Eye", "=ds=#s14#", "", "7.86%" };
+ { 11, 27714, "", "=q3=Swamplight Lantern", "=ds=#s15#", "", "10.92%" };
+ { 12, 27673, "", "=q3=Phosphorescent Blade", "=ds=#h1#, #w10#" };
+ { 13, 27741, "", "=q3=Bleeding Hollow Warhammer", "=ds=#h3#, #w6#", "", "9.83%" };
+ { 15, 33821, "", "=q1=The Heart of Quagmirran", "=ds=#m3#", "", "100%" };
+ { 16, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 17, 30604, "", "=q4=Resplendent Fire Opal", "=ds=#e7#", "", "22.49%" };
+ { 18, 30605, "", "=q4=Vivid Chrysoprase", "=ds=#e7#", "", "9.39%" };
+ { 19, 30603, "", "=q4=Royal Tanzanite", "=ds=#e7#", "", "10.48%" };
+ { 20, 29242, "", "=q4=Boots of Blasphemy", "=ds=#s12#, #a1#", "", "10.04%" };
+ { 21, 30538, "", "=q4=Midnight Legguards", "=ds=#s11#, #a2#", "", "8.95%" };
+ { 22, 32078, "", "=q4=Pauldrons of Wild Magic", "=ds=#s3#, #a3#" };
+ { 23, 29349, "", "=q4=Adamantine Chain of the Unbroken", "=ds=#s2#", "", "1.53%" };
+ { 25, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 26, 24362, "", "=q3=Spore-Soaked Vaneer", "=ds=#s4#", "", "10.63%" };
+ { 27, 24365, "", "=q3=Deft Handguards", "=ds=#s9#, #a2#", "", "10.89%" };
+ { 28, 24366, "", "=q3=Scorpid-Sting Mantle", "=ds=#s3#, #a3#", "", "11.72%" };
+ { 29, 24363, "", "=q3=Unscarred Breastplate", "=ds=#s5#, #a4#", "", "9.54%" };
+ { 30, 24364, "", "=q3=Azureplate Greaves", "=ds=#s11#, #a4#", "", "9.98%" };
};
+};
- -----------------
- --- Thrallmar ---
- -----------------
+------------------------------------------
+--- Coilfang Reservoir: The Steamvault ---
+------------------------------------------
- AtlasLoot_Data["Thrallmar"] = {
- Name = BabbleFaction["Thrallmar"].." - "..BabbleFaction["Horde"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 25738, "", "=q3=Pattern: Felstalker Belt", "=ds=#p7# (350)"};
- { 2, 31359, "", "=q2=Design: Enduring Deep Peridot", "=ds=#p12# (315)"};
- { 3, 24000, "", "=q1=Formula: Enchant Bracer - Superior Healing", "=ds=#p4# (325)"};
- { 4, 24006, "", "=q1=Grunt's Waterskin", "=ds=#e4#"};
- { 5, 24009, "", "=q1=Dried Fruit Rations", "=ds=#e3#"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 25824, "", "=q3=Farseer's Band", "=ds=#s13#"};
- { 2, 25823, "", "=q3=Grunt's Waraxe", "=ds=#h1#, #w1#"};
- { 3, 25739, "", "=q3=Pattern: Felstalker Bracers", "=ds=#p7# (360)"};
- { 4, 25740, "", "=q3=Pattern: Felstalker Breastplate", "=ds=#p7# (360)"};
- { 5, 29197, "", "=q2=Arcanum of Fire Warding", "=ds=#s1# #e17#"};
- { 6, 29232, "", "=q1=Recipe: Transmute Skyfire Diamond", "=ds=#p1# (350)"};
- { 7, 24001, "", "=q1=Recipe: Elixir of Major Agility", "=ds=#p1# (330)"};
- { 8, 31361, "", "=q1=Pattern: Cobrahide Leg Armor", "=ds=#p7# (335)"};
- { 9, 30637, "", "=q1=Flamewrought Key", "=ds=#e9#"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 29168, "", "=q3=Ancestral Band", "=ds=#s13#"};
- { 2, 29167, "", "=q3=Blackened Spear", "=ds=#w7#"};
- { 3, 32882, "", "=q3=Hellfire Shot", "=ds=#w18#"};
- { 4, 31358, "", "=q3=Design: Dawnstone Crab", "=ds=#p12# (370)"};
- { 5, 29190, "", "=q2=Arcanum of Renewal", "=ds=#s1# #e17#"};
- { 6, 24003, "", "=q1=Formula: Enchant Chest - Exceptional Stats", "=ds=#p4# (345)"};
- { 7, 34201, "", "=q1=Pattern: Netherscale Ammo Pouch", "=ds=#p7# (350)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 29155, "", "=q4=Stormcaller", "=ds=#h3#, #w10#"};
- { 2, 29165, "", "=q4=Warbringer", "=ds=#h1#, #w1#"};
- { 3, 29152, "", "=q4=Marksman's Bow", "=ds=#w2#"};
- { 4, 33151, "", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# (300)"};
- { 5, 24002, "", "=q1=Plans: Felsteel Shield Spike", "=ds=#p2# (360)"};
- { 6, 31362, "", "=q1=Pattern: Nethercobra Leg Armor", "=ds=#p7# (365)"};
- { 7, 24004, "", "=q1=Thrallmar Tabard", "=ds=#s7#"};
- };
+AtlasLoot_Data["CFRSteamvault"] = {
+ Name = BabbleZone["Coilfang Reservoir"] .. ": " .. BabbleZone["The Steamvault"];
+ DisplayName = BabbleZone["The Steamvault"];
+ Type = "BCDungeon";
+ Map = "CFRTheSteamvault";
+ {
+ Name = BabbleBoss["Hydromancer Thespia"];
+ { 1, 27508, "", "=q3=Incanter's Gloves", "=ds=#s9#, #a1# (D3)", "", "17.09%" };
+ { 3, 27789, "", "=q3=Cloak of Whispering Shells", "=ds=#s4#", "", "14.32%" };
+ { 4, 27787, "", "=q3=Chestguard of No Remorse", "=ds=#s5#, #a2#", "", "17.65%" };
+ { 5, 27783, "", "=q3=Moonrage Girdle", "=ds=#s10#, #a2#", "", "18.71%" };
+ { 6, 27784, "", "=q3=Scintillating Coral Band", "=ds=#s13#", "", "16.72%" };
+ { 8, 29673, "", "=q2=Pattern: Frost Armor Kit", "=ds=#p7# (340)", "", "0.60%" };
+ { 10, 30828, "", "=q1=Vial of Underworld Loam", "=ds=#m3#", "", "100%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30550, "", "=q4=Sundered Chrysoprase", "=ds=#e7#", "", "8.59%" };
+ { 19, 30551, "", "=q4=Infused Fire Opal", "=ds=#e7#", "", "6.64%" };
+ { 20, 30549, "", "=q4=Shifting Tanzanite", "=ds=#e7#", "", "1.56%" };
};
-
- --------------------
- --- Tranquillien ---
- --------------------
-
- AtlasLoot_Data["Tranquillien"] = {
- Name = BabbleFaction["Tranquillien"].." - "..BabbleFaction["Horde"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 22991, "", "=q2=Apprentice Boots", "=ds=#s12#, #a1# "};
- { 2, 22992, "", "=q2=Bogwalker Boots", "=ds=#s12#, #a2# "};
- { 3, 22993, "", "=q2=Volunteer's Greaves", "=ds=#s12#, #a3# "};
- { 4, 28164, "", "=q2=Tranquillien Flamberge", "=ds=#h2#, #w10#"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 28155, "", "=q2=Apothecary's Waistband", "=ds=#s10#, #a1# "};
- { 2, 28158, "", "=q2=Batskin Belt", "=ds=#s10#, #a2# "};
- { 3, 28162, "", "=q2=Tranquillien Defender's Girdle", "=ds=#s10#, #a3# "};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 22986, "", "=q2=Apothecary's Robe", "=ds=#s5#, #a1# "};
- { 2, 22987, "", "=q2=Deathstalker's Vest", "=ds=#s5#, #a2# "};
- { 3, 22985, "", "=q2=Suncrown Hauberk", "=ds=#s5#, #a3# "};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 22990, "", "=q3=Tranquillien Champion's Cloak", "=ds=#s4#"};
- };
+ {
+ Name = BabbleBoss["Mekgineer Steamrigger"];
+ { 1, 27793, "", "=q3=Earth Mantle Handwraps", "=ds=#s9#, #a3#", "", "16.92%" };
+ { 2, 27790, "", "=q3=Mask of Penance", "=ds=#s1#, #a4#", "", "16.65%" };
+ { 3, 27792, "", "=q3=Steam-Hinge Chain of Valor", "=ds=#s2#", "", "14.49%" };
+ { 4, 27791, "", "=q3=Serpentcrest Life-Staff", "=ds=#h2#, #w9#", "", "17.09%" };
+ { 5, 27794, "", "=q3=Recoilless Rocket Ripper X-54", "=ds=#w5#", "", "15.88%" };
+ { 7, 23887, "", "=q3=Schematic: Rocket Boots Xtreme", "=ds=#p5# (355)", "", "0.52%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30550, "", "=q4=Sundered Chrysoprase", "=ds=#e7#", "", "8.59%" };
+ { 19, 30551, "", "=q4=Infused Fire Opal", "=ds=#e7#", "", "6.64%" };
+ { 20, 30549, "", "=q4=Shifting Tanzanite", "=ds=#e7#", "", "1.56%" };
};
-
- ------------
- --- Misc ---
- ------------
-
- AtlasLoot_Data["ShattrathFlasks"] = {
- Name = "Shattrath Flasks";
- {
- Name = "Shattrath Flasks";
- { 1, 32898, "", "=q1=Shattrath Flask of Fortification", "=ds=#e2#"};
- { 2, 32899, "", "=q1=Shattrath Flask of Mighty", "=ds=#e2#"};
- { 3, 32901, "", "=q1=Shattrath Flask of Relentless", "=ds=#e2#"};
- { 4, 32900, "", "=q1=Shattrath Flask of Supreme Power", "=ds=#e2#"};
- };
+ {
+ Name = BabbleBoss["Warlord Kalithresh"];
+ { 1, 24313, "", "=q4=Pattern: Battlecast Hood", "=ds=#p8# (375)", "", "0.20%" };
+ { 3, 27738, "", "=q3=Incanter's Pauldrons", "=ds=#s3#, #a1# (D3)", "", "12.25%" };
+ { 4, 27737, "", "=q3=Moonglade Shoulders", "=ds=#s3#, #a2# (D3)", "", "12.89%" };
+ { 5, 27801, "", "=q3=Beast Lord Mantle", "=ds=#s3#, #a3# (D3)", "", "10.63%" };
+ { 6, 27510, "", "=q3=Tidefury Gauntlets", "=ds=#s9#, #a3# (D3)", "", "12.45%" };
+ { 7, 27874, "", "=q3=Beast Lord Leggings", "=ds=#s11#, #a3# (D3)", "", "9.56%" };
+ { 8, 28203, "", "=q3=Breastplate of the Righteous", "=ds=#s5#, #a4# (D3)", "", "10.98%" };
+ { 9, 27475, "", "=q3=Gauntlets of the Bold", "=ds=#s9#, #a4# (D3)", "", "10.05%" };
+ { 11, 27804, "", "=q3=Devilshark Cape", "=ds=#s4#", "", "12.18%" };
+ { 12, 27799, "", "=q3=Vermillion Robes of the Dominant", "=ds=#s5#, #a1#", "", "12.47%" };
+ { 13, 27795, "", "=q3=Sash of Serpentra", "=ds=#s10#, #a1#", "", "11.03%" };
+ { 14, 27806, "", "=q3=Fathomheart Gauntlets", "=ds=#s9#, #a3#", "", "14.84%" };
+ { 15, 27805, "", "=q3=Ring of the Silver Hand", "=ds=#s13#", "", "13.95%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30550, "", "=q4=Sundered Chrysoprase", "=ds=#e7#", "", "8.59%" };
+ { 19, 30551, "", "=q4=Infused Fire Opal", "=ds=#e7#", "", "6.64%" };
+ { 20, 30549, "", "=q4=Shifting Tanzanite", "=ds=#e7#", "", "1.56%" };
+ { 21, 30543, "", "=q4=Pontifex Kilt", "=ds=#s11#, #a1#", "", "7.81%" };
+ { 22, 29243, "", "=q4=Wave-Fury Vambraces", "=ds=#s8#, #a3#", "", "17.97%" };
+ { 23, 29463, "", "=q4=Amber Bands of the Aggressor", "=ds=#s8#, #a4#", "", "2.34%" };
+ { 24, 29351, "", "=q4=Wrathtide Longbow", "=ds=#w2#", "", "3.52%" };
+ { 26, 31721, "", "=q1=Kalithresh's Trident", "=ds=#m3#", "", "100%" };
+ { 27, 33827, "", "=q1=The Warlord's Treatise", "=ds=#m3#", "", "100%" };
};
-
- -----------
- --- PvP ---
- -----------
-
- ---------------------------------------------------------------
- --- World PvP - Hellfire Peninsula: Hellfire Fortifications ---
- ---------------------------------------------------------------
-
- AtlasLoot_Data["PVPHellfire"] = {
- Name = AL["Hellfire Fortifications"];
- {
- Name = AL["Hellfire Fortifications"];
- { 1, 27833, "", "=q3=Band of the Victor", "=ds=15 #markthrallmarhhold#"};
- { 2, 27786, "", "=q3=Barbed Deep Peridot", "=ds=10 #markthrallmarhhold#"};
- { 3, 28360, "", "=q3=Mighty Blood Garnet", "=ds=10 #markthrallmarhhold#"};
- { 5, 0, "INV_BannerPVP_02", "=q6=#m7#", ""};
- { 6, 24520, "", "=q1=Honor Hold Favor", "=ds=5 #markhhold#"};
- { 7, 24579, "", "=q1=Mark of Honor Hold", "=ds=#m18#"};
- { 16, 27830, "", "=q3=Circlet of the Victor", "=ds=15 #markthrallmarhhold#"};
- { 17, 27785, "", "=q3=Notched Deep Peridot", "=ds=10 #markthrallmarhhold#"};
- { 18, 27777, "", "=q3=Stark Blood Garnet", "=ds=10 #markthrallmarhhold#"};
- { 20, 0, "INV_BannerPVP_01", "=q6=#m6#", ""};
- { 21, 24522, "", "=q1=Thrallmar Favor", "=ds=5 #markthrallmar#"};
- { 22, 24581, "", "=q1=Mark of Thrallmar", "=ds=#m19#"};
- };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 24159, "", "=q3=Design: Khorium Band of Frost", "=ds=#p12# (355) =q1=#n86#", "", "0.14%" };
+ { 3, 22533, "", "=q2=Formula: Enchant Bracer - Fortitude", "=ds=#p4# (350) =q1=#n87#", "", "0.40%" };
+ { 5, 24367, "", "=q1=Orders from Lady Vashj", "=ds=#m2#" };
+ { 6, 24368, "", "=q1=Coilfang Armaments", "=ds=#m3#", "", "12.68%" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Second Fragment Guardian"], "=q5=" .. BabbleZone["The Steamvault"] };
+ { 17, 24487, "", "=q1=Second Key Fragment", "=ds=#m3#", "", "100%" };
};
+};
- AtlasLoot_Data["PVPHalaa"] = {
- Name = BabbleZone["Nagrand"]..": "..AL["Halaa"];
- {
- Name = "Page 1";
- { 1, 28915, "", "=q4=Reins of the Dark Riding Talbuk", "=ds=#e12#", "70 #halaabattle# 15 #halaaresearch#", ""};
- { 2, 27679, "", "=q4=Sublime Mystic Dawnstone", "=ds=#e7#", "100 #halaabattle#", ""};
- { 3, 27649, "", "=q3=Hierophant's Leggings", "=ds=#a1# #s11#", "40 #halaabattle# 2 #halaaresearch#", ""};
- { 4, 27648, "", "=q3=Dreamstalker Leggings", "=ds=#a2# #s11#", "40 #halaabattle# 2 #halaaresearch#", ""};
- { 5, 27650, "", "=q3=Shadowstalker's Leggings", "=ds=#a2# #s11#", "40 #halaabattle# 2 #halaaresearch#", ""};
- { 6, 27647, "", "=q3=Marksman's Legguards", "=ds=#a3# #s11#", "40 #halaabattle# 2 #halaaresearch#", ""};
- { 7, 27652, "", "=q3=Stormbreaker's Leggings", "=ds=#a3# #s11#", "40 #halaabattle# 2 #halaaresearch#", ""};
- { 8, 27654, "", "=q3=Avenger's Legguards", "=ds=#a4# #s11#", "40 #halaabattle# 2 #halaaresearch#", ""};
- { 9, 27653, "", "=q3=Slayer's Legguards", "=ds=#a4# #s11#", "40 #halaabattle# 2 #halaaresearch#", ""};
- { 11, 24208, "", "=q3=Design: Mystic Dawnstone", "=ds=#p12# (350)"};
- { 14, 26045, "", "=q2=Halaa Battle Token", "=ds=#m17#"};
- { 16, 29228, "", "=q4=Reins of the Dark War Talbuk", "=ds=#e12#", "100 #halaabattle# 20 #halaaresearch#", ""};
- { 17, 27680, "", "=q3=Halaani Bag", "=ds=#m14# #e1#", "8 #halaaresearch#", ""};
- { 18, 27638, "", "=q3=Hierophant's Sash", "=ds=#a1# #s10#", "20 #halaabattle# 1 #halaaresearch#", ""};
- { 19, 27645, "", "=q3=Dreamstalker Sash", "=ds=#a2# #s10#", "20 #halaabattle# 1 #halaaresearch#", ""};
- { 20, 27637, "", "=q3=Shadowstalker's Sash", "=ds=#a2# #s10#", "20 #halaabattle# 1 #halaaresearch#", ""};
- { 21, 27646, "", "=q3=Marksman's Belt", "=ds=#a3# #s10#", "20 #halaabattle# 1 #halaaresearch#", ""};
- { 22, 27643, "", "=q3=Stormbreaker's Girdle", "=ds=#a3# #s10#", "20 #halaabattle# 1 #halaaresearch#", ""};
- { 23, 27644, "", "=q3=Avenger's Waistguard", "=ds=#a4# #s10#", "20 #halaabattle# 1 #halaaresearch#", ""};
- { 24, 27639, "", "=q3=Slayer's Waistguard", "=ds=#a4# #s10#", "20 #halaabattle# 1 #halaaresearch#", ""};
- { 26, 33783, "", "=q3=Design: Steady Talasite", "=ds=#p12# (350)", "4 #halaaresearch#", ""};
- { 27, 32071, "", "=q1=Recipe: Elixir of Ironskin", "=ds=#p1# (330)", "2 #halaaresearch#", ""};
- { 29, 26044, "", "=q2=Halaa Research Token", "=ds=#m17#"};
- };
- {
- Name = "Page 2";
- { 1, 30611, "", "=q3=Halaani Razorshaft", "=ds=#w17#"};
- { 2, 30615, "", "=q1=Halaani Whiskey", "=ds=#e4#"};
- { 4, 0, "INV_BannerPVP_02", "=q6=#m7#", ""};
- { 5, 30598, "", "=q3=Don Amancio's Heart", "=ds=#e7#"};
- { 6, 30597, "", "=q2=Halaani Claymore", "=ds=#h2#, #w10#"};
- { 7, 30599, "", "=q2=Avenging Blades", "=ds=#w11#"};
- { 16, 30612, "", "=q3=Halaani Grimshot", "=ds=#w18#"};
- { 19, 0, "INV_BannerPVP_01", "=q6=#m6#", ""};
- { 20, 30571, "", "=q3=Don Rodrigo's Heart", "=ds=#e7#"};
- { 21, 30570, "", "=q2=Arkadian Claymore", "=ds=#h2#, #w10#"};
- { 22, 30568, "", "=q2=The Sharp Cookie", "=ds=#w11#"};
- };
+----------------------------------------
+--- Coilfang Reservoir: The Underbog ---
+----------------------------------------
+
+AtlasLoot_Data["CFRUnderbog"] = {
+ Name = BabbleZone["Coilfang Reservoir"] .. ": " .. BabbleZone["The Underbog"];
+ DisplayName = BabbleZone["The Underbog"];
+ Type = "BCDungeon";
+ Map = "CFRTheUnderbog";
+ {
+ Name = BabbleBoss["Hungarfen"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 24450, "", "=q3=Manaspark Gloves", "=ds=#s9#, #a1#", "", "11.72%" };
+ { 3, 24452, "", "=q3=Starlight Gauntlets", "=ds=#s9#, #a2#", "", "12.35%" };
+ { 4, 24451, "", "=q3=Lykul Bloodbands", "=ds=#s8#, #a3#", "", "11.75%" };
+ { 5, 24413, "", "=q3=Totem of the Thunderhead", "=ds=#s16#, #w15#", "", "12.86%" };
+ { 6, 27631, "", "=q3=Needle Shrike", "=ds=#w11#", "", "11.60%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30606, "", "=q4=Lambent Chrysoprase", "=ds=#e7#", "", "17.89%" };
+ { 19, 30607, "", "=q4=Splendid Fire Opal", "=ds=#e7#", "", "6.50%" };
+ { 20, 30608, "", "=q4=Radiant Chrysoprase", "=ds=#e7#", "", "9.76%" };
+ { 22, 27746, "", "=q3=Arcanium Signet Bands", "=ds=#s8#, #a1#", "", "8.37%" };
+ { 23, 27745, "", "=q3=Hungarhide Gauntlets", "=ds=#s9#, #a3#", "", "13.79%" };
+ { 24, 27743, "", "=q3=Girdle of Living Flame", "=ds=#s10#, #a3#", "", "13.79%" };
+ { 25, 27748, "", "=q3=Cassock of the Loyal", "=ds=#s11#, #a4#", "", "7.39%" };
+ { 26, 27744, "", "=q3=Idol of Ursoc", "=ds=#s16#, #w14#", "", "16.26%" };
+ { 27, 27747, "", "=q3=Boggspine Knuckles", "=ds=#h4#, #w13#", "", "12.81%" };
};
-
- AtlasLoot_Data["PVPSpiritTowers"] = {
- Name = AL["Spirit Towers"];
- {
- Name = BabbleZone["Terokkar Forest"]..": "..AL["Spirit Towers"];
- { 1, 28553, "", "=q4=Band of the Exorcist", "=ds=#s13#", "50 #spiritshard#", ""};
- { 2, 28557, "", "=q3=Swift Starfire Diamond", "=ds=#e7#", "8 #spiritshard#", ""};
- { 3, 28759, "", "=q3=Exorcist's Dreadweave Hood", "=ds=#a1# #s1#", "18 #spiritshard#", ""};
- { 4, 28574, "", "=q3=Exorcist's Dragonhide Helm", "=ds=#a2# #s1#", "18 #spiritshard#", ""};
- { 5, 28575, "", "=q3=Exorcist's Wyrmhide Helm", "=ds=#a2# #s1#", "18 #spiritshard#", ""};
- { 6, 28577, "", "=q3=Exorcist's Linked Helm", "=ds=#a3# #s1#", "18 #spiritshard#", ""};
- { 7, 28560, "", "=q3=Exorcist's Lamellar Helm", "=ds=#a4# #s1#", "18 #spiritshard#", ""};
- { 8, 28761, "", "=q3=Exorcist's Scaled Helm", "=ds=#a4# #s1#", "18 #spiritshard#", ""};
- { 10, 32947, "", "=q1=Auchenai Healing Potion", "=ds=#e2#", "2 #spiritshard#", ""};
- { 12, 28558, "", "=q1=Spirit Shard", "=ds=#m17#"};
- { 16, 28555, "", "=q4=Seal of the Exorcist", "=ds=#s13#", "50 #spiritshard#", ""};
- { 17, 28556, "", "=q3=Swift Windfire Diamond", "=ds=#e7#", "8 #spiritshard#", ""};
- { 18, 28760, "", "=q3=Exorcist's Silk Hood", "=ds=#a1# #s1#", "18 #spiritshard#", ""};
- { 19, 28561, "", "=q3=Exorcist's Leather Helm", "=ds=#a2# #s1#", "18 #spiritshard#", ""};
- { 20, 28576, "", "=q3=Exorcist's Chain Helm", "=ds=#a3# #s1#", "18 #spiritshard#", ""};
- { 21, 28758, "", "=q3=Exorcist's Mail Helm", "=ds=#a3# #s1#", "18 #spiritshard#", ""};
- { 22, 28559, "", "=q3=Exorcist's Plate Helm", "=ds=#a4# #s1#", "18 #spiritshard#", ""};
- { 25, 32948, "", "=q1=Auchenai Mana Potion", "=ds=#e2#", "2 #spiritshard#", ""};
- };
+ {
+ Name = BabbleBoss["Ghaz'an"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 24459, "", "=q3=Cloak of Healing Rays", "=ds=#s4#", "", "14.18%" };
+ { 3, 24458, "", "=q3=Studded Girdle of Virtue", "=ds=#s10#, #a4#", "", "14.06%" };
+ { 4, 24460, "", "=q3=Talisman of Tenacity", "=ds=#s2#", "", "12.99%" };
+ { 5, 24462, "", "=q3=Luminous Pearls of Insight", "=ds=#s2#", "", "12.75%" };
+ { 6, 24461, "", "=q3=Hatebringer", "=ds=#h2#, #w6#", "", "14.12%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30606, "", "=q4=Lambent Chrysoprase", "=ds=#e7#", "", "17.89%" };
+ { 19, 30607, "", "=q4=Splendid Fire Opal", "=ds=#e7#", "", "6.50%" };
+ { 20, 30608, "", "=q4=Radiant Chrysoprase", "=ds=#e7#", "", "9.76%" };
+ { 22, 27760, "", "=q3=Dunewind Sash", "=ds=#s10#, #a2#", "", "14.67%" };
+ { 23, 27759, "", "=q3=Headdress of the Tides", "=ds=#s1#, #a3#", "", "13.33%" };
+ { 24, 27755, "", "=q3=Girdle of Gallantry", "=ds=#s10#, #a4#", "", "7.33%" };
+ { 25, 27758, "", "=q3=Hydra-fang Necklace", "=ds=#s2#", "", "12.00%" };
+ { 26, 27761, "", "=q3=Ring of the Shadow Deeps", "=ds=#s13#", "", "18.67%" };
+ { 27, 27757, "", "=q3=Greatstaff of the Leviathan", "=ds=#h2#, #w9#", "", "16.00%" };
};
-
- AtlasLoot_Data["PVPTwinSpireRuins"] = {
- Name = AL["Twin Spire Ruins"];
- {
- Name = BabbleZone["Zangarmarsh"]..": "..AL["Twin Spire Ruins"];
- { 1, 27990, "", "=q3=Idol of Savagery", "=ds=#w14#", "15 #markthrallmarhhold#", ""};
- { 2, 27984, "", "=q3=Totem of Impact", "=ds=#w15#", "15 #markthrallmarhhold#", ""};
- { 3, 27922, "", "=q3=Mark of Defiance", "=ds=#s14#", "30 #markthrallmarhhold#", ""};
- { 4, 27929, "", "=q3=Terminal Edge", "=ds=#w11#", "15 #markthrallmarhhold#", ""};
- { 5, 27939, "", "=q3=Incendic Rod", "=ds=#w12#", "15 #markthrallmarhhold#", ""};
- { 7, 24579, "", "=q1=Mark of Honor Hold", "=ds=#m18#"};
- { 16, 27983, "", "=q3=Libram of Zeal", "=ds=#w16#", "15 #markthrallmarhhold#", ""};
- { 17, 27920, "", "=q3=Mark of Conquest", "=ds=#s14#", "30 #markthrallmarhhold#", ""};
- { 18, 27927, "", "=q3=Mark of Vindication", "=ds=#s14#", "30 #markthrallmarhhold#", ""};
- { 19, 27930, "", "=q3=Splintermark", "=ds=#w2#", "15 #markthrallmarhhold#", ""};
- { 22, 24581, "", "=q1=Mark of Thrallmar", "=ds=#m19#"};
- };
+ {
+ Name = BabbleBoss["Swamplord Musel'ek"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 24454, "", "=q3=Cloak of Enduring Swiftness", "=ds=#s4#", "", "17.23%" };
+ { 3, 24455, "", "=q3=Tunic of the Nightwatcher", "=ds=#s5#, #a2#", "", "14.47%" };
+ { 4, 24457, "", "=q3=Truth Bearer Shoulderguards", "=ds=#s3#, #a4#", "", "14.42%" };
+ { 5, 24456, "", "=q3=Greaves of the Iron Guardian", "=ds=#s11#, #a4#", "", "12.41%" };
+ { 6, 24453, "", "=q3=Zangartooth Shortblade", "=ds=#h3#, #w4#", "", "15.17%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30606, "", "=q4=Lambent Chrysoprase", "=ds=#e7#", "", "17.89%" };
+ { 19, 30607, "", "=q4=Splendid Fire Opal", "=ds=#e7#", "", "6.50%" };
+ { 20, 30608, "", "=q4=Radiant Chrysoprase", "=ds=#e7#", "", "9.76%" };
+ { 22, 27764, "", "=q3=Hands of the Sun", "=ds=#s9#, #a1#", "", "12.14%" };
+ { 23, 27763, "", "=q3=Crown of the Forest Lord", "=ds=#s1#, #a2#", "", "20.00%" };
+ { 24, 27765, "", "=q3=Armwraps of Disdain", "=ds=#s8#, #a2#", "", "9.29%" };
+ { 25, 27766, "", "=q3=Swampstone Necklace", "=ds=#s2#", "", "17.14%" };
+ { 26, 27762, "", "=q3=Weathered Band of the Swamplord", "=ds=#s13#" };
+ { 27, 27767, "", "=q3=Bogreaver", "=ds=#h1#, #w1#", "", "9.29%" };
};
-
- -------------------------------------
- --- Rep-PvP Level 70 - Armor Sets ---
- -------------------------------------
-
- AtlasLoot_Data["PVP70RepGear"] = {
- Name = "Rep PVP Gear";
- {
- Name = BabbleInventory["Cloth"];
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvprep705_1#", "=ec1=#c5#"};
- { 2, 35339, "", "=q3=Satin Hood", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 3, 35341, "", "=q3=Satin Mantle", "=ds=#f2#, =ec1=#r3#"};
- { 4, 35342, "", "=q3=Satin Robe", "=ds=#f6#, =ec1=#r3#"};
- { 5, 35338, "", "=q3=Satin Gloves", "=ds=#f5#, =ec1=#r3#"};
- { 6, 35340, "", "=q3=Satin Leggings", "=ds=#f1#, =ec1=#r3#"};
- { 8, 0, "INV_BannerPVP_02", "=q6=#pvprep705_2#", "=ec1=#c5#"};
- { 9, 35333, "", "=q3=Mooncloth Cowl", "=ds=#f2#, =ec1=#r3#"};
- { 10, 35336, "", "=q3=Mooncloth Shoulderpads", "=ds=#f6#, =ec1=#r3#"};
- { 11, 35337, "", "=q3=Mooncloth Vestments", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 12, 35335, "", "=q3=Mooncloth Mitts", "=ds=#f1#, =ec1=#r3#"};
- { 13, 35334, "", "=q3=Mooncloth Legguards", "=ds=#f5#, =ec1=#r3#"};
- { 16, 0, "INV_BannerPVP_02", "=q6=#pvprep703#", "=ec1=#c3#"};
- { 17, 35344, "", "=q3=Evoker's Silk Cowl", "=ds=#f1#, =ec1=#r3#"};
- { 18, 35343, "", "=q3=Evoker's Silk Amice", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 19, 35346, "", "=q3=Evoker's Silk Raiment", "=ds=#f5#, =ec1=#r3#"};
- { 20, 35345, "", "=q3=Evoker's Silk Handguards", "=ds=#f2#, =ec1=#r3#"};
- { 21, 35347, "", "=q3=Evoker's Silk Trousers", "=ds=#f6#, =ec1=#r3#"};
- { 23, 0, "INV_BannerPVP_02", "=q6=#pvprep708#", "=ec1=#c8#"};
- { 24, 35329, "", "=q3=Dreadweave Hood", "=ds=#f6#, =ec1=#r3#"};
- { 25, 35331, "", "=q3=Dreadweave Mantle", "=ds=#f1#, =ec1=#r3#"};
- { 26, 35332, "", "=q3=Dreadweave Robe", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 27, 35328, "", "=q3=Dreadweave Gloves", "=ds=#f5#, =ec1=#r3#"};
- { 28, 35330, "", "=q3=Dreadweave Leggings", "=ds=#f2#, =ec1=#r3#"};
- };
- {
- Name = BabbleInventory["Leather"];
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvprep701_1#", "=ec1=#c1#"};
- { 2, 35357, "", "=q3=Dragonhide Helm", "=ds=#f1#, =ec1=#r3#"};
- { 3, 35359, "", "=q3=Dragonhide Spaulders", "=ds=#f2#, =ec1=#r3#"};
- { 4, 35360, "", "=q3=Dragonhide Robe", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 5, 35356, "", "=q3=Dragonhide Gloves", "=ds=#f5#, =ec1=#r3#"};
- { 6, 35358, "", "=q3=Dragonhide Legguards", "=ds=#f6#, =ec1=#r3#"};
- { 8, 0, "INV_BannerPVP_02", "=q6=#pvprep701_2#", "=ec1=#c1#"};
- { 9, 35372, "", "=q3=Wyrmhide Helm", "=ds=#f5#, =ec1=#r3#"};
- { 10, 35374, "", "=q3=Wyrmhide Spaulders", "=ds=#f6#, =ec1=#r3#"};
- { 11, 35375, "", "=q3=Wyrmhide Robe", "=ds=#f2#, =ec1=#r3#"};
- { 12, 35371, "", "=q3=Wyrmhide Gloves", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 13, 35373, "", "=q3=Wyrmhide Legguards", "=ds=#f1#, =ec1=#r3#"};
- { 16, 0, "INV_BannerPVP_02", "=q6=#pvprep701_3#", "=ec1=#c1#"};
- { 17, 35362, "", "=q3=Kodohide Helm", "=ds=#f2#, =ec1=#r3#"};
- { 18, 35364, "", "=q3=Kodohide Spaulders", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 19, 35365, "", "=q3=Kodohide Robe", "=ds=#f6#, =ec1=#r3#"};
- { 20, 35361, "", "=q3=Kodohide Gloves", "=ds=#f1#, =ec1=#r3#"};
- { 21, 35363, "", "=q3=Kodohide Legguards", "=ds=#f5#, =ec1=#r3#"};
- { 23, 0, "INV_BannerPVP_02", "=q6=#pvprep706#", "=ec1=#c6#"};
- { 24, 35367, "", "=q3=Opportunist's Leather Helm", "=ds=#f6#, =ec1=#r3#"};
- { 25, 35369, "", "=q3=Opportunist's Leather Spaulders", "=ds=#f5#, =ec1=#r3#"};
- { 26, 35370, "", "=q3=Opportunist's Leather Tunic", "=ds=#f1#, =ec1=#r3#"};
- { 27, 35366, "", "=q3=Opportunist's Leather Gloves", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 28, 35368, "", "=q3=Opportunist's Leather Legguards", "=ds=#f2#, =ec1=#r3#"};
- };
- {
- Name = BabbleInventory["Mail"];
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvprep707_1#", "=ec1=#c7#"};
- { 2, 35383, "", "=q3=Seer's Linked Helm", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 3, 35385, "", "=q3=Seer's Linked Spaulders", "=ds=#f6#, =ec1=#r3#"};
- { 4, 35381, "", "=q3=Seer's Linked Armor", "=ds=#f2#, =ec1=#r3#"};
- { 5, 35382, "", "=q3=Seer's Linked Gauntlets", "=ds=#f1#, =ec1=#r3#"};
- { 6, 35384, "", "=q3=Seer's Linked Leggings", "=ds=#f5#, =ec1=#r3#"};
- { 8, 0, "INV_BannerPVP_02", "=q6=#pvprep707_2#", "=ec1=#c7#"};
- { 9, 35388, "", "=q3=Seer's Mail Helm", "=ds=#f2#, =ec1=#r3#"};
- { 10, 35390, "", "=q3=Seer's Mail Spaulders", "=ds=#f5#, =ec1=#r3#"};
- { 11, 35386, "", "=q3=Seer's Mail Armor", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 12, 35387, "", "=q3=Seer's Mail Gauntlets", "=ds=#f6#, =ec1=#r3#"};
- { 13, 35389, "", "=q3=Seer's Mail Leggings", "=ds=#f1#, =ec1=#r3#"};
- { 16, 0, "INV_BannerPVP_02", "=q6=#pvprep707_3#", "=ec1=#c7#"};
- { 17, 35393, "", "=q3=Seer's Ringmail Headpiece", "=ds=#f5#, =ec1=#r3#"};
- { 18, 35395, "", "=q3=Seer's Ringmail Shoulderpads", "=ds=#f2#, =ec1=#r3#"};
- { 19, 35391, "", "=q3=Seer's Ringmail Chestguard", "=ds=#f1#, =ec1=#r3#"};
- { 20, 35392, "", "=q3=Seer's Ringmail Gloves", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 21, 35394, "", "=q3=Seer's Ringmail Legguards", "=ds=#f6#, =ec1=#r3#"};
- { 23, 0, "INV_BannerPVP_02", "=q6=#pvprep702#", "=ec1=#c2#"};
- { 24, 35378, "", "=q3=Stalker's Chain Helm", "=ds=#f1#, =ec1=#r3#"};
- { 25, 35380, "", "=q3=Stalker's Chain Spaulders", "=ds=#f2#, =ec1=#r3#"};
- { 26, 35376, "", "=q3=Stalker's Chain Armor", "=ds=#f5#, =ec1=#r3#"};
- { 27, 35377, "", "=q3=Stalker's Chain Gauntlets", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 28, 35379, "", "=q3=Stalker's Chain Leggings", "=ds=#f6#, =ec1=#r3#"};
- };
- {
- Name = BabbleInventory["Plate"];
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvprep704_1#", "=ec1=#c4#"};
- { 2, 35414, "", "=q3=Crusader's Scaled Helm", "=ds=#f5#, =ec1=#r3#"};
- { 3, 35416, "", "=q3=Crusader's Scaled Shoulders", "=ds=#f2#, =ec1=#r3#"};
- { 4, 35412, "", "=q3=Crusader's Scaled Chestpiece", "=ds=#f1#, =ec1=#r3#"};
- { 5, 35413, "", "=q3=Crusader's Scaled Gauntlets", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 6, 35415, "", "=q3=Crusader's Scaled Legguards", "=ds=#f6#, =ec1=#r3#"};
- { 8, 0, "INV_BannerPVP_02", "=q6=#pvprep704_2#", "=ec1=#c4#"};
- { 9, 35404, "", "=q3=Crusader's Ornamented Headguard", "=ds=#f2#, =ec1=#r3#"};
- { 10, 35406, "", "=q3=Crusader's Ornamented Spaulders", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 11, 35402, "", "=q3=Crusader's Ornamented Chestplate", "=ds=#f5#, =ec1=#r3#"};
- { 12, 35403, "", "=q3=Crusader's Ornamented Gloves", "=ds=#f6#, =ec1=#r3#"};
- { 13, 35405, "", "=q3=Crusader's Ornamented Leggings", "=ds=#f1#, =ec1=#r3#"};
- { 16, 0, "INV_BannerPVP_02", "=q6=#pvprep709#", "=ec1=#c9#"};
- { 17, 35409, "", "=q3=Savage Plate Helm", "=ds=#f3#/#f4#, =ec1=#r3#"};
- { 18, 35411, "", "=q3=Savage Plate Shoulders", "=ds=#f1#, =ec1=#r3#"};
- { 19, 35407, "", "=q3=Savage Plate Chestpiece", "=ds=#f2#, =ec1=#r3#"};
- { 20, 35408, "", "=q3=Savage Plate Gauntlets", "=ds=#f6#, =ec1=#r3#"};
- { 21, 35410, "", "=q3=Savage Plate Legguards", "=ds=#f5#, =ec1=#r3#"};
- };
- {
- Name = BabbleInventory["Cloth"].." - "..BabbleFaction["Alliance"];
- { 1,0, "INV_BannerPVP_02", "=q6=#pvprep705_1#", "=ec1=#c5#"};
- { 2,28705, "", "=q3=Grand Marshal's Satin Hood"};
- { 3,28707, "", "=q3=Grand Marshal's Satin Mantle"};
- { 4,28708, "", "=q3=Grand Marshal's Satin Robe"};
- { 5,28704, "", "=q3=Grand Marshal's Satin Gloves"};
- { 6,28706, "", "=q3=Grand Marshal's Satin Leggings"};
- { 8,0, "INV_BannerPVP_02", "=q6=#pvprep705_2#", "=ec1=#c5#"};
- { 9,31622, "", "=q3=Grand Marshal's Mooncloth Cowl"};
- { 10,31624, "", "=q3=Grand Marshal's Mooncloth Shoulderpads"};
- { 11,31625, "", "=q3=Grand Marshal's Mooncloth Vestments"};
- { 12,31620, "", "=q3=Grand Marshal's Mooncloth Mitts"};
- { 13,31623, "", "=q3=Grand Marshal's Mooncloth Legguards"};
- { 16,0, "INV_BannerPVP_02", "=q6=#pvprep703#", "=ec1=#c3#"};
- { 17,28715, "", "=q3=Grand Marshal's Silk Cowl"};
- { 18,28714, "", "=q3=Grand Marshal's Silk Amice"};
- { 19,28717, "", "=q3=Grand Marshal's Silk Raiment"};
- { 20,28716, "", "=q3=Grand Marshal's Silk Handguards"};
- { 21,28718, "", "=q3=Grand Marshal's Silk Trousers"};
- { 23,0, "INV_BannerPVP_02", "=q6=#pvprep708#", "=ec1=#c8#"};
- { 24,28625, "", "=q3=Grand Marshal's Dreadweave Hood"};
- { 25,28627, "", "=q3=Grand Marshal's Dreadweave Mantle"};
- { 26,28628, "", "=q3=Grand Marshal's Dreadweave Robe"};
- { 27,28624, "", "=q3=Grand Marshal's Dreadweave Gloves"};
- { 28,28626, "", "=q3=Grand Marshal's Dreadweave Leggings"};
-
- };
- {
- Name = BabbleInventory["Leather"].." - "..BabbleFaction["Alliance"];
- { 1,0, "INV_BannerPVP_02", "=q6=#pvprep701_1#", "=ec1=#c1#"};
- { 2,28619, "", "=q3=Grand Marshal's Dragonhide Helm"};
- { 3,28622, "", "=q3=Grand Marshal's Dragonhide Spaulders"};
- { 4,28623, "", "=q3=Grand Marshal's Dragonhide Robe"};
- { 5,28618, "", "=q3=Grand Marshal's Dragonhide Gloves"};
- { 6,28620, "", "=q3=Grand Marshal's Dragonhide Legguards"};
- { 8,0, "INV_BannerPVP_02", "=q6=#pvprep701_2#", "=ec1=#c1#"};
- { 9,31590, "", "=q3=Grand Marshal's Wyrmhide Helm"};
- { 10,31592, "", "=q3=Grand Marshal's Wyrmhide Spaulders"};
- { 11,31593, "", "=q3=Grand Marshal's Wyrmhide Robe"};
- { 12,31589, "", "=q3=Grand Marshal's Wyrmhide Gloves"};
- { 13,31591, "", "=q3=Grand Marshal's Wyrmhide Legguards"};
- { 16,0, "INV_BannerPVP_02", "=q6=#pvprep701_3#", "=ec1=#c1#"};
- { 17,28720, "", "=q3=Grand Marshal's Kodohide Helm"};
- { 18,28722, "", "=q3=Grand Marshal's Kodohide Spaulders"};
- { 19,28723, "", "=q3=Grand Marshal's Kodohide Robe"};
- { 20,28719, "", "=q3=Grand Marshal's Kodohide Gloves"};
- { 21,28721, "", "=q3=Grand Marshal's Kodohide Legguards"};
- { 23,0, "INV_BannerPVP_02", "=q6=#pvprep706#", "=ec1=#c6#"};
- { 24,28685, "", "=q3=Grand Marshal's Leather Helm"};
- { 25,28687, "", "=q3=Grand Marshal's Leather Spaulders"};
- { 26,28688, "", "=q3=Grand Marshal's Leather Tunic"};
- { 27,28684, "", "=q3=Grand Marshal's Leather Gloves"};
- { 28,28686, "", "=q3=Grand Marshal's Leather Legguards"};
- };
- {
- Name = BabbleInventory["Mail"].." - "..BabbleFaction["Alliance"];
- { 1,0, "INV_BannerPVP_02", "=q6=#pvprep707_1#", "=ec1=#c7#"};
- { 2,28691, "", "=q3=Grand Marshal's Linked Helm"};
- { 3,28693, "", "=q3=Grand Marshal's Linked Spaulders"};
- { 4,28689, "", "=q3=Grand Marshal's Linked Armor"};
- { 5,28690, "", "=q3=Grand Marshal's Linked Gauntlets"};
- { 6,28692, "", "=q3=Grand Marshal's Linked Leggings"};
- { 8,0, "INV_BannerPVP_02", "=q6=#pvprep707_2#", "=ec1=#c7#"};
- { 9,28696, "", "=q3=Grand Marshal's Mail Helm"};
- { 10,28698, "", "=q3=Grand Marshal's Mail Spaulders"};
- { 11,28694, "", "=q3=Grand Marshal's Mail Armor"};
- { 12,28695, "", "=q3=Grand Marshal's Mail Gauntlets"};
- { 13,28697, "", "=q3=Grand Marshal's Mail Leggings"};
- { 16,0, "INV_BannerPVP_02", "=q6=#pvprep707_3#", "=ec1=#c7#"};
- { 17,31642, "", "=q3=Grand Marshal's Ringmail Headpiece"};
- { 18,31644, "", "=q3=Grand Marshal's Ringmail Shoulderpads"};
- { 19,31640, "", "=q3=Grand Marshal's Ringmail Chestguard"};
- { 20,31641, "", "=q3=Grand Marshal's Ringmail Gloves"};
- { 21,31643, "", "=q3=Grand Marshal's Ringmail Legguards"};
- { 23,0, "INV_BannerPVP_02", "=q6=#pvprep702#", "=ec1=#c2#"};
- { 24,28615, "", "=q3=Grand Marshal's Chain Helm"};
- { 25,28617, "", "=q3=Grand Marshal's Chain Spaulders"};
- { 26,28613, "", "=q3=Grand Marshal's Chain Armor"};
- { 27,28614, "", "=q3=Grand Marshal's Chain Gauntlets"};
- { 28,28616, "", "=q3=Grand Marshal's Chain Leggings"};
- };
- {
- Name = BabbleInventory["Plate"].." - "..BabbleFaction["Alliance"];
- { 1,0, "INV_BannerPVP_02", "=q6=#pvprep704_1#", "=ec1=#c4#"};
- { 2,28711, "", "=q3=Grand Marshal's Scaled Helm"};
- { 3,28713, "", "=q3=Grand Marshal's Scaled Shoulders"};
- { 4,28709, "", "=q3=Grand Marshal's Scaled Chestpiece"};
- { 5,28710, "", "=q3=Grand Marshal's Scaled Gauntlets"};
- { 6,28712, "", "=q3=Grand Marshal's Scaled Legguards"};
- { 8,0, "INV_BannerPVP_02", "=q6=#pvprep704_2#", "=ec1=#c4#"};
- { 9,31632, "", "=q3=Grand Marshal's Ornamented Headguard"};
- { 10,31634, "", "=q3=Grand Marshal's Ornamented Spaulders"};
- { 11,31630, "", "=q3=Grand Marshal's Ornamented Chestplate"};
- { 12,31631, "", "=q3=Grand Marshal's Ornamented Gloves"};
- { 13,31633, "", "=q3=Grand Marshal's Ornamented Leggings"};
- { 16,0, "INV_BannerPVP_02", "=q6=#pvprep709#", "=ec1=#c9#"};
- { 17,28701, "", "=q3=Grand Marshal's Plate Helm"};
- { 18,28703, "", "=q3=Grand Marshal's Plate Shoulders"};
- { 19,28699, "", "=q3=Grand Marshal's Plate Chestpiece"};
- { 20,28700, "", "=q3=Grand Marshal's Plate Gauntlets"};
- { 21,28702, "", "=q3=Grand Marshal's Plate Legguards"};
- { 23,0, "INV_BannerPVP_02", "=q6=#arenas4_1#", "=ec1=#c4#"};
- { 24,28681, "", "=q3=Grand Marshal's Lamellar Helm"};
- { 25,28683, "", "=q3=Grand Marshal's Lamellar Shoulders"};
- { 26,28679, "", "=q3=Grand Marshal's Lamellar Chestpiece"};
- { 27,28680, "", "=q3=Grand Marshal's Lamellar Gauntlets"};
- { 28,28724, "", "=q3=Grand Marshal's Lamellar Legguards"};
- };
- {
- Name = BabbleInventory["Cloth"].." - Horde";
- { 1,0, "INV_BannerPVP_01", "=q6=#pvprep705_1#", "=ec1=#c5#"};
- { 2,28857, "", "=q3=High Warlord's Satin Hood"};
- { 3,28859, "", "=q3=High Warlord's Satin Mantle"};
- { 4,28860, "", "=q3=High Warlord's Satin Robe"};
- { 5,28856, "", "=q3=High Warlord's Satin Gloves"};
- { 6,28858, "", "=q3=High Warlord's Satin Leggings"};
- { 8,0, "INV_BannerPVP_01", "=q6=#pvprep705_2#", "=ec1=#c5#"};
- { 9,31626, "", "=q3=High Warlord's Mooncloth Cowl"};
- { 10,31628, "", "=q3=High Warlord's Mooncloth Shoulderpads"};
- { 11,31629, "", "=q3=High Warlord's Mooncloth Vestments"};
- { 12,31621, "", "=q3=High Warlord's Mooncloth Mitts"};
- { 13,31627, "", "=q3=High Warlord's Mooncloth Legguards"};
- { 16,0, "INV_BannerPVP_01", "=q6=#pvprep703#", "=ec1=#c3#"};
- { 17,28867, "", "=q3=High Warlord's Silk Cowl"};
- { 18,28866, "", "=q3=High Warlord's Silk Amice"};
- { 19,28869, "", "=q3=High Warlord's Silk Raiment"};
- { 20,28868, "", "=q3=High Warlord's Silk Handguards"};
- { 21,28870, "", "=q3=High Warlord's Silk Trousers"};
- { 23,0, "INV_BannerPVP_01", "=q6=#pvprep708#", "=ec1=#c8#"};
- { 24,28818, "", "=q3=High Warlord's Dreadweave Hood"};
- { 25,28820, "", "=q3=High Warlord's Dreadweave Mantle"};
- { 26,28821, "", "=q3=High Warlord's Dreadweave Robe"};
- { 27,28817, "", "=q3=High Warlord's Dreadweave Gloves"};
- { 28,28819, "", "=q3=High Warlord's Dreadweave Leggings"};
- };
- {
- Name = BabbleInventory["Leather"].." - Horde";
- { 1,0, "INV_BannerPVP_01", "=q6=#pvprep701_1#", "=ec1=#c1#"};
- { 2,28812, "", "=q3=High Warlord's Dragonhide Helm"};
- { 3,28814, "", "=q3=High Warlord's Dragonhide Spaulders"};
- { 4,28815, "", "=q3=High Warlord's Dragonhide Robe"};
- { 5,28811, "", "=q3=High Warlord's Dragonhide Gloves"};
- { 6,28813, "", "=q3=High Warlord's Dragonhide Legguards"};
- { 8,0, "INV_BannerPVP_01", "=q6=#pvprep701_2#", "=ec1=#c1#"};
- { 9,28872, "", "=q3=High Warlord's Wyrmhide Helm"};
- { 10,28874, "", "=q3=High Warlord's Wyrmhide Spaulders"};
- { 11,28875, "", "=q3=High Warlord's Wyrmhide Robe"};
- { 12,28871, "", "=q3=High Warlord's Wyrmhide Gloves"};
- { 13,28873, "", "=q3=High Warlord's Wyrmhide Legguards"};
- { 16,0, "INV_BannerPVP_01", "=q6=#pvprep701_3#", "=ec1=#c1#"};
- { 17,31585, "", "=q3=High Warlord's Kodohide Helm"};
- { 18,31587, "", "=q3=High Warlord's Kodohide Spaulders"};
- { 19,31588, "", "=q3=High Warlord's Kodohide Robe"};
- { 20,31584, "", "=q3=High Warlord's Kodohide Gloves"};
- { 21,31586, "", "=q3=High Warlord's Kodohide Legguards"};
- { 23,0, "INV_BannerPVP_01", "=q6=#pvprep706#", "=ec1=#c6#"};
- { 24,28837, "", "=q3=High Warlord's Leather Helm"};
- { 25,28839, "", "=q3=High Warlord's Leather Spaulders"};
- { 26,28840, "", "=q3=High Warlord's Leather Tunic"};
- { 27,28836, "", "=q3=High Warlord's Leather Gloves"};
- { 28,28838, "", "=q3=High Warlord's Leather Legguards"};
- };
- {
- Name = BabbleInventory["Mail"].." - Horde";
- { 1,0, "INV_BannerPVP_01", "=q6=#pvprep707_1#", "=ec1=#c7#"};
- { 2,28843, "", "=q3=High Warlord's Linked Helm"};
- { 3,28845, "", "=q3=High Warlord's Linked Spaulders"};
- { 4,28841, "", "=q3=High Warlord's Linked Armor"};
- { 5,28842, "", "=q3=High Warlord's Linked Gauntlets"};
- { 6,28844, "", "=q3=High Warlord's Linked Leggings"};
- { 8,0, "INV_BannerPVP_01", "=q6=#pvprep707_2#", "=ec1=#c7#"};
- { 9,28848, "", "=q3=High Warlord's Mail Helm"};
- { 10,28850, "", "=q3=High Warlord's Mail Spaulders"};
- { 11,28846, "", "=q3=High Warlord's Mail Armor"};
- { 12,28847, "", "=q3=High Warlord's Mail Gauntlets"};
- { 13,28849, "", "=q3=High Warlord's Mail Leggings"};
- { 16,0, "INV_BannerPVP_01", "=q6=#pvprep707_3#", "=ec1=#c7#"};
- { 17,31648, "", "=q3=High Warlord's Ringmail Headpiece"};
- { 18,31650, "", "=q3=High Warlord's Ringmail Shoulderpads"};
- { 19,31646, "", "=q3=High Warlord's Ringmail Chestguard"};
- { 20,31647, "", "=q3=High Warlord's Ringmail Gloves"};
- { 21,31649, "", "=q3=High Warlord's Ringmail Legguards"};
- { 23,0, "INV_BannerPVP_01", "=q6=#pvprep702#", "=ec1=#c2#"};
- { 24,28807, "", "=q3=High Warlord's Chain Helm"};
- { 25,28809, "", "=q3=High Warlord's Chain Spaulders"};
- { 26,28805, "", "=q3=High Warlord's Chain Armor"};
- { 27,28806, "", "=q3=High Warlord's Chain Gauntlets"};
- { 28,28808, "", "=q3=High Warlord's Chain Leggings"};
- };
- {
- Name = BabbleInventory["Plate"].." - Horde";
- { 1,0, "INV_BannerPVP_01", "=q6=#pvprep704_1#", "=ec1=#c4#"};
- { 2,28863, "", "=q3=High Warlord's Scaled Helm"};
- { 3,28865, "", "=q3=High Warlord's Scaled Shoulders"};
- { 4,28861, "", "=q3=High Warlord's Scaled Chestpiece"};
- { 5,28862, "", "=q3=High Warlord's Scaled Gauntlets"};
- { 6,28864, "", "=q3=High Warlord's Scaled Legguards"};
- { 8,0, "INV_BannerPVP_01", "=q6=#pvprep704_2#", "=ec1=#c4#"};
- { 9,31637, "", "=q3=High Warlord's Ornamented Headguard"};
- { 10,31639, "", "=q3=High Warlord's Ornamented Spaulders"};
- { 11,31635, "", "=q3=High Warlord's Ornamented Chestplate"};
- { 12,31636, "", "=q3=High Warlord's Ornamented Gloves"};
- { 13,31638, "", "=q3=High Warlord's Ornamented Leggings"};
- { 16,0, "INV_BannerPVP_01", "=q6=#pvprep709#", "=ec1=#c9#"};
- { 17,28853, "", "=q3=High Warlord's Plate Helm"};
- { 18,28855, "", "=q3=High Warlord's Plate Shoulders"};
- { 19,28851, "", "=q3=High Warlord's Plate Chestpiece"};
- { 20,28852, "", "=q3=High Warlord's Plate Gauntlets"};
- { 21,28854, "", "=q3=High Warlord's Plate Legguards"};
- { 23,0, "INV_BannerPVP_01", "=q6=#arenas4_1#", "=ec1=#c4#"};
- { 24,28833, "", "=q3=High Warlord's Lamellar Helm"};
- { 25,28835, "", "=q3=High Warlord's Lamellar Shoulders"};
- { 26,28831, "", "=q3=High Warlord's Lamellar Chestpiece"};
- { 27,28832, "", "=q3=High Warlord's Lamellar Gauntlets"};
- { 28,28834, "", "=q3=High Warlord's Lamellar Legguards"};
- };
+ {
+ Name = BabbleBoss["The Black Stalker"];
+ { 1, 24481, "", "=q3=Robes of the Augurer", "=ds=#s5#, #a1#", "", "10.55%" };
+ { 2, 24466, "", "=q3=Skulldugger's Leggings", "=ds=#s11#, #a2#", "", "13.23%" };
+ { 3, 24465, "", "=q3=Shamblehide Chestguard", "=ds=#s5#, #a3#", "", "10.95%" };
+ { 4, 24463, "", "=q3=Pauldrons of Brute Force", "=ds=#s3#, #a4#", "", "11.95%" };
+ { 5, 24464, "", "=q3=The Stalker's Fangs", "=ds=#h1#, #w4#", "", "14.31%" };
+ { 7, 24248, "", "=q1=Brain of the Black Stalker", "=ds=#m3#", "", "100%" };
};
-
-
-
-
- ----------------------------------
- --- PvP Level 70 - Accessories ---
- ----------------------------------
-
- AtlasLoot_Data["PvP70Accessories"] = {
- Name = "Off Set";
- {
- Name = "PvP Accessories - "..BabbleFaction["Alliance"];
- { 1, 28235, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#"};
- { 2, 28237, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#"};
- { 3, 28238, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#"};
- { 4, 28236, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#"};
- { 5, 30349, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#"};
- { 6, 28234, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#"};
- { 7, 30351, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#"};
- { 8, 30348, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#"};
- { 9, 30350, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#"};
- { 11, 31853, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#"};
- { 12, 31839, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#"};
- { 13, 31855, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#"};
- { 14, 31841, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#"};
- { 15, 32453, "", "=q1=Star's Tears", "=ds=", "1 #gold# 8 #faction#"};
- { 16, 37864, "", "=q4=Medallion of the Alliance", "=ds=", "40000 #alliance#"};
- { 17, 25829, "", "=q4=Talisman of the Alliance", "=ds=", "23000 #alliance#"};
- { 19, 28120, "", "=q4=Gleaming Ornate Dawnstone", "=ds=", "6885 #faction#"};
- { 20, 28119, "", "=q4=Smooth Ornate Dawnstone", "=ds=", "6885 #faction#"};
- { 21, 28362, "", "=q4=Bold Ornate Ruby", "=ds=", "6885 #faction#"};
- { 22, 28118, "", "=q4=Runed Ornate Ruby", "=ds=", "6885 #faction#"};
- { 23, 28363, "", "=q4=Inscribed Ornate Topaz", "=ds=", "8500 #faction#"};
- { 24, 28123, "", "=q4=Potent Ornate Topaz", "=ds=", "8500 #faction#"};
- { 26, 31838, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#"};
- { 27, 31852, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#"};
- { 28, 31840, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#"};
- { 29, 31854, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#"};
- };
- {
- Name = "PvP Accessories - Horde";
- { 1, 28241, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#"};
- { 2, 28243, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#"};
- { 3, 28239, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#"};
- { 4, 28242, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#"};
- { 5, 30346, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#"};
- { 6, 28240, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#"};
- { 7, 30345, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#"};
- { 8, 30343, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#"};
- { 9, 30344, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#"};
- { 11, 31853, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#"};
- { 12, 31839, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#"};
- { 13, 31855, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#"};
- { 14, 31841, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#"};
- { 15, 32453, "", "=q1=Star's Tears", "=ds=", "1 #gold# 8 #faction#"};
- { 16, 37865, "", "=q4=Medallion of the Horde", "=ds=", "40000 #horde#"};
- { 17, 24551, "", "=q4=Talisman of the Horde", "=ds=", "23000 #horde#"};
- { 19, 28120, "", "=q4=Gleaming Ornate Dawnstone", "=ds=", "6885 #faction#"};
- { 20, 28119, "", "=q4=Smooth Ornate Dawnstone", "=ds=", "6885 #faction#"};
- { 21, 28362, "", "=q4=Bold Ornate Ruby", "=ds=", "6885 #faction#"};
- { 22, 28118, "", "=q4=Runed Ornate Ruby", "=ds=", "6885 #faction#"};
- { 23, 28363, "", "=q4=Inscribed Ornate Topaz", "=ds=", "8500 #faction#"};
- { 24, 28123, "", "=q4=Potent Ornate Topaz", "=ds=", "8500 #faction#"};
- { 26, 31838, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#"};
- { 27, 31852, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#"};
- { 28, 31840, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#"};
- { 29, 31854, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#"};
- };
- {
- Name = "PvP Accessories";
- { 1, 28378, "", "=q4=Sergeant's Heavy Cape", "=ds=", "8000 #faction#"};
- { 2, 28377, "", "=q4=Sergeant's Heavy Cloak", "=ds=", "8000 #faction#"};
- { 4, 44431, "", "=q4=Cloak of Certain Reprieve", "=ds=", "21000 #faction#"};
- { 5, 41591, "", "=q4=Sergeant's Reinforced Cape", "=ds=", "21000 #faction#"};
- { 6, 41592, "", "=q4=The Gladiator's Resolution", "=ds=", "21000 #faction#"};
- { 7, 44429, "", "=q4=Volanthius Shroud", "=ds=", "21000 #faction#"};
- { 9, 41588, "", "=q4=Battlemaster's Aggression", "=ds=", "36000 #faction#"};
- { 10, 41587, "", "=q4=Battlemaster's Celerity", "=ds=", "36000 #faction#"};
- { 11, 41590, "", "=q4=Battlemaster's Courage", "=ds=", "36000 #faction#"};
- { 12, 41589, "", "=q4=Battlemaster's Resolve", "=ds=", "36000 #faction#"};
- { 14, 28247, "", "=q3=Band of Dominance", "=ds=", "10000 #alliance#"};
- { 15, 28246, "", "=q3=Band of Triumph", "=ds=", "10000 #alliance#"};
- { 16, 35132, "", "=q4=Guardian's Pendant of Conquest", "=ds=", "16000 #faction#"};
- { 17, 35133, "", "=q4=Guardian's Pendant of Dominance", "=ds=", "16000 #faction#"};
- { 18, 37929, "", "=q4=Guardian's Pendant of Reprieve", "=ds=", "16000 #faction#"};
- { 19, 35134, "", "=q4=Guardian's Pendant of Salvation", "=ds=", "16000 #faction#"};
- { 20, 37928, "", "=q4=Guardian's Pendant of Subjugation", "=ds=", "16000 #faction#"};
- { 21, 35135, "", "=q4=Guardian's Pendant of Triumph", "=ds=", "16000 #faction#"};
- { 23, 35129, "", "=q4=Guardian's Band of Dominance", "=ds=", "16000 #faction#"};
- { 24, 35130, "", "=q4=Guardian's Band of Salvation", "=ds=", "16000 #faction#"};
- { 25, 37927, "", "=q4=Guardian's Band of Subjugation", "=ds=", "16000 #faction#"};
- { 26, 35131, "", "=q4=Guardian's Band of Triumph", "=ds=", "16000 #faction#"};
- { 27, 33853, "", "=q4=Vindicator's Band of Dominance", "=ds=", "12000 #faction#"};
- { 28, 33918, "", "=q4=Vindicator's Band of Salvation", "=ds=", "12000 #faction#"};
- { 29, 35320, "", "=q4=Vindicator's Band of Subjugation", "=ds=", "12000 #faction#"};
- { 30, 33919, "", "=q4=Vindicator's Band of Triumph", "=ds=", "12000 #faction#"};
- };
+ { --only heroic
+ Name = BabbleBoss["The Black Stalker"] .. " (" .. AL["Heroic"] .. ")";
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 29265, "", "=q4=Barkchip Boots", "=ds=#s12#, #a2#", "", "8.54%" };
+ { 3, 30541, "", "=q4=Stormsong Kilt", "=ds=#s11#, #a3#", "", "6.50%" };
+ { 4, 32081, "", "=q4=Eye of the Stalker", "=ds=#s13#" };
+ { 5, 29350, "", "=q4=The Black Stalk", "=ds=#w12#", "", "4.88%" };
+ { 7, 27781, "", "=q3=Demonfang Ritual Helm", "=ds=#s1#, #a1#", "", "8.94%" };
+ { 8, 27768, "", "=q3=Oracle Belt of Timeless Mystery", "=ds=#s10#, #a1#", "", "14.63%" };
+ { 9, 27938, "", "=q3=Savage Mask of the Lynx Lord", "=ds=#s1#, #a2#", "", "1.63%" };
+ { 10, 27773, "", "=q3=Barbaric Legstraps", "=ds=#s11#, #a3#", "", "9.35%" };
+ { 11, 27779, "", "=q3=Bone Chain Necklace", "=ds=#s2#", "", "14.23%" };
+ { 12, 27780, "", "=q3=Ring of Fabled Hope", "=ds=#s13#", "", "9.90%" };
+ { 13, 27896, "", "=q3=Alembic of Infernal Power", "=ds=#s14#", "", "12.60%" };
+ { 14, 27770, "", "=q3=Argussian Compass", "=ds=#s14#", "", "3.66%" };
+ { 16, 30606, "", "=q4=Lambent Chrysoprase", "=ds=#e7#", "", "17.89%" };
+ { 17, 30607, "", "=q4=Splendid Fire Opal", "=ds=#e7#", "", "6.50%" };
+ { 18, 30608, "", "=q4=Radiant Chrysoprase", "=ds=#e7#", "", "9.76%" };
+ { 20, 27907, "", "=q3=Mana-Etched Pantaloons", "=ds=#s11#, #a1# (D3)", "", "4.88%" };
+ { 21, 27771, "", "=q3=Doomplate Shoulderguards", "=ds=#s3#, #a4# (D3)", "", "6.50%" };
+ { 23, 27769, "", "=q3=Endbringer", "=ds=#h2#, #w10#", "", "9.35%" };
+ { 24, 27772, "", "=q3=Stormshield of Renewal", "=ds=#w8#", "", "13.01%" };
+ { 26, 24248, "", "=q1=Brain of the Black Stalker", "=ds=#m3#", "", "100%" };
+ { 27, 33826, "", "=q1=Black Stalker Egg", "=ds=#m3#", "", "100%" };
};
+};
+------------------------------------------------
+--- Coilfang Reservoir: Serpentshrine Cavern ---
+------------------------------------------------
- ------------------------------------
- --- PvP Level 70 - Non Set Epics ---
- ------------------------------------
-
- AtlasLoot_Data["PvP70NonSet"] = {
- Name = AL["PvP Non-Set Epics"];
- {
- Name = "Page 1";
- { 1, 35168, "", "=q4=Guardian's Dreadweave Cuffs", "=ds=", "13000 #faction#"};
- { 2, 35153, "", "=q4=Guardian's Dreadweave Belt", "=ds=", "18000 #faction#"};
- { 3, 35138, "", "=q4=Guardian's Dreadweave Stalkers", "=ds=", "18000 #faction#"};
- { 5, 35174, "", "=q4=Guardian's Mooncloth Cuffs", "=ds=", "13000 #faction#"};
- { 6, 35159, "", "=q4=Guardian's Mooncloth Belt", "=ds=", "18000 #faction#"};
- { 7, 35144, "", "=q4=Guardian's Mooncloth Slippers", "=ds=", "18000 #faction#"};
- { 9, 35179, "", "=q4=Guardian's Silk Cuffs", "=ds=", "13000 #faction#"};
- { 10, 35164, "", "=q4=Guardian's Silk Belt", "=ds=", "18000 #faction#"};
- { 11, 35149, "", "=q4=Guardian's Silk Footguards", "=ds=", "18000 #faction#"};
- { 16, 35167, "", "=q4=Guardian's Dragonhide Bracers", "=ds=", "13000 #faction#"};
- { 17, 35152, "", "=q4=Guardian's Dragonhide Belt", "=ds=", "18000 #faction#"};
- { 18, 35137, "", "=q4=Guardian's Dragonhide Boots", "=ds=", "18000 #faction#"};
- { 20, 35169, "", "=q4=Guardian's Kodohide Bracers", "=ds=", "13000 #faction#"};
- { 21, 35154, "", "=q4=Guardian's Kodohide Belt", "=ds=", "18000 #faction#"};
- { 22, 35139, "", "=q4=Guardian's Kodohide Boots", "=ds=", "18000 #faction#"};
- { 24, 35171, "", "=q4=Guardian's Leather Bracers", "=ds=", "13000 #faction#"};
- { 25, 35156, "", "=q4=Guardian's Leather Belt", "=ds=", "18000 #faction#"};
- { 26, 35141, "", "=q4=Guardian's Leather Boots", "=ds=", "18000 #faction#"};
- { 28, 35180, "", "=q4=Guardian's Wyrmhide Bracers", "=ds=", "13000 #faction#"};
- { 29, 35165, "", "=q4=Guardian's Wyrmhide Belt", "=ds=", "18000 #faction#"};
- { 30, 35150, "", "=q4=Guardian's Wyrmhide Boots", "=ds=", "18000 #faction#"};
- };
- {
- Name = "Page 2";
- { 1, 35166, "", "=q4=Guardian's Chain Bracers", "=ds=", "13000 #faction#"};
- { 2, 35151, "", "=q4=Guardian's Chain Girdle", "=ds=", "18000 #faction#"};
- { 3, 35136, "", "=q4=Guardian's Chain Sabatons", "=ds=", "18000 #faction#"};
- { 5, 35172, "", "=q4=Guardian's Linked Bracers", "=ds=", "13000 #faction#"};
- { 6, 35157, "", "=q4=Guardian's Linked Girdle", "=ds=", "18000 #faction#"};
- { 7, 35142, "", "=q4=Guardian's Linked Sabatons", "=ds=", "18000 #faction#"};
- { 9, 35173, "", "=q4=Guardian's Mail Bracers", "=ds=", "13000 #faction#"};
- { 10, 35158, "", "=q4=Guardian's Mail Girdle", "=ds=", "18000 #faction#"};
- { 11, 35143, "", "=q4=Guardian's Mail Sabatons", "=ds=", "18000 #faction#"};
- { 13, 35177, "", "=q4=Guardian's Ringmail Bracers", "=ds=", "13000 #faction#"};
- { 14, 35162, "", "=q4=Guardian's Ringmail Girdle", "=ds=", "18000 #faction#"};
- { 15, 35147, "", "=q4=Guardian's Ringmail Sabatons", "=ds=", "18000 #faction#"};
- { 16, 35170, "", "=q4=Guardian's Lamellar Bracers", "=ds=", "13000 #faction#"};
- { 17, 35155, "", "=q4=Guardian's Lamellar Belt", "=ds=", "18000 #faction#"};
- { 18, 35140, "", "=q4=Guardian's Lamellar Greaves", "=ds=", "18000 #faction#"};
- { 20, 35175, "", "=q4=Guardian's Ornamented Bracers", "=ds=", "13000 #faction#"};
- { 21, 35160, "", "=q4=Guardian's Ornamented Belt", "=ds=", "18000 #faction#"};
- { 22, 35145, "", "=q4=Guardian's Ornamented Greaves", "=ds=", "18000 #faction#"};
- { 24, 35176, "", "=q4=Guardian's Plate Bracers", "=ds=", "13000 #faction#"};
- { 25, 35161, "", "=q4=Guardian's Plate Belt", "=ds=", "18000 #faction#"};
- { 26, 35146, "", "=q4=Guardian's Plate Greaves", "=ds=", "18000 #faction#"};
- { 28, 35178, "", "=q4=Guardian's Scaled Bracers", "=ds=", "13000 #faction#"};
- { 29, 35163, "", "=q4=Guardian's Scaled Belt", "=ds=", "18000 #faction#"};
- { 30, 35148, "", "=q4=Guardian's Scaled Greaves", "=ds=", "18000 #faction#"};
- };
+AtlasLoot_Data["CFRSerpentshrine"] = {
+ Name = BabbleZone["Coilfang Reservoir"] .. ": " .. BabbleZone["Serpentshrine Cavern"];
+ DisplayName = BabbleZone["Serpentshrine Cavern"];
+ Type = "BCRaid";
+ Map = "CFRSerpentshrineCavern";
+ {
+ Name = BabbleBoss["Hydross the Unstable"];
+ { 1, 30056, "", "=q4=Robe of Hateful Echoes", "=ds=#s5#, #a1#", "", "18%" };
+ { 2, 32516, "", "=q4=Wraps of Purification", "=ds=#s8#, #a1#", "", "18%" };
+ { 3, 30050, "", "=q4=Boots of the Shifting Nightmare", "=ds=#s12#, #a1#", "", "17%" };
+ { 4, 30055, "", "=q4=Shoulderpads of the Stranger", "=ds=#s3#, #a2#", "", "16%" };
+ { 5, 30047, "", "=q4=Blackfathom Warbands", "=ds=#s8#, #a3#", "", "19%" };
+ { 6, 30054, "", "=q4=Ranger-General's Chestguard", "=ds=#s5#, #a3#", "", "18%" };
+ { 7, 30048, "", "=q4=Brighthelm of Justice", "=ds=#s1#, #a4#", "", "21%" };
+ { 8, 30053, "", "=q4=Pauldrons of the Wardancer", "=ds=#s3#, #a4#", "", "16%" };
+ { 16, 30052, "", "=q4=Ring of Lethality", "=ds=#s13#", "", "20%" };
+ { 17, 33055, "", "=q4=Band of Vile Aggression", "=ds=#s13#", "", "14%" };
+ { 18, 30664, "", "=q4=Living Root of the Wildheart", "=ds=#s14#, =q1=#m1# =ds=#c1#", "", "18%" };
+ { 19, 30629, "", "=q4=Scarab of Displacement", "=ds=#s14#", "", "21%" };
+ { 20, 30049, "", "=q4=Fathomstone", "=ds=#s15#", "", "19%" };
+ { 21, 30051, "", "=q4=Idol of the Crescent Goddess", "=ds=#s16#, #w14#", "", "11%" };
+ { 23, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 24, 816254, "", "=q3=Formula: Enchant Cloak - Crushing Wave", "=ds=#p4# (350)", "", "N:2%/H:5%/A:10%" };
};
-
- --------------------------
- --- Arena - Armor Sets ---
- --------------------------
-
- AtlasLoot_Data["ArenaDruidTBC"] = {
- Name = AL["Druid"];
- {
- Name = AL["Feral"];
- { 1, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "=q1=#arenas1L#"};
- { 2, 28127, "", "=q4=Gladiator's Dragonhide Helm", "=ds=#s1#"};
- { 3, 28129, "", "=q4=Gladiator's Dragonhide Spaulders", "=ds=#s3#"};
- { 4, 28130, "", "=q4=Gladiator's Dragonhide Tunic", "=ds=#s5#"};
- { 5, 28126, "", "=q4=Gladiator's Dragonhide Gloves", "=ds=#s9#"};
- { 6, 28128, "", "=q4=Gladiator's Dragonhide Legguards", "=ds=#s11#"};
- { 8, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "=q1=#arenas3L#"};
- { 9, 31968, "", "=q4=Merciless Gladiator's Dragonhide Helm", "=ds=#s1#", "15000 #faction#"};
- { 10, 31971, "", "=q4=Merciless Gladiator's Dragonhide Spaulders", "=ds=#s3#", "13000 #faction#"};
- { 11, 31972, "", "=q4=Merciless Gladiator's Dragonhide Tunic", "=ds=#s5#", "15000 #faction#"};
- { 12, 31967, "", "=q4=Merciless Gladiator's Dragonhide Gloves", "=ds=#s9#", "12000 #faction#"};
- { 13, 31969, "", "=q4=Merciless Gladiator's Dragonhide Legguards", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "=q1=#arenas2L#"};
- { 17, 33672, "", "=q4=Vengeful Gladiator's Dragonhide Helm", "=ds=#s1#", ""};
- { 18, 33674, "", "=q4=Vengeful Gladiator's Dragonhide Spaulders", "=ds=#s3#", ""};
- { 19, 33675, "", "=q4=Vengeful Gladiator's Dragonhide Tunic", "=ds=#s5#", ""};
- { 20, 33671, "", "=q4=Vengeful Gladiator's Dragonhide Gloves", "=ds=#s9#", ""};
- { 21, 33673, "", "=q4=Vengeful Gladiator's Dragonhide Legguards", "=ds=#s11#", ""};
- { 23, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "=q1=#arenas4L#"};
- { 24, 34999, "", "=q4=Brutal Gladiator's Dragonhide Helm", "=ds=", "1875 #arena#", ""};
- { 25, 35001, "", "=q4=Brutal Gladiator's Dragonhide Spaulders", "=ds=", "1500 #arena#", ""};
- { 26, 35002, "", "=q4=Brutal Gladiator's Dragonhide Tunic", "=ds=", "1875 #arena#", ""};
- { 27, 34998, "", "=q4=Brutal Gladiator's Dragonhide Gloves", "=ds=", "1125 #arena#", ""};
- { 28, 35000, "", "=q4=Brutal Gladiator's Dragonhide Legguards", "=ds=", "1875 #arena#", ""};
- };
- {
- Name = AL["Balance"];
- { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "=q1=#arenas1L#"};
- { 2, 28137, "", "=q4=Gladiator's Wyrmhide Helm", "=ds=#s1#"};
- { 3, 28139, "", "=q4=Gladiator's Wyrmhide Spaulders", "=ds=#s3#"};
- { 4, 28140, "", "=q4=Gladiator's Wyrmhide Tunic", "=ds=#s5#"};
- { 5, 28136, "", "=q4=Gladiator's Wyrmhide Gloves", "=ds=#s9#"};
- { 6, 28138, "", "=q4=Gladiator's Wyrmhide Legguards", "=ds=#s11#"};
- { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "=q1=#arenas3L#"};
- { 9, 32057, "", "=q4=Merciless Gladiator's Wyrmhide Helm", "=ds=#s1#", "15000 #faction#"};
- { 10, 32059, "", "=q4=Merciless Gladiator's Wyrmhide Spaulders", "=ds=#s3#", "13000 #faction#"};
- { 11, 32060, "", "=q4=Merciless Gladiator's Wyrmhide Tunic", "=ds=#s5#", "15000 #faction#"};
- { 12, 32056, "", "=q4=Merciless Gladiator's Wyrmhide Gloves", "=ds=#s9#", "12000 #faction#"};
- { 13, 32058, "", "=q4=Merciless Gladiator's Wyrmhide Legguards", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "=q1=#arenas2L#"};
- { 17, 33768, "", "=q4=Vengeful Gladiator's Wyrmhide Helm", "=ds=#s1#", ""};
- { 18, 33770, "", "=q4=Vengeful Gladiator's Wyrmhide Spaulders", "=ds=#s3#", ""};
- { 19, 33771, "", "=q4=Vengeful Gladiator's Wyrmhide Tunic", "=ds=#s5#", ""};
- { 20, 33767, "", "=q4=Vengeful Gladiator's Wyrmhide Gloves", "=ds=#s9#", ""};
- { 21, 33769, "", "=q4=Vengeful Gladiator's Wyrmhide Legguards", "=ds=#s11#", ""};
- { 23, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "=q1=#arenas4L#"};
- { 24, 35112, "", "=q4=Brutal Gladiator's Wyrmhide Helm", "=ds=", "1875 #arena#", ""};
- { 25, 35114, "", "=q4=Brutal Gladiator's Wyrmhide Spaulders", "=ds=", "1500 #arena#", ""};
- { 26, 35115, "", "=q4=Brutal Gladiator's Wyrmhide Tunic", "=ds=", "1875 #arena#", ""};
- { 27, 35111, "", "=q4=Brutal Gladiator's Wyrmhide Gloves", "=ds=", "1125 #arena#", ""};
- { 28, 35113, "", "=q4=Brutal Gladiator's Wyrmhide Legguards", "=ds=", "1875 #arena#", ""};
- };
- {
- Name = AL["Restoration"];
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "=q1=#arenas1L#"};
- { 2, 31376, "", "=q4=Gladiator's Kodohide Helm", "=ds=#s1#"};
- { 3, 31378, "", "=q4=Gladiator's Kodohide Spaulders", "=ds=#s3#"};
- { 4, 31379, "", "=q4=Gladiator's Kodohide Tunic", "=ds=#s5#"};
- { 5, 31375, "", "=q4=Gladiator's Kodohide Gloves", "=ds=#s9#"};
- { 6, 31377, "", "=q4=Gladiator's Kodohide Legguards", "=ds=#s11#"};
- { 8, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "=q1=#arenas3L#"};
- { 9, 31988, "", "=q4=Merciless Gladiator's Kodohide Helm", "=ds=#s1#", "15000 #faction#"};
- { 10, 31990, "", "=q4=Merciless Gladiator's Kodohide Spaulders", "=ds=#s3#", "13000 #faction#"};
- { 11, 31991, "", "=q4=Merciless Gladiator's Kodohide Tunic", "=ds=#s5#", "15000 #faction#"};
- { 12, 31987, "", "=q4=Merciless Gladiator's Kodohide Gloves", "=ds=#s9#", "12000 #faction#"};
- { 13, 31989, "", "=q4=Merciless Gladiator's Kodohide Legguards", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "=q1=#arenas2L#"};
- { 17, 33691, "", "=q4=Vengeful Gladiator's Kodohide Helm", "=ds=#s1#", ""};
- { 18, 33693, "", "=q4=Vengeful Gladiator's Kodohide Spaulders", "=ds=#s3#", ""};
- { 19, 33694, "", "=q4=Vengeful Gladiator's Kodohide Tunic", "=ds=#s5#", ""};
- { 20, 33690, "", "=q4=Vengeful Gladiator's Kodohide Gloves", "=ds=#s9#", ""};
- { 21, 33692, "", "=q4=Vengeful Gladiator's Kodohide Legguards", "=ds=#s11#", ""};
- { 23, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "=q1=#arenas4L#"};
- { 24, 35023, "", "=q4=Brutal Gladiator's Kodohide Helm", "=ds=", "1875 #arena#", ""};
- { 25, 35025, "", "=q4=Brutal Gladiator's Kodohide Spaulders", "=ds=", "1500 #arena#", ""};
- { 26, 35026, "", "=q4=Brutal Gladiator's Kodohide Tunic", "=ds=", "1875 #arena#", ""};
- { 27, 35022, "", "=q4=Brutal Gladiator's Kodohide Gloves", "=ds=", "1125 #arena#", ""};
- { 28, 35024, "", "=q4=Brutal Gladiator's Kodohide Legguards", "=ds=", "1875 #arena#", ""};
- };
+ {
+ Name = BabbleBoss["The Lurker Below"];
+ { 1, 30064, "", "=q4=Cord of Screaming Terrors", "=ds=#s10#, #a1#", "", "17%" };
+ { 2, 30067, "", "=q4=Velvet Boots of the Guardian", "=ds=#s12#, #a1#", "", "17%" };
+ { 3, 30062, "", "=q4=Grove-Bands of Remulos", "=ds=#s8#, #a2#", "", "21%" };
+ { 4, 30060, "", "=q4=Boots of Effortless Striking", "=ds=#s12#, #a2#", "", "21%" };
+ { 5, 30066, "", "=q4=Tempest-Strider Boots", "=ds=#s12#, #a3#", "", "21%" };
+ { 6, 30065, "", "=q4=Glowing Breastplate of Truth", "=ds=#s5#, #a4#", "", "20%" };
+ { 7, 30057, "", "=q4=Bracers of Eradication", "=ds=#s8#, #a4#", "", "19%" };
+ { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 16, 30059, "", "=q4=Choker of Animalistic Fury", "=ds=#s2#", "", "21%" };
+ { 17, 30061, "", "=q4=Ancestral Ring of Conquest", "=ds=#s13#", "", "20%" };
+ { 18, 33054, "", "=q4=The Seal of Danzalar", "=ds=#s13#", "", "14%" };
+ { 19, 30665, "", "=q4=Earring of Soulful Meditation", "=ds=#s14#, =q1=#m1# =ds=#c5#", "", "18%" };
+ { 20, 30063, "", "=q4=Libram of Absolute Truth", "=ds=#s16#, #w16#", "", "17%" };
+ { 21, 30058, "", "=q4=Mallet of the Tides", "=ds=#h1#, #w6#", "", "20%" };
};
-
- AtlasLoot_Data["ArenaHunterTBC"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "=q1=#arenas1L#"};
- { 2, 28331, "", "=q4=Gladiator's Chain Helm", "=ds=#s1#"};
- { 3, 28333, "", "=q4=Gladiator's Chain Spaulders", "=ds=#s3#"};
- { 4, 28334, "", "=q4=Gladiator's Chain Armor", "=ds=#s5#"};
- { 5, 28335, "", "=q4=Gladiator's Chain Gauntlets", "=ds=#s9#"};
- { 6, 28332, "", "=q4=Gladiator's Chain Leggings", "=ds=#s11#"};
- { 8, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "=q1=#arenas3L#"};
- { 9, 31962, "", "=q4=Merciless Gladiator's Chain Helm", "=ds=#s1#", "15000 #faction#"};
- { 10, 31964, "", "=q4=Merciless Gladiator's Chain Spaulders", "=ds=#s3#", "13000 #faction#"};
- { 11, 31960, "", "=q4=Merciless Gladiator's Chain Armor", "=ds=#s5#", "15000 #faction#"};
- { 12, 31961, "", "=q4=Merciless Gladiator's Chain Gauntlets", "=ds=#s9#", "12000 #faction#"};
- { 13, 31963, "", "=q4=Merciless Gladiator's Chain Leggings", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "=q1=#arenas2L#"};
- { 17, 33666, "", "=q4=Vengeful Gladiator's Chain Helm", "=ds=#s1#", ""};
- { 18, 33668, "", "=q4=Vengeful Gladiator's Chain Spaulders", "=ds=#s3#", ""};
- { 19, 33664, "", "=q4=Vengeful Gladiator's Chain Armor", "=ds=#s5#", ""};
- { 20, 33665, "", "=q4=Vengeful Gladiator's Chain Gauntlets", "=ds=#s9#", ""};
- { 21, 33667, "", "=q4=Vengeful Gladiator's Chain Leggings", "=ds=#s11#", ""};
- { 23, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "=q1=#arenas4L#"};
- { 24, 34992, "", "=q4=Brutal Gladiator's Chain Helm", "=ds=", "1875 #arena#", ""};
- { 25, 34994, "", "=q4=Brutal Gladiator's Chain Spaulders", "=ds=", "1500 #arena#", ""};
- { 26, 34990, "", "=q4=Brutal Gladiator's Chain Armor", "=ds=", "1875 #arena#", ""};
- { 27, 34991, "", "=q4=Brutal Gladiator's Chain Gauntlets", "=ds=", "1125 #arena#", ""};
- { 28, 34993, "", "=q4=Brutal Gladiator's Chain Leggings", "=ds=", "1875 #arena#", ""};
- };
+ {
+ Name = BabbleBoss["Leotheras the Blind"];
+ { 1, 30092, "", "=q4=Orca-Hide Boots", "=ds=#s12#, #a2#", "", "13%" };
+ { 2, 30097, "", "=q4=Coral-Barbed Shoulderpads", "=ds=#s3#, #a3#", "", "15%" };
+ { 3, 30091, "", "=q4=True-Aim Stalker Bands", "=ds=#s8#, #a3#", "", "17%" };
+ { 4, 30096, "", "=q4=Girdle of the Invulnerable", "=ds=#s10#, #a4#", "", "14%" };
+ { 5, 30627, "", "=q4=Tsunami Talisman", "=ds=#s14#", "", "15%" };
+ { 6, 30095, "", "=q4=Fang of the Leviathan", "=ds=#h3#, #w10#", "", "14%" };
+ { 16, 30240, "", "=q4=Gloves of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=TT=T5HAND" };
+ { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
-
-
- AtlasLoot_Data["ArenaMageTBC"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "=q1=#arenas1L#"};
- { 2, 25855, "", "=q4=Gladiator's Silk Cowl", "=ds=#s1#"};
- { 3, 25854, "", "=q4=Gladiator's Silk Amice", "=ds=#s3#"};
- { 4, 25856, "", "=q4=Gladiator's Silk Raiment", "=ds=#s5#"};
- { 5, 25857, "", "=q4=Gladiator's Silk Handguards", "=ds=#s9#"};
- { 6, 25858, "", "=q4=Gladiator's Silk Trousers", "=ds=#s11#"};
- { 8, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "=q1=#arenas3L#"};
- { 9, 32048, "", "=q4=Merciless Gladiator's Silk Cowl", "=ds=#s1#", "15000 #faction#"};
- { 10, 32047, "", "=q4=Merciless Gladiator's Silk Amice", "=ds=#s3#", "13000 #faction#"};
- { 11, 32050, "", "=q4=Merciless Gladiator's Silk Raiment", "=ds=#s5#", "15000 #faction#"};
- { 12, 32049, "", "=q4=Merciless Gladiator's Silk Handguards", "=ds=#s9#", "12000 #faction#"};
- { 13, 32051, "", "=q4=Merciless Gladiator's Silk Trousers", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "=q1=#arenas2L#"};
- { 17, 33758, "", "=q4=Vengeful Gladiator's Silk Cowl", "=ds=#s1#", ""};
- { 18, 33757, "", "=q4=Vengeful Gladiator's Silk Amice", "=ds=#s3#", ""};
- { 19, 33760, "", "=q4=Vengeful Gladiator's Silk Raiment", "=ds=#s5#", ""};
- { 20, 33759, "", "=q4=Vengeful Gladiator's Silk Handguards", "=ds=#s9#", ""};
- { 21, 33761, "", "=q4=Vengeful Gladiator's Silk Trousers", "=ds=#s11#", ""};
- { 23, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "=q1=#arenas4L#"};
- { 24, 35097, "", "=q4=Brutal Gladiator's Silk Cowl", "=ds=", "1875 #arena#", ""};
- { 25, 35096, "", "=q4=Brutal Gladiator's Silk Amice", "=ds=", "1500 #arena#", ""};
- { 26, 35099, "", "=q4=Brutal Gladiator's Silk Raiment", "=ds=", "1875 #arena#", ""};
- { 27, 35098, "", "=q4=Brutal Gladiator's Silk Handguards", "=ds=", "1125 #arena#", ""};
- { 28, 35100, "", "=q4=Brutal Gladiator's Silk Trousers", "=ds=", "1875 #arena#", ""};
- };
+ {
+ Name = BabbleBoss["Fathom-Lord Karathress"];
+ { 1, 30100, "", "=q4=Soul-Strider Boots", "=ds=#s12#, #a1#", "", "15%" };
+ { 2, 30101, "", "=q4=Bloodsea Brigand's Vest", "=ds=#s5#, #a2#", "", "15%" };
+ { 3, 30099, "", "=q4=Frayed Tether of the Drowned", "=ds=#s2#", "", "15%" };
+ { 4, 30663, "", "=q4=Fathom-Brooch of the Tidewalker", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "15%" };
+ { 5, 30626, "", "=q4=Sextant of Unstable Currents", "=ds=#s14#", "", "14%" };
+ { 6, 30090, "", "=q4=World Breaker", "=ds=#h2#, #w6#", "", "15%" };
+ { 16, 30246, "", "=q4=Leggings of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=TT=T5LEGS" };
+ { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
};
-
-
- AtlasLoot_Data["ArenaPaladinTBC"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
- {
- Name = AL["Protection"];
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#arenas4_1#", "=q1=#arenas1L#"};
- { 2, 27704, "", "=q4=Gladiator's Lamellar Helm", "=ds=#s1#"};
- { 3, 27706, "", "=q4=Gladiator's Lamellar Shoulders", "=ds=#s3#"};
- { 4, 27702, "", "=q4=Gladiator's Lamellar Chestpiece", "=ds=#s5#"};
- { 5, 27703, "", "=q4=Gladiator's Lamellar Gauntlets", "=ds=#s9#"};
- { 6, 27705, "", "=q4=Gladiator's Lamellar Legguards", "=ds=#s11#"};
- { 8, 0, "Spell_Holy_SealOfMight", "=q6=#arenas4_1#", "=q1=#arenas3L#"};
- { 9, 31997, "", "=q4=Merciless Gladiator's Lamellar Helm", "=ds=#s1#", "15000 #faction#"};
- { 10, 31996, "", "=q4=Merciless Gladiator's Lamellar Shoulders", "=ds=#s3#", "13000 #faction#"};
- { 11, 31992, "", "=q4=Merciless Gladiator's Lamellar Chestpiece", "=ds=#s5#", "15000 #faction#"};
- { 12, 31993, "", "=q4=Merciless Gladiator's Lamellar Gauntlets", "=ds=#s9#", "12000 #faction#"};
- { 13, 31995, "", "=q4=Merciless Gladiator's Lamellar Legguards", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_Holy_SealOfMight", "=q6=#arenas4_1#", "=q1=#arenas2L#"};
- { 17, 33697, "", "=q4=Vengeful Gladiator's Lamellar Helm", "=ds=#s1#", ""};
- { 18, 33699, "", "=q4=Vengeful Gladiator's Lamellar Shoulders", "=ds=#s3#", ""};
- { 19, 33695, "", "=q4=Vengeful Gladiator's Lamellar Chestpiece", "=ds=#s5#", ""};
- { 20, 33696, "", "=q4=Vengeful Gladiator's Lamellar Gauntlets", "=ds=#s9#", ""};
- { 21, 33698, "", "=q4=Vengeful Gladiator's Lamellar Legguards", "=ds=#s11#", ""};
- { 23, 0, "Spell_Holy_SealOfMight", "=q6=#arenas4_1#", "=q1=#arenas4L#"};
- { 24, 35029, "", "=q4=Brutal Gladiator's Lamellar Helm", "=ds=", "1875 #arena#", ""};
- { 25, 35031, "", "=q4=Brutal Gladiator's Lamellar Shoulders", "=ds=", "1500 #arena#", ""};
- { 26, 35027, "", "=q4=Brutal Gladiator's Lamellar Chestpiece", "=ds=", "1875 #arena#", ""};
- { 27, 35028, "", "=q4=Brutal Gladiator's Lamellar Gauntlets", "=ds=", "1125 #arena#", ""};
- { 28, 35030, "", "=q4=Brutal Gladiator's Lamellar Legguards", "=ds=", "1875 #arena#", ""};
- };
- {
- Name = AL["Retribution"];
- { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "=q1=#arenas1L#"};
- { 2, 27881, "", "=q4=Gladiator's Scaled Helm", "=ds=#s1#"};
- { 3, 27883, "", "=q4=Gladiator's Scaled Shoulders", "=ds=#s3#"};
- { 4, 27879, "", "=q4=Gladiator's Scaled Chestpiece", "=ds=#s5#"};
- { 5, 27880, "", "=q4=Gladiator's Scaled Gauntlets", "=ds=#s9#"};
- { 6, 27882, "", "=q4=Gladiator's Scaled Legguards", "=ds=#s11#"};
- { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "=q1=#arenas3L#"};
- { 9, 32041, "", "=q4=Merciless Gladiator's Scaled Helm", "=ds=#s1#", "15000 #faction#"};
- { 10, 32043, "", "=q4=Merciless Gladiator's Scaled Shoulders", "=ds=#s3#", "13000 #faction#"};
- { 11, 32039, "", "=q4=Merciless Gladiator's Scaled Chestpiece", "=ds=#s5#", "15000 #faction#"};
- { 12, 32040, "", "=q4=Merciless Gladiator's Scaled Gauntlets", "=ds=#s9#", "12000 #faction#"};
- { 13, 32042, "", "=q4=Merciless Gladiator's Scaled Legguards", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "=q1=#arenas2L#"};
- { 17, 33751, "", "=q4=Vengeful Gladiator's Scaled Helm", "=ds=#s1#", ""};
- { 18, 33753, "", "=q4=Vengeful Gladiator's Scaled Shoulders", "=ds=#s3#", ""};
- { 19, 33749, "", "=q4=Vengeful Gladiator's Scaled Chestpiece", "=ds=#s5#", ""};
- { 20, 33750, "", "=q4=Vengeful Gladiator's Scaled Gauntlets", "=ds=#s9#", ""};
- { 21, 33752, "", "=q4=Vengeful Gladiator's Scaled Legguards", "=ds=#s11#", ""};
- { 23, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "=q1=#arenas4L#"};
- { 24, 35090, "", "=q4=Brutal Gladiator's Scaled Helm", "=ds=", "1875 #arena#", ""};
- { 25, 35092, "", "=q4=Brutal Gladiator's Scaled Shoulders", "=ds=", "1500 #arena#", ""};
- { 26, 35088, "", "=q4=Brutal Gladiator's Scaled Chestpiece", "=ds=", "1875 #arena#", ""};
- { 27, 35089, "", "=q4=Brutal Gladiator's Scaled Gauntlets", "=ds=", "1125 #arena#", ""};
- { 28, 35091, "", "=q4=Brutal Gladiator's Scaled Legguards", "=ds=", "1875 #arena#", ""};
- };
- {
- Name = AL["Holy"];
- { 1, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "=q1=#arenas1L#"};
- { 2, 31616, "", "=q4=Gladiator's Ornamented Headcover", "=ds=#s1#"};
- { 3, 31619, "", "=q4=Gladiator's Ornamented Spaulders", "=ds=#s3#"};
- { 4, 31613, "", "=q4=Gladiator's Ornamented Chestguard", "=ds=#s5#"};
- { 5, 31614, "", "=q4=Gladiator's Ornamented Gloves", "=ds=#s9#"};
- { 6, 31618, "", "=q4=Gladiator's Ornamented Legplates", "=ds=#s11#"};
- { 8, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "=q1=#arenas3L#"};
- { 9, 32022, "", "=q4=Merciless Gladiator's Ornamented Headcover", "=ds=#s1#", "15000 #faction#"};
- { 10, 32024, "", "=q4=Merciless Gladiator's Ornamented Spaulders", "=ds=#s3#", "13000 #faction#"};
- { 11, 32020, "", "=q4=Merciless Gladiator's Ornamented Chestguard", "=ds=#s5#", "15000 #faction#"};
- { 12, 32021, "", "=q4=Merciless Gladiator's Ornamented Gloves", "=ds=#s9#", "12000 #faction#"};
- { 13, 32023, "", "=q4=Merciless Gladiator's Ornamented Legplates", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "=q1=#arenas2L#"};
- { 17, 33724, "", "=q4=Vengeful Gladiator's Ornamented Headcover", "=ds=#s1#", ""};
- { 18, 33726, "", "=q4=Vengeful Gladiator's Ornamented Spaulders", "=ds=#s3#", ""};
- { 19, 33722, "", "=q4=Vengeful Gladiator's Ornamented Chestguard", "=ds=#s5#", ""};
- { 20, 33723, "", "=q4=Vengeful Gladiator's Ornamented Gloves", "=ds=#s9#", ""};
- { 21, 33725, "", "=q4=Vengeful Gladiator's Ornamented Legplates", "=ds=#s11#", ""};
- { 23, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "=q1=#arenas4L#"};
- { 24, 35061, "", "=q4=Brutal Gladiator's Ornamented Headcover", "=ds=", "1875 #arena#", ""};
- { 25, 35063, "", "=q4=Brutal Gladiator's Ornamented Spaulders", "=ds=", "1500 #arena#", ""};
- { 26, 35059, "", "=q4=Brutal Gladiator's Ornamented Chestguard", "=ds=", "1875 #arena#", ""};
- { 27, 35060, "", "=q4=Brutal Gladiator's Ornamented Gloves", "=ds=", "1125 #arena#", ""};
- { 28, 35062, "", "=q4=Brutal Gladiator's Ornamented Legplates", "=ds=", "1875 #arena#", ""};
- };
+ {
+ Name = BabbleBoss["Morogrim Tidewalker"];
+ { 1, 30098, "", "=q4=Razor-Scale Battlecloak", "=ds=#s4#", "", "22%" };
+ { 2, 30079, "", "=q4=Illidari Shoulderpads", "=ds=#s3#, #a1#", "", "15%" };
+ { 3, 30075, "", "=q4=Gnarled Chestpiece of the Ancients", "=ds=#s5#, #a2#", "", "19%" };
+ { 4, 30085, "", "=q4=Mantle of the Tireless Tracker", "=ds=#s3#, #a3#", "", "20%" };
+ { 5, 30068, "", "=q4=Girdle of the Tidal Call", "=ds=#s10#, #a3#", "", "17%" };
+ { 6, 30084, "", "=q4=Pauldrons of the Argent Sentinel", "=ds=#s3#, #a4#", "", "21%" };
+ { 7, 30081, "", "=q4=Warboots of Obliteration", "=ds=#s12#, #a4#", "", "21%" };
+ { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 16, 30008, "", "=q4=Pendant of the Lost Ages", "=ds=#s2#", "", "18%" };
+ { 17, 30083, "", "=q4=Ring of Sundered Souls", "=ds=#s13#", "", "21%" };
+ { 18, 33058, "", "=q4=Band of the Vigilant", "=ds=#s13#", "", "19%" };
+ { 19, 30720, "", "=q4=Serpent-Coil Braid", "=ds=#s14#, =q1=#m1# =ds=#c3#", "", "20%" };
+ { 20, 30082, "", "=q4=Talon of Azshara", "=ds=#h1#, #w10#", "", "20%" };
+ { 21, 30080, "", "=q4=Luminescent Rod of the Naaru", "=ds=#w12#", "", "15%" };
};
-
- AtlasLoot_Data["ArenaPriestTBC"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
- {
- Name = AL["Shadow"];
- { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "=q1=#arenas1L#"};
- { 2, 27708, "", "=q4=Gladiator's Satin Hood", "=ds=#s1#"};
- { 3, 27710, "", "=q4=Gladiator's Satin Mantle", "=ds=#s3#"};
- { 4, 27711, "", "=q4=Gladiator's Satin Robe", "=ds=#s5#"};
- { 5, 27707, "", "=q4=Gladiator's Satin Gloves", "=ds=#s9#"};
- { 6, 27709, "", "=q4=Gladiator's Satin Leggings", "=ds=#s11#"};
- { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "=q1=#arenas3L#"};
- { 9, 32035, "", "=q4=Merciless Gladiator's Satin Hood", "=ds=#s1#", "15000 #faction#"};
- { 10, 32037, "", "=q4=Merciless Gladiator's Satin Mantle", "=ds=#s3#", "13000 #faction#"};
- { 11, 32038, "", "=q4=Merciless Gladiator's Satin Robe", "=ds=#s5#", "15000 #faction#"};
- { 12, 32034, "", "=q4=Merciless Gladiator's Satin Gloves", "=ds=#s9#", "12000 #faction#"};
- { 13, 32036, "", "=q4=Merciless Gladiator's Satin Leggings", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "=q1=#arenas2L#"};
- { 17, 33745, "", "=q4=Vengeful Gladiator's Satin Hood", "=ds=#s1#", ""};
- { 18, 33747, "", "=q4=Vengeful Gladiator's Satin Mantle", "=ds=#s3#", ""};
- { 19, 33748, "", "=q4=Vengeful Gladiator's Satin Robe", "=ds=#s5#", ""};
- { 20, 33744, "", "=q4=Vengeful Gladiator's Satin Gloves", "=ds=#s9#", ""};
- { 21, 33746, "", "=q4=Vengeful Gladiator's Satin Leggings", "=ds=#s11#", ""};
- { 23, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "=q1=#arenas4L#"};
- { 24, 35084, "", "=q4=Brutal Gladiator's Satin Hood", "=ds=", "1875 #arena#", ""};
- { 25, 35086, "", "=q4=Brutal Gladiator's Satin Mantle", "=ds=", "1500 #arena#", ""};
- { 26, 35087, "", "=q4=Brutal Gladiator's Satin Robe", "=ds=", "1875 #arena#", ""};
- { 27, 35083, "", "=q4=Brutal Gladiator's Satin Gloves", "=ds=", "1125 #arena#", ""};
- { 28, 35085, "", "=q4=Brutal Gladiator's Satin Leggings", "=ds=", "1875 #arena#", ""};
- };
- {
- Name = AL["Holy"];
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "=q1=#arenas1L#"};
- { 2, 31410, "", "=q4=Gladiator's Mooncloth Hood", "=ds=#s1#"};
- { 3, 31412, "", "=q4=Gladiator's Mooncloth Mantle", "=ds=#s3#"};
- { 4, 31413, "", "=q4=Gladiator's Mooncloth Robe", "=ds=#s5#"};
- { 5, 31409, "", "=q4=Gladiator's Mooncloth Gloves", "=ds=#s9#"};
- { 6, 31411, "", "=q4=Gladiator's Mooncloth Leggings", "=ds=#s11#"};
- { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "=q1=#arenas3L#"};
- { 9, 32016, "", "=q4=Merciless Gladiator's Mooncloth Hood", "=ds=#s1#", "15000 #faction#"};
- { 10, 32018, "", "=q4=Merciless Gladiator's Mooncloth Mantle", "=ds=#s3#", "13000 #faction#"};
- { 11, 32019, "", "=q4=Merciless Gladiator's Mooncloth Robe", "=ds=#s5#", "15000 #faction#"};
- { 12, 32015, "", "=q4=Merciless Gladiator's Mooncloth Gloves", "=ds=#s9#", "12000 #faction#"};
- { 13, 32017, "", "=q4=Merciless Gladiator's Mooncloth Leggings", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "=q1=#arenas2L#"};
- { 17, 33718, "", "=q4=Vengeful Gladiator's Mooncloth Hood", "=ds=#s1#", ""};
- { 18, 33720, "", "=q4=Vengeful Gladiator's Mooncloth Mantle", "=ds=#s3#", ""};
- { 19, 33721, "", "=q4=Vengeful Gladiator's Mooncloth Robe", "=ds=#s5#", ""};
- { 20, 33717, "", "=q4=Vengeful Gladiator's Mooncloth Gloves", "=ds=#s9#", ""};
- { 21, 33719, "", "=q4=Vengeful Gladiator's Mooncloth Leggings", "=ds=#s11#", ""};
- { 23, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "=q1=#arenas4L#"};
- { 24, 35054, "", "=q4=Brutal Gladiator's Mooncloth Hood", "=ds=", "1875 #arena#", ""};
- { 25, 35056, "", "=q4=Brutal Gladiator's Mooncloth Mantle", "=ds=", "1500 #arena#", ""};
- { 26, 35057, "", "=q4=Brutal Gladiator's Mooncloth Robe", "=ds=", "1875 #arena#", ""};
- { 27, 35053, "", "=q4=Brutal Gladiator's Mooncloth Gloves", "=ds=", "1125 #arena#", ""};
- { 28, 35055, "", "=q4=Brutal Gladiator's Mooncloth Leggings", "=ds=", "1875 #arena#", ""};
- };
+ {
+ Name = BabbleBoss["Lady Vashj"];
+ { 1, 30107, "", "=q4=Vestments of the Sea-Witch", "=ds=#s5#, #a1#", "", "13%" };
+ { 2, 30111, "", "=q4=Runetotem's Mantle", "=ds=#s3#, #a2#", "", "14%" };
+ { 3, 30106, "", "=q4=Belt of One-Hundred Deaths", "=ds=#s10#, #a2#", "", "12%" };
+ { 4, 30104, "", "=q4=Cobra-Lash Boots", "=ds=#s12#, #a3#", "", "13%" };
+ { 5, 30102, "", "=q4=Krakken-Heart Breastplate", "=ds=#s5#, #a4#", "", "15%" };
+ { 6, 30112, "", "=q4=Glorious Gauntlets of Crestfall", "=ds=#s9#, #a4#", "", "14%" };
+ { 7, 30109, "", "=q4=Ring of Endless Coils", "=ds=#s13#", "", "13%" };
+ { 8, 30110, "", "=q4=Coral Band of the Revived", "=ds=#s13#", "", "16%" };
+ { 9, 30621, "", "=q4=Prism of Inner Calm", "=ds=#s14#", "", "13%" };
+ { 10, 30103, "", "=q4=Fang of Vashj", "=ds=#h1#, #w4#", "", "14%" };
+ { 11, 30108, "", "=q4=Lightfathom Scepter", "=ds=#h3#, #w6#", "", "14%" };
+ { 12, 30105, "", "=q4=Serpent Spine Longbow", "=ds=#w2#", "", "13%" };
+ { 16, 30243, "", "=q4=Helm of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=TT=T5HEAD" };
+ { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 19, 29906, "", "=q1=Vashj's Vial Remnant", "=ds=#m3#", "", "35%" };
+ { 21, 450000, "", "=q5=Intact Vial of Lady Vashj", "", "", "5%" };
};
-
- AtlasLoot_Data["ArenaRogueTBC"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
- { 1, 0, "Ability_BackStab", "=q6=#arenas6#", "=q1=#arenas1L#"};
- { 2, 25830, "", "=q4=Gladiator's Leather Helm", "=ds=#s1#"};
- { 3, 25832, "", "=q4=Gladiator's Leather Spaulders", "=ds=#s3#"};
- { 4, 25831, "", "=q4=Gladiator's Leather Tunic", "=ds=#s5#"};
- { 5, 25834, "", "=q4=Gladiator's Leather Gloves", "=ds=#s9#"};
- { 6, 25833, "", "=q4=Gladiator's Leather Legguards", "=ds=#s11#"};
- { 8, 0, "Ability_BackStab", "=q6=#arenas6#", "=q1=#arenas3L#"};
- { 9, 31999, "", "=q4=Merciless Gladiator's Leather Helm", "=ds=#s1#", "15000 #faction#"};
- { 10, 32001, "", "=q4=Merciless Gladiator's Leather Spaulders", "=ds=#s3#", "13000 #faction#"};
- { 11, 32002, "", "=q4=Merciless Gladiator's Leather Tunic", "=ds=#s5#", "15000 #faction#"};
- { 12, 31998, "", "=q4=Merciless Gladiator's Leather Gloves", "=ds=#s9#", "12000 #faction#"};
- { 13, 32000, "", "=q4=Merciless Gladiator's Leather Legguards", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Ability_BackStab", "=q6=#arenas6#", "=q1=#arenas2L#"};
- { 17, 33701, "", "=q4=Vengeful Gladiator's Leather Helm", "=ds=#s1#", ""};
- { 18, 33703, "", "=q4=Vengeful Gladiator's Leather Spaulders", "=ds=#s3#", ""};
- { 19, 33704, "", "=q4=Vengeful Gladiator's Leather Tunic", "=ds=#s5#", ""};
- { 20, 33700, "", "=q4=Vengeful Gladiator's Leather Gloves", "=ds=#s9#", ""};
- { 21, 33702, "", "=q4=Vengeful Gladiator's Leather Legguards", "=ds=#s11#", ""};
- { 23, 0, "Ability_BackStab", "=q6=#arenas6#", "=q1=#arenas4L#"};
- { 24, 35033, "", "=q4=Brutal Gladiator's Leather Helm", "=ds=", "1875 #arena#", ""};
- { 25, 35035, "", "=q4=Brutal Gladiator's Leather Spaulders", "=ds=", "1500 #arena#", ""};
- { 26, 35036, "", "=q4=Brutal Gladiator's Leather Tunic", "=ds=", "1875 #arena#", ""};
- { 27, 35032, "", "=q4=Brutal Gladiator's Leather Gloves", "=ds=", "1125 #arena#", ""};
- { 28, 35034, "", "=q4=Brutal Gladiator's Leather Legguards", "=ds=", "1875 #arena#", ""};
- };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 30027, "", "=q4=Boots of Courage Unending", "=ds=#s12#, #a4#", "", "3%" };
+ { 2, 30022, "", "=q4=Pendant of the Perilous", "=ds=#s2#", "", "3%" };
+ { 3, 30620, "", "=q4=Spyglass of the Hidden Fleet", "=ds=#s14#", "", "4%" };
+ { 4, 30023, "", "=q4=Totem of the Maelstrom", "=ds=#s16#, #w15#", "", "3%" };
+ { 5, 30021, "", "=q4=Wildfury Greatstaff", "=ds=#h2#, #w9#", "", "3%" };
+ { 6, 30025, "", "=q4=Serpentshrine Shuriken", "=ds=#w11#", "", "3%" };
+ { 7, 44831, "", "=q4=Mmrgrg glm Nuubs", "=ds=#s15#", "", "3%" };
+ { 9, 30324, "", "=q4=Plans: Red Havoc Boots", "=ds=#p2# (375)", "", "1%" };
+ { 10, 30322, "", "=q4=Plans: Red Belt of Battle", "=ds=#p2# (375)", "", "2%" };
+ { 11, 30323, "", "=q4=Plans: Boots of the Protector", "=ds=#p2# (375)", "", "2%" };
+ { 12, 30321, "", "=q4=Plans: Belt of the Guardian", "=ds=#p2# (375)", "", "2%" };
+ { 13, 30280, "", "=q4=Pattern: Belt of Blasting", "=ds=#p8# (375)", "", "1%" };
+ { 14, 30282, "", "=q4=Pattern: Boots of Blasting", "=ds=#p8# (375)", "", "1%" };
+ { 15, 30283, "", "=q4=Pattern: Boots of the Long Road", "=ds=#p8# (375)", "", "2%" };
+ { 16, 30281, "", "=q4=Pattern: Belt of the Long Road", "=ds=#p8# (375)", "", "1%" };
+ { 17, 30308, "", "=q4=Pattern: Hurricane Boots", "=ds=#p7# (375)", "", "1%" };
+ { 18, 30304, "", "=q4=Pattern: Monsoon Belt", "=ds=#p7# (375)", "", "1%" };
+ { 19, 30305, "", "=q4=Pattern: Boots of Natural Grace", "=ds=#p7# (375)", "", "2%" };
+ { 20, 30307, "", "=q4=Pattern: Boots of the Crimson Hawk", "=ds=#p7# (375)", "", "1%" };
+ { 21, 30306, "", "=q4=Pattern: Boots of Utter Darkness", "=ds=#p7# (375)", "", "2%" };
+ { 22, 30301, "", "=q4=Pattern: Belt of Natural Power", "=ds=#p7# (375)", "", "1%" };
+ { 23, 30303, "", "=q4=Pattern: Belt of the Black Eagle", "=ds=#p7# (375)", "", "1%" };
+ { 24, 30302, "", "=q4=Pattern: Belt of Deep Shadow", "=ds=#p7# (375)", "", "1%" };
+ { 26, 30183, "", "=q4=Nether Vortex", "=ds=#e8#", "", "75%" };
+ { 28, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%" };
};
+};
- AtlasLoot_Data["ArenaWarlockTBC"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
- {
- Name = AL["Demonology"];
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_1#", "=q1=#arenas1L#"};
- { 2, 24553, "", "=q4=Gladiator's Dreadweave Hood", "=ds=#s1#"};
- { 3, 24554, "", "=q4=Gladiator's Dreadweave Mantle", "=ds=#s3#"};
- { 4, 24552, "", "=q4=Gladiator's Dreadweave Robe", "=ds=#s5#"};
- { 5, 24556, "", "=q4=Gladiator's Dreadweave Gloves", "=ds=#s9#"};
- { 6, 24555, "", "=q4=Gladiator's Dreadweave Leggings", "=ds=#s11#"};
- { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_1#", "=q1=#arenas3L#"};
- { 9, 31974, "", "=q4=Merciless Gladiator's Dreadweave Hood", "=ds=#s1#", "15000 #faction#"};
- { 10, 31976, "", "=q4=Merciless Gladiator's Dreadweave Mantle", "=ds=#s3#", "13000 #faction#"};
- { 11, 31977, "", "=q4=Merciless Gladiator's Dreadweave Robe", "=ds=#s5#", "15000 #faction#"};
- { 12, 31973, "", "=q4=Merciless Gladiator's Dreadweave Gloves", "=ds=#s9#", "12000 #faction#"};
- { 13, 31975, "", "=q4=Merciless Gladiator's Dreadweave Leggings", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_1#", "=q1=#arenas2L#"};
- { 17, 33677, "", "=q4=Vengeful Gladiator's Dreadweave Hood", "=ds=#s1#", ""};
- { 18, 33679, "", "=q4=Vengeful Gladiator's Dreadweave Mantle", "=ds=#s3#", ""};
- { 19, 33680, "", "=q4=Vengeful Gladiator's Dreadweave Robe", "=ds=#s5#", ""};
- { 20, 33676, "", "=q4=Vengeful Gladiator's Dreadweave Gloves", "=ds=#s9#", ""};
- { 21, 33678, "", "=q4=Vengeful Gladiator's Dreadweave Leggings", "=ds=#s11#", ""};
- { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_1#", "=q1=#arenas4L#"};
- { 24, 35004, "", "=q4=Brutal Gladiator's Dreadweave Hood", "=ds=", "1875 #arena#", ""};
- { 25, 35006, "", "=q4=Brutal Gladiator's Dreadweave Mantle", "=ds=", "1500 #arena#", ""};
- { 26, 35007, "", "=q4=Brutal Gladiator's Dreadweave Robe", "=ds=", "1875 #arena#", ""};
- { 27, 35003, "", "=q4=Brutal Gladiator's Dreadweave Gloves", "=ds=", "1125 #arena#", ""};
- { 28, 35005, "", "=q4=Brutal Gladiator's Dreadweave Leggings", "=ds=", "1875 #arena#", ""};
- };
- {
- Name = AL["Destruction"];
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "=q1=#arenas1L#"};
- { 2, 30187, "", "=q4=Gladiator's Felweave Cowl", "=ds=#s1#"};
- { 3, 30186, "", "=q4=Gladiator's Felweave Amice", "=ds=#s3#"};
- { 4, 30200, "", "=q4=Gladiator's Felweave Raiment", "=ds=#s5#"};
- { 5, 30188, "", "=q4=Gladiator's Felweave Handguards", "=ds=#s9#"};
- { 6, 30201, "", "=q4=Gladiator's Felweave Trousers", "=ds=#s11#"};
- { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "=q1=#arenas3L#"};
- { 9, 31980, "", "=q4=Merciless Gladiator's Felweave Cowl", "=ds=#s1#", "15000 #faction#"};
- { 10, 31979, "", "=q4=Merciless Gladiator's Felweave Amice", "=ds=#s3#", "13000 #faction#"};
- { 11, 31982, "", "=q4=Merciless Gladiator's Felweave Raiment", "=ds=#s5#", "15000 #faction#"};
- { 12, 31981, "", "=q4=Merciless Gladiator's Felweave Handguards", "=ds=#s9#", "12000 #faction#"};
- { 13, 31983, "", "=q4=Merciless Gladiator's Felweave Trousers", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "=q1=#arenas2L#"};
- { 17, 33683, "", "=q4=Vengeful Gladiator's Felweave Cowl", "=ds=#s1#", ""};
- { 18, 33682, "", "=q4=Vengeful Gladiator's Felweave Amice", "=ds=#s3#", ""};
- { 19, 33685, "", "=q4=Vengeful Gladiator's Felweave Raiment", "=ds=#s5#", ""};
- { 20, 33684, "", "=q4=Vengeful Gladiator's Felweave Handguards", "=ds=#s9#", ""};
- { 21, 33686, "", "=q4=Vengeful Gladiator's Felweave Trousers", "=ds=#s11#", ""};
- { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "=q1=#arenas4L#"};
- { 24, 35010, "", "=q4=Brutal Gladiator's Felweave Cowl", "=ds=", "1875 #arena#", ""};
- { 25, 35009, "", "=q4=Brutal Gladiator's Felweave Amice", "=ds=", "1500 #arena#", ""};
- { 26, 35012, "", "=q4=Brutal Gladiator's Felweave Raiment", "=ds=", "1875 #arena#", ""};
- { 27, 35011, "", "=q4=Brutal Gladiator's Felweave Handguards", "=ds=", "1125 #arena#", ""};
- { 28, 35013, "", "=q4=Brutal Gladiator's Felweave Trousers", "=ds=", "1875 #arena#", ""};
- };
+--------------------
+--- Gruul's Lair ---
+--------------------
+
+AtlasLoot_Data["GruulsLair"] = {
+ Name = BabbleZone["Gruul's Lair"];
+ Type = "BCRaid";
+ Map = "GruulsLair";
+ {
+ Name = BabbleBoss["High King Maulgar"];
+ { 1, 28797, "", "=q4=Brute Cloak of the Ogre-Magi", "#s4#", "", "8.39%" };
+ { 2, 28799, "", "=q4=Belt of Divine Inspiration", "#s10#, #a1#", "", "9.98%" };
+ { 3, 28796, "", "=q4=Malefic Mask of the Shadows", "=ds=#s1#, #a2#", "", "12.93%" };
+ { 4, 28801, "", "=q4=Maulgar's Warhelm", "=ds=#s1#, #a3#", "", "21.32%" };
+ { 5, 28795, "", "=q4=Bladespire Warbands", "=ds=#s8#, #a4#", "", "12.02%" };
+ { 6, 28800, "", "=q4=Hammer of the Naaru", "=ds=#h2#, #w6#", "", "15.87%" };
+ { 16, 29764, "", "=q4=Pauldrons of the Fallen Defender", "=ds=#tt4#", "", "100%", "=TT=T4SHOULDER" };
+ { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 19, 816252, "", "=q3=Formula: Enchant Weapon - Undaunted Might", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%" };
};
-
-
- AtlasLoot_Data["ArenaShamanTBC"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
- {
- Name = AL["Enhancement"];
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "=q1=#arenas1L#"};
- { 2, 25998, "", "=q4=Gladiator's Linked Helm", "=ds=#s1#"};
- { 3, 25999, "", "=q4=Gladiator's Linked Spaulders", "=ds=#s3#"};
- { 4, 25997, "", "=q4=Gladiator's Linked Armor", "=ds=#s5#"};
- { 5, 26000, "", "=q4=Gladiator's Linked Gauntlets", "=ds=#s9#"};
- { 6, 26001, "", "=q4=Gladiator's Linked Leggings", "=ds=#s11#"};
- { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "=q1=#arenas3L#"};
- { 9, 32006, "", "=q4=Merciless Gladiator's Linked Helm", "=ds=#s1#", "15000 #faction#"};
- { 10, 32008, "", "=q4=Merciless Gladiator's Linked Spaulders", "=ds=#s3#", "13000 #faction#"};
- { 11, 32004, "", "=q4=Merciless Gladiator's Linked Armor", "=ds=#s5#", "15000 #faction#"};
- { 12, 32005, "", "=q4=Merciless Gladiator's Linked Gauntlets", "=ds=#s9#", "12000 #faction#"};
- { 13, 32007, "", "=q4=Merciless Gladiator's Linked Leggings", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "=q1=#arenas2L#"};
- { 17, 33708, "", "=q4=Vengeful Gladiator's Linked Helm", "=ds=#s1#", ""};
- { 18, 33710, "", "=q4=Vengeful Gladiator's Linked Spaulders", "=ds=#s3#", ""};
- { 19, 33706, "", "=q4=Vengeful Gladiator's Linked Armor", "=ds=#s5#", ""};
- { 20, 33707, "", "=q4=Vengeful Gladiator's Linked Gauntlets", "=ds=#s9#", ""};
- { 21, 33709, "", "=q4=Vengeful Gladiator's Linked Leggings", "=ds=#s11#", ""};
- { 23, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "=q1=#arenas4L#"};
- { 24, 35044, "", "=q4=Brutal Gladiator's Linked Helm", "=ds=", "1875 #arena#", ""};
- { 25, 35046, "", "=q4=Brutal Gladiator's Linked Spaulders", "=ds=", "1500 #arena#", ""};
- { 26, 35042, "", "=q4=Brutal Gladiator's Linked Armor", "=ds=", "1875 #arena#", ""};
- { 27, 35043, "", "=q4=Brutal Gladiator's Linked Gauntlets", "=ds=", "1125 #arena#", ""};
- { 28, 35045, "", "=q4=Brutal Gladiator's Linked Leggings", "=ds=", "1875 #arena#", ""};
- };
- {
- Name = AL["Elemental"];
- { 1, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "=q1=#arenas1L#"};
- { 2, 27471, "", "=q4=Gladiator's Mail Helm", "=ds=#s1#"};
- { 3, 27473, "", "=q4=Gladiator's Mail Spaulders", "=ds=#s3#"};
- { 4, 27469, "", "=q4=Gladiator's Mail Armor", "=ds=#s5#"};
- { 5, 27470, "", "=q4=Gladiator's Mail Gauntlets", "=ds=#s9#"};
- { 6, 27472, "", "=q4=Gladiator's Mail Leggings", "=ds=#s11#"};
- { 8, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "=q1=#arenas3L#"};
- { 9, 32011, "", "=q4=Merciless Gladiator's Mail Helm", "=ds=#s1#", ""};
- { 10, 32013, "", "=q4=Merciless Gladiator's Mail Spaulders", "=ds=#s3#", "13000 #faction#"};
- { 11, 32009, "", "=q4=Merciless Gladiator's Mail Armor", "=ds=#s5#", "15000 #faction#"};
- { 12, 32010, "", "=q4=Merciless Gladiator's Mail Gauntlets", "=ds=#s9#", "12000 #faction#"};
- { 13, 32012, "", "=q4=Merciless Gladiator's Mail Leggings", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "=q1=#arenas2L#"};
- { 17, 33713, "", "=q4=Vengeful Gladiator's Mail Helm", "=ds=#s1#", ""};
- { 18, 33715, "", "=q4=Vengeful Gladiator's Mail Spaulders", "=ds=#s3#", ""};
- { 19, 33711, "", "=q4=Vengeful Gladiator's Mail Armor", "=ds=#s5#", ""};
- { 20, 33712, "", "=q4=Vengeful Gladiator's Mail Gauntlets", "=ds=#s9#", ""};
- { 21, 33714, "", "=q4=Vengeful Gladiator's Mail Leggings", "=ds=#s11#", ""};
- { 23, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "=q1=#arenas4L#"};
- { 24, 35050, "", "=q4=Brutal Gladiator's Mail Helm", "=ds=", "1875 #arena#", ""};
- { 25, 35052, "", "=q4=Brutal Gladiator's Mail Spaulders", "=ds=", "1500 #arena#", ""};
- { 26, 35048, "", "=q4=Brutal Gladiator's Mail Armor", "=ds=", "1875 #arena#", ""};
- { 27, 35049, "", "=q4=Brutal Gladiator's Mail Gauntlets", "=ds=", "1125 #arena#", ""};
- { 28, 35051, "", "=q4=Brutal Gladiator's Mail Leggings", "=ds=", "1875 #arena#", ""};
- };
- {
- Name = AL["Restoration"];
- { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "=q1=#arenas1L#"};
- { 2, 31400, "", "=q4=Gladiator's Ringmail Helm", "=ds=#s1#"};
- { 3, 31407, "", "=q4=Gladiator's Ringmail Spaulders", "=ds=#s3#"};
- { 4, 31396, "", "=q4=Gladiator's Ringmail Armor", "=ds=#s5#"};
- { 5, 31397, "", "=q4=Gladiator's Ringmail Gauntlets", "=ds=#s9#"};
- { 6, 31406, "", "=q4=Gladiator's Ringmail Leggings", "=ds=#s11#"};
- { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "=q1=#arenas3L#"};
- { 9, 32031, "", "=q4=Merciless Gladiator's Ringmail Helm", "=ds=#s1#", "15000 #faction#"};
- { 10, 32033, "", "=q4=Merciless Gladiator's Ringmail Spaulders", "=ds=#s3#", "13000 #faction#"};
- { 11, 32029, "", "=q4=Merciless Gladiator's Ringmail Armor", "=ds=#s5#", "15000 #faction#"};
- { 12, 32030, "", "=q4=Merciless Gladiator's Ringmail Gauntlets", "=ds=#s9#", "12000 #faction#"};
- { 13, 32032, "", "=q4=Merciless Gladiator's Ringmail Leggings", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "=q1=#arenas2L#"};
- { 17, 33740, "", "=q4=Vengeful Gladiator's Ringmail Helm", "=ds=#s1#", ""};
- { 18, 33742, "", "=q4=Vengeful Gladiator's Ringmail Spaulders", "=ds=#s3#", ""};
- { 19, 33738, "", "=q4=Vengeful Gladiator's Ringmail Armor", "=ds=#s5#", ""};
- { 20, 33739, "", "=q4=Vengeful Gladiator's Ringmail Gauntlets", "=ds=#s9#", ""};
- { 21, 33741, "", "=q4=Vengeful Gladiator's Ringmail Leggings", "=ds=#s11#", ""};
- { 23, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "=q1=#arenas4L#"};
- { 24, 35079, "", "=q4=Brutal Gladiator's Ringmail Helm", "=ds=", "1875 #arena#", ""};
- { 25, 35081, "", "=q4=Brutal Gladiator's Ringmail Spaulders", "=ds=", "1500 #arena#", ""};
- { 26, 35077, "", "=q4=Brutal Gladiator's Ringmail Armor", "=ds=", "1875 #arena#", ""};
- { 27, 35078, "", "=q4=Brutal Gladiator's Ringmail Gauntlets", "=ds=", "1125 #arena#", ""};
- { 28, 35080, "", "=q4=Brutal Gladiator's Ringmail Leggings", "=ds=", "1875 #arena#", ""};
- };
+ {
+ Name = BabbleBoss["Gruul the Dragonkiller"];
+ { 1, 28804, "", "=q4=Collar of Cho'gall", "=ds=#s1#, #a1#", "", "14.96%" };
+ { 2, 28803, "", "=q4=Cowl of Nature's Breath", "=ds=#s1#, #a2#", "", "14.21%" };
+ { 3, 28828, "", "=q4=Gronn-Stitched Girdle", "=ds=#s10#, #a2#", "", "11.22%" };
+ { 4, 28827, "", "=q4=Gauntlets of the Dragonslayer", "=ds=#s9#, #a3#", "", "7.48%" };
+ { 5, 28810, "", "=q4=Windshear Boots", "=ds=#s12#, #a3#", "", "10.22%" };
+ { 6, 28824, "", "=q4=Gauntlets of Martial Perfection", "=ds=#s9#, #a4#", "", "12.22%" };
+ { 7, 28822, "", "=q4=Teeth of Gruul", "=ds=#s2#", "", "11.47%" };
+ { 8, 28823, "", "=q4=Eye of Gruul", "=ds=#s14#", "", "6.73%" };
+ { 9, 28830, "", "=q4=Dragonspine Trophy", "=ds=#s14#", "", "11.72%" };
+ { 11, 31750, "", "=q1=Earthen Signet", "=ds=#m3#", "", "100%" };
+ { 16, 29767, "", "=q4=Leggings of the Fallen Defender", "=ds=#tt4#", "", "100%", "=TT=T4LEGS" };
+ { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 20, 28802, "", "=q4=Bloodmaw Magus-Blade", "=ds=#h3#, #w10#", "", "9.23%" };
+ { 21, 28794, "", "=q4=Axe of the Gronn Lords", "=ds=#h2#, #w1#", "", "6.73%" };
+ { 22, 28825, "", "=q4=Aldori Legacy Defender", "=ds=#w8#", "", "2.99%" };
+ { 23, 28826, "", "=q4=Shuriken of Negation", "=ds=#w11#", "", "16.21%" };
};
+};
- AtlasLoot_Data["ArenaWarriorTBC"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "=q1=#arenas1L#"};
- { 2, 24545, "", "=q4=Gladiator's Plate Helm", "=ds=#s1#"};
- { 3, 24546, "", "=q4=Gladiator's Plate Shoulders", "=ds=#s3#"};
- { 4, 24544, "", "=q4=Gladiator's Plate Chestpiece", "=ds=#s5#"};
- { 5, 24549, "", "=q4=Gladiator's Plate Gauntlets", "=ds=#s9#"};
- { 6, 24547, "", "=q4=Gladiator's Plate Legguards", "=ds=#s11#"};
- { 8, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "=q1=#arenas3L#"};
- { 9, 30488, "", "=q4=Merciless Gladiator's Plate Helm", "=ds=#s1#", "15000 #faction#"};
- { 10, 30490, "", "=q4=Merciless Gladiator's Plate Shoulders", "=ds=#s3#", "13000 #faction#"};
- { 11, 30486, "", "=q4=Merciless Gladiator's Plate Chestpiece", "=ds=#s5#", "15000 #faction#"};
- { 12, 30487, "", "=q4=Merciless Gladiator's Plate Gauntlets", "=ds=#s9#", "12000 #faction#"};
- { 13, 30489, "", "=q4=Merciless Gladiator's Plate Legguards", "=ds=#s11#", "15000 #faction#"};
- { 16, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "=q1=#arenas2L#"};
- { 17, 33730, "", "=q4=Vengeful Gladiator's Plate Helm", "=ds=#s1#", ""};
- { 18, 33732, "", "=q4=Vengeful Gladiator's Plate Shoulders", "=ds=#s3#", ""};
- { 19, 33728, "", "=q4=Vengeful Gladiator's Plate Chestpiece", "=ds=#s5#", ""};
- { 20, 33729, "", "=q4=Vengeful Gladiator's Plate Gauntlets", "=ds=#s9#", ""};
- { 21, 33731, "", "=q4=Vengeful Gladiator's Plate Legguards", "=ds=#s11#", ""};
- { 23, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "=q1=#arenas4L#"};
- { 24, 35068, "", "=q4=Brutal Gladiator's Plate Helm", "=ds=", "1875 #arena#", ""};
- { 25, 35070, "", "=q4=Brutal Gladiator's Plate Shoulders", "=ds=", "1500 #arena#", ""};
- { 26, 35066, "", "=q4=Brutal Gladiator's Plate Chestpiece", "=ds=", "1875 #arena#", ""};
- { 27, 35067, "", "=q4=Brutal Gladiator's Plate Gauntlets", "=ds=", "1125 #arena#", ""};
- { 28, 35069, "", "=q4=Brutal Gladiator's Plate Legguards", "=ds=", "1875 #arena#", ""};
- };
+
+
+-------------------------------------------
+--- Hellfire Citadel: Hellfire Ramparts ---
+-------------------------------------------
+
+AtlasLoot_Data["HCRamparts"] = {
+ Name = BabbleZone["Hellfire Citadel"] .. ": " .. BabbleZone["Hellfire Ramparts"];
+ DisplayName = BabbleZone["Hellfire Ramparts"];
+ Type = "BCDungeon";
+ Map = "HCHellfireRamparts";
+ {
+ Name = BabbleBoss["Watchkeeper Gargolmar"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 24024, "", "=q3=Pauldrons of Arcane Rage", "=ds=#s3#, #a1#", "", "14.69%" };
+ { 3, 24023, "", "=q3=Bracers of Finesse", "=ds=#s8#, #a2#", "", "13.29%" };
+ { 4, 24022, "", "=q3=Scale Leggings of the Skirmisher", "=ds=#s11#, #a3#", "", "14.38%" };
+ { 5, 24021, "", "=q3=Light-Touched Breastplate", "=ds=#s5#, #a4#", "", "13.03%" };
+ { 6, 24020, "", "=q3=Shadowrend Longblade", "=ds=#h1#, #w10#", "", "13.09%" };
+ { 8, 23881, "", "=q1=Gargolmar's Hand", "=ds=#m3#", "", "100%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30593, "", "=q4=Iridescent Fire Opal", "=ds=#e7#", "", "11.11%" };
+ { 19, 30594, "", "=q4=Effulgent Chrysoprase", "=ds=#e7#", "", "12.35%" };
+ { 20, 30592, "", "=q4=Steady Chrysoprase", "=ds=#e7#", "", "8.64%" };
+ { 22, 27448, "", "=q3=Cloak of the Everliving", "=ds=#s4#", "", "28.37%" };
+ { 23, 27451, "", "=q3=Boots of the Darkwalker", "=ds=#s12#, #a1#", "", "16.61%" };
+ { 24, 27450, "", "=q3=Wild Stalker Boots", "=ds=#s12#, #a3#", "", "14.19%" };
+ { 25, 27447, "", "=q3=Bracers of Just Rewards", "=ds=#s8#, #a4#", "", "13.84%" };
+ { 26, 27449, "", "=q3=Blood Knight Defender", "=ds=#w8#", "", "13.15%" };
+ { 28, 23881, "", "=q1=Gargolmar's Hand", "=ds=#m3#", "", "100%" };
};
-
- --------------------------------
- --- Arena Seasons - Weapons ---
- --------------------------------
- AtlasLoot_Data["WeaponsTBC"] = {
- Name = "Arena "..AL["Weapons"];
- {
- Name = "Alliance";
- {1, 28953, "", "=q3=Grand Marshal's Right Ripper"};
- {2, 28947, "", "=q3=Grand Marshal's Left Ripper"};
- {3, 28957, "", "=q3=Grand Marshal's Spellblade"};
- {4, 28954, "", "=q3=Grand Marshal's Shanker"};
- {5, 28955, "", "=q3=Grand Marshal's Shiv"};
- {6, 28956, "", "=q3=Grand Marshal's Slicer"};
- {7, 28952, "", "=q3=Grand Marshal's Quickblade"};
- {8, 28943, "", "=q3=Grand Marshal's Warblade"};
- {9, 28944, "", "=q3=Grand Marshal's Cleaver"};
- {10, 28946, "", "=q3=Grand Marshal's Hacker"};
- {11, 28945, "", "=q3=Grand Marshal's Decapitator"};
- {12, 28951, "", "=q3=Grand Marshal's Pummeler"};
- {13, 28950, "", "=q3=Grand Marshal's Bonecracker"};
- {14, 28942, "", "=q3=Grand Marshal's Bonegrinder"};
- {15, 28948, "", "=q3=Grand Marshal's Maul"};
- {16, 28949, "", "=q3=Grand Marshal's Painsaw"};
- {17, 28959, "", "=q3=Grand Marshal's War Staff"};
- {18, 28940, "", "=q3=Grand Marshal's Barricade"};
- {19, 28960, "", "=q3=Grand Marshal's Heavy Crossbow"};
- {20, 28941, "", "=q3=Grand Marshal's Battletome"};
- };
- {
- Name = "Horde";
- {1, 28928, "", "=q3=High Warlord's Right Ripper"};
- {2, 28922, "", "=q3=High Warlord's Left Ripper"};
- {3, 28931, "", "=q3=High Warlord's Spellblade"};
- {4, 28929, "", "=q3=High Warlord's Shanker"};
- {5, 28930, "", "=q3=High Warlord's Shiv"};
- {6, 28937, "", "=q3=High Warlord's Slicer"};
- {7, 28926, "", "=q3=High Warlord's Quickblade"};
- {8, 28293, "", "=q3=High Warlord's Claymore"};
- {9, 28920, "", "=q3=High Warlord's Cleaver"};
- {10, 28921, "", "=q3=High Warlord's Hacker"};
- {11, 28918, "", "=q3=High Warlord's Decapitator"};
- {12, 28925, "", "=q3=High Warlord's Pummeler"};
- {13, 28924, "", "=q3=High Warlord's Bonecracker"};
- {14, 28917, "", "=q3=High Warlord's Bonegrinder"};
- {15, 28919, "", "=q3=High Warlord's Maul"};
- {16, 28923, "", "=q3=High Warlord's Painsaw"};
- {17, 28935, "", "=q3=High Warlord's War Staff"};
- {18, 28939, "", "=q3=High Warlord's Barricade"};
- {19, 28933, "", "=q3=High Warlord's Heavy Crossbow"};
- {20, 28938, "", "=q3=High Warlord's Battletome"};
- };
- {
- Name = "Weapons Season 1";
- {1, 28313, "", "=q4=Gladiator's Right Ripper", "=ds=", "2625 #arena#", ""};
- {2, 28314, "", "=q4=Gladiator's Left Ripper", "=ds=", "1125 #arena#", ""};
- {3, 28297, "", "=q4=Gladiator's Spellblade", "=ds=", "3150 #arena#", ""};
- {4, 28312, "", "=q4=Gladiator's Shanker", "=ds=", "2625 #arena#", ""};
- {5, 28310, "", "=q4=Gladiator's Shiv", "=ds=", "1125 #arena#", ""};
- {6, 28295, "", "=q4=Gladiator's Slicer", "=ds=", "2625 #arena#", ""};
- {7, 28307, "", "=q4=Gladiator's Quickblade", "=ds=", "1125 #arena#", ""};
- {8, 24550, "", "=q4=Gladiator's Greatsword", "=ds=", "3750 #arena#", ""};
- {9, 28308, "", "=q4=Gladiator's Cleaver", "=ds=", "2625 #arena#", ""};
- {10, 28309, "", "=q4=Gladiator's Hacker", "=ds=", "1125 #arena#", ""};
- {11, 28298, "", "=q4=Gladiator's Decapitator", "=ds=", "3750 #arena#", ""};
- {12, 28305, "", "=q4=Gladiator's Pummeler", "=ds=", "2625 #arena#", ""};
- {13, 28302, "", "=q4=Gladiator's Bonecracker", "=ds=", "1125 #arena#", ""};
- {14, 28299, "", "=q4=Gladiator's Bonegrinder", "=ds=", "3750 #arena#", ""};
- {15, 28476, "", "=q4=Gladiator's Maul", "=ds=", "3750 #arena#", ""};
- {16, 28300, "", "=q4=Gladiator's Painsaw", "=ds=", "3750 #arena#", ""};
- {17, 24557, "", "=q4=Gladiator's War Staff", "=ds=", "3750 #arena#", ""};
- {18, 28358, "", "=q4=Gladiator's Shield Wall", "=ds=", "1875 #arena#", ""};
- {19, 28319, "", "=q4=Gladiator's War Edge", "=ds=", "1000 #arena#", ""};
- {20, 28294, "", "=q4=Gladiator's Heavy Crossbow", "=ds=", "3750 #arena#", ""};
- {21, 28320, "", "=q4=Gladiator's Touch of Defeat", "=ds=", "1000 #arena#", ""};
- {22, 28346, "", "=q4=Gladiator's Endgame", "=ds=", "1125 #arena#", ""};
- {23, 32452, "", "=q4=Gladiator's Reprieve", "=ds=", "1125 #arena#", ""};
- };
- {
- Name = "Weapons Season 1";
- {1, 33945, "", "=q4=Gladiator's Idol of Resolve", "=ds=", "1000 #arena#", ""};
- {2, 33942, "", "=q4=Gladiator's Idol of Steadfastness", "=ds=", "1000 #arena#", ""};
- {3, 28355, "", "=q4=Gladiator's Idol of Tenacity", "=ds=", "1000 #arena#", ""};
- {4, 33936, "", "=q4=Gladiator's Libram of Fortitude", "=ds=", "1000 #arena#", ""};
- {5, 28356, "", "=q4=Gladiator's Libram of Justice", "=ds=", "1000 #arena#", ""};
- {6, 33948, "", "=q4=Gladiator's Libram of Vengeance", "=ds=", "1000 #arena#", ""};
- {7, 33939, "", "=q4=Gladiator's Totem of Indomitability", "=ds=", "1000 #arena#", ""};
- {8, 33951, "", "=q4=Gladiator's Totem of Survival", "=ds=", "1000 #arena#", ""};
- {9, 28357, "", "=q4=Gladiator's Totem of the Third Wind", "=ds=", "1000 #arena#", ""};
- };
- {
- Name = "Weapons Season 2";
- {1, 33737, "", "=q4=Vengeful Gladiator's Right Ripper", "=ds=", "2100 #arena#", ""};
- {2, 33705, "", "=q4=Vengeful Gladiator's Left Ripper", "=ds=", "900 #arena#", ""};
- {3, 34016, "", "=q4=Vengeful Gladiator's Left Render", "=ds=", "900 #arena#", ""};
- {4, 33763, "", "=q4=Vengeful Gladiator's Spellblade", "=ds=", "2520 #arena#", ""};
- {5, 33754, "", "=q4=Vengeful Gladiator's Shanker", "=ds=", "2100 #arena#", ""};
- {6, 33801, "", "=q4=Vengeful Gladiator's Mutilator", "=ds=", "900 #arena#", ""};
- {7, 33756, "", "=q4=Vengeful Gladiator's Shiv", "=ds=", "900 #arena#", ""};
- {8, 33762, "", "=q4=Vengeful Gladiator's Slicer", "=ds=", "2100 #arena#", ""};
- {9, 33734, "", "=q4=Vengeful Gladiator's Quickblade", "=ds=", "900 #arena#", ""};
- {10, 33688, "", "=q4=Vengeful Gladiator's Greatsword", "=ds=", "3000 #arena#", ""};
- {11, 33669, "", "=q4=Vengeful Gladiator's Cleaver", "=ds=", "2100 #arena#", ""};
- {12, 34015, "", "=q4=Vengeful Gladiator's Chopper", "=ds=", "900 #arena#", ""};
- {13, 33689, "", "=q4=Vengeful Gladiator's Hacker", "=ds=", "900 #arena#", ""};
- {14, 33670, "", "=q4=Vengeful Gladiator's Decapitator", "=ds=", "3000 #arena#", ""};
- {15, 34014, "", "=q4=Vengeful Gladiator's Waraxe", "=ds=", "800 #arena#", ""};
- {16, 33687, "", "=q4=Vengeful Gladiator's Gavel", "=ds=", "2520 #arena#", ""};
- {17, 33743, "", "=q4=Vengeful Gladiator's Salvation", "=ds=", "2520 #arena#", ""};
- {18, 33733, "", "=q4=Vengeful Gladiator's Pummeler", "=ds=", "2100 #arena#", ""};
- {19, 33662, "", "=q4=Vengeful Gladiator's Bonecracker", "=ds=", "2520 #arena#", ""};
- {20, 33663, "", "=q4=Vengeful Gladiator's Bonegrinder", "=ds=", "3000 #arena#", ""};
- {21, 33727, "", "=q4=Vengeful Gladiator's Painsaw", "=ds=", "3000 #arena#", ""};
- {22, 34540, "", "=q4=Vengeful Gladiator's Battle Staff", "=ds=", "3000 #arena#", ""};
- {23, 33716, "", "=q4=Vengeful Gladiator's Staff", "=ds=", "3000 #arena#", ""};
- {24, 33766, "", "=q4=Vengeful Gladiator's War Staff", "=ds=", "3000 #arena#", ""};
- };
- {
- Name = "Weapons Season 2";
- {1, 33661, "", "=q4=Vengeful Gladiator's Barrier", "=ds=", "1500 #arena#", ""};
- {2, 33735, "", "=q4=Vengeful Gladiator's Redoubt", "=ds=", "1500 #arena#", ""};
- {3, 33755, "", "=q4=Vengeful Gladiator's Shield Wall", "=ds=", "1500 #arena#", ""};
- {4, 33765, "", "=q4=Vengeful Gladiator's War Edge", "=ds=", "800 #arena#", ""};
- {5, 34529, "", "=q4=Vengeful Gladiator's Longbow", "=ds=", "3000 #arena#", ""};
- {6, 33006, "", "=q4=Vengeful Gladiator's Heavy Crossbow", "=ds=", "3000 #arena#", ""};
- {7, 34530, "", "=q4=Vengeful Gladiator's Rifle", "=ds=", "3000 #arena#", ""};
- {8, 34059, "", "=q4=Vengeful Gladiator's Baton of Light", "=ds=", "800 #arena#", ""};
- {9, 34066, "", "=q4=Vengeful Gladiator's Piercing Touch", "=ds=", "800 #arena#", ""};
- {10, 33764, "", "=q4=Vengeful Gladiator's Touch of Defeat", "=ds=", "800 #arena#", ""};
- {11, 33681, "", "=q4=Vengeful Gladiator's Endgame", "=ds=", "900 #arena#", ""};
- {12, 34033, "", "=q4=Vengeful Gladiator's Grimoire", "=ds=", "900 #arena#", ""};
- {13, 33736, "", "=q4=Vengeful Gladiator's Reprieve", "=ds=", "900 #arena#", ""};
- {16, 33947, "", "=q4=Vengeful Gladiator's Idol of Resolve", "=ds=", "800 #arena#", ""};
- {17, 33944, "", "=q4=Vengeful Gladiator's Idol of Steadfastness", "=ds=", "800 #arena#", ""};
- {18, 33841, "", "=q4=Vengeful Gladiator's Idol of Tenacity", "=ds=", "800 #arena#", ""};
- {19, 33938, "", "=q4=Vengeful Gladiator's Libram of Fortitude", "=ds=", "800 #arena#", ""};
- {20, 33842, "", "=q4=Vengeful Gladiator's Libram of Justice", "=ds=", "800 #arena#", ""};
- {21, 33950, "", "=q4=Vengeful Gladiator's Libram of Vengeance", "=ds=", "800 #arena#", ""};
- {22, 33941, "", "=q4=Vengeful Gladiator's Totem of Indomitability", "=ds=", "800 #arena#", ""};
- {23, 33953, "", "=q4=Vengeful Gladiator's Totem of Survival", "=ds=", "800 #arena#", ""};
- {24, 33843, "", "=q4=Vengeful Gladiator's Totem of the Third Wind", "=ds=", "800 #arena#", ""};
- };
- {
- Name = "Weapons Season 3";
- {1, 32028, "", "=q4=Merciless Gladiator's Right Ripper", "=ds=", "18000 #arena#", ""};
- {2, 32003, "", "=q4=Merciless Gladiator's Left Ripper", "=ds=", "9000 #arena#", ""};
- {3, 32053, "", "=q4=Merciless Gladiator's Spellblade", "=ds=", "25200 #arena#", ""};
- {4, 32044, "", "=q4=Merciless Gladiator's Shanker", "=ds=", "18000 #arena#", ""};
- {5, 32046, "", "=q4=Merciless Gladiator's Shiv", "=ds=", "9000 #arena#", ""};
- {6, 32052, "", "=q4=Merciless Gladiator's Slicer", "=ds=", "18000 #arena#", ""};
- {7, 32027, "", "=q4=Merciless Gladiator's Quickblade", "=ds=", "9000 #arena#", ""};
- {8, 31984, "", "=q4=Merciless Gladiator's Greatsword", "=ds=", "27000 #arena#", ""};
- {9, 31965, "", "=q4=Merciless Gladiator's Cleaver", "=ds=", "18000 #arena#", ""};
- {10, 31985, "", "=q4=Merciless Gladiator's Hacker", "=ds=", "9000 #arena#", ""};
- {11, 31966, "", "=q4=Merciless Gladiator's Decapitator", "=ds=", "27000 #arena#", ""};
- {12, 32963, "", "=q4=Merciless Gladiator's Gavel", "=ds=", "25200 #arena#", ""};
- {13, 32964, "", "=q4=Merciless Gladiator's Salvation", "=ds=", "25200 #arena#", ""};
- {14, 32026, "", "=q4=Merciless Gladiator's Pummeler", "=ds=", "18000 #arena#", ""};
- {15, 31958, "", "=q4=Merciless Gladiator's Bonecracker", "=ds=", "9000 #arena#", ""};
- {16, 31959, "", "=q4=Merciless Gladiator's Bonegrinder", "=ds=", "27000 #arena#", ""};
- {17, 32014, "", "=q4=Merciless Gladiator's Maul", "=ds=", "27000 #arena#", ""};
- {18, 32025, "", "=q4=Merciless Gladiator's Painsaw", "=ds=", "27000 #arena#", ""};
- {19, 32055, "", "=q4=Merciless Gladiator's War Staff", "=ds=", "27000 #arena#", ""};
- {20, 33313, "", "=q4=Merciless Gladiator's Barrier", "=ds=", "15000 #arena#", ""};
- {21, 33309, "", "=q4=Merciless Gladiator's Redoubt", "=ds=", "15000 #arena#", ""};
- {22, 32045, "", "=q4=Merciless Gladiator's Shield Wall", "=ds=", "15000 #arena#", ""};
- {23, 32054, "", "=q4=Merciless Gladiator's War Edge", "=ds=", "8000 #arena#", ""};
- {24, 31986, "", "=q4=Merciless Gladiator's Crossbow of the Phoenix", "=ds=", "27000 #arena#", ""};
- {25, 32962, "", "=q4=Merciless Gladiator's Touch of Defeat", "=ds=", "8000 #arena#", ""};
- {26, 31978, "", "=q4=Merciless Gladiator's Endgame", "=ds=", "9000 #arena#", ""};
- {27, 32961, "", "=q4=Merciless Gladiator's Reprieve", "=ds=", "9000 #arena#", ""};
- };
- {
- Name = "Weapons Season 3";
- {1, 33946, "", "=q4=Merciless Gladiator's Idol of Resolve", "=ds=", "8000 #arena#", ""};
- {2, 33943, "", "=q4=Merciless Gladiator's Idol of Steadfastness", "=ds=", "8000 #arena#", ""};
- {3, 33076, "", "=q4=Merciless Gladiator's Idol of Tenacity", "=ds=", "8000 #arena#", ""};
- {4, 33937, "", "=q4=Merciless Gladiator's Libram of Fortitude", "=ds=", "8000 #arena#", ""};
- {5, 33077, "", "=q4=Merciless Gladiator's Libram of Justice", "=ds=", "8000 #arena#", ""};
- {6, 33949, "", "=q4=Merciless Gladiator's Libram of Vengeance", "=ds=", "8000 #arena#", ""};
- {7, 33940, "", "=q4=Merciless Gladiator's Totem of Indomitability", "=ds=", "8000 #arena#", ""};
- {8, 33952, "", "=q4=Merciless Gladiator's Totem of Survival", "=ds=", "8000 #arena#", ""};
- {9, 33078, "", "=q4=Merciless Gladiator's Totem of the Third Wind", "=ds=", "8000 #arena#", ""};
- };
- {
- Name = "Weapons Season 4";
- { 1, 35076, "", "=q4=Brutal Gladiator's Right Ripper", "=ds=#h3#, #w13#", "2625 #arena#", ""};
- { 2, 35038, "", "=q4=Brutal Gladiator's Left Ripper", "=ds=#h4#, #w13#", "1125 #arena#", ""};
- { 3, 35037, "", "=q4=Brutal Gladiator's Left Render", "=ds=#h4#, #w13#", "1125 #arena#", ""};
- { 4, 35102, "", "=q4=Brutal Gladiator's Spellblade", "=ds=#h3#, #w4#", "3150 #arena#", ""};
- { 5, 37739, "", "=q4=Brutal Gladiator's Blade of Alacrity", "=ds=#h3#, #w4#", "3150 #arena#", ""};
- { 6, 35093, "", "=q4=Brutal Gladiator's Shanker", "=ds=#h1#, #w4#", "2625 #arena#", ""};
- { 7, 35058, "", "=q4=Brutal Gladiator's Mutilator", "=ds=#h4#, #w4#", "1125 #arena#", ""};
- { 8, 35095, "", "=q4=Brutal Gladiator's Shiv", "=ds=#h4#, #w4#", "1125 #arena#", ""};
- { 9, 35101, "", "=q4=Brutal Gladiator's Slicer", "=ds=#h1#, #w10#", "2625 #arena#", ""};
- { 10, 35072, "", "=q4=Brutal Gladiator's Quickblade", "=ds=#h4#, #w10#", "1125 #arena#", ""};
- { 11, 35015, "", "=q4=Brutal Gladiator's Greatsword", "=ds=#h2#, #w10#", "3750 #arena#", ""};
- { 12, 34996, "", "=q4=Brutal Gladiator's Cleaver", "=ds=#h1#, #w1#", "2625 #arena#", ""};
- { 13, 34995, "", "=q4=Brutal Gladiator's Chopper", "=ds=#h4#, #w1#", "1125 #arena#", ""};
- { 14, 36737, "", "=q4=Brutal Gladiator's Hatchet", "=ds=#h4#, #w1#", "650 #arena#", ""};
- { 15, 35017, "", "=q4=Brutal Gladiator's Hacker", "=ds=#h4#, #w1#", "1125 #arena#", ""};
- { 16, 34997, "", "=q4=Brutal Gladiator's Decapitator", "=ds=#h2#, #w1#", "3750 #arena#", ""};
- { 17, 35110, "", "=q4=Brutal Gladiator's Waraxe", "=ds=#h3#, #w1#", "650 #arena#", ""};
- { 18, 35014, "", "=q4=Brutal Gladiator's Gavel", "=ds=#h3#, #w6#", "3150 #arena#", ""};
- { 19, 35082, "", "=q4=Brutal Gladiator's Salvation", "=ds=#h3#, #w6#", "3150 #arena#", ""};
- { 20, 37740, "", "=q4=Brutal Gladiator's Swift Judgement", "=ds=#h3#, #w6#", "3150 #arena#", ""};
- { 21, 35071, "", "=q4=Brutal Gladiator's Pummeler", "=ds=#h1#, #w6#", "2625 #arena#", ""};
- { 22, 34988, "", "=q4=Brutal Gladiator's Bonecracker", "=ds=#h4#, #w6#", "3150 #arena#", ""};
- { 23, 34989, "", "=q4=Brutal Gladiator's Bonegrinder", "=ds=#h2#, #w6#", "3750 #arena#", ""};
- { 24, 35064, "", "=q4=Brutal Gladiator's Painsaw", "=ds=#w7#", "3750 #arena#", ""};
- { 25, 34987, "", "=q4=Brutal Gladiator's Battle Staff", "=ds=#h2#, #w9#", "3750 #arena#", ""};
- { 26, 35103, "", "=q4=Brutal Gladiator's Staff", "=ds=#h2#, #w9#", "3750 #arena#", ""};
- { 27, 35109, "", "=q4=Brutal Gladiator's War Staff", "=ds=#h2#, #w9#", "3750 #arena#", ""};
- };
- {
- Name = "Weapons Season 4";
- { 1, 34986, "", "=q4=Brutal Gladiator's Barrier", "=ds=#w8#", "1875 #arena#", ""};
- { 2, 35073, "", "=q4=Brutal Gladiator's Redoubt", "=ds=#w8#", "1875 #arena#", ""};
- { 3, 35094, "", "=q4=Brutal Gladiator's Shield Wall", "=ds=#w8#", "1875 #arena#", ""};
- { 4, 35108, "", "=q4=Brutal Gladiator's War Edge", "=ds=#w11#", "1000 #arena#", ""};
- { 5, 35047, "", "=q4=Brutal Gladiator's Longbow", "=ds=#w2#", "3750 #arena#", ""};
- { 6, 35018, "", "=q4=Brutal Gladiator's Heavy Crossbow", "=ds=#w3#", "3750 #arena#", ""};
- { 7, 35075, "", "=q4=Brutal Gladiator's Rifle", "=ds=#w5#", "3750 #arena#", ""};
- { 8, 34985, "", "=q4=Brutal Gladiator's Baton of Light", "=ds=#w12#", "1000 #arena#", ""};
- { 9, 35065, "", "=q4=Brutal Gladiator's Piercing Touch", "=ds=#w12#", "1000 #arena#", ""};
- { 10, 35107, "", "=q4=Brutal Gladiator's Touch of Defeat", "=ds=#w12#", "1000 #arena#", ""};
- { 11, 35008, "", "=q4=Brutal Gladiator's Endgame", "=ds=#s15#", "1125 #arena#", ""};
- { 12, 35016, "", "=q4=Brutal Gladiator's Grimoire", "=ds=#s15#", "1125 #arena#", ""};
- { 13, 35074, "", "=q4=Brutal Gladiator's Reprieve", "=ds=#s15#", "1125 #arena#", ""};
- { 16, 35019, "", "=q4=Brutal Gladiator's Idol of Resolve", "=ds=#w14#", "1000 #arena#", ""};
- { 17, 35020, "", "=q4=Brutal Gladiator's Idol of Steadfastness#w14#", "=ds=", "1000 #arena#", ""};
- { 18, 35021, "", "=q4=Brutal Gladiator's Idol of Tenacity", "=ds=#w14#", "1000 #arena#", ""};
- { 19, 35039, "", "=q4=Brutal Gladiator's Libram of Fortitude", "=ds=#w16#", "1000 #arena#", ""};
- { 20, 35040, "", "=q4=Brutal Gladiator's Libram of Justice", "=ds=#w16#", "1000 #arena#", ""};
- { 21, 35041, "", "=q4=Brutal Gladiator's Libram of Vengeance", "=ds=#w16#", "1000 #arena#", ""};
- { 22, 35104, "", "=q4=Brutal Gladiator's Totem of Indomitability", "=ds=#w15#", "1000 #arena#", ""};
- { 23, 35105, "", "=q4=Brutal Gladiator's Totem of Survival", "=ds=#w15#", "1000 #arena#", ""};
- { 24, 35106, "", "=q4=Brutal Gladiator's Totem of the Third Wind", "=ds=#w15#", "1000 #arena#", ""};
- };
+ {
+ Name = BabbleBoss["Omor the Unscarred"];
+ { 1, 0, "INV_Box_01", "#j27#", "" };
+ { 2, 27465, "", "=q3=Mana-Etched Gloves", "=ds=#s9#, #a1#", "", "11.74%" };
+ { 3, 27466, "", "=q3=Headdress of Alacrity", "=ds=#s1#, #a1#", "", "12.10%" };
+ { 4, 27462, "", "=q3=Crimson Bracers of Gloom", "=ds=#s8#, #a1#", "", "7.12%" };
+ { 5, 27467, "", "=q3=Silent-Strider Kneeboots", "=ds=#s12#, #a2#", "", "16.37%" };
+ { 6, 27478, "", "=q3=Girdle of the Blasted Reaches", "=ds=#s10#, #a3#", "", "14.59%" };
+ { 7, 27539, "", "=q3=Justice Bearer's Pauldrons", "=ds=#s3#, #a4#", "", "8.90%" };
+ { 8, 27906, "", "=q3=Crimsonforge Breastplate", "#s5#, #a4#", "", "12.10%" };
+ { 9, 27464, "", "=q3=Omor's Unyielding Will", "=ds=#s2#", "", "13.52%" };
+ { 10, 27895, "", "=q3=Band of Many Prisms", "=ds=#s13#", "", "11.74%" };
+ { 11, 27477, "", "=q3=Faol's Signet of Cleansing", "=ds=#s15#", "", "10.32%" };
+ { 12, 27463, "", "=q3=Terror Flame Dagger", "=ds=#h1#, #w4#", "", "8.90%" };
+ { 13, 27476, "", "=q3=Truncheon of Five Hells", "=ds=#h1#, #w6#", "", "9.25%" };
+ { 16, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 17, 30593, "", "=q4=Iridescent Fire Opal", "=ds=#e7#", "", "11.11%" };
+ { 18, 30594, "", "=q4=Effulgent Chrysoprase", "=ds=#e7#", "", "12.35%" };
+ { 19, 30592, "", "=q4=Steady Chrysoprase", "=ds=#e7#", "", "8.64%" };
+ { 21, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 22, 24090, "", "=q3=Bloodstained Ravager Gauntlets", "=ds=#s9#, #a3#", "", "12.14%" };
+ { 23, 24091, "", "=q3=Tenacious Defender", "=ds=#s10#, #a4#", "", "12.67%" };
+ { 24, 24073, "", "=q3=Garotte-String Necklace", "=ds=#s2#", "", "11.60%" };
+ { 25, 24096, "", "=q3=Heartblood Prayer Beads", "=ds=#s2#", "", "11.15%" };
+ { 26, 24094, "", "=q3=Heart Fire Warhammer", "=ds=#h2#, #w6#", "", "14.76%" };
+ { 27, 24069, "", "=q3=Crystalfire Staff", "=ds=#h2#, #w9#", "", "12.43%" };
+ { 29, 23886, "", "=q1=Omor's Hoof", "=ds=#m3#", "", "100%" };
};
+ {
+ Name = BabbleBoss["Vazruden"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Reinforced Fel Iron Chest"], "" };
+ { 2, 24150, "", "=q3=Mok'Nathal Wildercloak", "=ds=#s4#", "", "15.65%" };
+ { 3, 24083, "", "=q3=Lifegiver Britches", "=ds=#s11#, #a1#", "", "17.00%" };
+ { 4, 24063, "", "=q3=Shifting Sash of Midnight", "=ds=#s10#, #a2#", "", "17.25%" };
+ { 5, 24046, "", "=q3=Kilt of Rolling Thunders", "=ds=#s11#, #a3#", "", "15.96%" };
+ { 6, 24064, "", "=q3=Ironsole Clompers", "=ds=#s12#, #a4#", "", "13.80%" };
+ { 7, 24045, "", "=q3=Band of Renewal", "=ds=#s13#", "", "14.44%" };
+ { 8, 24154, "", "=q3=Witching Band", "=ds=#s13#", "", "13.23%" };
+ { 9, 24151, "", "=q3=Mok'Nathal Clan Ring", "=ds=#s13#", "", "15.45%" };
+ { 10, 24044, "", "=q3=Hellreaver", "=ds=#w7#", "", "13.91%" };
+ { 11, 24155, "", "=q3=Ursol's Claw", "=ds=#h2#, #w9#", "", "16.21%" };
+ { 16, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Vazruden"], "" };
+ { 17, 23892, "", "=q1=Ominous Letter", "=ds=#m2#", "", "100%" };
+ { 19, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Nazan"], "" };
+ { 20, 23901, "", "=q1=Nazan's Head", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Vazruden"] .. " (" .. AL["Heroic"] .. ")";
+ { 1, 29264, "", "=q4=Tree-Mender's Belt", "=ds=#s10#, #a2#", "", "16.05%" };
+ { 2, 32077, "", "=q4=Wrath Infused Gauntlets", "=ds=#s9#, #a3#" };
+ { 3, 29238, "", "=q4=Lion's Heart Girdle", "=ds=#s10#, #a4#", "", "14.81%" };
+ { 4, 29346, "", "=q4=Feltooth Eviscerator", "=ds=#h1#, #w4#", "", "5.56%" };
+ { 6, 27452, "", "=q3=Light Scribe Bands", "=ds=#s8#, #a1#", "", "11.73%" };
+ { 7, 27461, "", "=q3=Chestguard of the Prowler", "=ds=#s5#, #a2#", "", "11.73%" };
+ { 8, 27456, "", "=q3=Raiments of Nature's Breath", "=ds=#s5#, #a2#", "", "19.75%" };
+ { 9, 27454, "", "=q3=Volcanic Pauldrons", "=ds=#s3#, #a3#", "", "16.66%" };
+ { 10, 27458, "", "=q3=Oceansong Kilt", "=ds=#s11#, #a3#", "", "10.49%" };
+ { 11, 27455, "", "=q3=Irondrake Faceguard", "=ds=#s1#, #a4#", "", "11.11%" };
+ { 12, 27459, "", "=q3=Vambraces of Daring", "=ds=#s8#, #a4#", "", "10.49%" };
+ { 13, 27457, "", "=q3=Life Bearer's Gauntlets", "=ds=#s9#, #a4#", "", "8.02%" };
+ { 16, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 17, 30593, "", "=q4=Iridescent Fire Opal", "=ds=#e7#", "", "11.11%" };
+ { 18, 30594, "", "=q4=Effulgent Chrysoprase", "=ds=#e7#", "", "12.35%" };
+ { 19, 30592, "", "=q4=Steady Chrysoprase", "=ds=#e7#", "", "8.64%" };
+ { 21, 27453, "", "=q3=Averinn's Ring of Slaying", "=ds=#s13#", "", "14.20%" };
+ { 22, 27460, "", "=q3=Reavers' Ring", "=ds=#s13#", "", "17.90%" };
+ { 24, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Vazruden"], "" };
+ { 25, 23892, "", "=q1=Ominous Letter", "=ds=#m2#", "", "100%" };
+ { 27, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Nazan"], "" };
+ { 28, 23901, "", "=q1=Nazan's Head", "=ds=#m3#", "", "100%" };
+ };
+};
- --------------------------
- --- Sets & Collections ---
- --------------------------
- ---------------------------
- --- Dungeon 3 Sets (D3) ---
- ---------------------------
+
+
+-------------------------------------------
+--- Hellfire Citadel: The Blood Furnace ---
+-------------------------------------------
+
+AtlasLoot_Data["HCFurnace"] = {
+ Name = BabbleZone["Hellfire Citadel"] .. ": " .. BabbleZone["The Blood Furnace"];
+ DisplayName = BabbleZone["The Blood Furnace"];
+ Type = "BCDungeon";
+ Map = "HCBloodFurnace";
+ {
+ Name = BabbleBoss["The Maker"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 24388, "", "=q3=Girdle of the Gale Storm", "=ds=#s10#, #a3#", "", "15.84%" };
+ { 3, 24387, "", "=q3=Ironblade Gauntlets", "=ds=#s9#, #a4#", "", "13.27%" };
+ { 4, 24385, "", "=q3=Pendant of Battle-Lust", "=ds=#s2#", "", "15.43%" };
+ { 5, 24386, "", "=q3=Libram of Saints Departed", "=ds=#s16#, #w16#", "", "14.78%" };
+ { 6, 24384, "", "=q3=Diamond-Core Sledgemace", "=ds=#h3#, #w6#", "", "12.90%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30601, "", "=q4=Beaming Fire Opal", "=ds=#e7#", "", "18.18%" };
+ { 19, 30600, "", "=q4=Fluorescent Tanzanite", "=ds=#e7#", "", "9.85%" };
+ { 20, 30602, "", "=q4=Jagged Chrysoprase", "=ds=#e7#", "", "12.12%" };
+ { 22, 27485, "", "=q3=Embroidered Cape of Mysteries", "=ds=#s4#", "", "13.89%" };
+ { 23, 27488, "", "=q3=Mage-Collar of the Firestorm", "=ds=#s1#, #a1#", "", "16.67%" };
+ { 24, 27483, "", "=q3=Moon-Touched Bands", "=ds=#s8#, #a2#", "", "25.00%" };
+ { 25, 27487, "", "=q3=Bloodlord Legplates", "=ds=#s11#, #a4#", "", "9.26%" };
+ { 26, 27484, "", "=q3=Libram of Avengement", "=ds=#s16#, #w16#", "", "14.81%" };
+ };
+ {
+ Name = BabbleBoss["Broggok"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 24392, "", "=q3=Arcing Bracers", "=ds=#s8#, #a1#", "", "14.37%" };
+ { 3, 24393, "", "=q3=Bloody Surgeon's Mitts", "=ds=#s9#, #a1#", "", "17.62%" };
+ { 4, 24391, "", "=q3=Kilt of the Night Strider", "=ds=#s11#, #a2#", "", "16.58%" };
+ { 5, 24390, "", "=q3=Auslese's Light Channeler", "=ds=#s14#", "", "11.57%" };
+ { 6, 24389, "", "=q3=Legion Blunderbuss", "=ds=#w5#", "", "17.69%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30601, "", "=q4=Beaming Fire Opal", "=ds=#e7#", "", "18.18%" };
+ { 19, 30600, "", "=q4=Fluorescent Tanzanite", "=ds=#e7#", "", "9.85%" };
+ { 20, 30602, "", "=q4=Jagged Chrysoprase", "=ds=#e7#", "", "12.12%" };
+ { 22, 27848, "", "=q3=Embroidered Spellpyre Boots", "=ds=#s12#, #a1#", "", "8.33%" };
+ { 23, 27492, "", "=q3=Moonchild Leggings", "=ds=#s11#, #a2#", "", "13.89%" };
+ { 24, 27489, "", "=q3=Virtue Bearer's Vambraces", "=ds=#s8#, #a4#", "", "22.22%" };
+ { 25, 27491, "", "=q3=Signet of Repose", "=ds=#s13#", "", "30.56%" };
+ { 26, 27490, "", "=q3=Firebrand Battleaxe", "=ds=#h1#, #w1#", "", "9.72%" };
+ };
+ {
+ Name = BabbleBoss["Keli'dan the Breaker"];
+ { 1, 28264, "", "=q3=Wastewalker Tunic", "=ds=#s5#, #a2# (D3)", "", "6.82%" };
+ { 2, 27497, "", "=q3=Doomplate Gauntlets", "=ds=#s9#, #a4# (D3)", "", "9.09%" };
+ { 4, 27506, "", "=q3=Robe of Effervescent Light", "=ds=#s5#, #a1#", "", "17.42%" };
+ { 5, 27514, "", "=q3=Leggings of the Unrepentant", "=ds=#s11#, #a2#", "", "13.64%" };
+ { 6, 27522, "", "=q3=World's End Bracers", "=ds=#s8#, #a3#", "", "25.76%" };
+ { 7, 27494, "", "=q3=Emerald Eye Bracer", "=ds=#s8#, #a3#", "", "11.50%" };
+ { 8, 27505, "", "=q3=Ruby Helm of the Just", "=ds=#s1#, #a4#", "", "11.36%" };
+ { 9, 27788, "", "=q3=Bloodsworn Warboots", "=ds=#s12#, #a4#" };
+ { 10, 27495, "", "=q3=Soldier's Dog Tags", "=ds=#s2#", "", "9.85%" };
+ { 11, 28121, "", "=q3=Icon of Unyielding Courage", "=ds=#s14#", "", "8.33%" };
+ { 12, 27512, "", "=q3=The Willbreaker", "=ds=#h3#, #w10#", "", "6.06%" };
+ { 13, 27507, "", "=q3=Adamantine Repeater", "=ds=#w3#", "", "6.82%" };
+ { 15, 33814, "", "=q1=Keli'dan's Feathered Stave", "=ds=#m3#", "", "100%" };
+ { 16, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 17, 30601, "", "=q4=Beaming Fire Opal", "=ds=#e7#", "", "18.18%" };
+ { 18, 30600, "", "=q4=Fluorescent Tanzanite", "=ds=#e7#", "", "9.85%" };
+ { 19, 30602, "", "=q4=Jagged Chrysoprase", "=ds=#e7#", "", "12.12%" };
+ { 20, 32080, "", "=q4=Mantle of Shadowy Embrace", "=ds=#s3#, #a2#" };
+ { 21, 29245, "", "=q4=Wave-Crest Striders", "=ds=#s12#, #a3#", "", "3.79%" };
+ { 22, 29239, "", "=q4=Eaglecrest Warboots", "=ds=#s12#, #a4#", "", "6.82%" };
+ { 23, 29347, "", "=q4=Talisman of the Breaker", "=ds=#s2#", "", "7.58%" };
+ { 25, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 26, 24397, "", "=q3=Raiments of Divine Authority", "=ds=#s5#, #a1#", "", "16.92%" };
+ { 27, 24395, "", "=q3=Mindfire Waistband", "=ds=#s10#, #a1#", "", "16.64%" };
+ { 28, 24398, "", "=q3=Mantle of the Dusk-Dweller", "=ds=#s3#, #a2#", "", "14.29%" };
+ { 29, 24396, "", "=q3=Vest of Vengeance", "=ds=#s5#, #a2#", "", "15.46%" };
+ { 30, 24394, "", "=q3=Warsong Howling Axe", "=ds=#h2#, #w1#", "", "15.52%" };
+ };
+};
+
+---------------------------------------------
+--- Hellfire Citadel: The Shattered Halls ---
+---------------------------------------------
+
+AtlasLoot_Data["HCShatteredHalls"] = {
+ Name = BabbleZone["Hellfire Citadel"] .. ": " .. BabbleZone["The Shattered Halls"];
+ DisplayName = BabbleZone["The Shattered Halls"];
+ Type = "BCDungeon";
+ Map = "HCTheShatteredHalls";
+ {
+ Name = BabbleBoss["Grand Warlock Nethekurse"];
+ { 1, 24312, "", "=q4=Pattern: Spellstrike Hood", "=ds=#p8# (375)", "", "0.47%" };
+ { 3, 27519, "", "=q3=Cloak of Malice", "=ds=#s4#", "", "17.44%" };
+ { 4, 27517, "", "=q3=Bands of Nethekurse", "=ds=#s8#, #a1#", "", "17.52%" };
+ { 5, 27521, "", "=q3=Telaari Hunting Girdle", "=ds=#s10#, #a3#", "", "16.50%" };
+ { 6, 27520, "", "=q3=Greathelm of the Unbreakable", "=ds=#s1#, #a4#", "", "16.47%" };
+ { 7, 27518, "", "=q3=Ivory Idol of the Moongoddess", "=ds=#s16#, #w14#", "", "17.42%" };
+ { 9, 23735, "", "=q1=Grand Warlock's Amulet", "=ds=#m3#", "", "100%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 24312, "", "=q4=Pattern: Spellstrike Hood", "=ds=#p8# (375)", "", "0.47%" };
+ { 19, 30548, "", "=q4=Polished Chrysoprase", "=ds=#e7#", "", "0.16%" };
+ { 20, 30547, "", "=q4=Luminous Fire Opal", "=ds=#e7#", "", "0.19%" };
+ { 21, 30546, "", "=q4=Sovereign Tanzanite", "=ds=#e7#", "", "3.39%" };
+ { 23, 25462, "", "=q1=Tome of Dusk", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Blood Guard Porung"] .. " (" .. AL["Heroic"] .. ")";
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 30548, "", "=q4=Polished Chrysoprase", "=ds=#e7#", "", "0.16%" };
+ { 3, 30547, "", "=q4=Luminous Fire Opal", "=ds=#e7#", "", "0.19%" };
+ { 4, 30546, "", "=q4=Sovereign Tanzanite", "=ds=#e7#", "", "3.39%" };
+ { 6, 30709, "", "=q3=Pantaloons of Flaming Wrath", "=ds=#s11#, #a1#", "", "14.58%" };
+ { 7, 30707, "", "=q3=Nimble-foot Treads", "=ds=#s12#, #a2#", "", "10.42%" };
+ { 8, 30708, "", "=q3=Belt of Flowing Thought", "=ds=#s10#, #a3#", "", "12.50%" };
+ { 9, 30705, "", "=q3=Spaulders of Slaughter", "=ds=#s3#, #a4#", "", "21.88%" };
+ { 10, 30710, "", "=q3=Blood Guard's Necklace of Ferocity", "=ds=#s2#", "", "10.42%" };
+ };
+ {
+ Name = BabbleBoss["Warbringer O'mrogg"];
+ { 1, 27802, "", "=q3=Tidefury Shoulderguards", "=ds=#s3#, #a3# (D3)", "", "17.02%" };
+ { 3, 27525, "", "=q3=Jeweled Boots of Sanctification", "=ds=#s12#, #a1#", "", "18.26%" };
+ { 4, 27868, "", "=q3=Runesong Dagger", "=ds=#h3#, #w4#", "", "15.32%" };
+ { 5, 27524, "", "=q3=Firemaul of Destruction", "=ds=#h2#, #w6#", "", "17.95%" };
+ { 6, 27526, "", "=q3=Skyfire Hawk-Bow", "=ds=#w2#", "", "17.31%" };
+ { 8, 30829, "", "=q1=Tear of the Earthmother", "=ds=#m3#", "", "100%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30548, "", "=q4=Polished Chrysoprase", "=ds=#e7#", "", "0.16%" };
+ { 19, 30547, "", "=q4=Luminous Fire Opal", "=ds=#e7#", "", "0.19%" };
+ { 20, 30546, "", "=q4=Sovereign Tanzanite", "=ds=#e7#", "", "3.39%" };
+ };
+ {
+ Name = BabbleBoss["Warchief Kargath Bladefist"];
+ { 1, 27536, "", "=q3=Hallowed Handwraps", "=ds=#s9#, #a1# (D3)", "", "12.63%" };
+ { 2, 27537, "", "=q3=Gloves of Oblivion", "=ds=#s9#, #a1# (D3)", "", "12.54%" };
+ { 3, 27531, "", "=q3=Wastewalker Gloves", "=ds=#s9#, #a2# (D3)", "", "11.03%" };
+ { 4, 27474, "", "=q3=Beast Lord Handguards", "=ds=#s9#, #a3# (D3)", "", "10.73%" };
+ { 5, 27528, "", "=q3=Gauntlets of Desolation", "=ds=#s9#, #a3# (D3)", "", "13.86%" };
+ { 6, 27535, "", "=q3=Gauntlets of the Righteous", "=ds=#s9#, #a4# (D3)", "", "11.24%" };
+ { 8, 27527, "", "=q3=Greaves of the Shatterer", "=ds=#s11#, #a4#", "", "12.89%" };
+ { 9, 27529, "", "=q3=Figurine of the Colossus", "=ds=#s14#", "", "10.41%" };
+ { 10, 27534, "", "=q3=Hortus' Seal of Brilliance", "=ds=#s15#", "", "12.98%" };
+ { 11, 27533, "", "=q3=Demonblood Eviscerator", "=ds=#h3#, #w13#", "", "12.70%" };
+ { 12, 27538, "", "=q3=Lightsworn Hammer", "=ds=#h3#, #w6#", "", "10.6%" };
+ { 13, 27540, "", "=q3=Nexus Torch", "=ds=#w12#", "", "13.02%" };
+ { 15, 23723, "", "=q1=Warchief Kargath's Fist", "=ds=#m3#", "", "100%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30548, "", "=q4=Polished Chrysoprase", "=ds=#e7#", "", "0.16%" };
+ { 19, 30547, "", "=q4=Luminous Fire Opal", "=ds=#e7#", "", "0.19%" };
+ { 20, 30546, "", "=q4=Sovereign Tanzanite", "=ds=#e7#", "", "3.39%" };
+ { 22, 29255, "", "=q4=Bands of Rarefied Magic", "=ds=#s8#, #a1#", "", "0.58%" };
+ { 23, 29263, "", "=q4=Forestheart Bracers", "=ds=#s8#, #a2#", "", "0.28%" };
+ { 24, 29254, "", "=q4=Boots of the Righteous Path", "=ds=#s12#, #a4#" };
+ { 25, 29348, "", "=q4=The Bladefist", "=ds=#h3#, #w13#", "", "3.39%" };
+ { 27, 33815, "", "=q1=Bladefist's Seal", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 22554, "", "=q2=Formula: Enchant 2H Weapon - Savagery", "=ds=#p4# (350) =q1=#n88#", "", "1.65%" };
+ { 3, 0, "INV_Box_01", "=q6=" .. AL["Shattered Hand Executioner"], "" };
+ { 4, 31716, "", "=q1=Unused Axe of the Executioner", "=ds=#m3#", "", "100%" };
+ };
+};
+--------------------------------------------
+--- Hellfire Citadel: Magtheridon's Lair ---
+--------------------------------------------
+
+AtlasLoot_Data["HCMagtheridon"] = {
+ Name = BabbleZone["Hellfire Citadel"] .. ": " .. BabbleZone["Magtheridon's Lair"];
+ DisplayName = BabbleZone["Magtheridon's Lair"];
+ Type = "BCRaid";
+ Map = "HCMagtheridonsLair";
+ {
+ Name = BabbleBoss["Magtheridon"];
+ { 1, 28777, "", "=q4=Cloak of the Pit Stalker", "=ds=#s4#" };
+ { 2, 28780, "", "=q4=Soul-Eater's Handwraps", "=ds=#s9#, #a1#" };
+ { 3, 28776, "", "=q4=Liar's Tongue Gloves", "=ds=#s9#, #a2#" };
+ { 4, 28778, "", "=q4=Terror Pit Girdle", "=ds=#s10#, #a3#" };
+ { 5, 28775, "", "=q4=Thundering Greathelm", "=ds=#s1#, #a4#" };
+ { 6, 28779, "", "=q4=Girdle of the Endless Pit", "=ds=#s10#, #a4#" };
+ { 7, 28789, "", "=q4=Eye of Magtheridon", "=ds=#s14#" };
+ { 8, 28781, "", "=q4=Karaborian Talisman", "=ds=#s15#" };
+ { 9, 28774, "", "=q4=Glaive of the Pit", "=ds=#w7#" };
+ { 10, 28782, "", "=q4=Crystalheart Pulse-Staff", "=ds=#h2#, #w9#" };
+ { 11, 29458, "", "=q4=Aegis of the Vindicator", "=ds=#w8#" };
+ { 12, 28783, "", "=q4=Eredar Wand of Obliteration", "=ds=#w12#" };
+ { 14, 34845, "", "=q4=Pit Lord's Satchel", "=ds=#e1# #m15#" };
+ { 15, 34846, "", "=q2=Black Sack of Gems", "=ds=#e1#" };
+ { 16, 29753, "", "=q4=Chestguard of the Fallen Defender", "=ds=#tt4#", "", "100%", "=TT=T4CHEST" };
+ { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 19, 32385, "", "=q4=Magtheridon's Head", "=ds=#m2#", "", "100%" };
+ { 20, 28791, "", "=q4=Ring of the Recalcitrant", "=q1=#m4#: =ds=#s13#" };
+ { 21, 28790, "", "=q4=Naaru Lightwarden's Band", "=q1=#m4#: =ds=#s13#" };
+ { 22, 28793, "", "=q4=Band of Crimson Fury", "=q1=#m4#: =ds=#s13#" };
+ { 23, 28792, "", "=q4=A'dal's Signet of Defense", "=q1=#m4#: =ds=#s13#" };
+ { 25, 428775, "", "=q4=Bor -o G'urth, the Hand of Death", "=ds=#w7#",[AtlasLoot_Difficulty.MIN_DIF] = AtlasLoot_Difficulty.Mythic };
+ { 26, 428776, "", "=q4=Lebed -o G'urth, the Finger of Death", "=ds=#w7#",[AtlasLoot_Difficulty.MIN_DIF] = AtlasLoot_Difficulty.Mythic };
+ };
+};
+----------------
+--- Karazhan ---
+----------------
+
+AtlasLoot_Data["Karazhan"] = {
+ Name = "Karazhan";
+ Type = "BCRaid";
+ Map = "KarazhanStart";
+ Loadfirst = 3;
+ {
+ Name = "Charred Bone Fragment (" .. AL["Quest Item"] .. ")";
+ { 1, 24152, "INV_Misc_Bone_10", "=q1=Charred Bone Fragment", "=ds=#m3#" };
+ };
+ {
+ Name = "Servant's Quarter Animal Bosses";
+ { 1, 0, "Ability_Hunter_Pet_Spider", "=q6=" .. BabbleBoss["Hyakiss the Lurker"], "=q5=" .. AL["Spider"] };
+ { 2, 30675, "", "=q4=Lurker's Cord", "=ds=#s10#, #a1# =q2=#m16#", "", "32.81%" };
+ { 3, 30676, "", "=q4=Lurker's Grasp", "=ds=#s10#, #a2# =q2=#m16#", "", "9.38%" };
+ { 4, 30677, "", "=q4=Lurker's Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "23.44%" };
+ { 5, 30678, "", "=q4=Lurker's Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "15.62%" };
+ { 7, 0, "Ability_Hunter_Pet_Hyena", "=q6=" .. BabbleBoss["Rokad the Ravager"], "=q5=" .. AL["Darkhound"] };
+ { 8, 30684, "", "=q4=Ravager's Cuffs", "=ds=#s8#, #a1# =q2=#m16#", "", "27.78%" };
+ { 9, 30685, "", "=q4=Ravager's Wrist-Wraps", "=ds=#s8#, #a2# =q2=#m16#", "", "11.11%" };
+ { 10, 30686, "", "=q4=Ravager's Bands", "=ds=#s8#, #a3# =q2=#m16#", "", "23.33%" };
+ { 11, 30687, "", "=q4=Ravager's Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "8.89%" };
+ { 16, 0, "Ability_Hunter_Pet_Bat", "=q6=" .. BabbleBoss["Shadikith the Glider"], "=q5=" .. AL["Bat"] };
+ { 17, 30680, "", "=q4=Glider's Foot-Wraps", "=ds=#s12#, #a1# =q2=#m16#", "", "9.68%" };
+ { 18, 30681, "", "=q4=Glider's Boots", "=ds=#s12#, #a2# =q2=#m16#", "", "22.58%" };
+ { 19, 30682, "", "=q4=Glider's Sabatons", "=ds=#s12#, #a3# =q2=#m16#", "", "9.68%" };
+ { 20, 30683, "", "=q4=Glider's Greaves", "=ds=#s12#, #a4# =q2=#m16#", "", "8.60%" };
+ };
+ {
+ Name = BabbleBoss["Attumen the Huntsman"];
+ { 1, 28477, "", "=q4=Harbinger Bands", "=ds=#s8#, #a1#", "", "14.68%" };
+ { 2, 28507, "", "=q4=Handwraps of Flowing Thought", "=ds=#s9#, #a1#", "", "12.44%" };
+ { 3, 28508, "", "=q4=Gloves of Saintly Blessings", "=ds=#s9#, #a1#", "", "11.69%" };
+ { 4, 28453, "", "=q4=Bracers of the White Stag", "=ds=#s8#, #a2#", "", "12.19%" };
+ { 5, 28506, "", "=q4=Gloves of Dexterous Manipulation", "=ds=#s9#, #a2#", "", "14.68%" };
+ { 6, 28503, "", "=q4=Whirlwind Bracers", "=ds=#s8#, #a3#", "", "9.20%" };
+ { 7, 28454, "", "=q4=Stalker's War Bands", "=ds=#s8#, #a3#", "", "16.17%" };
+ { 8, 28502, "", "=q4=Vambraces of Courage", "=ds=#s8#, #a4#", "", "10.70%" };
+ { 9, 28505, "", "=q4=Gauntlets of Renewed Hope", "=ds=#s9#, #a4#", "", "10.95%" };
+ { 16, 28509, "", "=q4=Worgen Claw Necklace", "=ds=#s2#", "", "17.16%" };
+ { 17, 28510, "", "=q4=Spectral Band of Innervation", "=ds=#s13#", "", "10.70%" };
+ { 18, 28504, "", "=q4=Steelhawk Crossbow", "=ds=#w3#", "", "12.44%" };
+ { 19, 30480, "", "=q4=Fiery Warhorse's Reins", "=ds=#e12#", "", "0.25%" };
+ { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 23, 23809, "", "=q3=Schematic: Stabilized Eternium Scope", "=ds=#p5# (375)", "", "1.00%" };
+ };
+ {
+ Name = BabbleBoss["Moroes"];
+ { 1, 28529, "", "=q4=Royal Cloak of Arathi Kings", "=ds=#s4#", "", "15.91%" };
+ { 2, 28570, "", "=q4=Shadow-Cloak of Dalaran", "=ds=#s4#", "", "12.18%" };
+ { 3, 28565, "", "=q4=Nethershard Girdle", "=ds=#s10#, #a1#", "", "14.08%" };
+ { 4, 28545, "", "=q4=Edgewalker Longboots", "=ds=#s12#, #a2#", "", "11.07%" };
+ { 5, 28567, "", "=q4=Belt of Gale Force", "=ds=#s10#, #a3#", "", "12.05%" };
+ { 6, 28566, "", "=q4=Crimson Girdle of the Indomitable", "=ds=#s10#, #a4#", "", "10.81%" };
+ { 7, 28569, "", "=q4=Boots of Valiance", "=ds=#s12#, #a4#", "", "11.33%" };
+ { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 16, 28530, "", "=q4=Brooch of Unquenchable Fury", "=ds=#s2#", "", "12.25%" };
+ { 17, 28528, "", "=q4=Moroes' Lucky Pocket Watch", "=ds=#s14#", "", "12.05%" };
+ { 18, 28525, "", "=q4=Signet of Unshakable Faith", "=ds=#s15#", "", "14.54%" };
+ { 19, 28568, "", "=q4=Idol of the Avian Heart", "=ds=#s16#, #w14#", "", "14.08%" };
+ { 20, 28524, "", "=q4=Emerald Ripper", "=ds=#h1#, #w4#", "", "12.90%" };
+ { 22, 22559, "", "=q3=Formula: Enchant Weapon - Mongoose", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%" };
+ };
+ {
+ Name = "Keanna's Log (" .. AL["Quest Item"] .. ")";
+ { 1, 24492, "", "=q1=Keanna's Log", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Maiden of Virtue"];
+ { 1, 28511, "", "=q4=Bands of Indwelling", "=ds=#s8#, #a1#", "", "12.46%" };
+ { 2, 28515, "", "=q4=Bands of Nefarious Deeds", "=ds=#s8#, #a1#", "", "13.87%" };
+ { 3, 28517, "", "=q4=Boots of Foretelling", "=ds=#s12#, #a1#", "", "16.96%" };
+ { 4, 28514, "", "=q4=Bracers of Maliciousness", "=ds=#s8#, #a2#", "", "15.90%" };
+ { 5, 28521, "", "=q4=Mitts of the Treemender", "=ds=#s9#, #a2#", "", "13.16%" };
+ { 6, 28520, "", "=q4=Gloves of Centering", "=ds=#s9#, #a3#", "", "13.16%" };
+ { 7, 28519, "", "=q4=Gloves of Quickening", "=ds=#s9#, #a3#", "", "14.22%" };
+ { 8, 28512, "", "=q4=Bracers of Justice", "=ds=#s8#, #a4#", "", "15%" };
+ { 9, 28518, "", "=q4=Iron Gauntlets of the Maiden", "=ds=#s9#, #a4#", "", "12.63%" };
+ { 16, 28516, "", "=q4=Barbed Choker of Discipline", "=ds=#s2#", "", "11.48%" };
+ { 17, 28523, "", "=q4=Totem of Healing Rains", "=ds=#s16#, #w15#", "", "14.58%" };
+ { 18, 28522, "", "=q4=Shard of the Virtuous", "=ds=#h3#, #w6#", "", "10.69%" };
+ { 20, 229739, "", "=q4=Tome of Untold Secrets", "=ds=#e15#", "", "100%" };
+ { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 22, 816253, "", "=q3=Formula: Enchant Weapon - Faith", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%" };
+ };
+ {
+ Name = "Opera Event";
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Shared Drops"], "" };
+ { 2, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 3, 28594, "", "=q4=Trial-FireTrousers", "=ds=#s11#, #a1#", "", "15.96%" };
+ { 4, 28591, "", "=q4=Earthsoul Leggings", "=ds=#s11#, #a2#", "", "12.45%" };
+ { 5, 28589, "", "=q4=Beastmaw Pauldrons", "=ds=#s3#, #a3#", "", "12.54%" };
+ { 6, 28593, "", "=q4=Eternium Greathelm", "=ds=#s1#, #a4#", "", "11.53%" };
+ { 7, 28590, "", "=q4=Ribbon of Sacrifice", "=ds=#s14#", "", "18.41%" };
+ { 8, 28592, "", "=q4=Libram of Souls Redeemed", "=ds=#s16#, #w16#", "", "8.38%" };
+ { 10, 0, "INV_Box_01", "=q6=" .. BabbleBoss["The Crone"], "=q5=" .. AL["Wizard of Oz"] };
+ { 11, 28586, "", "=q4=Wicked Witch's Hat", "=ds=#s1#, #a1#", "", "20.12%" };
+ { 12, 28585, "", "=q4=Ruby Slippers", "=ds=#s12#, #a1#", "", "25.39%" };
+ { 13, 28587, "", "=q4=Legacy", "=ds=#h2#, #w1#", "", "20.43%" };
+ { 14, 28588, "", "=q4=Blue Diamond Witchwand", "=ds=#w12#", "", "17.96%" };
+ { 16, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Romulo & Julianne"], "=q5=" .. AL["Romulo & Julianne"] };
+ { 17, 28578, "", "=q4=Masquerade Gown", "=ds=#s5#, #a1#", "", "22.73%" };
+ { 18, 28579, "", "=q4=Romulo's Poison Vial", "=ds=#s14#", "", "29.54%" };
+ { 19, 28572, "", "=q4=Blade of the Unrequited", "=ds=#h1#, #w4#", "", "13.52%" };
+ { 20, 28573, "", "=q4=Despair", "=ds=#h2#, #w10#", "", "30.07%" };
+ { 24, 0, "INV_Box_01", "=q6=" .. BabbleBoss["The Big Bad Wolf"], "=q5=" .. AL["Red Riding Hood"] };
+ { 25, 28582, "", "=q4=Red Riding Hood's Cloak", "=ds=#s4#", "", "12.85%" };
+ { 26, 28583, "", "=q4=Big Bad Wolf's Head", "=ds=#s1#, #a3#", "", "16.37%" };
+ { 27, 28584, "", "=q4=Big Bad Wolf's Paw", "=ds=#h3#, #w13#", "", "16.12%" };
+ { 28, 28581, "", "=q4=Wolfslayer Sniper Rifle", "=ds=#w5#", "", "22.42%" };
+ };
+ {
+ Name = BabbleBoss["Nightbane"];
+ { 1, 28602, "", "=q4=Robe of the Elder Scribes", "=ds=#s5#, #a1#", "", "17.38%" };
+ { 2, 28600, "", "=q4=Stonebough Jerkin", "=ds=#s5#, #a2#", "", "13.33%" };
+ { 3, 28601, "", "=q4=Chestguard of the Conniver", "=ds=#s5#, #a2#", "", "10.24%" };
+ { 4, 28599, "", "=q4=Scaled Breastplate of Carnage", "=ds=#s5#, #a3#", "", "11.67%" };
+ { 5, 28610, "", "=q4=Ferocious Swift-Kickers", "=ds=#s12#, #a3#", "", "15.71%" };
+ { 6, 28597, "", "=q4=Panzar'Thar Breastplate", "=ds=#s5#, #a4#", "", "10.00%" };
+ { 7, 28608, "", "=q4=Ironstriders of Urgency", "=ds=#s12#, #a4#", "", "9.05%" };
+ { 9, 31751, "", "=q1=Blazing Signet", "=ds=#m3#", "", "100%" };
+ { 10, 24139, "", "=q1=Faint Arcane Essence", "=ds=#m3#", "", "100%" };
+ { 16, 28609, "", "=q4=Emberspur Talisman", "=ds=#s2#", "", "13.33%" };
+ { 17, 28603, "", "=q4=Talisman of Nightbane", "=ds=#s15#", "", "12.62%" };
+ { 18, 28604, "", "=q4=Nightstaff of the Everliving", "=ds=#h2#, #w9#", "", "16.67%" };
+ { 19, 28611, "", "=q4=Dragonheart Flameshield", "=ds=#w8#", "", "13.57%" };
+ { 20, 28606, "", "=q4=Shield of Impenetrable Darkness", "=ds=#w8#", "", "12.14%" };
+ { 22, 229739, "", "=q4=Tome of Untold Secrets", "=ds=#e15#", "", "100%" };
+ { 23, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["The Curator"];
+ { 1, 28612, "", "=q4=Pauldrons of the Solace-Giver", "=ds=#s3#, #a1#", "", "15.19%" };
+ { 2, 28647, "", "=q4=Forest Wind Shoulderpads", "=ds=#s3#, #a2#", "", "10.56%" };
+ { 3, 28631, "", "=q4=Dragon-Quake Shoulderguards", "=ds=#s3#, #a3#", "", "13.47%" };
+ { 4, 28621, "", "=q4=Wrynn Dynasty Greaves", "=ds=#s11#, #a4#", "", "11.85%" };
+ { 5, 28649, "", "=q4=Garona's Signet Ring", "=ds=#s13#", "", "12.07%" };
+ { 6, 28633, "", "=q4=Staff of Infinite Mysteries", "=ds=#h2#, #w9#", "", "12.28%" };
+ { 8, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 16, 29758, "", "=q4=Gloves of the Fallen Defender", "=ds=#tt4#", "", "100%", "=TT=T4HAND" };
+ };
+ {
+ Name = BabbleBoss["Terestian Illhoof"];
+ { 1, 28660, "", "=q4=Gilded Thorium Cloak", "=ds=#s4#", "", "14.63%" };
+ { 2, 28653, "", "=q4=Shadowvine Cloak of Infusion", "=ds=#s4#", "", "10.45%" };
+ { 3, 28652, "", "=q4=Cincture of Will", "=ds=#s10#, #a1#", "", "10.75%" };
+ { 4, 28654, "", "=q4=Malefic Girdle", "=ds=#s10#, #a1#", "", "11.04%" };
+ { 5, 28655, "", "=q4=Cord of Nature's Sustenance", "=ds=#s10#, #a2#", "", "14.93%" };
+ { 6, 28656, "", "=q4=Girdle of the Prowler", "=ds=#s10#, #a3#", "", "17.91%" };
+ { 7, 28662, "", "=q4=Breastplate of the Lightbinder", "=ds=#s5#, #a4#", "", "17.31%" };
+ { 9, 229739, "", "=q4=Tome of Untold Secrets", "=ds=#e15#", "", "100%" };
+ { 10, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 16, 28661, "", "=q4=Mender's Heart-Ring", "=ds=#s13#", "", "11.64%" };
+ { 17, 28785, "", "=q4=The Lightning Capacitor", "=ds=#s14#", "", "10.75%" };
+ { 18, 28657, "", "=q4=Fool's Bane", "=ds=#h1#, #w6#", "", "14.63%" };
+ { 19, 28658, "", "=q4=Terestian's Stranglestaff", "=ds=#h2#, #w9#", "", "7.46%" };
+ { 20, 28659, "", "=q4=Xavian Stiletto", "=ds=#w11#", "", "13.43%" };
+ { 22, 22561, "", "=q3=Formula: Enchant Weapon - Soulfrost", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%" };
+ };
+ {
+ Name = BabbleBoss["Shade of Aran"];
+ { 1, 28672, "", "=q4=Drape of the Dark Reavers", "=ds=#s4#", "", "11.70%" };
+ { 2, 28726, "", "=q4=Mantle of the Mind Flayer", "=ds=#s3#, #a1#", "", "16.03%" };
+ { 3, 28670, "", "=q4=Boots of the Infernal Coven", "=ds=#s12#, #a1#", "", "9.29%" };
+ { 4, 28663, "", "=q4=Boots of the Incorrupt", "=ds=#s12#, #a1#", "", "12.72%" };
+ { 5, 28669, "", "=q4=Rapscallion Boots", "=ds=#s12#, #a2#", "", "11.32%" };
+ { 6, 28671, "", "=q4=Steelspine Faceguard", "=ds=#s1#, #a3#", "", "12.21%" };
+ { 7, 28666, "", "=q4=Pauldrons of the Justice-Seeker", "=ds=#s3#, #a4#", "", "11.58%" };
+ { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 11, 23933, "", "=q1=Medivh's Journal", "=ds=#m3#", "", "100%" };
+ { 16, 28674, "", "=q4=Saberclaw Talisman", "=ds=#s2#", "", "11.20%" };
+ { 17, 28675, "", "=q4=Shermanar Great-Ring", "=ds=#s13#", "", "10.43%" };
+ { 18, 28727, "", "=q4=Pendant of the Violet Eye", "=ds=#s14#", "", "15.39%" };
+ { 19, 28728, "", "=q4=Aran's Soothing Sapphire", "=ds=#s15#", "", "12.72%" };
+ { 20, 28673, "", "=q4=Tirisfal Wand of Ascendancy", "=ds=#w12#", "", "7.25%" };
+ { 22, 22560, "", "=q3=Formula: Enchant Weapon - Sunfire", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%" };
+ };
+ {
+ Name = BabbleBoss["Netherspite"];
+ { 1, 28744, "", "=q4=Uni-Mind Headdress", "=ds=#s1#, #a1#", "", "12.91%" };
+ { 2, 28742, "", "=q4=Pantaloons of Repentence", "=ds=#s11#, #a1#", "", "10.99%" };
+ { 3, 28732, "", "=q4=Cowl of Defiance", "=ds=#s1#, #a2#", "", "17.31%" };
+ { 4, 28741, "", "=q4=Skulker's Greaves", "=ds=#s11#, #a2#", "", "15.38%" };
+ { 5, 28735, "", "=q4=Earthblood Chestguard", "=ds=#s5#, #a3#", "", "15.93%" };
+ { 6, 28740, "", "=q4=Rip-Flayer Leggings", "=ds=#s11#, #a3#", "", "10.16%" };
+ { 7, 28743, "", "=q4=Mantle of Abrahmis", "=ds=#s3#, #a4#", "", "9.34%" };
+ { 8, 28733, "", "=q4=Girdle of Truth", "=ds=#s10#, #a4#", "", "10.44%" };
+ { 16, 28731, "", "=q4=Shining Chain of the Afterworld", "=ds=#s2#", "", "15.11%" };
+ { 17, 28730, "", "=q4=Mithril Band of the Unscarred", "=ds=#s13#", "", "10.99%" };
+ { 18, 28734, "", "=q4=Jewel of Infinite Possibilities", "=ds=#s15#", "", "11.64%" };
+ { 19, 28729, "", "=q4=Spiteblade", "=ds=#h1#, #w10#", "", "6.32%" };
+ { 21, 229739, "", "=q4=Tome of Untold Secrets", "=ds=#e15#", "", "100%" };
+ { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Chess Event"];
+ { 1, 28756, "", "=q4=Headdress of the High Potentate", "=ds=#s1#, #a1#", "", "17.98%" };
+ { 2, 28755, "", "=q4=Bladed Shoulderpads of the Merciless", "=ds=#s3#, #a2#", "", "13.55%" };
+ { 3, 28750, "", "=q4=Girdle of Treachery", "=ds=#s10#, #a2#", "", "15.02%" };
+ { 4, 28752, "", "=q4=Forestlord Striders", "=ds=#s12#, #a2#", "", "14.04%" };
+ { 5, 28751, "", "=q4=Heart-Flame Leggings", "=ds=#s11#, #a3#", "", "12.56%" };
+ { 6, 28746, "", "=q4=Fiend Slayer Boots", "=ds=#s12#, #a3#", "", "16.26%" };
+ { 7, 28748, "", "=q4=Legplates of the Innocent", "=ds=#s11#, #a4#", "", "13.79%" };
+ { 8, 28747, "", "=q4=Battlescar Boots", "=ds=#s12#, #a4#", "", "13.79%" };
+ { 16, 28745, "", "=q4=Mithril Chain of Heroism", "=ds=#s2#", "", "12.81%" };
+ { 17, 28753, "", "=q4=Ring of Recurrence", "=ds=#s13#", "", "12.56%" };
+ { 18, 28749, "", "=q4=King's Defender", "=ds=#h1#, #w10#", "", "12.07%" };
+ { 19, 28754, "", "=q4=Triptych Shield of the Ancients", "=ds=#w8#", "", "13.30%" };
+ { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Prince Malchezaar"];
+ { 1, 28765, "", "=q4=Stainless Cloak of the Pure Hearted", "=ds=#s4#", "", "10.37%" };
+ { 2, 28766, "", "=q4=Ruby Drape of the Mysticant", "=ds=#s4#", "", "12.50%" };
+ { 3, 28764, "", "=q4=Farstrider Wildercloak", "=ds=#s4#", "", "15.96%" };
+ { 4, 28762, "", "=q4=Adornment of Stolen Souls", "=ds=#s2#", "", "9.57%" };
+ { 5, 28763, "", "=q4=Jade Ring of the Everliving", "=ds=#s13#", "", "11.84%" };
+ { 6, 28757, "", "=q4=Ring of a Thousand Marks", "=ds=#s13#", "", "12.90%" };
+ { 8, 28770, "", "=q4=Nathrezim Mindblade", "=ds=#h3#, #w4#", "", "10.64%" };
+ { 9, 28768, "", "=q4=Malchazeen", "=ds=#h1#, #w4#", "", "9.84%" };
+ { 10, 28767, "", "=q4=The Decapitator", "=ds=#h1#, #w1#", "", "15.43%" };
+ { 11, 28773, "", "=q4=Gorehowl", "=ds=#h2#, #w1#", "", "12.63%" };
+ { 12, 28771, "", "=q4=Light's Justice", "=ds=#h3#, #w6#", "", "11.17%" };
+ { 13, 28772, "", "=q4=Sunfury Bow of the Phoenix", "=ds=#w2#", "", "9.97%" };
+ { 16, 29761, "", "=q4=Helm of the Fallen Defender", "=ds=#tt4#", "", "100%", "=TT=T4HEAD" };
+ { 18, 229739, "", "=q4=Tome of Untold Secrets", "=ds=#e15#", "", "100%" };
+ { 19, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 21, 499438, "", "=q4=Smoldering Emberwyrm", "=ds=#e12#", [AtlasLoot_Difficulty.MIN_DIF] = AtlasLoot_Difficulty.Heroic,"" };
+ };
+ { --Trash Mobs
+ Name = AL["Trash Mobs"];
+ { 1, 30642, "", "=q4=Drape of the Righteous", "=ds=#s4#", "", "0.22%" };
+ { 2, 30668, "", "=q4=Grasp of the Dead", "=ds=#s9#, #a1#", "", "0.17%" };
+ { 3, 30673, "", "=q4=Inferno Waist Cord", "=ds=#s10#, #a1#", "", "0.21%" };
+ { 4, 30644, "", "=q4=Grips of the Deftness", "=ds=#s9#, #a2#", "", "0.23%" };
+ { 5, 30674, "", "=q4=Zierhut's Lost Treads", "=ds=#s12#, #a2#", "", "0.17%" };
+ { 6, 30643, "", "=q4=Belt of the Tracker", "=ds=#s10#, #a3#", "", "0.19%" };
+ { 7, 30641, "", "=q4=Boots of Elusion", "=ds=#s12#, #a4#", "", "0.13%" };
+ { 9, 23857, "", "=q1=Legacy of the Mountain King", "=ds=" };
+ { 10, 23864, "", "=q1=Torment of the Worgen", "=ds=" };
+ { 11, 23862, "", "=q1=Redemption of the Fallen", "=ds=" };
+ { 12, 23865, "", "=q1=Wrath of the Titans", "=ds=" };
+ { 14, 21882, "", "=q1=Soul Essence", "=ds=#e8#" };
+ { 16, 30666, "", "=q4=Ritssyn's Lost Pendant", "=ds=#s2#", "", "0.18%" };
+ { 17, 30667, "", "=q4=Ring of Unrelenting Storms", "=ds=#s13#", "", "0.17%" };
+ { 19, 21903, "", "=q4=Pattern: Soulcloth Shoulders", "=ds=#p8# (375)", "", "0.74%" };
+ { 20, 21904, "", "=q4=Pattern: Soulcloth Vest", "=ds=#p8# (375)", "", "1.07%" };
+ { 21, 22545, "", "=q2=Formula: Enchant Boots - Surefooted", "=ds=#p4# (370)", "", "0.66%" };
+ };
+};
+----------------------------------------
+--- Sunwell Isle: Magister's Terrace ---
+----------------------------------------
+
+AtlasLoot_Data["MagistersTerrace"] = {
+ Name = AL["Sunwell Isle"] .. ": " .. BabbleZone["Magisters' Terrace"];
+ DisplayName = BabbleZone["Magisters' Terrace"];
+ Type = "BCDungeon";
+ Map = "MagistersTerrace";
+ {
+ Name = BabbleBoss["Selin Fireheart"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 434702, "", "=q3=Cloak of Swift Mending", "=ds=#s4#", "", "5%" };
+ { 3, 434697, "", "=q3=Bindings of Raging Fire", "=ds=#s8#, #a1#", "", "5%" };
+ { 4, 434701, "", "=q3=Leggings of the Betrayed", "=ds=#s11#, #a2#", "", "5%" };
+ { 5, 434698, "", "=q3=Bracers of the Forest Stalker", "=ds=#s8#, #a3#", "", "5%" };
+ { 6, 434700, "", "=q3=Gauntlets of Divine Blessings", "=ds=#s9#, #a4#", "", "5%" };
+ { 7, 434699, "", "=q3=Sun-forged Cleaver", "=ds=#h1#, #w1#", "", "5%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 434602, "", "=q4=Eversong Cuffs", "=ds=#s8#, #a2#", "", "20%" };
+ { 19, 434601, "", "=q4=Shoulderplates of Everlasting Pain", "=ds=#s3#, #a4#", "", "21%" };
+ { 20, 434604, "", "=q4=Jaded Crystal Dagger", "=ds=#h3#, #w4#", "", "21%" };
+ { 21, 434603, "", "=q4=Distracting Blades", "=ds=#w11#", "", "21%" };
+ { 23, 435275, "", "=q3=Orb of the Sin'dorei", "=ds=#m20#", "", "2%" };
+ };
+ {
+ Name = BabbleBoss["Vexallus"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 434708, "", "=q3=Cloak of the Coming Night", "=ds=#s4#", "", "17%" };
+ { 3, 434705, "", "=q3=Bracers of Divine Infusion", "=ds=#s8#, #a1#", "", "5%" };
+ { 4, 434707, "", "=q3=Boots of Resuscitation", "=ds=#s12#, #a2#", "", "16%" };
+ { 5, 434704, "", "=q3=Band of Arcane Alacrity", "=ds=#s13#", "", "18%" };
+ { 6, 434706, "", "=q3=Band of Determination", "=ds=#s13#", "", "5%" };
+ { 7, 434703, "", "=q3=Latro's Dancing Blade", "=ds=#h1#, #w10#", "", "16%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 434607, "", "=q4=Fel-tinged Mantle", "=ds=#s3#, #a1#", "", "20%" };
+ { 19, 434605, "", "=q4=Breastplate of Fierce Survival", "=ds=#s5#, #a4#", "", "19%" };
+ { 20, 434606, "", "=q4=Edge of Oppression", "=ds=#h1#, #w4#", "", "20%" };
+ { 21, 434608, "", "=q4=Rod of the Blazing Light", "=ds=#h2#, #w9#", "", "19%" };
+ { 23, 435275, "", "=q3=Orb of the Sin'dorei", "=ds=#m20#", "", "2%" };
+ };
+ {
+ Name = BabbleBoss["Priestess Delrissa"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 434792, "", "=q3=Cloak of the Betrayed", "=ds=#s4#", "", "17%" };
+ { 3, 434788, "", "=q3=Duskhallow Mantle", "=ds=#s3#, #a1#", "", "5%" };
+ { 4, 434791, "", "=q3=Gauntlets of the Tranquil Waves", "=ds=#s9#, #a3#", "", "16%" };
+ { 5, 434789, "", "=q3=Bracers of Slaughter", "=ds=#s8#, #a4#", "", "17%" };
+ { 6, 434790, "", "=q3=Battle-mace of the High Priestess", "=ds=#h3#, #w6#", "", "16%" };
+ { 7, 434783, "", "=q3=Nightstrike", "=ds=#w11#", "", "17%" };
+ { 9, 35756, "", "=q3=Formula: Enchant Cloak - Steelweave", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 434473, "", "=q4=Commendation of Kael'thas", "=ds=#s14#", "", "19%" };
+ { 19, 434472, "", "=q4=Shard of Contempt", "=ds=#s14#", "", "19%" };
+ { 20, 434470, "", "=q4=Timbal's Focusing Crystal", "=ds=#s14#", "", "19%" };
+ { 21, 434471, "", "=q4=Vial of the Sunwell", "=ds=#s14#", "", "19%" };
+ { 23, 435275, "", "=q3=Orb of the Sin'dorei", "=ds=#m20#", "", "2%" };
+ };
+ {
+ Name = BabbleBoss["Kael'thas Sunstrider"];
+ { 1, 434810, "", "=q4=Cloak of Blade Turning", "=ds=#s4#", "", "5%" };
+ { 2, 434808, "", "=q4=Gloves of Arcane Acuity", "=ds=#s9#, #a1#", "", "5%" };
+ { 3, 434809, "", "=q4=Sunrage Treads", "=ds=#s12#, #a2#", "", "15%" };
+ { 4, 434799, "", "=q4=Hauberk of the War Bringer", "=ds=#s5#, #a3#", "", "13%" };
+ { 5, 434807, "", "=q4=Sunstrider Warboots", "=ds=#s12#, #a4#", "", "5%" };
+ { 6, 434625, "", "=q4=Kharmaa's Ring of Fate", "=ds=#s13#", "", "5%" };
+ { 8, 34157, "", "=q1=Head of Kael'thas", "=ds=#m3#", "", "56%" };
+ { 16, 434793, "", "=q3=Cord of Reconstruction", "=ds=#s10#, #a1#", "", "5%" };
+ { 17, 434796, "", "=q3=Robes of Summer Flame", "=ds=#s5#, #a2#", "", "5%" };
+ { 18, 434795, "", "=q3=Helm of Sanctification", "=ds=#s1#, #a4#", "", "5%" };
+ { 19, 434798, "", "=q3=Band of Celerity", "=ds=#s13#", "", "5%" };
+ { 20, 434794, "", "=q3=Axe of Shattered Dreams", "=ds=#h2#, #w1#", "", "5%" };
+ { 21, 434797, "", "=q3=Sun-infused Focus Staff", "=ds=#h2#, #w9#", "", "14%" };
+ { 22, 35504, "", "=q3=Phoenix Hatchling", "=ds=#e13#", "", "7%" };
+ };
+ {
+ Name = BabbleBoss["Kael'thas Sunstrider"] .. " (" .. AL["Heroic"] .. ")";
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 434610, "", "=q4=Scarlet Sin'dorei Robes", "=ds=#s5#, #a1#", "", "19%" };
+ { 3, 434613, "", "=q4=Shoulderpads of the Silvermoon Retainer", "=ds=#s3#, #a2#", "", "19%" };
+ { 4, 434614, "", "=q4=Tunic of the Ranger Lord", "=ds=#s5#, #a3#", "", "18%" };
+ { 5, 434615, "", "=q4=Netherforce Chestplate", "=ds=#s5#, #a4#", "", "19%" };
+ { 6, 434612, "", "=q4=Greaves of the Penitent Knight", "=ds=#s12#, #a4#", "", "19%" };
+ { 8, 34160, "", "=q1=The Signet Ring of Prince Kael'thas", "=ds=#m3#", "", "12%" };
+ { 16, 434609, "", "=q4=Quickening Blade of the Prince", "=ds=#h1#, #w10#", "", "20%" };
+ { 17, 434616, "", "=q4=Breeching Comet", "=ds=#h1#, #w1#", "", "19%" };
+ { 18, 434611, "", "=q4=Cudgel of Consecration", "=ds=#h3#, #w6#", "", "19%" };
+ { 19, 35513, "", "=q4=Swift White Hawkstrider", "=ds=#e12#", "", "3%" };
+ { 21, 35504, "", "=q3=Phoenix Hatchling", "=ds=#e13#", "", "7%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 35516, "", "=q3=Sun Touched Satchel", "=ds=#e1# #m15#", "", "1%" };
+ };
+};
+-------------------------------------
+--- Sunwell Isle: Sunwell Plateau ---
+-------------------------------------
+
+AtlasLoot_Data["SunwellPlateau"] = {
+ Name = AL["Sunwell Isle"] .. ": " .. BabbleZone["Sunwell Plateau"];
+ DisplayName = BabbleZone["Sunwell Plateau"];
+ Type = "BCRaid";
+ Map = "SunwellPlateau";
+ {
+ Name = BabbleBoss["Kalecgos"];
+ { 1, 34170, "", "=q4=Pantaloons of Calming Strife", "=ds=#s11#, #a1#" };
+ { 2, 34386, "", "=q4=Pantaloons of Growing Strife", "=ds=#m29#" };
+ { 3, 34169, "", "=q4=Breeches of Natural Aggression", "=ds=#s11#, #a2#" };
+ { 4, 34384, "", "=q4=Breeches of Natural Splendor", "=ds=#m29#" };
+ { 5, 34168, "", "=q4=Starstalker Legguards", "=ds=#s11#, #a3#", "", "1.#INF%" };
+ { 6, 34167, "", "=q4=Legplates of the Holy Juggernaut", "=ds=#s11#, #a4#" };
+ { 7, 34382, "", "=q4=Judicator's Legguards", "=ds=#m29#" };
+ { 8, 34166, "", "=q4=Band of Lucent Beams", "=ds=#s13#", "", "1.#INF%" };
+ { 9, 34165, "", "=q4=Fang of Kalecgos", "=ds=#h1#, #w4#" };
+ { 10, 34164, "", "=q4=Dragonscale-Encrusted Longblade", "=ds=#h1#, #w10#" };
+ { 16, 34848, "", "=q4=Bracers of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "10%" };
+ { 17, 34851, "", "=q4=Bracers of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "11%" };
+ { 18, 34852, "", "=q4=Bracers of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "12%" };
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Brutallus"];
+ { 1, 34181, "", "=q4=Leggings of Calamity", "=ds=#s11#, #a1#", "", "15%" };
+ { 2, 34180, "", "=q4=Felfury Legplates", "=ds=#s11#, #a4#", "", "13%" };
+ { 3, 34381, "", "=q4=Felstrength Legplates", "=ds=#m29#" };
+ { 4, 34178, "", "=q4=Collar of the Pit Lord", "=ds=#s2#", "", "15%" };
+ { 5, 34177, "", "=q4=Clutch of Demise", "=ds=#s2#", "", "15%" };
+ { 6, 34179, "", "=q4=Heart of the Pit", "=ds=#s15#", "", "13%" };
+ { 7, 34176, "", "=q4=Reign of Misery", "=ds=#h3#, #w6#", "", "17%" };
+ { 16, 34853, "", "=q4=Belt of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "74%" };
+ { 17, 34854, "", "=q4=Belt of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "70%" };
+ { 18, 34855, "", "=q4=Belt of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "75%" };
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Felmyst"];
+ { 1, 34352, "", "=q4=Borderland Fortress Grips", "=ds=#s9#, #a4#", "", "15%" };
+ { 2, 34188, "", "=q4=Leggings of the Immortal Night", "=ds=#s11#, #a2#", "", "14%" };
+ { 3, 34385, "", "=q4=Leggings of the Immortal Beast", "=ds=#m29#" };
+ { 4, 34186, "", "=q4=Chain Links of the Tumultuous Storm", "=ds=#s11#, #a3#", "", "15%" };
+ { 5, 34383, "", "=q4=Kilt of Spiritual Reconstruction", "=ds=#m29#" };
+ { 6, 34184, "", "=q4=Brooch of the Highborne", "=ds=#s2#", "", "16%" };
+ { 7, 34185, "", "=q4=Sword Breaker's Bulwark", "=ds=#w8#", "", "16%" };
+ { 8, 34182, "", "=q4=Grand Magister's Staff of Torrents", "=ds=#h2#, #w9#", "", "17%" };
+ { 16, 34856, "", "=q4=Boots of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "79%" };
+ { 17, 34857, "", "=q4=Boots of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "86%" };
+ { 18, 34858, "", "=q4=Boots of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "77%" };
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["The Eredar Twins"];
+ { 1, 34205, "", "=q4=Shroud of Redeemed Souls", "=ds=#s4#", "", "18%" };
+ { 2, 34190, "", "=q4=Crimson Paragon's Cover", "=ds=#s4#", "", "16%" };
+ { 3, 34210, "", "=q4=Amice of the Convoker", "=ds=#s3#, #a1#", "", "19%" };
+ { 4, 34202, "", "=q4=Shawl of Wonderment", "=ds=#s3#, #a1#", "", "23%" };
+ { 5, 34393, "", "=q4=Shoulderpads of Knowledge's Pursuit", "=ds=#m29#" };
+ { 6, 34209, "", "=q4=Spaulders of Reclamation", "=ds=#s3#, #a2#", "", "20%" };
+ { 7, 34391, "", "=q4=Spaulders of Devastation", "=ds=#m29#" };
+ { 8, 34195, "", "=q4=Shoulderpads of Vehemence", "=ds=#s3#, #a2#", "", "17%" };
+ { 9, 34392, "", "=q4=Demontooth Shoulderpads", "=ds=#m29#" };
+ { 10, 34194, "", "=q4=Mantle of the Golden Forest", "=ds=#s3#, #a3#", "", "21%" };
+ { 11, 34208, "", "=q4=Equilibrium Epaulets", "=ds=#s3#, #a3#", "", "19%" };
+ { 12, 34390, "", "=q4=Erupting Epaulets", "=ds=#m29#" };
+ { 13, 34192, "", "=q4=Pauldrons of Perseverance", "=ds=#s3#, #a4#", "", "19%" };
+ { 14, 34388, "", "=q4=Pauldrons of Berserking", "=ds=#m29#" };
+ { 16, 34193, "", "=q4=Spaulders of the Thalassian Savior", "=ds=#s3#, #a4#", "", "17%" };
+ { 17, 34389, "", "=q4=Spaulders of the Thalassian Defender", "=ds=#m29#" };
+ { 18, 35290, "", "=q4=Sin'dorei Pendant of Conquest", "=ds=#s2#", "", "33%" };
+ { 19, 35291, "", "=q4=Sin'dorei Pendant of Salvation", "=ds=#s2#", "", "32%" };
+ { 20, 35292, "", "=q4=Sin'dorei Pendant of Triumph", "=ds=#s2#", "", "32%" };
+ { 21, 34204, "", "=q4=Amulet of Unfettered Magics", "=ds=#s2#", "", "20%" };
+ { 22, 34189, "", "=q4=Band of Ruinous Delight", "=ds=#s13#", "", "18%" };
+ { 23, 34206, "", "=q4=Book of Highborne Hymns", "=ds=#s15#", "", "22%" };
+ { 24, 34197, "", "=q4=Shiv of Exsanguination", "=ds=#h1#, #w4#", "", "23%" };
+ { 25, 34199, "", "=q4=Archon's Gavel", "=ds=#h3#, #w6#", "", "17%" };
+ { 26, 34203, "", "=q4=Grip of Mannoroth", "=ds=#h4#, #w13#", "", "20%" };
+ { 27, 34198, "", "=q4=Stanchion of Primal Instinct", "=ds=#h2#, #w9#", "", "19%" };
+ { 28, 34196, "", "=q4=Golden Bow of Quel'Thalas", "=ds=#w2#", "", "18%" };
+ { 30, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["M'uru"];
+ { 1, 34232, "", "=q4=Fel Conquerer Raiments", "=ds=#s5#, #a1#", "", "13%" };
+ { 2, 34233, "", "=q4=Robes of Faltered Light", "=ds=#s5#, #a1#", "", "17%" };
+ { 3, 34399, "", "=q4=Robes of Ghostly Hatred", "=ds=#m29#" };
+ { 4, 34212, "", "=q4=Sunglow Vest", "=ds=#s5#, #a2#", "", "14%" };
+ { 5, 34398, "", "=q4=Utopian Tunic of Elune", "=ds=#m29#" };
+ { 6, 34211, "", "=q4=Harness of Carnal Instinct", "=ds=#s5#, #a2#", "", "15%" };
+ { 7, 34397, "", "=q4=Bladed Chaos Tunic", "=ds=#m29#" };
+ { 8, 34234, "", "=q4=Shadowed Gauntlets of Paroxysm", "=ds=#s9#, #a2#", "", "18%" };
+ { 9, 34408, "", "=q4=Gloves of the Forest Drifter", "=ds=#m29#" };
+ { 10, 34229, "", "=q4=Garments of Serene Shores", "=ds=#s5#, #a3#", "", "13%" };
+ { 11, 34396, "", "=q4=Garments of Crashing Shores", "=ds=#m29#" };
+ { 12, 34228, "", "=q4=Vicious Hawkstrider Hauberk", "=ds=#s5#, #a3#", "", "15%" };
+ { 13, 34215, "", "=q4=Warharness of Reckless Fury", "=ds=#s5#, #a4#", "", "16%" };
+ { 14, 34394, "", "=q4=Breastplate of Agony's Aversion", "=ds=#m29#" };
+ { 15, 34240, "", "=q4=Gauntlets of the Soothed Soul", "=ds=#s9#, #a4#", "", "15%" };
+ { 16, 34216, "", "=q4=Heroic Judicator's Chestguard", "=ds=#s5#, #a4#", "", "16%" };
+ { 17, 34395, "", "=q4=Noble Judicator's Chestguard", "=ds=#m29#" };
+ { 18, 34213, "", "=q4=Ring of Hardened Resolve", "=ds=#s13#", "", "15%" };
+ { 19, 34230, "", "=q4=Ring of Omnipotence", "=ds=#s13#", "", "16%" };
+ { 20, 35282, "", "=q4=Sin'dorei Band of Dominance", "=ds=#s13#", "", "31%" };
+ { 21, 35283, "", "=q4=Sin'dorei Band of Salvation", "=ds=#s13#", "", "31%" };
+ { 22, 35284, "", "=q4=Sin'dorei Band of Triumph", "=ds=#s13#", "", "34%" };
+ { 23, 34427, "", "=q4=Blackened Naaru Sliver", "=ds=#s14#", "", "13%" };
+ { 24, 34430, "", "=q4=Glimmering Naaru Sliver", "=ds=#s14#", "", "16%" };
+ { 25, 34429, "", "=q4=Shifting Naaru Sliver", "=ds=#s14#", "", "15%" };
+ { 26, 34428, "", "=q4=Steely Naaru Sliver", "=ds=#s14#", "", "15%" };
+ { 27, 34214, "", "=q4=Muramasa", "=ds=#h1#, #w10#", "", "16%" };
+ { 28, 34231, "", "=q4=Aegis of Angelic Fortune", "=ds=#w8#", "", "14%" };
+ { 30, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Kil'jaeden"];
+ { 1, 34241, "", "=q4=Cloak of Unforgivable Sin", "=ds=#s4#", "", "16%" };
+ { 2, 34242, "", "=q4=Tattered Cape of Antonidas", "=ds=#s4#", "", "16%" };
+ { 3, 34339, "", "=q4=Cowl of Light's Purity", "=ds=#s1#, #a1#", "", "18%" };
+ { 4, 34405, "", "=q4=Helm of Arcane Purity", "=ds=#m29#" };
+ { 5, 34340, "", "=q4=Dark Conjuror's Collar", "=ds=#s1#, #a1#", "", "20%" };
+ { 6, 34342, "", "=q4=Handguards of the Dawn", "=ds=#s9#, #a1#", "", "19%" };
+ { 7, 34406, "", "=q4=Gloves of Tyri's Power", "=ds=#m29#" };
+ { 8, 34344, "", "=q4=Handguards of the Defiled Worlds", "=ds=#s9#, #a1#", "", "22%" };
+ { 9, 34244, "", "=q4=Duplicitous Guise", "=ds=#s1#, #a2#", "", "17%" };
+ { 10, 34404, "", "=q4=Mask of the Furry Hunter", "=ds=#m29#" };
+ { 11, 34245, "", "=q4=Cover of Ursol the Wise", "=ds=#s1#, #a2#", "", "14%" };
+ { 12, 34403, "", "=q4=Cover of Ursoc the Mighty", "=ds=#m29#" };
+ { 13, 34333, "", "=q4=Coif of Alleria", "=ds=#s1#, #a3#", "", "14%" };
+ { 14, 34332, "", "=q4=Cowl of Gul'dan", "=ds=#s1#, #a3#", "", "14%" };
+ { 15, 34402, "", "=q4=Shroud of Chieftain Ner'zhul", "=ds=#m29#" };
+ { 16, 34343, "", "=q4=Thalassian Ranger Gauntlets", "=ds=#s9#, #a3#", "", "18%" };
+ { 17, 34243, "", "=q4=Helm of Burning Righteousness", "=ds=#s1#, #a4#", "", "21%" };
+ { 18, 34401, "", "=q4=Helm of Uther's Resolve", "=ds=#m29#" };
+ { 19, 34345, "", "=q4=Crown of Anasterian", "=ds=#s1#, #a4#", "", "16%" };
+ { 20, 34400, "", "=q4=Crown of Dath'Remar", "=ds=#m29#" };
+ { 21, 34341, "", "=q4=Borderland Paingrips", "=ds=#s9#, #a4#", "", "18%" };
+ { 23, 34334, "", "=q5=Thori'dal, the Stars' Fury", "=ds=#w2#", "", "6%" };
+ { 25, 34329, "", "=q4=Crux of the Apocalypse", "=ds=#h1#, #w4#", "", "16%" };
+ { 26, 34247, "", "=q4=Apolyon, the Soul-Render", "=ds=#h2#, #w10#", "", "17%" };
+ { 27, 34335, "", "=q4=Hammer of Sanctification", "=ds=#h3#, #w6#", "", "20%" };
+ { 28, 34331, "", "=q4=Hand of the Deceiver", "=ds=#h3#, #w13#", "", "17%" };
+ { 29, 34336, "", "=q4=Sunflare", "=ds=#h3#, #w4#", "", "18%" };
+ { 30, 34337, "", "=q4=Golden Staff of the Sin'dorei", "=ds=#h2#, #w9#", "", "14%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 34351, "", "=q4=Tranquil Majesty Wraps", "=ds=#s9#, #a2#", "", "1%" };
+ { 2, 34407, "", "=q4=Tranquil Moonlight Wraps", "=ds=#m29#" };
+ { 3, 34350, "", "=q4=Gauntlets of the Ancient Shadowmoon", "=ds=#s9#, #a3#", "", "2%" };
+ { 4, 34409, "", "=q4=Gauntlets of the Ancient Frostwolf", "=ds=#m29#" };
+ { 5, 35733, "", "=q4=Ring of Harmonic Beauty", "=ds=#s13#", "", "8%" };
+ { 6, 34183, "", "=q4=Shivering Felspine", "=ds=#h2#, #w7#", "", "1%" };
+ { 7, 34346, "", "=q4=Mounting Vengeance", "=ds=#h4#, #w13#", "", "2%" };
+ { 8, 34349, "", "=q4=Blade of Life's Inevitability", "=ds=#w11#", "", "2%" };
+ { 9, 34348, "", "=q4=Wand of Cleansing Light", "=ds=#w12#", "", "4%" };
+ { 10, 34347, "", "=q4=Wand of the Demonsoul", "=ds=#w12#", "", "2%" };
+ { 12, 35273, "", "=q3=Study of Advanced Smelting", "=ds=#p23# (375)", "", "3%" };
+ { 14, 34664, "", "=q3=Sunmote", "=ds=#m20#", "", "66%" };
+ { 16, 32228, "", "=q4=Empyrean Sapphire", "=ds=#e7#", "", "12%" };
+ { 17, 32231, "", "=q4=Pyrestone", "=ds=#e7#", "", "8%" };
+ { 18, 32229, "", "=q4=Lionseye", "=ds=#e7#", "", "6%" };
+ { 19, 32249, "", "=q4=Seaspray Emerald", "=ds=#e7#", "", "9%" };
+ { 20, 32230, "", "=q4=Shadowsong Amethyst", "=ds=#e7#", "", "6%" };
+ { 21, 32227, "", "=q4=Crimson Spinel", "=ds=#e7#", "", "8%" };
+ { 23, 35208, "", "=q4=Plans: Sunblessed Gauntlets", "=ds=#p2# (365)", "", "0.25%" };
+ { 24, 35210, "", "=q4=Plans: Sunblessed Breastplate", "=ds=#p2# (365)", "", "0.25%" };
+ { 25, 35209, "", "=q4=Plans: Hard Khorium Battlefists", "=ds=#p2# (365)", "", "6%" };
+ { 26, 35211, "", "=q4=Plans: Hard Khorium Battleplate", "=ds=#p2# (365)", "", "0.38%" };
+ };
+ {
+ Name = "SP Patterns/Plans";
+ { 1, 35212, "", "=q4=Pattern: Leather Gauntlets of the Sun", "=ds=#p7# (365)" };
+ { 2, 35216, "", "=q4=Pattern: Leather Chestguard of the Sun", "=ds=#p7# (365)" };
+ { 3, 35213, "", "=q4=Pattern: Fletcher's Gloves of the Phoenix", "=ds=#p7# (365)" };
+ { 4, 35217, "", "=q4=Pattern: Pattern: Embrace of the Phoenix", "=ds=#p7# (365)" };
+ { 5, 35214, "", "=q4=Pattern: Gloves of Immortal Dusk", "=ds=#p7# (365)" };
+ { 6, 35218, "", "=q4=Pattern: Carapace of Sun and Shadow", "=ds=#p7# (365)" };
+ { 7, 35215, "", "=q4=Pattern: Sun-Drenched Scale Gloves", "=ds=#p7# (365)" };
+ { 8, 35219, "", "=q4=Pattern: Sun-Drenched Scale Chestguard", "=ds=#p7# (365)" };
+ { 9, 35204, "", "=q4=Pattern: Sunfire Handwraps", "=ds=#p8# (365)" };
+ { 10, 35206, "", "=q4=Pattern: Sunfire Robe", "=ds=#p8# (365)" };
+ { 11, 35205, "", "=q4=Pattern: Hands of Eternal Light", "=ds=#p8# (365)" };
+ { 12, 35207, "", "=q4=Pattern: Robe of Eternal Light", "=ds=#p8# (365)" };
+ { 13, 35198, "", "=q4=Design: Loop of Forged Power", "=ds=#p12# (365)" };
+ { 14, 35201, "", "=q4=Design: Pendant of Sunfire", "=ds=#p12# (365)" };
+ { 15, 35199, "", "=q4=Design: Ring of Flowing Life", "=ds=#p12# (365)" };
+ { 16, 35202, "", "=q4=Design: Amulet of Flowing Life", "=ds=#p12# (365)" };
+ { 17, 35200, "", "=q4=Design: Hard Khorium Band", "=ds=#p12# (365)" };
+ { 18, 35203, "", "=q4=Design: Hard Khorium Choker", "=ds=#p12# (365)" };
+ { 19, 35186, "", "=q4=Schematic: Annihilator Holo-Gogs", "=ds=#p5# (375)" };
+ { 20, 35187, "", "=q4=Schematic: Justicebringer 3000 Specs", "=ds=#p5# (375)" };
+ { 21, 35189, "", "=q4=Schematic: Powerheal 9000 Lens", "=ds=#p5# (375)" };
+ { 22, 35190, "", "=q4=Schematic: Hyper-Magnified Moon Specs", "=ds=#p5# (375)" };
+ { 23, 35191, "", "=q4=Schematic: Wonderheal XT68 Shades", "=ds=#p5# (375)" };
+ { 24, 35192, "", "=q4=Schematic: Primal-Attuned Goggles", "=ds=#p5# (375)" };
+ { 25, 35193, "", "=q4=Schematic: Lightning Etched Specs", "=ds=#p5# (375)" };
+ { 26, 35194, "", "=q4=Schematic: Surestrike Goggles v3.0", "=ds=#p5# (375)" };
+ { 27, 35195, "", "=q4=Schematic: Mayhem Projection Goggles", "=ds=#p5# (375)" };
+ { 28, 35196, "", "=q4=Schematic: Hard Khorium Goggles", "=ds=#p5# (375)" };
+ { 29, 35197, "", "=q4=Schematic: Quad Deathblow X44 Goggles", "=ds=#p5# (375)" };
+ };
+};
+
+----------------------------------
+--- Tempest Keep: The Arcatraz ---
+----------------------------------
+
+AtlasLoot_Data["TKArc"] = {
+ Name = BabbleZone["Tempest Keep"] .. ": " .. BabbleZone["The Arcatraz"];
+ DisplayName = BabbleZone["The Arcatraz"];
+ Type = "BCDungeon";
+ Map = "TempestKeepArcatraz";
+ {
+ Name = BabbleBoss["Zereketh the Unbound"];
+ { 1, 28373, "", "=q3=Cloak of Scintillating Auras", "=ds=#s4#", "", "17.13%" };
+ { 2, 28374, "", "=q3=Mana-Sphere Shoulderguards", "=ds=#s3#, #a1#", "", "20.35%" };
+ { 3, 28384, "", "=q3=Outland Striders", "=ds=#s12#, #a3#", "", "19.52%" };
+ { 4, 28375, "", "=q3=Rubium War-Girdle", "=ds=#s10#, #a4#", "", "14.38%" };
+ { 5, 28372, "", "=q3=Idol of Feral Shadows", "=ds=#s16#, #w14#", "", "15.80%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30582, "", "=q4=Deadly Fire Opal", "=ds=#e7#", "", "0.18%" };
+ { 19, 30575, "", "=q4=Nimble Fire Opal", "=ds=#e7#", "", "0.18%" };
+ { 20, 30581, "", "=q4=Durable Fire Opal", "=ds=#e7#", "", "0.18%" };
+ };
+ {
+ Name = BabbleBoss["Wrath-Scryer Soccothrates"];
+ { 1, 28396, "", "=q3=Gloves of the Unbound", "=ds=#s9#, #a2#", "", "17.80%" };
+ { 2, 28398, "", "=q3=The Sleeper's Cord", "=ds=#s10#, #a2#", "", "16.29%" };
+ { 3, 28394, "", "=q3=Ryngo's Band of Ingenuity", "=ds=#s13#", "", "16.81%" };
+ { 4, 28393, "", "=q3=Warmaul of Infused Light", "=ds=#h2#, #w6#", "", "16.14%" };
+ { 5, 28397, "", "=q3=Emberhawk Crossbow", "=ds=#w3#", "", "17.65%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30582, "", "=q4=Deadly Fire Opal", "=ds=#e7#", "", "0.18%" };
+ { 19, 30575, "", "=q4=Nimble Fire Opal", "=ds=#e7#", "", "0.18%" };
+ { 20, 30581, "", "=q4=Durable Fire Opal", "=ds=#e7#", "", "0.18%" };
+ };
+ {
+ Name = BabbleBoss["Dalliah the Doomsayer"];
+ { 1, 24308, "", "=q4=Pattern: Whitemend Pants", "=ds=#p8# (375)", "", "0.29%" };
+ { 3, 28391, "", "=q3=Worldfire Chestguard", "=ds=#s5#, #a3#", "", "18.57%" };
+ { 4, 28390, "", "=q3=Thatia's Self-Correcting Gauntlets", "=ds=#s9#, #a4#", "", "14.80%" };
+ { 5, 28387, "", "=q3=Lamp of Peaceful Repose", "=ds=#s15#", "", "15.92%" };
+ { 6, 28392, "", "=q3=Reflex Blades", "=ds=#h3#, #w13#", "", "18.37%" };
+ { 7, 28386, "", "=q3=Nether Core's Control Rod", "#w12#", "", "15.29%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30582, "", "=q4=Deadly Fire Opal", "=ds=#e7#", "", "0.18%" };
+ { 19, 30575, "", "=q4=Nimble Fire Opal", "=ds=#e7#", "", "0.18%" };
+ { 20, 30581, "", "=q4=Durable Fire Opal", "=ds=#e7#", "", "0.18%" };
+ };
+ {
+ Name = BabbleBoss["Harbinger Skyriss"];
+ { 1, 28415, "", "=q3=Hood of Oblivion", "=ds=#s1#, #a1# (D3)", "", "12.23%" };
+ { 2, 28413, "", "=q3=Hallowed Crown", "=ds=#s1#, #a1# (D3)", "", "12.17%" };
+ { 3, 28414, "", "=q3=Helm of Assassination", "=ds=#s1#, #a2# (D3)", "", "11.25%" };
+ { 4, 28231, "", "=q3=Tidefury Chestpiece", "=ds=#s5#, #a3# (D3)", "", "14.98%" };
+ { 5, 28403, "", "=q3=Doomplate Chestguard", "=ds=#s5#, #a4# (D3)", "", "13.15%" };
+ { 6, 28205, "", "=q3=Breastplate of the Bold", "=ds=#s5#, #a4# (D3)", "", "11.19%" };
+ { 8, 28406, "", "=q3=Sigil-Laced Boots", "=ds=#s12#, #a1#", "", "12.23%" };
+ { 9, 28419, "", "=q3=Choker of Fluid Thought", "=ds=#s2#", "", "14.92%" };
+ { 10, 28407, "", "=q3=Elementium Band of the Sentry", "=ds=#s13#", "", "10.70%" };
+ { 11, 28418, "", "=q3=Shiffar's Nexus-Horn", "=ds=#s14#", "", "12.23%" };
+ { 12, 28412, "", "=q3=Lamp of Peaceful Radiance", "=ds=#s15#", "", "13.15%" };
+ { 13, 28416, "", "=q3=Hungering Spineripper", "=ds=#h1#, #w4#", "", "12.35%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30582, "", "=q4=Deadly Fire Opal", "=ds=#e7#", "", "0.18%" };
+ { 19, 30575, "", "=q4=Nimble Fire Opal", "=ds=#e7#", "", "0.18%" };
+ { 20, 30581, "", "=q4=Durable Fire Opal", "=ds=#e7#", "", "0.18%" };
+ { 22, 29241, "", "=q4=Belt of Depravity", "=ds=#s10#, #a1#", "", "8.47%" };
+ { 23, 29248, "", "=q4=Shadowstep Striders", "=ds=#s12#, #a2#", "", "0.61%" };
+ { 24, 29252, "", "=q4=Bracers of Dignity", "=ds=#s8#, #a4#", "", "3.03%" };
+ { 25, 29360, "", "=q4=Vileblade of the Betrayer", "=ds=#h1#, #w4#", "", "0.18%" };
+ { 27, 33861, "", "=q1=The Scroll of Skyriss", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Trash Mobs"], "=q5=" .. BabbleZone["The Botanica"] };
+ { 2, 24172, "", "=q4=Design: Coronet of Verdant Flame", "=ds=#p12# (370) =q1=#n92#", "", "0.27%" };
+ { 4, 0, "INV_Box_01", "=q6=" .. AL["Trash Mobs"], "=q5=" .. BabbleZone["The Mechanar"] };
+ { 5, 22920, "", "=q2=Recipe: Major Fire Protection Potion", "=ds=#p1# (360) =q1=#n93#", "", "0.30%" };
+ { 6, 21906, "", "=q2=Pattern: Arcanoweave Boots", "=ds=#p8# (360) =q1=#n93#", "", "0.57%" };
+ { 8, 0, "INV_Box_01", "=q6=" .. AL["Overcharged Manacell"], "=q5=" .. BabbleZone["The Mechanar"] };
+ { 9, 30824, "", "=q1=Overcharged Manacell", "=ds=#m3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Trash Mobs"], "=q5=" .. BabbleZone["The Arcatraz"] };
+ { 17, 23606, "", "=q3=Plans: Felsteel Leggings", "=ds=#p2# (360), =q1=#n57#", "", "3.93%" };
+ { 18, 22556, "", "=q2=Formula: Enchant 2H Weapon - Major Agility", "=ds=#p4# (360) =q1=#n89#", "", "1.68%" };
+ { 19, 29672, "", "=q2=Pattern: Flame Armor Kit", "=ds=#p7# (340) =q1=#n91#", "", "1.84%" };
+ { 20, 21905, "", "=q2=Pattern: Arcanoweave Bracers", "=ds=#p8# (350) =q1=#n90#", "", "1.21%" };
+ { 22, 0, "INV_Box_01", "=q6=" .. AL["Third Fragment Guardian"], "=q5=" .. BabbleZone["The Arcatraz"] };
+ { 23, 24488, "", "=q1=Third Key Fragment", "=ds=#m3#", "", "100%" };
+ };
+};
+
+----------------------------------
+--- Tempest Keep: The Botanica ---
+----------------------------------
+
+AtlasLoot_Data["TKBot"] = {
+ Name = BabbleZone["Tempest Keep"] .. ": " .. BabbleZone["The Botanica"];
+ DisplayName = BabbleZone["The Botanica"];
+ Type = "BCDungeon";
+ Map = "TempestKeepBotanica";
+ {
+ Name = BabbleBoss["Commander Sarannis"];
+ { 1, 28301, "", "=q3=Syrannis' Mystic Sheen", "=ds=#s4#", "", "28.54%" };
+ { 2, 28304, "", "=q3=Prismatic Mittens of Mending", "=ds=#s9#, #a1#", "", "32.46%" };
+ { 3, 28306, "", "=q3=Towering Mantle of the Hunt", "=ds=#s3#, #a3#", "", "30.68%" };
+ { 4, 28296, "", "=q3=Libram of the Lightbringer", "=ds=#s16#, #w16#", "", "34.10%" };
+ { 5, 28311, "", "=q3=Revenger", "=ds=#h1#, #w10#", "", "26.25%" };
+ { 7, 28769, "", "=q1=The Keystone", "=ds=#m3#", "", "100%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30574, "", "=q4=Brutal Tanzanite", "=ds=#e7#", "", "8.00%" };
+ { 19, 30572, "", "=q4=Imperial Tanzanite", "=ds=#e7#", "", "8.00%" };
+ { 20, 30573, "", "=q4=Mysterious Fire Opal", "=ds=#e7#", "", "8.00%" };
+ };
+ {
+ Name = BabbleBoss["High Botanist Freywinn"];
+ { 1, 28317, "", "=q3=Energis Armwraps", "=ds=#s9#, #a1#", "", "17.60%" };
+ { 2, 28318, "", "=q3=Obsidian Clodstompers", "=ds=#s12#, #a4#", "", "16.48%" };
+ { 3, 28321, "", "=q3=Enchanted Thorium Torque", "=ds=#s2#", "", "18.09%" };
+ { 4, 28315, "", "=q3=Stormreaver Warblades", "=ds=#h4#, #w13#", "", "16.75%" };
+ { 5, 28316, "", "=q3=Aegis of the Sunbird", "=ds=#w8#", "", "14.60%" };
+ { 7, 23617, "", "=q3=Plans: Earthpeace Breastplate", "=ds=#p2# (370)", "", "1.07%" };
+ { 9, 31744, "", "=q1=Botanist's Field Guide", "=ds=#m3#", "", "100%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30574, "", "=q4=Brutal Tanzanite", "=ds=#e7#", "", "8.00%" };
+ { 19, 30572, "", "=q4=Imperial Tanzanite", "=ds=#e7#", "", "8.00%" };
+ { 20, 30573, "", "=q4=Mysterious Fire Opal", "=ds=#e7#", "", "8.00%" };
+ };
+ {
+ Name = BabbleBoss["Thorngrin the Tender"];
+ { 1, 24310, "", "=q4=Pattern: Battlecast Pants", "=ds=#p8# (375)", "", "0.44%" };
+ { 3, 28324, "", "=q3=Gauntlets of Cruel Intention", "=ds=#s9#, #a4#", "", "15.56%" };
+ { 4, 28327, "", "=q3=Arcane Netherband", "=ds=#s13#", "", "17.77%" };
+ { 5, 28323, "", "=q3=Ring of Umbral Doom", "=ds=#s13#", "", "16.25%" };
+ { 6, 28322, "", "=q3=Runed Dagger of Solace", "=ds=#h3#, #w4#", "", "18.16%" };
+ { 7, 28325, "", "=q3=Dreamer's Dragonstaff", "=ds=#h2#, #w9#", "", "15.46%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30574, "", "=q4=Brutal Tanzanite", "=ds=#e7#", "", "8.00%" };
+ { 19, 30572, "", "=q4=Imperial Tanzanite", "=ds=#e7#", "", "8.00%" };
+ { 20, 30573, "", "=q4=Mysterious Fire Opal", "=ds=#e7#", "", "8.00%" };
+ };
+ {
+ Name = BabbleBoss["Laj"];
+ { 1, 27739, "", "=q3=Spaulders of the Righteous", "=ds=#s3#, #a4# (D3)", "", "18.13%" };
+ { 3, 28328, "", "=q3=Mithril-Bark Cloak", "=ds=#s4#", "", "20.88%" };
+ { 4, 28338, "", "=q3=Devil-Stitched Leggings", "=ds=#s11#, #a1#", "", "18.71%" };
+ { 5, 28340, "", "=q3=Mantle of Autumn", "=ds=#s3#, #a2#", "", "17.19%" };
+ { 6, 28339, "", "=q3=Boots of the Shifting Sands", "=ds=#s12#, #a2#", "", "19.07%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30574, "", "=q4=Brutal Tanzanite", "=ds=#e7#", "", "8.00%" };
+ { 19, 30572, "", "=q4=Imperial Tanzanite", "=ds=#e7#", "", "8.00%" };
+ { 20, 30573, "", "=q4=Mysterious Fire Opal", "=ds=#e7#", "", "8.00%" };
+ };
+ {
+ Name = BabbleBoss["Warp Splinter"];
+ { 1, 24311, "", "=q4=Pattern: Whitemend Hood", "=ds=#p8# (375)", "", "0.30%" };
+ { 3, 28371, "", "=q3=Netherfury Cape", "=ds=#s4#", "", "13.52%" };
+ { 4, 28342, "", "=q3=Warp Infused Drape", "=ds=#s5#, #a1#", "", "10.27%" };
+ { 5, 28347, "", "=q3=Warpscale Leggings", "=ds=#s11#, #a2#", "", "11.74%" };
+ { 6, 28343, "", "=q3=Jagged Bark Pendant", "=ds=#s2#", "", "12.34%" };
+ { 7, 28370, "", "=q3=Bangle of Endless Blessings", "=ds=#s14#", "", "12.38%" };
+ { 8, 28345, "", "=q3=Warp Splinter's Thorn", "=ds=#h1#, #w4#", "", "10.37%" };
+ { 9, 28367, "", "=q3=Greatsword of Forlorn Visions", "=ds=#h2#, #w10#", "", "11.64%" };
+ { 10, 28341, "", "=q3=Warpstaff of Arcanum", "=ds=#h2#, #w9#", "", "10.47%" };
+ { 12, 31085, "", "=q1=Top Shard of the Arcatraz Key", "=ds=#m3#", "", "100%" };
+ { 16, 28229, "", "=q3=Incanter's Robe", "=ds=#s5#, #a1# (D3)", "", "8.42%" };
+ { 17, 28348, "", "=q3=Moonglade Cowl", "=ds=#s1#, #a2# (D3)", "", "11.17%" };
+ { 18, 28349, "", "=q3=Tidefury Helm", "=ds=#s1#, #a3# (D3)", "", "13.85%" };
+ { 19, 28228, "", "=q3=Beast Lord Curiass", "=ds=#s5#, #a3# (D3)", "", "9.59%" };
+ { 20, 28350, "", "=q3=Warhelm of the Bold", "=ds=#s1#, #a4# (D3)", "", "8.96%" };
+ };
+ { -- only heroic
+ Name = BabbleBoss["Warp Splinter"] .. " (" .. AL["Heroic"] .. ")";
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 29258, "", "=q4=Boots of Ethereal Manipulation", "=ds=#s11#, #a1#" };
+ { 3, 29262, "", "=q4=Boots of the Endless Hunt", "=ds=#s12#, #a3#", "", "4.00%" };
+ { 4, 32072, "", "=q4=Gauntlets of Dissension", "=ds=#s9#, #a4#" };
+ { 5, 29359, "", "=q4=Feral Staff of Lashing", "=ds=#h2#, #w9#" };
+ { 6, 24311, "", "=q4=Pattern: Whitemend Hood", "=ds=#p8# (375)", "", "0.30%" };
+ { 8, 28371, "", "=q3=Netherfury Cape", "=ds=#s4#", "", "4.00%" };
+ { 9, 28342, "", "=q3=Warp Infused Drape", "=ds=#s5#, #a1#", "", "8.00%" };
+ { 10, 28347, "", "=q3=Warpscale Leggings", "=ds=#s11#, #a2#", "", "12.00%" };
+ { 11, 28343, "", "=q3=Jagged Bark Pendant", "=ds=#s2#", "", "4.00%" };
+ { 12, 28370, "", "=q3=Bangle of Endless Blessings", "=ds=#s14#", "", "28.00%" };
+ { 13, 28345, "", "=q3=Warp Splinter's Thorn", "=ds=#h1#, #w4#", "", "28.00%" };
+ { 14, 28367, "", "=q3=Greatsword of Forlorn Visions", "=ds=#h2#, #w10#", "", "8.00%" };
+ { 15, 28341, "", "=q3=Warpstaff of Arcanum", "=ds=#h2#, #w9#", "", "4.00%" };
+ { 16, 30574, "", "=q4=Brutal Tanzanite", "=ds=#e7#", "", "8.00%" };
+ { 17, 30572, "", "=q4=Imperial Tanzanite", "=ds=#e7#", "", "8.00%" };
+ { 18, 30573, "", "=q4=Mysterious Fire Opal", "=ds=#e7#", "", "8.00%" };
+ { 20, 28229, "", "=q3=Incanter's Robe", "=ds=#s5#, #a1# (D3)", "", "4.00%" };
+ { 21, 28348, "", "=q3=Moonglade Cowl", "=ds=#s1#, #a2# (D3)", "", "12.00%" };
+ { 22, 28349, "", "=q3=Tidefury Helm", "=ds=#s1#, #a3# (D3)", "", "12.00%" };
+ { 23, 28228, "", "=q3=Beast Lord Curiass", "=ds=#s5#, #a3# (D3)", "", "20.00%" };
+ { 24, 28350, "", "=q3=Warhelm of the Bold", "=ds=#s1#, #a4# (D3)", "", "16.00%" };
+ { 26, 31085, "", "=q1=Top Shard of the Arcatraz Key", "=ds=#m3#", "", "100%" };
+ { 27, 33859, "", "=q1=Warp Splinter Clipping", "=ds=#m3#", "", "100%" };
+ };
+};
+
+
+
+----------------------------------
+--- Tempest Keep: The Mechanar ---
+----------------------------------
+
+AtlasLoot_Data["TKMech"] = {
+ Name = BabbleZone["Tempest Keep"] .. ": " .. BabbleZone["The Mechanar"];
+ DisplayName = BabbleZone["The Mechanar"];
+ Type = "BCDungeon";
+ Map = "TempestKeepMechanar";
+ {
+ Name = AL["Cache of the Legion"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Cache of the Legion"], "" };
+ { 2, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 3, 28249, "", "=q3=Capacitus' Cloak of Calibration", "=ds=#s4#", "", "21.16%" };
+ { 4, 28250, "", "=q3=Vestia's Pauldrons of Inner Grace", "=ds=#s3#, #a1#", "", "17.89%" };
+ { 5, 28252, "", "=q3=Bloodfyre Robes of Annihilation", "=ds=#s5#, #a1#", "", "22.53%" };
+ { 6, 28251, "", "=q3=Boots of the Glade-Keeper", "=ds=#s12#, #a2#", "", "18.74%" };
+ { 7, 28248, "", "=q3=Totem of the Void", "=ds=#s16#, #w15#", "", "19.58%" };
+ { 16, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Gatewatcher Gyro-Kill"], "" };
+ { 17, 30436, "", "=q1=Jagged Blue Crystal", "=ds=#e9#", "", "100%" };
+ { 19, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Gatewatcher Iron-Hand"], "" };
+ { 20, 30437, "", "=q1=Jagged Red Crystal", "=ds=#e9#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Mechano-Lord Capacitus"];
+ { 1, 28256, "", "=q3=Thoriumweave Cloak", "=ds=#s4#", "", "14.81%" };
+ { 2, 28255, "", "=q3=Lunar-Claw Pauldrons", "=ds=#s3#, #a2#", "", "16.98%" };
+ { 3, 28254, "", "=q3=Warp Engineer's Prismatic Chain", "=ds=#s2#", "", "16.81%" };
+ { 4, 28257, "", "=q3=Hammer of the Penitent", "=ds=#h3#, #w6#", "", "14.36%" };
+ { 5, 28253, "", "=q3=Plasma Rat's Hyper-Scythe", "=ds=#w7#", "", "17.69%" };
+ { 7, 35582, "", "=q3=Schematic: Rocket Boots Xtreme Lite", "=ds=#p5# (355)" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30565, "", "=q4=Assassin's Fire Opal", "=ds=#e7#", "", "18.72%" };
+ { 19, 30566, "", "=q4=Defender's Tanzanite", "=ds=#e7#", "", "8.87%" };
+ { 20, 30564, "", "=q4=Shining Fire Opal", "=ds=#e7#", "", "3.45%" };
+ };
+ {
+ Name = BabbleBoss["Nethermancer Sepethrea"];
+ { 1, 28262, "", "=q3=Jade-Skull Breastplate", "=ds=#s5#, #a4#", "", "15.37%" };
+ { 2, 28259, "", "=q3=Cosmic Lifeband", "=ds=#s13#", "", "18.06%" };
+ { 3, 28260, "", "=q3=Manual of the Nethermancer", "=ds=#s15#", "", "15.61%" };
+ { 4, 28263, "", "=q3=Stellaris", "=ds=#h1#, #w1#", "", "15.58%" };
+ { 5, 28258, "", "=q3=Nethershrike", "=ds=#w11#", "", "15.88%" };
+ { 7, 22920, "", "=q2=Recipe: Major Fire Protection Potion", "=ds=#p1# (360) =q1=#n93#" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 30565, "", "=q4=Assassin's Fire Opal", "=ds=#e7#", "", "18.72%" };
+ { 19, 30566, "", "=q4=Defender's Tanzanite", "=ds=#e7#", "", "8.87%" };
+ { 20, 30564, "", "=q4=Shining Fire Opal", "=ds=#e7#", "", "3.45%" };
+ };
+ {
+ Name = BabbleBoss["Pathaleon the Calculator"];
+ { 1, 28269, "", "=q3=Baba's Cloak of Arcanistry", "=ds=#s4#", "", "11.82%" };
+ { 2, 28266, "", "=q3=Molten Earth Kilt", "=ds=#s11#, #a3#", "", "14.29%" };
+ { 3, 28265, "", "=q3=Dath'Remar's Ring of Defense", "=ds=#s13#", "", "8.87%" };
+ { 4, 28288, "", "=q3=Abacus of Violent Odds", "=ds=#s14#", "", "8.37%" };
+ { 5, 27899, "", "=q3=Mana Wrath", "=ds=#h3#, #w10#", "", "9.36%" };
+ { 6, 28267, "", "=q3=Edge of the Cosmos", "=ds=#h1#, #w10#", "", "11.82%" };
+ { 7, 28286, "", "=q3=Telescopic Sharprifle", "=ds=#w5#", "", "9.85%" };
+ { 9, 28278, "", "=q3=Incanter's Cowl", "=ds=#s1#, #a1# (D3)", "", "14.29%" };
+ { 10, 28202, "", "=q3=Moonglade Robe", "=ds=#s5#, #a2# (D3)", "", "11.33%" };
+ { 11, 28204, "", "=q3=Tunic of Assassination", "=ds=#s5#, #a2# (D3)", "", "8.87%" };
+ { 12, 28275, "", "=q3=Beast Lord Helm", "=ds=#s1#, #a3# (D3)", "", "14.78%" };
+ { 13, 28285, "", "=q3=Helm of the Righteous", "=ds=#s1#, #a4# (D3)", "", "10.34%" };
+ { 15, 21907, "", "=q2=Pattern: Arcanoweave Robe", "=ds=#p8# (370)", "", "1.11%" };
+ { 16, 0, "INV_Box_01", "#j27#", "" };
+ { 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 18, 29251, "", "=q4=Boots of the Pious", "=ds=#s12#, #a1#", "", "7.88%" };
+ { 19, 32076, "", "=q4=Handguards of the Steady", "=ds=#s9#, #a3#" };
+ { 20, 30533, "", "=q4=Vanquisher's Legplates", "=ds=#s11#, #a4#", "", "6.90%" };
+ { 21, 29362, "", "=q4=The Sun Eater", "=ds=#h1#, #w10#", "", "1.48%" };
+ { 23, 30565, "", "=q4=Assassin's Fire Opal", "=ds=#e7#", "", "18.72%" };
+ { 24, 30566, "", "=q4=Defender's Tanzanite", "=ds=#e7#", "", "8.87%" };
+ { 25, 30564, "", "=q4=Shining Fire Opal", "=ds=#e7#", "", "3.45%" };
+ { 29, 33860, "", "=q1=Pathaleon's Projector", "=ds=#m3#", "", "100%" };
+ { 30, 31086, "", "=q1=Bottom Shard of the Arcatraz Key", "=ds=#m3#", "", "100%" };
+ };
+};
+-----------------------------
+--- Tempest Keep: The Eye ---
+-----------------------------
+
+AtlasLoot_Data["TKEye"] = {
+ Name = BabbleZone["Tempest Keep"] .. ": " .. BabbleZone["The Eye"];
+ DisplayName = BabbleZone["The Eye"];
+ Type = "BCRaid";
+ Map = "TempestKeepTheEye";
+ {
+ Name = BabbleBoss["Al'ar"];
+ { 1, 29925, "", "=q4=Phoenix-Wing Cloak", "=ds=#s4#", "", "23%" };
+ { 2, 29918, "", "=q4=Mindstorm Wristbands", "=ds=#s8#, #a1#", "", "22%" };
+ { 3, 29947, "", "=q4=Gloves of the Searing Grip", "=ds=#s9#, #a2#", "", "23%" };
+ { 4, 29921, "", "=q4=Fire Crest Breastplate", "=ds=#s5#, #a3#", "", "20%" };
+ { 5, 29922, "", "=q4=Band of Al'ar", "=ds=#s13#", "", "21%" };
+ { 6, 29920, "", "=q4=Phoenix-Ring of Rebirth", "=ds=#s13#", "", "21%" };
+ { 7, 30448, "", "=q4=Talon of Al'ar", "=ds=#s14#, =q1=#m1# =ds=#c2#", "", "22%" };
+ { 8, 30447, "", "=q4=Tome of Fiery Redemption", "=ds=#s14#, =q1=#m1# =ds=#c4#", "", "21%" };
+ { 9, 29923, "", "=q4=Talisman of the Sun King", "=ds=#s15#", "", "23%" };
+ { 16, 32944, "", "=q4=Talon of the Phoenix", "=ds=#h3#, #w13#", "", "12%" };
+ { 17, 29948, "", "=q4=Claw of the Phoenix", "=ds=#h4#, #w13#", "", "10%" };
+ { 18, 29924, "", "=q4=Netherbane", "=ds=#h1#, #w1#", "", "21%" };
+ { 19, 29949, "", "=q4=Arcanite Steam-Pistol", "=ds=#w5#", "", "22%" };
+ { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 22, 1816254, "", "=q3=Forumla: Enchant Cloak - Phoenix Fire", "=ds=#p4# (375)", "", "6.75%" };
+ };
+ {
+ Name = BabbleBoss["Void Reaver"];
+ { 1, 29986, "", "=q4=Cowl of the Grand Engineer", "=ds=#s1#, #a1#", "", "13%" };
+ { 2, 29984, "", "=q4=Girdle of Zaetar", "=ds=#s10#, #a2#", "", "13%" };
+ { 3, 29985, "", "=q4=Void Reaver Greaves", "=ds=#s11#, #a3#", "", "14%" };
+ { 4, 29983, "", "=q4=Fel-Steel Warhelm", "=ds=#s1#, #a4#", "", "12%" };
+ { 5, 32515, "", "=q4=Wristguards of Determination", "=ds=#s8#, #a4#", "", "13%" };
+ { 6, 30619, "", "=q4=Fel Reaver's Piston", "=ds=#s14#", "", "13%" };
+ { 7, 30450, "", "=q4=Warp-Spring Coil", "=ds=#s14#, =q1=#m1# =ds=#c6#", "", "12%" };
+ { 16, 30249, "", "=q4=Pauldrons of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=TT=T5SHOULDER" };
+ { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["High Astromancer Solarian"];
+ { 1, 29977, "", "=q4=Star-Soul Breeches", "=ds=#s11#, #a1#", "", "19%" };
+ { 2, 29972, "", "=q4=Trousers of the Astromancer", "=ds=#s11#, #a1#", "", "19%" };
+ { 3, 29966, "", "=q4=Vambraces of Ending", "=ds=#s8#, #a2#", "", "23%" };
+ { 4, 29976, "", "=q4=Worldstorm Gauntlets", "=ds=#s9#, #a3#", "", "18%" };
+ { 5, 29951, "", "=q4=Star-Strider Boots", "=ds=#s12#, #a3#", "", "23%" };
+ { 6, 29965, "", "=q4=Girdle of the Righteous Path", "=ds=#s10#, #a4#", "", "21%" };
+ { 7, 29950, "", "=q4=Greaves of the Bloodwarder", "=ds=#s11#, #a4#", "", "19%" };
+ { 8, 32267, "", "=q4=Boots of the Resilient", "=ds=#s12#, #a4#", "", "17%" };
+ { 16, 30446, "", "=q4=Solarian's Sapphire", "=ds=#s14#, =q1=#m1# =ds=#c9#", "", "21%" };
+ { 17, 30449, "", "=q4=Void Star Talisman", "=ds=#s14#, =q1=#m1# =ds=#c8#", "", "22%" };
+ { 18, 29962, "", "=q4=Heartrazor", "=ds=#h1#, #w4#", "", "23%" };
+ { 19, 29981, "", "=q4=Ethereum Life-Staff", "=ds=#w9#", "", "21%" };
+ { 20, 29982, "", "=q4=Wand of the Forgotten Star", "=ds=#w12#", "", "18%" };
+ { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Kael'thas Sunstrider"];
+ { 1, 29992, "", "=q4=Royal Cloak of the Sunstriders", "=ds=#s4#", "", "14%" };
+ { 2, 29989, "", "=q4=Sunshower Light Cloak", "=ds=#s4#", "", "12%" };
+ { 3, 29994, "", "=q4=Thalassian Wildercloak", "=ds=#s4#", "", "14%" };
+ { 4, 29990, "", "=q4=Crown of the Sun", "=ds=#s1#, #a1#", "", "14%" };
+ { 5, 29987, "", "=q4=Gauntlets of the Sun King", "=ds=#s9#, #a1#", "", "14%" };
+ { 6, 29995, "", "=q4=Leggings of Murderous Intent", "=ds=#s11#, #a2#", "", "15%" };
+ { 7, 29991, "", "=q4=Sunhawk Leggings", "=ds=#s11#, #a3#", "", "13%" };
+ { 8, 29998, "", "=q4=Royal Gauntlets of Silvermoon", "=ds=#s9#, #a4#", "", "12%" };
+ { 9, 29997, "", "=q4=Band of the Ranger-General", "=ds=#s13#", "", "14%" };
+ { 10, 29993, "", "=q4=Twinblade of the Phoenix", "=ds=#h2#, #w10#", "", "12%" };
+ { 11, 29996, "", "=q4=Rod of the Sun King", "=ds=#h1#, #w6#", "", "15%" };
+ { 12, 29988, "", "=q4=The Nexus Key", "=ds=#h2#, #w9#", "", "14%" };
+ { 14, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 16, 30237, "", "=q4=Chestguard of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=TT=T5CHEST" };
+ { 18, 32458, "", "=q4=Ashes of Al'ar", "=ds=#e12#", "", "2%" };
+ { 19, 32405, "", "=q4=Verdant Sphere", "=ds=#m2#", "", "100%" };
+ { 20, 30018, "", "=q4=Lord Sanguinar's Claim", "=q1=#m4#: =ds=#s2#" };
+ { 21, 30017, "", "=q4=Telonicus's Pendant of Mayhem", "=q1=#m4#: =ds=#s2#" };
+ { 22, 30007, "", "=q4=The Darkener's Grasp", "=q1=#m4#: =ds=#s2#" };
+ { 23, 30015, "", "=q4=The Sun King's Talisman", "=q1=#m4#: =ds=#s2#" };
+ { 25, 29905, "", "=q1=Kael's Vial Remnant", "=ds=#m3#", "", "37%" };
+ { 26, 450001, "", "=q5=Intact Vial of Kael'thas Sunstrider", "", "", "5%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 30024, "", "=q4=Mantle of the Elven Kings", "=ds=#s3#, #a1#", "", "3%" };
+ { 2, 30020, "", "=q4=Fire-Cord of the Magus", "=ds=#s10#, #a1#", "", "2%" };
+ { 3, 30029, "", "=q4=Bark-Gloves of Ancient Wisdom", "=ds=#s9#, #a2#", "", "2%" };
+ { 4, 30026, "", "=q4=Bands of the Celestial Archer", "=ds=#s8#, #a3#", "", "2%" };
+ { 5, 30030, "", "=q4=Girdle of Fallen Stars", "=ds=#s10#, #a3#", "", "2%" };
+ { 6, 30028, "", "=q4=Seventh Ring of the Tirisfalen", "=ds=#s13#", "", "2%" };
+ { 7, 2032902, "", "=q4=Bottled Nethergron Extract", "=ds=#s14#, =q1=#m1# =ds=#c6#", "", "2%" };
+ { 9, 30324, "", "=q4=Plans: Red Havoc Boots", "=ds=#p2# (375)", "", "1%" };
+ { 10, 30322, "", "=q4=Plans: Red Belt of Battle", "=ds=#p2# (375)", "", "2%" };
+ { 11, 30323, "", "=q4=Plans: Boots of the Protector", "=ds=#p2# (375)", "", "2%" };
+ { 12, 30321, "", "=q4=Plans: Belt of the Guardian", "=ds=#p2# (375)", "", "2%" };
+ { 13, 30280, "", "=q4=Pattern: Belt of Blasting", "=ds=#p8# (375)", "", "1%" };
+ { 14, 30282, "", "=q4=Pattern: Boots of Blasting", "=ds=#p8# (375)", "", "1%" };
+ { 15, 30283, "", "=q4=Pattern: Boots of the Long Road", "=ds=#p8# (375)", "", "2%" };
+ { 16, 30281, "", "=q4=Pattern: Belt of the Long Road", "=ds=#p8# (375)", "", "1%" };
+ { 17, 30308, "", "=q4=Pattern: Hurricane Boots", "=ds=#p7# (375)", "", "1%" };
+ { 18, 30304, "", "=q4=Pattern: Monsoon Belt", "=ds=#p7# (375)", "", "1%" };
+ { 19, 30305, "", "=q4=Pattern: Boots of Natural Grace", "=ds=#p7# (375)", "", "2%" };
+ { 20, 30307, "", "=q4=Pattern: Boots of the Crimson Hawk", "=ds=#p7# (375)", "", "1%" };
+ { 21, 30306, "", "=q4=Pattern: Boots of Utter Darkness", "=ds=#p7# (375)", "", "2%" };
+ { 22, 30301, "", "=q4=Pattern: Belt of Natural Power", "=ds=#p7# (375)", "", "1%" };
+ { 23, 30303, "", "=q4=Pattern: Belt of the Black Eagle", "=ds=#p7# (375)", "", "1%" };
+ { 24, 30302, "", "=q4=Pattern: Belt of Deep Shadow", "=ds=#p7# (375)", "", "1%" };
+ { 26, 30183, "", "=q4=Nether Vortex", "=ds=#e8#", "", "75%" };
+ { 28, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%" };
+ };
+ {
+ Name = "Legendary Items for Kael'thas Fight";
+ { 1, 30312, "", "=q5=Infinity Blade", "=ds=#h1#, #w4#" };
+ { 2, 30311, "", "=q5=Warp Slicer", "=ds=#h1#, #w10#" };
+ { 3, 30317, "", "=q5=Cosmic Infuser", "=ds=#h3#, #w6#" };
+ { 4, 30316, "", "=q5=Devastation", "=ds=#h2#, #w1#" };
+ { 5, 30313, "", "=q5=Staff of Disintegration", "=ds=#h2#, #w9#" };
+ { 6, 30314, "", "=q5=Phaseshift Bulwark", "=ds=#w8#" };
+ { 7, 30318, "", "=q5=Netherstrand Longbow", "=ds=#w2#, =q1=#m1# =ds=#c2#" };
+ { 8, 30319, "", "=q5=Nether Spike", "=ds=#w17#" };
+ };
+};
+
+
+----------------
+--- Zul'Aman ---
+----------------
+
+AtlasLoot_Data["ZulAman"] = {
+ Name = BabbleZone["Zul'Aman"];
+ Type = "BCRaid";
+ Map = "ZulAman";
+ {
+ Name = BabbleBoss["Nalorakk"];
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 33203, "", "=q4=Robes of Heavenly Purpose", "=ds=#s5#, #a1#", "", "13%" };
+ { 3, 33285, "", "=q4=Fury of the Ursine", "=ds=#s8#, #a1#", "", "13%" };
+ { 4, 33211, "", "=q4=Bladeangel's Money Belt", "=ds=#s10#, #a2#", "", "14%" };
+ { 5, 33206, "", "=q4=Pauldrons of Primal Fury", "=ds=#s3#, #a3#", "", "13%" };
+ { 6, 33327, "", "=q4=Mask of Introspection", "=ds=#s1#, #a4#", "", "13%" };
+ { 7, 33191, "", "=q4=Jungle Stompers", "=ds=#s12#, #a4#", "", "13%" };
+ { 8, 33640, "", "=q4=Fury", "=ds=#h4#, #w13#", "", "14%" };
+ { 16, 33496, "", "=q4=Signet of Primal Wrath", "=ds=#s13#", "", "23%" };
+ { 17, 33498, "", "=q4=Signet of the Quiet Forest", "=ds=#s13#", "", "21%" };
+ { 18, 33971, "", "=q4=Elunite Imbued Leggings", "=ds=#s11#, #a2#", "", "10%" };
+ { 19, 33495, "", "=q4=Rage", "=ds=#h3#, #w13#", "", "12%" };
+ { 20, 33480, "", "=q4=Cord of BBCRaided Troll Hair", "=ds=#s10#, #a1#", "", "10%" };
+
+ };
+ {
+ Name = BabbleBoss["Akil'zon"];
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 33286, "", "=q4=Mojo-mender's Mask", "=ds=#s1#, #a3#", "", "13%" };
+ { 3, 33215, "", "=q4=Bloodstained Elven Battlevest", "=ds=#s5#, #a4#", "", "13%" };
+ { 4, 33216, "", "=q4=Chestguard of Hidden Purpose", "=ds=#s5#, #a4#", "", "13%" };
+ { 5, 33281, "", "=q4=Brooch of Nature's Mercy", "=ds=#s2#", "", "13%" };
+ { 6, 33293, "", "=q4=Signet of Ancient Magics", "=ds=#s13#", "", "13%" };
+ { 7, 33214, "", "=q4=Akil'zon's Talonblade", "=ds=#h1#, #w10#", "", "13%" };
+ { 8, 33283, "", "=q4=Amani Punisher", "=ds=#h3#, #w6#", "", "14%" };
+ { 16, 33591, "", "=q4=Shadowcaster's Drape", "=ds=#s4#", "", "11%" };
+ { 17, 33590, "", "=q4=Cloak of Fiends", "=ds=#s4#", "", "10%" };
+ { 18, 33481, "", "=q4=Pauldrons of Stone Resolve", "=ds=#s3#, #a4#", "", "11%" };
+ { 19, 33492, "", "=q4=Trollbane", "=ds=#h2#, #w1#", "", "11%" };
+ { 20, 33500, "", "=q4=Signet of Eternal Life", "=ds=#s13#", "", "20%" };
+ };
+ {
+ Name = BabbleBoss["Jan'alai"];
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 33357, "", "=q4=Footpads of Madness", "=ds=#s12#, #a1#", "", "13%" };
+ { 3, 33356, "", "=q4=Helm of Natural Regeneration", "=ds=#s1#, #a2#", "", "13%" };
+ { 4, 33329, "", "=q4=Shadowtooth Trollskin Cuirass", "=ds=#s5#, #a2#", "", "13%" };
+ { 5, 33328, "", "=q4=Arrow-fall Chestguard", "=ds=#s5#, #a3#", "", "13%" };
+ { 6, 33354, "", "=q4=Wub's Cursed Hexblade", "=ds=#h3#, #w4#", "", "14%" };
+ { 7, 33326, "", "=q4=Bulwark of the Amani Empire", "=ds=#w8#", "", "13%" };
+ { 8, 33332, "", "=q4=Enamelled Disc of Mojo", "=ds=#w8#", "", "12%" };
+ { 16, 33499, "", "=q4=Signet of the Last Defender", "=ds=#s13#", "", "18%" };
+ { 17, 33805, "", "=q4=Shadowhunter's Treads", "=ds=#s12#, #a3#", "", "10%" };
+ { 18, 33491, "", "=q4=Tuskbreaker", "=ds=#w5#", "", "12%" };
+ { 19, 33490, "", "=q4=Staff of Dark Mending", "=ds=#h2#, #w9#", "", "13%" };
+ { 20, 33489, "", "=q4=Mantle of Ill Intent", "=ds=#s3#, #a1#", "", "11%" };
+ };
+ {
+ Name = BabbleBoss["Halazzi"];
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 33317, "", "=q4=Robe of Departed Spirits", "=ds=#s5#, #a1#", "", "13%" };
+ { 3, 33300, "", "=q4=Shoulderpads of Dancing Blades", "=ds=#s3#, #a2#", "", "14%" };
+ { 4, 33322, "", "=q4=Shimmer-pelt Vest", "=ds=#s5#, #a2#", "", "13%" };
+ { 5, 33533, "", "=q4=Avalanche Leggings", "=ds=#s11#, #a3#", "", "13%" };
+ { 6, 33299, "", "=q4=Spaulders of the Advocate", "=ds=#s3#, #a4#", "", "13%" };
+ { 7, 33303, "", "=q4=Skullshatter Warboots", "=ds=#s12#, #a4#", "", "14%" };
+ { 8, 33297, "", "=q4=The Savage's Choker", "=ds=#s2#", "", "13%" };
+ { 16, 33483, "", "=q4=Life-step Belt", "=ds=#s10#, #a2#", "", "12%" };
+ { 17, 33493, "", "=q4=Umbral Shiv", "=ds=#h1#, #w4#", "", "12%" };
+ { 18, 33497, "", "=q4=Mana Attuned Band", "=ds=#s13#", "", "18%" };
+ { 19, 33979, "", "=q4=Sightless Head", "=ds=#h1#, #w6#", "", "" };
+ { 20, 33465, "", "=q4=Staff of Primal Fury", "=ds=#h2#, #w9#", "", "13%" };
+ };
+ {
+ Name = BabbleBoss["Hex Lord Malacrass"];
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 33592, "", "=q4=Cloak of Ancient Rituals", "=ds=#s4#", "", "13%" };
+ { 3, 33453, "", "=q4=Hood of Hexing", "=ds=#s1#, #a1#", "", "13%" };
+ { 4, 33463, "", "=q4=Hood of the Third Eye", "=ds=#s1#, #a1#", "", "13%" };
+ { 5, 33432, "", "=q4=Coif of the Jungle Stalker", "=ds=#s1#, #a3#", "", "15%" };
+ { 6, 33464, "", "=q4=Hex Lord's Voodoo Pauldrons", "=ds=#s3#, #a3#", "", "13%" };
+ { 7, 33421, "", "=q4=Battleworn Tuskguard", "=ds=#s1#, #a4#", "", "15%" };
+ { 8, 33446, "", "=q4=Girdle of Stromgarde's Hope", "=ds=#s10#, #a4#", "", "15%" };
+ { 10, 2033307, "", "=q3=Formula: Enchant Weapon - Witchdoctor", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%" };
+ { 16, 34029, "", "=q4=Tiny Voodoo Mask", "=ds=#s14#", "", "25%" };
+ { 17, 33828, "", "=q4=Tome of Diabolic Remedy", "=ds=#s14#", "", "13%" };
+ { 18, 38634, "", "=q4=Troll Dice", "=ds=#s14#", "", "11%" };
+ { 19, 33389, "", "=q4=Dagger of Bad Mojo", "=ds=#h1#, #w4#", "", "15%" };
+ { 20, 33298, "", "=q4=Prowler's Strikeblade", "=ds=#h1#, #w4#", "", "14%" };
+ { 21, 33388, "", "=q4=Heartless", "=ds=#h1#, #w10#", "", "15%" };
+ { 22, 33494, "", "=q4=Amani Divining Staff", "=ds=#h2#, #w9#", "", "11%" };
+ { 24, 1333809, "", "=q4=Amani Bear", "Time Run", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Zul'jin"];
+ { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 2, 33471, "", "=q4=Two-toed Sandals", "=ds=#s12#, #a1#", "", "15%" };
+ { 3, 33479, "", "=q4=Grimgin Faceguard", "=ds=#s1#, #a2#", "", "15%" };
+ { 4, 33469, "", "=q4=Hauberk of the Empire's Champion", "=ds=#s5#, #a3#", "", "16%" };
+ { 5, 33473, "", "=q4=Chestguard of the Warlord", "=ds=#s5#, #a4#", "", "15%" };
+ { 6, 33466, "", "=q4=Loop of Cursed Bones", "=ds=#s2#", "", "14%" };
+ { 7, 33830, "", "=q4=Ancient Aqir Artifact", "=ds=#s14#", "", "14%" };
+ { 8, 33831, "", "=q4=Berserker's Call", "=ds=#s14#", "", "14%" };
+ { 9, 33829, "", "=q4=Hex Shrunken Head", "=ds=#s14#", "", "14%" };
+ { 10, 24537, "", "=q4=Waistband of Crushed Skulls", "=ds=#s10#", "", "14%" };
+ { 12, 33307, "", "=q3=Formula: Enchant Weapon - Executioner", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%" };
+ { 16, 33467, "", "=q4=Blade of Twisted Visions", "=ds=#h3#, #w10#", "", "14%" };
+ { 17, 33478, "", "=q4=Jin'rohk, The Great Apocalypse", "=ds=#h2#, #w10#", "", "14%" };
+ { 18, 33476, "", "=q4=Cleaver of the Unforgiving", "=ds=#h1#, #w1#", "", "15%" };
+ { 19, 33468, "", "=q4=Dark Blessing", "=ds=#h3#, #w6#", "", "15%" };
+ { 20, 33474, "", "=q4=Ancient Amani Longbow", "=ds=#w2#", "", "14%" };
+ { 21, 34071, "", "=q4=Seething Hate", "=ds=#h1#, #w13#", "", "" };
+ { 23, 33102, "", "=q4=Blood of Zul'Jin", "", "", "87%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 21824, "", "=q4=The Krakmon Wand", "=ds=#w12#", "", "" };
+ { 2, 24574, "", "=q4=Massacre Cloak", "=ds=#s4#", "", "" };
+ { 3, 28354, "", "=q4=Throat Crushers", "=ds=#s9#, #a4#", "", "" };
+ { 4, 33059, "", "=q4=Seal of the Amani'shi Berserker", "=ds=#s13#", "", "" };
+ { 5, 33983, "", "=q4=Staff of Blazing Glory", "=ds=#h2#, #w9#", "", "" };
+ { 6, 39755, "", "=q4=String of Ears", "=ds=#s2#", "", "" };
+ { 16, 33865, "", "=q2=Amani Hex Stick", "=ds=#m20#", "", "40%" };
+ { 17, 33930, "", "=q2=Amani Charm of the Bloodletter", "=ds=#m26#", "", "25%" };
+ { 18, 33932, "", "=q2=Amani Charm of the Witch Doctor", "=ds=#m26#", "", "24%" };
+ { 19, 33931, "", "=q2=Amani Charm of Mighty Mojo", "=ds=#m26#", "", "25%" };
+ { 20, 33933, "", "=q2=Amani Charm of the Raging Defender", "=ds=#m26#", "", "25%" };
+ { 22, 33993, "", "=q3=Mojo", "=ds=#e13#" };
+ };
+};
+
+
+
+
+
+----------------
+--- Factions ---
+----------------
+
+----------------------------
+--- Ashtongue Deathsworn ---
+----------------------------
+
+AtlasLoot_Data["Ashtongue"] = {
+ Name = BabbleFaction["Ashtongue Deathsworn"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 32444, "", "=q1=Plans: Shadesteel Girdle", "=ds=#p2# (375)" };
+ { 2, 32442, "", "=q1=Plans: Shadesteel Bracers", "=ds=#p2# (375)" };
+ { 3, 32436, "", "=q1=Pattern: Redeemed Soul Cinch", "=ds=#p7# (375)" };
+ { 4, 32435, "", "=q1=Pattern: Redeemed Soul Legguards", "=ds=#p7# (375)" };
+ { 5, 32430, "", "=q1=Pattern: Bracers of Shackled Souls", "=ds=#p7# (375)" };
+ { 6, 32429, "", "=q1=Pattern: Boots of Shackled Souls", "=ds=#p7# (375)" };
+ { 7, 32440, "", "=q1=Pattern: Soulguard Girdle", "=ds=#p8# (375)" };
+ { 8, 32438, "", "=q1=Pattern: Soulguard Bracers", "=ds=#p8# (375)" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 32443, "", "=q1=Plans: Shadesteel Greaves", "=ds=#p2# (375)" };
+ { 2, 32441, "", "=q1=Plans: Shadesteel Sabots", "=ds=#p2# (375)" };
+ { 3, 32433, "", "=q1=Pattern: Redeemed Soul Mocassins", "=ds=#p7# (375)" };
+ { 4, 32434, "", "=q1=Pattern: Redeemed Soul Wristguards", "=ds=#p7# (375)" };
+ { 5, 32431, "", "=q1=Pattern: Greaves of Shackled Souls", "=ds=#p7# (375)" };
+ { 6, 32432, "", "=q1=Pattern: Waistguard of Shackled Souls", "=ds=#p7# (375)" };
+ { 7, 32447, "", "=q1=Pattern: Night's End", "=ds=#p8# (375)" };
+ { 8, 32439, "", "=q1=Pattern: Soulguard Leggings", "=ds=#p8# (375)" };
+ { 9, 32437, "", "=q1=Pattern: Soulguard Slippers", "=ds=#p8# (375)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 32486, "", "=q4=Ashtongue Talisman of Equilibrium", "=ds=#s14#, =q1=#m1# =ds=#c1#" };
+ { 2, 32487, "", "=q4=Ashtongue Talisman of Swiftness", "=ds=#s14#, =q1=#m1# =ds=#c2#" };
+ { 3, 32488, "", "=q4=Ashtongue Talisman of Insight", "=ds=#s14#, =q1=#m1# =ds=#c3#" };
+ { 4, 32489, "", "=q4=Ashtongue Talisman of Zeal", "=ds=#s14#, =q1=#m1# =ds=#c4#" };
+ { 5, 32490, "", "=q4=Ashtongue Talisman of Acumen", "=ds=#s14#, =q1=#m1# =ds=#c5#" };
+ { 6, 32492, "", "=q4=Ashtongue Talisman of Lethality", "=ds=#s14#, =q1=#m1# =ds=#c6#" };
+ { 7, 32491, "", "=q4=Ashtongue Talisman of Vision", "=ds=#s14#, =q1=#m1# =ds=#c7#" };
+ { 8, 32493, "", "=q4=Ashtongue Talisman of Shadows", "=ds=#s14#, =q1=#m1# =ds=#c8#" };
+ { 9, 32485, "", "=q4=Ashtongue Talisman of Valor", "=ds=#s14#, =q1=#m1# =ds=#c9#" };
+ };
+};
+
+----------------------------
+--- Cenarion Expedition ---
+----------------------------
+
+AtlasLoot_Data["CExpedition"] = {
+ Name = BabbleFaction["Cenarion Expedition"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 25737, "", "=q3=Pattern: Heavy Clefthoof Boots", "=ds=#p7# (355)" };
+ { 2, 24417, "", "=q2=Scout's Arrow", "=ds=#w17#" };
+ { 3, 23814, "", "=q1=Schematic: Green Smoke Flare", "=ds=#p5# (335)" };
+ { 4, 24429, "", "=q1=Expedition Flare", "" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 25838, "", "=q3=Warden's Hauberk", "=ds=#s5#, #a2#" };
+ { 2, 25836, "", "=q3=Preserver's Cudgel", "=ds=#h3#, #w6#" };
+ { 3, 25835, "", "=q3=Explorer's Walking Stick", "=ds=#h2#, #w9#" };
+ { 4, 25735, "", "=q3=Pattern: Heavy Clefthoof Vest", "=ds=#p7# (360)" };
+ { 5, 25736, "", "=q3=Pattern: Heavy Clefthoof Leggings", "=ds=#p7# (355)" };
+ { 6, 29194, "", "=q2=Arcanum of Nature Warding", "#s1# #e17#" };
+ { 7, 25869, "", "=q1=Recipe: Transmute Earthstorm Diamond", "=ds=#p1# (350)" };
+ { 8, 32070, "", "=q1=Recipe: Earthen Elixir", "=ds=#p1# (320)" };
+ { 9, 23618, "", "=q1=Plans: Adamantite Sharpening Stone", "=ds=#p2# (350)" };
+ { 10, 28632, "", "=q1=Plans: Adamantite Weightstone", "=ds=#p2# (350)" };
+ { 11, 25526, "", "=q1=Plans: Greater Rune of Warding", "=ds=#p2# (350)" };
+ { 12, 29720, "", "=q1=Pattern: Clefthide Leg Armor", "=ds=#p7# (335)" };
+ { 13, 30623, "", "=q1=Reservoir Key", "=ds=#e9#" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 31392, "", "=q4=Plans: Wildguard Helm", "=ds=#p2# (375)" };
+ { 2, 31391, "", "=q4=Plans: Wildguard Leggings", "=ds=#p2# (375)" };
+ { 3, 29174, "", "=q3=Watcher's Cowl", "=ds=#s1#, #a1#" };
+ { 4, 29173, "", "=q3=Strength of the Untamed", "=ds=#s2#" };
+ { 5, 31949, "", "=q3=Warden's Arrow", "=ds=#w17#" };
+ { 6, 24183, "", "=q3=Design: Nightseye Panther", "=ds=#p12# (370)" };
+ { 7, 29192, "", "=q2=Arcanum of Ferocity", "=ds=#s1# #e17#" };
+ { 8, 22918, "", "=q2=Recipe: Transmute Primal Water to Air", "=ds=#p1# (350)" };
+ { 9, 28271, "", "=q2=Formula: Enchant Gloves - Spell Strike", "=ds=#p4# (360)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 29170, "", "=q4=Windcaller's Orb", "=ds=#s15#" };
+ { 2, 29172, "", "=q4=Ashyen's Gift", "=ds=#s13#" };
+ { 3, 29171, "", "=q4=Earthwarden", "=ds=#h2#, #w6#" };
+ { 4, 33999, "", "=q4=Cenarion War Hippogryph", "=ds=#e12#" };
+ { 5, 31390, "", "=q4=Plans: Wildguard Breastplate", "=ds=#p2# (375)" };
+ { 6, 31402, "", "=q4=Design: The Natural Ward", "=ds=#p12# (375)" };
+ { 7, 33149, "", "=q3=Formula: Enchant Cloak - Stealth", "=ds=#p4# (300)" };
+ { 8, 31356, "", "=q2=Recipe: Flask of Distilled Wisdom", "=ds=#p1# (300)" };
+ { 9, 22922, "", "=q1=Recipe: Major Nature Protection Potion", "=ds=#p1# (360)" };
+ { 10, 29721, "", "=q1=Pattern: Nethercleft Leg Armor", "=ds=#p7# (365)" };
+ { 11, 31804, "", "=q1=Cenarion Expedition Tabard", "=ds=#s7#" };
+ };
+};
+
+------------------
+--- Honor Hold ---
+------------------
+
+AtlasLoot_Data["HonorHold"] = {
+ Name = BabbleFaction["Honor Hold"] .. " - " .. BabbleFaction["Alliance"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 29213, "", "=q3=Pattern: Felstalker Belt", "=ds=#p7# (350)" };
+ { 2, 23142, "", "=q2=Design: Enduring Deep Peridot", "=ds=#p12# (315)" };
+ { 3, 22531, "", "=q1=Formula: Enchant Bracer - Superior Healing", "=ds=#p4# (325)" };
+ { 4, 24007, "", "=q1=Footman's Waterskin", "=ds=#e4#" };
+ { 5, 24008, "", "=q1=Dried Mushroom Rations", "=ds=#e3#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 25826, "", "=q3=Sage's Band", "=ds=#s13#" };
+ { 2, 25825, "", "=q3=Footman's Longsword", "=ds=#h1#, #w10#" };
+ { 3, 29214, "", "=q3=Pattern: Felstalker Bracers", "=ds=#p7# (360)" };
+ { 4, 29215, "", "=q3=Pattern: Felstalker Breastplate", "=ds=#p7# (360)" };
+ { 5, 29196, "", "=q2=Arcanum of Fire Warding", "=ds=#s1# #e17#" };
+ { 6, 25870, "", "=q1=Recipe: Transmute Skyfire Diamond", "=ds=#p1# (350)" };
+ { 7, 22905, "", "=q1=Recipe: Elixir of Major Agility", "=ds=#p1# (330)" };
+ { 8, 29719, "", "=q1=Pattern: Cobrahide Leg Armor", "=ds=#p7# (335)" };
+ { 9, 30622, "", "=q1=Flamewrought Key", "=ds=#e9#" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 29169, "", "=q3=Ring of Convalescence", "=ds=#s13#" };
+ { 2, 29166, "", "=q3=Hellforged Halberd", "=ds=#w7#" };
+ { 3, 32883, "", "=q3=Felbane Slugs", "=ds=#w18#" };
+ { 4, 24180, "", "=q3=Design: Dawnstone Crab", "=ds=#p12# (370)" };
+ { 5, 29189, "", "=q2=Arcanum of Renewal", "=ds=#s1# #e17#" };
+ { 6, 22547, "", "=q1=Formula: Enchant Chest - Exceptional Stats", "=ds=#p4# (345)" };
+ { 7, 34218, "", "=q1=Pattern: Netherscale Ammo Pouch", "=ds=#p7# (350)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 29153, "", "=q4=Blade of the Archmage", "=ds=#h3#, #w10#" };
+ { 2, 29156, "", "=q4=Honor's Call", "=ds=#h1#, #w10#" };
+ { 3, 29151, "", "=q4=Veteran's Musket", "=ds=#w5#" };
+ { 4, 33150, "", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# (300)" };
+ { 5, 23619, "", "=q1=Plans: Felsteel Shield Spike", "=ds=#p2# (360)" };
+ { 6, 29722, "", "=q1=Pattern: Nethercobra Leg Armor", "=ds=#p7# (365)" };
+ { 7, 23999, "", "=q1=Honor Hold Tabard", "=ds=#s7#" };
+ };
+};
+
+-----------------------
+--- Keepers of Time ---
+-----------------------
+
+AtlasLoot_Data["KeepersofTime"] = {
+ Name = BabbleFaction["Keepers of Time"];
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 29198, "", "=q2=Arcanum of Frost Warding", "=ds=#s1# #e17#" };
+ { 2, 28272, "", "=q2=Formula: Enchant Gloves - Major Spellpower", "=ds=#p4# (360)" };
+ { 3, 22536, "", "=q1=Formula: Enchant Ring - Spellpower", "=ds=#p4# (360)" };
+ { 4, 25910, "", "=q1=Design: Enigmatic Skyfire Diamond", "=ds=#p12# (365)" };
+ { 5, 33160, "", "=q1=Design: Facet of Eternity", "=ds=#p12# (360)" };
+ { 6, 29713, "", "=q1=Pattern: Drums of Panic", "=ds=#p7# (370)" };
+ { 7, 30635, "", "=q1=Key of Time", "=ds=#e9#" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 29184, "", "=q3=Timewarden's Leggings", "=ds=#s11#, #a4#" };
+ { 2, 29185, "", "=q3=Continuum Blade", "=ds=#h3#, #w10#" };
+ { 3, 24181, "", "=q3=Design: Living Ruby Serpent", "=ds=#p12# (370)" };
+ { 4, 24174, "", "=q3=Design: Pendant of Frozen Flame", "=ds=#p12# (360)" };
+ { 5, 29186, "", "=q2=Arcanum of the Defender", "=ds=#s1# #e17#" };
+ { 6, 33158, "", "=q1=Design: Stone of Blades", "=ds=#p12# (360)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 29183, "", "=q4=Bindings of the Timewalker", "=ds=#s8#, #a1#" };
+ { 2, 29181, "", "=q4=Timelapse Shard", "=ds=#s14#" };
+ { 3, 29182, "", "=q4=Riftmaker", "=ds=#h1#, #w4#" };
+ { 4, 33152, "", "=q3=Formula: Enchant Gloves - Superior Agility", "=ds=#p4# (300)" };
+ { 5, 31355, "", "=q2=Recipe: Flask of Supreme Power", "=ds=#p1# (300)" };
+ { 6, 31777, "", "=q1=Keepers of Time Tabard", "=ds=#s7#" };
+ };
+};
+
+---------------
+--- Kurenai ---
+---------------
+
+AtlasLoot_Data["Kurenai"] = {
+ Name = BabbleFaction["Kurenai"] .. " - " .. BabbleFaction["Alliance"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 29217, "", "=q3=Pattern: Netherfury Belt", "=ds=#p7# (340)" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 29144, "", "=q3=Worg Hide Quiver", "=ds=#m14# #w19# =q1=#m1# =ds=#c2#" };
+ { 2, 29219, "", "=q3=Pattern: Netherfury Leggings", "=ds=#p7# (340)" };
+ { 3, 34175, "", "=q1=Pattern: Drums of Restoration", "=ds=#p7# (350)" };
+ { 4, 34173, "", "=q1=Pattern: Drums of Speed", "=ds=#p7# (345)" };
+ { 5, 30444, "", "=q1=Pattern: Reinforced Mining Bag", "=ds=#p7# (325)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 29148, "", "=q3=Blackened Leather Spaulders", "=ds=#s3#, #a2#" };
+ { 2, 29142, "", "=q3=Kurenai Kilt", "=ds=#s11#, #a2#" };
+ { 3, 29146, "", "=q3=Band of Elemental Spirits", "=ds=#s13#" };
+ { 4, 29218, "", "=q3=Pattern: Netherfury Boots", "=ds=#p7# (350)" };
+ { 5, 30443, "", "=q2=Recipe: Transmute Primal Fire to Earth", "=ds=#p1# (350)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 29227, "", "=q4=Reins of the Cobalt War Talbuk", "=ds=#e12#" };
+ { 2, 29229, "", "=q4=Reins of the Silver War Talbuk", "=ds=#e12#" };
+ { 3, 29230, "", "=q4=Reins of the Tan War Talbuk", "=ds=#e12#" };
+ { 4, 29231, "", "=q4=Reins of the White War Talbuk", "=ds=#e12#" };
+ { 5, 31830, "", "=q4=Reins of the Cobalt Riding Talbuk", "=ds=#e12#" };
+ { 6, 31832, "", "=q4=Reins of the Silver Riding Talbuk", "=ds=#e12#" };
+ { 7, 31834, "", "=q4=Reins of the Tan Riding Talbuk", "=ds=#e12#" };
+ { 8, 31836, "", "=q4=Reins of the White Riding Talbuk", "=ds=#e12#" };
+ { 9, 29140, "", "=q3=Cloak of the Ancient Spirits", "=ds=#s4#" };
+ { 10, 29136, "", "=q3=Far Seer's Helm", "=ds=#s1#, #a3#" };
+ { 11, 29138, "", "=q3=Arechron's Gift", "=ds=#h2#, #w6#" };
+ { 12, 31774, "", "=q1=Kurenai Tabard", "=ds=#s7#" };
+ };
+};
+
+------------------
+--- Lower City ---
+------------------
+
+AtlasLoot_Data["LowerCity"] = {
+ Name = BabbleFaction["Lower City"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 23138, "", "=q2=Design: Potent Flame Spessarite", "=ds=#p12# (325)" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 30836, "", "=q3=Leggings of the Skettis Exile", "=ds=#s11#, #a1#" };
+ { 2, 30835, "", "=q3=Salvager's Hauberk", "=ds=#s5#, #a3#" };
+ { 3, 30841, "", "=q3=Lower City Prayerbook", "=ds=#s14#" };
+ { 4, 24179, "", "=q3=Design: Felsteel Boar", "=ds=#p12# (370)" };
+ { 5, 24175, "", "=q3=Design: Pendant of Thawing", "=ds=#p12# (360)" };
+ { 6, 30846, "", "=q2=Arcanum of the Outcast", "=ds=#s1# #e17#" };
+ { 7, 22910, "", "=q2=Recipe: Elixir of Major Shadow Power", "=ds=#p1# (350)" };
+ { 8, 33157, "", "=q1=Design: Falling Star", "=ds=#p12# (360)" };
+ { 9, 34200, "", "=q1=Pattern: Quiver of a Thousand Arrows", "=ds=#p7# (350)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 29199, "", "=q2=Arcanum of Shadow Warding", "=ds=#s1# #e17#" };
+ { 2, 22538, "", "=q1=Formula: Enchant Ring - Stats", "=ds=#p4# (375)" };
+ { 3, 30833, "", "=q1=Pattern: Cloak of Arcane Evasion", "=ds=#p8# (350)" };
+ { 4, 30633, "", "=q1=Auchenai Key", "=ds=#e9#" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 30834, "", "=q4=Shapeshifter's Signet", "=ds=#s13#" };
+ { 2, 30832, "", "=q4=Gavel of Unearthed Secrets", "=ds=#h3#, #w6#" };
+ { 3, 30830, "", "=q4=Trident of the Outcast Tribe", "=ds=#w7#" };
+ { 4, 33148, "", "=q3=Formula: Enchant Cloak - Dodge", "=ds=#p4# (300)" };
+ { 5, 31357, "", "=q2=Recipe: Flask of Chromatic Resistance", "=ds=#p1# (300)" };
+ { 6, 31778, "", "=q1=Lower City Tabard", "=ds=#s7#" };
+ };
+};
+
+------------------
+--- Netherwing ---
+------------------
+
+AtlasLoot_Data["Netherwing"] = {
+ Name = BabbleFaction["Netherwing"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 32694, "", "=q2=Overseer's Badge", "=ds=#s14#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 32695, "", "=q3=Captain's Badge", "=ds=#s14#" };
+ { 2, 32863, "", "=q3=Skybreaker Whip", "=q1=#m4#: =ds=#s14#" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 32864, "", "=q3=Commander's Badge", "=ds=#s14#" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 32858, "", "=q4=Reins of the Azure Netherwing Drake", "=ds=#e12#" };
+ { 2, 32859, "", "=q4=Reins of the Cobalt Netherwing Drake", "=ds=#e12#" };
+ { 3, 32857, "", "=q4=Reins of the Onyx Netherwing Drake", "=ds=#e12#" };
+ { 4, 32860, "", "=q4=Reins of the Purple Netherwing Drake", "=ds=#e12#" };
+ { 5, 32861, "", "=q4=Reins of the Veridian Netherwing Drake", "=ds=#e12#" };
+ { 6, 32862, "", "=q4=Reins of the Violet Netherwing Drake", "=ds=#e12#" };
+ };
+};
+
+---------------
+--- Ogri'la ---
+---------------
+
+AtlasLoot_Data["Ogrila"] = {
+ Name = BabbleFaction["Ogri'la"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 32910, "", "=q1=Red Ogre Brew Special", "=q1=#m4#: =ds=#e2#" };
+ { 2, 32909, "", "=q1=Blue Ogre Brew Special", "=q1=#m4#: =ds=#e2#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 32784, "", "=q1=Red Ogre Brew", "=ds=#e2#", "2 #ogrilashard#", "" };
+ { 2, 32783, "", "=q1=Blue Ogre Brew", "=ds=#e2#", "3 #ogrilashard#", "" };
+ { 3, 32572, "", "=q3=Apexis Crystal", "=ds=#m17#" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 32653, "", "=q3=Apexis Cloak", "=ds=#s4#", "1 #ogrilacrystal# 50 #ogrilashard#", "" };
+ { 2, 32654, "", "=q3=Crystalforged Trinket", "=ds=#s14#", "1 #ogrilacrystal# 50 #ogrilashard#", "" };
+ { 3, 32652, "", "=q3=Ogri'la Aegis", "=ds=#w8#", "1 #ogrilacrystal# 50 #ogrilashard#", "" };
+ { 4, 32650, "", "=q3=Cerulean Crystal Rod", "=ds=#w12#", "1 #ogrilacrystal# 50 #ogrilashard#", "" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 32647, "", "=q4=Shard-bound Bracers", "=ds=#s8#, #a2#", "4 #ogrilacrystal# 100 #ogrilashard#", "" };
+ { 2, 32648, "", "=q4=Vortex Walking Boots", "=ds=#s12#, #a4#", "4 #ogrilacrystal# 100 #ogrilashard#", "" };
+ { 3, 32651, "", "=q4=Crystal Orb of Enlightenment", "=ds=#s15#", "4 #ogrilacrystal# 100 #ogrilashard#", "" };
+ { 4, 32645, "", "=q4=Crystalline Crossbow", "=ds=#w3#", "4 #ogrilacrystal# 100 #ogrilashard#", "" };
+ { 5, 32828, "", "=q1=Ogri'la Tabard", "=ds=#s7#", "10 #ogrilashard#", "" };
+ { 6, 32569, "", "=q1=Apexis Shard", "=ds=#m17#" };
+ };
+};
+
+-------------------------
+--- Sha'tari Skyguard ---
+-------------------------
+
+AtlasLoot_Data["Skyguard"] = {
+ Name = BabbleFaction["Sha'tari Skyguard"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 32722, "", "=q1=Enriched Terocone Juice", "=ds=#e4#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 32721, "", "=q1=Skyguard Rations", "=ds=#e3#" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 32539, "", "=q3=Skyguard's Drape", "=ds=#s4#" };
+ { 2, 32538, "", "=q3=Skywitch's Drape", "=ds=#s4#" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 32770, "", "=q4=Skyguard Silver Cross", "=ds=#s14#" };
+ { 2, 32771, "", "=q4=Airman's Ribbon of Gallantry", "=ds=#s14#" };
+ { 3, 32319, "", "=q4=Blue Riding Nether Ray", "=ds=#e12#" };
+ { 4, 32314, "", "=q4=Green Riding Nether Ray", "=ds=#e12#" };
+ { 5, 32317, "", "=q4=Red Riding Nether Ray", "=ds=#e12#" };
+ { 6, 32316, "", "=q4=Purple Riding Nether Ray", "=ds=#e12#" };
+ { 7, 32318, "", "=q4=Silver Riding Nether Ray", "=ds=#e12#" };
+ { 8, 38628, "", "=q3=Nether Ray Fry", "=ds=#e13#" };
+ { 9, 32445, "", "=q1=Skyguard Tabard", "=ds=#s7#" };
+ };
+};
+
+-------------------------------
+--- Shattered Sun Offensive ---
+-------------------------------
+
+AtlasLoot_Data["SunOffensive"] = {
+ Name = BabbleFaction["Shattered Sun Offensive"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 35244, "", "=q1=Design: Bold Crimson Spinel", "=ds=#p12# (375)" };
+ { 2, 35245, "", "=q1=Design: Bright Crimson Spinel", "=ds=#p12# (375)" };
+ { 3, 35255, "", "=q1=Design: Brilliant Lionseye", "=ds=#p12# (375)" };
+ { 4, 35246, "", "=q1=Design: Delicate Crimson Spinel", "=ds=#p12# (375)" };
+ { 5, 35256, "", "=q1=Design: Gleaming Lionseye", "=ds=#p12# (375)" };
+ { 6, 35262, "", "=q1=Design: Lustrous Empyrean Sapphire", "=ds=#p12# (375)" };
+ { 7, 35248, "", "=q1=Design: Runed Crimson Spinel", "=ds=#p12# (375)" };
+ { 8, 35260, "", "=q1=Design: Smooth Lionseye", "=ds=#p12# (375)" };
+ { 9, 35263, "", "=q1=Design: Solid Empyrean Sapphire", "=ds=#p12# (375)" };
+ { 10, 35264, "", "=q1=Design: Sparkling Empyrean Sapphire", "=ds=#p12# (375)" };
+ { 11, 35249, "", "=q1=Design: Subtle Crimson Spinel", "=ds=#p12# (375)" };
+ { 12, 35250, "", "=q1=Design: Teardrop Crimson Spinel", "=ds=#p12# (375)" };
+ { 13, 35261, "", "=q1=Design: Thick Lionseye", "=ds=#p12# (375)" };
+ { 14, 34780, "", "=q1=Naaru Ration", "=ds=#e3#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 35238, "", "=q1=Design: Balanced Shadowsong Amethyst", "=ds=#p12# (375)" };
+ { 2, 35251, "", "=q1=Design: Dazzling Seaspray Emerald", "=ds=#p12# (375)" };
+ { 3, 35266, "", "=q1=Design: Glinting Pyrestone", "=ds=#p12# (375)" };
+ { 4, 35239, "", "=q1=Design: Glowing Shadowsong Amethyst", "=ds=#p12# (375)" };
+ { 5, 35240, "", "=q1=Design: Infused Shadowsong Amethyst", "=ds=#p12# (375)" };
+ { 6, 35253, "", "=q1=Design: Jagged Seaspray Emerald", "=ds=#p12# (375)" };
+ { 7, 35268, "", "=q1=Design: Luminous Pyrestone", "=ds=#p12# (375)" };
+ { 8, 35269, "", "=q1=Design: Potent Pyrestone", "=ds=#p12# (375)" };
+ { 9, 35254, "", "=q1=Design: Radiant Seaspray Emerald", "=ds=#p12# (375)" };
+ { 10, 34872, "", "=q1=Formula: Void Shatter", "=ds=#p4# (375)" };
+ { 11, 35500, "", "=q1=Formula: Enchant Chest - Defense", "=ds=#p4# (360)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 35769, "", "=q4=Design: Forceful Seaspray Emerald", "=ds=#p12# (375)" };
+ { 2, 35768, "", "=q4=Design: Quick Lionseye", "=ds=#p12# (375)" };
+ { 3, 35767, "", "=q4=Design: Reckless Pyrestone", "=ds=#p12# (375)" };
+ { 4, 35766, "", "=q4=Design: Steady Seaspray Emerald", "=ds=#p12# (375)" };
+ { 5, 34665, "", "=q3=Bombardier's Blade", "=ds=#h1#, #w4#" };
+ { 6, 34667, "", "=q3=Archmage's Guile", "=ds=#h3#, #w10#" };
+ { 7, 34672, "", "=q3=Inuuro's Blade", "=ds=#h1#, #w10#" };
+ { 8, 34666, "", "=q3=The Sunbreaker", "=ds=#h1#, #w10#" };
+ { 9, 34671, "", "=q3=K'iru's Presage", "=ds=#h3#, #w6#" };
+ { 10, 34670, "", "=q3=Seeker's Gavel", "=ds=#h3#, #w6#" };
+ { 11, 34673, "", "=q3=Legionfoe", "=ds=#h2#, #w1#" };
+ { 12, 34674, "", "=q3=Truestrike Crossbow", "=ds=#w3#" };
+ { 13, 29193, "", "=q2=Arcanum of the Gladiator", "=ds=#s1# #e17#" };
+ { 14, 35252, "", "=q1=Design: Enduring Seaspray Emerald", "=ds=#p12# (375)" };
+ { 15, 35697, "", "=q1=Design: Figurine - Crimson Serpent", "=ds=#p12# (375)" };
+ { 16, 35695, "", "=q1=Design: Figurine - Empyrean Tortoise", "=ds=#p12# (375)" };
+ { 17, 35696, "", "=q1=Design: Figurine - Khorium Boar", "=ds=#p12# (375)" };
+ { 18, 35699, "", "=q1=Design: Figurine - Seaspray Albatross", "=ds=#p12# (375)" };
+ { 19, 35698, "", "=q1=Design: Figurine - Shadowsong Panther", "=ds=#p12# (375)" };
+ { 20, 35259, "", "=q1=Design: Rigid Lionseye", "=ds=#p12# (375)" };
+ { 21, 35241, "", "=q1=Design: Royal Shadowsong Amethyst", "=ds=#p12# (375)" };
+ { 22, 35271, "", "=q1=Design: Wicked Pyrestone", "=ds=#p12# (375)" };
+ { 23, 35505, "", "=q1=Design: Ember Skyfire Diamond", "=ds=#p12# (370)" };
+ { 24, 35502, "", "=q1=Design: Eternal Earthstorm Diamond", "=ds=#p12# (370)" };
+ { 25, 35708, "", "=q1=Design: Regal Nightseye", "=ds=#p12# (350)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 34678, "", "=q4=Shattered Sun Pendant of Acumen", "=ds=#s2#" };
+ { 2, 34679, "", "=q4=Shattered Sun Pendant of Might", "=ds=#s2#" };
+ { 3, 34680, "", "=q4=Shattered Sun Pendant of Resolve", "=ds=#s2#" };
+ { 4, 34677, "", "=q4=Shattered Sun Pendant of Restoration", "=ds=#s2#" };
+ { 5, 34676, "", "=q4=Dawnforged Defender", "=ds=#w8#" };
+ { 6, 34675, "", "=q4=Sunward Crest", "=ds=#w8#" };
+ { 7, 35325, "", "=q3=Design: Forceful Talasite", "=ds=#p12# (350)" };
+ { 8, 35322, "", "=q3=Design: Quick Dawnstone", "=ds=#p12# (350)" };
+ { 9, 35323, "", "=q3=Design: Reckless Noble Topaz", "=ds=#p12# (350)" };
+ { 10, 35221, "", "=q1=Tabard of the Shattered Sun", "=ds=#s7#" };
+ { 11, 35247, "", "=q1=Design: Flashing Crimson Spinel", "=ds=#p12# (375)" };
+ { 12, 35257, "", "=q1=Design: Great Lionseye", "=ds=#p12# (375)" };
+ { 13, 35267, "", "=q1=Design: Inscribed Pyrestone", "=ds=#p12# (375)" };
+ { 14, 35258, "", "=q1=Design: Mystic Lionseye", "=ds=#p12# (375)" };
+ { 15, 37504, "", "=q1=Design: Purified Shadowsong Amethyst", "=ds=#p12# (375)" };
+ { 16, 35242, "", "=q1=Design: Shifting Shadowsong Amethyst", "=ds=#p12# (375)" };
+ { 17, 35243, "", "=q1=Design: Sovereign Shadowsong Amethyst", "=ds=#p12# (375)" };
+ { 18, 35265, "", "=q1=Design: Stormy Empyrean Sapphire", "=ds=#p12# (375)" };
+ { 19, 35270, "", "=q1=Design: Veiled Pyrestone", "=ds=#p12# (375)" };
+ { 20, 35755, "", "=q1=Recipe: Assassin's Alchemist Stone", "=ds=#p1# (375)" };
+ { 21, 35752, "", "=q1=Recipe: Guardian's Alchemist Stone", "=ds=#p1# (375)" };
+ { 22, 35754, "", "=q1=Recipe: Redeemer's Alchemist Stone", "=ds=#p1# (375)" };
+ { 23, 35753, "", "=q1=Recipe: Sorcerer's Alchemist Stone", "=ds=#p1# (375)" };
+ };
+};
+
+-----------------
+--- Sporeggar ---
+-----------------
+
+AtlasLoot_Data["Sporeggar"] = {
+ Name = BabbleFaction["Sporeggar"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 27689, "", "=q1=Recipe: Sporeling Snack", "=ds=#p3# (310)", "2 #glowcap#", "" };
+ { 2, 30156, "", "=q1=Recipe: Clam Bar", "=ds=#p3# (300)", "1 #glowcap#", "" };
+ { 3, 25548, "", "=q1=Tallstalk Mushroom", "=ds=#e3#", "1 #glowcap#", "" };
+ { 4, 24539, "", "=q1=Marsh Lichen", "=ds=#e3#", "2 #glowcap#", "" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 25827, "", "=q3=Muck-Covered Drape", "=ds=#s4#", "25 #glowcap#", "" };
+ { 2, 25828, "", "=q3=Petrified Lichen Guard", "=ds=#w8#", "15 #glowcap#", "" };
+ { 3, 25550, "", "=q1=Redcap Toadstool", "=ds=#e3#", "1 #glowcap#", "" };
+ { 4, 24245, "", "=q1=Glowcap", "=ds=#m17#", "", "" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 29150, "", "=q3=Hardened Stone Shard", "=ds=#h1#, #w4#", "45 #glowcap#", "" };
+ { 2, 29149, "", "=q3=Sporeling's Firestick", "=ds=#w12#", "20 #glowcap#", "" };
+ { 3, 22916, "", "=q2=Recipe: Transmute Primal Earth to Water", "=ds=#p1# (350)", "25 #glowcap#", "" };
+ { 4, 38229, "", "=q1=Pattern: Mycah's Botanical Bag", "=ds=#p8# (375)", "25 #glowcap#", "" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 34478, "", "=q3=Tiny Sporebat", "=ds=#e13#", "30 #glowcap#", "" };
+ { 2, 22906, "", "=q2=Recipe: Shrouding Potion", "=ds=#p1# (335)", "30 #glowcap#", "" };
+ { 3, 31775, "", "=q1=Sporeggar Tabard", "=ds=#s7#", "10 #glowcap#", "" };
+ };
+};
+
+-----------------
+--- The Aldor ---
+-----------------
+
+AtlasLoot_Data["Aldor"] = {
+ Name = BabbleFaction["The Aldor"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 23149, "", "=q2=Design: Gleaming Golden Draenite", "=ds=#p12# (305)" };
+ { 2, 23601, "", "=q1=Plans: Flamebane Bracers", "=ds=#p2# (350)" };
+ { 3, 30842, "", "=q1=Pattern: Flameheart Bracers", "=ds=#p8# (350)" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 29129, "", "=q3=Anchorite's Robes", "=ds=#a1#, #s5#" };
+ { 2, 28881, "", "=q2=Inscription of Discipline", "=ds=#s3# #e17#" };
+ { 3, 28878, "", "=q2=Inscription of Faith", "=ds=#s3# #e17#" };
+ { 4, 28885, "", "=q2=Inscription of Vengeance", "=ds=#s3# #e17#" };
+ { 5, 28882, "", "=q2=Inscription of Warding", "=ds=#s3# #e17#" };
+ { 6, 23145, "", "=q2=Design: Royal Shadow Draenite", "=ds=#p12# (305)" };
+ { 7, 23603, "", "=q1=Plans: Flamebane Gloves", "=ds=#p2# (360)" };
+ { 8, 29704, "", "=q1=Pattern: Blastguard Belt", "=ds=#p7# (350)" };
+ { 9, 29693, "", "=q1=Pattern: Flamescale Belt", "=ds=#p7# (350)" };
+ { 10, 30843, "", "=q1=Pattern: Flameheart Gloves", "=ds=#p8# (360)" };
+ { 11, 24293, "", "=q1=Pattern: Silver Spellthread", "=ds=#p8# (335)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 29127, "", "=q3=Vindicator's Hauberk", "=ds=#s5#, #a4#" };
+ { 2, 29128, "", "=q3=Lightwarden's Band", "=ds=#s13#" };
+ { 3, 29130, "", "=q3=Auchenai Staff", "=ds=#h2#, #w9#" };
+ { 4, 24177, "", "=q3=Design: Pendant of Shadow's End", "=ds=#p12# (360)" };
+ { 5, 23604, "", "=q1=Plans: Flamebane Breastplate", "=ds=#p2# (365)" };
+ { 6, 29703, "", "=q1=Pattern: Blastguard Boots", "=ds=#p7# (350)" };
+ { 7, 29691, "", "=q1=Pattern: Flamescale Boots", "=ds=#p7# (350)" };
+ { 8, 25721, "", "=q1=Pattern: Vindicator's Armor Kit", "=ds=#p7# (325)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 29123, "", "=q4=Medallion of the Lightbearer", "=ds=#s2#" };
+ { 2, 29124, "", "=q4=Vindicator's Brand", "=ds=#h1#, #w10#" };
+ { 3, 28886, "", "=q3=Greater Inscription of Discipline", "=ds=#s3# #e17#" };
+ { 4, 28887, "", "=q3=Greater Inscription of Faith", "=ds=#s3# #e17#" };
+ { 5, 28888, "", "=q3=Greater Inscription of Vengeance", "=ds=#s3# #e17#" };
+ { 6, 28889, "", "=q3=Greater Inscription of Warding", "=ds=#s3# #e17#" };
+ { 7, 23602, "", "=q1=Plans: Flamebane Helm", "=ds=#p2# (355)" };
+ { 8, 29702, "", "=q1=Pattern: Blastguard Pants", "=ds=#p7# (350)" };
+ { 9, 29689, "", "=q1=Pattern: Flamescale Leggings", "=ds=#p7# (350)" };
+ { 10, 24295, "", "=q1=Pattern: Golden Spellthread", "=ds=#p8# (375)" };
+ { 11, 30844, "", "=q1=Pattern: Flameheart Vest", "=ds=#p8# (370)" };
+ { 12, 31779, "", "=q1=Aldor Tabard", "=ds=#s7#" };
+ };
+};
+
+----------------------
+--- The Consortium ---
+----------------------
+
+AtlasLoot_Data["Consortium"] = {
+ Name = BabbleFaction["The Consortium"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 25732, "", "=q3=Pattern: Fel Leather Gloves", "=ds=#p7# (340)" };
+ { 2, 28274, "", "=q2=Formula: Enchant Cloak - Spell Penetration", "=ds=#p4# (325)" };
+ { 3, 23146, "", "=q2=Design: Shifting Shadow Draenite", "=ds=#p12# (315)" };
+ { 4, 23136, "", "=q2=Design: Luminous Flame Spessarite", "=ds=#p12# (305)" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 29457, "", "=q3=Nethershard", "=ds=#h3#, #w4#" };
+ { 2, 29456, "", "=q3=Gift of the Ethereal", "=ds=#h1#, #w10#" };
+ { 3, 29118, "", "=q3=Smuggler's Ammo Pouch", "=ds=#m14# #w20# =q1=#m1# =ds=#c2#" };
+ { 4, 25733, "", "=q3=Pattern: Fel Leather Boots", "=ds=#p7# (350)" };
+ { 5, 23134, "", "=q2=Design: Delicate Blood Garnet", "=ds=#p12# (325)" };
+ { 6, 23155, "", "=q2=Design: Lustrous Azure Moonstone", "=ds=#p12# (325)" };
+ { 7, 23150, "", "=q2=Design: Thick Golden Draenite", "=ds=#p12# (315)" };
+ { 8, 22552, "", "=q1=Formula: Enchant Weapon - Major Striking", "=ds=#p4# (340)" };
+ { 9, 25908, "", "=q1=Design: Swift Skyfire Diamond", "=ds=#p12# (365)" };
+ { 10, 25902, "", "=q1=Design: Powerful Earthstorm Diamond", "=ds=#p12# (365) (#z12#)" };
+ { 11, 24314, "", "=q1=Pattern: Bag of Jewels", "=ds=#p8# (340)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 29117, "", "=q3=Stormspire Vest", "=ds=#s5#, #a1#" };
+ { 2, 29116, "", "=q3=Nomad's Leggings", "=ds=#s11#, #a2#" };
+ { 3, 29115, "", "=q3=Consortium Blaster", "=ds=#w5#" };
+ { 4, 24178, "", "=q3=Design: Pendant of the Null Rune", "=ds=#p12# (360)" };
+ { 5, 25734, "", "=q3=Pattern: Fel Leather Leggings", "=ds=#p7# (350)" };
+ { 6, 22535, "", "=q1=Formula: Enchant Ring - Striking", "=ds=#p4# (360) (#z12#)" };
+ { 7, 23874, "", "=q1=Schematic: Elemental Seaforium Charge", "=ds=#p5# (350)" };
+ { 8, 25903, "", "=q1=Design: Bracing Earthstorm Diamond", "=ds=#p12# (365) (#z12#)" };
+ { 9, 33156, "", "=q1=Design: Crimson Sun", "=ds=#p12# (360)" };
+ { 10, 33305, "", "=q1=Design: Don Julio's Heart", "=ds=#p12# (360)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 29122, "", "=q4=Nether Runner's Cowl", "=ds=#s1#, #a1#" };
+ { 2, 29119, "", "=q4=Haramad's Bargain", "=ds=#s2#" };
+ { 3, 29121, "", "=q4=Guile of Khoraazi", "=ds=#h1#, #w4#" };
+ { 4, 33622, "", "=q3=Design: Relentless Earthstorm Diamond", "=ds=#p12# (365)" };
+ { 5, 31776, "", "=q1=Consortium Tabard", "=ds=#s7#" };
+ };
+};
+
+-------------------
+--- The Mag'har ---
+-------------------
+
+AtlasLoot_Data["Maghar"] = {
+ Name = BabbleFaction["The Mag'har"] .. " - " .. BabbleFaction["Horde"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 25741, "", "=q3=Pattern: Netherfury Belt", "=ds=#p7# (340)" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 29143, "", "=q3=Clefthoof Hide Quiver", "=ds=#m14# #w19# =q1=#m1# =ds=#c2#" };
+ { 2, 25742, "", "=q3=Pattern: Netherfury Leggings", "=ds=#p7# (340)" };
+ { 3, 34174, "", "=q1=Pattern: Drums of Restoration", "=ds=#p7# (350)" };
+ { 4, 34172, "", "=q1=Pattern: Drums of Speed", "=ds=#p7# (345)" };
+ { 5, 29664, "", "=q1=Pattern: Reinforced Mining Bag", "=ds=#p7# (325)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 29147, "", "=q3=Talbuk Hide Spaulders", "=ds=#s3#, #a2#" };
+ { 2, 29141, "", "=q3=Tempest Leggings", "=ds=#s11#, #a2#" };
+ { 3, 29145, "", "=q3=Band of Ancestral Spirits", "=ds=#s13#" };
+ { 4, 25743, "", "=q3=Pattern: Netherfury Boots", "=ds=#p7# (350)" };
+ { 5, 22917, "", "=q2=Recipe: Transmute Primal Fire to Earth", "=ds=#p1# (350)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 29102, "", "=q4=Reins of the Cobalt War Talbuk", "=ds=#e12#" };
+ { 2, 29104, "", "=q4=Reins of the Silver War Talbuk", "=ds=#e12#" };
+ { 3, 29105, "", "=q4=Reins of the Tan War Talbuk", "=ds=#e12#" };
+ { 4, 29103, "", "=q4=Reins of the White War Talbuk", "=ds=#e12#" };
+ { 5, 31829, "", "=q4=Reins of the Cobalt Riding Talbuk", "=ds=#e12#" };
+ { 6, 31831, "", "=q4=Reins of the Silver Riding Talbuk", "=ds=#e12#" };
+ { 7, 31833, "", "=q4=Reins of the Tan Riding Talbuk", "=ds=#e12#" };
+ { 8, 31835, "", "=q4=Reins of the White Riding Talbuk", "=ds=#e12#" };
+ { 9, 29139, "", "=q3=Ceremonial Cover", "=ds=#s4#" };
+ { 10, 29135, "", "=q3=Earthcaller's Headdress", "=ds=#s1#, #a3#" };
+ { 11, 29137, "", "=q3=Hellscream's Will", "=ds=#h2#, #w1#" };
+ { 12, 31773, "", "=q1=Mag'har Tabard", "=ds=#s7#" };
+ };
+};
+
+------------------------------
+--- The Scale of the Sands ---
+------------------------------
+
+AtlasLoot_Data["ScaleSands"] = {
+ Name = BabbleFaction["The Scale of the Sands"];
+ {
+ Name = "Rings";
+ { 1, 29298, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r2#" };
+ { 2, 29299, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r3#" };
+ { 3, 29300, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r4#" };
+ { 4, 29301, "", "=q4=Band of the Eternal Champion", "=ds=#s13#, =q1=#r5#" };
+ { 6, 29294, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r2#" };
+ { 7, 29295, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r3#" };
+ { 8, 29296, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r4#" };
+ { 9, 29297, "", "=q4=Band of the Eternal Defender", "=ds=#s13#, =q1=#r5#" };
+ { 16, 29302, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r2#" };
+ { 17, 29303, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r3#" };
+ { 18, 29304, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r4#" };
+ { 19, 29305, "", "=q4=Band of the Eternal Sage", "=ds=#s13#, =q1=#r5#" };
+ { 21, 29307, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r2#" };
+ { 22, 29306, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r3#" };
+ { 23, 29308, "", "=q4=Band of Eternity", "=ds=#s13#, =q1=#r4#" };
+ { 24, 29309, "", "=q4=Band of the Eternal Restorer", "=ds=#s13#, =q1=#r5#" };
+ };
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 32274, "", "=q4=Design: Bold Crimson Spinel", "=ds=#p12# (375)" };
+ { 2, 32283, "", "=q4=Design: Bright Crimson Spinel", "=ds=#p12# (375)" };
+ { 3, 32277, "", "=q4=Design: Delicate Crimson Spinel", "=ds=#p12# (375)" };
+ { 4, 32282, "", "=q4=Design: Runed Crimson Spinel", "=ds=#p12# (375)" };
+ { 5, 32284, "", "=q4=Design: Subtle Crimson Spinel", "=ds=#p12# (375)" };
+ { 6, 32281, "", "=q4=Design: Teardrop Crimson Spinel", "=ds=#p12# (375)" };
+ { 7, 32288, "", "=q4=Design: Lustrous Empyrean Sapphire", "=ds=#p12# (375)" };
+ { 8, 32286, "", "=q4=Design: Solid Empyrean Sapphire", "=ds=#p12# (375)" };
+ { 9, 32287, "", "=q4=Design: Sparkling Empyrean Sapphire", "=ds=#p12# (375)" };
+ { 10, 32290, "", "=q4=Design: Brilliant Lionseye", "=ds=#p12# (375)" };
+ { 11, 32293, "", "=q4=Design: Gleaming Lionseye", "=ds=#p12# (375)" };
+ { 12, 32291, "", "=q4=Design: Smooth Lionseye", "=ds=#p12# (375)" };
+ { 13, 32294, "", "=q4=Design: Thick Lionseye", "=ds=#p12# (375)" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 35763, "", "=q4=Design: Quick Lionseye", "=ds=#p12# (375)" };
+ { 2, 32306, "", "=q4=Design: Glinting Pyrestone", "=ds=#p12# (375)" };
+ { 3, 32305, "", "=q4=Design: Luminous Pyrestone", "=ds=#p12# (375)" };
+ { 4, 32304, "", "=q4=Design: Potent Pyrestone", "=ds=#p12# (375)" };
+ { 5, 35762, "", "=q4=Design: Reckless Pyrestone", "=ds=#p12# (375)" };
+ { 6, 32299, "", "=q4=Design: Balanced Shadowsong Amethyst", "=ds=#p12# (375)" };
+ { 7, 32301, "", "=q4=Design: Glowing Shadowsong Amethyst", "=ds=#p12# (375)" };
+ { 8, 32300, "", "=q4=Design: Infused Shadowsong Amethyst", "=ds=#p12# (375)" };
+ { 9, 32311, "", "=q4=Design: Dazzling Seaspray Emerald", "=ds=#p12# (375)" };
+ { 10, 35765, "", "=q4=Design: Forceful Seaspray Emerald", "=ds=#p12# (375)" };
+ { 11, 32312, "", "=q4=Design: Jagged Seaspray Emerald", "=ds=#p12# (375)" };
+ { 12, 32310, "", "=q4=Design: Radiant Seaspray Emerald", "=ds=#p12# (375)" };
+ { 13, 35764, "", "=q4=Design: Steady Seaspray Emerald", "=ds=#p12# (375)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 31737, "", "=q4=Timeless Arrow", "=ds=#w17#" };
+ { 2, 31735, "", "=q4=Timeless Shell", "=ds=#w18#" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 32292, "", "=q4=Design: Rigid Lionseye", "=ds=#p12# (375)" };
+ { 2, 32308, "", "=q4=Design: Wicked Pyrestone", "=ds=#p12# (375)" };
+ { 3, 32309, "", "=q4=Design: Enduring Seaspray Emerald", "=ds=#p12# (375)" };
+ { 4, 32302, "", "=q4=Design: Royal Shadowsong Amethyst", "=ds=#p12# (375)" };
+ };
+};
+
+-------------------
+--- The Scryers ---
+-------------------
+
+AtlasLoot_Data["Scryer"] = {
+ Name = BabbleFaction["The Scryers"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 23133, "", "=q2=Design: Runed Blood Garnet", "=ds=#p12# (315)" };
+ { 2, 23597, "", "=q1=Plans: Enchanted Adamantite Belt", "=ds=#p2# (355)" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 28907, "", "=q2=Inscription of the Blade", "=ds=#s3# #e17#" };
+ { 2, 28908, "", "=q2=Inscription of the Knight", "=ds=#s3# #e17#" };
+ { 3, 28904, "", "=q2=Inscription of the Oracle", "=ds=#s3# #e17#" };
+ { 4, 28903, "", "=q2=Inscription of the Orb", "=ds=#s3# #e17#" };
+ { 5, 23143, "", "=q2=Design: Dazzling Deep Peridot", "=ds=#p12# (325)" };
+ { 6, 23598, "", "=q1=Plans: Enchanted Adamantite Boots", "=ds=#p2# (355)" };
+ { 7, 29701, "", "=q1=Pattern: Enchanted Clefthoof Boots", "=ds=#p7# (350)" };
+ { 8, 29682, "", "=q1=Pattern: Enchanted Felscale Gloves", "=ds=#p7# (350)" };
+ { 9, 24292, "", "=q1=Pattern: Mystic Spellthread", "=ds=#p8# (335)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 29131, "", "=q3=Retainer's Leggings", "=ds=#s11#, #a2# " };
+ { 2, 29134, "", "=q3=Gauntlets of the Chosen", "=ds=#s9#, #a4# " };
+ { 3, 29132, "", "=q3=Scryer's Bloodgem", "=ds=#s14#" };
+ { 4, 29133, "", "=q3=Seer's Cane", "=ds=#h2#, #w9#" };
+ { 5, 24176, "", "=q3=Design: Pendant of Withering", "=ds=#p12# (360)" };
+ { 6, 22908, "", "=q2=Recipe: Elixir of Major Firepower", "=ds=#p1# (345)" };
+ { 7, 23599, "", "=q1=Plans: Enchanted Adamantite Breastplate", "=ds=#p2# (360)" };
+ { 8, 29700, "", "=q1=Pattern: Enchanted Clefthoof Gloves", "=ds=#p7# (350)" };
+ { 9, 29684, "", "=q1=Pattern: Enchanted Felscale Boots", "=ds=#p7# (350)" };
+ { 10, 25722, "", "=q1=Pattern: Magister's Armor Kit", "=ds=#p7# (325)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 29126, "", "=q4=Seer's Signet", "=ds=#s13#" };
+ { 2, 29125, "", "=q4=Retainer's Blade", "=ds=#h1#, #w4#" };
+ { 3, 28910, "", "=q3=Greater Inscription of the Blade", "=ds=#s3# #e17#" };
+ { 4, 28911, "", "=q3=Greater Inscription of the Knight", "=ds=#s3# #e17#" };
+ { 5, 28912, "", "=q3=Greater Inscription of the Oracle", "=ds=#s3# #e17#" };
+ { 6, 28909, "", "=q3=Greater Inscription of the Orb", "=ds=#s3# #e17#" };
+ { 7, 23600, "", "=q1=Plans: Enchanted Adamantite Leggings", "=ds=#p2# (365)" };
+ { 8, 29698, "", "=q1=Pattern: Enchanted Clefthoof Leggings", "=ds=#p7# (350)" };
+ { 9, 29677, "", "=q1=Pattern: Enchanted Felscale Leggings", "=ds=#p7# (350)" };
+ { 10, 24294, "", "=q1=Pattern: Runic Spellthread", "=ds=#p8# (375)" };
+ { 11, 31780, "", "=q1=Scryers Tabard", "=ds=#s7#" };
+ };
+};
+
+-------------------
+--- The Sha'tar ---
+-------------------
+
+AtlasLoot_Data["Shatar"] = {
+ Name = BabbleFaction["The Sha'tar"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 25904, "", "=q1=Design: Insightful Earthstorm Diamond", "=ds=#p12# (365)" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 29180, "", "=q3=Blessed Scale Girdle", "=ds=#s10#, #a3#" };
+ { 2, 29179, "", "=q3=Xi'ri's Gift", "=ds=#s14#" };
+ { 3, 24182, "", "=q3=Design: Talasite Owl", "=ds=#p12# (370)" };
+ { 4, 29191, "", "=q2=Arcanum of Power", "=ds=#s1# #e17#" };
+ { 5, 22915, "", "=q2=Recipe: Transmute Primal Air to Fire", "=ds=#p1# (350)" };
+ { 6, 28281, "", "=q2=Formula: Enchant Weapon - Major Healing", "=ds=#p4# (350)" };
+ { 7, 13517, "", "=q1=Recipe: Alchemist's Stone", "=ds=#p1# (350)" };
+ { 8, 22537, "", "=q1=Formula: Enchant Ring - Healing Power", "=ds=#p4# (370)" };
+ { 9, 33159, "", "=q1=Design: Blood of Amber", "=ds=#p12# (360)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 30826, "", "=q3=Design: Ring of Arcane Shielding", "=ds=#p12# (360)" };
+ { 2, 29195, "", "=q2=Arcanum of Arcane Warding", "=ds=#s1# #e17#" };
+ { 3, 28273, "", "=q2=Formula: Enchant Gloves - Major Healing", "=ds=#p4# (350)" };
+ { 4, 33155, "", "=q1=Design: Kailee's Rose", "=ds=#p12# (360)" };
+ { 5, 29717, "", "=q1=Pattern: Drums of Battle", "=ds=#p7# (365)" };
+ { 6, 30634, "", "=q1=Warpforged Key", "=ds=#e9#" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 29177, "", "=q4=A'dal's Command", "=ds=#s13#" };
+ { 2, 29175, "", "=q4=Gavel of Pure Light", "=ds=#h3#, #w6#" };
+ { 3, 29176, "", "=q4=Crest of the Sha'tar", "=ds=#w8#" };
+ { 4, 33153, "", "=q3=Formula: Enchant Gloves - Threat", "=ds=#p4# (300)" };
+ { 5, 31354, "", "=q2=Recipe: Flask of the Titans", "=ds=#p1# (300)" };
+ { 6, 31781, "", "=q1=Sha'tar Tabard", "=ds=#s7#" };
+ };
+};
+
+----------------------
+--- The Violet Eye ---
+----------------------
+
+AtlasLoot_Data["VioletEye"] = {
+ Name = BabbleFaction["The Violet Eye"];
+ {
+ Name = "Rings";
+ { 1, 0, "INV_Jewelry_Ring_62", "=q6=" .. AL["Path of the Violet Assassin"], "" };
+ { 2, 29280, "", "=q3=Violet Signet", "=ds=#s13#, =q1=#r2#" };
+ { 3, 29281, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r3#" };
+ { 4, 29282, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r4#" };
+ { 5, 29283, "", "=q4=Violet Signet of the Master Assassin", "=ds=#s13#, =q1=#r5#" };
+ { 7, 0, "INV_Jewelry_Ring_62", "=q6=" .. AL["Path of the Violet Mage"], "" };
+ { 8, 29284, "", "=q3=Violet Signet", "=ds=#s13#, =q1=#r2#" };
+ { 9, 29285, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r3#" };
+ { 10, 29286, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r4#" };
+ { 11, 29287, "", "=q4=Violet Signet of the Archmage", "=ds=#s13#, =q1=#r5#" };
+ { 16, 0, "INV_Jewelry_Ring_62", "=q6=" .. AL["Path of the Violet Restorer"], "" };
+ { 17, 29288, "", "=q3=Violet Signet", "=ds=#s13#, =q1=#r2#" };
+ { 18, 29289, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r3#" };
+ { 19, 29291, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r4#" };
+ { 20, 29290, "", "=q4=Violet Signet of the Grand Restorer", "=ds=#s13#, =q1=#r5#" };
+ { 22, 0, "INV_Jewelry_Ring_62", "=q6=" .. AL["Path of the Violet Protector"], "" };
+ { 23, 29276, "", "=q3=Violet Signet", "=ds=#s13#, =q1=#r2#" };
+ { 24, 29277, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r3#" };
+ { 25, 29278, "", "=q4=Violet Signet", "=ds=#s13#, =q1=#r4#" };
+ { 26, 29279, "", "=q4=Violet Signet of the Great Protector", "=ds=#s13#, =q1=#r5#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 31113, "", "=q4=Violet Badge", "=q1=#m4#: =ds=#s14#" };
+ { 2, 31395, "", "=q4=Plans: Iceguard Helm", "=ds=#p2# (375)" };
+ { 3, 31393, "", "=q4=Plans: Iceguard Breastplate", "=ds=#p2# (375)" };
+ { 4, 31401, "", "=q4=Design: The Frozen Eye", "=ds=#p12# (375)" };
+ { 5, 29187, "", "=q2=Inscription of Endurance", "=ds=#s3# #e17#" };
+ { 6, 33209, "", "=q2=Recipe: Flask of Chromatic Wonder", "=ds=#p1# (375)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 34581, "", "=q4=Mysterious Arrow", "=ds=#w17#" };
+ { 2, 34582, "", "=q4=Mysterious Shell", "=ds=#w18#" };
+ { 3, 31394, "", "=q4=Plans: Iceguard Leggings", "=ds=#p2# (375)" };
+ { 4, 33205, "", "=q4=Pattern: Shadowprowler's Chestguard", "=ds=#p7# (365)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 33124, "", "=q3=Pattern: Cloak of Darkness", "=ds=#p7# (360)" };
+ { 2, 33165, "", "=q1=Formula: Enchant Weapon - Greater Agility", "=ds=#p4# (350)" };
+ };
+};
+
+-----------------
+--- Thrallmar ---
+-----------------
+
+AtlasLoot_Data["Thrallmar"] = {
+ Name = BabbleFaction["Thrallmar"] .. " - " .. BabbleFaction["Horde"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 25738, "", "=q3=Pattern: Felstalker Belt", "=ds=#p7# (350)" };
+ { 2, 31359, "", "=q2=Design: Enduring Deep Peridot", "=ds=#p12# (315)" };
+ { 3, 24000, "", "=q1=Formula: Enchant Bracer - Superior Healing", "=ds=#p4# (325)" };
+ { 4, 24006, "", "=q1=Grunt's Waterskin", "=ds=#e4#" };
+ { 5, 24009, "", "=q1=Dried Fruit Rations", "=ds=#e3#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 25824, "", "=q3=Farseer's Band", "=ds=#s13#" };
+ { 2, 25823, "", "=q3=Grunt's Waraxe", "=ds=#h1#, #w1#" };
+ { 3, 25739, "", "=q3=Pattern: Felstalker Bracers", "=ds=#p7# (360)" };
+ { 4, 25740, "", "=q3=Pattern: Felstalker Breastplate", "=ds=#p7# (360)" };
+ { 5, 29197, "", "=q2=Arcanum of Fire Warding", "=ds=#s1# #e17#" };
+ { 6, 29232, "", "=q1=Recipe: Transmute Skyfire Diamond", "=ds=#p1# (350)" };
+ { 7, 24001, "", "=q1=Recipe: Elixir of Major Agility", "=ds=#p1# (330)" };
+ { 8, 31361, "", "=q1=Pattern: Cobrahide Leg Armor", "=ds=#p7# (335)" };
+ { 9, 30637, "", "=q1=Flamewrought Key", "=ds=#e9#" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 29168, "", "=q3=Ancestral Band", "=ds=#s13#" };
+ { 2, 29167, "", "=q3=Blackened Spear", "=ds=#w7#" };
+ { 3, 32882, "", "=q3=Hellfire Shot", "=ds=#w18#" };
+ { 4, 31358, "", "=q3=Design: Dawnstone Crab", "=ds=#p12# (370)" };
+ { 5, 29190, "", "=q2=Arcanum of Renewal", "=ds=#s1# #e17#" };
+ { 6, 24003, "", "=q1=Formula: Enchant Chest - Exceptional Stats", "=ds=#p4# (345)" };
+ { 7, 34201, "", "=q1=Pattern: Netherscale Ammo Pouch", "=ds=#p7# (350)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 29155, "", "=q4=Stormcaller", "=ds=#h3#, #w10#" };
+ { 2, 29165, "", "=q4=Warbringer", "=ds=#h1#, #w1#" };
+ { 3, 29152, "", "=q4=Marksman's Bow", "=ds=#w2#" };
+ { 4, 33151, "", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# (300)" };
+ { 5, 24002, "", "=q1=Plans: Felsteel Shield Spike", "=ds=#p2# (360)" };
+ { 6, 31362, "", "=q1=Pattern: Nethercobra Leg Armor", "=ds=#p7# (365)" };
+ { 7, 24004, "", "=q1=Thrallmar Tabard", "=ds=#s7#" };
+ };
+};
+
+--------------------
+--- Tranquillien ---
+--------------------
+
+AtlasLoot_Data["Tranquillien"] = {
+ Name = BabbleFaction["Tranquillien"] .. " - " .. BabbleFaction["Horde"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 22991, "", "=q2=Apprentice Boots", "=ds=#s12#, #a1# " };
+ { 2, 22992, "", "=q2=Bogwalker Boots", "=ds=#s12#, #a2# " };
+ { 3, 22993, "", "=q2=Volunteer's Greaves", "=ds=#s12#, #a3# " };
+ { 4, 28164, "", "=q2=Tranquillien Flamberge", "=ds=#h2#, #w10#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 28155, "", "=q2=Apothecary's Waistband", "=ds=#s10#, #a1# " };
+ { 2, 28158, "", "=q2=Batskin Belt", "=ds=#s10#, #a2# " };
+ { 3, 28162, "", "=q2=Tranquillien Defender's Girdle", "=ds=#s10#, #a3# " };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 22986, "", "=q2=Apothecary's Robe", "=ds=#s5#, #a1# " };
+ { 2, 22987, "", "=q2=Deathstalker's Vest", "=ds=#s5#, #a2# " };
+ { 3, 22985, "", "=q2=Suncrown Hauberk", "=ds=#s5#, #a3# " };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 22990, "", "=q3=Tranquillien Champion's Cloak", "=ds=#s4#" };
+ };
+};
+
+------------
+--- Misc ---
+------------
+
+AtlasLoot_Data["ShattrathFlasks"] = {
+ Name = "Shattrath Flasks";
+ {
+ Name = "Shattrath Flasks";
+ { 1, 32898, "", "=q1=Shattrath Flask of Fortification", "=ds=#e2#" };
+ { 2, 32899, "", "=q1=Shattrath Flask of Mighty", "=ds=#e2#" };
+ { 3, 32901, "", "=q1=Shattrath Flask of Relentless", "=ds=#e2#" };
+ { 4, 32900, "", "=q1=Shattrath Flask of Supreme Power", "=ds=#e2#" };
+ };
+};
+
+-----------
+--- PvP ---
+-----------
+
+---------------------------------------------------------------
+--- World PvP - Hellfire Peninsula: Hellfire Fortifications ---
+---------------------------------------------------------------
+
+AtlasLoot_Data["PVPHellfire"] = {
+ Name = AL["Hellfire Fortifications"];
+ {
+ Name = AL["Hellfire Fortifications"];
+ { 1, 27833, "", "=q3=Band of the Victor", "=ds=15 #markthrallmarhhold#" };
+ { 2, 27786, "", "=q3=Barbed Deep Peridot", "=ds=10 #markthrallmarhhold#" };
+ { 3, 28360, "", "=q3=Mighty Blood Garnet", "=ds=10 #markthrallmarhhold#" };
+ { 5, 0, "INV_BannerPVP_02", "=q6=#m7#", "" };
+ { 6, 24520, "", "=q1=Honor Hold Favor", "=ds=5 #markhhold#" };
+ { 7, 24579, "", "=q1=Mark of Honor Hold", "=ds=#m18#" };
+ { 16, 27830, "", "=q3=Circlet of the Victor", "=ds=15 #markthrallmarhhold#" };
+ { 17, 27785, "", "=q3=Notched Deep Peridot", "=ds=10 #markthrallmarhhold#" };
+ { 18, 27777, "", "=q3=Stark Blood Garnet", "=ds=10 #markthrallmarhhold#" };
+ { 20, 0, "INV_BannerPVP_01", "=q6=#m6#", "" };
+ { 21, 24522, "", "=q1=Thrallmar Favor", "=ds=5 #markthrallmar#" };
+ { 22, 24581, "", "=q1=Mark of Thrallmar", "=ds=#m19#" };
+ };
+};
+
+AtlasLoot_Data["PVPHalaa"] = {
+ Name = BabbleZone["Nagrand"] .. ": " .. AL["Halaa"];
+ {
+ Name = "Page 1";
+ { 1, 28915, "", "=q4=Reins of the Dark Riding Talbuk", "=ds=#e12#", "70 #halaabattle# 15 #halaaresearch#", "" };
+ { 2, 27679, "", "=q4=Sublime Mystic Dawnstone", "=ds=#e7#", "100 #halaabattle#", "" };
+ { 3, 27649, "", "=q3=Hierophant's Leggings", "=ds=#a1# #s11#", "40 #halaabattle# 2 #halaaresearch#", "" };
+ { 4, 27648, "", "=q3=Dreamstalker Leggings", "=ds=#a2# #s11#", "40 #halaabattle# 2 #halaaresearch#", "" };
+ { 5, 27650, "", "=q3=Shadowstalker's Leggings", "=ds=#a2# #s11#", "40 #halaabattle# 2 #halaaresearch#", "" };
+ { 6, 27647, "", "=q3=Marksman's Legguards", "=ds=#a3# #s11#", "40 #halaabattle# 2 #halaaresearch#", "" };
+ { 7, 27652, "", "=q3=Stormbreaker's Leggings", "=ds=#a3# #s11#", "40 #halaabattle# 2 #halaaresearch#", "" };
+ { 8, 27654, "", "=q3=Avenger's Legguards", "=ds=#a4# #s11#", "40 #halaabattle# 2 #halaaresearch#", "" };
+ { 9, 27653, "", "=q3=Slayer's Legguards", "=ds=#a4# #s11#", "40 #halaabattle# 2 #halaaresearch#", "" };
+ { 11, 24208, "", "=q3=Design: Mystic Dawnstone", "=ds=#p12# (350)" };
+ { 14, 26045, "", "=q2=Halaa Battle Token", "=ds=#m17#" };
+ { 16, 29228, "", "=q4=Reins of the Dark War Talbuk", "=ds=#e12#", "100 #halaabattle# 20 #halaaresearch#", "" };
+ { 17, 27680, "", "=q3=Halaani Bag", "=ds=#m14# #e1#", "8 #halaaresearch#", "" };
+ { 18, 27638, "", "=q3=Hierophant's Sash", "=ds=#a1# #s10#", "20 #halaabattle# 1 #halaaresearch#", "" };
+ { 19, 27645, "", "=q3=Dreamstalker Sash", "=ds=#a2# #s10#", "20 #halaabattle# 1 #halaaresearch#", "" };
+ { 20, 27637, "", "=q3=Shadowstalker's Sash", "=ds=#a2# #s10#", "20 #halaabattle# 1 #halaaresearch#", "" };
+ { 21, 27646, "", "=q3=Marksman's Belt", "=ds=#a3# #s10#", "20 #halaabattle# 1 #halaaresearch#", "" };
+ { 22, 27643, "", "=q3=Stormbreaker's Girdle", "=ds=#a3# #s10#", "20 #halaabattle# 1 #halaaresearch#", "" };
+ { 23, 27644, "", "=q3=Avenger's Waistguard", "=ds=#a4# #s10#", "20 #halaabattle# 1 #halaaresearch#", "" };
+ { 24, 27639, "", "=q3=Slayer's Waistguard", "=ds=#a4# #s10#", "20 #halaabattle# 1 #halaaresearch#", "" };
+ { 26, 33783, "", "=q3=Design: Steady Talasite", "=ds=#p12# (350)", "4 #halaaresearch#", "" };
+ { 27, 32071, "", "=q1=Recipe: Elixir of Ironskin", "=ds=#p1# (330)", "2 #halaaresearch#", "" };
+ { 29, 26044, "", "=q2=Halaa Research Token", "=ds=#m17#" };
+ };
+ {
+ Name = "Page 2";
+ { 1, 30611, "", "=q3=Halaani Razorshaft", "=ds=#w17#" };
+ { 2, 30615, "", "=q1=Halaani Whiskey", "=ds=#e4#" };
+ { 4, 0, "INV_BannerPVP_02", "=q6=#m7#", "" };
+ { 5, 30598, "", "=q3=Don Amancio's Heart", "=ds=#e7#" };
+ { 6, 30597, "", "=q2=Halaani Claymore", "=ds=#h2#, #w10#" };
+ { 7, 30599, "", "=q2=Avenging Blades", "=ds=#w11#" };
+ { 16, 30612, "", "=q3=Halaani Grimshot", "=ds=#w18#" };
+ { 19, 0, "INV_BannerPVP_01", "=q6=#m6#", "" };
+ { 20, 30571, "", "=q3=Don Rodrigo's Heart", "=ds=#e7#" };
+ { 21, 30570, "", "=q2=Arkadian Claymore", "=ds=#h2#, #w10#" };
+ { 22, 30568, "", "=q2=The Sharp Cookie", "=ds=#w11#" };
+ };
+};
+
+AtlasLoot_Data["PVPSpiritTowers"] = {
+ Name = AL["Spirit Towers"];
+ {
+ Name = BabbleZone["Terokkar Forest"] .. ": " .. AL["Spirit Towers"];
+ { 1, 28553, "", "=q4=Band of the Exorcist", "=ds=#s13#", "50 #spiritshard#", "" };
+ { 2, 28557, "", "=q3=Swift Starfire Diamond", "=ds=#e7#", "8 #spiritshard#", "" };
+ { 3, 28759, "", "=q3=Exorcist's Dreadweave Hood", "=ds=#a1# #s1#", "18 #spiritshard#", "" };
+ { 4, 28574, "", "=q3=Exorcist's Dragonhide Helm", "=ds=#a2# #s1#", "18 #spiritshard#", "" };
+ { 5, 28575, "", "=q3=Exorcist's Wyrmhide Helm", "=ds=#a2# #s1#", "18 #spiritshard#", "" };
+ { 6, 28577, "", "=q3=Exorcist's Linked Helm", "=ds=#a3# #s1#", "18 #spiritshard#", "" };
+ { 7, 28560, "", "=q3=Exorcist's Lamellar Helm", "=ds=#a4# #s1#", "18 #spiritshard#", "" };
+ { 8, 28761, "", "=q3=Exorcist's Scaled Helm", "=ds=#a4# #s1#", "18 #spiritshard#", "" };
+ { 10, 32947, "", "=q1=Auchenai Healing Potion", "=ds=#e2#", "2 #spiritshard#", "" };
+ { 12, 28558, "", "=q1=Spirit Shard", "=ds=#m17#" };
+ { 16, 28555, "", "=q4=Seal of the Exorcist", "=ds=#s13#", "50 #spiritshard#", "" };
+ { 17, 28556, "", "=q3=Swift Windfire Diamond", "=ds=#e7#", "8 #spiritshard#", "" };
+ { 18, 28760, "", "=q3=Exorcist's Silk Hood", "=ds=#a1# #s1#", "18 #spiritshard#", "" };
+ { 19, 28561, "", "=q3=Exorcist's Leather Helm", "=ds=#a2# #s1#", "18 #spiritshard#", "" };
+ { 20, 28576, "", "=q3=Exorcist's Chain Helm", "=ds=#a3# #s1#", "18 #spiritshard#", "" };
+ { 21, 28758, "", "=q3=Exorcist's Mail Helm", "=ds=#a3# #s1#", "18 #spiritshard#", "" };
+ { 22, 28559, "", "=q3=Exorcist's Plate Helm", "=ds=#a4# #s1#", "18 #spiritshard#", "" };
+ { 25, 32948, "", "=q1=Auchenai Mana Potion", "=ds=#e2#", "2 #spiritshard#", "" };
+ };
+};
+
+AtlasLoot_Data["PVPTwinSpireRuins"] = {
+ Name = AL["Twin Spire Ruins"];
+ {
+ Name = BabbleZone["Zangarmarsh"] .. ": " .. AL["Twin Spire Ruins"];
+ { 1, 27990, "", "=q3=Idol of Savagery", "=ds=#w14#", "15 #markthrallmarhhold#", "" };
+ { 2, 27984, "", "=q3=Totem of Impact", "=ds=#w15#", "15 #markthrallmarhhold#", "" };
+ { 3, 27922, "", "=q3=Mark of Defiance", "=ds=#s14#", "30 #markthrallmarhhold#", "" };
+ { 4, 27929, "", "=q3=Terminal Edge", "=ds=#w11#", "15 #markthrallmarhhold#", "" };
+ { 5, 27939, "", "=q3=Incendic Rod", "=ds=#w12#", "15 #markthrallmarhhold#", "" };
+ { 7, 24579, "", "=q1=Mark of Honor Hold", "=ds=#m18#" };
+ { 16, 27983, "", "=q3=Libram of Zeal", "=ds=#w16#", "15 #markthrallmarhhold#", "" };
+ { 17, 27920, "", "=q3=Mark of Conquest", "=ds=#s14#", "30 #markthrallmarhhold#", "" };
+ { 18, 27927, "", "=q3=Mark of Vindication", "=ds=#s14#", "30 #markthrallmarhhold#", "" };
+ { 19, 27930, "", "=q3=Splintermark", "=ds=#w2#", "15 #markthrallmarhhold#", "" };
+ { 22, 24581, "", "=q1=Mark of Thrallmar", "=ds=#m19#" };
+ };
+};
+
+-------------------------------------
+--- Rep-PvP Level 70 - Armor Sets ---
+-------------------------------------
+
+AtlasLoot_Data["PVP70RepGear"] = {
+ Name = "Rep PVP Gear";
+ {
+ Name = BabbleInventory["Cloth"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#pvprep705_1#", "=ec1=#c5#" };
+ { 2, 35339, "", "=q3=Satin Hood", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 3, 35341, "", "=q3=Satin Mantle", "=ds=#f2#, =ec1=#r3#" };
+ { 4, 35342, "", "=q3=Satin Robe", "=ds=#f6#, =ec1=#r3#" };
+ { 5, 35338, "", "=q3=Satin Gloves", "=ds=#f5#, =ec1=#r3#" };
+ { 6, 35340, "", "=q3=Satin Leggings", "=ds=#f1#, =ec1=#r3#" };
+ { 8, 0, "INV_BannerPVP_02", "=q6=#pvprep705_2#", "=ec1=#c5#" };
+ { 9, 35333, "", "=q3=Mooncloth Cowl", "=ds=#f2#, =ec1=#r3#" };
+ { 10, 35336, "", "=q3=Mooncloth Shoulderpads", "=ds=#f6#, =ec1=#r3#" };
+ { 11, 35337, "", "=q3=Mooncloth Vestments", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 12, 35335, "", "=q3=Mooncloth Mitts", "=ds=#f1#, =ec1=#r3#" };
+ { 13, 35334, "", "=q3=Mooncloth Legguards", "=ds=#f5#, =ec1=#r3#" };
+ { 16, 0, "INV_BannerPVP_02", "=q6=#pvprep703#", "=ec1=#c3#" };
+ { 17, 35344, "", "=q3=Evoker's Silk Cowl", "=ds=#f1#, =ec1=#r3#" };
+ { 18, 35343, "", "=q3=Evoker's Silk Amice", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 19, 35346, "", "=q3=Evoker's Silk Raiment", "=ds=#f5#, =ec1=#r3#" };
+ { 20, 35345, "", "=q3=Evoker's Silk Handguards", "=ds=#f2#, =ec1=#r3#" };
+ { 21, 35347, "", "=q3=Evoker's Silk Trousers", "=ds=#f6#, =ec1=#r3#" };
+ { 23, 0, "INV_BannerPVP_02", "=q6=#pvprep708#", "=ec1=#c8#" };
+ { 24, 35329, "", "=q3=Dreadweave Hood", "=ds=#f6#, =ec1=#r3#" };
+ { 25, 35331, "", "=q3=Dreadweave Mantle", "=ds=#f1#, =ec1=#r3#" };
+ { 26, 35332, "", "=q3=Dreadweave Robe", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 27, 35328, "", "=q3=Dreadweave Gloves", "=ds=#f5#, =ec1=#r3#" };
+ { 28, 35330, "", "=q3=Dreadweave Leggings", "=ds=#f2#, =ec1=#r3#" };
+ };
+ {
+ Name = BabbleInventory["Leather"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#pvprep701_1#", "=ec1=#c1#" };
+ { 2, 35357, "", "=q3=Dragonhide Helm", "=ds=#f1#, =ec1=#r3#" };
+ { 3, 35359, "", "=q3=Dragonhide Spaulders", "=ds=#f2#, =ec1=#r3#" };
+ { 4, 35360, "", "=q3=Dragonhide Robe", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 5, 35356, "", "=q3=Dragonhide Gloves", "=ds=#f5#, =ec1=#r3#" };
+ { 6, 35358, "", "=q3=Dragonhide Legguards", "=ds=#f6#, =ec1=#r3#" };
+ { 8, 0, "INV_BannerPVP_02", "=q6=#pvprep701_2#", "=ec1=#c1#" };
+ { 9, 35372, "", "=q3=Wyrmhide Helm", "=ds=#f5#, =ec1=#r3#" };
+ { 10, 35374, "", "=q3=Wyrmhide Spaulders", "=ds=#f6#, =ec1=#r3#" };
+ { 11, 35375, "", "=q3=Wyrmhide Robe", "=ds=#f2#, =ec1=#r3#" };
+ { 12, 35371, "", "=q3=Wyrmhide Gloves", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 13, 35373, "", "=q3=Wyrmhide Legguards", "=ds=#f1#, =ec1=#r3#" };
+ { 16, 0, "INV_BannerPVP_02", "=q6=#pvprep701_3#", "=ec1=#c1#" };
+ { 17, 35362, "", "=q3=Kodohide Helm", "=ds=#f2#, =ec1=#r3#" };
+ { 18, 35364, "", "=q3=Kodohide Spaulders", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 19, 35365, "", "=q3=Kodohide Robe", "=ds=#f6#, =ec1=#r3#" };
+ { 20, 35361, "", "=q3=Kodohide Gloves", "=ds=#f1#, =ec1=#r3#" };
+ { 21, 35363, "", "=q3=Kodohide Legguards", "=ds=#f5#, =ec1=#r3#" };
+ { 23, 0, "INV_BannerPVP_02", "=q6=#pvprep706#", "=ec1=#c6#" };
+ { 24, 35367, "", "=q3=Opportunist's Leather Helm", "=ds=#f6#, =ec1=#r3#" };
+ { 25, 35369, "", "=q3=Opportunist's Leather Spaulders", "=ds=#f5#, =ec1=#r3#" };
+ { 26, 35370, "", "=q3=Opportunist's Leather Tunic", "=ds=#f1#, =ec1=#r3#" };
+ { 27, 35366, "", "=q3=Opportunist's Leather Gloves", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 28, 35368, "", "=q3=Opportunist's Leather Legguards", "=ds=#f2#, =ec1=#r3#" };
+ };
+ {
+ Name = BabbleInventory["Mail"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#pvprep707_1#", "=ec1=#c7#" };
+ { 2, 35383, "", "=q3=Seer's Linked Helm", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 3, 35385, "", "=q3=Seer's Linked Spaulders", "=ds=#f6#, =ec1=#r3#" };
+ { 4, 35381, "", "=q3=Seer's Linked Armor", "=ds=#f2#, =ec1=#r3#" };
+ { 5, 35382, "", "=q3=Seer's Linked Gauntlets", "=ds=#f1#, =ec1=#r3#" };
+ { 6, 35384, "", "=q3=Seer's Linked Leggings", "=ds=#f5#, =ec1=#r3#" };
+ { 8, 0, "INV_BannerPVP_02", "=q6=#pvprep707_2#", "=ec1=#c7#" };
+ { 9, 35388, "", "=q3=Seer's Mail Helm", "=ds=#f2#, =ec1=#r3#" };
+ { 10, 35390, "", "=q3=Seer's Mail Spaulders", "=ds=#f5#, =ec1=#r3#" };
+ { 11, 35386, "", "=q3=Seer's Mail Armor", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 12, 35387, "", "=q3=Seer's Mail Gauntlets", "=ds=#f6#, =ec1=#r3#" };
+ { 13, 35389, "", "=q3=Seer's Mail Leggings", "=ds=#f1#, =ec1=#r3#" };
+ { 16, 0, "INV_BannerPVP_02", "=q6=#pvprep707_3#", "=ec1=#c7#" };
+ { 17, 35393, "", "=q3=Seer's Ringmail Headpiece", "=ds=#f5#, =ec1=#r3#" };
+ { 18, 35395, "", "=q3=Seer's Ringmail Shoulderpads", "=ds=#f2#, =ec1=#r3#" };
+ { 19, 35391, "", "=q3=Seer's Ringmail Chestguard", "=ds=#f1#, =ec1=#r3#" };
+ { 20, 35392, "", "=q3=Seer's Ringmail Gloves", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 21, 35394, "", "=q3=Seer's Ringmail Legguards", "=ds=#f6#, =ec1=#r3#" };
+ { 23, 0, "INV_BannerPVP_02", "=q6=#pvprep702#", "=ec1=#c2#" };
+ { 24, 35378, "", "=q3=Stalker's Chain Helm", "=ds=#f1#, =ec1=#r3#" };
+ { 25, 35380, "", "=q3=Stalker's Chain Spaulders", "=ds=#f2#, =ec1=#r3#" };
+ { 26, 35376, "", "=q3=Stalker's Chain Armor", "=ds=#f5#, =ec1=#r3#" };
+ { 27, 35377, "", "=q3=Stalker's Chain Gauntlets", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 28, 35379, "", "=q3=Stalker's Chain Leggings", "=ds=#f6#, =ec1=#r3#" };
+ };
+ {
+ Name = BabbleInventory["Plate"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#pvprep704_1#", "=ec1=#c4#" };
+ { 2, 35414, "", "=q3=Crusader's Scaled Helm", "=ds=#f5#, =ec1=#r3#" };
+ { 3, 35416, "", "=q3=Crusader's Scaled Shoulders", "=ds=#f2#, =ec1=#r3#" };
+ { 4, 35412, "", "=q3=Crusader's Scaled Chestpiece", "=ds=#f1#, =ec1=#r3#" };
+ { 5, 35413, "", "=q3=Crusader's Scaled Gauntlets", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 6, 35415, "", "=q3=Crusader's Scaled Legguards", "=ds=#f6#, =ec1=#r3#" };
+ { 8, 0, "INV_BannerPVP_02", "=q6=#pvprep704_2#", "=ec1=#c4#" };
+ { 9, 35404, "", "=q3=Crusader's Ornamented Headguard", "=ds=#f2#, =ec1=#r3#" };
+ { 10, 35406, "", "=q3=Crusader's Ornamented Spaulders", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 11, 35402, "", "=q3=Crusader's Ornamented Chestplate", "=ds=#f5#, =ec1=#r3#" };
+ { 12, 35403, "", "=q3=Crusader's Ornamented Gloves", "=ds=#f6#, =ec1=#r3#" };
+ { 13, 35405, "", "=q3=Crusader's Ornamented Leggings", "=ds=#f1#, =ec1=#r3#" };
+ { 16, 0, "INV_BannerPVP_02", "=q6=#pvprep709#", "=ec1=#c9#" };
+ { 17, 35409, "", "=q3=Savage Plate Helm", "=ds=#f3#/#f4#, =ec1=#r3#" };
+ { 18, 35411, "", "=q3=Savage Plate Shoulders", "=ds=#f1#, =ec1=#r3#" };
+ { 19, 35407, "", "=q3=Savage Plate Chestpiece", "=ds=#f2#, =ec1=#r3#" };
+ { 20, 35408, "", "=q3=Savage Plate Gauntlets", "=ds=#f6#, =ec1=#r3#" };
+ { 21, 35410, "", "=q3=Savage Plate Legguards", "=ds=#f5#, =ec1=#r3#" };
+ };
+ {
+ Name = BabbleInventory["Cloth"] .. " - " .. BabbleFaction["Alliance"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#pvprep705_1#", "=ec1=#c5#" };
+ { 2, 28705, "", "=q3=Grand Marshal's Satin Hood" };
+ { 3, 28707, "", "=q3=Grand Marshal's Satin Mantle" };
+ { 4, 28708, "", "=q3=Grand Marshal's Satin Robe" };
+ { 5, 28704, "", "=q3=Grand Marshal's Satin Gloves" };
+ { 6, 28706, "", "=q3=Grand Marshal's Satin Leggings" };
+ { 8, 0, "INV_BannerPVP_02", "=q6=#pvprep705_2#", "=ec1=#c5#" };
+ { 9, 31622, "", "=q3=Grand Marshal's Mooncloth Cowl" };
+ { 10, 31624, "", "=q3=Grand Marshal's Mooncloth Shoulderpads" };
+ { 11, 31625, "", "=q3=Grand Marshal's Mooncloth Vestments" };
+ { 12, 31620, "", "=q3=Grand Marshal's Mooncloth Mitts" };
+ { 13, 31623, "", "=q3=Grand Marshal's Mooncloth Legguards" };
+ { 16, 0, "INV_BannerPVP_02", "=q6=#pvprep703#", "=ec1=#c3#" };
+ { 17, 28715, "", "=q3=Grand Marshal's Silk Cowl" };
+ { 18, 28714, "", "=q3=Grand Marshal's Silk Amice" };
+ { 19, 28717, "", "=q3=Grand Marshal's Silk Raiment" };
+ { 20, 28716, "", "=q3=Grand Marshal's Silk Handguards" };
+ { 21, 28718, "", "=q3=Grand Marshal's Silk Trousers" };
+ { 23, 0, "INV_BannerPVP_02", "=q6=#pvprep708#", "=ec1=#c8#" };
+ { 24, 28625, "", "=q3=Grand Marshal's Dreadweave Hood" };
+ { 25, 28627, "", "=q3=Grand Marshal's Dreadweave Mantle" };
+ { 26, 28628, "", "=q3=Grand Marshal's Dreadweave Robe" };
+ { 27, 28624, "", "=q3=Grand Marshal's Dreadweave Gloves" };
+ { 28, 28626, "", "=q3=Grand Marshal's Dreadweave Leggings" };
+
+ };
+ {
+ Name = BabbleInventory["Leather"] .. " - " .. BabbleFaction["Alliance"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#pvprep701_1#", "=ec1=#c1#" };
+ { 2, 28619, "", "=q3=Grand Marshal's Dragonhide Helm" };
+ { 3, 28622, "", "=q3=Grand Marshal's Dragonhide Spaulders" };
+ { 4, 28623, "", "=q3=Grand Marshal's Dragonhide Robe" };
+ { 5, 28618, "", "=q3=Grand Marshal's Dragonhide Gloves" };
+ { 6, 28620, "", "=q3=Grand Marshal's Dragonhide Legguards" };
+ { 8, 0, "INV_BannerPVP_02", "=q6=#pvprep701_2#", "=ec1=#c1#" };
+ { 9, 31590, "", "=q3=Grand Marshal's Wyrmhide Helm" };
+ { 10, 31592, "", "=q3=Grand Marshal's Wyrmhide Spaulders" };
+ { 11, 31593, "", "=q3=Grand Marshal's Wyrmhide Robe" };
+ { 12, 31589, "", "=q3=Grand Marshal's Wyrmhide Gloves" };
+ { 13, 31591, "", "=q3=Grand Marshal's Wyrmhide Legguards" };
+ { 16, 0, "INV_BannerPVP_02", "=q6=#pvprep701_3#", "=ec1=#c1#" };
+ { 17, 28720, "", "=q3=Grand Marshal's Kodohide Helm" };
+ { 18, 28722, "", "=q3=Grand Marshal's Kodohide Spaulders" };
+ { 19, 28723, "", "=q3=Grand Marshal's Kodohide Robe" };
+ { 20, 28719, "", "=q3=Grand Marshal's Kodohide Gloves" };
+ { 21, 28721, "", "=q3=Grand Marshal's Kodohide Legguards" };
+ { 23, 0, "INV_BannerPVP_02", "=q6=#pvprep706#", "=ec1=#c6#" };
+ { 24, 28685, "", "=q3=Grand Marshal's Leather Helm" };
+ { 25, 28687, "", "=q3=Grand Marshal's Leather Spaulders" };
+ { 26, 28688, "", "=q3=Grand Marshal's Leather Tunic" };
+ { 27, 28684, "", "=q3=Grand Marshal's Leather Gloves" };
+ { 28, 28686, "", "=q3=Grand Marshal's Leather Legguards" };
+ };
+ {
+ Name = BabbleInventory["Mail"] .. " - " .. BabbleFaction["Alliance"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#pvprep707_1#", "=ec1=#c7#" };
+ { 2, 28691, "", "=q3=Grand Marshal's Linked Helm" };
+ { 3, 28693, "", "=q3=Grand Marshal's Linked Spaulders" };
+ { 4, 28689, "", "=q3=Grand Marshal's Linked Armor" };
+ { 5, 28690, "", "=q3=Grand Marshal's Linked Gauntlets" };
+ { 6, 28692, "", "=q3=Grand Marshal's Linked Leggings" };
+ { 8, 0, "INV_BannerPVP_02", "=q6=#pvprep707_2#", "=ec1=#c7#" };
+ { 9, 28696, "", "=q3=Grand Marshal's Mail Helm" };
+ { 10, 28698, "", "=q3=Grand Marshal's Mail Spaulders" };
+ { 11, 28694, "", "=q3=Grand Marshal's Mail Armor" };
+ { 12, 28695, "", "=q3=Grand Marshal's Mail Gauntlets" };
+ { 13, 28697, "", "=q3=Grand Marshal's Mail Leggings" };
+ { 16, 0, "INV_BannerPVP_02", "=q6=#pvprep707_3#", "=ec1=#c7#" };
+ { 17, 31642, "", "=q3=Grand Marshal's Ringmail Headpiece" };
+ { 18, 31644, "", "=q3=Grand Marshal's Ringmail Shoulderpads" };
+ { 19, 31640, "", "=q3=Grand Marshal's Ringmail Chestguard" };
+ { 20, 31641, "", "=q3=Grand Marshal's Ringmail Gloves" };
+ { 21, 31643, "", "=q3=Grand Marshal's Ringmail Legguards" };
+ { 23, 0, "INV_BannerPVP_02", "=q6=#pvprep702#", "=ec1=#c2#" };
+ { 24, 28615, "", "=q3=Grand Marshal's Chain Helm" };
+ { 25, 28617, "", "=q3=Grand Marshal's Chain Spaulders" };
+ { 26, 28613, "", "=q3=Grand Marshal's Chain Armor" };
+ { 27, 28614, "", "=q3=Grand Marshal's Chain Gauntlets" };
+ { 28, 28616, "", "=q3=Grand Marshal's Chain Leggings" };
+ };
+ {
+ Name = BabbleInventory["Plate"] .. " - " .. BabbleFaction["Alliance"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#pvprep704_1#", "=ec1=#c4#" };
+ { 2, 28711, "", "=q3=Grand Marshal's Scaled Helm" };
+ { 3, 28713, "", "=q3=Grand Marshal's Scaled Shoulders" };
+ { 4, 28709, "", "=q3=Grand Marshal's Scaled Chestpiece" };
+ { 5, 28710, "", "=q3=Grand Marshal's Scaled Gauntlets" };
+ { 6, 28712, "", "=q3=Grand Marshal's Scaled Legguards" };
+ { 8, 0, "INV_BannerPVP_02", "=q6=#pvprep704_2#", "=ec1=#c4#" };
+ { 9, 31632, "", "=q3=Grand Marshal's Ornamented Headguard" };
+ { 10, 31634, "", "=q3=Grand Marshal's Ornamented Spaulders" };
+ { 11, 31630, "", "=q3=Grand Marshal's Ornamented Chestplate" };
+ { 12, 31631, "", "=q3=Grand Marshal's Ornamented Gloves" };
+ { 13, 31633, "", "=q3=Grand Marshal's Ornamented Leggings" };
+ { 16, 0, "INV_BannerPVP_02", "=q6=#pvprep709#", "=ec1=#c9#" };
+ { 17, 28701, "", "=q3=Grand Marshal's Plate Helm" };
+ { 18, 28703, "", "=q3=Grand Marshal's Plate Shoulders" };
+ { 19, 28699, "", "=q3=Grand Marshal's Plate Chestpiece" };
+ { 20, 28700, "", "=q3=Grand Marshal's Plate Gauntlets" };
+ { 21, 28702, "", "=q3=Grand Marshal's Plate Legguards" };
+ { 23, 0, "INV_BannerPVP_02", "=q6=#arenas4_1#", "=ec1=#c4#" };
+ { 24, 28681, "", "=q3=Grand Marshal's Lamellar Helm" };
+ { 25, 28683, "", "=q3=Grand Marshal's Lamellar Shoulders" };
+ { 26, 28679, "", "=q3=Grand Marshal's Lamellar Chestpiece" };
+ { 27, 28680, "", "=q3=Grand Marshal's Lamellar Gauntlets" };
+ { 28, 28724, "", "=q3=Grand Marshal's Lamellar Legguards" };
+ };
+ {
+ Name = BabbleInventory["Cloth"] .. " - Horde";
+ { 1, 0, "INV_BannerPVP_01", "=q6=#pvprep705_1#", "=ec1=#c5#" };
+ { 2, 28857, "", "=q3=High Warlord's Satin Hood" };
+ { 3, 28859, "", "=q3=High Warlord's Satin Mantle" };
+ { 4, 28860, "", "=q3=High Warlord's Satin Robe" };
+ { 5, 28856, "", "=q3=High Warlord's Satin Gloves" };
+ { 6, 28858, "", "=q3=High Warlord's Satin Leggings" };
+ { 8, 0, "INV_BannerPVP_01", "=q6=#pvprep705_2#", "=ec1=#c5#" };
+ { 9, 31626, "", "=q3=High Warlord's Mooncloth Cowl" };
+ { 10, 31628, "", "=q3=High Warlord's Mooncloth Shoulderpads" };
+ { 11, 31629, "", "=q3=High Warlord's Mooncloth Vestments" };
+ { 12, 31621, "", "=q3=High Warlord's Mooncloth Mitts" };
+ { 13, 31627, "", "=q3=High Warlord's Mooncloth Legguards" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=#pvprep703#", "=ec1=#c3#" };
+ { 17, 28867, "", "=q3=High Warlord's Silk Cowl" };
+ { 18, 28866, "", "=q3=High Warlord's Silk Amice" };
+ { 19, 28869, "", "=q3=High Warlord's Silk Raiment" };
+ { 20, 28868, "", "=q3=High Warlord's Silk Handguards" };
+ { 21, 28870, "", "=q3=High Warlord's Silk Trousers" };
+ { 23, 0, "INV_BannerPVP_01", "=q6=#pvprep708#", "=ec1=#c8#" };
+ { 24, 28818, "", "=q3=High Warlord's Dreadweave Hood" };
+ { 25, 28820, "", "=q3=High Warlord's Dreadweave Mantle" };
+ { 26, 28821, "", "=q3=High Warlord's Dreadweave Robe" };
+ { 27, 28817, "", "=q3=High Warlord's Dreadweave Gloves" };
+ { 28, 28819, "", "=q3=High Warlord's Dreadweave Leggings" };
+ };
+ {
+ Name = BabbleInventory["Leather"] .. " - Horde";
+ { 1, 0, "INV_BannerPVP_01", "=q6=#pvprep701_1#", "=ec1=#c1#" };
+ { 2, 28812, "", "=q3=High Warlord's Dragonhide Helm" };
+ { 3, 28814, "", "=q3=High Warlord's Dragonhide Spaulders" };
+ { 4, 28815, "", "=q3=High Warlord's Dragonhide Robe" };
+ { 5, 28811, "", "=q3=High Warlord's Dragonhide Gloves" };
+ { 6, 28813, "", "=q3=High Warlord's Dragonhide Legguards" };
+ { 8, 0, "INV_BannerPVP_01", "=q6=#pvprep701_2#", "=ec1=#c1#" };
+ { 9, 28872, "", "=q3=High Warlord's Wyrmhide Helm" };
+ { 10, 28874, "", "=q3=High Warlord's Wyrmhide Spaulders" };
+ { 11, 28875, "", "=q3=High Warlord's Wyrmhide Robe" };
+ { 12, 28871, "", "=q3=High Warlord's Wyrmhide Gloves" };
+ { 13, 28873, "", "=q3=High Warlord's Wyrmhide Legguards" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=#pvprep701_3#", "=ec1=#c1#" };
+ { 17, 31585, "", "=q3=High Warlord's Kodohide Helm" };
+ { 18, 31587, "", "=q3=High Warlord's Kodohide Spaulders" };
+ { 19, 31588, "", "=q3=High Warlord's Kodohide Robe" };
+ { 20, 31584, "", "=q3=High Warlord's Kodohide Gloves" };
+ { 21, 31586, "", "=q3=High Warlord's Kodohide Legguards" };
+ { 23, 0, "INV_BannerPVP_01", "=q6=#pvprep706#", "=ec1=#c6#" };
+ { 24, 28837, "", "=q3=High Warlord's Leather Helm" };
+ { 25, 28839, "", "=q3=High Warlord's Leather Spaulders" };
+ { 26, 28840, "", "=q3=High Warlord's Leather Tunic" };
+ { 27, 28836, "", "=q3=High Warlord's Leather Gloves" };
+ { 28, 28838, "", "=q3=High Warlord's Leather Legguards" };
+ };
+ {
+ Name = BabbleInventory["Mail"] .. " - Horde";
+ { 1, 0, "INV_BannerPVP_01", "=q6=#pvprep707_1#", "=ec1=#c7#" };
+ { 2, 28843, "", "=q3=High Warlord's Linked Helm" };
+ { 3, 28845, "", "=q3=High Warlord's Linked Spaulders" };
+ { 4, 28841, "", "=q3=High Warlord's Linked Armor" };
+ { 5, 28842, "", "=q3=High Warlord's Linked Gauntlets" };
+ { 6, 28844, "", "=q3=High Warlord's Linked Leggings" };
+ { 8, 0, "INV_BannerPVP_01", "=q6=#pvprep707_2#", "=ec1=#c7#" };
+ { 9, 28848, "", "=q3=High Warlord's Mail Helm" };
+ { 10, 28850, "", "=q3=High Warlord's Mail Spaulders" };
+ { 11, 28846, "", "=q3=High Warlord's Mail Armor" };
+ { 12, 28847, "", "=q3=High Warlord's Mail Gauntlets" };
+ { 13, 28849, "", "=q3=High Warlord's Mail Leggings" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=#pvprep707_3#", "=ec1=#c7#" };
+ { 17, 31648, "", "=q3=High Warlord's Ringmail Headpiece" };
+ { 18, 31650, "", "=q3=High Warlord's Ringmail Shoulderpads" };
+ { 19, 31646, "", "=q3=High Warlord's Ringmail Chestguard" };
+ { 20, 31647, "", "=q3=High Warlord's Ringmail Gloves" };
+ { 21, 31649, "", "=q3=High Warlord's Ringmail Legguards" };
+ { 23, 0, "INV_BannerPVP_01", "=q6=#pvprep702#", "=ec1=#c2#" };
+ { 24, 28807, "", "=q3=High Warlord's Chain Helm" };
+ { 25, 28809, "", "=q3=High Warlord's Chain Spaulders" };
+ { 26, 28805, "", "=q3=High Warlord's Chain Armor" };
+ { 27, 28806, "", "=q3=High Warlord's Chain Gauntlets" };
+ { 28, 28808, "", "=q3=High Warlord's Chain Leggings" };
+ };
+ {
+ Name = BabbleInventory["Plate"] .. " - Horde";
+ { 1, 0, "INV_BannerPVP_01", "=q6=#pvprep704_1#", "=ec1=#c4#" };
+ { 2, 28863, "", "=q3=High Warlord's Scaled Helm" };
+ { 3, 28865, "", "=q3=High Warlord's Scaled Shoulders" };
+ { 4, 28861, "", "=q3=High Warlord's Scaled Chestpiece" };
+ { 5, 28862, "", "=q3=High Warlord's Scaled Gauntlets" };
+ { 6, 28864, "", "=q3=High Warlord's Scaled Legguards" };
+ { 8, 0, "INV_BannerPVP_01", "=q6=#pvprep704_2#", "=ec1=#c4#" };
+ { 9, 31637, "", "=q3=High Warlord's Ornamented Headguard" };
+ { 10, 31639, "", "=q3=High Warlord's Ornamented Spaulders" };
+ { 11, 31635, "", "=q3=High Warlord's Ornamented Chestplate" };
+ { 12, 31636, "", "=q3=High Warlord's Ornamented Gloves" };
+ { 13, 31638, "", "=q3=High Warlord's Ornamented Leggings" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=#pvprep709#", "=ec1=#c9#" };
+ { 17, 28853, "", "=q3=High Warlord's Plate Helm" };
+ { 18, 28855, "", "=q3=High Warlord's Plate Shoulders" };
+ { 19, 28851, "", "=q3=High Warlord's Plate Chestpiece" };
+ { 20, 28852, "", "=q3=High Warlord's Plate Gauntlets" };
+ { 21, 28854, "", "=q3=High Warlord's Plate Legguards" };
+ { 23, 0, "INV_BannerPVP_01", "=q6=#arenas4_1#", "=ec1=#c4#" };
+ { 24, 28833, "", "=q3=High Warlord's Lamellar Helm" };
+ { 25, 28835, "", "=q3=High Warlord's Lamellar Shoulders" };
+ { 26, 28831, "", "=q3=High Warlord's Lamellar Chestpiece" };
+ { 27, 28832, "", "=q3=High Warlord's Lamellar Gauntlets" };
+ { 28, 28834, "", "=q3=High Warlord's Lamellar Legguards" };
+ };
+};
+
+
+
+
+----------------------------------
+--- PvP Level 70 - Accessories ---
+----------------------------------
+
+AtlasLoot_Data["PvP70Accessories"] = {
+ Name = "Off Set";
+ {
+ Name = "PvP Accessories - " .. BabbleFaction["Alliance"];
+ { 1, 28235, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#" };
+ { 2, 28237, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#" };
+ { 3, 28238, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#" };
+ { 4, 28236, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#" };
+ { 5, 30349, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#" };
+ { 6, 28234, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#" };
+ { 7, 30351, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#" };
+ { 8, 30348, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#" };
+ { 9, 30350, "", "=q3=Medallion of the Alliance", "=ds=", "8000 #alliance#" };
+ { 11, 31853, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#" };
+ { 12, 31839, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#" };
+ { 13, 31855, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#" };
+ { 14, 31841, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#" };
+ { 15, 32453, "", "=q1=Star's Tears", "=ds=", "1 #gold# 8 #faction#" };
+ { 16, 37864, "", "=q4=Medallion of the Alliance", "=ds=", "40000 #alliance#" };
+ { 17, 25829, "", "=q4=Talisman of the Alliance", "=ds=", "23000 #alliance#" };
+ { 19, 28120, "", "=q4=Gleaming Ornate Dawnstone", "=ds=", "6885 #faction#" };
+ { 20, 28119, "", "=q4=Smooth Ornate Dawnstone", "=ds=", "6885 #faction#" };
+ { 21, 28362, "", "=q4=Bold Ornate Ruby", "=ds=", "6885 #faction#" };
+ { 22, 28118, "", "=q4=Runed Ornate Ruby", "=ds=", "6885 #faction#" };
+ { 23, 28363, "", "=q4=Inscribed Ornate Topaz", "=ds=", "8500 #faction#" };
+ { 24, 28123, "", "=q4=Potent Ornate Topaz", "=ds=", "8500 #faction#" };
+ { 26, 31838, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#" };
+ { 27, 31852, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#" };
+ { 28, 31840, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#" };
+ { 29, 31854, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#" };
+ };
+ {
+ Name = "PvP Accessories - Horde";
+ { 1, 28241, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#" };
+ { 2, 28243, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#" };
+ { 3, 28239, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#" };
+ { 4, 28242, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#" };
+ { 5, 30346, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#" };
+ { 6, 28240, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#" };
+ { 7, 30345, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#" };
+ { 8, 30343, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#" };
+ { 9, 30344, "", "=q3=Medallion of the Horde", "=ds=", "8000 #horde#" };
+ { 11, 31853, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#" };
+ { 12, 31839, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#" };
+ { 13, 31855, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#" };
+ { 14, 31841, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#" };
+ { 15, 32453, "", "=q1=Star's Tears", "=ds=", "1 #gold# 8 #faction#" };
+ { 16, 37865, "", "=q4=Medallion of the Horde", "=ds=", "40000 #horde#" };
+ { 17, 24551, "", "=q4=Talisman of the Horde", "=ds=", "23000 #horde#" };
+ { 19, 28120, "", "=q4=Gleaming Ornate Dawnstone", "=ds=", "6885 #faction#" };
+ { 20, 28119, "", "=q4=Smooth Ornate Dawnstone", "=ds=", "6885 #faction#" };
+ { 21, 28362, "", "=q4=Bold Ornate Ruby", "=ds=", "6885 #faction#" };
+ { 22, 28118, "", "=q4=Runed Ornate Ruby", "=ds=", "6885 #faction#" };
+ { 23, 28363, "", "=q4=Inscribed Ornate Topaz", "=ds=", "8500 #faction#" };
+ { 24, 28123, "", "=q4=Potent Ornate Topaz", "=ds=", "8500 #faction#" };
+ { 26, 31838, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#" };
+ { 27, 31852, "", "=q1=Major Combat Healing Potion", "=ds=", "200 #faction#" };
+ { 28, 31840, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#" };
+ { 29, 31854, "", "=q1=Major Combat Mana Potion", "=ds=", "200 #faction#" };
+ };
+ {
+ Name = "PvP Accessories";
+ { 1, 28378, "", "=q4=Sergeant's Heavy Cape", "=ds=", "8000 #faction#" };
+ { 2, 28377, "", "=q4=Sergeant's Heavy Cloak", "=ds=", "8000 #faction#" };
+ { 4, 44431, "", "=q4=Cloak of Certain Reprieve", "=ds=", "21000 #faction#" };
+ { 5, 41591, "", "=q4=Sergeant's Reinforced Cape", "=ds=", "21000 #faction#" };
+ { 6, 41592, "", "=q4=The Gladiator's Resolution", "=ds=", "21000 #faction#" };
+ { 7, 44429, "", "=q4=Volanthius Shroud", "=ds=", "21000 #faction#" };
+ { 9, 41588, "", "=q4=Battlemaster's Aggression", "=ds=", "36000 #faction#" };
+ { 10, 41587, "", "=q4=Battlemaster's Celerity", "=ds=", "36000 #faction#" };
+ { 11, 41590, "", "=q4=Battlemaster's Courage", "=ds=", "36000 #faction#" };
+ { 12, 41589, "", "=q4=Battlemaster's Resolve", "=ds=", "36000 #faction#" };
+ { 14, 28247, "", "=q3=Band of Dominance", "=ds=", "10000 #alliance#" };
+ { 15, 28246, "", "=q3=Band of Triumph", "=ds=", "10000 #alliance#" };
+ { 16, 35132, "", "=q4=Guardian's Pendant of Conquest", "=ds=", "16000 #faction#" };
+ { 17, 35133, "", "=q4=Guardian's Pendant of Dominance", "=ds=", "16000 #faction#" };
+ { 18, 37929, "", "=q4=Guardian's Pendant of Reprieve", "=ds=", "16000 #faction#" };
+ { 19, 35134, "", "=q4=Guardian's Pendant of Salvation", "=ds=", "16000 #faction#" };
+ { 20, 37928, "", "=q4=Guardian's Pendant of Subjugation", "=ds=", "16000 #faction#" };
+ { 21, 35135, "", "=q4=Guardian's Pendant of Triumph", "=ds=", "16000 #faction#" };
+ { 23, 35129, "", "=q4=Guardian's Band of Dominance", "=ds=", "16000 #faction#" };
+ { 24, 35130, "", "=q4=Guardian's Band of Salvation", "=ds=", "16000 #faction#" };
+ { 25, 37927, "", "=q4=Guardian's Band of Subjugation", "=ds=", "16000 #faction#" };
+ { 26, 35131, "", "=q4=Guardian's Band of Triumph", "=ds=", "16000 #faction#" };
+ { 27, 33853, "", "=q4=Vindicator's Band of Dominance", "=ds=", "12000 #faction#" };
+ { 28, 33918, "", "=q4=Vindicator's Band of Salvation", "=ds=", "12000 #faction#" };
+ { 29, 35320, "", "=q4=Vindicator's Band of Subjugation", "=ds=", "12000 #faction#" };
+ { 30, 33919, "", "=q4=Vindicator's Band of Triumph", "=ds=", "12000 #faction#" };
+ };
+};
+
+------------------------------------
+--- PvP Level 70 - Non Set Epics ---
+------------------------------------
+
+AtlasLoot_Data["PvP70NonSet"] = {
+ Name = AL["PvP Non-Set Epics"];
+ {
+ Name = "Page 1";
+ { 1, 35168, "", "=q4=Guardian's Dreadweave Cuffs", "=ds=", "13000 #faction#" };
+ { 2, 35153, "", "=q4=Guardian's Dreadweave Belt", "=ds=", "18000 #faction#" };
+ { 3, 35138, "", "=q4=Guardian's Dreadweave Stalkers", "=ds=", "18000 #faction#" };
+ { 5, 35174, "", "=q4=Guardian's Mooncloth Cuffs", "=ds=", "13000 #faction#" };
+ { 6, 35159, "", "=q4=Guardian's Mooncloth Belt", "=ds=", "18000 #faction#" };
+ { 7, 35144, "", "=q4=Guardian's Mooncloth Slippers", "=ds=", "18000 #faction#" };
+ { 9, 35179, "", "=q4=Guardian's Silk Cuffs", "=ds=", "13000 #faction#" };
+ { 10, 35164, "", "=q4=Guardian's Silk Belt", "=ds=", "18000 #faction#" };
+ { 11, 35149, "", "=q4=Guardian's Silk Footguards", "=ds=", "18000 #faction#" };
+ { 16, 35167, "", "=q4=Guardian's Dragonhide Bracers", "=ds=", "13000 #faction#" };
+ { 17, 35152, "", "=q4=Guardian's Dragonhide Belt", "=ds=", "18000 #faction#" };
+ { 18, 35137, "", "=q4=Guardian's Dragonhide Boots", "=ds=", "18000 #faction#" };
+ { 20, 35169, "", "=q4=Guardian's Kodohide Bracers", "=ds=", "13000 #faction#" };
+ { 21, 35154, "", "=q4=Guardian's Kodohide Belt", "=ds=", "18000 #faction#" };
+ { 22, 35139, "", "=q4=Guardian's Kodohide Boots", "=ds=", "18000 #faction#" };
+ { 24, 35171, "", "=q4=Guardian's Leather Bracers", "=ds=", "13000 #faction#" };
+ { 25, 35156, "", "=q4=Guardian's Leather Belt", "=ds=", "18000 #faction#" };
+ { 26, 35141, "", "=q4=Guardian's Leather Boots", "=ds=", "18000 #faction#" };
+ { 28, 35180, "", "=q4=Guardian's Wyrmhide Bracers", "=ds=", "13000 #faction#" };
+ { 29, 35165, "", "=q4=Guardian's Wyrmhide Belt", "=ds=", "18000 #faction#" };
+ { 30, 35150, "", "=q4=Guardian's Wyrmhide Boots", "=ds=", "18000 #faction#" };
+ };
+ {
+ Name = "Page 2";
+ { 1, 35166, "", "=q4=Guardian's Chain Bracers", "=ds=", "13000 #faction#" };
+ { 2, 35151, "", "=q4=Guardian's Chain Girdle", "=ds=", "18000 #faction#" };
+ { 3, 35136, "", "=q4=Guardian's Chain Sabatons", "=ds=", "18000 #faction#" };
+ { 5, 35172, "", "=q4=Guardian's Linked Bracers", "=ds=", "13000 #faction#" };
+ { 6, 35157, "", "=q4=Guardian's Linked Girdle", "=ds=", "18000 #faction#" };
+ { 7, 35142, "", "=q4=Guardian's Linked Sabatons", "=ds=", "18000 #faction#" };
+ { 9, 35173, "", "=q4=Guardian's Mail Bracers", "=ds=", "13000 #faction#" };
+ { 10, 35158, "", "=q4=Guardian's Mail Girdle", "=ds=", "18000 #faction#" };
+ { 11, 35143, "", "=q4=Guardian's Mail Sabatons", "=ds=", "18000 #faction#" };
+ { 13, 35177, "", "=q4=Guardian's Ringmail Bracers", "=ds=", "13000 #faction#" };
+ { 14, 35162, "", "=q4=Guardian's Ringmail Girdle", "=ds=", "18000 #faction#" };
+ { 15, 35147, "", "=q4=Guardian's Ringmail Sabatons", "=ds=", "18000 #faction#" };
+ { 16, 35170, "", "=q4=Guardian's Lamellar Bracers", "=ds=", "13000 #faction#" };
+ { 17, 35155, "", "=q4=Guardian's Lamellar Belt", "=ds=", "18000 #faction#" };
+ { 18, 35140, "", "=q4=Guardian's Lamellar Greaves", "=ds=", "18000 #faction#" };
+ { 20, 35175, "", "=q4=Guardian's Ornamented Bracers", "=ds=", "13000 #faction#" };
+ { 21, 35160, "", "=q4=Guardian's Ornamented Belt", "=ds=", "18000 #faction#" };
+ { 22, 35145, "", "=q4=Guardian's Ornamented Greaves", "=ds=", "18000 #faction#" };
+ { 24, 35176, "", "=q4=Guardian's Plate Bracers", "=ds=", "13000 #faction#" };
+ { 25, 35161, "", "=q4=Guardian's Plate Belt", "=ds=", "18000 #faction#" };
+ { 26, 35146, "", "=q4=Guardian's Plate Greaves", "=ds=", "18000 #faction#" };
+ { 28, 35178, "", "=q4=Guardian's Scaled Bracers", "=ds=", "13000 #faction#" };
+ { 29, 35163, "", "=q4=Guardian's Scaled Belt", "=ds=", "18000 #faction#" };
+ { 30, 35148, "", "=q4=Guardian's Scaled Greaves", "=ds=", "18000 #faction#" };
+ };
+};
+
+--------------------------
+--- Arena - Armor Sets ---
+--------------------------
+
+AtlasLoot_Data["ArenaDruidTBC"] = {
+ Name = AL["Druid"];
+ {
+ Name = AL["Feral"];
+ { 1, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "=q1=#arenas1L#" };
+ { 2, 28127, "", "=q4=Gladiator's Dragonhide Helm", "=ds=#s1#" };
+ { 3, 28129, "", "=q4=Gladiator's Dragonhide Spaulders", "=ds=#s3#" };
+ { 4, 28130, "", "=q4=Gladiator's Dragonhide Tunic", "=ds=#s5#" };
+ { 5, 28126, "", "=q4=Gladiator's Dragonhide Gloves", "=ds=#s9#" };
+ { 6, 28128, "", "=q4=Gladiator's Dragonhide Legguards", "=ds=#s11#" };
+ { 8, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "=q1=#arenas3L#" };
+ { 9, 31968, "", "=q4=Merciless Gladiator's Dragonhide Helm", "=ds=#s1#", "15000 #faction#" };
+ { 10, 31971, "", "=q4=Merciless Gladiator's Dragonhide Spaulders", "=ds=#s3#", "13000 #faction#" };
+ { 11, 31972, "", "=q4=Merciless Gladiator's Dragonhide Tunic", "=ds=#s5#", "15000 #faction#" };
+ { 12, 31967, "", "=q4=Merciless Gladiator's Dragonhide Gloves", "=ds=#s9#", "12000 #faction#" };
+ { 13, 31969, "", "=q4=Merciless Gladiator's Dragonhide Legguards", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "=q1=#arenas2L#" };
+ { 17, 33672, "", "=q4=Vengeful Gladiator's Dragonhide Helm", "=ds=#s1#", "" };
+ { 18, 33674, "", "=q4=Vengeful Gladiator's Dragonhide Spaulders", "=ds=#s3#", "" };
+ { 19, 33675, "", "=q4=Vengeful Gladiator's Dragonhide Tunic", "=ds=#s5#", "" };
+ { 20, 33671, "", "=q4=Vengeful Gladiator's Dragonhide Gloves", "=ds=#s9#", "" };
+ { 21, 33673, "", "=q4=Vengeful Gladiator's Dragonhide Legguards", "=ds=#s11#", "" };
+ { 23, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "=q1=#arenas4L#" };
+ { 24, 34999, "", "=q4=Brutal Gladiator's Dragonhide Helm", "=ds=", "1875 #arena#", "" };
+ { 25, 35001, "", "=q4=Brutal Gladiator's Dragonhide Spaulders", "=ds=", "1500 #arena#", "" };
+ { 26, 35002, "", "=q4=Brutal Gladiator's Dragonhide Tunic", "=ds=", "1875 #arena#", "" };
+ { 27, 34998, "", "=q4=Brutal Gladiator's Dragonhide Gloves", "=ds=", "1125 #arena#", "" };
+ { 28, 35000, "", "=q4=Brutal Gladiator's Dragonhide Legguards", "=ds=", "1875 #arena#", "" };
+ };
+ {
+ Name = AL["Balance"];
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "=q1=#arenas1L#" };
+ { 2, 28137, "", "=q4=Gladiator's Wyrmhide Helm", "=ds=#s1#" };
+ { 3, 28139, "", "=q4=Gladiator's Wyrmhide Spaulders", "=ds=#s3#" };
+ { 4, 28140, "", "=q4=Gladiator's Wyrmhide Tunic", "=ds=#s5#" };
+ { 5, 28136, "", "=q4=Gladiator's Wyrmhide Gloves", "=ds=#s9#" };
+ { 6, 28138, "", "=q4=Gladiator's Wyrmhide Legguards", "=ds=#s11#" };
+ { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "=q1=#arenas3L#" };
+ { 9, 32057, "", "=q4=Merciless Gladiator's Wyrmhide Helm", "=ds=#s1#", "15000 #faction#" };
+ { 10, 32059, "", "=q4=Merciless Gladiator's Wyrmhide Spaulders", "=ds=#s3#", "13000 #faction#" };
+ { 11, 32060, "", "=q4=Merciless Gladiator's Wyrmhide Tunic", "=ds=#s5#", "15000 #faction#" };
+ { 12, 32056, "", "=q4=Merciless Gladiator's Wyrmhide Gloves", "=ds=#s9#", "12000 #faction#" };
+ { 13, 32058, "", "=q4=Merciless Gladiator's Wyrmhide Legguards", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "=q1=#arenas2L#" };
+ { 17, 33768, "", "=q4=Vengeful Gladiator's Wyrmhide Helm", "=ds=#s1#", "" };
+ { 18, 33770, "", "=q4=Vengeful Gladiator's Wyrmhide Spaulders", "=ds=#s3#", "" };
+ { 19, 33771, "", "=q4=Vengeful Gladiator's Wyrmhide Tunic", "=ds=#s5#", "" };
+ { 20, 33767, "", "=q4=Vengeful Gladiator's Wyrmhide Gloves", "=ds=#s9#", "" };
+ { 21, 33769, "", "=q4=Vengeful Gladiator's Wyrmhide Legguards", "=ds=#s11#", "" };
+ { 23, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "=q1=#arenas4L#" };
+ { 24, 35112, "", "=q4=Brutal Gladiator's Wyrmhide Helm", "=ds=", "1875 #arena#", "" };
+ { 25, 35114, "", "=q4=Brutal Gladiator's Wyrmhide Spaulders", "=ds=", "1500 #arena#", "" };
+ { 26, 35115, "", "=q4=Brutal Gladiator's Wyrmhide Tunic", "=ds=", "1875 #arena#", "" };
+ { 27, 35111, "", "=q4=Brutal Gladiator's Wyrmhide Gloves", "=ds=", "1125 #arena#", "" };
+ { 28, 35113, "", "=q4=Brutal Gladiator's Wyrmhide Legguards", "=ds=", "1875 #arena#", "" };
+ };
+ {
+ Name = AL["Restoration"];
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "=q1=#arenas1L#" };
+ { 2, 31376, "", "=q4=Gladiator's Kodohide Helm", "=ds=#s1#" };
+ { 3, 31378, "", "=q4=Gladiator's Kodohide Spaulders", "=ds=#s3#" };
+ { 4, 31379, "", "=q4=Gladiator's Kodohide Tunic", "=ds=#s5#" };
+ { 5, 31375, "", "=q4=Gladiator's Kodohide Gloves", "=ds=#s9#" };
+ { 6, 31377, "", "=q4=Gladiator's Kodohide Legguards", "=ds=#s11#" };
+ { 8, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "=q1=#arenas3L#" };
+ { 9, 31988, "", "=q4=Merciless Gladiator's Kodohide Helm", "=ds=#s1#", "15000 #faction#" };
+ { 10, 31990, "", "=q4=Merciless Gladiator's Kodohide Spaulders", "=ds=#s3#", "13000 #faction#" };
+ { 11, 31991, "", "=q4=Merciless Gladiator's Kodohide Tunic", "=ds=#s5#", "15000 #faction#" };
+ { 12, 31987, "", "=q4=Merciless Gladiator's Kodohide Gloves", "=ds=#s9#", "12000 #faction#" };
+ { 13, 31989, "", "=q4=Merciless Gladiator's Kodohide Legguards", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "=q1=#arenas2L#" };
+ { 17, 33691, "", "=q4=Vengeful Gladiator's Kodohide Helm", "=ds=#s1#", "" };
+ { 18, 33693, "", "=q4=Vengeful Gladiator's Kodohide Spaulders", "=ds=#s3#", "" };
+ { 19, 33694, "", "=q4=Vengeful Gladiator's Kodohide Tunic", "=ds=#s5#", "" };
+ { 20, 33690, "", "=q4=Vengeful Gladiator's Kodohide Gloves", "=ds=#s9#", "" };
+ { 21, 33692, "", "=q4=Vengeful Gladiator's Kodohide Legguards", "=ds=#s11#", "" };
+ { 23, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "=q1=#arenas4L#" };
+ { 24, 35023, "", "=q4=Brutal Gladiator's Kodohide Helm", "=ds=", "1875 #arena#", "" };
+ { 25, 35025, "", "=q4=Brutal Gladiator's Kodohide Spaulders", "=ds=", "1500 #arena#", "" };
+ { 26, 35026, "", "=q4=Brutal Gladiator's Kodohide Tunic", "=ds=", "1875 #arena#", "" };
+ { 27, 35022, "", "=q4=Brutal Gladiator's Kodohide Gloves", "=ds=", "1125 #arena#", "" };
+ { 28, 35024, "", "=q4=Brutal Gladiator's Kodohide Legguards", "=ds=", "1875 #arena#", "" };
+ };
+};
+
+AtlasLoot_Data["ArenaHunterTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "=q1=#arenas1L#" };
+ { 2, 28331, "", "=q4=Gladiator's Chain Helm", "=ds=#s1#" };
+ { 3, 28333, "", "=q4=Gladiator's Chain Spaulders", "=ds=#s3#" };
+ { 4, 28334, "", "=q4=Gladiator's Chain Armor", "=ds=#s5#" };
+ { 5, 28335, "", "=q4=Gladiator's Chain Gauntlets", "=ds=#s9#" };
+ { 6, 28332, "", "=q4=Gladiator's Chain Leggings", "=ds=#s11#" };
+ { 8, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "=q1=#arenas3L#" };
+ { 9, 31962, "", "=q4=Merciless Gladiator's Chain Helm", "=ds=#s1#", "15000 #faction#" };
+ { 10, 31964, "", "=q4=Merciless Gladiator's Chain Spaulders", "=ds=#s3#", "13000 #faction#" };
+ { 11, 31960, "", "=q4=Merciless Gladiator's Chain Armor", "=ds=#s5#", "15000 #faction#" };
+ { 12, 31961, "", "=q4=Merciless Gladiator's Chain Gauntlets", "=ds=#s9#", "12000 #faction#" };
+ { 13, 31963, "", "=q4=Merciless Gladiator's Chain Leggings", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "=q1=#arenas2L#" };
+ { 17, 33666, "", "=q4=Vengeful Gladiator's Chain Helm", "=ds=#s1#", "" };
+ { 18, 33668, "", "=q4=Vengeful Gladiator's Chain Spaulders", "=ds=#s3#", "" };
+ { 19, 33664, "", "=q4=Vengeful Gladiator's Chain Armor", "=ds=#s5#", "" };
+ { 20, 33665, "", "=q4=Vengeful Gladiator's Chain Gauntlets", "=ds=#s9#", "" };
+ { 21, 33667, "", "=q4=Vengeful Gladiator's Chain Leggings", "=ds=#s11#", "" };
+ { 23, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "=q1=#arenas4L#" };
+ { 24, 34992, "", "=q4=Brutal Gladiator's Chain Helm", "=ds=", "1875 #arena#", "" };
+ { 25, 34994, "", "=q4=Brutal Gladiator's Chain Spaulders", "=ds=", "1500 #arena#", "" };
+ { 26, 34990, "", "=q4=Brutal Gladiator's Chain Armor", "=ds=", "1875 #arena#", "" };
+ { 27, 34991, "", "=q4=Brutal Gladiator's Chain Gauntlets", "=ds=", "1125 #arena#", "" };
+ { 28, 34993, "", "=q4=Brutal Gladiator's Chain Leggings", "=ds=", "1875 #arena#", "" };
+ };
+};
+
+
+AtlasLoot_Data["ArenaMageTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "=q1=#arenas1L#" };
+ { 2, 25855, "", "=q4=Gladiator's Silk Cowl", "=ds=#s1#" };
+ { 3, 25854, "", "=q4=Gladiator's Silk Amice", "=ds=#s3#" };
+ { 4, 25856, "", "=q4=Gladiator's Silk Raiment", "=ds=#s5#" };
+ { 5, 25857, "", "=q4=Gladiator's Silk Handguards", "=ds=#s9#" };
+ { 6, 25858, "", "=q4=Gladiator's Silk Trousers", "=ds=#s11#" };
+ { 8, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "=q1=#arenas3L#" };
+ { 9, 32048, "", "=q4=Merciless Gladiator's Silk Cowl", "=ds=#s1#", "15000 #faction#" };
+ { 10, 32047, "", "=q4=Merciless Gladiator's Silk Amice", "=ds=#s3#", "13000 #faction#" };
+ { 11, 32050, "", "=q4=Merciless Gladiator's Silk Raiment", "=ds=#s5#", "15000 #faction#" };
+ { 12, 32049, "", "=q4=Merciless Gladiator's Silk Handguards", "=ds=#s9#", "12000 #faction#" };
+ { 13, 32051, "", "=q4=Merciless Gladiator's Silk Trousers", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "=q1=#arenas2L#" };
+ { 17, 33758, "", "=q4=Vengeful Gladiator's Silk Cowl", "=ds=#s1#", "" };
+ { 18, 33757, "", "=q4=Vengeful Gladiator's Silk Amice", "=ds=#s3#", "" };
+ { 19, 33760, "", "=q4=Vengeful Gladiator's Silk Raiment", "=ds=#s5#", "" };
+ { 20, 33759, "", "=q4=Vengeful Gladiator's Silk Handguards", "=ds=#s9#", "" };
+ { 21, 33761, "", "=q4=Vengeful Gladiator's Silk Trousers", "=ds=#s11#", "" };
+ { 23, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "=q1=#arenas4L#" };
+ { 24, 35097, "", "=q4=Brutal Gladiator's Silk Cowl", "=ds=", "1875 #arena#", "" };
+ { 25, 35096, "", "=q4=Brutal Gladiator's Silk Amice", "=ds=", "1500 #arena#", "" };
+ { 26, 35099, "", "=q4=Brutal Gladiator's Silk Raiment", "=ds=", "1875 #arena#", "" };
+ { 27, 35098, "", "=q4=Brutal Gladiator's Silk Handguards", "=ds=", "1125 #arena#", "" };
+ { 28, 35100, "", "=q4=Brutal Gladiator's Silk Trousers", "=ds=", "1875 #arena#", "" };
+ };
+};
+
+
+AtlasLoot_Data["ArenaPaladinTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
+ {
+ Name = AL["Protection"];
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#arenas4_1#", "=q1=#arenas1L#" };
+ { 2, 27704, "", "=q4=Gladiator's Lamellar Helm", "=ds=#s1#" };
+ { 3, 27706, "", "=q4=Gladiator's Lamellar Shoulders", "=ds=#s3#" };
+ { 4, 27702, "", "=q4=Gladiator's Lamellar Chestpiece", "=ds=#s5#" };
+ { 5, 27703, "", "=q4=Gladiator's Lamellar Gauntlets", "=ds=#s9#" };
+ { 6, 27705, "", "=q4=Gladiator's Lamellar Legguards", "=ds=#s11#" };
+ { 8, 0, "Spell_Holy_SealOfMight", "=q6=#arenas4_1#", "=q1=#arenas3L#" };
+ { 9, 31997, "", "=q4=Merciless Gladiator's Lamellar Helm", "=ds=#s1#", "15000 #faction#" };
+ { 10, 31996, "", "=q4=Merciless Gladiator's Lamellar Shoulders", "=ds=#s3#", "13000 #faction#" };
+ { 11, 31992, "", "=q4=Merciless Gladiator's Lamellar Chestpiece", "=ds=#s5#", "15000 #faction#" };
+ { 12, 31993, "", "=q4=Merciless Gladiator's Lamellar Gauntlets", "=ds=#s9#", "12000 #faction#" };
+ { 13, 31995, "", "=q4=Merciless Gladiator's Lamellar Legguards", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_Holy_SealOfMight", "=q6=#arenas4_1#", "=q1=#arenas2L#" };
+ { 17, 33697, "", "=q4=Vengeful Gladiator's Lamellar Helm", "=ds=#s1#", "" };
+ { 18, 33699, "", "=q4=Vengeful Gladiator's Lamellar Shoulders", "=ds=#s3#", "" };
+ { 19, 33695, "", "=q4=Vengeful Gladiator's Lamellar Chestpiece", "=ds=#s5#", "" };
+ { 20, 33696, "", "=q4=Vengeful Gladiator's Lamellar Gauntlets", "=ds=#s9#", "" };
+ { 21, 33698, "", "=q4=Vengeful Gladiator's Lamellar Legguards", "=ds=#s11#", "" };
+ { 23, 0, "Spell_Holy_SealOfMight", "=q6=#arenas4_1#", "=q1=#arenas4L#" };
+ { 24, 35029, "", "=q4=Brutal Gladiator's Lamellar Helm", "=ds=", "1875 #arena#", "" };
+ { 25, 35031, "", "=q4=Brutal Gladiator's Lamellar Shoulders", "=ds=", "1500 #arena#", "" };
+ { 26, 35027, "", "=q4=Brutal Gladiator's Lamellar Chestpiece", "=ds=", "1875 #arena#", "" };
+ { 27, 35028, "", "=q4=Brutal Gladiator's Lamellar Gauntlets", "=ds=", "1125 #arena#", "" };
+ { 28, 35030, "", "=q4=Brutal Gladiator's Lamellar Legguards", "=ds=", "1875 #arena#", "" };
+ };
+ {
+ Name = AL["Retribution"];
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "=q1=#arenas1L#" };
+ { 2, 27881, "", "=q4=Gladiator's Scaled Helm", "=ds=#s1#" };
+ { 3, 27883, "", "=q4=Gladiator's Scaled Shoulders", "=ds=#s3#" };
+ { 4, 27879, "", "=q4=Gladiator's Scaled Chestpiece", "=ds=#s5#" };
+ { 5, 27880, "", "=q4=Gladiator's Scaled Gauntlets", "=ds=#s9#" };
+ { 6, 27882, "", "=q4=Gladiator's Scaled Legguards", "=ds=#s11#" };
+ { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "=q1=#arenas3L#" };
+ { 9, 32041, "", "=q4=Merciless Gladiator's Scaled Helm", "=ds=#s1#", "15000 #faction#" };
+ { 10, 32043, "", "=q4=Merciless Gladiator's Scaled Shoulders", "=ds=#s3#", "13000 #faction#" };
+ { 11, 32039, "", "=q4=Merciless Gladiator's Scaled Chestpiece", "=ds=#s5#", "15000 #faction#" };
+ { 12, 32040, "", "=q4=Merciless Gladiator's Scaled Gauntlets", "=ds=#s9#", "12000 #faction#" };
+ { 13, 32042, "", "=q4=Merciless Gladiator's Scaled Legguards", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "=q1=#arenas2L#" };
+ { 17, 33751, "", "=q4=Vengeful Gladiator's Scaled Helm", "=ds=#s1#", "" };
+ { 18, 33753, "", "=q4=Vengeful Gladiator's Scaled Shoulders", "=ds=#s3#", "" };
+ { 19, 33749, "", "=q4=Vengeful Gladiator's Scaled Chestpiece", "=ds=#s5#", "" };
+ { 20, 33750, "", "=q4=Vengeful Gladiator's Scaled Gauntlets", "=ds=#s9#", "" };
+ { 21, 33752, "", "=q4=Vengeful Gladiator's Scaled Legguards", "=ds=#s11#", "" };
+ { 23, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "=q1=#arenas4L#" };
+ { 24, 35090, "", "=q4=Brutal Gladiator's Scaled Helm", "=ds=", "1875 #arena#", "" };
+ { 25, 35092, "", "=q4=Brutal Gladiator's Scaled Shoulders", "=ds=", "1500 #arena#", "" };
+ { 26, 35088, "", "=q4=Brutal Gladiator's Scaled Chestpiece", "=ds=", "1875 #arena#", "" };
+ { 27, 35089, "", "=q4=Brutal Gladiator's Scaled Gauntlets", "=ds=", "1125 #arena#", "" };
+ { 28, 35091, "", "=q4=Brutal Gladiator's Scaled Legguards", "=ds=", "1875 #arena#", "" };
+ };
+ {
+ Name = AL["Holy"];
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "=q1=#arenas1L#" };
+ { 2, 31616, "", "=q4=Gladiator's Ornamented Headcover", "=ds=#s1#" };
+ { 3, 31619, "", "=q4=Gladiator's Ornamented Spaulders", "=ds=#s3#" };
+ { 4, 31613, "", "=q4=Gladiator's Ornamented Chestguard", "=ds=#s5#" };
+ { 5, 31614, "", "=q4=Gladiator's Ornamented Gloves", "=ds=#s9#" };
+ { 6, 31618, "", "=q4=Gladiator's Ornamented Legplates", "=ds=#s11#" };
+ { 8, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "=q1=#arenas3L#" };
+ { 9, 32022, "", "=q4=Merciless Gladiator's Ornamented Headcover", "=ds=#s1#", "15000 #faction#" };
+ { 10, 32024, "", "=q4=Merciless Gladiator's Ornamented Spaulders", "=ds=#s3#", "13000 #faction#" };
+ { 11, 32020, "", "=q4=Merciless Gladiator's Ornamented Chestguard", "=ds=#s5#", "15000 #faction#" };
+ { 12, 32021, "", "=q4=Merciless Gladiator's Ornamented Gloves", "=ds=#s9#", "12000 #faction#" };
+ { 13, 32023, "", "=q4=Merciless Gladiator's Ornamented Legplates", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "=q1=#arenas2L#" };
+ { 17, 33724, "", "=q4=Vengeful Gladiator's Ornamented Headcover", "=ds=#s1#", "" };
+ { 18, 33726, "", "=q4=Vengeful Gladiator's Ornamented Spaulders", "=ds=#s3#", "" };
+ { 19, 33722, "", "=q4=Vengeful Gladiator's Ornamented Chestguard", "=ds=#s5#", "" };
+ { 20, 33723, "", "=q4=Vengeful Gladiator's Ornamented Gloves", "=ds=#s9#", "" };
+ { 21, 33725, "", "=q4=Vengeful Gladiator's Ornamented Legplates", "=ds=#s11#", "" };
+ { 23, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "=q1=#arenas4L#" };
+ { 24, 35061, "", "=q4=Brutal Gladiator's Ornamented Headcover", "=ds=", "1875 #arena#", "" };
+ { 25, 35063, "", "=q4=Brutal Gladiator's Ornamented Spaulders", "=ds=", "1500 #arena#", "" };
+ { 26, 35059, "", "=q4=Brutal Gladiator's Ornamented Chestguard", "=ds=", "1875 #arena#", "" };
+ { 27, 35060, "", "=q4=Brutal Gladiator's Ornamented Gloves", "=ds=", "1125 #arena#", "" };
+ { 28, 35062, "", "=q4=Brutal Gladiator's Ornamented Legplates", "=ds=", "1875 #arena#", "" };
+ };
+};
+
+AtlasLoot_Data["ArenaPriestTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
+ {
+ Name = AL["Shadow"];
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "=q1=#arenas1L#" };
+ { 2, 27708, "", "=q4=Gladiator's Satin Hood", "=ds=#s1#" };
+ { 3, 27710, "", "=q4=Gladiator's Satin Mantle", "=ds=#s3#" };
+ { 4, 27711, "", "=q4=Gladiator's Satin Robe", "=ds=#s5#" };
+ { 5, 27707, "", "=q4=Gladiator's Satin Gloves", "=ds=#s9#" };
+ { 6, 27709, "", "=q4=Gladiator's Satin Leggings", "=ds=#s11#" };
+ { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "=q1=#arenas3L#" };
+ { 9, 32035, "", "=q4=Merciless Gladiator's Satin Hood", "=ds=#s1#", "15000 #faction#" };
+ { 10, 32037, "", "=q4=Merciless Gladiator's Satin Mantle", "=ds=#s3#", "13000 #faction#" };
+ { 11, 32038, "", "=q4=Merciless Gladiator's Satin Robe", "=ds=#s5#", "15000 #faction#" };
+ { 12, 32034, "", "=q4=Merciless Gladiator's Satin Gloves", "=ds=#s9#", "12000 #faction#" };
+ { 13, 32036, "", "=q4=Merciless Gladiator's Satin Leggings", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "=q1=#arenas2L#" };
+ { 17, 33745, "", "=q4=Vengeful Gladiator's Satin Hood", "=ds=#s1#", "" };
+ { 18, 33747, "", "=q4=Vengeful Gladiator's Satin Mantle", "=ds=#s3#", "" };
+ { 19, 33748, "", "=q4=Vengeful Gladiator's Satin Robe", "=ds=#s5#", "" };
+ { 20, 33744, "", "=q4=Vengeful Gladiator's Satin Gloves", "=ds=#s9#", "" };
+ { 21, 33746, "", "=q4=Vengeful Gladiator's Satin Leggings", "=ds=#s11#", "" };
+ { 23, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "=q1=#arenas4L#" };
+ { 24, 35084, "", "=q4=Brutal Gladiator's Satin Hood", "=ds=", "1875 #arena#", "" };
+ { 25, 35086, "", "=q4=Brutal Gladiator's Satin Mantle", "=ds=", "1500 #arena#", "" };
+ { 26, 35087, "", "=q4=Brutal Gladiator's Satin Robe", "=ds=", "1875 #arena#", "" };
+ { 27, 35083, "", "=q4=Brutal Gladiator's Satin Gloves", "=ds=", "1125 #arena#", "" };
+ { 28, 35085, "", "=q4=Brutal Gladiator's Satin Leggings", "=ds=", "1875 #arena#", "" };
+ };
+ {
+ Name = AL["Holy"];
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "=q1=#arenas1L#" };
+ { 2, 31410, "", "=q4=Gladiator's Mooncloth Hood", "=ds=#s1#" };
+ { 3, 31412, "", "=q4=Gladiator's Mooncloth Mantle", "=ds=#s3#" };
+ { 4, 31413, "", "=q4=Gladiator's Mooncloth Robe", "=ds=#s5#" };
+ { 5, 31409, "", "=q4=Gladiator's Mooncloth Gloves", "=ds=#s9#" };
+ { 6, 31411, "", "=q4=Gladiator's Mooncloth Leggings", "=ds=#s11#" };
+ { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "=q1=#arenas3L#" };
+ { 9, 32016, "", "=q4=Merciless Gladiator's Mooncloth Hood", "=ds=#s1#", "15000 #faction#" };
+ { 10, 32018, "", "=q4=Merciless Gladiator's Mooncloth Mantle", "=ds=#s3#", "13000 #faction#" };
+ { 11, 32019, "", "=q4=Merciless Gladiator's Mooncloth Robe", "=ds=#s5#", "15000 #faction#" };
+ { 12, 32015, "", "=q4=Merciless Gladiator's Mooncloth Gloves", "=ds=#s9#", "12000 #faction#" };
+ { 13, 32017, "", "=q4=Merciless Gladiator's Mooncloth Leggings", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "=q1=#arenas2L#" };
+ { 17, 33718, "", "=q4=Vengeful Gladiator's Mooncloth Hood", "=ds=#s1#", "" };
+ { 18, 33720, "", "=q4=Vengeful Gladiator's Mooncloth Mantle", "=ds=#s3#", "" };
+ { 19, 33721, "", "=q4=Vengeful Gladiator's Mooncloth Robe", "=ds=#s5#", "" };
+ { 20, 33717, "", "=q4=Vengeful Gladiator's Mooncloth Gloves", "=ds=#s9#", "" };
+ { 21, 33719, "", "=q4=Vengeful Gladiator's Mooncloth Leggings", "=ds=#s11#", "" };
+ { 23, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "=q1=#arenas4L#" };
+ { 24, 35054, "", "=q4=Brutal Gladiator's Mooncloth Hood", "=ds=", "1875 #arena#", "" };
+ { 25, 35056, "", "=q4=Brutal Gladiator's Mooncloth Mantle", "=ds=", "1500 #arena#", "" };
+ { 26, 35057, "", "=q4=Brutal Gladiator's Mooncloth Robe", "=ds=", "1875 #arena#", "" };
+ { 27, 35053, "", "=q4=Brutal Gladiator's Mooncloth Gloves", "=ds=", "1125 #arena#", "" };
+ { 28, 35055, "", "=q4=Brutal Gladiator's Mooncloth Leggings", "=ds=", "1875 #arena#", "" };
+ };
+};
+
+AtlasLoot_Data["ArenaRogueTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 0, "Ability_BackStab", "=q6=#arenas6#", "=q1=#arenas1L#" };
+ { 2, 25830, "", "=q4=Gladiator's Leather Helm", "=ds=#s1#" };
+ { 3, 25832, "", "=q4=Gladiator's Leather Spaulders", "=ds=#s3#" };
+ { 4, 25831, "", "=q4=Gladiator's Leather Tunic", "=ds=#s5#" };
+ { 5, 25834, "", "=q4=Gladiator's Leather Gloves", "=ds=#s9#" };
+ { 6, 25833, "", "=q4=Gladiator's Leather Legguards", "=ds=#s11#" };
+ { 8, 0, "Ability_BackStab", "=q6=#arenas6#", "=q1=#arenas3L#" };
+ { 9, 31999, "", "=q4=Merciless Gladiator's Leather Helm", "=ds=#s1#", "15000 #faction#" };
+ { 10, 32001, "", "=q4=Merciless Gladiator's Leather Spaulders", "=ds=#s3#", "13000 #faction#" };
+ { 11, 32002, "", "=q4=Merciless Gladiator's Leather Tunic", "=ds=#s5#", "15000 #faction#" };
+ { 12, 31998, "", "=q4=Merciless Gladiator's Leather Gloves", "=ds=#s9#", "12000 #faction#" };
+ { 13, 32000, "", "=q4=Merciless Gladiator's Leather Legguards", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Ability_BackStab", "=q6=#arenas6#", "=q1=#arenas2L#" };
+ { 17, 33701, "", "=q4=Vengeful Gladiator's Leather Helm", "=ds=#s1#", "" };
+ { 18, 33703, "", "=q4=Vengeful Gladiator's Leather Spaulders", "=ds=#s3#", "" };
+ { 19, 33704, "", "=q4=Vengeful Gladiator's Leather Tunic", "=ds=#s5#", "" };
+ { 20, 33700, "", "=q4=Vengeful Gladiator's Leather Gloves", "=ds=#s9#", "" };
+ { 21, 33702, "", "=q4=Vengeful Gladiator's Leather Legguards", "=ds=#s11#", "" };
+ { 23, 0, "Ability_BackStab", "=q6=#arenas6#", "=q1=#arenas4L#" };
+ { 24, 35033, "", "=q4=Brutal Gladiator's Leather Helm", "=ds=", "1875 #arena#", "" };
+ { 25, 35035, "", "=q4=Brutal Gladiator's Leather Spaulders", "=ds=", "1500 #arena#", "" };
+ { 26, 35036, "", "=q4=Brutal Gladiator's Leather Tunic", "=ds=", "1875 #arena#", "" };
+ { 27, 35032, "", "=q4=Brutal Gladiator's Leather Gloves", "=ds=", "1125 #arena#", "" };
+ { 28, 35034, "", "=q4=Brutal Gladiator's Leather Legguards", "=ds=", "1875 #arena#", "" };
+ };
+};
+
+AtlasLoot_Data["ArenaWarlockTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ {
+ Name = AL["Demonology"];
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_1#", "=q1=#arenas1L#" };
+ { 2, 24553, "", "=q4=Gladiator's Dreadweave Hood", "=ds=#s1#" };
+ { 3, 24554, "", "=q4=Gladiator's Dreadweave Mantle", "=ds=#s3#" };
+ { 4, 24552, "", "=q4=Gladiator's Dreadweave Robe", "=ds=#s5#" };
+ { 5, 24556, "", "=q4=Gladiator's Dreadweave Gloves", "=ds=#s9#" };
+ { 6, 24555, "", "=q4=Gladiator's Dreadweave Leggings", "=ds=#s11#" };
+ { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_1#", "=q1=#arenas3L#" };
+ { 9, 31974, "", "=q4=Merciless Gladiator's Dreadweave Hood", "=ds=#s1#", "15000 #faction#" };
+ { 10, 31976, "", "=q4=Merciless Gladiator's Dreadweave Mantle", "=ds=#s3#", "13000 #faction#" };
+ { 11, 31977, "", "=q4=Merciless Gladiator's Dreadweave Robe", "=ds=#s5#", "15000 #faction#" };
+ { 12, 31973, "", "=q4=Merciless Gladiator's Dreadweave Gloves", "=ds=#s9#", "12000 #faction#" };
+ { 13, 31975, "", "=q4=Merciless Gladiator's Dreadweave Leggings", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_1#", "=q1=#arenas2L#" };
+ { 17, 33677, "", "=q4=Vengeful Gladiator's Dreadweave Hood", "=ds=#s1#", "" };
+ { 18, 33679, "", "=q4=Vengeful Gladiator's Dreadweave Mantle", "=ds=#s3#", "" };
+ { 19, 33680, "", "=q4=Vengeful Gladiator's Dreadweave Robe", "=ds=#s5#", "" };
+ { 20, 33676, "", "=q4=Vengeful Gladiator's Dreadweave Gloves", "=ds=#s9#", "" };
+ { 21, 33678, "", "=q4=Vengeful Gladiator's Dreadweave Leggings", "=ds=#s11#", "" };
+ { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_1#", "=q1=#arenas4L#" };
+ { 24, 35004, "", "=q4=Brutal Gladiator's Dreadweave Hood", "=ds=", "1875 #arena#", "" };
+ { 25, 35006, "", "=q4=Brutal Gladiator's Dreadweave Mantle", "=ds=", "1500 #arena#", "" };
+ { 26, 35007, "", "=q4=Brutal Gladiator's Dreadweave Robe", "=ds=", "1875 #arena#", "" };
+ { 27, 35003, "", "=q4=Brutal Gladiator's Dreadweave Gloves", "=ds=", "1125 #arena#", "" };
+ { 28, 35005, "", "=q4=Brutal Gladiator's Dreadweave Leggings", "=ds=", "1875 #arena#", "" };
+ };
+ {
+ Name = AL["Destruction"];
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "=q1=#arenas1L#" };
+ { 2, 30187, "", "=q4=Gladiator's Felweave Cowl", "=ds=#s1#" };
+ { 3, 30186, "", "=q4=Gladiator's Felweave Amice", "=ds=#s3#" };
+ { 4, 30200, "", "=q4=Gladiator's Felweave Raiment", "=ds=#s5#" };
+ { 5, 30188, "", "=q4=Gladiator's Felweave Handguards", "=ds=#s9#" };
+ { 6, 30201, "", "=q4=Gladiator's Felweave Trousers", "=ds=#s11#" };
+ { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "=q1=#arenas3L#" };
+ { 9, 31980, "", "=q4=Merciless Gladiator's Felweave Cowl", "=ds=#s1#", "15000 #faction#" };
+ { 10, 31979, "", "=q4=Merciless Gladiator's Felweave Amice", "=ds=#s3#", "13000 #faction#" };
+ { 11, 31982, "", "=q4=Merciless Gladiator's Felweave Raiment", "=ds=#s5#", "15000 #faction#" };
+ { 12, 31981, "", "=q4=Merciless Gladiator's Felweave Handguards", "=ds=#s9#", "12000 #faction#" };
+ { 13, 31983, "", "=q4=Merciless Gladiator's Felweave Trousers", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "=q1=#arenas2L#" };
+ { 17, 33683, "", "=q4=Vengeful Gladiator's Felweave Cowl", "=ds=#s1#", "" };
+ { 18, 33682, "", "=q4=Vengeful Gladiator's Felweave Amice", "=ds=#s3#", "" };
+ { 19, 33685, "", "=q4=Vengeful Gladiator's Felweave Raiment", "=ds=#s5#", "" };
+ { 20, 33684, "", "=q4=Vengeful Gladiator's Felweave Handguards", "=ds=#s9#", "" };
+ { 21, 33686, "", "=q4=Vengeful Gladiator's Felweave Trousers", "=ds=#s11#", "" };
+ { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "=q1=#arenas4L#" };
+ { 24, 35010, "", "=q4=Brutal Gladiator's Felweave Cowl", "=ds=", "1875 #arena#", "" };
+ { 25, 35009, "", "=q4=Brutal Gladiator's Felweave Amice", "=ds=", "1500 #arena#", "" };
+ { 26, 35012, "", "=q4=Brutal Gladiator's Felweave Raiment", "=ds=", "1875 #arena#", "" };
+ { 27, 35011, "", "=q4=Brutal Gladiator's Felweave Handguards", "=ds=", "1125 #arena#", "" };
+ { 28, 35013, "", "=q4=Brutal Gladiator's Felweave Trousers", "=ds=", "1875 #arena#", "" };
+ };
+};
+
+
+AtlasLoot_Data["ArenaShamanTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
+ {
+ Name = AL["Enhancement"];
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "=q1=#arenas1L#" };
+ { 2, 25998, "", "=q4=Gladiator's Linked Helm", "=ds=#s1#" };
+ { 3, 25999, "", "=q4=Gladiator's Linked Spaulders", "=ds=#s3#" };
+ { 4, 25997, "", "=q4=Gladiator's Linked Armor", "=ds=#s5#" };
+ { 5, 26000, "", "=q4=Gladiator's Linked Gauntlets", "=ds=#s9#" };
+ { 6, 26001, "", "=q4=Gladiator's Linked Leggings", "=ds=#s11#" };
+ { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "=q1=#arenas3L#" };
+ { 9, 32006, "", "=q4=Merciless Gladiator's Linked Helm", "=ds=#s1#", "15000 #faction#" };
+ { 10, 32008, "", "=q4=Merciless Gladiator's Linked Spaulders", "=ds=#s3#", "13000 #faction#" };
+ { 11, 32004, "", "=q4=Merciless Gladiator's Linked Armor", "=ds=#s5#", "15000 #faction#" };
+ { 12, 32005, "", "=q4=Merciless Gladiator's Linked Gauntlets", "=ds=#s9#", "12000 #faction#" };
+ { 13, 32007, "", "=q4=Merciless Gladiator's Linked Leggings", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "=q1=#arenas2L#" };
+ { 17, 33708, "", "=q4=Vengeful Gladiator's Linked Helm", "=ds=#s1#", "" };
+ { 18, 33710, "", "=q4=Vengeful Gladiator's Linked Spaulders", "=ds=#s3#", "" };
+ { 19, 33706, "", "=q4=Vengeful Gladiator's Linked Armor", "=ds=#s5#", "" };
+ { 20, 33707, "", "=q4=Vengeful Gladiator's Linked Gauntlets", "=ds=#s9#", "" };
+ { 21, 33709, "", "=q4=Vengeful Gladiator's Linked Leggings", "=ds=#s11#", "" };
+ { 23, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "=q1=#arenas4L#" };
+ { 24, 35044, "", "=q4=Brutal Gladiator's Linked Helm", "=ds=", "1875 #arena#", "" };
+ { 25, 35046, "", "=q4=Brutal Gladiator's Linked Spaulders", "=ds=", "1500 #arena#", "" };
+ { 26, 35042, "", "=q4=Brutal Gladiator's Linked Armor", "=ds=", "1875 #arena#", "" };
+ { 27, 35043, "", "=q4=Brutal Gladiator's Linked Gauntlets", "=ds=", "1125 #arena#", "" };
+ { 28, 35045, "", "=q4=Brutal Gladiator's Linked Leggings", "=ds=", "1875 #arena#", "" };
+ };
+ {
+ Name = AL["Elemental"];
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "=q1=#arenas1L#" };
+ { 2, 27471, "", "=q4=Gladiator's Mail Helm", "=ds=#s1#" };
+ { 3, 27473, "", "=q4=Gladiator's Mail Spaulders", "=ds=#s3#" };
+ { 4, 27469, "", "=q4=Gladiator's Mail Armor", "=ds=#s5#" };
+ { 5, 27470, "", "=q4=Gladiator's Mail Gauntlets", "=ds=#s9#" };
+ { 6, 27472, "", "=q4=Gladiator's Mail Leggings", "=ds=#s11#" };
+ { 8, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "=q1=#arenas3L#" };
+ { 9, 32011, "", "=q4=Merciless Gladiator's Mail Helm", "=ds=#s1#", "" };
+ { 10, 32013, "", "=q4=Merciless Gladiator's Mail Spaulders", "=ds=#s3#", "13000 #faction#" };
+ { 11, 32009, "", "=q4=Merciless Gladiator's Mail Armor", "=ds=#s5#", "15000 #faction#" };
+ { 12, 32010, "", "=q4=Merciless Gladiator's Mail Gauntlets", "=ds=#s9#", "12000 #faction#" };
+ { 13, 32012, "", "=q4=Merciless Gladiator's Mail Leggings", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "=q1=#arenas2L#" };
+ { 17, 33713, "", "=q4=Vengeful Gladiator's Mail Helm", "=ds=#s1#", "" };
+ { 18, 33715, "", "=q4=Vengeful Gladiator's Mail Spaulders", "=ds=#s3#", "" };
+ { 19, 33711, "", "=q4=Vengeful Gladiator's Mail Armor", "=ds=#s5#", "" };
+ { 20, 33712, "", "=q4=Vengeful Gladiator's Mail Gauntlets", "=ds=#s9#", "" };
+ { 21, 33714, "", "=q4=Vengeful Gladiator's Mail Leggings", "=ds=#s11#", "" };
+ { 23, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "=q1=#arenas4L#" };
+ { 24, 35050, "", "=q4=Brutal Gladiator's Mail Helm", "=ds=", "1875 #arena#", "" };
+ { 25, 35052, "", "=q4=Brutal Gladiator's Mail Spaulders", "=ds=", "1500 #arena#", "" };
+ { 26, 35048, "", "=q4=Brutal Gladiator's Mail Armor", "=ds=", "1875 #arena#", "" };
+ { 27, 35049, "", "=q4=Brutal Gladiator's Mail Gauntlets", "=ds=", "1125 #arena#", "" };
+ { 28, 35051, "", "=q4=Brutal Gladiator's Mail Leggings", "=ds=", "1875 #arena#", "" };
+ };
+ {
+ Name = AL["Restoration"];
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "=q1=#arenas1L#" };
+ { 2, 31400, "", "=q4=Gladiator's Ringmail Helm", "=ds=#s1#" };
+ { 3, 31407, "", "=q4=Gladiator's Ringmail Spaulders", "=ds=#s3#" };
+ { 4, 31396, "", "=q4=Gladiator's Ringmail Armor", "=ds=#s5#" };
+ { 5, 31397, "", "=q4=Gladiator's Ringmail Gauntlets", "=ds=#s9#" };
+ { 6, 31406, "", "=q4=Gladiator's Ringmail Leggings", "=ds=#s11#" };
+ { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "=q1=#arenas3L#" };
+ { 9, 32031, "", "=q4=Merciless Gladiator's Ringmail Helm", "=ds=#s1#", "15000 #faction#" };
+ { 10, 32033, "", "=q4=Merciless Gladiator's Ringmail Spaulders", "=ds=#s3#", "13000 #faction#" };
+ { 11, 32029, "", "=q4=Merciless Gladiator's Ringmail Armor", "=ds=#s5#", "15000 #faction#" };
+ { 12, 32030, "", "=q4=Merciless Gladiator's Ringmail Gauntlets", "=ds=#s9#", "12000 #faction#" };
+ { 13, 32032, "", "=q4=Merciless Gladiator's Ringmail Leggings", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "=q1=#arenas2L#" };
+ { 17, 33740, "", "=q4=Vengeful Gladiator's Ringmail Helm", "=ds=#s1#", "" };
+ { 18, 33742, "", "=q4=Vengeful Gladiator's Ringmail Spaulders", "=ds=#s3#", "" };
+ { 19, 33738, "", "=q4=Vengeful Gladiator's Ringmail Armor", "=ds=#s5#", "" };
+ { 20, 33739, "", "=q4=Vengeful Gladiator's Ringmail Gauntlets", "=ds=#s9#", "" };
+ { 21, 33741, "", "=q4=Vengeful Gladiator's Ringmail Leggings", "=ds=#s11#", "" };
+ { 23, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "=q1=#arenas4L#" };
+ { 24, 35079, "", "=q4=Brutal Gladiator's Ringmail Helm", "=ds=", "1875 #arena#", "" };
+ { 25, 35081, "", "=q4=Brutal Gladiator's Ringmail Spaulders", "=ds=", "1500 #arena#", "" };
+ { 26, 35077, "", "=q4=Brutal Gladiator's Ringmail Armor", "=ds=", "1875 #arena#", "" };
+ { 27, 35078, "", "=q4=Brutal Gladiator's Ringmail Gauntlets", "=ds=", "1125 #arena#", "" };
+ { 28, 35080, "", "=q4=Brutal Gladiator's Ringmail Leggings", "=ds=", "1875 #arena#", "" };
+ };
+};
+
+AtlasLoot_Data["ArenaWarriorTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "=q1=#arenas1L#" };
+ { 2, 24545, "", "=q4=Gladiator's Plate Helm", "=ds=#s1#" };
+ { 3, 24546, "", "=q4=Gladiator's Plate Shoulders", "=ds=#s3#" };
+ { 4, 24544, "", "=q4=Gladiator's Plate Chestpiece", "=ds=#s5#" };
+ { 5, 24549, "", "=q4=Gladiator's Plate Gauntlets", "=ds=#s9#" };
+ { 6, 24547, "", "=q4=Gladiator's Plate Legguards", "=ds=#s11#" };
+ { 8, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "=q1=#arenas3L#" };
+ { 9, 30488, "", "=q4=Merciless Gladiator's Plate Helm", "=ds=#s1#", "15000 #faction#" };
+ { 10, 30490, "", "=q4=Merciless Gladiator's Plate Shoulders", "=ds=#s3#", "13000 #faction#" };
+ { 11, 30486, "", "=q4=Merciless Gladiator's Plate Chestpiece", "=ds=#s5#", "15000 #faction#" };
+ { 12, 30487, "", "=q4=Merciless Gladiator's Plate Gauntlets", "=ds=#s9#", "12000 #faction#" };
+ { 13, 30489, "", "=q4=Merciless Gladiator's Plate Legguards", "=ds=#s11#", "15000 #faction#" };
+ { 16, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "=q1=#arenas2L#" };
+ { 17, 33730, "", "=q4=Vengeful Gladiator's Plate Helm", "=ds=#s1#", "" };
+ { 18, 33732, "", "=q4=Vengeful Gladiator's Plate Shoulders", "=ds=#s3#", "" };
+ { 19, 33728, "", "=q4=Vengeful Gladiator's Plate Chestpiece", "=ds=#s5#", "" };
+ { 20, 33729, "", "=q4=Vengeful Gladiator's Plate Gauntlets", "=ds=#s9#", "" };
+ { 21, 33731, "", "=q4=Vengeful Gladiator's Plate Legguards", "=ds=#s11#", "" };
+ { 23, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "=q1=#arenas4L#" };
+ { 24, 35068, "", "=q4=Brutal Gladiator's Plate Helm", "=ds=", "1875 #arena#", "" };
+ { 25, 35070, "", "=q4=Brutal Gladiator's Plate Shoulders", "=ds=", "1500 #arena#", "" };
+ { 26, 35066, "", "=q4=Brutal Gladiator's Plate Chestpiece", "=ds=", "1875 #arena#", "" };
+ { 27, 35067, "", "=q4=Brutal Gladiator's Plate Gauntlets", "=ds=", "1125 #arena#", "" };
+ { 28, 35069, "", "=q4=Brutal Gladiator's Plate Legguards", "=ds=", "1875 #arena#", "" };
+ };
+};
+
+--------------------------------
+--- Arena Seasons - Weapons ---
+--------------------------------
+AtlasLoot_Data["WeaponsTBC"] = {
+ Name = "Arena " .. AL["Weapons"];
+ {
+ Name = "Alliance";
+ { 1, 28953, "", "=q3=Grand Marshal's Right Ripper" };
+ { 2, 28947, "", "=q3=Grand Marshal's Left Ripper" };
+ { 3, 28957, "", "=q3=Grand Marshal's Spellblade" };
+ { 4, 28954, "", "=q3=Grand Marshal's Shanker" };
+ { 5, 28955, "", "=q3=Grand Marshal's Shiv" };
+ { 6, 28956, "", "=q3=Grand Marshal's Slicer" };
+ { 7, 28952, "", "=q3=Grand Marshal's Quickblade" };
+ { 8, 28943, "", "=q3=Grand Marshal's Warblade" };
+ { 9, 28944, "", "=q3=Grand Marshal's Cleaver" };
+ { 10, 28946, "", "=q3=Grand Marshal's Hacker" };
+ { 11, 28945, "", "=q3=Grand Marshal's Decapitator" };
+ { 12, 28951, "", "=q3=Grand Marshal's Pummeler" };
+ { 13, 28950, "", "=q3=Grand Marshal's Bonecracker" };
+ { 14, 28942, "", "=q3=Grand Marshal's Bonegrinder" };
+ { 15, 28948, "", "=q3=Grand Marshal's Maul" };
+ { 16, 28949, "", "=q3=Grand Marshal's Painsaw" };
+ { 17, 28959, "", "=q3=Grand Marshal's War Staff" };
+ { 18, 28940, "", "=q3=Grand Marshal's Barricade" };
+ { 19, 28960, "", "=q3=Grand Marshal's Heavy Crossbow" };
+ { 20, 28941, "", "=q3=Grand Marshal's Battletome" };
+ };
+ {
+ Name = "Horde";
+ { 1, 28928, "", "=q3=High Warlord's Right Ripper" };
+ { 2, 28922, "", "=q3=High Warlord's Left Ripper" };
+ { 3, 28931, "", "=q3=High Warlord's Spellblade" };
+ { 4, 28929, "", "=q3=High Warlord's Shanker" };
+ { 5, 28930, "", "=q3=High Warlord's Shiv" };
+ { 6, 28937, "", "=q3=High Warlord's Slicer" };
+ { 7, 28926, "", "=q3=High Warlord's Quickblade" };
+ { 8, 28293, "", "=q3=High Warlord's Claymore" };
+ { 9, 28920, "", "=q3=High Warlord's Cleaver" };
+ { 10, 28921, "", "=q3=High Warlord's Hacker" };
+ { 11, 28918, "", "=q3=High Warlord's Decapitator" };
+ { 12, 28925, "", "=q3=High Warlord's Pummeler" };
+ { 13, 28924, "", "=q3=High Warlord's Bonecracker" };
+ { 14, 28917, "", "=q3=High Warlord's Bonegrinder" };
+ { 15, 28919, "", "=q3=High Warlord's Maul" };
+ { 16, 28923, "", "=q3=High Warlord's Painsaw" };
+ { 17, 28935, "", "=q3=High Warlord's War Staff" };
+ { 18, 28939, "", "=q3=High Warlord's Barricade" };
+ { 19, 28933, "", "=q3=High Warlord's Heavy Crossbow" };
+ { 20, 28938, "", "=q3=High Warlord's Battletome" };
+ };
+ {
+ Name = "Weapons Season 1";
+ { 1, 28313, "", "=q4=Gladiator's Right Ripper", "=ds=", "2625 #arena#", "" };
+ { 2, 28314, "", "=q4=Gladiator's Left Ripper", "=ds=", "1125 #arena#", "" };
+ { 3, 28297, "", "=q4=Gladiator's Spellblade", "=ds=", "3150 #arena#", "" };
+ { 4, 28312, "", "=q4=Gladiator's Shanker", "=ds=", "2625 #arena#", "" };
+ { 5, 28310, "", "=q4=Gladiator's Shiv", "=ds=", "1125 #arena#", "" };
+ { 6, 28295, "", "=q4=Gladiator's Slicer", "=ds=", "2625 #arena#", "" };
+ { 7, 28307, "", "=q4=Gladiator's Quickblade", "=ds=", "1125 #arena#", "" };
+ { 8, 24550, "", "=q4=Gladiator's Greatsword", "=ds=", "3750 #arena#", "" };
+ { 9, 28308, "", "=q4=Gladiator's Cleaver", "=ds=", "2625 #arena#", "" };
+ { 10, 28309, "", "=q4=Gladiator's Hacker", "=ds=", "1125 #arena#", "" };
+ { 11, 28298, "", "=q4=Gladiator's Decapitator", "=ds=", "3750 #arena#", "" };
+ { 12, 28305, "", "=q4=Gladiator's Pummeler", "=ds=", "2625 #arena#", "" };
+ { 13, 28302, "", "=q4=Gladiator's Bonecracker", "=ds=", "1125 #arena#", "" };
+ { 14, 28299, "", "=q4=Gladiator's Bonegrinder", "=ds=", "3750 #arena#", "" };
+ { 15, 28476, "", "=q4=Gladiator's Maul", "=ds=", "3750 #arena#", "" };
+ { 16, 28300, "", "=q4=Gladiator's Painsaw", "=ds=", "3750 #arena#", "" };
+ { 17, 24557, "", "=q4=Gladiator's War Staff", "=ds=", "3750 #arena#", "" };
+ { 18, 28358, "", "=q4=Gladiator's Shield Wall", "=ds=", "1875 #arena#", "" };
+ { 19, 28319, "", "=q4=Gladiator's War Edge", "=ds=", "1000 #arena#", "" };
+ { 20, 28294, "", "=q4=Gladiator's Heavy Crossbow", "=ds=", "3750 #arena#", "" };
+ { 21, 28320, "", "=q4=Gladiator's Touch of Defeat", "=ds=", "1000 #arena#", "" };
+ { 22, 28346, "", "=q4=Gladiator's Endgame", "=ds=", "1125 #arena#", "" };
+ { 23, 32452, "", "=q4=Gladiator's Reprieve", "=ds=", "1125 #arena#", "" };
+ };
+ {
+ Name = "Weapons Season 1";
+ { 1, 33945, "", "=q4=Gladiator's Idol of Resolve", "=ds=", "1000 #arena#", "" };
+ { 2, 33942, "", "=q4=Gladiator's Idol of Steadfastness", "=ds=", "1000 #arena#", "" };
+ { 3, 28355, "", "=q4=Gladiator's Idol of Tenacity", "=ds=", "1000 #arena#", "" };
+ { 4, 33936, "", "=q4=Gladiator's Libram of Fortitude", "=ds=", "1000 #arena#", "" };
+ { 5, 28356, "", "=q4=Gladiator's Libram of Justice", "=ds=", "1000 #arena#", "" };
+ { 6, 33948, "", "=q4=Gladiator's Libram of Vengeance", "=ds=", "1000 #arena#", "" };
+ { 7, 33939, "", "=q4=Gladiator's Totem of Indomitability", "=ds=", "1000 #arena#", "" };
+ { 8, 33951, "", "=q4=Gladiator's Totem of Survival", "=ds=", "1000 #arena#", "" };
+ { 9, 28357, "", "=q4=Gladiator's Totem of the Third Wind", "=ds=", "1000 #arena#", "" };
+ };
+ {
+ Name = "Weapons Season 2";
+ { 1, 33737, "", "=q4=Vengeful Gladiator's Right Ripper", "=ds=", "2100 #arena#", "" };
+ { 2, 33705, "", "=q4=Vengeful Gladiator's Left Ripper", "=ds=", "900 #arena#", "" };
+ { 3, 34016, "", "=q4=Vengeful Gladiator's Left Render", "=ds=", "900 #arena#", "" };
+ { 4, 33763, "", "=q4=Vengeful Gladiator's Spellblade", "=ds=", "2520 #arena#", "" };
+ { 5, 33754, "", "=q4=Vengeful Gladiator's Shanker", "=ds=", "2100 #arena#", "" };
+ { 6, 33801, "", "=q4=Vengeful Gladiator's Mutilator", "=ds=", "900 #arena#", "" };
+ { 7, 33756, "", "=q4=Vengeful Gladiator's Shiv", "=ds=", "900 #arena#", "" };
+ { 8, 33762, "", "=q4=Vengeful Gladiator's Slicer", "=ds=", "2100 #arena#", "" };
+ { 9, 33734, "", "=q4=Vengeful Gladiator's Quickblade", "=ds=", "900 #arena#", "" };
+ { 10, 33688, "", "=q4=Vengeful Gladiator's Greatsword", "=ds=", "3000 #arena#", "" };
+ { 11, 33669, "", "=q4=Vengeful Gladiator's Cleaver", "=ds=", "2100 #arena#", "" };
+ { 12, 34015, "", "=q4=Vengeful Gladiator's Chopper", "=ds=", "900 #arena#", "" };
+ { 13, 33689, "", "=q4=Vengeful Gladiator's Hacker", "=ds=", "900 #arena#", "" };
+ { 14, 33670, "", "=q4=Vengeful Gladiator's Decapitator", "=ds=", "3000 #arena#", "" };
+ { 15, 34014, "", "=q4=Vengeful Gladiator's Waraxe", "=ds=", "800 #arena#", "" };
+ { 16, 33687, "", "=q4=Vengeful Gladiator's Gavel", "=ds=", "2520 #arena#", "" };
+ { 17, 33743, "", "=q4=Vengeful Gladiator's Salvation", "=ds=", "2520 #arena#", "" };
+ { 18, 33733, "", "=q4=Vengeful Gladiator's Pummeler", "=ds=", "2100 #arena#", "" };
+ { 19, 33662, "", "=q4=Vengeful Gladiator's Bonecracker", "=ds=", "2520 #arena#", "" };
+ { 20, 33663, "", "=q4=Vengeful Gladiator's Bonegrinder", "=ds=", "3000 #arena#", "" };
+ { 21, 33727, "", "=q4=Vengeful Gladiator's Painsaw", "=ds=", "3000 #arena#", "" };
+ { 22, 34540, "", "=q4=Vengeful Gladiator's Battle Staff", "=ds=", "3000 #arena#", "" };
+ { 23, 33716, "", "=q4=Vengeful Gladiator's Staff", "=ds=", "3000 #arena#", "" };
+ { 24, 33766, "", "=q4=Vengeful Gladiator's War Staff", "=ds=", "3000 #arena#", "" };
+ };
+ {
+ Name = "Weapons Season 2";
+ { 1, 33661, "", "=q4=Vengeful Gladiator's Barrier", "=ds=", "1500 #arena#", "" };
+ { 2, 33735, "", "=q4=Vengeful Gladiator's Redoubt", "=ds=", "1500 #arena#", "" };
+ { 3, 33755, "", "=q4=Vengeful Gladiator's Shield Wall", "=ds=", "1500 #arena#", "" };
+ { 4, 33765, "", "=q4=Vengeful Gladiator's War Edge", "=ds=", "800 #arena#", "" };
+ { 5, 34529, "", "=q4=Vengeful Gladiator's Longbow", "=ds=", "3000 #arena#", "" };
+ { 6, 33006, "", "=q4=Vengeful Gladiator's Heavy Crossbow", "=ds=", "3000 #arena#", "" };
+ { 7, 34530, "", "=q4=Vengeful Gladiator's Rifle", "=ds=", "3000 #arena#", "" };
+ { 8, 34059, "", "=q4=Vengeful Gladiator's Baton of Light", "=ds=", "800 #arena#", "" };
+ { 9, 34066, "", "=q4=Vengeful Gladiator's Piercing Touch", "=ds=", "800 #arena#", "" };
+ { 10, 33764, "", "=q4=Vengeful Gladiator's Touch of Defeat", "=ds=", "800 #arena#", "" };
+ { 11, 33681, "", "=q4=Vengeful Gladiator's Endgame", "=ds=", "900 #arena#", "" };
+ { 12, 34033, "", "=q4=Vengeful Gladiator's Grimoire", "=ds=", "900 #arena#", "" };
+ { 13, 33736, "", "=q4=Vengeful Gladiator's Reprieve", "=ds=", "900 #arena#", "" };
+ { 16, 33947, "", "=q4=Vengeful Gladiator's Idol of Resolve", "=ds=", "800 #arena#", "" };
+ { 17, 33944, "", "=q4=Vengeful Gladiator's Idol of Steadfastness", "=ds=", "800 #arena#", "" };
+ { 18, 33841, "", "=q4=Vengeful Gladiator's Idol of Tenacity", "=ds=", "800 #arena#", "" };
+ { 19, 33938, "", "=q4=Vengeful Gladiator's Libram of Fortitude", "=ds=", "800 #arena#", "" };
+ { 20, 33842, "", "=q4=Vengeful Gladiator's Libram of Justice", "=ds=", "800 #arena#", "" };
+ { 21, 33950, "", "=q4=Vengeful Gladiator's Libram of Vengeance", "=ds=", "800 #arena#", "" };
+ { 22, 33941, "", "=q4=Vengeful Gladiator's Totem of Indomitability", "=ds=", "800 #arena#", "" };
+ { 23, 33953, "", "=q4=Vengeful Gladiator's Totem of Survival", "=ds=", "800 #arena#", "" };
+ { 24, 33843, "", "=q4=Vengeful Gladiator's Totem of the Third Wind", "=ds=", "800 #arena#", "" };
+ };
+ {
+ Name = "Weapons Season 3";
+ { 1, 32028, "", "=q4=Merciless Gladiator's Right Ripper", "=ds=", "18000 #arena#", "" };
+ { 2, 32003, "", "=q4=Merciless Gladiator's Left Ripper", "=ds=", "9000 #arena#", "" };
+ { 3, 32053, "", "=q4=Merciless Gladiator's Spellblade", "=ds=", "25200 #arena#", "" };
+ { 4, 32044, "", "=q4=Merciless Gladiator's Shanker", "=ds=", "18000 #arena#", "" };
+ { 5, 32046, "", "=q4=Merciless Gladiator's Shiv", "=ds=", "9000 #arena#", "" };
+ { 6, 32052, "", "=q4=Merciless Gladiator's Slicer", "=ds=", "18000 #arena#", "" };
+ { 7, 32027, "", "=q4=Merciless Gladiator's Quickblade", "=ds=", "9000 #arena#", "" };
+ { 8, 31984, "", "=q4=Merciless Gladiator's Greatsword", "=ds=", "27000 #arena#", "" };
+ { 9, 31965, "", "=q4=Merciless Gladiator's Cleaver", "=ds=", "18000 #arena#", "" };
+ { 10, 31985, "", "=q4=Merciless Gladiator's Hacker", "=ds=", "9000 #arena#", "" };
+ { 11, 31966, "", "=q4=Merciless Gladiator's Decapitator", "=ds=", "27000 #arena#", "" };
+ { 12, 32963, "", "=q4=Merciless Gladiator's Gavel", "=ds=", "25200 #arena#", "" };
+ { 13, 32964, "", "=q4=Merciless Gladiator's Salvation", "=ds=", "25200 #arena#", "" };
+ { 14, 32026, "", "=q4=Merciless Gladiator's Pummeler", "=ds=", "18000 #arena#", "" };
+ { 15, 31958, "", "=q4=Merciless Gladiator's Bonecracker", "=ds=", "9000 #arena#", "" };
+ { 16, 31959, "", "=q4=Merciless Gladiator's Bonegrinder", "=ds=", "27000 #arena#", "" };
+ { 17, 32014, "", "=q4=Merciless Gladiator's Maul", "=ds=", "27000 #arena#", "" };
+ { 18, 32025, "", "=q4=Merciless Gladiator's Painsaw", "=ds=", "27000 #arena#", "" };
+ { 19, 32055, "", "=q4=Merciless Gladiator's War Staff", "=ds=", "27000 #arena#", "" };
+ { 20, 33313, "", "=q4=Merciless Gladiator's Barrier", "=ds=", "15000 #arena#", "" };
+ { 21, 33309, "", "=q4=Merciless Gladiator's Redoubt", "=ds=", "15000 #arena#", "" };
+ { 22, 32045, "", "=q4=Merciless Gladiator's Shield Wall", "=ds=", "15000 #arena#", "" };
+ { 23, 32054, "", "=q4=Merciless Gladiator's War Edge", "=ds=", "8000 #arena#", "" };
+ { 24, 31986, "", "=q4=Merciless Gladiator's Crossbow of the Phoenix", "=ds=", "27000 #arena#", "" };
+ { 25, 32962, "", "=q4=Merciless Gladiator's Touch of Defeat", "=ds=", "8000 #arena#", "" };
+ { 26, 31978, "", "=q4=Merciless Gladiator's Endgame", "=ds=", "9000 #arena#", "" };
+ { 27, 32961, "", "=q4=Merciless Gladiator's Reprieve", "=ds=", "9000 #arena#", "" };
+ };
+ {
+ Name = "Weapons Season 3";
+ { 1, 33946, "", "=q4=Merciless Gladiator's Idol of Resolve", "=ds=", "8000 #arena#", "" };
+ { 2, 33943, "", "=q4=Merciless Gladiator's Idol of Steadfastness", "=ds=", "8000 #arena#", "" };
+ { 3, 33076, "", "=q4=Merciless Gladiator's Idol of Tenacity", "=ds=", "8000 #arena#", "" };
+ { 4, 33937, "", "=q4=Merciless Gladiator's Libram of Fortitude", "=ds=", "8000 #arena#", "" };
+ { 5, 33077, "", "=q4=Merciless Gladiator's Libram of Justice", "=ds=", "8000 #arena#", "" };
+ { 6, 33949, "", "=q4=Merciless Gladiator's Libram of Vengeance", "=ds=", "8000 #arena#", "" };
+ { 7, 33940, "", "=q4=Merciless Gladiator's Totem of Indomitability", "=ds=", "8000 #arena#", "" };
+ { 8, 33952, "", "=q4=Merciless Gladiator's Totem of Survival", "=ds=", "8000 #arena#", "" };
+ { 9, 33078, "", "=q4=Merciless Gladiator's Totem of the Third Wind", "=ds=", "8000 #arena#", "" };
+ };
+ {
+ Name = "Weapons Season 4";
+ { 1, 35076, "", "=q4=Brutal Gladiator's Right Ripper", "=ds=#h3#, #w13#", "2625 #arena#", "" };
+ { 2, 35038, "", "=q4=Brutal Gladiator's Left Ripper", "=ds=#h4#, #w13#", "1125 #arena#", "" };
+ { 3, 35037, "", "=q4=Brutal Gladiator's Left Render", "=ds=#h4#, #w13#", "1125 #arena#", "" };
+ { 4, 35102, "", "=q4=Brutal Gladiator's Spellblade", "=ds=#h3#, #w4#", "3150 #arena#", "" };
+ { 5, 37739, "", "=q4=Brutal Gladiator's Blade of Alacrity", "=ds=#h3#, #w4#", "3150 #arena#", "" };
+ { 6, 35093, "", "=q4=Brutal Gladiator's Shanker", "=ds=#h1#, #w4#", "2625 #arena#", "" };
+ { 7, 35058, "", "=q4=Brutal Gladiator's Mutilator", "=ds=#h4#, #w4#", "1125 #arena#", "" };
+ { 8, 35095, "", "=q4=Brutal Gladiator's Shiv", "=ds=#h4#, #w4#", "1125 #arena#", "" };
+ { 9, 35101, "", "=q4=Brutal Gladiator's Slicer", "=ds=#h1#, #w10#", "2625 #arena#", "" };
+ { 10, 35072, "", "=q4=Brutal Gladiator's Quickblade", "=ds=#h4#, #w10#", "1125 #arena#", "" };
+ { 11, 35015, "", "=q4=Brutal Gladiator's Greatsword", "=ds=#h2#, #w10#", "3750 #arena#", "" };
+ { 12, 34996, "", "=q4=Brutal Gladiator's Cleaver", "=ds=#h1#, #w1#", "2625 #arena#", "" };
+ { 13, 34995, "", "=q4=Brutal Gladiator's Chopper", "=ds=#h4#, #w1#", "1125 #arena#", "" };
+ { 14, 36737, "", "=q4=Brutal Gladiator's Hatchet", "=ds=#h4#, #w1#", "650 #arena#", "" };
+ { 15, 35017, "", "=q4=Brutal Gladiator's Hacker", "=ds=#h4#, #w1#", "1125 #arena#", "" };
+ { 16, 34997, "", "=q4=Brutal Gladiator's Decapitator", "=ds=#h2#, #w1#", "3750 #arena#", "" };
+ { 17, 35110, "", "=q4=Brutal Gladiator's Waraxe", "=ds=#h3#, #w1#", "650 #arena#", "" };
+ { 18, 35014, "", "=q4=Brutal Gladiator's Gavel", "=ds=#h3#, #w6#", "3150 #arena#", "" };
+ { 19, 35082, "", "=q4=Brutal Gladiator's Salvation", "=ds=#h3#, #w6#", "3150 #arena#", "" };
+ { 20, 37740, "", "=q4=Brutal Gladiator's Swift Judgement", "=ds=#h3#, #w6#", "3150 #arena#", "" };
+ { 21, 35071, "", "=q4=Brutal Gladiator's Pummeler", "=ds=#h1#, #w6#", "2625 #arena#", "" };
+ { 22, 34988, "", "=q4=Brutal Gladiator's Bonecracker", "=ds=#h4#, #w6#", "3150 #arena#", "" };
+ { 23, 34989, "", "=q4=Brutal Gladiator's Bonegrinder", "=ds=#h2#, #w6#", "3750 #arena#", "" };
+ { 24, 35064, "", "=q4=Brutal Gladiator's Painsaw", "=ds=#w7#", "3750 #arena#", "" };
+ { 25, 34987, "", "=q4=Brutal Gladiator's Battle Staff", "=ds=#h2#, #w9#", "3750 #arena#", "" };
+ { 26, 35103, "", "=q4=Brutal Gladiator's Staff", "=ds=#h2#, #w9#", "3750 #arena#", "" };
+ { 27, 35109, "", "=q4=Brutal Gladiator's War Staff", "=ds=#h2#, #w9#", "3750 #arena#", "" };
+ };
+ {
+ Name = "Weapons Season 4";
+ { 1, 34986, "", "=q4=Brutal Gladiator's Barrier", "=ds=#w8#", "1875 #arena#", "" };
+ { 2, 35073, "", "=q4=Brutal Gladiator's Redoubt", "=ds=#w8#", "1875 #arena#", "" };
+ { 3, 35094, "", "=q4=Brutal Gladiator's Shield Wall", "=ds=#w8#", "1875 #arena#", "" };
+ { 4, 35108, "", "=q4=Brutal Gladiator's War Edge", "=ds=#w11#", "1000 #arena#", "" };
+ { 5, 35047, "", "=q4=Brutal Gladiator's Longbow", "=ds=#w2#", "3750 #arena#", "" };
+ { 6, 35018, "", "=q4=Brutal Gladiator's Heavy Crossbow", "=ds=#w3#", "3750 #arena#", "" };
+ { 7, 35075, "", "=q4=Brutal Gladiator's Rifle", "=ds=#w5#", "3750 #arena#", "" };
+ { 8, 34985, "", "=q4=Brutal Gladiator's Baton of Light", "=ds=#w12#", "1000 #arena#", "" };
+ { 9, 35065, "", "=q4=Brutal Gladiator's Piercing Touch", "=ds=#w12#", "1000 #arena#", "" };
+ { 10, 35107, "", "=q4=Brutal Gladiator's Touch of Defeat", "=ds=#w12#", "1000 #arena#", "" };
+ { 11, 35008, "", "=q4=Brutal Gladiator's Endgame", "=ds=#s15#", "1125 #arena#", "" };
+ { 12, 35016, "", "=q4=Brutal Gladiator's Grimoire", "=ds=#s15#", "1125 #arena#", "" };
+ { 13, 35074, "", "=q4=Brutal Gladiator's Reprieve", "=ds=#s15#", "1125 #arena#", "" };
+ { 16, 35019, "", "=q4=Brutal Gladiator's Idol of Resolve", "=ds=#w14#", "1000 #arena#", "" };
+ { 17, 35020, "", "=q4=Brutal Gladiator's Idol of Steadfastness#w14#", "=ds=", "1000 #arena#", "" };
+ { 18, 35021, "", "=q4=Brutal Gladiator's Idol of Tenacity", "=ds=#w14#", "1000 #arena#", "" };
+ { 19, 35039, "", "=q4=Brutal Gladiator's Libram of Fortitude", "=ds=#w16#", "1000 #arena#", "" };
+ { 20, 35040, "", "=q4=Brutal Gladiator's Libram of Justice", "=ds=#w16#", "1000 #arena#", "" };
+ { 21, 35041, "", "=q4=Brutal Gladiator's Libram of Vengeance", "=ds=#w16#", "1000 #arena#", "" };
+ { 22, 35104, "", "=q4=Brutal Gladiator's Totem of Indomitability", "=ds=#w15#", "1000 #arena#", "" };
+ { 23, 35105, "", "=q4=Brutal Gladiator's Totem of Survival", "=ds=#w15#", "1000 #arena#", "" };
+ { 24, 35106, "", "=q4=Brutal Gladiator's Totem of the Third Wind", "=ds=#w15#", "1000 #arena#", "" };
+ };
+};
+
+--------------------------
+--- Sets & Collections ---
+--------------------------
+
+---------------------------
+--- Dungeon 3 Sets (D3) ---
+---------------------------
AtlasLoot_Data["DS3"] = {
Name = AL["Dungeon 3 Sets"];
@@ -5193,13 +5199,13 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0");
};
};
- --------------
- --- Tier 4 ---
- --------------
+--------------
+--- Tier 4 ---
+--------------
AtlasLoot_Data["T4"] = {
- Name = "Tier 4";
- Type = "BCRaid";
+ Name = "Tier 4";
+ Type = "BCRaid";
{
Name = "Druid".." - "..AL["Feral"];
{ 1, 29098, "", "=q4=Stag-Helm of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
@@ -5346,13 +5352,13 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0");
}
};
- --------------
- --- Tier 5 ---
- --------------
+--------------
+--- Tier 5 ---
+--------------
- AtlasLoot_Data["T5"] = {
- Name = "Tier 5";
- Type = "BCRaid";
+AtlasLoot_Data["T5"] = {
+ Name = "Tier 5";
+ Type = "BCRaid";
{
Name = "Druid".." - "..AL["Feral"];
{ 1, 30228, "", "=q4=Nordrassil Headdress", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
@@ -5499,9 +5505,9 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0");
};
};
- --------------
- --- Tier 6 ---
- --------------
+--------------
+--- Tier 6 ---
+--------------
AtlasLoot_Data["T6"] = {
Name = "Tier 6";
@@ -5696,298 +5702,298 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0");
};
- --------------------------------
- --- The Burning Crusade Sets ---
- --------------------------------
+--------------------------------
+--- The Burning Crusade Sets ---
+--------------------------------
- AtlasLoot_Data["TBCSets"] = {
- Name = AL["Burning Crusade Sets"];
- {
- Name = AL["Latro's Flurry"];
- { 1, 34703, "", "=q3=Latro's Dancing Blade", "=ds=#h1#, #w10#, =q2=#n138# (#z30#)", "", ""};
- { 2, 28189, "", "=q3=Latro's Shifting Sword", "=ds=#h1#, #w10#, =q2=#n139# (#z33#)", "", ""};
- };
- {
- Name = AL["The Twin Stars"];
- { 1, 31338, "", "=q4=Charlotte's Ivy", "=ds=#s2#", "", "0.01%"};
- { 2, 31339, "", "=q4=Lola's Eve", "=ds=#s13#", "", "0.01%"};
- };
- {
- Name = AL["The Fists of Fury"];
- { 1, 32946, "", "=q4=Claw of Molten Fury", "=ds=#h3#, #w13#"};
- { 2, 32945, "", "=q4=Fist of Molten Fury", "=ds=#h4#, #w13#"};
- };
- {
- Name = AL["The Twin Blades of Azzinoth"];
- { 1, 32837, "", "=q5=Warglaive of Azzinoth", "=ds=#h3#, #w10#, =q1=#m1# =ds=#c9#, #c6#"};
- { 2, 32838, "", "=q5=Warglaive of Azzinoth", "=ds=#h4#, #w10#, =q1=#m1# =ds=#c9#, #c6#"};
- };
+AtlasLoot_Data["TBCSets"] = {
+ Name = AL["Burning Crusade Sets"];
+ {
+ Name = AL["Latro's Flurry"];
+ { 1, 34703, "", "=q3=Latro's Dancing Blade", "=ds=#h1#, #w10#, =q2=#n138# (#z30#)", "", "" };
+ { 2, 28189, "", "=q3=Latro's Shifting Sword", "=ds=#h1#, #w10#, =q2=#n139# (#z33#)", "", "" };
};
-
- --------------------------------
- --- Badge of Justice Rewards ---
- --------------------------------
-
- AtlasLoot_Data["BadgeShatt"] = {
- Name = BabbleZone["Shattrath City"];
- {
- Name = BabbleInventory["Cloth"];
- { 1, 32090, "", "=q4=Cowl of Naaru Blessings", "=ds=#s1#", "50 #heroic#", ""};
- { 2, 32089, "", "=q4=Mana-Binders Cowl", "=ds=#s1#", "50 #heroic#", ""};
- { 3, 33588, "", "=q4=Runed Spell-cuffs", "=ds=#s8#", "35 #heroic#", ""};
- { 4, 33589, "", "=q4=Wristguards of Tranquil Thought", "=ds=#s8#", "35 #heroic#", ""};
- { 5, 33587, "", "=q4=Light-Blessed Bonds", "=ds=#s9#", "60 #heroic#", ""};
- { 6, 33586, "", "=q4=Studious Wraps", "=ds=#s9#", "60 #heroic#", ""};
- { 7, 33291, "", "=q4=Voodoo-woven Belt", "=ds=#s10#", "60 #heroic#", ""};
- { 8, 33585, "", "=q4=Achromic Trousers of the Naaru", "=ds=#s11#", "75 #heroic#", ""};
- { 9, 33584, "", "=q4=Pantaloons of Arcane Annihilation", "=ds=#s11#", "75 #heroic#", ""};
- };
- {
- Name = BabbleInventory["Leather"];
- { 1, 32088, "", "=q4=Cowl of Beastly Rage", "=ds=#s1#", "50 #heroic#", ""};
- { 2, 33972, "", "=q4=Mask of Primal Power", "=ds=#s1#", "75 #heroic#", ""};
- { 3, 32087, "", "=q4=Mask of the Deceiver", "=ds=#s1#", "50 #heroic#", ""};
- { 4, 33287, "", "=q4=Gnarled Ironwood Pauldrons", "=ds=#s3#", "60 #heroic#", ""};
- { 5, 33973, "", "=q4=Pauldrons of Tribal Fury", "=ds=#s3#", "60 #heroic#", ""};
- { 6, 33566, "", "=q4=Blessed Elunite Coverings", "=ds=#s5#", "75 #heroic#", ""};
- { 7, 33579, "", "=q4=Vestments of Hibernation", "=ds=#s5#", "75 #heroic#", ""};
- { 8, 33578, "", "=q4=Armwraps of the Kaldorei Protector", "=ds=#s8#", "35 #heroic#", ""};
- { 9, 33580, "", "=q4=Band of the Swift Paw", "=ds=#s8#", "35 #heroic#", ""};
- { 10, 33557, "", "=q4=Gargon's Bracers Peaceful Slumber", "=ds=#s8#", "35 #heroic#", ""};
- { 11, 33540, "", "=q4=Master Assassin Wristwraps", "=ds=#s8#", "35 #heroic#", ""};
- { 12, 33974, "", "=q4=Grasp of the Moonkin", "=ds=#s9#", "60 #heroic#", ""};
- { 13, 33539, "", "=q4=Trickster's Stickyfingers", "=ds=#s9#", "60 #heroic#", ""};
- { 14, 33559, "", "=q4=Starfire Waistband", "=ds=#s10#", "60 #heroic#", ""};
- { 15, 33583, "", "=q4=Waistguard of the Great Beast", "=ds=#s10#", "60 #heroic#", ""};
- { 16, 33552, "", "=q4=Pants of Splendid Recovery", "=ds=#s11#", "75 #heroic#", ""};
- { 17, 33538, "", "=q4=Shallow-grave Trousers", "=ds=#s11#", "75 #heroic#", ""};
- { 18, 33582, "", "=q4=Footwraps of Wild Encroachment", "=ds=#s12#", "60 #heroic#", ""};
- { 19, 33577, "", "=q4=Moon-walkers", "=ds=#s12#", "60 #heroic#", ""};
- { 20, 33222, "", "=q4=Nyn'jah's Tabi Boots", "=ds=#s12#", "60 #heroic#", ""};
- };
- {
- Name = BabbleInventory["Mail"];
- { 1, 32086, "", "=q4=Storm Master's Helmet", "=ds=#s1#, #a3#", "50 #heroic#", ""};
- { 2, 32085, "", "=q4=Warpstalker Helm", "=ds=#s1#, #a3#", "50 #heroic#", ""};
- { 3, 33970, "", "=q4=Pauldrons of the Furious Elements", "=ds=#s3#, #a3#", "60 #heroic#", ""};
- { 4, 33965, "", "=q4=Hauberk of the Furious Elements", "=ds=#s5#, #a3#", "75 #heroic#", ""};
- { 5, 33535, "", "=q4=Earthquake Bracers", "=ds=#s8#, #a3#", "35 #heroic#", ""};
- { 6, 33532, "", "=q4=Gleaming Earthen Bracers", "=ds=#s8#, #a3#", "35 #heroic#", ""};
- { 7, 33529, "", "=q4=Steadying Bracers", "=ds=#s8#, #a3#", "35 #heroic#", ""};
- { 8, 33528, "", "=q4=Gauntlets of Sniping", "=ds=#s9#, #a3#", "60 #heroic#", ""};
- { 9, 33534, "", "=q4=Grips of Nature's Wrath", "=ds=#s9#, #a3#", "60 #heroic#", ""};
- { 10, 33531, "", "=q4=Polished Waterscale Gloves", "=ds=#s9#, #a3#", "60 #heroic#", ""};
- { 11, 33386, "", "=q4=Man'kin'do's Belt", "=ds=#s10#, #a3#", "60 #heroic#", ""};
- { 12, 33536, "", "=q4=Stormwrap", "=ds=#s10#, #a3#", "60 #heroic#", ""};
- { 13, 33280, "", "=q4=War-Feathered Loop", "=ds=#s10#, #a3#", "60 #heroic#", ""};
- { 14, 33530, "", "=q4=Natural Life Leggings", "=ds=#s11#, #a3#", "75 #heroic#", ""};
- { 15, 33527, "", "=q4=Shifting Camouflage Pants", "=ds=#s11#, #a3#", "75 #heroic#", ""};
- { 16, 33537, "", "=q4=Treads of Booming Thunder", "=ds=#s12#, #a3#", "60 #heroic#", ""};
- { 17, 33324, "", "=q4=Treads of Life Path", "=ds=#s12#, #a3#", "60 #heroic#", ""};
- };
- {
- Name = BabbleInventory["Plate"];
- { 1, 33810, "", "=q4=Amani Mask of Death", "=ds=#s1#, #a4#", "75 #heroic#", ""};
- { 2, 32083, "", "=q4=Faceguard of Determination", "=ds=#s1#, #a4#", "50 #heroic#", ""};
- { 3, 32084, "", "=q4=Helmet of the Steadfast Champion", "=ds=#s1#, #a4#", "50 #heroic#", ""};
- { 4, 33514, "", "=q4=Pauldrons of Gruesome Fate", "=ds=#s3#, #a4#", "60 #heroic#", ""};
- { 5, 33522, "", "=q4=Chestguard of the Stoic Guardian", "=ds=#s5#, #a4#", "75 #heroic#", ""};
- { 6, 33516, "", "=q4=Bracers of the Ancient Phalanx", "=ds=#s8#, #a4#", "35 #heroic#", ""};
- { 7, 33513, "", "=q4=Eternium Rage-shackles", "=ds=#s8#, #a4#", "35 #heroic#", ""};
- { 8, 33520, "", "=q4=Vambraces of the Naaru", "=ds=#s8#, #a4#", "35 #heroic#", ""};
- { 9, 33517, "", "=q4=Bonefist Gauntlets", "=ds=#s9#, #a4#", "60 #heroic#", ""};
- { 10, 33512, "", "=q4=Furious Deathgrips", "=ds=#s9#, #a4#", "60 #heroic#", ""};
- { 11, 33519, "", "=q4=Handguards of the Templar", "=ds=#s9#, #a4#", "60 #heroic#", ""};
- { 12, 33331, "", "=q4=Chain of Unleashed Rage", "=ds=#s10#, #a4#", "60 #heroic#", ""};
- { 13, 33524, "", "=q4=Girdle of the Protector", "=ds=#s10#, #a4#", "60 #heroic#", ""};
- { 14, 33279, "", "=q4=Iron-tusk Girdle", "=ds=#s10#, #a4#", "60 #heroic#", ""};
- { 16, 33501, "", "=q4=Bloodthirster's Greaves", "=ds=#s11#, #a4#", "75 #heroic#", ""};
- { 17, 33518, "", "=q4=High Justicar's Legplates", "=ds=#s11#, #a4#", "75 #heroic#", ""};
- { 18, 33515, "", "=q4=Unwavering Legguards", "=ds=#s11#, #a4#", "75 #heroic#", ""};
- { 19, 33207, "", "=q4=Implacable Guardian Sabatons", "=ds=#s12#, #a4#", "60 #heroic#", ""};
- { 20, 33523, "", "=q4=Sabatons of the Righteous Defender", "=ds=#s12#, #a4#", "60 #heroic#", ""};
- };
- {
- Name = BabbleInventory["Back"];
- { 1, 29375, "", "=q4=Bishop's Cloak", "=ds=#s4#", "25 #heroic#", ""};
- { 2, 29382, "", "=q4=Blood Knight War Cloak", "=ds=#s4#", "25 #heroic#", ""};
- { 3, 35321, "", "=q4=Cloak of Arcane Alacrity", "=ds=#s4#", "60 #heroic#", ""};
- { 4, 33304, "", "=q4=Cloak of Subjugated Power", "=ds=#s4#", "60 #heroic#", ""};
- { 5, 35324, "", "=q4=Cloak of Swift Reprieve", "=ds=#s4#", "60 #heroic#", ""};
- { 6, 33484, "", "=q4=Dory's Embrace", "=ds=#s4#", "60 #heroic#", ""};
- { 7, 29385, "", "=q4=Farstrider Defender's Cloak", "=ds=#s4#", "25 #heroic#", ""};
- { 8, 33333, "", "=q4=Kharmaa's Shroud of Hope", "=ds=#s4#", "60 #heroic#", ""};
- { 9, 29369, "", "=q4=Shawl of Shifting Probabilities", "=ds=#s4#", "25 #heroic#", ""};
- { 10, 33593, "", "=q4=Slikk's Cloak of Placation", "=ds=#s4#", "35 #heroic#", ""};
- };
- {
- Name = BabbleInventory["Totem"].."s - "..BabbleInventory["Idol"].."s - "..BabbleInventory["Libram"].."s";
- { 1, 29390, "", "=q4=Everbloom Idol", "=ds=#s16#, #w14#", "15 #heroic#", ""};
- { 2, 33508, "", "=q4=Idol of Budding Life", "=ds=#s16#, #w14#", "20 #heroic#", ""};
- { 3, 33509, "", "=q4=Idol of Terror", "=ds=#s16#, #w14#", "20 #heroic#", ""};
- { 4, 33510, "", "=q4=Idol of the Unseen Moon", "=ds=#s16#, #w14#", "20 #heroic#", ""};
- { 5, 33506, "", "=q4=Skycall Totem", "=ds=#s16#, #w15#", "20 #heroic#", ""};
- { 6, 33507, "", "=q4=Stonebreaker's Totem", "=ds=#s16#, #w15#", "20 #heroic#", ""};
- { 7, 33505, "", "=q4=Totem of Living Water", "=ds=#s16#, #w15#", "20 #heroic#", ""};
- { 8, 29389, "", "=q4=Totem of the Pulsing Earth", "=ds=#s16#, #w15#", "15 #heroic#", ""};
- { 9, 33503, "", "=q4=Libram of Divine Judgement", "=ds=#s16#, #w16#", "20 #heroic#", ""};
- { 10, 33504, "", "=q4=Libram of Divine Purpose", "=ds=#s16#, #w16#", "20 #heroic#", ""};
- { 11, 33502, "", "=q4=Libram of Mending", "=ds=#s16#, #w16#", "20 #heroic#", ""};
- { 12, 29388, "", "=q4=Libram of Repentance", "=ds=#s16#, #w16#", "15 #heroic#", ""};
- };
- {
- Name = AL["Weapons"];
- { 1, 29275, "", "=q4=Searing Sunblade", "=ds=#h4#, #w4#", "50 #heroic#", ""};
- { 2, 33192, "", "=q4=Carved Witch Doctor's Stick", "=ds=#w12#", "25 #heroic#", ""};
- { 3, 29266, "", "=q4=Azure-Shield of Coldarra", "=ds=#w8#", "33 #heroic#", ""};
- { 4, 29267, "", "=q4=Light-Bearer's Faith Shield", "=ds=#w8#", "33 #heroic#", ""};
- { 5, 29268, "", "=q4=Mazthoril Honor Shield", "=ds=#w8#", "33 #heroic#", ""};
- { 6, 33334, "", "=q4=Fetish of the Primal Gods", "=ds=#s15#", "35 #heroic#", ""};
- { 7, 29270, "", "=q4=Flametounge Seal", "=ds=#s15#", "25 #heroic#", ""};
- { 8, 29273, "", "=q4=Khadgar's Knapsack", "=ds=#s15#", "25 #heroic#", ""};
- { 9, 29272, "", "=q4=Orb of the Soul-Eater", "=ds=#s15#", "25 #heroic#", ""};
- { 10, 29269, "", "=q4=Sapphiron's Wing Bone", "=ds=#s15#", "25 #heroic#", ""};
- { 11, 29271, "", "=q4=Talisman of Kalecgos", "=ds=#s15#", "25 #heroic#", ""};
- { 12, 29274, "", "=q4=Tears of Heaven", "=ds=#s15#", "25 #heroic#", ""};
- { 13, 33325, "", "=q4=Voodoo Shaker", "=ds=#s15#", "35 #heroic#", ""};
- };
- {
- Name = AL["Accessories"];
- { 1, 33296, "", "=q4=Brooch of Deftness", "=ds=#s2#", "35 #heroic#", ""};
- { 2, 29381, "", "=q4=Choker of Vile Intent", "=ds=#s2#", "25 #heroic#", ""};
- { 3, 29374, "", "=q4=Necklace of Eternal Hope", "=ds=#s2#", "25 #heroic#", ""};
- { 4, 29368, "", "=q4=Manasurge Pendant", "=ds=#s2#", "25 #heroic#", ""};
- { 5, 29386, "", "=q4=Necklace of the Juggernaut", "=ds=#s2#", "25 #heroic#", ""};
- { 6, 29373, "", "=q4=Band of Halos", "=ds=#s13#", "25 #heroic#", ""};
- { 7, 29379, "", "=q4=Ring of Arathi Warlords", "=ds=#s13#", "25 #heroic#", ""};
- { 8, 29367, "", "=q4=Ring of Cryptic Dreams", "=ds=#s13#", "25 #heroic#", ""};
- { 9, 29384, "", "=q4=Ring of Unyielding Force", "=ds=#s13#", "25 #heroic#", ""};
- { 10, 23572, "", "=q3=Primal Nether", "=ds=#e8#", "10 #heroic#", ""};
- { 11, 32227, "", "=q4=Crimson Spinel", "=ds=#e7#", "15 #heroic#", ""};
- { 12, 32229, "", "=q4=Lionseye", "=ds=#e7#", "15 #heroic#", ""};
- { 13, 32249, "", "=q4=Seaspray Emerald", "=ds=#e7#", "15 #heroic#", ""};
- { 14, 35326, "", "=q4=Battlemaster's Alacrity", "=ds=#s14#", "75 #heroic#", ""};
- { 15, 34049, "", "=q4=Battlemaster's Audacity", "=ds=#s14#", "75 #heroic#", ""};
- { 16, 34163, "", "=q4=Battlemaster's Cruelty", "=ds=#s14#", "75 #heroic#", ""};
- { 17, 34162, "", "=q4=Battlemaster's Depravity", "=ds=#s14#", "75 #heroic#", ""};
- { 18, 33832, "", "=q4=Battlemaster's Determination", "=ds=#s14#", "75 #heroic#", ""};
- { 19, 34050, "", "=q4=Battlemaster's Perseverance", "=ds=#s14#", "75 #heroic#", ""};
- { 20, 29383, "", "=q4=Bloodlust Brooch", "=ds=#s14#", "41 #heroic#", ""};
- { 21, 29376, "", "=q4=Essence of the Martyr", "=ds=#s14#", "41 #heroic#", ""};
- { 22, 29387, "", "=q4=Gnomeregan Auto-Blocker 600", "=ds=#s14#", "41 #heroic#", ""};
- { 23, 29370, "", "=q4=Icon of the Silver Crescent", "=ds=#s14#", "41 #heroic#", ""};
- { 24, 30183, "", "=q4=Nether Vortex", "=ds=#e8#", "15 #heroic#", ""};
- { 25, 32228, "", "=q4=Empyrean Sapphire", "=ds=#e7#", "15 #heroic#", ""};
- { 26, 32231, "", "=q4=Pyrestone", "=ds=#e7#", "15 #heroic#", ""};
- { 27, 32230, "", "=q4=Shadowsong Amethyst", "=ds=#e7#", "15 #heroic#", ""};
- };
- {
- Name = AL["Fire Resistance Gear"];
- { 1, 0, "INV_Box_01", "=q6=#a1#", ""};
- { 2, 30762, "", "=q4=Infernoweave Robe", "=ds=#a1#, #s5#", "30 #heroic#", ""};
- { 3, 30764, "", "=q4=Infernoweave Gloves", "=ds=#a1#, #s9#", "20 #heroic#", ""};
- { 4, 30761, "", "=q4=Infernoweave Leggings", "=ds=#a1#, #s11#", "30 #heroic#", ""};
- { 5, 30763, "", "=q4=Infernoweave Boots", "=ds=#a1#, #s12#", "20 #heroic#", ""};
- { 7, 0, "INV_Box_01", "=q6=#a2#", ""};
- { 8, 30776, "", "=q4=Inferno Hardened Chestguard", "=ds=#a2#, #s5#", "30 #heroic#", ""};
- { 9, 30780, "", "=q4=Inferno Hardened Gloves", "=ds=#a2#, #s9#", "20 #heroic#", ""};
- { 10, 30778, "", "=q4=Inferno Hardened Leggings", "=ds=#a2#, #s11#", "30 #heroic#", ""};
- { 11, 30779, "", "=q4=Inferno Hardened Boots", "=ds=#a2#, #s12#", "20 #heroic#", ""};
- { 13, 29434, "", "=q4=Badge of Justice", "=ds=#m17#"};
- { 16, 0, "INV_Box_01", "=q6=#a3#", ""};
- { 17, 30773, "", "=q4=Inferno Forged Hauberk", "=ds=#a3#, #s5#", "30 #heroic#", ""};
- { 18, 30774, "", "=q4=Inferno Forged Gloves", "=ds=#a3#, #s9#", "20 #heroic#", ""};
- { 19, 30772, "", "=q4=Inferno Forged Leggings", "=ds=#a3#, #s11#", "30 #heroic#", ""};
- { 20, 30770, "", "=q4=Inferno Forged Boots", "=ds=#a3#, #s12#", "20 #heroic#", ""};
- { 22, 0, "INV_Box_01", "=q6=#a4#", ""};
- { 23, 30769, "", "=q4=Inferno Tempered Chestguard", "=ds=#a4#, #s5#", "30 #heroic#", ""};
- { 24, 30767, "", "=q4=Inferno Tempered Gauntlets", "=ds=#a4#, #s9#", "20 #heroic#", ""};
- { 25, 30766, "", "=q4=Inferno Tempered Leggings", "=ds=#a4#, #s11#", "30 #heroic#", ""};
- { 26, 30768, "", "=q4=Inferno Tempered Boots", "=ds=#a4#, #s12#", "20 #heroic#", ""};
- };
+ {
+ Name = AL["The Twin Stars"];
+ { 1, 31338, "", "=q4=Charlotte's Ivy", "=ds=#s2#", "", "0.01%" };
+ { 2, 31339, "", "=q4=Lola's Eve", "=ds=#s13#", "", "0.01%" };
};
-
- AtlasLoot_Data["BadgeSunwell"] = {
- Name = AL["Sunwell Isle"];
- {
- Name = BabbleInventory["Cloth"];
- { 1, 34924, "", "=q4=Gown of Spiritual Wonder", "=ds=#s5#", "100 #heroic#", ""};
- { 2, 34917, "", "=q4=Shroud of the Lore`nial", "=ds=#s5#", "100 #heroic#", ""};
- { 3, 34936, "", "=q4=Tormented Demonsoul Robes", "=ds=#s5#", "100 #heroic#", ""};
- { 4, 34938, "", "=q4=Enslaved Doomguard Soulgrips", "=ds=#s9#", "75 #heroic#", ""};
- { 5, 34925, "", "=q4=Adorned Supernal Legwraps", "=ds=#s11#", "100 #heroic#", ""};
- { 6, 34937, "", "=q4=Corrupted Soulcloth Pantaloons", "=ds=#s11#", "100 #heroic#", ""};
- { 7, 34918, "", "=q4=Legwraps of Sweltering Flame", "=ds=#s11#", "100 #heroic#", ""};
- { 8, 34919, "", "=q4=Boots of Incantations", "=ds=#s12#", "75 #heroic#", ""};
- { 9, 34926, "", "=q4=Slippers of Dutiful Mending", "=ds=#s12#", "75 #heroic#", ""};
- };
- {
- Name = BabbleInventory["Leather"];
- { 1, 34906, "", "=q4=Embrace of Everlasting Prowess", "=ds=#s5#", "100 #heroic#", ""};
- { 2, 34903, "", "=q4=Embrace of Starlight", "=ds=#s5#", "100 #heroic#", ""};
- { 3, 34900, "", "=q4=Shroud of Nature's Harmony", "=ds=#s5#", "100 #heroic#", ""};
- { 4, 34927, "", "=q4=Tunic of the Dark Hour", "=ds=#s5#", "100 #heroic#", ""};
- { 5, 34904, "", "=q4=Barbed Gloves of the Sage", "=ds=#s9#", "75 #heroic#", ""};
- { 6, 34911, "", "=q4=Handwraps of the Aggressor", "=ds=#s9#", "75 #heroic#", ""};
- { 7, 34902, "", "=q4=Oakleaf-Spun Handguards", "=ds=#s9#", "75 #heroic#", ""};
- { 8, 34929, "", "=q4=Belt of the Silent Path", "=ds=#s10#", "75 #heroic#", ""};
- { 9, 34905, "", "=q4=Crystalwind Leggings", "=ds=#s11#", "100 #heroic#", ""};
- { 10, 34901, "", "=q4=Grovewalker's Leggings", "=ds=#s11#", "100 #heroic#", ""};
- { 11, 34910, "", "=q4=Tameless Breeches", "=ds=#s11#", "100 #heroic#", ""};
- { 12, 34928, "", "=q4=Trousers of the Scryers' Retainer", "=ds=#s11#", "100 #heroic#", ""};
- };
- {
- Name = BabbleInventory["Mail"];
- { 1, 34933, "", "=q4=Hauberk of Whirling Fury", "=ds=#s5#", "100 #heroic#", ""};
- { 2, 34912, "", "=q4=Scaled Drakeskin Chestguard", "=ds=#s5#", "100 #heroic#", ""};
- { 3, 34930, "", "=q4=Wave of Life Chestguard", "=ds=#s5#", "100 #heroic#", ""};
- { 4, 34916, "", "=q4=Gauntlets of Rapidity", "=ds=#s9#", "75 #heroic#", ""};
- { 5, 34935, "", "=q4=Aftershock Waistguard", "=ds=#s10#", "75 #heroic#", ""};
- { 6, 34932, "", "=q4=Clutch of the Soothing Breeze", "=ds=#s10#", "75 #heroic#", ""};
- { 7, 34914, "", "=q4=Leggings of the Pursuit", "=ds=#s11#", "100 #heroic#", ""};
- { 8, 34931, "", "=q4=Runed Scales of Antiquity", "=ds=#s11#", "100 #heroic#", ""};
- { 9, 34934, "", "=q4=Rushing Storm Kilt", "=ds=#s11#", "100 #heroic#", ""};
- };
- {
- Name = BabbleInventory["Plate"];
- { 1, 34942, "", "=q4=Breastplate of Ire", "=ds=#s5#", "100 #heroic#", ""};
- { 2, 34939, "", "=q4=Chestplate of Stoicism", "=ds=#s5#", "100 #heroic#", ""};
- { 3, 34921, "", "=q4=Ecclesiastical Cuirass", "=ds=#s5#", "100 #heroic#", ""};
- { 4, 34945, "", "=q4=Shattrath Protectorate's Breastplate", "=ds=#s5#", "100 #heroic#", ""};
- { 5, 34944, "", "=q4=Girdle of Seething Rage", "=ds=#s10#", "75 #heroic#", ""};
- { 6, 34941, "", "=q4=Girdle of the Fearless", "=ds=#s10#", "75 #heroic#", ""};
- { 7, 34923, "", "=q4=Waistguard of Reparation", "=ds=#s10#", "75 #heroic#", ""};
- { 8, 34922, "", "=q4=Greaves of Pacification", "=ds=#s11#", "100 #heroic#", ""};
- { 9, 34946, "", "=q4=Inscribed Legplates of the Aldor", "=ds=#s11#", "100 #heroic#", ""};
- { 10, 34943, "", "=q4=Legplates of Unending Fury", "=ds=#s11#", "100 #heroic#", ""};
- { 11, 34940, "", "=q4=Sunguard Legplates", "=ds=#s11#", "100 #heroic#", ""};
- { 12, 34947, "", "=q4=Blue's Greaves of the Righteous Guardian", "=ds=#s12#", "75 #heroic#", ""};
- };
- {
- Name = AL["Weapons"];
- { 1, 34893, "", "=q4=Vanir's Right Fist of Brutality", "=ds=#h3#, #w13#", "105 #heroic#", ""};
- { 2, 34951, "", "=q4=Vanir's Left Fist of Brutality", "=ds=#h4#, #w13#", "45 #heroic#", ""};
- { 3, 34950, "", "=q4=Vanir's Left Fist of Savagery", "=ds=#h4#, #w13#", "45 #heroic#", ""};
- { 4, 34895, "", "=q4=Scryer's Blade of Focus", "=ds=#h3#, #w4#", "150 #heroic#", ""};
- { 5, 34894, "", "=q4=Blade of Serration", "=ds=#h1#, #w4#", "105 #heroic#", ""};
- { 6, 34949, "", "=q4=Swift Blade of Uncertainty", "=ds=#h4#, #w4#", "45 #heroic#", ""};
- { 7, 34952, "", "=q4=The Mutilator", "=ds=#h4#, #w4#", "45 #heroic#", ""};
- { 8, 34891, "", "=q4=The Blade of Harbingers", "=ds=#h2#, #w1#", "150 #heroic#", ""};
- { 9, 34896, "", "=q4=Gavel of Naaru Blessings", "=ds=#h3#, #w6#", "150 #heroic#", ""};
- { 10, 34898, "", "=q4=Staff of the Forest Lord", "=ds=#h2#, #w9#", "150 #heroic#", ""};
- { 11, 34892, "", "=q4=Crossbow of Relentless Strikes", "=ds=#w3#", "150 #heroic#", ""};
- };
- {
- Name = AL["Accessories"];
- { 1, 34887, "", "=q4=Angelista's Revenge", "=ds=#s13#", "60 #heroic#", ""};
- { 2, 34890, "", "=q4=Anveena's Touch", "=ds=#s13#", "60 #heroic#", ""};
- { 3, 34889, "", "=q4=Fused Nethergon Band", "=ds=#s13#", "60 #heroic#", ""};
- { 4, 34888, "", "=q4=Ring of the Stalwart Protector", "=ds=#s13#", "60 #heroic#", ""};
- };
+ {
+ Name = AL["The Fists of Fury"];
+ { 1, 32946, "", "=q4=Claw of Molten Fury", "=ds=#h3#, #w13#" };
+ { 2, 32945, "", "=q4=Fist of Molten Fury", "=ds=#h4#, #w13#" };
};
+ {
+ Name = AL["The Twin Blades of Azzinoth"];
+ { 1, 32837, "", "=q5=Warglaive of Azzinoth", "=ds=#h3#, #w10#, =q1=#m1# =ds=#c9#, #c6#" };
+ { 2, 32838, "", "=q5=Warglaive of Azzinoth", "=ds=#h4#, #w10#, =q1=#m1# =ds=#c9#, #c6#" };
+ };
+};
+
+--------------------------------
+--- Badge of Justice Rewards ---
+--------------------------------
+
+AtlasLoot_Data["BadgeShatt"] = {
+ Name = BabbleZone["Shattrath City"];
+ {
+ Name = BabbleInventory["Cloth"];
+ { 1, 32090, "", "=q4=Cowl of Naaru Blessings", "=ds=#s1#", "50 #heroic#", "" };
+ { 2, 32089, "", "=q4=Mana-Binders Cowl", "=ds=#s1#", "50 #heroic#", "" };
+ { 3, 33588, "", "=q4=Runed Spell-cuffs", "=ds=#s8#", "35 #heroic#", "" };
+ { 4, 33589, "", "=q4=Wristguards of Tranquil Thought", "=ds=#s8#", "35 #heroic#", "" };
+ { 5, 33587, "", "=q4=Light-Blessed Bonds", "=ds=#s9#", "60 #heroic#", "" };
+ { 6, 33586, "", "=q4=Studious Wraps", "=ds=#s9#", "60 #heroic#", "" };
+ { 7, 33291, "", "=q4=Voodoo-woven Belt", "=ds=#s10#", "60 #heroic#", "" };
+ { 8, 33585, "", "=q4=Achromic Trousers of the Naaru", "=ds=#s11#", "75 #heroic#", "" };
+ { 9, 33584, "", "=q4=Pantaloons of Arcane Annihilation", "=ds=#s11#", "75 #heroic#", "" };
+ };
+ {
+ Name = BabbleInventory["Leather"];
+ { 1, 32088, "", "=q4=Cowl of Beastly Rage", "=ds=#s1#", "50 #heroic#", "" };
+ { 2, 33972, "", "=q4=Mask of Primal Power", "=ds=#s1#", "75 #heroic#", "" };
+ { 3, 32087, "", "=q4=Mask of the Deceiver", "=ds=#s1#", "50 #heroic#", "" };
+ { 4, 33287, "", "=q4=Gnarled Ironwood Pauldrons", "=ds=#s3#", "60 #heroic#", "" };
+ { 5, 33973, "", "=q4=Pauldrons of Tribal Fury", "=ds=#s3#", "60 #heroic#", "" };
+ { 6, 33566, "", "=q4=Blessed Elunite Coverings", "=ds=#s5#", "75 #heroic#", "" };
+ { 7, 33579, "", "=q4=Vestments of Hibernation", "=ds=#s5#", "75 #heroic#", "" };
+ { 8, 33578, "", "=q4=Armwraps of the Kaldorei Protector", "=ds=#s8#", "35 #heroic#", "" };
+ { 9, 33580, "", "=q4=Band of the Swift Paw", "=ds=#s8#", "35 #heroic#", "" };
+ { 10, 33557, "", "=q4=Gargon's Bracers Peaceful Slumber", "=ds=#s8#", "35 #heroic#", "" };
+ { 11, 33540, "", "=q4=Master Assassin Wristwraps", "=ds=#s8#", "35 #heroic#", "" };
+ { 12, 33974, "", "=q4=Grasp of the Moonkin", "=ds=#s9#", "60 #heroic#", "" };
+ { 13, 33539, "", "=q4=Trickster's Stickyfingers", "=ds=#s9#", "60 #heroic#", "" };
+ { 14, 33559, "", "=q4=Starfire Waistband", "=ds=#s10#", "60 #heroic#", "" };
+ { 15, 33583, "", "=q4=Waistguard of the Great Beast", "=ds=#s10#", "60 #heroic#", "" };
+ { 16, 33552, "", "=q4=Pants of Splendid Recovery", "=ds=#s11#", "75 #heroic#", "" };
+ { 17, 33538, "", "=q4=Shallow-grave Trousers", "=ds=#s11#", "75 #heroic#", "" };
+ { 18, 33582, "", "=q4=Footwraps of Wild Encroachment", "=ds=#s12#", "60 #heroic#", "" };
+ { 19, 33577, "", "=q4=Moon-walkers", "=ds=#s12#", "60 #heroic#", "" };
+ { 20, 33222, "", "=q4=Nyn'jah's Tabi Boots", "=ds=#s12#", "60 #heroic#", "" };
+ };
+ {
+ Name = BabbleInventory["Mail"];
+ { 1, 32086, "", "=q4=Storm Master's Helmet", "=ds=#s1#, #a3#", "50 #heroic#", "" };
+ { 2, 32085, "", "=q4=Warpstalker Helm", "=ds=#s1#, #a3#", "50 #heroic#", "" };
+ { 3, 33970, "", "=q4=Pauldrons of the Furious Elements", "=ds=#s3#, #a3#", "60 #heroic#", "" };
+ { 4, 33965, "", "=q4=Hauberk of the Furious Elements", "=ds=#s5#, #a3#", "75 #heroic#", "" };
+ { 5, 33535, "", "=q4=Earthquake Bracers", "=ds=#s8#, #a3#", "35 #heroic#", "" };
+ { 6, 33532, "", "=q4=Gleaming Earthen Bracers", "=ds=#s8#, #a3#", "35 #heroic#", "" };
+ { 7, 33529, "", "=q4=Steadying Bracers", "=ds=#s8#, #a3#", "35 #heroic#", "" };
+ { 8, 33528, "", "=q4=Gauntlets of Sniping", "=ds=#s9#, #a3#", "60 #heroic#", "" };
+ { 9, 33534, "", "=q4=Grips of Nature's Wrath", "=ds=#s9#, #a3#", "60 #heroic#", "" };
+ { 10, 33531, "", "=q4=Polished Waterscale Gloves", "=ds=#s9#, #a3#", "60 #heroic#", "" };
+ { 11, 33386, "", "=q4=Man'kin'do's Belt", "=ds=#s10#, #a3#", "60 #heroic#", "" };
+ { 12, 33536, "", "=q4=Stormwrap", "=ds=#s10#, #a3#", "60 #heroic#", "" };
+ { 13, 33280, "", "=q4=War-Feathered Loop", "=ds=#s10#, #a3#", "60 #heroic#", "" };
+ { 14, 33530, "", "=q4=Natural Life Leggings", "=ds=#s11#, #a3#", "75 #heroic#", "" };
+ { 15, 33527, "", "=q4=Shifting Camouflage Pants", "=ds=#s11#, #a3#", "75 #heroic#", "" };
+ { 16, 33537, "", "=q4=Treads of Booming Thunder", "=ds=#s12#, #a3#", "60 #heroic#", "" };
+ { 17, 33324, "", "=q4=Treads of Life Path", "=ds=#s12#, #a3#", "60 #heroic#", "" };
+ };
+ {
+ Name = BabbleInventory["Plate"];
+ { 1, 33810, "", "=q4=Amani Mask of Death", "=ds=#s1#, #a4#", "75 #heroic#", "" };
+ { 2, 32083, "", "=q4=Faceguard of Determination", "=ds=#s1#, #a4#", "50 #heroic#", "" };
+ { 3, 32084, "", "=q4=Helmet of the Steadfast Champion", "=ds=#s1#, #a4#", "50 #heroic#", "" };
+ { 4, 33514, "", "=q4=Pauldrons of Gruesome Fate", "=ds=#s3#, #a4#", "60 #heroic#", "" };
+ { 5, 33522, "", "=q4=Chestguard of the Stoic Guardian", "=ds=#s5#, #a4#", "75 #heroic#", "" };
+ { 6, 33516, "", "=q4=Bracers of the Ancient Phalanx", "=ds=#s8#, #a4#", "35 #heroic#", "" };
+ { 7, 33513, "", "=q4=Eternium Rage-shackles", "=ds=#s8#, #a4#", "35 #heroic#", "" };
+ { 8, 33520, "", "=q4=Vambraces of the Naaru", "=ds=#s8#, #a4#", "35 #heroic#", "" };
+ { 9, 33517, "", "=q4=Bonefist Gauntlets", "=ds=#s9#, #a4#", "60 #heroic#", "" };
+ { 10, 33512, "", "=q4=Furious Deathgrips", "=ds=#s9#, #a4#", "60 #heroic#", "" };
+ { 11, 33519, "", "=q4=Handguards of the Templar", "=ds=#s9#, #a4#", "60 #heroic#", "" };
+ { 12, 33331, "", "=q4=Chain of Unleashed Rage", "=ds=#s10#, #a4#", "60 #heroic#", "" };
+ { 13, 33524, "", "=q4=Girdle of the Protector", "=ds=#s10#, #a4#", "60 #heroic#", "" };
+ { 14, 33279, "", "=q4=Iron-tusk Girdle", "=ds=#s10#, #a4#", "60 #heroic#", "" };
+ { 16, 33501, "", "=q4=Bloodthirster's Greaves", "=ds=#s11#, #a4#", "75 #heroic#", "" };
+ { 17, 33518, "", "=q4=High Justicar's Legplates", "=ds=#s11#, #a4#", "75 #heroic#", "" };
+ { 18, 33515, "", "=q4=Unwavering Legguards", "=ds=#s11#, #a4#", "75 #heroic#", "" };
+ { 19, 33207, "", "=q4=Implacable Guardian Sabatons", "=ds=#s12#, #a4#", "60 #heroic#", "" };
+ { 20, 33523, "", "=q4=Sabatons of the Righteous Defender", "=ds=#s12#, #a4#", "60 #heroic#", "" };
+ };
+ {
+ Name = BabbleInventory["Back"];
+ { 1, 29375, "", "=q4=Bishop's Cloak", "=ds=#s4#", "25 #heroic#", "" };
+ { 2, 29382, "", "=q4=Blood Knight War Cloak", "=ds=#s4#", "25 #heroic#", "" };
+ { 3, 35321, "", "=q4=Cloak of Arcane Alacrity", "=ds=#s4#", "60 #heroic#", "" };
+ { 4, 33304, "", "=q4=Cloak of Subjugated Power", "=ds=#s4#", "60 #heroic#", "" };
+ { 5, 35324, "", "=q4=Cloak of Swift Reprieve", "=ds=#s4#", "60 #heroic#", "" };
+ { 6, 33484, "", "=q4=Dory's Embrace", "=ds=#s4#", "60 #heroic#", "" };
+ { 7, 29385, "", "=q4=Farstrider Defender's Cloak", "=ds=#s4#", "25 #heroic#", "" };
+ { 8, 33333, "", "=q4=Kharmaa's Shroud of Hope", "=ds=#s4#", "60 #heroic#", "" };
+ { 9, 29369, "", "=q4=Shawl of Shifting Probabilities", "=ds=#s4#", "25 #heroic#", "" };
+ { 10, 33593, "", "=q4=Slikk's Cloak of Placation", "=ds=#s4#", "35 #heroic#", "" };
+ };
+ {
+ Name = BabbleInventory["Totem"] .. "s - " .. BabbleInventory["Idol"] .. "s - " .. BabbleInventory["Libram"] .. "s";
+ { 1, 29390, "", "=q4=Everbloom Idol", "=ds=#s16#, #w14#", "15 #heroic#", "" };
+ { 2, 33508, "", "=q4=Idol of Budding Life", "=ds=#s16#, #w14#", "20 #heroic#", "" };
+ { 3, 33509, "", "=q4=Idol of Terror", "=ds=#s16#, #w14#", "20 #heroic#", "" };
+ { 4, 33510, "", "=q4=Idol of the Unseen Moon", "=ds=#s16#, #w14#", "20 #heroic#", "" };
+ { 5, 33506, "", "=q4=Skycall Totem", "=ds=#s16#, #w15#", "20 #heroic#", "" };
+ { 6, 33507, "", "=q4=Stonebreaker's Totem", "=ds=#s16#, #w15#", "20 #heroic#", "" };
+ { 7, 33505, "", "=q4=Totem of Living Water", "=ds=#s16#, #w15#", "20 #heroic#", "" };
+ { 8, 29389, "", "=q4=Totem of the Pulsing Earth", "=ds=#s16#, #w15#", "15 #heroic#", "" };
+ { 9, 33503, "", "=q4=Libram of Divine Judgement", "=ds=#s16#, #w16#", "20 #heroic#", "" };
+ { 10, 33504, "", "=q4=Libram of Divine Purpose", "=ds=#s16#, #w16#", "20 #heroic#", "" };
+ { 11, 33502, "", "=q4=Libram of Mending", "=ds=#s16#, #w16#", "20 #heroic#", "" };
+ { 12, 29388, "", "=q4=Libram of Repentance", "=ds=#s16#, #w16#", "15 #heroic#", "" };
+ };
+ {
+ Name = AL["Weapons"];
+ { 1, 29275, "", "=q4=Searing Sunblade", "=ds=#h4#, #w4#", "50 #heroic#", "" };
+ { 2, 33192, "", "=q4=Carved Witch Doctor's Stick", "=ds=#w12#", "25 #heroic#", "" };
+ { 3, 29266, "", "=q4=Azure-Shield of Coldarra", "=ds=#w8#", "33 #heroic#", "" };
+ { 4, 29267, "", "=q4=Light-Bearer's Faith Shield", "=ds=#w8#", "33 #heroic#", "" };
+ { 5, 29268, "", "=q4=Mazthoril Honor Shield", "=ds=#w8#", "33 #heroic#", "" };
+ { 6, 33334, "", "=q4=Fetish of the Primal Gods", "=ds=#s15#", "35 #heroic#", "" };
+ { 7, 29270, "", "=q4=Flametounge Seal", "=ds=#s15#", "25 #heroic#", "" };
+ { 8, 29273, "", "=q4=Khadgar's Knapsack", "=ds=#s15#", "25 #heroic#", "" };
+ { 9, 29272, "", "=q4=Orb of the Soul-Eater", "=ds=#s15#", "25 #heroic#", "" };
+ { 10, 29269, "", "=q4=Sapphiron's Wing Bone", "=ds=#s15#", "25 #heroic#", "" };
+ { 11, 29271, "", "=q4=Talisman of Kalecgos", "=ds=#s15#", "25 #heroic#", "" };
+ { 12, 29274, "", "=q4=Tears of Heaven", "=ds=#s15#", "25 #heroic#", "" };
+ { 13, 33325, "", "=q4=Voodoo Shaker", "=ds=#s15#", "35 #heroic#", "" };
+ };
+ {
+ Name = AL["Accessories"];
+ { 1, 33296, "", "=q4=Brooch of Deftness", "=ds=#s2#", "35 #heroic#", "" };
+ { 2, 29381, "", "=q4=Choker of Vile Intent", "=ds=#s2#", "25 #heroic#", "" };
+ { 3, 29374, "", "=q4=Necklace of Eternal Hope", "=ds=#s2#", "25 #heroic#", "" };
+ { 4, 29368, "", "=q4=Manasurge Pendant", "=ds=#s2#", "25 #heroic#", "" };
+ { 5, 29386, "", "=q4=Necklace of the Juggernaut", "=ds=#s2#", "25 #heroic#", "" };
+ { 6, 29373, "", "=q4=Band of Halos", "=ds=#s13#", "25 #heroic#", "" };
+ { 7, 29379, "", "=q4=Ring of Arathi Warlords", "=ds=#s13#", "25 #heroic#", "" };
+ { 8, 29367, "", "=q4=Ring of Cryptic Dreams", "=ds=#s13#", "25 #heroic#", "" };
+ { 9, 29384, "", "=q4=Ring of Unyielding Force", "=ds=#s13#", "25 #heroic#", "" };
+ { 10, 23572, "", "=q3=Primal Nether", "=ds=#e8#", "10 #heroic#", "" };
+ { 11, 32227, "", "=q4=Crimson Spinel", "=ds=#e7#", "15 #heroic#", "" };
+ { 12, 32229, "", "=q4=Lionseye", "=ds=#e7#", "15 #heroic#", "" };
+ { 13, 32249, "", "=q4=Seaspray Emerald", "=ds=#e7#", "15 #heroic#", "" };
+ { 14, 35326, "", "=q4=Battlemaster's Alacrity", "=ds=#s14#", "75 #heroic#", "" };
+ { 15, 34049, "", "=q4=Battlemaster's Audacity", "=ds=#s14#", "75 #heroic#", "" };
+ { 16, 34163, "", "=q4=Battlemaster's Cruelty", "=ds=#s14#", "75 #heroic#", "" };
+ { 17, 34162, "", "=q4=Battlemaster's Depravity", "=ds=#s14#", "75 #heroic#", "" };
+ { 18, 33832, "", "=q4=Battlemaster's Determination", "=ds=#s14#", "75 #heroic#", "" };
+ { 19, 34050, "", "=q4=Battlemaster's Perseverance", "=ds=#s14#", "75 #heroic#", "" };
+ { 20, 29383, "", "=q4=Bloodlust Brooch", "=ds=#s14#", "41 #heroic#", "" };
+ { 21, 29376, "", "=q4=Essence of the Martyr", "=ds=#s14#", "41 #heroic#", "" };
+ { 22, 29387, "", "=q4=Gnomeregan Auto-Blocker 600", "=ds=#s14#", "41 #heroic#", "" };
+ { 23, 29370, "", "=q4=Icon of the Silver Crescent", "=ds=#s14#", "41 #heroic#", "" };
+ { 24, 30183, "", "=q4=Nether Vortex", "=ds=#e8#", "15 #heroic#", "" };
+ { 25, 32228, "", "=q4=Empyrean Sapphire", "=ds=#e7#", "15 #heroic#", "" };
+ { 26, 32231, "", "=q4=Pyrestone", "=ds=#e7#", "15 #heroic#", "" };
+ { 27, 32230, "", "=q4=Shadowsong Amethyst", "=ds=#e7#", "15 #heroic#", "" };
+ };
+ {
+ Name = AL["Fire Resistance Gear"];
+ { 1, 0, "INV_Box_01", "=q6=#a1#", "" };
+ { 2, 30762, "", "=q4=Infernoweave Robe", "=ds=#a1#, #s5#", "30 #heroic#", "" };
+ { 3, 30764, "", "=q4=Infernoweave Gloves", "=ds=#a1#, #s9#", "20 #heroic#", "" };
+ { 4, 30761, "", "=q4=Infernoweave Leggings", "=ds=#a1#, #s11#", "30 #heroic#", "" };
+ { 5, 30763, "", "=q4=Infernoweave Boots", "=ds=#a1#, #s12#", "20 #heroic#", "" };
+ { 7, 0, "INV_Box_01", "=q6=#a2#", "" };
+ { 8, 30776, "", "=q4=Inferno Hardened Chestguard", "=ds=#a2#, #s5#", "30 #heroic#", "" };
+ { 9, 30780, "", "=q4=Inferno Hardened Gloves", "=ds=#a2#, #s9#", "20 #heroic#", "" };
+ { 10, 30778, "", "=q4=Inferno Hardened Leggings", "=ds=#a2#, #s11#", "30 #heroic#", "" };
+ { 11, 30779, "", "=q4=Inferno Hardened Boots", "=ds=#a2#, #s12#", "20 #heroic#", "" };
+ { 13, 29434, "", "=q4=Badge of Justice", "=ds=#m17#" };
+ { 16, 0, "INV_Box_01", "=q6=#a3#", "" };
+ { 17, 30773, "", "=q4=Inferno Forged Hauberk", "=ds=#a3#, #s5#", "30 #heroic#", "" };
+ { 18, 30774, "", "=q4=Inferno Forged Gloves", "=ds=#a3#, #s9#", "20 #heroic#", "" };
+ { 19, 30772, "", "=q4=Inferno Forged Leggings", "=ds=#a3#, #s11#", "30 #heroic#", "" };
+ { 20, 30770, "", "=q4=Inferno Forged Boots", "=ds=#a3#, #s12#", "20 #heroic#", "" };
+ { 22, 0, "INV_Box_01", "=q6=#a4#", "" };
+ { 23, 30769, "", "=q4=Inferno Tempered Chestguard", "=ds=#a4#, #s5#", "30 #heroic#", "" };
+ { 24, 30767, "", "=q4=Inferno Tempered Gauntlets", "=ds=#a4#, #s9#", "20 #heroic#", "" };
+ { 25, 30766, "", "=q4=Inferno Tempered Leggings", "=ds=#a4#, #s11#", "30 #heroic#", "" };
+ { 26, 30768, "", "=q4=Inferno Tempered Boots", "=ds=#a4#, #s12#", "20 #heroic#", "" };
+ };
+};
+
+AtlasLoot_Data["BadgeSunwell"] = {
+ Name = AL["Sunwell Isle"];
+ {
+ Name = BabbleInventory["Cloth"];
+ { 1, 34924, "", "=q4=Gown of Spiritual Wonder", "=ds=#s5#", "100 #heroic#", "" };
+ { 2, 34917, "", "=q4=Shroud of the Lore`nial", "=ds=#s5#", "100 #heroic#", "" };
+ { 3, 34936, "", "=q4=Tormented Demonsoul Robes", "=ds=#s5#", "100 #heroic#", "" };
+ { 4, 34938, "", "=q4=Enslaved Doomguard Soulgrips", "=ds=#s9#", "75 #heroic#", "" };
+ { 5, 34925, "", "=q4=Adorned Supernal Legwraps", "=ds=#s11#", "100 #heroic#", "" };
+ { 6, 34937, "", "=q4=Corrupted Soulcloth Pantaloons", "=ds=#s11#", "100 #heroic#", "" };
+ { 7, 34918, "", "=q4=Legwraps of Sweltering Flame", "=ds=#s11#", "100 #heroic#", "" };
+ { 8, 34919, "", "=q4=Boots of Incantations", "=ds=#s12#", "75 #heroic#", "" };
+ { 9, 34926, "", "=q4=Slippers of Dutiful Mending", "=ds=#s12#", "75 #heroic#", "" };
+ };
+ {
+ Name = BabbleInventory["Leather"];
+ { 1, 34906, "", "=q4=Embrace of Everlasting Prowess", "=ds=#s5#", "100 #heroic#", "" };
+ { 2, 34903, "", "=q4=Embrace of Starlight", "=ds=#s5#", "100 #heroic#", "" };
+ { 3, 34900, "", "=q4=Shroud of Nature's Harmony", "=ds=#s5#", "100 #heroic#", "" };
+ { 4, 34927, "", "=q4=Tunic of the Dark Hour", "=ds=#s5#", "100 #heroic#", "" };
+ { 5, 34904, "", "=q4=Barbed Gloves of the Sage", "=ds=#s9#", "75 #heroic#", "" };
+ { 6, 34911, "", "=q4=Handwraps of the Aggressor", "=ds=#s9#", "75 #heroic#", "" };
+ { 7, 34902, "", "=q4=Oakleaf-Spun Handguards", "=ds=#s9#", "75 #heroic#", "" };
+ { 8, 34929, "", "=q4=Belt of the Silent Path", "=ds=#s10#", "75 #heroic#", "" };
+ { 9, 34905, "", "=q4=Crystalwind Leggings", "=ds=#s11#", "100 #heroic#", "" };
+ { 10, 34901, "", "=q4=Grovewalker's Leggings", "=ds=#s11#", "100 #heroic#", "" };
+ { 11, 34910, "", "=q4=Tameless Breeches", "=ds=#s11#", "100 #heroic#", "" };
+ { 12, 34928, "", "=q4=Trousers of the Scryers' Retainer", "=ds=#s11#", "100 #heroic#", "" };
+ };
+ {
+ Name = BabbleInventory["Mail"];
+ { 1, 34933, "", "=q4=Hauberk of Whirling Fury", "=ds=#s5#", "100 #heroic#", "" };
+ { 2, 34912, "", "=q4=Scaled Drakeskin Chestguard", "=ds=#s5#", "100 #heroic#", "" };
+ { 3, 34930, "", "=q4=Wave of Life Chestguard", "=ds=#s5#", "100 #heroic#", "" };
+ { 4, 34916, "", "=q4=Gauntlets of Rapidity", "=ds=#s9#", "75 #heroic#", "" };
+ { 5, 34935, "", "=q4=Aftershock Waistguard", "=ds=#s10#", "75 #heroic#", "" };
+ { 6, 34932, "", "=q4=Clutch of the Soothing Breeze", "=ds=#s10#", "75 #heroic#", "" };
+ { 7, 34914, "", "=q4=Leggings of the Pursuit", "=ds=#s11#", "100 #heroic#", "" };
+ { 8, 34931, "", "=q4=Runed Scales of Antiquity", "=ds=#s11#", "100 #heroic#", "" };
+ { 9, 34934, "", "=q4=Rushing Storm Kilt", "=ds=#s11#", "100 #heroic#", "" };
+ };
+ {
+ Name = BabbleInventory["Plate"];
+ { 1, 34942, "", "=q4=Breastplate of Ire", "=ds=#s5#", "100 #heroic#", "" };
+ { 2, 34939, "", "=q4=Chestplate of Stoicism", "=ds=#s5#", "100 #heroic#", "" };
+ { 3, 34921, "", "=q4=Ecclesiastical Cuirass", "=ds=#s5#", "100 #heroic#", "" };
+ { 4, 34945, "", "=q4=Shattrath Protectorate's Breastplate", "=ds=#s5#", "100 #heroic#", "" };
+ { 5, 34944, "", "=q4=Girdle of Seething Rage", "=ds=#s10#", "75 #heroic#", "" };
+ { 6, 34941, "", "=q4=Girdle of the Fearless", "=ds=#s10#", "75 #heroic#", "" };
+ { 7, 34923, "", "=q4=Waistguard of Reparation", "=ds=#s10#", "75 #heroic#", "" };
+ { 8, 34922, "", "=q4=Greaves of Pacification", "=ds=#s11#", "100 #heroic#", "" };
+ { 9, 34946, "", "=q4=Inscribed Legplates of the Aldor", "=ds=#s11#", "100 #heroic#", "" };
+ { 10, 34943, "", "=q4=Legplates of Unending Fury", "=ds=#s11#", "100 #heroic#", "" };
+ { 11, 34940, "", "=q4=Sunguard Legplates", "=ds=#s11#", "100 #heroic#", "" };
+ { 12, 34947, "", "=q4=Blue's Greaves of the Righteous Guardian", "=ds=#s12#", "75 #heroic#", "" };
+ };
+ {
+ Name = AL["Weapons"];
+ { 1, 34893, "", "=q4=Vanir's Right Fist of Brutality", "=ds=#h3#, #w13#", "105 #heroic#", "" };
+ { 2, 34951, "", "=q4=Vanir's Left Fist of Brutality", "=ds=#h4#, #w13#", "45 #heroic#", "" };
+ { 3, 34950, "", "=q4=Vanir's Left Fist of Savagery", "=ds=#h4#, #w13#", "45 #heroic#", "" };
+ { 4, 34895, "", "=q4=Scryer's Blade of Focus", "=ds=#h3#, #w4#", "150 #heroic#", "" };
+ { 5, 34894, "", "=q4=Blade of Serration", "=ds=#h1#, #w4#", "105 #heroic#", "" };
+ { 6, 34949, "", "=q4=Swift Blade of Uncertainty", "=ds=#h4#, #w4#", "45 #heroic#", "" };
+ { 7, 34952, "", "=q4=The Mutilator", "=ds=#h4#, #w4#", "45 #heroic#", "" };
+ { 8, 34891, "", "=q4=The Blade of Harbingers", "=ds=#h2#, #w1#", "150 #heroic#", "" };
+ { 9, 34896, "", "=q4=Gavel of Naaru Blessings", "=ds=#h3#, #w6#", "150 #heroic#", "" };
+ { 10, 34898, "", "=q4=Staff of the Forest Lord", "=ds=#h2#, #w9#", "150 #heroic#", "" };
+ { 11, 34892, "", "=q4=Crossbow of Relentless Strikes", "=ds=#w3#", "150 #heroic#", "" };
+ };
+ {
+ Name = AL["Accessories"];
+ { 1, 34887, "", "=q4=Angelista's Revenge", "=ds=#s13#", "60 #heroic#", "" };
+ { 2, 34890, "", "=q4=Anveena's Touch", "=ds=#s13#", "60 #heroic#", "" };
+ { 3, 34889, "", "=q4=Fused Nethergon Band", "=ds=#s13#", "60 #heroic#", "" };
+ { 4, 34888, "", "=q4=Ring of the Stalwart Protector", "=ds=#s13#", "60 #heroic#", "" };
+ };
+};
- AtlasLoot_Data["HardModeArena"] = {
+AtlasLoot_Data["HardModeArena"] = {
Name = "Hardmode arena";
{
Name = "Hardmode arena";
@@ -6015,102 +6021,102 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0");
};
};
- AtlasLoot_Data["HardModeArena2"] = {
- Name = "Hardmode arena2";
- {
- Name = "Hardmode arena2";
- { 1, 32809, "", "=q4=Veteran's Chain Bracers", "=ds=#s8#, #a3#", "25 #heroic#", ""};
- { 2, 32797, "", "=q4=Veteran's Chain Girdle", "=ds=#s10#, #a3#", "40 #heroic#", ""};
- { 3, 32785, "", "=q4=Veteran's Chain Sabatons", "=ds=#s12#, #a3#", "40 #heroic#", ""};
- { 5, 32816, "", "=q4=Veteran's Linked Bracers", "=ds=#s8#, #a3#", "25 #heroic#", ""};
- { 6, 32803, "", "=q4=Veteran's Linked Girdle", "=ds=#s10#, #a3#", "40 #heroic#", ""};
- { 7, 32791, "", "=q4=Veteran's Linked Sabatons", "=ds=#s12#, #a3#", "40 #heroic#", ""};
- { 9, 32817, "", "=q4=Veteran's Mail Bracers", "=ds=#s8#, #a3#", "25 #heroic#", ""};
- { 10, 32804, "", "=q4=Veteran's Mail Girdle", "=ds=#s10#, #a3#", "40 #heroic#", ""};
- { 11, 32792, "", "=q4=Veteran's Mail Sabatons", "=ds=#s12#, #a3#", "40 #heroic#", ""};
- { 13, 32997, "", "=q4=Veteran's Ringmail Bracers", "=ds=#s8#, #a3#", "25 #heroic#", ""};
- { 14, 32998, "", "=q4=Veteran's Ringmail Girdle", "=ds=#s10#, #a3#", "40 #heroic#", ""};
- { 15, 32999, "", "=q4=Veteran's Ringmail Sabatons", "=ds=#s12#, #a3#", "40 #heroic#", ""};
- { 16, 32813, "", "=q4=Veteran's Lamellar Bracers", "=ds=#s8#, #a4#", "25 #heroic#", ""};
- { 17, 32801, "", "=q4=Veteran's Lamellar Belt", "=ds=#s10#, #a4#", "40 #heroic#", ""};
- { 18, 32789, "", "=q4=Veteran's Lamellar Greaves", "=ds=#s12#, #a4#", "40 #heroic#", ""};
- { 20, 32989, "", "=q4=Veteran's Ornamented Bracers", "=ds=#s8#, #a4#", "25 #heroic#", ""};
- { 21, 32988, "", "=q4=Veteran's Ornamented Belt", "=ds=#s10#, #a4#", "40 #heroic#", ""};
- { 22, 32990, "", "=q4=Veteran's Ornamented Greaves", "=ds=#s12#, #a4#", "40 #heroic#", ""};
- { 24, 32818, "", "=q4=Veteran's Plate Bracers", "=ds=#s8#, #a4#", "25 #heroic#", ""};
- { 25, 32805, "", "=q4=Veteran's Plate Belt", "=ds=#s10#, #a4#", "40 #heroic#", ""};
- { 26, 32793, "", "=q4=Veteran's Plate Greaves", "=ds=#s12#, #a4#", "40 #heroic#", ""};
- { 28, 32819, "", "=q4=Veteran's Scaled Bracers", "=ds=#s8#, #a4#", "25 #heroic#", ""};
- { 29, 32806, "", "=q4=Veteran's Scaled Belt", "=ds=#s10#, #a4#", "40 #heroic#", ""};
- { 30, 32794, "", "=q4=Veteran's Scaled Greaves", "=ds=#s12#, #a4#", "40 #heroic#", ""};
- };
+AtlasLoot_Data["HardModeArena2"] = {
+ Name = "Hardmode arena2";
+ {
+ Name = "Hardmode arena2";
+ { 1, 32809, "", "=q4=Veteran's Chain Bracers", "=ds=#s8#, #a3#", "25 #heroic#", "" };
+ { 2, 32797, "", "=q4=Veteran's Chain Girdle", "=ds=#s10#, #a3#", "40 #heroic#", "" };
+ { 3, 32785, "", "=q4=Veteran's Chain Sabatons", "=ds=#s12#, #a3#", "40 #heroic#", "" };
+ { 5, 32816, "", "=q4=Veteran's Linked Bracers", "=ds=#s8#, #a3#", "25 #heroic#", "" };
+ { 6, 32803, "", "=q4=Veteran's Linked Girdle", "=ds=#s10#, #a3#", "40 #heroic#", "" };
+ { 7, 32791, "", "=q4=Veteran's Linked Sabatons", "=ds=#s12#, #a3#", "40 #heroic#", "" };
+ { 9, 32817, "", "=q4=Veteran's Mail Bracers", "=ds=#s8#, #a3#", "25 #heroic#", "" };
+ { 10, 32804, "", "=q4=Veteran's Mail Girdle", "=ds=#s10#, #a3#", "40 #heroic#", "" };
+ { 11, 32792, "", "=q4=Veteran's Mail Sabatons", "=ds=#s12#, #a3#", "40 #heroic#", "" };
+ { 13, 32997, "", "=q4=Veteran's Ringmail Bracers", "=ds=#s8#, #a3#", "25 #heroic#", "" };
+ { 14, 32998, "", "=q4=Veteran's Ringmail Girdle", "=ds=#s10#, #a3#", "40 #heroic#", "" };
+ { 15, 32999, "", "=q4=Veteran's Ringmail Sabatons", "=ds=#s12#, #a3#", "40 #heroic#", "" };
+ { 16, 32813, "", "=q4=Veteran's Lamellar Bracers", "=ds=#s8#, #a4#", "25 #heroic#", "" };
+ { 17, 32801, "", "=q4=Veteran's Lamellar Belt", "=ds=#s10#, #a4#", "40 #heroic#", "" };
+ { 18, 32789, "", "=q4=Veteran's Lamellar Greaves", "=ds=#s12#, #a4#", "40 #heroic#", "" };
+ { 20, 32989, "", "=q4=Veteran's Ornamented Bracers", "=ds=#s8#, #a4#", "25 #heroic#", "" };
+ { 21, 32988, "", "=q4=Veteran's Ornamented Belt", "=ds=#s10#, #a4#", "40 #heroic#", "" };
+ { 22, 32990, "", "=q4=Veteran's Ornamented Greaves", "=ds=#s12#, #a4#", "40 #heroic#", "" };
+ { 24, 32818, "", "=q4=Veteran's Plate Bracers", "=ds=#s8#, #a4#", "25 #heroic#", "" };
+ { 25, 32805, "", "=q4=Veteran's Plate Belt", "=ds=#s10#, #a4#", "40 #heroic#", "" };
+ { 26, 32793, "", "=q4=Veteran's Plate Greaves", "=ds=#s12#, #a4#", "40 #heroic#", "" };
+ { 28, 32819, "", "=q4=Veteran's Scaled Bracers", "=ds=#s8#, #a4#", "25 #heroic#", "" };
+ { 29, 32806, "", "=q4=Veteran's Scaled Belt", "=ds=#s10#, #a4#", "40 #heroic#", "" };
+ { 30, 32794, "", "=q4=Veteran's Scaled Greaves", "=ds=#s12#, #a4#", "40 #heroic#", "" };
};
+};
- -----------------------
- --- BoE World Epics ---
- -----------------------
+-----------------------
+--- BoE World Epics ---
+-----------------------
- AtlasLoot_Data["WorldEpicsTBC"] = {
- Name = AL["BoE World Epics"];
- Type = "BCDungeon";
- {
- Name = AL["BoE World Epics"];
- { 1, 31329, "", "=q4=Lifegiving Cloak", "=ds=#s4#", "", ""};
- { 2, 31340, "", "=q4=Will of Edward the Odd", "=ds=#s5#, #a1#", "", ""};
- { 3, 31343, "", "=q4=Kamaei's Cerulean Skirt", "=ds=#s11#, #a1#", "", ""};
- { 4, 31333, "", "=q4=The Night Watchman", "=ds=#s1#, #a2#", "", ""};
- { 5, 31335, "", "=q4=Pants of Living Growth", "=ds=#s11#, #a2#", "", ""};
- { 6, 31330, "", "=q4=Lightning Crown", "=ds=#s1#, #a3#", "", ""};
- { 7, 31328, "", "=q4=Leggings of Beast Mastery", "=ds=#s11#, #a3#", "", ""};
- { 8, 31320, "", "=q4=Chestguard of Exile", "=ds=#s5#, #a4#", "", ""};
- { 9, 31338, "", "=q4=Charlotte's Ivy", "=ds=#s2#", "", ""};
- { 10, 31321, "", "=q4=Choker of Repentance", "=ds=#s2#", "", ""};
- { 11, 31319, "", "=q4=Band of Impenetrable Defenses", "=ds=#s13#", "", ""};
- { 12, 31339, "", "=q4=Lola's Eve", "=ds=#s13#", "", ""};
- { 13, 31326, "", "=q4=Truestrike Ring", "=ds=#s13#", "", ""};
- { 16, 31331, "", "=q4=The Night Blade", "=ds=#h1#, #w4#", "", ""};
- { 17, 31336, "", "=q4=Blade of Wizardry", "=ds=#h3#, #w10#", "", ""};
- { 18, 31332, "", "=q4=Blinkstrike", "=ds=#h1#, #w10#", "", ""};
- { 19, 31318, "", "=q4=Singing Crystal Axe", "=ds=#h2#, #w1#", "", ""};
- { 20, 31342, "", "=q4=The Ancient Scepter of Sue-Min", "=ds=#h3#, #w6#", "", ""};
- { 21, 31322, "", "=q4=The Hammer of Destiny", "=ds=#h2#, #w6#", "", ""};
- { 22, 31334, "", "=q4=Staff of Natural Fury", "=ds=#h2#, #w9#", "", ""};
- { 23, 34622, "", "=q4=Spinesever", "=ds=#w11#", "", ""};
- { 24, 31323, "", "=q4=Don Santos' Famous Hunting Rifle", "=ds=#w5#", "", ""};
- };
+AtlasLoot_Data["WorldEpicsTBC"] = {
+ Name = AL["BoE World Epics"];
+ Type = "BCDungeon";
+ {
+ Name = AL["BoE World Epics"];
+ { 1, 31329, "", "=q4=Lifegiving Cloak", "=ds=#s4#", "", "" };
+ { 2, 31340, "", "=q4=Will of Edward the Odd", "=ds=#s5#, #a1#", "", "" };
+ { 3, 31343, "", "=q4=Kamaei's Cerulean Skirt", "=ds=#s11#, #a1#", "", "" };
+ { 4, 31333, "", "=q4=The Night Watchman", "=ds=#s1#, #a2#", "", "" };
+ { 5, 31335, "", "=q4=Pants of Living Growth", "=ds=#s11#, #a2#", "", "" };
+ { 6, 31330, "", "=q4=Lightning Crown", "=ds=#s1#, #a3#", "", "" };
+ { 7, 31328, "", "=q4=Leggings of Beast Mastery", "=ds=#s11#, #a3#", "", "" };
+ { 8, 31320, "", "=q4=Chestguard of Exile", "=ds=#s5#, #a4#", "", "" };
+ { 9, 31338, "", "=q4=Charlotte's Ivy", "=ds=#s2#", "", "" };
+ { 10, 31321, "", "=q4=Choker of Repentance", "=ds=#s2#", "", "" };
+ { 11, 31319, "", "=q4=Band of Impenetrable Defenses", "=ds=#s13#", "", "" };
+ { 12, 31339, "", "=q4=Lola's Eve", "=ds=#s13#", "", "" };
+ { 13, 31326, "", "=q4=Truestrike Ring", "=ds=#s13#", "", "" };
+ { 16, 31331, "", "=q4=The Night Blade", "=ds=#h1#, #w4#", "", "" };
+ { 17, 31336, "", "=q4=Blade of Wizardry", "=ds=#h3#, #w10#", "", "" };
+ { 18, 31332, "", "=q4=Blinkstrike", "=ds=#h1#, #w10#", "", "" };
+ { 19, 31318, "", "=q4=Singing Crystal Axe", "=ds=#h2#, #w1#", "", "" };
+ { 20, 31342, "", "=q4=The Ancient Scepter of Sue-Min", "=ds=#h3#, #w6#", "", "" };
+ { 21, 31322, "", "=q4=The Hammer of Destiny", "=ds=#h2#, #w6#", "", "" };
+ { 22, 31334, "", "=q4=Staff of Natural Fury", "=ds=#h2#, #w9#", "", "" };
+ { 23, 34622, "", "=q4=Spinesever", "=ds=#w11#", "", "" };
+ { 24, 31323, "", "=q4=Don Santos' Famous Hunting Rifle", "=ds=#w5#", "", "" };
};
+};
- ------------------------
- --- World Bosses TBC ---
- ------------------------
+------------------------
+--- World Bosses TBC ---
+------------------------
- AtlasLoot_Data["WorldBossesTBC"] = {
- Name = "World Bosses";
- Type = "BCRaid";
- {
- Name = BabbleBoss["Doom Lord Kazzak"];
- { 1, 30735, "", "=q4=Ancient Spellcloak of the Highborne", "=ds=#s4#", "", "16.5%"};
- { 2, 30734, "", "=q4=Leggings of the Seventh Circle", "=ds=#s11#, #a1#", "", "17.0%"};
- { 3, 30737, "", "=q4=Gold-Leaf Wildboots", "=ds=#s12#, #a2#", "", "21.1%"};
- { 4, 30739, "", "=q4=Scaled Greaves of the Marksman", "=ds=#s11#, #a3#", "", "14.0%"};
- { 5, 30740, "", "=q4=Ripfiend Shoulderplates", "=ds=#s3#, #a4#", "", "16.1%"};
- { 6, 30741, "", "=q4=Topaz-Studded Battlegrips", "=ds=#s9#, #a4#", "", "17.0%"};
- { 7, 30736, "", "=q4=Ring of Flowing Light", "=ds=#s13#", "", "15.8%"};
- { 8, 30738, "", "=q4=Ring of Reciprocity", "=ds=#s13#", "", "23.4%"};
- { 9, 30733, "", "=q4=Hope Ender", "=ds=#h1#, #w10#", "", "16.7%"};
- { 10, 30732, "", "=q4=Exodar Life-Staff", "=ds=#h2#, #w9#", "", "17.1%"};
- };
- {
- Name = BabbleBoss["Doomwalker"];
- { 1, 30729, "", "=q4=Black-Iron Battlecloak", "=ds=#s4#", "", "19.6%"};
- { 2, 30725, "", "=q4=Anger-Spark Gloves", "=ds=#s9#, #a1#", "", "17.9%"};
- { 3, 30727, "", "=q4=Gilded Trousers of Benediction", "=ds=#s11#, #a1#", "", "18.1%"};
- { 4, 30730, "", "=q4=Terrorweave Tunic", "=ds=#s5#, #a2#", "", "18.8%"};
- { 5, 30728, "", "=q4=Fathom-Helm of the Deeps", "=ds=#s1#, #a3#", "", "16.2%"};
- { 6, 30731, "", "=q4=Faceguard of the Endless Watch", "=ds=#s1#, #a4#", "", "18.1%"};
- { 7, 30726, "", "=q4=Archaic Charm of Presence", "=ds=#s2#", "", "20.9%"};
- { 8, 30723, "", "=q4=Talon of the Tempest", "=ds=#h3#, #w4#", "", "15.4%"};
- { 9, 30722, "", "=q4=Ethereum Nexus-Reaver", "=ds=#h2#, #w1#", "", "16.0%"};
- { 10, 30724, "", "=q4=Barrel-Blade Longrifle", "=ds=#w5#", "", "20.0%"};
- }
- };
\ No newline at end of file
+AtlasLoot_Data["WorldBossesTBC"] = {
+ Name = AL["World Bosses"];
+ Type = "BCRaid";
+ {
+ Name = BabbleBoss["Doom Lord Kazzak"];
+ { 1, 30735, "", "=q4=Ancient Spellcloak of the Highborne", "=ds=#s4#", "", "16.5%" };
+ { 2, 30734, "", "=q4=Leggings of the Seventh Circle", "=ds=#s11#, #a1#", "", "17.0%" };
+ { 3, 30737, "", "=q4=Gold-Leaf Wildboots", "=ds=#s12#, #a2#", "", "21.1%" };
+ { 4, 30739, "", "=q4=Scaled Greaves of the Marksman", "=ds=#s11#, #a3#", "", "14.0%" };
+ { 5, 30740, "", "=q4=Ripfiend Shoulderplates", "=ds=#s3#, #a4#", "", "16.1%" };
+ { 6, 30741, "", "=q4=Topaz-Studded Battlegrips", "=ds=#s9#, #a4#", "", "17.0%" };
+ { 7, 30736, "", "=q4=Ring of Flowing Light", "=ds=#s13#", "", "15.8%" };
+ { 8, 30738, "", "=q4=Ring of Reciprocity", "=ds=#s13#", "", "23.4%" };
+ { 9, 30733, "", "=q4=Hope Ender", "=ds=#h1#, #w10#", "", "16.7%" };
+ { 10, 30732, "", "=q4=Exodar Life-Staff", "=ds=#h2#, #w9#", "", "17.1%" };
+ };
+ {
+ Name = BabbleBoss["Doomwalker"];
+ { 1, 30729, "", "=q4=Black-Iron Battlecloak", "=ds=#s4#", "", "19.6%" };
+ { 2, 30725, "", "=q4=Anger-Spark Gloves", "=ds=#s9#, #a1#", "", "17.9%" };
+ { 3, 30727, "", "=q4=Gilded Trousers of Benediction", "=ds=#s11#, #a1#", "", "18.1%" };
+ { 4, 30730, "", "=q4=Terrorweave Tunic", "=ds=#s5#, #a2#", "", "18.8%" };
+ { 5, 30728, "", "=q4=Fathom-Helm of the Deeps", "=ds=#s1#, #a3#", "", "16.2%" };
+ { 6, 30731, "", "=q4=Faceguard of the Endless Watch", "=ds=#s1#, #a4#", "", "18.1%" };
+ { 7, 30726, "", "=q4=Archaic Charm of Presence", "=ds=#s2#", "", "20.9%" };
+ { 8, 30723, "", "=q4=Talon of the Tempest", "=ds=#h3#, #w4#", "", "15.4%" };
+ { 9, 30722, "", "=q4=Ethereum Nexus-Reaver", "=ds=#h2#, #w1#", "", "16.0%" };
+ { 10, 30724, "", "=q4=Barrel-Blade Longrifle", "=ds=#w5#", "", "20.0%" };
+ }
+};
diff --git a/AtlasLoot_Crafting/craftingCLASSIC.lua b/AtlasLoot_Crafting/craftingCLASSIC.lua
index 135764d..497a22c 100644
--- a/AtlasLoot_Crafting/craftingCLASSIC.lua
+++ b/AtlasLoot_Crafting/craftingCLASSIC.lua
@@ -88,3224 +88,2658 @@ local MASTER = select(2, GetSpellInfo(28596));
---- Fishing
---- Jewelcrafting
- -----------------------
- --- Tradeskill List ---
- -----------------------
-
- ---------------
- --- Alchemy ---
- ---------------
- AtlasLoot_Data["AlchemyCLASSIC"] = {
- Name = ALCHEMY;
- Type = "Crafting";
- {
- Name = AL["Battle Elixirs"];
- { 1, "s17573", "13454", "=q1=Greater Arcane Elixir", "=ds="..AL["Trainer"]};
- { 2, "s17571", "13452", "=q1=Elixir of the Mongoose", "=ds="..BabbleZone["Felwood"]};
- { 3, "s17557", "13453", "=q1=Elixir of Brute Force", "=ds="..AL["Trainer"]};
- { 4, "s11477", "9224", "=q1=Elixir of Demonslaying", "=ds="..AL["Vendor"]};
- { 5, "s26277", "21546", "=q1=Elixir of Greater Firepower", "=ds="..BabbleZone["Searing Gorge"]};
- { 6, "s11476", "9264", "=q1=Elixir of Shadow Power", "=ds="..AL["Vendor"]..", "..BabbleZone["Undercity"].."/"..BabbleZone["Stormwind City"]};
- { 7, "s11472", "9206", "=q1=Elixir of Giants", "=ds="..AL["World Drop"]};
- { 8, "s11467", "9187", "=q1=Elixir of Greater Agility", "=ds="..AL["Trainer"]};
- { 9, "s11461", "9155", "=q1=Arcane Elixir", "=ds="..AL["Trainer"]};
- { 10, "s21923", "17708", "=q1=Elixir of Frost Power", "=ds="..AL["Feast of Winter Veil"]};
- { 11, "s11449", "8949", "=q1=Elixir of Agility", "=ds="..AL["Trainer"]};
- { 12, "s63732", "45621", "=q1=Elixir of Minor Accuracy", "=ds="};
- { 13, "s3188", "3391", "=q1=Elixir of Ogre's Strength", "=ds="..AL["World Drop"]};
- { 14, "s2333", "3390", "=q1=Elixir of Lesser Agility", "=ds="..AL["World Drop"]};
- { 15, "s7845", "6373", "=q1=Elixir of Firepower", "=ds="..AL["Trainer"]};
- { 16, "s8240", "6662", "=q1=Elixir of Giant Growth", "=ds="..BabbleZone["The Barrens"]};
- { 17, "s3230", "2457", "=q1=Elixir of Minor Agility", "=ds="..AL["World Drop"]};
- { 18, "s2329", "2454", "=q1=Elixir of Lion's Strength", "=ds="..AL["Trainer"]};
- };
- {
- Name = AL["Guardian Elixirs"];
- { 1, "s24368", "20004", "=q1=Major Troll's Blood Elixir", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Zandalar Tribe"]};
- { 2, "s24365", "20007", "=q1=Mageblood Elixir", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["Zandalar Tribe"]};
- { 3, "s17554", "13445", "=q1=Elixir of Superior Defense", "=ds="..AL["Vendor"]..", "..BabbleZone["Orgrimmar"].."/"..BabbleZone["Ironforge"]};
- { 4, "s17555", "13447", "=q1=Elixir of the Sages", "=ds="..AL["Trainer"]};
- { 5, "s11466", "9088", "=q1=Gift of Arthas", "=ds="..BabbleZone["Western Plaguelands"]};
- { 6, "s11465", "9179", "=q1=Elixir of Greater Intellect", "=ds="..AL["Trainer"]};
- { 7, "s11450", "8951", "=q1=Elixir of Greater Defense", "=ds="..AL["Trainer"]};
- { 8, "s3451", "3826", "=q1=Mighty Troll's Blood Elixir", "=ds="..AL["World Drop"]};
- { 9, "s3450", "3825", "=q1=Elixir of Fortitude", "=ds="..AL["Trainer"]};
- { 10, "s3177", "3389", "=q1=Elixir of Defense", "=ds="..AL["Trainer"]};
- { 11, "s3176", "3388", "=q1=Strong Troll's Blood Potion", "=ds="..AL["Trainer"]};
- { 12, "s3171", "3383", "=q1=Elixir of Wisdom", "=ds="..AL["Trainer"]};
- { 13, "s2334", "2458", "=q1=Elixir of Minor Fortitude", "=ds="..AL["Trainer"]};
- { 14, "s3170", "3382", "=q1=Weak Troll's Blood Elixir", "=ds="..AL["Trainer"]};
- { 15, "s7183", "5997", "=q1=Elixir of Minor Defense", "=ds="..AL["Trainer"]};
- };
- {
- Name = AL["Potions"].." 1";
- { 1, "s22732", "18253", "=q1=Major Rejuvenation Potion", "=ds="..BabbleZone["Molten Core"]};
- { 2, "s17580", "13444", "=q1=Major Mana Potion", "=ds="..AL["Vendor"]..", "..BabbleZone["Western Plaguelands"]};
- { 3, "s17577", "13461", "=q1=Greater Arcane Protection Potion", "=ds="..BabbleZone["Winterspring"]};
- { 4, "s17574", "13457", "=q1=Greater Fire Protection Potion", "=ds="..BabbleZone["Blackrock Spire"]};
- { 5, "s17575", "13456", "=q1=Greater Frost Protection Potion", "=ds="..BabbleZone["Winterspring"]};
- { 6, "s17576", "13458", "=q1=Greater Nature Protection Potion", "=ds="..BabbleZone["Western Plaguelands"]};
- { 7, "s17578", "13459", "=q1=Greater Shadow Protection Potion", "=ds="..BabbleZone["Eastern Plaguelands"]};
- { 8, "s24367", "20008", "=q1=Living Action Potion", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Zandalar Tribe"]};
- { 9, "s17572", "13462", "=q1=Purification Potion", "=ds="..AL["World Drop"]};
- { 10, "s17570", "13455", "=q1=Greater Stoneshield Potion", "=ds="..AL["World Drop"]};
- { 11, "s24366", "20002", "=q1=Greater Dreamless Sleep Potion", "=ds="..BabbleFaction["Friendly"]..": "..BabbleFaction["Zandalar Tribe"]};
- { 12, "s17556", "13446", "=q1=Major Healing Potion", "=ds="..AL["Trainer"]};
- { 13, "s17553", "13443", "=q1=Superior Mana Potion", "=ds="..AL["Trainer"]};
- { 14, "s17552", "13442", "=q1=Mighty Rage Potion", "=ds="..AL["Trainer"]};
- { 15, "s3175", "3387", "=q1=Limited Invulnerability Potion", "=ds="..AL["World Drop"]};
- { 16, "s11464", "9172", "=q1=Invisibility Potion", "=ds="..AL["World Drop"]};
- { 17, "s15833", "12190", "=q1=Dreamless Sleep Potion", "=ds="..AL["Trainer"]};
- { 18, "s11458", "9144", "=q1=Wildvine Potion", "=ds="..BabbleZone["The Hinterlands"].."/"..BabbleZone["Stranglethorn Vale"]};
- { 19, "s4942", "4623", "=q1=Lesser Stoneshield Potion", "=ds="..AL["Quest"]..": "..BabbleZone["Badlands"]};
- { 20, "s11457", "3928", "=q1=Superior Healing Potion", "=ds="..AL["Trainer"]};
- { 21, "s11453", "9036", "=q1=Magic Resistance Potion", "=ds="..AL["World Drop"]};
- };
- {
- Name = AL["Potions"].." 2";
- { 1, "s11452", "9030", "=q1=Restorative Potion", "=ds="..AL["Quest"]..": "..BabbleZone["Badlands"]};
- { 2, "s11448", "6149", "=q1=Greater Mana Potion", "=ds="..AL["Trainer"]};
- { 3, "s7258", "6050", "=q1=Frost Protection Potion", "=ds="..AL["Vendor"]};
- { 4, "s7259", "6052", "=q1=Nature Protection Potion", "=ds="..AL["Vendor"]};
- { 5, "s6618", "5633", "=q1=Great Rage Potion", "=ds="..AL["Vendor"]};
- { 6, "s3448", "3823", "=q1=Lesser Invisibility Potion", "=ds="..AL["Trainer"]};
- { 7, "s7257", "6049", "=q1=Fire Protection Potion", "=ds="..AL["Vendor"]};
- { 8, "s3452", "3827", "=q1=Mana Potion", "=ds="..AL["Trainer"]};
- { 9, "s7181", "1710", "=q1=Greater Healing Potion", "=ds="..AL["Trainer"]};
- { 10, "s6624", "5634", "=q1=Free Action Potion", "=ds="..AL["Vendor"]};
- { 11, "s7256", "6048", "=q1=Shadow Protection Potion", "=ds="..AL["Vendor"]};
- { 12, "s3173", "3385", "=q1=Lesser Mana Potion", "=ds="..AL["Trainer"]};
- { 13, "s3174", "3386", "=q1=Potion of Curing", "=ds="..AL["World Drop"]};
- { 14, "s3447", "929", "=q1=Healing Potion", "=ds="..AL["Trainer"]};
- { 15, "s3172", "3384", "=q1=Minor Magic Resistance Potion", "=ds="..AL["World Drop"]};
- { 16, "s7255", "6051", "=q1=Holy Protection Potion", "=ds="..AL["Vendor"]};
- { 17, "s7841", "6372", "=q1=Swim Speed Potion", "=ds="..AL["Trainer"]};
- { 18, "s6617", "5631", "=q1=Rage Potion", "=ds="..AL["Vendor"]};
- { 19, "s2335", "2459", "=q1=Swiftness Potion", "=ds="..AL["World Drop"]};
- { 20, "s2337", "858", "=q1=Lesser Healing Potion", "=ds="..AL["Trainer"]};
- { 21, "s4508", "4596", "=q1=Discolored Healing Potion", "=ds="..AL["Quest"]..", "..BabbleZone["Silverpine Forest"]};
- { 22, "s2332", "2456", "=q1=Minor Rejuvenation Potion", "=ds="..AL["Trainer"]};
- { 23, "s2331", "2455", "=q1=Minor Mana Potion", "=ds="..AL["Trainer"]};
- { 24, "s2330", "118", "=q1=Minor Healing Potion", "=ds="..AL["Trainer"]};
- };
- {
- Name = AL["Flasks"];
- { 1, "s17638", "13513", "=q1=Flask of Chromatic Resistance", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Lower City"]};
- { 2, "s17636", "13511", "=q1=Flask of Distilled Wisdom", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Cenarion Expedition"]};
- { 3, "s17634", "13506", "=q1=Flask of Petrification", "=ds="..AL["World Drop"]};
- { 4, "s17637", "13512", "=q1=Flask of Supreme Power", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Keepers of Time"]};
- { 5, "s17635", "13510", "=q1=Flask of the Titans", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["The Sha'tar"]};
- };
- {
- Name = AL["Transmutes"];
- { 1, "s11479", "3577", "=q2=Transmute: Iron to Gold", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 2, "s11480", "6037", "=q2=Transmute: Mithril to Truesilver", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 3, "s17187", "12360", "=q2=Transmute: Arcanite Bar", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 4, "s17559", "7078", "=q2=Transmute: Air to Fire", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Argent Dawn"]};
- { 5, "s17566", "12803", "=q2=Transmute: Earth to Life", "=ds="..AL["World Drop"]};
- { 6, "s17561", "7080", "=q2=Transmute: Earth to Water", "=ds="..AL["Vendor"]..", "..BabbleZone["Felwood"]};
- { 7, "s17560", "7076", "=q2=Transmute: Fire to Earth", "=ds="..AL["Vendor"]..", "..BabbleZone["Blackrock Depths"]};
- { 8, "s17565", "7076", "=q2=Transmute: Life to Earth", "=ds="..AL["World Drop"]};
- { 9, "s17563", "7080", "=q2=Transmute: Undeath to Water", "=ds="..AL["World Drop"]};
- { 10, "s17562", "7082", "=q2=Transmute: Water to Air", "=ds="..AL["Vendor"]..", "..BabbleZone["Western Plaguelands"]};
- { 11, "s17564", "12808", "=q2=Transmute: Water to Undeath", "=ds="..AL["World Drop"]};
- { 12, "s25146", "7068", "=q1=Transmute: Elemental Fire", "=ds="..AL["Vendor"]..", "..BabbleZone["Blackrock Depths"]};
- };
- {
- Name = AL["Miscellaneous"];
- { 1, "s24266", "19931", "=q3=Gurubashi Mojo Madness", "=ds="..BabbleZone["Zul'Gurub"]};
- { 2, "s11460", "9154", "=q1=Elixir of Detect Undead", "=ds="..AL["Trainer"]};
- { 3, "s22808", "18294", "=q1=Elixir of Greater Water Breathing", "=ds="..AL["Trainer"]};
- { 4, "s11456", "9061", "=q1=Goblin Rocket Fuel", "=ds="..AL["Crafted"]..": "..GetSpellInfo(4036)};
- { 5, "s11451", "8956", "=q1=Oil of Immolation", "=ds="..AL["Trainer"]};
- { 6, "s12609", "10592", "=q1=Catseye Elixir", "=ds="..AL["Trainer"]};
- { 7, "s3454", "3829", "=q1=Frost Oil", "=ds="..AL["Vendor"]..", "..BabbleZone["Alterac Mountains"]};
- { 8, "s11459", "9149", "=q1=Philosopher's Stone", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 9, "s3453", "3828", "=q1=Elixir of Detect Lesser Invisibility", "=ds="..AL["World Drop"]};
- { 10, "s3449", "3824", "=q1=Shadow Oil", "=ds="..AL["Vendor"]};
- { 11, "s7837", "6371", "=q1=Fire Oil", "=ds="..AL["Trainer"]};
- { 12, "s7179", "5996", "=q1=Elixir of Water Breathing", "=ds="..AL["Trainer"]};
- { 13, "s7836", "6370", "=q1=Blackmouth Oil", "=ds="..AL["Trainer"]};
- };
- };
- ---------------------
- --- Blacksmithing ---
- ---------------------
- AtlasLoot_Data["SmithingCLASSIC"] = {
- Name = BLACKSMITHING;
- Type = "Crafting";
- {
- Name = BabbleInventory["Armor"].." - Chest";
- { 1, "s28242", "22669", "=q4=Icebane Breastplate", "=ds=#sr# 300"};
- { 2, "s16746", "12641", "=q4=Invulnerable Mail", "=ds=#sr# 300"};
- { 3, "s27590", "22191", "=q4=Obsidian Mail Tunic", "=ds=#sr# 300"};
- { 4, "s27587", "22196", "=q4=Thick Obsidian Breastplate", "=ds=#sr# 300"};
- { 5, "s24136", "19690", "=q3=Bloodsoul Breastplate", "=ds=#sr# 300"};
- { 6, "s24914", "20550", "=q3=Darkrune Breastplate", "=ds=#sr# 300"};
- { 7, "s24139", "19693", "=q3=Darksoul Breastplate", "=ds=#sr# 300"};
- { 8, "s28461", "22762", "=q3=Ironvine Breastplate", "=ds=#sr# 300"};
- { 9, "s16745", "12618", "=q3=Enchanted Thorium Breastplate", "=ds=#sr# 300"};
- { 10, "s16663", "12422", "=q2=Imperial Plate Chest", "=ds=#sr# 300"};
- { 11, "s16731", "12613", "=q2=Runic Breastplate", "=ds="..AL["Drop"]..""};
- { 12, "s16667", "12628", "=q3=Demon Forged Breastplate", "=ds=#sr# 285"};
- { 13, "s15296", "11604", "=q3=Dark Iron Plate", "=ds=#sr# 285"};
- { 14, "s16650", "12624", "=q3=Wildthorn Mail", "=ds=#sr# 270"};
- { 15, "s16648", "12415", "=q2=Radiant Breastplate", "=ds=#sr# 270"};
- { 16, "s16642", "12405", "=q2=Thorium Armor", "=ds=#sr# 250"};
- { 17, "s9959", "7930", "=q2=Heavy Mithril Breastplate", "=ds=#sr# 230"};
- { 18, "s9974", "7939", "=q3=Truesilver Breastplate", "=ds=#sr# 245"};
- { 19, "s9916", "7963", "=q2=Steel Breastplate", "=ds=#sr# 200"};
- { 20, "s3511", "3845", "=q2=Golden Scale Cuirass", "=ds=#sr# 195"};
- { 21, "s3508", "3844", "=q3=Green Iron Hauberk", "=ds=#sr# 180"};
- { 22, "s9813", "7914", "=q2=Barbaric Iron Breastplate", "=ds=#sr# 160"};
- { 23, "s2675", "2870", "=q3=Shining Silver Breastplate", "=ds=#sr# 145"};
- { 24, "s2673", "2869", "=q2=Silvered Bronze Breastplate", "=ds=#sr# 130"};
- { 25, "s9972", "7935", "=q2=Ornate Mithril Breastplate", "=ds="..AL["Quest"]..""};
- { 26, "s8367", "6731", "=q2=Ironforge Breastplate", "=ds=#sr# 100"};
- { 27, "s2670", "2866", "=q1=Rough Bronze Cuirass", "=ds=#sr# 105"};
- { 28, "s2667", "2864", "=q2=Runed Copper Breastplate", "=ds=#sr# 80"};
- { 29, "s3321", "3471", "=q2=Copper Chain Vest", "=ds=#sr# 35"};
- { 30, "s12260", "10421", "=q1=Rough Copper Vest", "=ds=#sr# 1"};
- };
- { Name = BabbleInventory["Armor"].." - Feet";
- { 1, "s24399", "20039", "=q4=Dark Iron Boots", "=ds=#sr# 300"};
- { 2, "s23629", "19048", "=q3=Heavy Timbermaw Boots", "=ds=#sr# 300"};
- { 3, "s16665", "12611", "=q2=Runic Plate Boots", "=ds=#sr# 300"};
- { 4, "s16657", "12426", "=q2=Imperial Plate Boots", "=ds=#sr# 295"};
- { 5, "s16656", "12419", "=q2=Radiant Boots", "=ds=#sr# 290"};
- { 6, "s16652", "12409", "=q2=Thorium Boots", "=ds=#sr# 280"};
- { 7, "s9979", "7936", "=q2=Ornate Mithril Boots", "=ds="..AL["Quest"]..""};
- { 8, "s9968", "7933", "=q2=Heavy Mithril Boots", "=ds=#sr# 235"};
- { 9, "s3515", "3847", "=q2=Golden Scale Boots", "=ds=#sr# 200"};
- { 10, "s3513", "3846", "=q2=Polished Steel Boots", "=ds=#sr# 185"};
- { 11, "s9818", "7916", "=q2=Barbaric Iron Boots", "=ds=#sr# 180"};
- { 12, "s3334", "3484", "=q2=Green Iron Boots", "=ds=#sr# 145"};
- { 13, "s3331", "3482", "=q2=Silvered Bronze Boots", "=ds=#sr# 130"};
- { 14, "s7817", "6350", "=q1=Rough Bronze Boots", "=ds=#sr# 95"};
- { 15, "s3319", "3469", "=q1=Copper Chain Boots", "=ds=#sr# 20"};
- };
- {
- Name = BabbleInventory["Armor"].." - Hands";
- { 1, "s23637", "19164", "=q4=Dark Iron Gauntlets", "=ds=#sr# 300"};
- { 2, "s28243", "22670", "=q4=Icebane Gauntlets", "=ds=#sr# 300"};
- { 3, "s16741", "12639", "=q4=Stronghold Gauntlets", "=ds=#sr# 300"};
- { 4, "s24138", "19692", "=q3=Bloodsoul Gauntlets", "=ds=#sr# 300"};
- { 5, "s24912", "20549", "=q3=Darkrune Gauntlets", "=ds=#sr# 300"};
- { 6, "s23633", "19057", "=q3=Gloves of the Dawn", "=ds=#sr# 300"};
- { 7, "s28462", "22763", "=q3=Ironvine Gloves", "=ds=#sr# 300"};
- { 8, "s27589", "22194", "=q4=Black Grasp of the Destroyer", "=ds=#sr# 300"};
- { 9, "s16661", "12632", "=q3=Storm Gauntlets", "=ds=#sr# 295"};
- { 10, "s16655", "12631", "=q3=Fiery Plate Gauntlets", "=ds=#sr# 290"};
- { 11, "s9954", "7938", "=q3=Truesilver Gauntlets", "=ds=#sr# 225"};
- { 12, "s16654", "12418", "=q2=Radiant Gloves", "=ds=#sr# 285"};
- { 13, "s9950", "7927", "=q2=Ornate Mithril Gloves", "=ds=#sr# 220"};
- { 14, "s11643", "9366", "=q2=Golden Scale Gauntlets", "=ds=#sr# 205"};
- { 15, "s9928", "7919", "=q2=Heavy Mithril Gauntlet", "=ds=#sr# 205"};
- { 16, "s9820", "7917", "=q2=Barbaric Iron Gloves", "=ds=#sr# 185"};
- { 17, "s3336", "3485", "=q2=Green Iron Gauntlets", "=ds=#sr# 150"};
- { 18, "s3333", "3483", "=q2=Silvered Bronze Gauntlets", "=ds=#sr# 135"};
- { 19, "s3325", "3474", "=q2=Gemmed Copper Gauntlets", "=ds=#sr# 60"};
- { 20, "s3323", "3472", "=q1=Runed Copper Gauntlets", "=ds=#sr# 40"};
- };
- {
- Name = BabbleInventory["Armor"].." - Head";
- { 1, "s23636", "19148", "=q4=Dark Iron Helm", "=ds=#sr# 300"};
- { 2, "s16729", "12640", "=q4=Lionheart Helm", "=ds=#sr# 300"};
- { 3, "s24913", "20551", "=q3=Darkrune Helm", "=ds=#sr# 300"};
- { 4, "s16742", "12620", "=q3=Enchanted Thorium Helm", "=ds=#sr# 300"};
- { 5, "s16728", "12636", "=q3=Helm of the Great Chief", "=ds=#sr# 300"};
- { 6, "s16724", "12633", "=q3=Whitesoul Helm", "=ds=#sr# 300"};
- { 7, "s16726", "12612", "=q2=Runic Plate Helm", "=ds="..AL["Drop"]..""};
- { 8, "s16658", "12427", "=q2=Imperial Plate Helm", "=ds=#sr# 295"};
- { 9, "s16659", "12417", "=q2=Radiant Circlet", "=ds=#sr# 295"};
- { 10, "s16653", "12410", "=q2=Thorium Helm", "=ds=#sr# 280"};
- { 11, "s15293", "11606", "=q2=Dark Iron Mail", "=ds=#sr# 270"};
- { 12, "s9980", "7937", "=q2=Ornate Mithril Helm", "=ds="..AL["Quest"]..""};
- { 13, "s9970", "7934", "=q2=Heavy Mithril Helm", "=ds=#sr# 245"};
- { 14, "s9961", "7931", "=q2=Mithril Coif", "=ds=#sr# 230"};
- { 15, "s9935", "7922", "=q1=Steel Plate Helm", "=ds=#sr# 215"};
- { 16, "s3503", "3837", "=q2=Golden Scale Coif", "=ds=#sr# 190"};
- { 17, "s16726", "12612", "=q2=Runic Plate Helm", "=ds="..AL["Drop"]..""};
- { 18, "s9814", "7915", "=q2=Barbaric Iron Helm", "=ds=#sr# 175"};
- { 19, "s3502", "3836", "=q2=Green Iron Helm", "=ds=#sr# 170"};
- };
- {
- Name = BabbleInventory["Armor"].." - Legs";
- { 1, "s20876", "17013", "=q4=Dark Iron Leggings", "=ds=#sr# 300"};
- { 3, "s16662", "12414", "=q2=Thorium Leggings", "=ds=#sr# 300"};
- { 2, "s27829", "22385", "=q4=Titanic Leggings", "=ds=#sr# 300"};
- { 4, "s24140", "19694", "=q3=Darksoul Leggings", "=ds=#sr# 300"};
- { 5, "s16744", "12619", "=q3=Enchanted Thorium Leggings", "=ds=#sr# 300"};
- { 6, "s16730", "12429", "=q2=Imperial Plate Leggings", "=ds=#sr# 300"};
- { 7, "s16725", "12420", "=q2=Radiant Leggings", "=ds=#sr# 300"};
- { 8, "s16732", "12614", "=q2=Runic Plate Leggings", "=ds=#sr# 300"};
- { 9, "s36122", "30069", "=q3=Earthforged Leggings", "=ds=#sr# 260"};
- { 10, "s36124", "30070", "=q3=Windforged Leggings", "=ds=#sr# 260"};
- { 11, "s9945", "7926", "=q2=Ornate Mithril Pants", "=ds=#sr# 220"};
- { 12, "s9931", "7920", "=q2=Mithril Scale Pants", "=ds=#sr# 210"};
- { 13, "s9933", "7921", "=q2=Heavy Mithril Pants", "=ds=#sr# 210"};
- { 14, "s9957", "7929", "=q2=Orcish War Leggings", "=ds="..AL["Quest"]..""};
- { 15, "s3507", "3843", "=q2=Golden Scale Leggings", "=ds=#sr# 170"};
- { 16, "s3506", "3842", "=q2=Green Iron Leggings", "=ds=#sr# 155"};
- { 17, "s12259", "10423", "=q2=Silvered Bronze Leggings", "=ds=#sr# 155"};
- { 18, "s2668", "2865", "=q2=Rough Bronze Leggings", "=ds=#sr# 105"};
- { 19, "s3324", "3473", "=q2=Runed Copper Pants", "=ds=#sr# 45"};
- { 20, "s2662", "2852", "=q1=Copper Chain Pants", "=ds=#sr# 1"};
- };
- {
- Name = BabbleInventory["Armor"].." - Shoulder";
- { 1, "s20873", "16988", "=q4=Fiery Chain Shoulders", "=ds=#sr# 300"};
- { 2, "s24137", "19691", "=q3=Bloodsoul Shoulders", "=ds=#sr# 300"};
- { 3, "s24141", "19695", "=q3=Darksoul Shoulders", "=ds=#sr# 300"};
- { 4, "s16664", "12610", "=q2=Runic Plate Shoulders", "=ds=#sr# 300"};
- { 5, "s16660", "12625", "=q3=Dawnbringer Shoulders", "=ds=#sr# 290"};
- { 6, "s15295", "11605", "=q2=Dark Iron Shoulders", "=ds=#sr# 280"};
- { 7, "s16646", "12428", "=q2=Imperial Plate Shoulders", "=ds=#sr# 265"};
- { 8, "s9966", "7932", "=q2=Mithril Scale Shoulders", "=ds=#sr# 235"};
- { 9, "s9952", "7928", "=q2=Ornate Mithril Shoulder", "=ds=#sr# 225"};
- { 10, "s9926", "7918", "=q2=Heavy Mithril Shoulder", "=ds=#sr# 205"};
- { 11, "s3505", "3841", "=q2=Golden Scale Shoulders", "=ds=#sr# 175"};
- { 12, "s9811", "7913", "=q2=Barbaric Iron Shoulders", "=ds=#sr# 160"};
- { 13, "s3504", "3840", "=q2=Green Iron Shoulders", "=ds=#sr# 160"};
- { 14, "s3330", "3481", "=q2=Silvered Bronze Shoulders", "=ds=#sr# 125"};
- { 15, "s3328", "3480", "=q1=Rough Bronze Shoulders", "=ds=#sr# 110"};
- };
- {
- Name = BabbleInventory["Armor"].." - Waist";
- { 1, "s27585", "22197", "=q3=Heavy Obsidian Belt", "=ds=#sr# 300"};
- { 2, "s28463", "22764", "=q3=Ironvine Belt", "=ds=#sr# 300"};
- { 3, "s27588", "22195", "=q3=Light Obsidian Belt", "=ds=#sr# 300"};
- { 4, "s20872", "16989", "=q4=Fiery Chain Girdle", "=ds=#sr# 295"};
- { 5, "s23632", "19051", "=q3=Girdle of the Dawn", "=ds=#sr# 290"};
- { 6, "s23628", "19043", "=q3=Heavy Timbermaw Belt", "=ds=#sr# 290"};
- { 7, "s16647", "12424", "=q2=Imperial Plate Belt", "=ds=#sr# 265"};
- { 8, "s16645", "12416", "=q2=Radiant Belt", "=ds=#sr# 260"};
- { 9, "s16643", "12406", "=q2=Thorium Belt", "=ds=#sr# 250"};
- { 10, "s2666", "2857", "=q1=Runed Copper Belt", "=ds=#sr# 70"};
- { 11, "s2661", "2851", "=q1=Copper Chain Belt", "=ds=#sr# 35"};
- };
- {
- Name = BabbleInventory["Armor"].." - Wrist";
- { 1, "s28244", "22671", "=q4=Icebane Bracers", "=ds=#sr# 300"};
- { 2, "s20874", "17014", "=q4=Dark Iron Bracers", "=ds=#sr# 295"};
- { 3, "s16649", "12425", "=q2=Imperial Plate Bracers", "=ds=#sr# 270"};
- { 4, "s16644", "12408", "=q2=Thorium Bracers", "=ds=#sr# 255"};
- { 5, "s9937", "7924", "=q2=Mithril Scale Bracers", "=ds=#sr# 215"};
- { 6, "s7223", "6040", "=q1=Golden Scale Bracers", "=ds=#sr# 185"};
- { 7, "s3501", "3835", "=q1=Green Iron Bracers", "=ds=#sr# 165"};
- { 8, "s2672", "2868", "=q2=Patterned Bronze Bracers", "=ds=#sr# 120"};
- { 9, "s2664", "2854", "=q1=Runed Copper Bracers", "=ds=#sr# 90"};
- { 10, "s2663", "2853", "=q1=Copper Bracers", "=ds=#sr# 1"};
- };
- {
- Name = "Weapon - One Handed";
- { 1, "s23638", "19166", "=q4=Black Amnesty", "=ds=#sr# 300"};
- { 2, "s23652", "19168", "=q4=Blackguard", "=ds=#sr# 300"};
- { 3, "s23650", "19170", "=q4=Ebon Hand", "=ds=#sr# 300"};
- { 4, "s27830", "22384", "=q4=Persuader", "=ds=#sr# 300"};
- { 5, "s27832", "22383", "=q4=Sageblade", "=ds=#sr# 300"};
- { 6, "s16991", "12798", "=q3=Annihilator", "=ds=#sr# 300"};
- { 7, "s20897", "17016", "=q3=Dark Iron Destroyer", "=ds=#sr# 300"};
- { 8, "s20890", "17015", "=q3=Dark Iron Reaver", "=ds=#sr# 300"};
- { 9, "s16992", "12797", "=q3=Frostguard", "=ds=#sr# 300"};
- { 10, "s16995", "12783", "=q3=Heartseeker", "=ds=#sr# 300"};
- { 11, "s16993", "12794", "=q3=Masterwork Stormhammer", "=ds=#sr# 300"};
- { 12, "s16983", "12781", "=q3=Serenity", "=ds=#sr# 285"};
- { 13, "s16978", "12777", "=q3=Blazing Rapier", "=ds=#sr# 280"};
- { 14, "s16970", "12774", "=q3=Dawn's Edge", "=ds=#sr# 275"};
- { 15, "s36125", "30071", "=q3=Light Earthforged Blade", "=ds=#sr# 260"};
- { 16, "s36128", "30073", "=q3=Light Emberforged Hammer", "=ds=#sr# 260"};
- { 17, "s36126", "30072", "=q3=Light Skyforged Axe", "=ds=#sr# 260"};
- { 18, "s10007", "7961", "=q3=Phantom Blade", "=ds=#sr# 245"};
- { 19, "s10003", "7954", "=q3=The Shatterer", "=ds=#sr# 235"};
- { 20, "s16984", "12792", "=q2=Volcanic Hammer", "=ds=#sr# 290"};
- { 21, "s16969", "12773", "=q2=Ornate Thorium Handaxe", "=ds=#sr# 275"};
- { 22, "s10013", "7947", "=q2=Ebon Shiv", "=ds=#sr# 255"};
- { 23, "s10009", "7946", "=q2=Runed Mithril Hammer", "=ds=#sr# 245"};
- { 24, "s10005", "7944", "=q2=Dazzling Mithril Rapier", "=ds=#sr# 240"};
- { 25, "s10001", "7945", "=q2=Big Black Mace", "=ds=#sr# 230"};
- { 26, "s9997", "7943", "=q2=Wicked Mithril Blade", "=ds=#sr# 225"};
- { 27, "s9995", "7942", "=q2=Blue Glittering Axe", "=ds=#sr# 220"};
- { 28, "s9993", "7941", "=q2=Heavy Mithril Axe", "=ds=#sr# 210"};
- { 29, "s15973", "12260", "=q2=Searing Golden Blade", "=ds=#sr# 190"};
- { 30, "s21913", "17704", "=q2=Edge of Winter", "=ds=#sr# 190"};
- };
- {
- Name = "Weapon - One Handed";
- { 1, "s15972", "12259", "=q2=Glinting Steel Dagger", "=ds=#sr# 180"};
- { 2, "s3493", "3850", "=q2=Jade Serpentblade", "=ds=#sr# 175"};
- { 3, "s3492", "3849", "=q2=Hardened Iron Shortsword", "=ds=#sr# 160"};
- { 4, "s3297", "3492", "=q2=Mighty Iron Hammer", "=ds=#sr# 145"};
- { 5, "s6518", "5541", "=q2=Iridescent Hammer", "=ds=#sr# 140"};
- { 6, "s3296", "3491", "=q2=Heavy Bronze Mace", "=ds=#sr# 130"};
- { 7, "s3295", "3490", "=q2=Deadly Bronze Poniard", "=ds=#sr# 125"};
- { 8, "s6517", "5540", "=q2=Pearl-handled Dagger", "=ds=#sr# 110"};
- { 9, "s3491", "3848", "=q2=Big Bronze Knife", "=ds=#sr# 105"};
- { 10, "s3294", "3489", "=q2=Thick War Axe", "=ds=#sr# 70"};
- { 11, "s43549", "33791", "=q2=Heavy Copper Longsword", "=ds=#sr# 35"};
- { 12, "s2742", "2850", "=q1=Bronze Shortsword", "=ds=#sr# 120"};
- { 13, "s2741", "2849", "=q1=Bronze Axe", "=ds=#sr# 115"};
- { 14, "s2740", "2848", "=q1=Bronze Mace", "=ds=#sr# 110"};
- { 15, "s2738", "2845", "=q1=Copper Axe", "=ds=#sr# 20"};
- { 16, "s2737", "2844", "=q1=Copper Mace", "=ds=#sr# 15"};
- };
- {
- Name = "Weapon - Two Handed";
- { 1, "s23639", "19167", "=q4=Blackfury", "=ds=#sr# 300"};
- { 2, "s23653", "19169", "=q4=Nightfall", "=ds=#sr# 300"};
- { 3, "s21161", "17193", "=q4=Sulfuron Hammer", "=ds=#sr# 300"};
- { 4, "s16990", "12790", "=q3=Arcanite Champion", "=ds=#sr# 300"};
- { 5, "s16994", "12784", "=q3=Arcanite Reaper", "=ds=#sr# 300"};
- { 6, "s16988", "12796", "=q3=Hammer of the Titans", "=ds=#sr# 300"};
- { 7, "s16985", "12782", "=q3=Corruption", "=ds=#sr# 290"};
- { 8, "s16973", "12776", "=q3=Enchanted Battlehammer", "=ds=#sr# 280"};
- { 9, "s15294", "11607", "=q3=Dark Iron Sunderer", "=ds=#sr# 275"};
- { 10, "s15292", "11608", "=q3=Dark Iron Pulverizer", "=ds=#sr# 265"};
- { 11, "s10015", "7960", "=q3=Truesilver Champion", "=ds=#sr# 260"};
- { 12, "s10011", "7959", "=q3=Blight", "=ds=#sr# 250"};
- { 13, "s16971", "12775", "=q2=Huge Thorium Battleaxe", "=ds=#sr# 280"};
- { 14, "s3500", "3856", "=q2=Shadow Crescent Axe", "=ds=#sr# 200"};
- { 15, "s3497", "3854", "=q2=Frost Tiger Blade", "=ds=#sr# 200"};
- { 16, "s3498", "3855", "=q2=Massive Iron Axe", "=ds=#sr# 185"};
- { 17, "s3496", "3853", "=q2=Moonsteel Broadsword", "=ds=#sr# 180"};
- { 18, "s3495", "3852", "=q2=Golden Iron Destroyer", "=ds=#sr# 170"};
- { 19, "s3494", "3851", "=q2=Solid Iron Maul", "=ds=#sr# 155"};
- { 20, "s3292", "3487", "=q2=Heavy Copper Broadsword", "=ds=#sr# 95"};
- { 21, "s3293", "3488", "=q2=Copper Battle Axe", "=ds=#sr# 35"};
- { 22, "s9987", "7958", "=q1=Bronze Battle Axe", "=ds=#sr# 135"};
- { 23, "s9986", "7957", "=q1=Bronze Greatsword", "=ds=#sr# 130"};
- { 24, "s9985", "7956", "=q1=Bronze Warhammer", "=ds=#sr# 125"};
- { 25, "s7408", "6214", "=q1=Heavy Copper Maul", "=ds=#sr# 65"};
- { 26, "s9983", "7955", "=q1=Copper Claymore", "=ds=#sr# 30"};
- { 27, "s8880", "7166", "=q1=Copper Dagger", "=ds=#sr# 30"};
- { 28, "s2739", "2847", "=q1=Copper Shortsword", "=ds=#sr# 25"};
-
- };
- {
- Name = "Weapon - Thrown";
- { 1, "s34979", "29201", "=q2=Thick Bronze Darts", "=ds=#sr# 100"};
- { 2, "s34982", "29203", "=q2=Enchanted Thorium Blades", "=ds=#sr# 300"};
- { 3, "s34981", "29202", "=q2=Whirling Steel Axes", "=ds=#sr# 200"};
- };
- {
- Name = "Shield";
- { 1, "s27586", "22198", "=q4=Jagged Obsidian Shield", "=ds=#sr# 300"};
- };
- {
- Name = AL["Item Enhancements"];
- { 1, "s16641", "12404", "=q1=Dense Sharpening Stone", "=ds=#sr# 250"};
- { 2, "s16640", "12643", "=q1=Dense Weightstone", "=ds=#sr# 250"};
- { 3, "s9918", "7964", "=q1=Solid Sharpening Stone", "=ds=#sr# 200"};
- { 4, "s9921", "7965", "=q1=Solid Weightstone", "=ds=#sr# 200"};
- { 5, "s7224", "6041", "=q1=Steel Weapon Chain", "=ds=#sr# 190"};
- { 6, "s7222", "6043", "=q1=Iron Counterweight", "=ds=#sr# 165"};
- { 7, "s7221", "6042", "=q1=Iron Shield Spike", "=ds=#sr# 150"};
- { 8, "s2674", "2871", "=q1=Heavy Sharpening Stone", "=ds=#sr# 125"};
- { 9, "s3117", "3241", "=q1=Heavy Weightstone", "=ds=#sr# 125"};
- { 10, "s2665", "2863", "=q1=Coarse Sharpening Stone", "=ds=#sr# 65"};
- { 11, "s3116", "3240", "=q1=Coarse Weightstone", "=ds=#sr# 65"};
- { 12, "s2660", "2862", "=q1=Rough Sharpening Stone", "=ds=#sr# 1"};
- { 13, "s3115", "3239", "=q1=Rough Weightstone", "=ds=#sr# 1"};
- };
- {
- Name = AL["Miscellaneous"];
- { 1, "s59406", "43853", "=q2=Titanium Skeleton Key", "=ds="..AL["Trainer"] };
- { 2, "s59405", "43854", "=q2=Cobalt Skeleton Key", "=ds="..AL["Trainer"] };
- { 3, "s19669", "15872", "=q2=Arcanite Skeleton Key", "=ds=#sr# 275"};
- { 4, "s19668", "15871", "=q2=Truesilver Skeleton Key", "=ds=#sr# 200"};
- { 5, "s19667", "15870", "=q2=Golden Skeleton Key", "=ds=#sr# 150"};
- { 6, "s19666", "15869", "=q2=Silver Skeleton Key", "=ds=#sr# 100"};
- { 7, "s55732", "41745", "=q1=Titanium Rod", "=ds="..AL["Trainer"]};
- { 8, "s32657", "25845", "=q1=Eternium Rod", "=ds=#sr# 360"};
- { 9, "s32656", "25844", "=q1=Adamantite Rod", "=ds=#sr# 350"};
- { 10, "s32655", "25843", "=q1=Fel Iron Rod", "=ds=#sr# 300"};
- { 11, "s20201", "16206", "=q1=Arcanite Rod", "=ds=#sr# 275"};
- { 12, "s16639", "12644", "=q1=Dense Grinding Stone", "=ds=#sr# 250"};
- { 13, "s11454", "9060", "=q1=Inlaid Mithril Cylinder", "=ds=#sr# 200"};
- { 14, "s14380", "11144", "=q1=Truesilver Rod", "=ds=#sr# 200"};
- { 15, "s9920", "7966", "=q1=Solid Grinding Stone", "=ds=#sr# 200"};
- { 16, "s14379", "11128", "=q1=Golden Rod", "=ds=#sr# 150"};
- { 17, "s8768", "7071", "=q1=Iron Buckle", "=ds=#sr# 150"};
- { 18, "s3337", "3486", "=q1=Heavy Grinding Stone", "=ds=#sr# 125"};
- { 19, "s7818", "6338", "=q1=Silver Rod", "=ds=#sr# 100"};
- { 20, "s3326", "3478", "=q1=Coarse Grinding Stone", "=ds=#sr# 75"};
- { 21, "s3320", "3470", "=q1=Rough Grinding Stone", "=ds=#sr# 25"};
- };
- {
- Name = ARMORSMITH;
- { 1, "s36122", "30069", "=q3=Earthforged Leggings", "=ds=#sr# 260"};
- { 2, "s36124", "30070", "=q3=Windforged Leggings", "=ds=#sr# 260"};
- };
- {
- Name = WEAPONSMITH;
- { 1, "s36125", "30071", "=q3=Light Earthforged Blade", "=ds=#sr# 260"};
- { 2, "s36128", "30073", "=q3=Light Emberforged Hammer", "=ds=#sr# 260"};
- { 3, "s36126", "30072", "=q3=Light Skyforged Axe", "=ds=#sr# 260"};
- };
- };
- ---------------
- --- Cooking ---
- ---------------
-
- AtlasLoot_Data["CookingCLASSIC"] = {
- Name = COOKING;
- {
- Name = COOKING;
- { 1, "s25659", "21023", "=q1=Dirge's Kickin' Chimaerok Chops", "=ds="..AL["Quest"]..""};
- { 2, "s966455", "100626", "=q1=Azerothian Schmorgus Boards", "=ds="..AL["Vendor"]..""};
- { 3, "s966436", "100609", "=q1=Chilled Lava Eels", "=ds="..AL["Vendor"]..""};
- { 4, "s966435", "100608", "=q1=Chillwind Flank Steaks", "=ds="..AL["Drop"]..""};
- { 5, "s966434", "100607", "=q1=Hippogryph Steaks", "=ds="..AL["Quest"]..""};
- { 6, "s966433", "100606", "=q1=Steamed Makrinni Claws", "=ds="..AL["Quest"]..""};
- { 7, "s966432", "100605", "=q1=Rubbed Ravasaur Ribss", "=ds="..AL["Drop"]..""};
- { 8, "s966431", "100604", "=q1=Hearty Stegodon Stews", "=ds="..AL["Drop"]..""};
- { 9, "s966430", "100603", "=q1=Crispy Pterrordax Wings", "=ds="..AL["Drop"]..""};
- { 10, "s966429", "100602", "=q1=Spicy Dino Jerkys", "=ds="..AL["Drop"]..""};
- { 11, "s966428", "100601", "=q1=Dirge's Nevermelt Ice Creams", "=ds="..AL["Quest"]..""};
- { 12, "s966427", "100599", "=q1=Silithid Snacks", "=ds="..AL["Quest"]..""};
- { 13, "s966426", "100598", "=q1=Hydra Scale Soups", "=ds="..AL["Quest"]..""};
- { 14, "s966425", "100597", "=q1=Ghostly Goulashs", "=ds="..AL["Quest"]..""};
- { 15, "s966398", "100583", "=q1=Seared Cunning Carps", "=ds="..AL["Drop"]..""};
- };
- {
- Name = COOKING;
- { 1, "s24801", "20452", "=q1=Smoked Desert Dumplings", "=ds="..AL["Quest"]..""};
- { 2, "s18247", "13935", "=q1=Baked Salmon", "=ds="..AL["Vendor"]..", "..BabbleZone["Feralas"]};
- { 3, "s18245", "13933", "=q1=Lobster Stew", "=ds="..AL["Vendor"]..", "..BabbleZone["Feralas"]};
- { 4, "s18246", "13934", "=q1=Mightfish Steak", "=ds="..AL["Vendor"]..", "..BabbleZone["Feralas"]};
- { 5, "s22761", "18254", "=q1=Runn Tum Tuber Surprise", "=ds="..AL["Drop"]..""};
- { 6, "s46684", "35563", "=q1=Charred Bear Kabobs", "=ds="..AL["Vendor"]..", "..BabbleZone["Felwood"]};
- { 7, "s46688", "35565", "=q1=Juicy Bear Burger", "=ds="..AL["Vendor"]..", "..BabbleZone["Felwood"]};
- { 8, "s18243", "13931", "=q1=Nightfin Soup", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 9, "s18244", "13932", "=q1=Poached Sunscale Salmon", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 10, "s18240", "13928", "=q1=Grilled Squid", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 11, "s18242", "13929", "=q1=Hot Smoked Bass", "=ds="..AL["Vendor"]..", "..BabbleZone["Stranglethorn Vale"]};
- { 12, "s64054", "INV_Misc_Shell_03", "=q1=Clamlette Magnifique", "=ds="..AL["Quest"]..""};
- { 13, "s18239", "13927", "=q1=Cooked Glossy Mightfish", "=ds="..AL["Vendor"]..", "..BabbleZone["Stranglethorn Vale"]};
- { 14, "s18241", "13930", "=q1=Filet of Redgill", "=ds="..AL["Vendor"]..", "..BabbleZone["Stranglethorn Vale"]};
- { 15, "s15933", "12218", "=q1=Monster Omelet", "=ds="..AL["Vendor"]..""};
- { 16, "s15915", "12216", "=q1=Spiced Chili Crab", "=ds="..AL["Vendor"]..""};
- { 17, "s18238", "6887", "=q1=Spotted Yellowtail", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 18, "s22480", "18045", "=q1=Tender Wolf Steak", "=ds="..AL["Vendor"]..""};
- { 19, "s20626", "16766", "=q1=Undermine Clam Chowder", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 20, "s15906", "12217", "=q1=Dragonbreath Chili", "=ds="..AL["Vendor"]..""};
- { 21, "s15910", "12215", "=q1=Heavy Kodo Stew", "=ds="..AL["Vendor"]..", "..BabbleZone["Desolace"]};
- { 22, "s21175", "17222", "=q1=Spider Sausage", "=ds="..AL["Trainer"]};
- { 23, "s4094", "4457", "=q1=Barbecued Buzzard Wing", "=ds="};
- { 24, "s15863", "12213", "=q1=Carrion Surprise", "=ds="..AL["Vendor"]..""};
- { 25, "s7213", "6038", "=q1=Giant Clam Scorcho", "=ds="..AL["Vendor"]..", "..BabbleZone["Stranglethorn Vale"]};
- { 26, "s13028", "10841", "=q1=Goldthorn Tea", "=ds="};
- { 27, "s15856", "13851", "=q1=Hot Wolf Ribs", "=ds="..AL["Vendor"]..""};
- };
- {
- Name = COOKING;
- { 1, "s15861", "12212", "=q1=Jungle Stew", "=ds="..AL["Vendor"]..""};
- { 2, "s20916", "8364", "=q1=Mithril Head Trout", "=ds="..AL["Vendor"]..""};
- { 3, "s15865", "12214", "=q1=Mystery Stew", "=ds="..AL["Vendor"]..""};
- { 4, "s15855", "12210", "=q1=Roast Raptor", "=ds="..AL["Vendor"]..""};
- { 5, "s7828", "4594", "=q1=Rockscale Cod", "=ds="..AL["Vendor"]..""};
- { 6, "s25954", "21217", "=q1=Sagefish Delight", "=ds="..AL["Vendor"]..""};
- { 7, "s3400", "3729", "=q1=Soothing Turtle Bisque", "=ds="..AL["Quest"]..""};
- { 8, "s24418", "20074", "=q1=Heavy Crocolisk Stew", "=ds="..AL["Vendor"]..", "..BabbleZone["Dustwallow Marsh"]};
- { 9, "s3399", "3728", "=q1=Tasty Lion Steak", "=ds="..AL["Quest"]..""};
- { 10, "s3376", "3665", "=q1=Curiously Tasty Omelet", "=ds="};
- { 11, "s6500", "5527", "=q1=Goblin Deviled Clams", "=ds="..AL["Trainer"]};
- { 12, "s3398", "3727", "=q1=Hot Lion Chops", "=ds="};
- { 13, "s15853", "12209", "=q1=Lean Wolf Steak", "=ds="..AL["Vendor"]..", "..BabbleZone["Desolace"]};
- { 14, "s3373", "3664", "=q1=Crocolisk Gumbo", "=ds="};
- { 15, "s3397", "3726", "=q1=Big Bear Steak", "=ds="};
- { 16, "s3377", "3666", "=q1=Gooey Spider Cake", "=ds="};
- { 17, "s6419", "5480", "=q1=Lean Venison", "=ds="..AL["Vendor"]..""};
- { 18, "s2548", "2685", "=q1=Succulent Pork Ribs", "=ds="};
- { 19, "s7755", "4593", "=q1=Bristle Whisker Catfish", "=ds="..AL["Vendor"]..""};
- { 20, "s45695", "34832", "=q1=Captain Rumsey's Lager", "=ds="..AL["Drop"]..""};
- { 21, "s6418", "5479", "=q1=Crispy Lizard Tail", "=ds="..AL["Vendor"]..""};
- { 22, "s2547", "1082", "=q1=Redridge Goulash", "=ds="};
- { 23, "s2549", "1017", "=q1=Seasoned Wolf Kabob", "=ds="};
- { 24, "s6501", "5526", "=q1=Clam Chowder", "=ds="..AL["Vendor"]..""};
- { 25, "s6417", "5478", "=q1=Dig Rat Stew", "=ds="..AL["Quest"]..""};
- { 26, "s3372", "3663", "=q1=Murloc Fin Soup", "=ds="};
- { 27, "s2545", "2682", "=q1=Cooked Crab Claw", "=ds="};
- { 28, "s8238", "6657", "=q1=Savory Deviate Delight", "=ds="..AL["Drop"]..""};
- { 29, "s3370", "3662", "=q1=Crocolisk Steak", "=ds="};
- { 30, "s8607", "6890", "=q1=Smoked Bear Meat", "=ds="..AL["Vendor"]..""};
- };
- {
- Name = COOKING;
- { 1, "s2546", "2687", "=q1=Dry Pork Ribs", "=ds="..AL["Trainer"]};
- { 2, "s25704", "21072", "=q1=Smoked Sagefish", "=ds="..AL["Vendor"]..""};
- { 3, "s2544", "2683", "=q1=Crab Cake", "=ds="..AL["Trainer"]};
- { 4, "s62050", "44837", "=q1=Cornbread Stuffing", "=ds="};
- { 5, "s2543", "733", "=q1=Westfall Stew", "=ds="};
- { 6, "s3371", "3220", "=q1=Blood Sausage", "=ds="};
- { 7, "s28267", "22645", "=q1=Crunchy Spider Surprise", "=ds="};
- { 8, "s9513", "7676", "=q1=Thistle Tea", "=ds="};
- { 9, "s33278", "27636", "=q1=Bat Bites", "=ds="..AL["Vendor"]..""};
- { 10, "s6499", "5525", "=q1=Boiled Clams", "=ds="..AL["Trainer"]};
- { 11, "s2541", "2684", "=q1=Coyote Steak", "=ds="..AL["Trainer"]};
- { 12, "s6415", "5476", "=q1=Fillet of Frenzy", "=ds="..AL["Vendor"]..""};
- { 13, "s2542", "724", "=q1=Goretusk Liver Pie", "=ds="};
- { 14, "s7754", "6316", "=q1=Loch Frenzy Delight", "=ds="..AL["Vendor"]..""};
- { 15, "s7753", "4592", "=q1=Longjaw Mud Snapper", "=ds="..AL["Vendor"]..""};
- { 16, "s7827", "5095", "=q1=Rainbow Fin Albacore", "=ds="..AL["Vendor"]..""};
- { 17, "s62045", "34112", "=q1=Roasted Turkey", "=ds="};
- { 18, "s6416", "5477", "=q1=Strider Stew", "=ds="};
- { 19, "s62044", "1645", "=q1=Tasty Cranberries", "=ds="};
- { 20, "s62051", "44839", "=q1=Candied Yam", "=ds="};
- { 21, "s21144", "17198", "=q1=Egg Nog", "=ds="..AL["Vendor"]..""};
- { 22, "s6414", "5474", "=q1=Roasted Kodo Meat", "=ds="..AL["Vendor"]..""};
- { 23, "s62049", "44840", "=q1=Cranberry Chutney", "=ds="};
- { 24, "s6413", "5473", "=q1=Scorpid Surprise", "=ds="..AL["Vendor"]..""};
- { 25, "s2795", "2888", "=q1=Beer Basted Boar Ribs", "=ds="};
- { 26, "s6412", "5472", "=q1=Kaldorei Spider Kabob", "=ds="..AL["Quest"]..""};
- { 27, "s2539", "2680", "=q1=Spiced Wolf Meat", "=ds="..AL["Trainer"]};
- { 28, "s7751", "6290", "=q1=Brilliant Smallfish", "=ds="..AL["Vendor"]..""};
- { 29, "s2538", "2679", "=q1=Charred Wolf Meat", "=ds="};
- { 30, "s33276", "27635", "=q1=Lynx Steak", "=ds="..AL["Vendor"]..""};
- };
- {
- Name = COOKING;
- { 1, "s15935", "12224", "=q1=Crispy Bat Wing", "=ds="..AL["Vendor"]..""};
- { 2, "s43779", "33924", "=q1=Delicious Chocolate Cake", "=ds="..AL["Drop"]..""};
- { 3, "s21143", "17197", "=q1=Gingerbread Cookie", "=ds="..AL["Vendor"]..""};
- { 4, "s8604", "6888", "=q1=Herb Baked Egg", "=ds="};
- { 5, "s2540", "2681", "=q1=Roasted Boar Meat", "=ds="};
- { 6, "s33277", "24105", "=q1=Roasted Moongraze Tenderloin", "=ds="..AL["Quest"]..""};
- { 7, "s7752", "787", "=q1=Slitherskin Mackerel", "=ds="..AL["Vendor"]..""};
- { 8, "s37836", "30816", "=q1=Spice Bread", "=ds="..AL["Trainer"]};
- { 9, "s65454", "46691", "=q1=Bread of the Dead", "=ds="..AL["Vendor"]};
- };
- };
-
- ------------------
- --- Enchanting ---
- ------------------
-
- AtlasLoot_Data["EnchantingCLASSIC"] = {
- Name = ENCHANTING;
- {
- Name = AL["Enchant Boots"];
- { 1, "s20023", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Agility", "=ds=#sr# 295"};
- { 2, "s20024", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Spirit", "=ds=#sr# 275"};
- { 3, "s20020", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Stamina", "=ds=#sr# 260"};
- { 4, "s63746", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Accuracy", "=ds="};
- { 5, "s13935", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Agility", "=ds=#sr# 235"};
- { 6, "s13890", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Minor Speed", "=ds=#sr# 225"};
- { 16, "s13836", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Stamina", "=ds=#sr# 215"};
- { 17, "s13687", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Spirit", "=ds=#sr# 190"};
- { 18, "s13644", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Stamina", "=ds=#sr# 170"};
- { 19, "s13637", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Agility", "=ds=#sr# 160"};
- { 20, "s7867", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Minor Agility", "=ds=#sr# 125"};
- { 21, "s7863", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Minor Stamina", "=ds=#sr# 125"};
- };
- {
- Name = AL["Enchant Bracer"];
- { 1, "s23802", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Healing Power", "=ds=#sr# 300"};
- { 2, "s20011", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Stamina", "=ds=#sr# 300"};
- { 3, "s20010", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Strength", "=ds=#sr# 295"};
- { 4, "s23801", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Mana Regeneration", "=ds=#sr# 290"};
- { 5, "s20009", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Spirit", "=ds=#sr# 270"};
- { 6, "s20008", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Intellect", "=ds=#sr# 255"};
- { 7, "s13939", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Strength", "=ds=#sr# 240"};
- { 8, "s13945", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Stamina", "=ds=#sr# 245"};
- { 9, "s13931", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Deflection", "=ds=#sr# 235"};
- { 10, "s13846", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Spirit", "=ds=#sr# 220"};
- { 11, "s13822", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Intellect", "=ds=#sr# 210"};
- { 12, "s13661", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Strength", "=ds=#sr# 180"};
- { 13, "s13646", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Deflection", "=ds=#sr# 170"};
- { 14, "s13648", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Stamina", "=ds=#sr# 170"};
- { 15, "s13642", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Spirit", "=ds=#sr# 165"};
- { 16, "s13622", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Intellect", "=ds=#sr# 150"};
- { 17, "s13536", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Strength", "=ds=#sr# 140"};
- { 18, "s13501", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Stamina", "=ds=#sr# 130"};
- { 19, "s7859", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Spirit", "=ds=#sr# 120"};
- { 20, "s7779", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Agility", "=ds=#sr# 80"};
- { 21, "s7782", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Strength", "=ds=#sr# 80"};
- { 22, "s7457", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Stamina", "=ds=#sr# 50"};
- { 23, "s7766", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Spirit", "=ds=#sr# 60"};
- { 24, "s7418", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Health", "=ds=#sr# 1"};
- { 25, "s7428", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Deflection", "=ds=#sr# 1"};
- };
- {
- Name = AL["Enchant Chest"];
- { 1, "s20025", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Stats", "=ds=#sr# 300"};
- { 2, "s33991", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Restore Mana Prime", "=ds=#sr# 300"};
- { 3, "s20028", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Mana", "=ds=#sr# 290"};
- { 4, "s20026", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Health", "=ds=#sr# 275"};
- { 5, "s13941", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Stats", "=ds=#sr# 245"};
- { 6, "s13917", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Superior Mana", "=ds=#sr# 230"};
- { 7, "s13858", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Superior Health", "=ds=#sr# 220"};
- { 8, "s13700", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Stats", "=ds=#sr# 200"};
- { 9, "s13663", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Mana", "=ds=#sr# 185"};
- { 10, "s13640", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Health", "=ds=#sr# 160"};
- { 11, "s13626", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Stats", "=ds=#sr# 150"};
- { 12, "s13607", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Mana", "=ds=#sr# 145"};
- { 13, "s13538", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Absorption", "=ds=#sr# 140"};
- { 14, "s7857", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Health", "=ds=#sr# 120"};
- { 15, "s7776", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Mana", "=ds=#sr# 80"};
- { 16, "s7748", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Health", "=ds=#sr# 60"};
- { 17, "s7443", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Mana", "=ds=#sr# 20"};
- { 18, "s7420", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Health", "=ds=#sr# 15"};
- };
- {
- Name = AL["Enchant Cloak"];
- { 1, "s25081", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Fire Resistance", "=ds=#sr# 300"};
- { 2, "s20015", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Defense", "=ds=#sr# 285"};
- { 3, "s20014", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Resistance", "=ds=#sr# 265"};
- { 4, "s13882", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Agility", "=ds=#sr# 225"};
- { 5, "s13746", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Defense", "=ds=#sr# 205"};
- { 6, "s13794", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Resistance", "=ds=#sr# 205"};
- { 7, "s13657", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Fire Resistance", "=ds=#sr# 175"};
- { 8, "s13635", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Defense", "=ds=#sr# 155"};
- { 9, "s13522", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Shadow Resistance", "=ds=#sr# 135"};
- { 10, "s7861", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Fire Resistance", "=ds=#sr# 125"};
- { 11, "s13419", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Minor Agility", "=ds=#sr# 110"};
- { 12, "s13421", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Protection", "=ds=#sr# 115"};
- { 13, "s7771", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Minor Protection", "=ds=#sr# 70"};
- { 14, "s7454", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Minor Resistance", "=ds=#sr# 45"};
- { 15, "s7426", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Absorption", "=ds=#sr# 40"};
- };
- {
- Name = AL["Enchant Gloves"];
- { 1, "s25078", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Fire Power", "=ds=#sr# 300"};
- { 2, "s25074", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Frost Power", "=ds=#sr# 300"};
- { 3, "s25079", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Healing Power", "=ds=#sr# 300"};
- { 4, "s25073", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Shadow Power", "=ds=#sr# 300"};
- { 5, "s25080", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Superior Agility", "=ds=#sr# 300"};
- { 6, "s25072", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Threat", "=ds=#sr# 300"};
- { 7, "s20013", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Greater Strength", "=ds=#sr# 295"};
- { 8, "s20012", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Greater Agility", "=ds=#sr# 270"};
- { 9, "s13948", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Minor Haste", "=ds=#sr# 250"};
- { 10, "s13947", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Riding Skill", "=ds=#sr# 250"};
- { 11, "s13868", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Advanced Herbalism", "=ds=#sr# 225"};
- { 12, "s13887", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Strength", "=ds=#sr# 225"};
- { 13, "s13841", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Advanced Mining", "=ds=#sr# 215"};
- { 14, "s13815", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Agility", "=ds=#sr# 210"};
- { 15, "s13698", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Skinning", "=ds=#sr# 200"};
- { 16, "s13620", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Fishing", "=ds=#sr# 145"};
- { 17, "s13617", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Herbalism", "=ds=#sr# 145"};
- { 18, "s13612", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Mining", "=ds=#sr# 145"};
- };
- {
- Name = AL["Enchant Shield"];
- { 1, "s20016", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Superior Spirit", "=ds=#sr# 280"};
- { 2, "s20017", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Greater Stamina", "=ds=#sr# 265"};
- { 3, "s13933", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Frost Resistance", "=ds=#sr# 235"};
- { 4, "s13905", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Greater Spirit", "=ds=#sr# 230"};
- { 5, "s13817", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Stamina", "=ds=#sr# 210"};
- { 6, "s13689", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Block", "=ds=#sr# 195"};
- { 7, "s13659", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Spirit", "=ds=#sr# 180"};
- { 8, "s13631", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Stamina", "=ds=#sr# 155"};
- { 9, "s13485", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Spirit", "=ds=#sr# 130"};
- { 10, "s13464", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Protection", "=ds=#sr# 115"};
- { 11, "s13378", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Minor Stamina", "=ds=#sr# 105"};
- };
- {
- Name = AL["Enchant 2H Weapon"];
- { 1, "s20036", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Major Intellect", "=ds=#sr# 300"};
- { 2, "s20035", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Major Spirit", "=ds=#sr# 300"};
- { 3, "s20030", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Superior Impact", "=ds=#sr# 295"};
- { 4, "s27837", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Agility", "=ds=#sr# 290"};
- { 5, "s13937", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Greater Impact", "=ds=#sr# 240"};
- { 6, "s13695", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Impact", "=ds=#sr# 200"};
- { 7, "s13529", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Lesser Impact", "=ds=#sr# 145"};
- { 8, "s13380", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Lesser Spirit", "=ds=#sr# 110"};
- { 9, "s7793", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Lesser Intellect", "=ds=#sr# 100"};
- { 10, "s7745", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Minor Impact", "=ds=#sr# 100"};
- };
- {
- Name = AL["Enchant Weapon"];
- { 1, "s20034", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Crusader", "=ds=#sr# 300"};
- { 2, "s22750", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Healing Power", "=ds=#sr# 300"};
- { 3, "s20032", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lifestealing", "=ds=#sr# 300"};
- { 4, "s23804", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Mighty Intellect", "=ds=#sr# 300"};
- { 5, "s23803", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Mighty Spirit", "=ds=#sr# 300"};
- { 6, "s22749", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Spell Power", "=ds=#sr# 300"};
- { 7, "s20031", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Superior Striking", "=ds=#sr# 300"};
- { 8, "s20033", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Unholy Weapon", "=ds=#sr# 295"};
- { 9, "s23800", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Agility", "=ds=#sr# 290"};
- { 10, "s23799", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Strength", "=ds=#sr# 290"};
- { 11, "s20029", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Icy Chill", "=ds=#sr# 285"};
- { 12, "s13898", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Fiery Weapon", "=ds=#sr# 265"};
- { 13, "s13943", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Greater Striking", "=ds=#sr# 245"};
- { 14, "s13915", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Demonslaying", "=ds=#sr# 230"};
- { 15, "s13693", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Striking", "=ds=#sr# 195"};
- { 16, "s21931", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Winter's Might", "=ds=#sr# 190"};
- { 17, "s13655", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lesser Elemental Slayer", "=ds=#sr# 175"};
- { 18, "s13653", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lesser Beastslayer", "=ds=#sr# 175"};
- { 19, "s13503", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lesser Striking", "=ds=#sr# 140"};
- { 20, "s7786", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Minor Beastslayer", "=ds=#sr# 90"};
- { 21, "s7788", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Minor Striking", "=ds=#sr# 90"};
- };
- {
- Name = AL["Miscellaneous"];
- { 1, "s25130", "20748", "=q1=Brilliant Mana Oil", "=ds=#sr# 300"};
- { 2, "s25129", "20749", "=q1=Brilliant Wizard Oil", "=ds=#sr# 300"};
- { 3, "s32664", "22461", "=q1=Runed Fel Iron Rod", "=ds=#sr# 300"};
- { 4, "s20051", "16207", "=q1=Runed Arcanite Rod", "=ds=#sr# 290"};
- { 5, "s25128", "20750", "=q1=Wizard Oil", "=ds=#sr# 275"};
- { 6, "s17180", "12655", "=q1=Enchanted Thorium", "=ds=#sr# 250"};
- { 7, "s25127", "20747", "=q1=Lesser Mana Oil", "=ds=#sr# 250"};
- { 8, "s17181", "12810", "=q1=Enchanted Leather", "=ds=#sr# 250"};
- { 9, "s25126", "20746", "=q1=Lesser Wizard Oil", "=ds=#sr# 200"};
- { 10, "s13702", "11145", "=q1=Runed Truesilver Rod", "=ds=#sr# 200"};
- { 11, "s25125", "20745", "=q1=Minor Mana Oil", "=ds=#sr# 150"};
- { 12, "s13628", "11130", "=q1=Runed Golden Rod", "=ds=#sr# 150"};
- { 13, "s7795", "6339", "=q1=Runed Silver Rod", "=ds=#sr# 100"};
- { 14, "s25124", "20744", "=q1=Minor Wizard Oil", "=ds=#sr# 45"};
- { 15, "s7421", "6218", "=q1=Runed Copper Rod", "=ds=#sr# 1"};
- { 16, "s14810", "11290", "=q2=Greater Mystic Wand", "=ds=#sr# 175"};
- { 17, "s14809", "11289", "=q2=Lesser Mystic Wand", "=ds=#sr# 155"};
- { 18, "s14807", "11288", "=q2=Greater Magic Wand", "=ds=#sr# 70"};
- { 19, "s14293", "11287", "=q2=Lesser Magic Wand", "=ds=#sr# 10"};
- };
- };
-
- -------------------
- --- Engineering ---
- -------------------
-
- AtlasLoot_Data["EngineeringCLASSIC"] = {
- Name = ENGINEERING;
- Type = "Crafting";
- {
- Name = AL["Ammunition"];
- { 1, "s19800", "15997", "=q2=Thorium Shells", "=ds=#sr# 285"};
- { 2, "s12621", "10513", "=q2=Mithril Gyro-Shot", "=ds=#sr# 245"};
- { 3, "s12596", "10512", "=q2=Hi-Impact Mithril Slugs", "=ds=#sr# 210"};
- { 4, "s3947", "8069", "=q1=Crafted Solid Shot", "=ds=#sr# 125"};
- { 5, "s3930", "8068", "=q1=Crafted Heavy Shot", "=ds=#sr# 75"};
- { 6, "s3920", "8067", "=q1=Crafted Light Shot", "=ds=#sr# 1"};
- };
- {
- Name = BabbleInventory["Armor"];
- { 1, "s19830", "16022", "=q3=Arcanite Dragonling", "=ds=#sr# 300"};
- { 2, "s24356", "19999", "=q3=Bloodvine Goggles", "=ds=#sr# 300"};
- { 3, "s24357", "19998", "=q3=Bloodvine Lens", "=ds=#sr# 300"};
- { 4, "s23082", "18639", "=q3=Ultra-Flash Shadow Reflector", "=ds=#sr# 300"};
- { 5, "s23081", "18638", "=q3=Hyper-Radiant Flame Reflector", "=ds=#sr# 290"};
- { 6, "s23077", "18634", "=q3=Gyrofreeze Ice Reflector", "=ds=#sr# 260"};
- { 7, "s12622", "10504", "=q3=Green Lens", "=ds=#sr# 245"};
- { 8, "s19825", "16008", "=q2=Master Engineer's Goggles", "=ds=#sr# 290"};
- { 9, "s19819", "16009", "=q2=Voice Amplification Modulator", "=ds=#sr# 290"};
- { 10, "s23079", "18637", "=q2=Major Recombobulator", "=ds=#sr# 275"};
- { 11, "s19794", "15999", "=q2=Spellpower Goggles Xtreme Plus", "=ds=#sr# 270"};
- { 12, "s12624", "10576", "=q2=Mithril Mechanical Dragonling", "=ds=#sr# 250"};
- { 13, "s12617", "10506", "=q2=Deepdive Helmet", "=ds=#sr# 230"};
- { 14, "s12618", "10503", "=q2=Rose Colored Goggles", "=ds=#sr# 230"};
- { 15, "s12616", "10518", "=q2=Parachute Cloak", "=ds=#sr# 225"};
- { 16, "s12615", "10502", "=q2=Spellpower Goggles Xtreme", "=ds=#sr# 225"};
- { 17, "s12607", "10501", "=q2=Catseye Ultra Goggles", "=ds=#sr# 220"};
- { 18, "s12594", "10500", "=q2=Fire Goggles", "=ds=#sr# 205"};
- { 19, "s3969", "4396", "=q1=Mechanical Dragonling", "=ds=#sr# 200"};
- { 20, "s3966", "4393", "=q2=Craftsman's Monocle", "=ds=#sr# 185"};
- { 21, "s12587", "10499", "=q2=Bright-Eye Goggles", "=ds=#sr# 175"};
- { 22, "s3956", "4385", "=q2=Green Tinted Goggles", "=ds=#sr# 150"};
- { 23, "s3952", "4381", "=q2=Minor Recombobulator", "=ds=#sr# 140"};
- { 24, "s3940", "4373", "=q2=Shadow Goggles", "=ds=#sr# 120"};
- { 25, "s3934", "4368", "=q2=Flying Tiger Goggles", "=ds=#sr# 100"};
- };
- {
- Name = AL["Explosives"];
- { 1, "s19831", "16040", "=q1=Arcane Bomb", "=ds=#sr# 300"};
- { 2, "s19799", "16005", "=q1=Dark Iron Bomb", "=ds=#sr# 285"};
- { 3, "s23080", "18594", "=q1=Powerful Seaforium Charge", "=ds=#sr# 275"};
- { 4, "s19790", "15993", "=q1=Thorium Grenade", "=ds=#sr# 260"};
- { 5, "s23070", "18641", "=q1=Dense Dynamite", "=ds=#sr# 250"};
- { 6, "s12619", "10562", "=q1=Hi-Explosive Bomb", "=ds=#sr# 235"};
- { 7, "s12754", "10586", "=q1=The Big One", "=ds=#sr# 235"};
- { 8, "s12603", "10514", "=q1=Mithril Frag Bomb", "=ds=#sr# 215"};
- { 9, "s12716", "10577", "=q1=Goblin Mortar", "=ds=#sr# 205"};
- { 10, "s12760", "10646", "=q1=Goblin Sapper Charge", "=ds=#sr# 205"};
- { 11, "s13240", "10577", "=q1=The Mortar: Reloaded", "=ds=#sr# 205"};
- { 12, "s23069", "18588", "=q1=EZ-Thro Dynamite II", "=ds=#sr# 200"};
- { 13, "s3972", "4398", "=q1=Large Seaforium Charge", "=ds=#sr# 200"};
- { 14, "s3968", "4395", "=q1=Goblin Land Mine", "=ds=#sr# 195"};
- { 15, "s3967", "4394", "=q1=Big Iron Bomb", "=ds=#sr# 190"};
- { 16, "s3962", "4390", "=q1=Iron Grenade", "=ds=#sr# 175"};
- { 17, "s12586", "10507", "=q1=Solid Dynamite", "=ds=#sr# 175"};
- { 18, "s3960", "4403", "=q1=Portable Bronze Mortar", "=ds=#sr# 165"};
- { 19, "s3950", "4380", "=q1=Big Bronze Bomb", "=ds=#sr# 140"};
- { 20, "s3946", "4378", "=q1=Heavy Dynamite", "=ds=#sr# 125"};
- { 21, "s3941", "4374", "=q1=Small Bronze Bomb", "=ds=#sr# 120"};
- { 22, "s3937", "4370", "=q1=Large Copper Bomb", "=ds=#sr# 105"};
- { 23, "s8339", "6714", "=q1=EZ-Thro Dynamite", "=ds=#sr# 100"};
- { 24, "s3933", "4367", "=q1=Small Seaforium Charge", "=ds=#sr# 100"};
- { 25, "s3931", "4365", "=q1=Coarse Dynamite", "=ds=#sr# 75"};
- { 26, "s3923", "4360", "=q1=Rough Copper Bomb", "=ds=#sr# 30"};
- { 27, "s3919", "4358", "=q1=Rough Dynamite", "=ds=#sr# 1"};
- };
- {
- Name = AL["Item Enhancements"];
- { 1, "s22793", "18283", "=q3=Biznicks 247x128 Accurascope", "=ds=#sr# 300"};
- { 2, "s12620", "10548", "=q1=Sniper Scope", "=ds=#sr# 240"};
- { 3, "s12597", "10546", "=q1=Deadly Scope", "=ds=#sr# 210"};
- { 4, "s3979", "4407", "=q2=Accurate Scope", "=ds=#sr# 180"};
- { 5, "s3978", "4406", "=q1=Standard Scope", "=ds=#sr# 110"};
- { 6, "s3977", "4405", "=q1=Crude Scope", "=ds=#sr# 60"};
- };
- {
- Name = AL["Miscellaneous"];
- { 1, "s22704", "18232", "=q1=Field Repair Bot 74A", "=ds=#sr# 300"};
- { 2, "s30573", "23832", "=q1=Gnomish Tonk Controller", "=ds=#sr# 295"};
- { 3, "s30561", "23831", "=q1=Goblin Tonk Controller", "=ds=#sr# 295"};
- { 4, "s26443", "21570", "=q1=Firework Cluster Launcher", "=ds=#sr# 275"};
- { 5, "s19814", "16023", "=q1=Masterwork Target Dummy", "=ds=#sr# 275"};
- { 6, "s26426", "21714", "=q1=Large Blue Rocket Cluster", "=ds=#sr# 275"};
- { 7, "s26427", "21716", "=q1=Large Green Rocket Cluster", "=ds=#sr# 275"};
- { 8, "s26428", "21718", "=q1=Large Red Rocket Cluster", "=ds=#sr# 275"};
- { 9, "s23096", "18645", "=q1=Alarm-O-Bot", "=ds=#sr# 265"};
- { 10, "s23078", "18587", "=q1=Goblin Jumper Cables XL", "=ds=#sr# 265"};
- { 11, "s19793", "15996", "=q1=Lifelike Mechanical Toad", "=ds=#sr# 265"};
- { 12, "s19567", "15846", "=q1=Salt Shaker", "=ds=#sr# 250"};
- { 13, "s26011", "21277", "=q1=Tranquil Mechanical Yeti", "=ds=#sr# 250"};
- { 14, "s23507", "19026", "=q1=Snake Burst Firework", "=ds=#sr# 250"};
- { 15, "s26442", "21569", "=q1=Firework Launcher", "=ds=#sr# 225"};
- { 16, "s26423", "21571", "=q1=Blue Rocket Cluster", "=ds=#sr# 225"};
- { 17, "s26424", "21574", "=q1=Green Rocket Cluster", "=ds=#sr# 225"};
- { 18, "s26425", "21576", "=q1=Red Rocket Cluster", "=ds=#sr# 225"};
- { 19, "s12902", "10720", "=q1=Gnomish Net-o-Matic Projector", "=ds=#sr# 210"};
- { 20, "s12715", "10644", "=q1=Goblin Rocket Fuel Recipe", "=ds=#sr# 205"};
- { 21, "s12895", "10713", "=q1=Inlaid Mithril Cylinder Plans", "=ds=#sr# 205"};
- { 22, "s15633", "11826", "=q1=Lil' Smoky", "=ds=#sr# 205"};
- { 23, "s15628", "11825", "=q1=Pet Bombling", "=ds=#sr# 205"};
- { 24, "s15255", "11590", "=q1=Mechanical Repair Kit", "=ds=#sr# 200"};
- { 25, "s21940", "17716", "=q1=Snowmaster 9000", "=ds=#sr# 190"};
- { 26, "s3965", "4392", "=q1=Advanced Target Dummy", "=ds=#sr# 185"};
- { 27, "s8243", "4852", "=q1=Flash Bomb", "=ds=#sr# 185"};
- { 28, "s26420", "21589", "=q1=Large Blue Rocket", "=ds=#sr# 175"};
- { 29, "s26421", "21590", "=q1=Large Green Rocket", "=ds=#sr# 175"};
- { 30, "s26422", "21592", "=q1=Large Red Rocket", "=ds=#sr# 175"};
- };
- {
- Name = AL["Miscellaneous"];
- { 1, "s3963", "4391", "=q1=Compact Harvest Reaper Kit", "=ds=#sr# 175"};
- { 2, "s9273", "7148", "=q1=Goblin Jumper Cables", "=ds=#sr# 165"};
- { 3, "s3959", "4388", "=q1=Discombobulator Ray", "=ds=#sr# 160"};
- { 4, "s3957", "4386", "=q1=Ice Deflector", "=ds=#sr# 155"};
- { 5, "s3955", "4384", "=q1=Explosive Sheep", "=ds=#sr# 150"};
- { 6, "s9271", "6533", "=q1=Aquadynamic Fish Attractor", "=ds=#sr# 150"};
- { 7, "s23067", "9312", "=q1=Blue Firework", "=ds=#sr# 150"};
- { 8, "s23068", "9313", "=q1=Green Firework", "=ds=#sr# 150"};
- { 9, "s23066", "9318", "=q1=Red Firework", "=ds=#sr# 150"};
- { 10, "s6458", "5507", "=q1=Ornate Spyglass", "=ds=#sr# 135"};
- { 11, "s26416", "21558", "=q1=Small Blue Rocket", "=ds=#sr# 125"};
- { 12, "s26417", "21559", "=q1=Small Green Rocket", "=ds=#sr# 125"};
- { 13, "s26418", "21557", "=q1=Small Red Rocket", "=ds=#sr# 125"};
- { 14, "s3944", "4376", "=q1=Flame Deflector", "=ds=#sr# 125"};
- { 15, "s8334", "6712", "=q1=Practice Lock", "=ds=#sr# 100"};
- { 16, "s3932", "4366", "=q1=Target Dummy", "=ds=#sr# 85"};
- { 17, "s3928", "4401", "=q1=Mechanical Squirrel", "=ds=#sr# 75"};
- };
- {
- Name = AL["Reagents"];
- { 1, "s19815", "16006", "=q1=Delicate Arcanite Converter", "=ds=#sr# 285"};
- { 2, "s19795", "16000", "=q1=Thorium Tube", "=ds=#sr# 275"};
- { 3, "s39895", "7191", "=q1=Fused Wiring", "=ds=#sr# 275"};
- { 4, "s19791", "15994", "=q1=Thorium Widget", "=ds=#sr# 260"};
- { 5, "s23071", "18631", "=q1=Truesilver Transformer", "=ds=#sr# 260"};
- { 6, "s19788", "15992", "=q1=Dense Blasting Powder", "=ds=#sr# 250"};
- { 7, "s12599", "10561", "=q1=Mithril Casing", "=ds=#sr# 215"};
- { 8, "s12591", "10560", "=q1=Unstable Trigger", "=ds=#sr# 200"};
- { 9, "s12589", "10559", "=q1=Mithril Tube", "=ds=#sr# 195"};
- { 10, "s12590", "10498", "=q1=Gyromatic Micro-Adjustor", "=ds=#sr# 175"};
- { 11, "s12585", "10505", "=q1=Solid Blasting Powder", "=ds=#sr# 175"};
- { 12, "s3961", "4389", "=q1=Gyrochronatom", "=ds=#sr# 170"};
- { 13, "s3958", "4387", "=q1=Iron Strut", "=ds=#sr# 160"};
- { 14, "s12584", "10558", "=q1=Gold Power Core", "=ds=#sr# 150"};
- { 15, "s3953", "4382", "=q1=Bronze Framework", "=ds=#sr# 145"};
- { 16, "s3942", "4375", "=q1=Whirring Bronze Gizmo", "=ds=#sr# 125"};
- { 17, "s3945", "4377", "=q1=Heavy Blasting Powder", "=ds=#sr# 125"};
- { 18, "s3938", "4371", "=q1=Bronze Tube", "=ds=#sr# 105"};
- { 19, "s3973", "4404", "=q1=Silver Contact", "=ds=#sr# 90"};
- { 20, "s3929", "4364", "=q1=Coarse Blasting Powder", "=ds=#sr# 75"};
- { 21, "s3926", "4363", "=q1=Copper Modulator", "=ds=#sr# 65"};
- { 22, "s3924", "4361", "=q1=Copper Tube", "=ds=#sr# 50"};
- { 23, "s3922", "4359", "=q1=Handful of Copper Bolts", "=ds=#sr# 30"};
- { 24, "s3918", "4357", "=q1=Rough Blasting Powder", "=ds=#sr# 1"};
- };
- {
- Name = BabbleInventory["Weapon"];
- { 1, "s22795", "18282", "=q4=Core Marksman Rifle", "=ds=#sr# 300"};
- { 2, "s19833", "16007", "=q3=Flawless Arcanite Rifle", "=ds=#sr# 300"};
- { 3, "s19796", "16004", "=q3=Dark Iron Rifle", "=ds=#sr# 275"};
- { 4, "s19792", "15995", "=q2=Thorium Rifle", "=ds=#sr# 260"};
- { 5, "s12614", "10510", "=q2=Mithril Heavy-bore Rifle", "=ds=#sr# 220"};
- { 6, "s12595", "10508", "=q2=Mithril Blunderbuss", "=ds=#sr# 205"};
- { 7, "s3954", "4383", "=q2=Moonsight Rifle", "=ds=#sr# 145"};
- { 8, "s3949", "4379", "=q2=Silver-plated Shotgun", "=ds=#sr# 130"};
- { 9, "s3939", "4372", "=q2=Lovingly Crafted Boomstick", "=ds=#sr# 120"};
- { 10, "s3936", "4369", "=q2=Deadly Blunderbuss", "=ds=#sr# 105"};
- { 11, "s3925", "4362", "=q2=Rough Boomstick", "=ds=#sr# 50"};
- { 12, "s7430", "6219", "=q1=Arclight Spanner", "=ds=#sr# 50"};
- };
- {
- Name = GNOMISH;
- { 1, "s23489", "18986", "=q2=Ultrasafe Transporter - Gadgetzan", "=ds=#sr# 260"};
- { 2, "s23129", "18660", "=q2=World Enlarger", "=ds=#sr# 260"};
- { 3, "s12907", "10726", "=q2=Gnomish Mind Control Cap", "=ds=#sr# 235"};
- { 4, "s12905", "10724", "=q2=Gnomish Rocket Boots", "=ds=#sr# 225"};
- { 5, "s12903", "10721", "=q2=Gnomish Harm Prevention Belt", "=ds=#sr# 215"};
- { 6, "s12897", "10545", "=q2=Gnomish Goggles", "=ds=#sr# 210"};
- { 7, "s30568", "23841", "=q1=Gnomish Flame Turret", "=ds=#sr# 325"};
- { 8, "s23096", "18645", "=q1=Alarm-O-Bot", "=ds=#sr# 265"};
- { 9, "s12759", "10645", "=q1=Gnomish Death Ray", "=ds=#sr# 240"};
- { 10, "s12906", "10725", "=q1=Gnomish Battle Chicken", "=ds=#sr# 230"};
- { 11, "s12902", "10720", "=q1=Gnomish Net-o-Matic Projector", "=ds=#sr# 210"};
- { 12, "s12899", "10716", "=q1=Gnomish Shrink Ray", "=ds=#sr# 205"};
- { 13, "s12895", "10713", "=q1=Inlaid Mithril Cylinder Plans", "=ds=#sr# 205"};
- { 14, "s3971", "4397", "=q1=Gnomish Cloaking Device", "=ds=#sr# 200"};
- { 15, "s9269", "7506", "=q2=Gnomish Universal Remote", "=ds=#sr# 125"};
- };
- {
- Name = GOBLIN;
- { 1, "s23486", "18984", "=q2=Dimensional Ripper - Everlook", "=ds=#sr# 260"};
- { 2, "s12758", "10588", "=q2=Goblin Rocket Helmet", "=ds=#sr# 245"};
- { 3, "s8895", "7189", "=q2=Goblin Rocket Boots", "=ds=#sr# 225"};
- { 4, "s12718", "10543", "=q2=Goblin Construction Helmet", "=ds=#sr# 205"};
- { 5, "s12717", "10542", "=q2=Goblin Mining Helmet", "=ds=#sr# 205"};
- { 6, "s56514", "42641", "=q1=Global Thermal Sapper Charge", "=ds=#sr# 425" };
- { 7, "s30560", "23827", "=q1=Super Sapper Charge", "=ds=#sr# 340"};
- { 8, "s30558", "23826", "=q1=The Bigger One", "=ds=#sr# 325"};
- { 9, "s23078", "18587", "=q1=Goblin Jumper Cables XL", "=ds=#sr# 265"};
- { 10, "s12908", "10727", "=q1=Goblin Dragon Gun", "=ds=#sr# 240"};
- { 11, "s12754", "10586", "=q1=The Big One", "=ds=#sr# 235"};
- { 12, "s12755", "10587", "=q1=Goblin Bomb Dispenser", "=ds=#sr# 230"};
- { 13, "s12716", "10577", "=q1=Goblin Mortar", "=ds=#sr# 205"};
- { 14, "s12715", "10644", "=q1=Goblin Rocket Fuel Recipe", "=ds=#sr# 205"};
- { 15, "s12760", "10646", "=q1=Goblin Sapper Charge", "=ds=#sr# 205"};
- { 16, "s13240", "10577", "=q1=The Mortar: Reloaded", "=ds=#sr# 205"};
- };
- };
-
- -----------------
- --- First Aid ---
- -----------------
-
- AtlasLoot_Data["FirstAidCLASSIC"] = {
- Name = FIRSTAID;
- {
- Name = FIRSTAID;
- { 1, "s23787", "19440", "=q1=Powerful Anti-Venom", "=ds=#sr# 300"};
- { 2, "s18630", "14530", "=q1=Heavy Runecloth Bandage", "=ds=#sr# 290"};
- { 3, "s18629", "14529", "=q1=Runecloth Bandage", "=ds=#sr# 260"};
- { 4, "s10841", "8545", "=q1=Heavy Mageweave Bandage", "=ds=#sr# 240"};
- { 5, "s10840", "8544", "=q1=Mageweave Bandage", "=ds=#sr# 210"};
- { 6, "s7929", "6451", "=q1=Heavy Silk Bandage", "=ds=#sr# 180"};
- { 7, "s7928", "6450", "=q1=Silk Bandage", "=ds=#sr# 150"};
- { 8, "s7935", "6453", "=q1=Strong Anti-Venom", "=ds=#sr# 130"};
- { 9, "s3278", "3531", "=q1=Heavy Wool Bandage", "=ds=#sr# 115"};
- { 10, "s3277", "3530", "=q1=Wool Bandage", "=ds=#sr# 80"};
- { 11, "s7934", "6452", "=q1=Anti-Venom", "=ds=#sr# 80"};
- { 12, "s3276", "2581", "=q1=Heavy Linen Bandage", "=ds=#sr# 40"};
- { 13, "s3275", "1251", "=q1=Linen Bandage", "=ds=#sr# 1"};
- };
- };
- -------------------
- --- Inscription ---
- -------------------
-
- AtlasLoot_Data["Inscription"] = {
- Name = INSCRIPTION;
- {
- Name = AL["Off-Hand Items"];
- { 1, "s59498", "44210", "=q4=Faces of Doom", "=ds=" };
- { 2, "s59497", "38322", "=q4=Iron-bound Tome", "=ds=" };
- { 3, "s64051", "45854", "=q3=Rituals of the New Moon", "=ds="};
- { 4, "s64053", "45849", "=q3=Twilight Tome", "=ds="};
- { 5, "s59496", "43667", "=q3=Book of Clever Tricks", "=ds=" };
- { 6, "s59495", "43666", "=q3=Hellfire Tome", "=ds=" };
- { 7, "s59494", "43664", "=q3=Manual of Clouds", "=ds=" };
- { 8, "s59493", "43663", "=q3=Stormbound Tome", "=ds=" };
- { 9, "s59490", "43661", "=q3=Book of Stars", "=ds=" };
- { 10, "s59489", "43660", "=q3=Fire Eater's Guide", "=ds=" };
- { 11, "s59486", "43657", "=q3=Royal Guide of Escape Routes", "=ds=" };
- { 12, "s59484", "43656", "=q3=Tome of Kings", "=ds=" };
- { 13, "s59478", "43655", "=q3=Book of Survival", "=ds=" };
- { 14, "s59475", "43654", "=q3=Tome of the Dawn", "=ds=" };
- { 15, "s58565", "43515", "=q3=Mystic Tome", "=ds="..AL["Trainer"] };
- };
- {
- Name = AL["Reagents"];
- { 1, "s57716", "43127", "=q2=Snowfall Ink", "=ds="..AL["Trainer"] };
- { 2, "s57714", "43125", "=q2=Darkflame Ink", "=ds="..AL["Trainer"] };
- { 3, "s57712", "43123", "=q2=Ink of the Sky", "=ds="..AL["Trainer"] };
- { 4, "s57710", "43121", "=q2=Fiery Ink", "=ds="..AL["Trainer"] };
- { 5, "s57708", "43119", "=q2=Royal Ink", "=ds="..AL["Trainer"] };
- { 6, "s57706", "43117", "=q2=Dawnstar Ink", "=ds="..AL["Trainer"] };
- { 7, "s57703", "43115", "=q2=Hunter's Ink", "=ds="..AL["Trainer"] };
- { 8, "s57715", "43126", "=q1=Ink of the Sea", "=ds="..AL["Trainer"] };
- { 9, "s57713", "43124", "=q1=Ethereal Ink", "=ds="..AL["Trainer"] };
- { 10, "s57711", "43122", "=q1=Shimmering Ink", "=ds="..AL["Trainer"] };
- { 11, "s57709", "43120", "=q1=Celestial Ink", "=ds="..AL["Trainer"] };
- { 12, "s57707", "43118", "=q1=Jadefire Ink", "=ds="..AL["Trainer"] };
- { 13, "s57704", "43116", "=q1=Lion's Ink", "=ds="..AL["Trainer"] };
- { 14, "s53462", "39774", "=q1=Midnight Ink", "=ds="..AL["Trainer"] };
- { 15, "s52843", "39469", "=q1=Moonglow Ink", "=ds="..AL["Trainer"] };
- { 16, "s52738", "37101", "=q1=Ivory Ink", "=ds="..AL["Trainer"] };
- };
- {
- Name = AL["Scrolls"];
- { 1, "s69385", "49632", "=q1=Runescroll of Fortitude", "=ds=" };
- { 3, "s60337", "44315", "=q1=Scroll of Recall III", "=ds=" };
- { 4, "s60336", "44314", "=q1=Scroll of Recall II", "=ds=" };
- { 5, "s48248", "37118", "=q1=Scroll of Recall", "=ds=" };
- { 6, "s58483", "3012", "=q1=Scroll of Agility VIII", "=ds=" };
- { 7, "s58482", "3012", "=q1=Scroll of Agility VII", "=ds=" };
- { 8, "s58481", "3012", "=q1=Scroll of Agility VI", "=ds=" };
- { 9, "s58480", "3012", "=q1=Scroll of Agility V", "=ds=" };
- { 10, "s58478", "3012", "=q1=Scroll of Agility IV", "=ds=" };
- { 11, "s58476", "3012", "=q1=Scroll of Agility III", "=ds=" };
- { 12, "s58473", "3012", "=q1=Scroll of Agility II", "=ds=" };
- { 13, "s58472", "3012", "=q1=Scroll of Agility", "=ds=" };
- { 14, "s50604", "955", "=q1=Scroll of Intellect VIII", "=ds=" };
- { 15, "s50603", "955", "=q1=Scroll of Intellect VII", "=ds=" };
- { 16, "s50602", "955", "=q1=Scroll of Intellect VI", "=ds=" };
- { 17, "s50601", "955", "=q1=Scroll of Intellect V", "=ds=" };
- { 18, "s50600", "955", "=q1=Scroll of Intellect IV", "=ds=" };
- { 19, "s50599", "955", "=q1=Scroll of Intellect III", "=ds=" };
- { 20, "s50598", "955", "=q1=Scroll of Intellect II", "=ds=" };
- { 21, "s48114", "955", "=q1=Scroll of Intellect", "=ds=" };
- { 23, "s50611", "955", "=q1=Scroll of Spirit VIII", "=ds=" };
- { 24, "s50610", "955", "=q1=Scroll of Spirit VII", "=ds=" };
- { 25, "s50609", "955", "=q1=Scroll of Spirit VI", "=ds=" };
- { 26, "s50608", "955", "=q1=Scroll of Spirit V", "=ds=" };
- { 27, "s50607", "955", "=q1=Scroll of Spirit IV", "=ds=" };
- { 28, "s50606", "955", "=q1=Scroll of Spirit III", "=ds=" };
- { 29, "s50605", "955", "=q1=Scroll of Spirit II", "=ds=" };
- { 30, "s48116", "955", "=q1=Scroll of Spirit", "=ds=" };
- };
- {
- Name = AL["Scrolls"];
- { 1, "s50620", "1180", "=q1=Scroll of Stamina VIII", "=ds=" };
- { 2, "s50619", "1180", "=q1=Scroll of Stamina VII", "=ds=" };
- { 3, "s50618", "1180", "=q1=Scroll of Stamina VI", "=ds=" };
- { 4, "s50617", "1180", "=q1=Scroll of Stamina V", "=ds=" };
- { 5, "s50616", "1180", "=q1=Scroll of Stamina IV", "=ds=" };
- { 6, "s50614", "1180", "=q1=Scroll of Stamina III", "=ds=" };
- { 7, "s50612", "1180", "=q1=Scroll of Stamina II", "=ds=" };
- { 8, "s45382", "1180", "=q1=Scroll of Stamina", "=ds=" };
- { 16, "s58491", "3012", "=q1=Scroll of Strength VIII", "=ds=" };
- { 17, "s58490", "3012", "=q1=Scroll of Strength VII", "=ds=" };
- { 18, "s58489", "3012", "=q1=Scroll of Strength VI", "=ds=" };
- { 19, "s58488", "3012", "=q1=Scroll of Strength V", "=ds=" };
- { 20, "s58487", "3012", "=q1=Scroll of Strength IV", "=ds=" };
- { 21, "s58486", "3012", "=q1=Scroll of Strength III", "=ds=" };
- { 22, "s58485", "3012", "=q1=Scroll of Strength II", "=ds=" };
- { 23, "s58484", "3012", "=q1=Scroll of Strength", "=ds=" };
- };
- {
- Name = AL["Miscellaneous"];
- { 1, "s59504", "INV_Feather_05", "=ds=Darkmoon Card of the North", "=ds=" };
- { 2, "s59503", "INV_Feather_05", "=ds=Greater Darkmoon Card", "=ds=" };
- { 3, "s59502", "INV_Feather_05", "=ds=Darkmoon Card", "=ds=" };
- { 4, "s59491", "INV_Feather_05", "=ds=Shadowy Tarot", "=ds=" };
- { 5, "s59487", "INV_Feather_05", "=ds=Arcane Tarot", "=ds=" };
- { 6, "s48247", "INV_Feather_05", "=ds=Mysterious Tarot", "=ds="..AL["Trainer"]..""};
- { 7, "s59480", "INV_Feather_05", "=ds=Strange Tarot", "=ds=" };
- { 9, "s61117", "INV_Inscription_Tradeskill01", "=ds=Master's Inscription of the Axe", "=ds=" };
- { 10, "s61118", "INV_Inscription_Tradeskill01", "=ds=Master's Inscription of the Crag", "=ds=" };
- { 11, "s61119", "INV_Inscription_Tradeskill01", "=ds=Master's Inscription of the Pinnacle", "=ds=" };
- { 12, "s61120", "INV_Inscription_Tradeskill01", "=ds=Master's Inscription of the Storm", "=ds=" };
- { 14, "s52175", "INV_Misc_Book_11", "=ds=Decipher", "=ds="..AL["Trainer"] };
- { 16, "s59500", "43145", "=q1=Armor Vellum III", "=ds=" };
- { 17, "s59499", "37602", "=q1=Armor Vellum II", "=ds=" };
- { 18, "s52739", "38682", "=q1=Armor Vellum", "=ds="..AL["Trainer"] };
- { 20, "s59501", "43146", "=q1=Weapon Vellum III", "=ds=" };
- { 21, "s59488", "39350", "=q1=Weapon Vellum II", "=ds=" };
- { 22, "s52840", "39349", "=q1=Weapon Vellum", "=ds="..AL["Trainer"] };
- { 24, "s59387", "43850", "=q1=Certificate of Ownership", "=ds=" };
- };
- {
- Name = AL["Major Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"];
- { 1, "s57207", "43533", "=q1=Glyph of Anti-Magic Shell", "=ds="..GetSpellInfo(61177) };
- { 2, "s59339", "43826", "=q1=Glyph of Blood Strike", "=ds="..AL["Trainer"] };
- { 3, "s57210", "43536", "=q1=Glyph of Bone Shield", "=ds="..AL["Trainer"] };
- { 4, "s57211", "43537", "=q1=Glyph of Chains of Ice", "=ds="..GetSpellInfo(61177) };
- { 5, "s64297", "45799", "=q1=Glyph of Dancing Rune Weapon", "=ds="..AL["Book of Glyph Mastery"]};
- { 6, "s57212", "43538", "=q1=Glyph of Dark Command", "=ds="..GetSpellInfo(61177) };
- { 7, "s64266", "45804", "=q1=Glyph of Dark Death", "=ds="..AL["Book of Glyph Mastery"]};
- { 8, "s57214", "43542", "=q1=Glyph of Death and Decay", "=ds="..GetSpellInfo(61177) };
- { 9, "s57213", "43541", "=q1=Glyph of Death Grip", "=ds="..AL["Trainer"] };
- { 10, "s59340", "43827", "=q1=Glyph of Death Strike", "=ds="..AL["Trainer"] };
- { 11, "s64267", "45805", "=q1=Glyph of Disease", "=ds="..AL["Book of Glyph Mastery"]};
- { 12, "s57216", "43543", "=q1=Glyph of Frost Strike", "=ds="..AL["Trainer"] };
- { 13, "s57208", "43534", "=q1=Glyph of Heart Strike", "=ds="..GetSpellInfo(61177) };
- { 14, "s64300", "45806", "=q1=Glyph of Howling Blast", "=ds="..AL["Book of Glyph Mastery"]};
- { 15, "s64298", "45800", "=q1=Glyph of Hungering Cold", "=ds="..AL["Book of Glyph Mastery"]};
- { 16, "s57218", "43545", "=q1=Glyph of Icebound Fortitude", "=ds="..GetSpellInfo(61177) };
- { 17, "s57219", "43546", "=q1=Glyph of Icy Touch", "=ds="..AL["Trainer"] };
- { 18, "s57220", "43547", "=q1=Glyph of Obliterate", "=ds="..GetSpellInfo(61177) };
- { 19, "s57221", "43548", "=q1=Glyph of Plague Strike", "=ds="..AL["Trainer"] };
- { 20, "s57223", "43550", "=q1=Glyph of Rune Strike", "=ds="..GetSpellInfo(61177) };
- { 21, "s59338", "43825", "=q1=Glyph of Rune Tap", "=ds="..AL["Trainer"] };
- { 22, "s57224", "43551", "=q1=Glyph of Scourge Strike", "=ds="..AL["Trainer"] };
- { 23, "s57225", "43552", "=q1=Glyph of Strangulate", "=ds="..AL["Trainer"] };
- { 24, "s57222", "43549", "=q1=Glyph of the Ghoul", "=ds="..AL["Trainer"] };
- { 25, "s57226", "43553", "=q1=Glyph of Unbreakable Armor", "=ds="..AL["Trainer"] };
- { 26, "s64299", "45803", "=q1=Glyph of Unholy Blight", "=ds="..AL["Book of Glyph Mastery"]};
- { 27, "s57227", "43554", "=q1=Glyph of Vampiric Blood", "=ds="..AL["Trainer"] };
- };
- {
- Name = AL["Minor Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"];
- { 1, "s57209", "43535", "=q1=Glyph of Blood Tap", "=ds="..GetSpellInfo(61288) };
- { 2, "s57229", "43671", "=q1=Glyph of Corpse Explosion", "=ds="..GetSpellInfo(61288) };
- { 3, "s57215", "43539", "=q1=Glyph of Death's Embrace", "=ds="..GetSpellInfo(61288) };
- { 4, "s57217", "43544", "=q1=Glyph of Horn of Winter", "=ds="..GetSpellInfo(61288) };
- { 5, "s57230", "43672", "=q1=Glyph of Pestilence", "=ds="..GetSpellInfo(61288) };
- { 6, "s57228", "43673", "=q1=Glyph of Raise Dead", "=ds="..GetSpellInfo(61288) };
- };
- {
- Name = AL["Major Glyph"].." - "..AL["Druid"];
- { 1, "s64256", "45623", "=q1=Glyph of Barkskin", "=ds="..AL["Book of Glyph Mastery"]};
- { 2, "s64268", "45601", "=q1=Glyph of Berserk", "=ds="..AL["Book of Glyph Mastery"]};
- { 3, "s67600", "48720", "=q1=Glyph of Claw", "=ds="..AL["Trainer"]};
- { 4, "s48121", "40924", "=q1=Glyph of Entangling Roots", "=ds="..AL["Trainer"] };
- { 5, "s62162", "44928", "=q1=Glyph of Focus", "=ds="..GetSpellInfo(61177)};
- { 6, "s56943", "40896", "=q1=Glyph of Frenzied Regeneration", "=ds="..AL["Trainer"] };
- { 7, "s56944", "40899", "=q1=Glyph of Growl", "=ds="..GetSpellInfo(61177) };
- { 8, "s56945", "40914", "=q1=Glyph of Healing Touch", "=ds="..AL["Trainer"] };
- { 9, "s56946", "40920", "=q1=Glyph of Hurricane", "=ds="..GetSpellInfo(61177) };
- { 10, "s56947", "40908", "=q1=Glyph of Innervate", "=ds="..GetSpellInfo(61177) };
- { 11, "s56948", "40919", "=q1=Glyph of Insect Swarm", "=ds="..AL["Trainer"] };
- { 12, "s56949", "40915", "=q1=Glyph of Lifebloom", "=ds="..GetSpellInfo(61177) };
- { 13, "s56950", "40900", "=q1=Glyph of Mangle", "=ds="..GetSpellInfo(61177) };
- { 14, "s56961", "40897", "=q1=Glyph of Maul", "=ds="..AL["Trainer"] };
- { 15, "s64258", "45622", "=q1=Glyph of Monsoon", "=ds="..AL["Book of Glyph Mastery"]};
- { 16, "s56951", "40923", "=q1=Glyph of Moonfire", "=ds="..AL["Trainer"] };
- { 17, "s64313", "45603", "=q1=Glyph of Nourish", "=ds="..AL["Book of Glyph Mastery"]};
- { 18, "s56952", "40903", "=q1=Glyph of Rake", "=ds="..AL["Trainer"] };
- { 19, "s71015", "50125", "=q1=Glyph of Rapid Rejuvenation", "=ds="..AL["Vendor"]..""};
- { 20, "s56953", "40909", "=q1=Glyph of Rebirth", "=ds="..AL["Trainer"] };
- { 21, "s56954", "40912", "=q1=Glyph of Regrowth", "=ds="..GetSpellInfo(61177) };
- { 22, "s56955", "40913", "=q1=Glyph of Rejuvenation", "=ds="..AL["Trainer"] };
- { 23, "s56956", "40902", "=q1=Glyph of Rip", "=ds="..AL["Trainer"] };
- { 24, "s64307", "45604", "=q1=Glyph of Savage Roar", "=ds="..AL["Book of Glyph Mastery"]};
- { 25, "s56957", "40901", "=q1=Glyph of Shred", "=ds="..AL["Trainer"] };
- { 26, "s56958", "40921", "=q1=Glyph of Starfall", "=ds="..GetSpellInfo(61177) };
- { 27, "s56959", "40916", "=q1=Glyph of Starfire", "=ds="..AL["Trainer"] };
- { 28, "s65245", "46372", "=q1=Glyph of Survival Instincts", "=ds="..AL["Book of Glyph Mastery"]};
- { 29, "s56960", "40906", "=q1=Glyph of Swiftmend", "=ds="..GetSpellInfo(61177) };
- { 30, "s56963", "40922", "=q1=Glyph of WRATH", "=ds="..AL["Trainer"] };
- };
- {
- Name = AL["Minor Glyph"].." - "..AL["Druid"];
- { 1, "s64270", "45602", "=q1=Glyph of Wild Growth", "=ds="..AL["Book of Glyph Mastery"]};
- { 2, "s58286", "43316", "=q1=Glyph of Aquatic Form", "=ds="..GetSpellInfo(61288) };
- { 3, "s58287", "43334", "=q1=Glyph of Challenging Roar", "=ds="..GetSpellInfo(61288) };
- { 4, "s59315", "43674", "=q1=Glyph of Dash", "=ds="..GetSpellInfo(61288) };
- { 5, "s58296", "43335", "=q1=Glyph of the Wild", "=ds="..GetSpellInfo(61288) };
- { 6, "s58289", "43332", "=q1=Glyph of Thorns", "=ds="..GetSpellInfo(61288) };
- { 7, "s56965", "44922", "=q1=Glyph of Typhoon", "=ds="..GetSpellInfo(61288)};
- { 8, "s58288", "43331", "=q1=Glyph of Unburdened Rebirth", "=ds="..GetSpellInfo(61288) };
- };
- {
- Name = AL["Major Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
- { 1, "s56994", "42897", "=q1=Glyph of Aimed Shot", "=ds="..AL["Trainer"] };
- { 2, "s56995", "42898", "=q1=Glyph of Arcane Shot", "=ds="..AL["Trainer"] };
- { 3, "s56996", "42899", "=q1=Glyph of Aspect of the Beast", "=ds="..GetSpellInfo(61177) };
- { 4, "s56997", "42900", "=q1=Glyph of Aspect of the Monkey", "=ds="..AL["Trainer"] };
- { 5, "s56998", "42901", "=q1=Glyph of Aspect of the Viper", "=ds="..GetSpellInfo(61177) };
- { 6, "s56999", "42902", "=q1=Glyph of Beastial WRATH", "=ds="..GetSpellInfo(61177) };
- { 7, "s64271", "45625", "=q1=Glyph of Chimera Shot", "=ds="..AL["Book of Glyph Mastery"]};
- { 8, "s57000", "42903", "=q1=Glyph of Deterrence", "=ds="..AL["Trainer"] };
- { 9, "s57001", "42904", "=q1=Glyph of Disengage", "=ds="..AL["Trainer"] };
- { 10, "s64273", "45731", "=q1=Glyph of Explosive Shot", "=ds="..AL["Book of Glyph Mastery"]};
- { 11, "s64253", "45733", "=q1=Glyph of Explosive Trap", "=ds="..AL["Book of Glyph Mastery"]};
- { 12, "s57002", "42905", "=q1=Glyph of Freezing Trap", "=ds="..AL["Trainer"] };
- { 13, "s57003", "42906", "=q1=Glyph of Frost Trap", "=ds="..AL["Trainer"] };
- { 14, "s57004", "42907", "=q1=Glyph of Hunter's Mark", "=ds="..AL["Trainer"] };
- { 15, "s57005", "42908", "=q1=Glyph of Immolation Trap", "=ds="..AL["Trainer"] };
- { 16, "s57006", "42909", "=q1=Glyph of Improved Aspect of the Hawk", "=ds="..AL["Trainer"] };
- { 17, "s64304", "45732", "=q1=Glyph of Kill Shot", "=ds="..AL["Book of Glyph Mastery"]};
- { 18, "s57007", "42910", "=q1=Glyph of Multi-Shot", "=ds="..AL["Trainer"] };
- { 19, "s57008", "42911", "=q1=Glyph of Rapid Fire", "=ds="..AL["Trainer"] };
- { 20, "s64246", "45735", "=q1=Glyph of Raptor Strike", "=ds="..AL["Book of Glyph Mastery"]};
- { 21, "s64249", "45734", "=q1=Glyph of Scatter Shot", "=ds="..AL["Book of Glyph Mastery"]};
- { 22, "s57009", "42912", "=q1=Glyph of Serpent Sting", "=ds="..AL["Trainer"] };
- { 23, "s57010", "42913", "=q1=Glyph of Snake Trap", "=ds="..GetSpellInfo(61177) };
- { 24, "s57011", "42914", "=q1=Glyph of Steady Shot", "=ds="..GetSpellInfo(61177) };
- { 25, "s57012", "42915", "=q1=Glyph of Trueshot Aura", "=ds="..GetSpellInfo(61177) };
- { 26, "s57013", "42916", "=q1=Glyph of Volley", "=ds="..GetSpellInfo(61177) };
- { 27, "s57014", "42917", "=q1=Glyph of Wyvern Sting", "=ds="..GetSpellInfo(61177) };
- };
- {
- Name = AL["Minor Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
- { 1, "s58302", "43351", "=q1=Glyph of Feign Death", "=ds="..GetSpellInfo(61288) };
- { 2, "s58301", "43350", "=q1=Glyph of Mend Pet", "=ds="..GetSpellInfo(61288) };
- { 3, "s58300", "43354", "=q1=Glyph of Possessed Strength", "=ds="..GetSpellInfo(61288) };
- { 4, "s58299", "43338", "=q1=Glyph of Revive Pet", "=ds="..GetSpellInfo(61288) };
- { 5, "s58298", "43356", "=q1=Glyph of Scare Beast", "=ds="..GetSpellInfo(61288) };
- { 6, "s58297", "43355", "=q1=Glyph of the Pack", "=ds="..GetSpellInfo(61288) };
- };
- {
- Name = AL["Major Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["MAGE"];
- { 1, "s64276", "45738", "=q1=Glyph of Arcane Barrage", "=ds="..AL["Book of Glyph Mastery"]};
- { 2, "s56991", "44955", "=q1=Glyph of Arcane Blast", "=ds="..GetSpellInfo(61177)};
- { 3, "s56968", "42734", "=q1=Glyph of Arcane Explosion", "=ds="..AL["Trainer"] };
- { 4, "s56971", "42735", "=q1=Glyph of Arcane Missiles", "=ds="..AL["Trainer"] };
- { 5, "s56972", "42736", "=q1=Glyph of Arcane Power", "=ds="..AL["Trainer"] };
- { 6, "s56973", "42737", "=q1=Glyph of Blink", "=ds="..AL["Trainer"] };
- { 7, "s64274", "45736", "=q1=Glyph of Deep Freeze", "=ds="..AL["Book of Glyph Mastery"]};
- { 8, "s71101", "50045", "=q1=Glyph of Eternal Water", "=ds="..AL["Vendor"]..""};
- { 9, "s56974", "42738", "=q1=Glyph of Evocation", "=ds="..AL["Trainer"] };
- { 10, "s57719", "42740", "=q1=Glyph of Fire Blast", "=ds="..GetSpellInfo(61177) };
- { 11, "s56975", "42739", "=q1=Glyph of Fireball", "=ds="..GetSpellInfo(61177) };
- { 12, "s56976", "42741", "=q1=Glyph of Frost Nova", "=ds="..AL["Trainer"] };
- { 13, "s56977", "42742", "=q1=Glyph of Frostbolt", "=ds="..GetSpellInfo(61177) };
- { 14, "s61677", "44684", "=q1=Glyph of Frostfire", "=ds="..GetSpellInfo(61177) };
- { 15, "s56978", "42743", "=q1=Glyph of Ice Armor", "=ds="..AL["Trainer"] };
- { 16, "s64257", "45740", "=q1=Glyph of Ice Barrier", "=ds="..AL["Book of Glyph Mastery"]};
- { 17, "s56979", "42744", "=q1=Glyph of Ice Block", "=ds="..AL["Trainer"] };
- { 18, "s56980", "42745", "=q1=Glyph of Ice Lance", "=ds="..AL["Trainer"] };
- { 19, "s56981", "42746", "=q1=Glyph of Icy Veins", "=ds="..AL["Trainer"] };
- { 20, "s56982", "42747", "=q1=Glyph of Improved Scorch", "=ds="..AL["Trainer"] };
- { 21, "s56983", "42748", "=q1=Glyph of Invisibility", "=ds="..GetSpellInfo(61177) };
- { 22, "s64275", "45737", "=q1=Glyph of Living Bomb", "=ds="..AL["Book of Glyph Mastery"]};
- { 23, "s56984", "42749", "=q1=Glyph of Mage Armor", "=ds="..AL["Trainer"] };
- { 24, "s56985", "42750", "=q1=Glyph of Mana Gem", "=ds="..AL["Trainer"] };
- { 25, "s64314", "45739", "=q1=Glyph of Mirror Image", "=ds="..AL["Book of Glyph Mastery"]};
- { 26, "s56986", "42751", "=q1=Glyph of Molten Armor", "=ds="..GetSpellInfo(61177) };
- { 27, "s56987", "42752", "=q1=Glyph of Polymorph", "=ds="..AL["Trainer"] };
- { 28, "s56988", "42753", "=q1=Glyph of Remove Curse", "=ds="..GetSpellInfo(61177) };
- { 29, "s56989", "42754", "=q1=Glyph of Water Elemental", "=ds="..GetSpellInfo(61177) };
- };
- {
- Name = AL["Minor Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["MAGE"];
- { 1, "s58303", "43339", "=q1=Glyph of Arcane Intellect", "=ds="..GetSpellInfo(61288) };
- { 2, "s56990", "44920", "=q1=Glyph of Blast Wave", "=ds="..GetSpellInfo(61288)};
- { 3, "s58305", "43357", "=q1=Glyph of Fire Ward", "=ds="..GetSpellInfo(61288) };
- { 4, "s58306", "43359", "=q1=Glyph of Frost Armor", "=ds="..GetSpellInfo(61288) };
- { 5, "s58307", "43360", "=q1=Glyph of Frost Ward", "=ds="..GetSpellInfo(61288) };
- { 6, "s58308", "43364", "=q1=Glyph of Slow Fall", "=ds="..GetSpellInfo(61288) };
- { 7, "s58310", "43361", "=q1=Glyph of the Penguin", "=ds="..GetSpellInfo(61288) };
- };
- {
- Name = AL["Major Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
- { 1, "s57019", "41101", "=q1=Glyph of Avenger's Shield", "=ds="..GetSpellInfo(61177) };
- { 2, "s57021", "41107", "=q1=Glyph of Avenging WRATH", "=ds="..GetSpellInfo(61177) };
- { 3, "s64277", "45741", "=q1=Glyph of Beacon of Light", "=ds="..AL["Book of Glyph Mastery"]};
- { 4, "s57020", "41104", "=q1=Glyph of Cleansing", "=ds="..AL["Trainer"] };
- { 5, "s57023", "41099", "=q1=Glyph of Consecration", "=ds="..AL["Trainer"] };
- { 6, "s57024", "41098", "=q1=Glyph of Crusader Strike", "=ds="..AL["Trainer"] };
- { 7, "s64305", "45745", "=q1=Glyph of Divine Plea", "=ds="..AL["Book of Glyph Mastery"]};
- { 8, "s64279", "45743", "=q1=Glyph of Divine Storm", "=ds="..AL["Book of Glyph Mastery"]};
- { 9, "s57031", "41108", "=q1=Glyph of Divinity", "=ds="..AL["Trainer"] };
- { 10, "s57025", "41103", "=q1=Glyph of Exorcism", "=ds="..AL["Trainer"] };
- { 11, "s57026", "41105", "=q1=Glyph of Flash of Light", "=ds="..AL["Trainer"] };
- { 12, "s57027", "41095", "=q1=Glyph of Hammer of Justice", "=ds="..AL["Trainer"] };
- { 13, "s64278", "45742", "=q1=Glyph of Hammer of the Righteous", "=ds="..AL["Book of Glyph Mastery"]};
- { 14, "s57028", "41097", "=q1=Glyph of Hammer of WRATH", "=ds="..GetSpellInfo(61177) };
- { 15, "s57029", "41106", "=q1=Glyph of Holy Light", "=ds="..AL["Trainer"] };
- { 16, "s64254", "45746", "=q1=Glyph of Holy Shock", "=ds="..AL["Book of Glyph Mastery"]};
- { 17, "s57030", "41092", "=q1=Glyph of Judgement", "=ds="..AL["Trainer"] };
- { 18, "s57032", "41100", "=q1=Glyph of Righteous Defense", "=ds="..AL["Trainer"] };
- { 19, "s64251", "45747", "=q1=Glyph of Salvation", "=ds="..AL["Book of Glyph Mastery"]};
- { 20, "s59559", "43867", "=q1=Glyph of Seal of Blood", "=ds="..GetSpellInfo(61177) };
- { 21, "s57033", "41094", "=q1=Glyph of Seal of Command", "=ds="..AL["Trainer"] };
- { 22, "s57034", "41110", "=q1=Glyph of Seal of Light", "=ds="..GetSpellInfo(61177) };
- { 23, "s59560", "43868", "=q1=Glyph of Seal of Righteousness", "=ds="..GetSpellInfo(61177) };
- { 24, "s59561", "43869", "=q1=Glyph of Seal of Vengeance", "=ds="..GetSpellInfo(61177) };
- { 25, "s57035", "41109", "=q1=Glyph of Seal of Wisdom", "=ds="..GetSpellInfo(61177) };
- { 26, "s64308", "45744", "=q1=Glyph of Shield of Righteousness", "=ds="..AL["Book of Glyph Mastery"]};
- { 27, "s57022", "41096", "=q1=Glyph of Spiritual Attunement", "=ds="..AL["Trainer"] };
- { 28, "s57036", "41102", "=q1=Glyph of Turn Evil", "=ds="..AL["Trainer"] };
- };
- {
- Name = AL["Minor Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
- { 1, "s58311", "43365", "=q1=Glyph of Blessing of Kings", "=ds="..GetSpellInfo(61288) };
- { 2, "s58314", "43340", "=q1=Glyph of Blessing of Might", "=ds="..GetSpellInfo(61288) };
- { 3, "s58312", "43366", "=q1=Glyph of Blessing of Wisdom", "=ds="..GetSpellInfo(61288) };
- { 4, "s58313", "43367", "=q1=Glyph of Lay on Hands", "=ds="..GetSpellInfo(61288) };
- { 5, "s58315", "43368", "=q1=Glyph of Sense Undead", "=ds="..GetSpellInfo(61288) };
- { 6, "s58316", "43369", "=q1=Glyph of the Wise", "=ds="..GetSpellInfo(61288) };
- };
- {
- Name = AL["Major Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
- { 1, "s57181", "42396", "=q1=Glyph of Circle of Healing", "=ds="..GetSpellInfo(61177) };
- { 2, "s57183", "42397", "=q1=Glyph of Dispel Magic", "=ds="..AL["Trainer"] };
- { 3, "s64280", "45753", "=q1=Glyph of Dispersion", "=ds="..AL["Book of Glyph Mastery"]};
- { 4, "s57184", "42398", "=q1=Glyph of Fade", "=ds="..AL["Trainer"] };
- { 5, "s57185", "42399", "=q1=Glyph of Fear Ward", "=ds="..AL["Trainer"] };
- { 6, "s57186", "42400", "=q1=Glyph of Flash Heal", "=ds="..AL["Trainer"] };
- { 7, "s64281", "45755", "=q1=Glyph of Guardian Spirit", "=ds="..AL["Book of Glyph Mastery"]};
- { 8, "s57187", "42401", "=q1=Glyph of Holy Nova", "=ds="..AL["Trainer"] };
- { 9, "s64283", "45758", "=q1=Glyph of Hymn of Hope", "=ds="..AL["Book of Glyph Mastery"]};
- { 10, "s57188", "42402", "=q1=Glyph of Inner Fire", "=ds="..AL["Trainer"] };
- { 11, "s57189", "42403", "=q1=Glyph of Lightwell", "=ds="..GetSpellInfo(61177) };
- { 12, "s57190", "42404", "=q1=Glyph of Mass Dispel", "=ds="..GetSpellInfo(61177) };
- { 13, "s57191", "42405", "=q1=Glyph of Mind Control", "=ds="..GetSpellInfo(61177) };
- { 14, "s57192", "42406", "=q1=Glyph of Mind Flay", "=ds="..AL["Trainer"] };
- { 15, "s64309", "45757", "=q1=Glyph of Mind Sear", "=ds="..AL["Book of Glyph Mastery"]};
- { 16, "s64259", "45760", "=q1=Glyph of Pain Suppression", "=ds="..AL["Book of Glyph Mastery"]};
- { 17, "s64282", "45756", "=q1=Glyph of Penance", "=ds="..AL["Book of Glyph Mastery"]};
- { 18, "s57194", "42408", "=q1=Glyph of Power Word: Shield", "=ds="..AL["Trainer"] };
- { 19, "s57195", "42409", "=q1=Glyph of Prayer of Healing", "=ds="..GetSpellInfo(61177) };
- { 20, "s57196", "42410", "=q1=Glyph of Psychic Scream", "=ds="..AL["Trainer"] };
- { 21, "s57197", "42411", "=q1=Glyph of Renew", "=ds="..AL["Trainer"] };
- { 22, "s57198", "42412", "=q1=Glyph of Scourge Imprisonment", "=ds="..AL["Trainer"] };
- { 23, "s57193", "42407", "=q1=Glyph of Shadow", "=ds="..GetSpellInfo(61177) };
- { 24, "s57199", "42414", "=q1=Glyph of Shadow Word: Death", "=ds="..GetSpellInfo(61177) };
- { 25, "s57200", "42415", "=q1=Glyph of Shadow Word: Pain", "=ds="..AL["Trainer"] };
- { 26, "s57201", "42416", "=q1=Glyph of Smite", "=ds="..AL["Trainer"] };
- { 27, "s57202", "42417", "=q1=Glyph of Spirit of Redemption", "=ds="..GetSpellInfo(61177) };
- };
- {
- Name = AL["Minor Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
- { 1, "s58317", "43342", "=q1=Glyph of Fading", "=ds="..GetSpellInfo(61288) };
- { 2, "s58318", "43371", "=q1=Glyph of Fortitude", "=ds="..GetSpellInfo(61288) };
- { 3, "s58319", "43370", "=q1=Glyph of Levitate", "=ds="..GetSpellInfo(61288) };
- { 4, "s58320", "43373", "=q1=Glyph of Shackle Undead", "=ds="..GetSpellInfo(61288) };
- { 5, "s58321", "43372", "=q1=Glyph of Shadow Protection", "=ds="..GetSpellInfo(61288) };
- { 6, "s58322", "43374", "=q1=Glyph of Shadowfiend", "=ds="..GetSpellInfo(61288) };
- };
- {
- Name = AL["Major Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
- { 1, "s57112", "42954", "=q1=Glyph of Adrenaline Rush", "=ds="..GetSpellInfo(61177) };
- { 2, "s57113", "42955", "=q1=Glyph of Ambush", "=ds="..AL["Trainer"] };
- { 3, "s57114", "42956", "=q1=Glyph of Backstab", "=ds="..AL["Trainer"] };
- { 4, "s57115", "42957", "=q1=Glyph of Blade Flurry", "=ds="..GetSpellInfo(61177) };
- { 5, "s64303", "45769", "=q1=Glyph of Cloak of Shadows", "=ds="..AL["Book of Glyph Mastery"]};
- { 6, "s57116", "42958", "=q1=Glyph of Crippling Poison", "=ds="..GetSpellInfo(61177) };
- { 7, "s57117", "42959", "=q1=Glyph of Deadly Throw", "=ds="..GetSpellInfo(61177) };
- { 8, "s57119", "42960", "=q1=Glyph of Evasion", "=ds="..AL["Trainer"] };
- { 9, "s57120", "42961", "=q1=Glyph of Eviscerate", "=ds="..AL["Trainer"] };
- { 10, "s57121", "42962", "=q1=Glyph of Expose Armor", "=ds="..AL["Trainer"] };
- { 11, "s64315", "45766", "=q1=Glyph of Fan of Knives", "=ds="..AL["Book of Glyph Mastery"]};
- { 12, "s57122", "42963", "=q1=Glyph of Feint", "=ds="..AL["Trainer"] };
- { 13, "s57123", "42964", "=q1=Glyph of Garrote", "=ds="..AL["Trainer"] };
- { 14, "s57124", "42965", "=q1=Glyph of Ghostly Strike", "=ds="..GetSpellInfo(61177) };
- { 15, "s57125", "42966", "=q1=Glyph of Gouge", "=ds="..AL["Trainer"] };
- { 16, "s57126", "42967", "=q1=Glyph of Hemorrhage", "=ds="..GetSpellInfo(61177) };
- { 17, "s64284", "45761", "=q1=Glyph of Hunger for Blood", "=ds="..AL["Book of Glyph Mastery"]};
- { 18, "s64285", "45762", "=q1=Glyph of Killing Spree", "=ds="..AL["Book of Glyph Mastery"]};
- { 19, "s64260", "45768", "=q1=Glyph of Mutilate", "=ds="..AL["Book of Glyph Mastery"]};
- { 20, "s57127", "42968", "=q1=Glyph of Preparation", "=ds="..GetSpellInfo(61177) };
- { 21, "s57128", "42969", "=q1=Glyph of Rupture", "=ds="..GetSpellInfo(61177) };
- { 22, "s57129", "42970", "=q1=Glyph of Sap", "=ds="..AL["Trainer"] };
- { 23, "s64286", "45764", "=q1=Glyph of Shadow Dance", "=ds="..AL["Book of Glyph Mastery"]};
- { 24, "s57131", "42972", "=q1=Glyph of Sinister Strike", "=ds="..AL["Trainer"] };
- { 25, "s57132", "42973", "=q1=Glyph of Slice and Dice", "=ds="..AL["Trainer"] };
- { 26, "s57133", "42974", "=q1=Glyph of Sprint", "=ds="..AL["Trainer"] };
- { 27, "s64310", "45767", "=q1=Glyph of Tricks of the Trade", "=ds="..AL["Book of Glyph Mastery"]};
- { 28, "s57130", "42971", "=q1=Glyph of Vigor", "=ds="..GetSpellInfo(61177) };
- };
- {
- Name = AL["Minor Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
- { 1, "s58323", "43379", "=q1=Glyph of Blurred Speed", "=ds="..GetSpellInfo(61288) };
- { 2, "s58324", "43376", "=q1=Glyph of Distract", "=ds="..GetSpellInfo(61288) };
- { 3, "s58325", "43377", "=q1=Glyph of Pick Lock", "=ds="..GetSpellInfo(61288) };
- { 4, "s58326", "43343", "=q1=Glyph of Pick Pocket", "=ds="..GetSpellInfo(61288) };
- { 5, "s58327", "43378", "=q1=Glyph of Safe Fall", "=ds="..GetSpellInfo(61288) };
- { 6, "s58328", "43380", "=q1=Glyph of Vanish", "=ds="..GetSpellInfo(61288) };
- };
- {
- Name = AL["Major Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
- { 1, "s57232", "41517", "=q1=Glyph of Chain Heal", "=ds="..GetSpellInfo(61177) };
- { 2, "s57233", "41518", "=q1=Glyph of Chain Lightning", "=ds="..GetSpellInfo(61177) };
- { 3, "s64261", "45775", "=q1=Glyph of Earth Shield", "=ds="..AL["Book of Glyph Mastery"]};
- { 4, "s57235", "41526", "=q1=Glyph of Earth Shock", "=ds="..GetSpellInfo(61177) };
- { 5, "s57236", "41527", "=q1=Glyph of Earthliving Weapon", "=ds="..AL["Trainer"] };
- { 6, "s57250", "41552", "=q1=Glyph of Elemental Mastery", "=ds="..GetSpellInfo(61177) };
- { 7, "s64288", "45771", "=q1=Glyph of Feral Spirit", "=ds="..AL["Book of Glyph Mastery"]};
- { 8, "s57237", "41529", "=q1=Glyph of Fire Elemental Totem", "=ds="..GetSpellInfo(61177) };
- { 9, "s57238", "41530", "=q1=Glyph of Fire Nova Totem", "=ds="..AL["Trainer"] };
- { 10, "s57239", "41531", "=q1=Glyph of Flame Shock", "=ds="..AL["Trainer"] };
- { 11, "s57240", "41532", "=q1=Glyph of Flametongue Weapon", "=ds="..AL["Trainer"] };
- { 12, "s57241", "41547", "=q1=Glyph of Frost Shock", "=ds="..AL["Trainer"] };
- { 13, "s57242", "41533", "=q1=Glyph of Healing Stream Totem", "=ds="..AL["Trainer"] };
- { 14, "s57243", "41534", "=q1=Glyph of Healing Wave", "=ds="..GetSpellInfo(61177) };
- { 15, "s64316", "45777", "=q1=Glyph of Hex", "=ds="..AL["Book of Glyph Mastery"]};
- { 16, "s57234", "41524", "=q1=Glyph of Lava", "=ds="..GetSpellInfo(61177) };
- { 17, "s57249", "41540", "=q1=Glyph of Lava Lash", "=ds="..AL["Trainer"] };
- { 18, "s57244", "41535", "=q1=Glyph of Lesser Healing Wave", "=ds="..AL["Trainer"] };
- { 19, "s57245", "41536", "=q1=Glyph of Lightning Bolt", "=ds="..AL["Trainer"] };
- { 20, "s57246", "41537", "=q1=Glyph of Lightning Shield", "=ds="..AL["Trainer"] };
- { 21, "s57247", "41538", "=q1=Glyph of Mana Tide Totem", "=ds="..GetSpellInfo(61177) };
- { 22, "s64289", "45772", "=q1=Glyph of Riptide", "=ds="..AL["Book of Glyph Mastery"]};
- { 23, "s64247", "45778", "=q1=Glyph of Stoneclaw Totem", "=ds="..AL["Book of Glyph Mastery"]};
- { 24, "s57248", "41539", "=q1=Glyph of Stormstrike", "=ds="..AL["Trainer"] };
- { 25, "s64287", "45770", "=q1=Glyph of Thunder", "=ds="..AL["Book of Glyph Mastery"]};
- { 26, "s64262", "45776", "=q1=Glyph of Totem of WRATH", "=ds="..AL["Book of Glyph Mastery"]};
- { 27, "s57251", "41541", "=q1=Glyph of Water Mastery", "=ds="..AL["Trainer"] };
- { 28, "s57252", "41542", "=q1=Glyph of Windfury Weapon", "=ds="..AL["Trainer"] };
- };
- {
- Name = AL["Minor Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
- { 1, "s58329", "43381", "=q1=Glyph of Astral Recall", "=ds="..GetSpellInfo(61288) };
- { 2, "s59326", "43725", "=q1=Glyph of Ghost Wolf", "=ds="..GetSpellInfo(61288) };
- { 3, "s58330", "43385", "=q1=Glyph of Renewed Life", "=ds="..GetSpellInfo(61288) };
- { 4, "s57253", "44923", "=q1=Glyph of Thunderstorm", "=ds="..GetSpellInfo(61288) };
- { 5, "s58331", "43344", "=q1=Glyph of Water Breathing", "=ds="..GetSpellInfo(61288) };
- { 6, "s58332", "43386", "=q1=Glyph of Water Shield", "=ds="..GetSpellInfo(61288) };
- { 7, "s58333", "43388", "=q1=Glyph of Water Walking", "=ds="..GetSpellInfo(61288) };
- };
- {
- Name = AL["Major Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
- { 1, "s64294", "45781", "=q1=Glyph of Chaos Bolt", "=ds="..AL["Book of Glyph Mastery"]};
- { 2, "s57258", "42454", "=q1=Glyph of Conflagrate", "=ds="..GetSpellInfo(61177) };
- { 3, "s57259", "42455", "=q1=Glyph of Corruption", "=ds="..AL["Trainer"] };
- { 4, "s57260", "42456", "=q1=Glyph of Curse of Agony", "=ds="..GetSpellInfo(61177) };
- { 5, "s57261", "42457", "=q1=Glyph of Death Coil", "=ds="..GetSpellInfo(61177) };
- { 6, "s64317", "45782", "=q1=Glyph of Demonic Circle", "=ds="..AL["Book of Glyph Mastery"]};
- { 7, "s57262", "42458", "=q1=Glyph of Fear", "=ds="..AL["Trainer"] };
- { 8, "s57263", "42459", "=q1=Glyph of Felguard", "=ds="..GetSpellInfo(61177) };
- { 9, "s57264", "42460", "=q1=Glyph of Felhunter", "=ds="..GetSpellInfo(61177) };
- { 10, "s64291", "45779", "=q1=Glyph of Haunt", "=ds="..AL["Book of Glyph Mastery"]};
- { 11, "s57265", "42461", "=q1=Glyph of Health Funnel", "=ds="..AL["Trainer"] };
- { 12, "s57266", "42462", "=q1=Glyph of Healthstone", "=ds="..AL["Trainer"] };
- { 13, "s57267", "42463", "=q1=Glyph of Howl of Terror", "=ds="..GetSpellInfo(61177) };
- { 14, "s57268", "42464", "=q1=Glyph of Immolate", "=ds="..GetSpellInfo(61177) };
- { 15, "s57269", "42465", "=q1=Glyph of Imp", "=ds="..AL["Trainer"] };
- { 16, "s57257", "42453", "=q1=Glyph of Incinerate", "=ds="..AL["Trainer"] };
- { 17, "s64248", "45785", "=q1=Glyph of Life Tap", "=ds="..AL["Book of Glyph Mastery"]};
- { 18, "s64318", "45780", "=q1=Glyph of Metamorphosis", "=ds="..AL["Book of Glyph Mastery"]};
- { 19, "s71102", "50077", "=q1=Glyph of Quick Decay", "=ds="..AL["Trainer"] };
- { 20, "s57270", "42466", "=q1=Glyph of Searing Pain", "=ds="..AL["Trainer"] };
- { 21, "s57271", "42467", "=q1=Glyph of Shadow Bolt", "=ds="..AL["Trainer"] };
- { 22, "s57272", "42468", "=q1=Glyph of Shadowburn", "=ds="..AL["Trainer"] };
- { 23, "s64311", "45783", "=q1=Glyph of Shadowflame", "=ds="..AL["Book of Glyph Mastery"]};
- { 24, "s57273", "42469", "=q1=Glyph of Siphon Life", "=ds="..GetSpellInfo(61177) };
- { 25, "s64250", "45789", "=q1=Glyph of Soul Link", "=ds="..AL["Book of Glyph Mastery"]};
- { 26, "s57274", "42470", "=q1=Glyph of Soulstone", "=ds="..AL["Trainer"] };
- { 27, "s57275", "42471", "=q1=Glyph of Succubus", "=ds="..AL["Trainer"] };
- { 28, "s57276", "42472", "=q1=Glyph of Unstable Affliction", "=ds="..GetSpellInfo(61177) };
- { 29, "s57277", "42473", "=q1=Glyph of Voidwalker", "=ds="..AL["Trainer"] };
- };
- {
- Name = AL["Minor Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
- { 1, "s58338", "43392", "=q1=Glyph of Curse of Exhaustion", "=ds="..GetSpellInfo(61288) };
- { 2, "s58337", "43390", "=q1=Glyph of Drain Soul", "=ds="..GetSpellInfo(61288) };
- { 3, "s58339", "43393", "=q1=Glyph of Enslave Demon", "=ds="..GetSpellInfo(61288) };
- { 4, "s58340", "43391", "=q1=Glyph of Kilrogg", "=ds="..GetSpellInfo(61288) };
- { 5, "s58341", "43394", "=q1=Glyph of Souls", "=ds="..GetSpellInfo(61288) };
- { 6, "s58336", "43389", "=q1=Glyph of Unending Breath", "=ds="..GetSpellInfo(61288) };
- };
- {
- Name = AL["Major Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
- { 1, "s57151", "43420", "=q1=Glyph of Barbaric Insults", "=ds="..AL["Trainer"] };
- { 2, "s64295", "45790", "=q1=Glyph of Bladestorm", "=ds="..AL["Book of Glyph Mastery"]};
- { 3, "s57152", "43425", "=q1=Glyph of Blocking", "=ds="..GetSpellInfo(61177) };
- { 4, "s57153", "43412", "=q1=Glyph of Bloodthirst", "=ds="..GetSpellInfo(61177) };
- { 5, "s57154", "43414", "=q1=Glyph of Cleaving", "=ds="..AL["Trainer"] };
- { 6, "s57155", "43415", "=q1=Glyph of Devastate", "=ds="..GetSpellInfo(61177) };
- { 7, "s64312", "45794", "=q1=Glyph of Enraged Regeneration", "=ds="};
- { 8, "s57156", "43416", "=q1=Glyph of Execution", "=ds="..AL["Trainer"] };
- { 9, "s57157", "43417", "=q1=Glyph of Hamstring", "=ds="..AL["Trainer"] };
- { 10, "s57158", "43418", "=q1=Glyph of Heroic Strike", "=ds="..AL["Trainer"] };
- { 11, "s57159", "43419", "=q1=Glyph of Intervene", "=ds="..GetSpellInfo(61177) };
- { 12, "s57166", "43426", "=q1=Glyph of Last Stand", "=ds="..GetSpellInfo(61177) };
- { 13, "s57160", "43421", "=q1=Glyph of Mortal Strike", "=ds="..GetSpellInfo(61177) };
- { 14, "s57161", "43422", "=q1=Glyph of Overpower", "=ds="..AL["Trainer"] };
- { 15, "s57162", "43413", "=q1=Glyph of Rapid Charge", "=ds="..AL["Trainer"] };
- { 16, "s57163", "43423", "=q1=Glyph of Rending", "=ds="..AL["Trainer"] };
- { 17, "s57164", "43430", "=q1=Glyph of Resonating Power", "=ds="..GetSpellInfo(61177) };
- { 18, "s57165", "43424", "=q1=Glyph of Revenge", "=ds="..AL["Trainer"] };
- { 19, "s64252", "45797", "=q1=Glyph of Shield Wall", "=ds="..AL["Book of Glyph Mastery"]};
- { 20, "s64296", "45792", "=q1=Glyph of Shockwave", "=ds="..AL["Book of Glyph Mastery"]};
- { 21, "s64302", "45795", "=q1=Glyph of Spell Reflection", "=ds="..AL["Book of Glyph Mastery"]};
- { 22, "s57167", "43427", "=q1=Glyph of Sunder Armor", "=ds="..AL["Trainer"] };
- { 23, "s57168", "43428", "=q1=Glyph of Sweeping Strikes", "=ds="..AL["Trainer"] };
- { 24, "s57169", "43429", "=q1=Glyph of Taunt", "=ds="..GetSpellInfo(61177) };
- { 25, "s57170", "43431", "=q1=Glyph of Victory Rush", "=ds="..GetSpellInfo(61177) };
- { 26, "s64255", "45793", "=q1=Glyph of Vigilance", "=ds="..AL["Book of Glyph Mastery"]};
- { 27, "s57172", "43432", "=q1=Glyph of Whirlwind", "=ds="..AL["Trainer"] };
- };
- {
- Name = AL["Minor Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
- { 1, "s58342", "43395", "=q1=Glyph of Battle", "=ds="..GetSpellInfo(61288) };
- { 2, "s58343", "43396", "=q1=Glyph of Bloodrage", "=ds="..GetSpellInfo(61288) };
- { 3, "s58344", "43397", "=q1=Glyph of Charge", "=ds="..GetSpellInfo(61288) };
- { 4, "s68166", "49084", "=q1=Glyph of Command", "=ds="..GetSpellInfo(61288)};
- { 5, "s58347", "43400", "=q1=Glyph of Enduring Victory", "=ds="..GetSpellInfo(61288) };
- { 6, "s58345", "43398", "=q1=Glyph of Mocking Blow", "=ds="..GetSpellInfo(61288) };
- { 7, "s58346", "43399", "=q1=Glyph of Thunder Clap", "=ds="..GetSpellInfo(61288) };
- };
- };
-
- ----------------------
- --- Leatherworking ---
- ----------------------
-
- AtlasLoot_Data["LeatherworkingCLASSIC"] = {
- Name = LEATHERWORKING;
- Type = "Crafting";
- {
- Name = AL["Leather Armor"].." - Back";
- { 1, "s22926", "18509", "=q4=Chromatic Cloak", "=ds=#sr# 300"};
- { 2, "s22928", "18511", "=q4=Shifting Cloak", "=ds=#sr# 300"};
- { 3, "s22927", "18510", "=q4=Hide of the Wild", "=ds=#sr# 300"};
- { 4, "s19093", "15138", "=q3=Onyxia Scale Cloak", "=ds=#sr# 300"};
- { 5, "s10574", "8215", "=q2=Wild Leather Cloak", "=ds=#sr# 250"};
- { 6, "s10562", "8216", "=q2=Big Voodoo Cloak", "=ds=#sr# 240"};
- { 7, "s7153", "5965", "=q2=Guardian Cloak", "=ds=#sr# 185"};
- { 8, "s9198", "7377", "=q2=Frost Leather Cloak", "=ds=#sr# 180"};
- { 9, "s9070", "7283", "=q2=Black Whelp Cloak", "=ds=#sr# 100"};
- { 10, "s7953", "6466", "=q2=Deviate Scale Cloak", "=ds=#sr# 90"};
- { 11, "s2159", "2308", "=q2=Fine Leather Cloak", "=ds=#sr# 85"};
- { 12, "s3760", "3719", "=q1=Hillman's Cloak", "=ds=#sr# 150"};
- { 13, "s2168", "2316", "=q1=Dark Leather Cloak", "=ds=#sr# 110"};
- { 14, "s2162", "2310", "=q1=Embossed Leather Cloak", "=ds=#sr# 60"};
- { 15, "s9058", "7276", "=q1=Handstitched Leather Cloak", "=ds=#sr# 1"};
- };
- {
- Name = AL["Leather Armor"].." - Chest";
- { 1, "s28219", "22661", "=q4=Polar Tunic", "=ds=#sr# 300"};
- { 2, "s19095", "15059", "=q3=Living Breastplate", "=ds=#sr# 300"};
- { 3, "s24121", "19685", "=q3=Primal Batskin Jerkin", "=ds=#sr# 300"};
- { 4, "s24124", "19688", "=q3=Blood Tiger Breastplate", "=ds=#sr# 300"};
- { 5, "s19104", "15068", "=q2=Frostsaber Tunic", "=ds=#sr# 300"};
- { 6, "s19102", "15090", "=q2=Runic Leather Armor", "=ds=#sr# 300"};
- { 7, "s19098", "15085", "=q2=Wicked Leather Armor", "=ds=#sr# 300"};
- { 8, "s19081", "15075", "=q2=Chimeric Vest", "=ds=#sr# 290"};
- { 9, "s19086", "15066", "=q3=Ironfeather Breastplate", "=ds=#sr# 290"};
- { 10, "s19079", "15056", "=q3=Stormshroud Armor", "=ds=#sr# 285"};
- { 11, "s19076", "15053", "=q2=Volcanic Breastplate", "=ds=#sr# 285"};
- { 12, "s19068", "15064", "=q3=Warbear Harness", "=ds=#sr# 275"};
- { 13, "s10647", "8349", "=q3=Feathered Breastplate", "=ds=#sr# 250"};
- { 14, "s10630", "8346", "=q3=Gauntlets of the Sea", "=ds=#sr# 230"};
- { 15, "s10544", "8211", "=q2=Wild Leather Vest", "=ds=#sr# 225"};
- { 16, "s10520", "8200", "=q2=Big Voodoo Robe", "=ds=#sr# 215"};
- };
- {
- Name = AL["Leather Armor"].." - Chest";
- { 1, "s10499", "8175", "=q2=Nightscape Tunic", "=ds=#sr# 205"};
- { 2, "s6661", "5739", "=q1=Barbaric Harness", "=ds=#sr# 190"};
- { 3, "s9196", "7374", "=q2=Dusky Leather Armor", "=ds=#sr# 175"};
- { 4, "s9197", "7375", "=q2=Green Whelp Armor", "=ds=#sr# 175"};
- { 5, "s3773", "4256", "=q2=Guardian Armor", "=ds=#sr# 175"};
- { 6, "s6704", "5782", "=q2=Thick Murloc Armor", "=ds=#sr# 170"};
- { 7, "s4096", "4455", "=q2=Raptor Hide Harness", "=ds=#sr# 165"};
- { 8, "s2166", "2314", "=q1=Toughened Leather Armor", "=ds=#sr# 120"};
- { 9, "s24940", "20575", "=q2=Black Whelp Tunic", "=ds=#sr# 100"};
- { 10, "s2169", "2317", "=q2=Dark Leather Tunic", "=ds=#sr# 100"};
- { 11, "s3762", "4244", "=q2=Hillman's Leather Vest", "=ds=#sr# 100"};
- { 12, "s6703", "5781", "=q2=Murloc Scale Breastplate", "=ds=#sr# 95"};
- { 13, "s8322", "6709", "=q2=Moonglow Vest", "=ds=#sr# 90"};
- { 14, "s3761", "4243", "=q2=Fine Leather Tunic", "=ds=#sr# 85"};
- { 15, "s2160", "2300", "=q2=Embossed Leather Vest", "=ds=#sr# 40"};
- { 16, "s2163", "2311", "=q1=White Leather Jerkin", "=ds=#sr# 60"};
- { 17, "s7126", "5957", "=q1=Handstitched Leather Vest", "=ds=#sr# 1"};
- };
-
- {
- Name = AL["Leather Armor"].." - Feet";
- { 1, "s28473", "22760", "=q3=Bramblewood Boots", "=ds=#sr# 300"};
- { 2, "s22922", "18506", "=q3=Mongoose Boots", "=ds=#sr# 300"};
- { 3, "s20853", "16982", "=q4=Corehound Boots", "=ds=#sr# 295"};
- { 4, "s23705", "19052", "=q3=Dawn Treaders", "=ds=#sr# 290"};
- { 5, "s44953", "34086", "=q1=Winter Boots", "=ds=#sr# 285"};
- { 6, "s19063", "15073", "=q2=Chimeric Boots", "=ds=#sr# 275"};
- { 7, "s19066", "15071", "=q2=Frostsaber Boots", "=ds=#sr# 275"};
- { 8, "s10566", "8213", "=q2=Wild Leather Boots", "=ds=#sr# 245"};
- { 9, "s10558", "8197", "=q2=Nightscape Boots", "=ds=#sr# 235"};
- { 10, "s9207", "7390", "=q2=Dusky Boots", "=ds=#sr# 200"};
- { 11, "s9208", "7391", "=q2=Swift Boots", "=ds=#sr# 200"};
- { 12, "s2167", "2315", "=q1=Dark Leather Boots", "=ds=#sr# 100"};
- { 13, "s2158", "2307", "=q1=Fine Leather Boots", "=ds=#sr# 90"};
- { 14, "s2161", "2309", "=q2=Embossed Leather Boots", "=ds=#sr# 55"};
- { 15, "s2149", "2302", "=q1=Handstitched Leather Boots", "=ds=#sr# 1"};
- };
- {
- Name = AL["Leather Armor"].." - Hands";
- { 1, "s28220", "22662", "=q4=Polar Gloves", "=ds=#sr# 300"};
- { 2, "s24122", "19686", "=q3=Primal Batskin Gloves", "=ds=#sr# 300"};
- { 3, "s26279", "21278", "=q3=Stormshroud Gloves", "=ds=#sr# 300"};
- { 4, "s19087", "15070", "=q2=Frostsaber Gloves", "=ds=#sr# 295"};
- { 5, "s19084", "15063", "=q3=Devilsaur Gauntlets", "=ds=#sr# 290"};
- { 6, "s19055", "15091", "=q2=Runic Leather Gauntlets", "=ds=#sr# 270"};
- { 7, "s19053", "15074", "=q2=Chimeric Gloves", "=ds=#sr# 265"};
- { 8, "s19049", "15083", "=q2=Wicked Leather Gauntlets", "=ds=#sr# 260"};
- { 9, "s22711", "18238", "=q3=Shadowskin Gloves", "=ds=#sr# 200"};
- { 10, "s21943", "17721", "=q2=Gloves of the Greatfather", "=ds=#sr# 190"};
- { 11, "s7156", "5966", "=q1=Guardian Gloves", "=ds=#sr# 190"};
- { 12, "s3771", "4254", "=q2=Barbaric Gloves", "=ds=#sr# 150"};
- { 13, "s9149", "7359", "=q2=Heavy Earthen Gloves", "=ds=#sr# 145"};
- { 14, "s3764", "4247", "=q2=Hillman's Leather Gloves", "=ds=#sr# 145"};
- { 15, "s9148", "7358", "=q2=Pilferer's Gloves", "=ds=#sr# 140"};
- { 16, "s3770", "4253", "=q3=Toughened Leather Gloves", "=ds=#sr# 135"};
- { 17, "s9146", "7349", "=q2=Herbalist's Gloves", "=ds=#sr# 135"};
- { 18, "s9145", "7348", "=q2=Fletcher's Gloves", "=ds=#sr# 125"};
- { 19, "s3765", "4248", "=q2=Dark Leather Gloves", "=ds=#sr# 120"};
- { 20, "s9074", "7285", "=q2=Nimble Leather Gloves", "=ds=#sr# 120"};
- { 21, "s9072", "7284", "=q2=Red Whelp Gloves", "=ds=#sr# 120"};
- { 22, "s7954", "6467", "=q2=Deviate Scale Gloves", "=ds=#sr# 105"};
- { 23, "s2164", "2312", "=q2=Fine Leather Gloves", "=ds=#sr# 75"};
- { 24, "s3756", "4239", "=q1=Embossed Leather Gloves", "=ds=#sr# 55"};
- };
- {
- Name = AL["Leather Armor"].." - Head";
- { 1, "s20854", "16983", "=q4=Molten Helm", "=ds=#sr# 300"};
- { 2, "s28472", "22759", "=q3=Bramblewood Helm", "=ds=#sr# 300"};
- { 3, "s19082", "15094", "=q2=Runic Leather Headband", "=ds=#sr# 290"};
- { 4, "s19071", "15086", "=q2=Wicked Leather Headband", "=ds=#sr# 280"};
- { 5, "s10632", "8348", "=q3=Helm of Fire", "=ds=#sr# 250"};
- { 6, "s10546", "8214", "=q2=Wild Leather Helmet", "=ds=#sr# 225"};
- { 7, "s10621", "8345", "=q3=Wolfshead Helm", "=ds=#sr# 225"};
- { 8, "s10531", "8201", "=q2=Big Voodoo Mask", "=ds=#sr# 220"};
- { 9, "s10507", "8176", "=q2=Nightscape Headband", "=ds=#sr# 205"};
- { 10, "s10490", "8174", "=q2=Comfortable Leather Hat", "=ds=#sr# 200"};
- };
- {
- Name = AL["Leather Armor"].." - Legs";
- { 1, "s19091", "15095", "=q2=Runic Leather Pants", "=ds=#sr# 300"};
- { 2, "s19097", "15062", "=q3=Devilsaur Leggings", "=ds=#sr# 300"};
- { 3, "s19083", "15087", "=q2=Wicked Leather Pants", "=ds=#sr# 290"};
- { 4, "s19074", "15069", "=q2=Frostsaber Leggings", "=ds=#sr# 285"};
- { 5, "s19080", "15065", "=q3=Warbear Woolies", "=ds=#sr# 285"};
- { 6, "s19078", "15060", "=q3=Living Leggings", "=ds=#sr# 285"};
- { 7, "s19073", "15072", "=q2=Chimeric Leggings", "=ds=#sr# 280"};
- { 8, "s19067", "15057", "=q3=Stormshroud Pants", "=ds=#sr# 275"};
- { 9, "s19059", "15054", "=q2=Volcanic Leggings", "=ds=#sr# 270"};
- { 10, "s36074", "29964", "=q3=Blackstorm Leggings", "=ds=#sr# 260"};
- { 11, "s36075", "29970", "=q3=Wildfeather Leggings", "=ds=#sr# 260"};
- { 12, "s10572", "8212", "=q2=Wild Leather Leggings", "=ds=#sr# 250"};
- { 13, "s10560", "8202", "=q2=Big Voodoo Pants", "=ds=#sr# 240"};
- { 14, "s10548", "8193", "=q2=Nightscape Pants", "=ds=#sr# 230"};
- { 15, "s7149", "5963", "=q2=Barbaric Leggings", "=ds=#sr# 170"};
- { 16, "s9195", "7373", "=q2=Dusky Leather Leggings", "=ds=#sr# 165"};
- { 17, "s7147", "5962", "=q2=Guardian Pants", "=ds=#sr# 160"};
- { 18, "s3772", "4255", "=q2=Green Leather Armor", "=ds=#sr# 155"};
- { 19, "s7133", "5958", "=q2=Fine Leather Pants", "=ds=#sr# 105"};
- { 20, "s7135", "5961", "=q2=Dark Leather Pants", "=ds=#sr# 115"};
- { 21, "s9068", "7282", "=q2=Light Leather Pants", "=ds=#sr# 95"};
- { 22, "s3759", "4242", "=q2=Embossed Leather Pants", "=ds=#sr# 75"};
- { 23, "s9064", "7280", "=q2=Rugged Leather Pants", "=ds=#sr# 35"};
- { 24, "s2153", "2303", "=q1=Handstitched Leather Pants", "=ds=#sr# 15"};
-
- };
- {
- Name = AL["Leather Armor"].." - Shoulder";
- { 1, "s23704", "19049", "=q3=Timbermaw Brawlers", "=ds=#sr# 300"};
- { 2, "s24125", "19689", "=q3=Blood Tiger Shoulders", "=ds=#sr# 300"};
- { 3, "s23706", "19058", "=q3=Golden Mantle of the Dawn", "=ds=#sr# 300"};
- { 4, "s19103", "15096", "=q2=Runic Leather Shoulders", "=ds=#sr# 300"};
- { 5, "s19101", "15055", "=q2=Volcanic Shoulders", "=ds=#sr# 300"};
- { 6, "s19090", "15058", "=q3=Stormshroud Shoulders", "=ds=#sr# 295"};
- { 7, "s23703", "19044", "=q3=Might of the Timbermaw", "=ds=#sr# 290"};
- { 8, "s19062", "15067", "=q3=Ironfeather Shoulders", "=ds=#sr# 270"};
- { 9, "s19061", "15061", "=q3=Living Shoulders", "=ds=#sr# 270"};
- { 10, "s10529", "8210", "=q2=Wild Leather Shoulders", "=ds=#sr# 220"};
- { 11, "s10516", "8192", "=q2=Nightscape Shoulders", "=ds=#sr# 210"};
- { 12, "s7151", "5964", "=q2=Barbaric Shoulders", "=ds=#sr# 175"};
- { 13, "s3769", "4252", "=q2=Dark Leather Shoulders", "=ds=#sr# 140"};
- { 14, "s9147", "7352", "=q2=Earthen Leather Shoulders", "=ds=#sr# 135"};
- { 15, "s3768", "4251", "=q2=Hillman's Shoulders", "=ds=#sr# 130"};
- };
- {
- Name = AL["Leather Armor"].." - Waist";
- { 1, "s23709", "19162", "=q4=Corehound Belt", "=ds=#sr# 300"};
- { 2, "s23707", "19149", "=q4=Lava Belt", "=ds=#sr# 300"};
- { 3, "s23710", "19163", "=q4=Molten Belt", "=ds=#sr# 300"};
- { 4, "s22921", "18504", "=q3=Girdle of Insight", "=ds=#sr# 300"};
- { 5, "s28474", "22761", "=q3=Bramblewood Belt", "=ds=#sr# 300"};
- { 6, "s19092", "15088", "=q2=Wicked Leather Belt", "=ds=#sr# 300"};
- { 7, "s19072", "15093", "=q2=Runic Leather Belt", "=ds=#sr# 280"};
- { 8, "s3779", "4264", "=q2=Barbaric Belt", "=ds=#sr# 200"};
- { 9, "s9206", "7387", "=q2=Dusky Belt", "=ds=#sr# 195"};
- { 10, "s3778", "4262", "=q3=Gem-studded Leather Belt", "=ds=#sr# 185"};
- { 11, "s3775", "4258", "=q2=Guardian Belt", "=ds=#sr# 170"};
- { 12, "s4097", "4456", "=q2=Raptor Hide Belt", "=ds=#sr# 165"};
- { 13, "s3774", "4257", "=q2=Green Leather Belt", "=ds=#sr# 160"};
- { 14, "s3766", "4249", "=q2=Dark Leather Belt", "=ds=#sr# 125"};
- { 15, "s3767", "4250", "=q2=Hillman's Belt", "=ds=#sr# 120"};
- { 16, "s7955", "6468", "=q3=Deviate Scale Belt", "=ds=#sr# 115"};
- { 17, "s6702", "5780", "=q2=Murloc Scale Belt", "=ds=#sr# 90"};
- { 18, "s3763", "4246", "=q1=Fine Leather Belt", "=ds=#sr# 80"};
- { 19, "s3753", "4237", "=q1=Handstitched Leather Belt", "=ds=#sr# 25"};
- };
- {
- Name = AL["Leather Armor"].." - Wrist";
- { 1, "s28221", "22663", "=q4=Polar Bracers", "=ds=#sr# 300"};
- { 2, "s24123", "19687", "=q3=Primal Batskin Bracers", "=ds=#sr# 300"};
- { 3, "s19065", "15092", "=q2=Runic Leather Bracers", "=ds=#sr# 275"};
- { 4, "s19052", "15084", "=q2=Wicked Leather Bracers", "=ds=#sr# 265"};
- { 5, "s3777", "4260", "=q2=Guardian Leather Bracers", "=ds=#sr# 195"};
- { 6, "s9202", "7386", "=q2=Green Whelp Bracers", "=ds=#sr# 190"};
- { 7, "s6705", "5783", "=q2=Murloc Scale Bracers", "=ds=#sr# 190"};
- { 8, "s9201", "7378", "=q2=Dusky Bracers", "=ds=#sr# 185"};
- { 9, "s3776", "4259", "=q2=Green Leather Bracers", "=ds=#sr# 180"};
- { 10, "s23399", "18948", "=q3=Barbaric Bracers", "=ds=#sr# 155"};
- { 11, "s9065", "7281", "=q1=Light Leather Bracers", "=ds=#sr# 70"};
- { 12, "s9059", "7277", "=q1=Handstitched Leather Bracers", "=ds=#sr# 1"};
- };
- {
- Name = AL["Mail Armor"].." - Chest";
- { 1, "s28222", "22664", "=q4=Icy Scale Breastplate", "=ds=#sr# 300"};
- { 2, "s24703", "20380", "=q4=Dreamscale Breastplate", "=ds=#sr# 300"};
- { 3, "s24851", "20478", "=q3=Sandstalker Breastplate", "=ds=#sr# 300"};
- { 4, "s24848", "20479", "=q3=Spitfire Breastplate", "=ds=#sr# 300"};
- { 5, "s19054", "15047", "=q3=Red Dragonscale Breastplate", "=ds=#sr# 300"};
- { 6, "s19085", "15050", "=q3=Black Dragonscale Breastplate", "=ds=#sr# 290"};
- { 7, "s19077", "15048", "=q3=Blue Dragonscale Breastplate", "=ds=#sr# 285"};
- { 8, "s19050", "15045", "=q3=Green Dragonscale Breastplate", "=ds=#sr# 260"};
- { 9, "s19051", "15076", "=q2=Heavy Scorpid Vest", "=ds=#sr# 265"};
- { 10, "s10650", "8367", "=q3=Dragonscale Breastplate", "=ds=#sr# 255"};
- { 11, "s10525", "8203", "=q2=Tough Scorpid Breastplate", "=ds=#sr# 220"};
- { 12, "s10511", "8189", "=q2=Turtle Scale Breastplate", "=ds=#sr# 210"};
- };
- {
- Name = AL["Mail Armor"].." - Feet";
- { 1, "s20855", "16984", "=q4=Black Dragonscale Boots", "=ds=#sr# 300"};
- { 2, "s10554", "8209", "=q2=Tough Scorpid Boots", "=ds=#sr# 235"};
- };
- {
- Name = AL["Mail Armor"].." - Hands";
- { 1, "s28223", "22666", "=q4=Icy Scale Gauntlets", "=ds=#sr# 300"};
- { 2, "s23708", "19157", "=q4=Chromatic Gauntlets", "=ds=#sr# 300"};
- { 3, "s24850", "20477", "=q3=Sandstalker Gauntlets", "=ds=#sr# 300"};
- { 4, "s24847", "20480", "=q3=Spitfire Gauntlets", "=ds=#sr# 300"};
- { 5, "s24655", "20296", "=q3=Green Dragonscale Gauntlets", "=ds=#sr# 280"};
- { 6, "s19064", "15078", "=q2=Heavy Scorpid Gauntlets", "=ds=#sr# 275"};
- { 7, "s10619", "8347", "=q3=Dragonscale Gauntlets", "=ds=#sr# 225"};
- { 8, "s10542", "8204", "=q2=Tough Scorpid Gloves", "=ds=#sr# 225"};
- { 9, "s10509", "8187", "=q2=Turtle Scale Gloves", "=ds=#sr# 205"};
- };
- {
- Name = AL["Mail Armor"].." - Head";
- { 1, "s19088", "15080", "=q2=Heavy Scorpid Helm", "=ds=#sr# 295"};
- { 2, "s10570", "8208", "=q2=Tough Scorpid Helm", "=ds=#sr# 250"};
- { 3, "s10552", "8191", "=q2=Turtle Scale Helm", "=ds=#sr# 230"};
- };
- {
- Name = AL["Mail Armor"].." - Legs";
- { 1, "s24654", "20295", "=q3=Blue Dragonscale Leggings", "=ds=#sr# 300"};
- { 2, "s19107", "15052", "=q3=Black Dragonscale Leggings", "=ds=#sr# 300"};
- { 3, "s19075", "15079", "=q2=Heavy Scorpid Leggings", "=ds=#sr# 285"};
- { 4, "s19060", "15046", "=q3=Green Dragonscale Leggings", "=ds=#sr# 270"};
- { 5, "s36076", "29971", "=q3=Dragonstrike Leggings", "=ds=#sr# 260"};
- { 6, "s10568", "8206", "=q2=Tough Scorpid Leggings", "=ds=#sr# 245"};
- { 7, "s10556", "8185", "=q2=Turtle Scale Leggings", "=ds=#sr# 235"};
- };
- {
- Name = AL["Mail Armor"].." - Shoulder";
- { 1, "s19094", "15051", "=q3=Black Dragonscale Shoulders", "=ds=#sr# 300"};
- { 2, "s19100", "15081", "=q2=Heavy Scorpid Shoulders", "=ds=#sr# 300"};
- { 3, "s19089", "15049", "=q3=Blue Dragonscale Shoulders", "=ds=#sr# 295"};
- { 4, "s10564", "8207", "=q2=Tough Scorpid Shoulders", "=ds=#sr# 240"};
-
- };
- {
- Name = AL["Mail Armor"].." - Waist";
- { 1, "s19070", "15082", "=q2=Heavy Scorpid Belt", "=ds=#sr# 280"};
- };
- {
- Name = AL["Mail Armor"].." - Wrist";
- { 1, "s28224", "22665", "=q4=Icy Scale Bracers", "=ds=#sr# 300"};
- { 2, "s22923", "18508", "=q3=Swift Flight Bracers", "=ds=#sr# 300"};
- { 3, "s24849", "20476", "=q3=Sandstalker Bracers", "=ds=#sr# 300"};
- { 4, "s24846", "20481", "=q3=Spitfire Bracers", "=ds=#sr# 300"};
- { 5, "s19048", "15077", "=q2=Heavy Scorpid Bracers", "=ds=#sr# 255"};
- { 6, "s10533", "8205", "=q2=Tough Scorpid Bracers", "=ds=#sr# 220"};
- { 7, "s10518", "8198", "=q2=Turtle Scale Bracers", "=ds=#sr# 210"};
- };
- {
- Name = AL["Item Enhancements"];
- { 1, "s19058", "15564", "=q1=Rugged Armor Kit", "=ds=#sr# 250"};
- { 2, "s10487", "8173", "=q1=Thick Armor Kit", "=ds=#sr# 200"};
- { 3, "s3780", "4265", "=q1=Heavy Armor Kit", "=ds=#sr# 150"};
- { 4, "s2165", "2313", "=q1=Medium Armor Kit", "=ds=#sr# 100"};
- { 5, "s2152", "2304", "=q1=Light Armor Kit", "=ds=#sr# 1"};
- };
- {
- Name = AL["Quivers and Ammo Pouches"];
- { 1, "s14930", "8217", "=q2=Quickdraw Quiver", "=ds=#sr# 225"};
- { 2, "s14932", "8218", "=q2=Thick Leather Ammo Pouch", "=ds=#sr# 225"};
- { 3, "s9194", "7372", "=q2=Heavy Leather Ammo Pouch", "=ds=#sr# 150"};
- { 4, "s9193", "7371", "=q2=Heavy Quiver", "=ds=#sr# 150"};
- { 5, "s9060", "7278", "=q1=Light Leather Quiver", "=ds=#sr# 30"};
- { 6, "s9062", "7279", "=q1=Small Leather Ammo Pouch", "=ds=#sr# 30"};
- };
- {
- Name = AL["Drums, Bags and Misc."];
- { 1, "s22815", "18258", "=q2=Gordok Ogre Suit", "=ds=#sr# 275"};
- { 2, "s23190", "18662", "=q1=Heavy Leather Ball", "=ds=#sr# 150"};
- { 3, "s5244", "5081", "=q1=Kodo Hide Bag", "=ds=#sr# 40"};
- };
- {
- Name = BabbleInventory["Leather"];
- { 1, "s22331", "8170", "=q1=Rugged Leather", "=ds=#sr# 250"};
- { 2, "s19047", "15407", "=q1=Cured Rugged Hide", "=ds=#sr# 250"};
- { 3, "s20650", "4304", "=q1=Thick Leather", "=ds=#sr# 200"};
- { 4, "s10482", "8172", "=q1=Cured Thick Hide", "=ds=#sr# 200"};
- { 5, "s20649", "4234", "=q1=Heavy Leather", "=ds=#sr# 150"};
- { 6, "s3818", "4236", "=q1=Cured Heavy Hide", "=ds=#sr# 150"};
- { 7, "s20648", "2319", "=q1=Medium Leather", "=ds=#sr# 100"};
- { 8, "s3817", "4233", "=q1=Cured Medium Hide", "=ds=#sr# 100"};
- { 9, "s3816", "4231", "=q1=Cured Light Hide", "=ds=#sr# 35"};
- { 10, "s2881", "2318", "=q1=Light Leather", "=ds=#sr# 1"};
- };
- {
- Name = DRAGONSCALE;
- { 1, "s24654", "20295", "=q3=Blue Dragonscale Leggings", "=ds=#sr# 300"};
- { 2, "s24655", "20296", "=q3=Green Dragonscale Gauntlets", "=ds=#sr# 280"};
- { 3, "s36076", "29971", "=q3=Dragonstrike Leggings", "=ds=#sr# 260"};
- { 4, "s10650", "8367", "=q3=Dragonscale Breastplate", "=ds=#sr# 255"};
- { 5, "s10619", "8347", "=q3=Dragonscale Gauntlets", "=ds=#sr# 225"};
- };
- {
- Name = ELEMENTAL;
- { 3, "s10630", "8346", "=q3=Gauntlets of the Sea", "=ds=#sr# 230"};
- { 2, "s10632", "8348", "=q3=Helm of Fire", "=ds=#sr# 250"};
- { 1, "s36074", "29964", "=q3=Blackstorm Leggings", "=ds=#sr# 260"};
- };
- {
- Name = TRIBAL;
- { 3, "s10621", "8345", "=q3=Wolfshead Helm", "=ds=#sr# 225"};
- { 2, "s10647", "8349", "=q3=Feathered Breastplate", "=ds=#sr# 250"};
- { 1, "s36075", "29970", "=q3=Wildfeather Leggings", "=ds=#sr# 260"};
- };
- };
-
- --------------
- --- Mining ---
- --------------
-
- AtlasLoot_Data["MiningCLASSIC"] = {
- Name = MINING;
- {
- Name = MINING;
- { 1, "s22967", "17771", "=q5=Smelt Elementium", "=ds=#sr# 300"};
- { 2, "s70524", "12655", "=q1=Enchanted Thorium", "=ds=#sr# 250"};
- { 3, "s16153", "12359", "=q1=Smelt Thorium", "=ds=#sr# 250"};
- { 4, "s14891", "11371", "=q1=Smelt Dark Iron", "=ds=#sr# 230"};
- { 5, "s10098", "6037", "=q2=Smelt Truesilver", "=ds=#sr# 230"};
- { 6, "s10097", "3860", "=q1=Smelt Mithril", "=ds=#sr# 175"};
- { 7, "s3569", "3859", "=q1=Smelt Steel", "=ds=#sr# 165"};
- { 8, "s3308", "3577", "=q2=Smelt Gold", "=ds=#sr# 155"};
- { 9, "s3307", "3575", "=q1=Smelt Iron", "=ds=#sr# 125"};
- { 10, "s2658", "2842", "=q2=Smelt Silver", "=ds=#sr# 75"};
- { 11, "s2659", "2841", "=q1=Smelt Bronze", "=ds=#sr# 65"};
- { 12, "s3304", "3576", "=q1=Smelt Tin", "=ds=#sr# 65"};
- { 13, "s2657", "2840", "=q1=Smelt Copper", "=ds=#sr# 1"};
- };
- };
-
- -----------------
- --- Tailoring ---
- -----------------
-
- AtlasLoot_Data["TailoringCLASSIC"] = {
- Name = TAILORING;
- Type = "Crafting";
- {
- Name = AL["Cloth Armor"].." - Back";
- { 1, "s28208", "22658", "=q4=Glacial Cloak", "=ds=#sr# 300"};
- { 2, "s22870", "18413", "=q3=Cloak of Warding", "=ds=#sr# 300"};
- { 3, "s23662", "19047", "=q3=Wisdom of the Timbermaw", "=ds=#sr# 290"};
- { 4, "s18422", "14134", "=q3=Cloak of Fire", "=ds=#sr# 275"};
- { 5, "s18409", "13860", "=q2=Runecloth Cloak", "=ds=#sr# 265"};
- { 6, "s3862", "4327", "=q3=Icy Cloak", "=ds=#sr# 200"};
- { 7, "s63742", "45626", "=q3=Spidersilk Drape", "=ds=#sr# 125"};
- { 8, "s18420", "14103", "=q2=Brightcloth Cloak", "=ds=#sr# 275"};
- { 9, "s18418", "14044", "=q2=Cindercloth Cloak", "=ds=#sr# 275"};
- { 10, "s3861", "4326", "=q2=Long Silken Cloak", "=ds=#sr# 185"};
- { 11, "s8789", "7056", "=q2=Crimson Silk Cloak", "=ds=#sr# 180"};
- { 12, "s8786", "7053", "=q2=Azure Silk Cloak", "=ds=#sr# 175"};
- { 13, "s8780", "7047", "=q2=Hands of Darkness", "=ds=#sr# 145"};
- { 14, "s3856", "4321", "=q2=Spider Silk Slippers", "=ds=#sr# 140"};
- { 15, "s3844", "4311", "=q2=Heavy Woolen Cloak", "=ds=#sr# 100"};
- { 16, "s6521", "5542", "=q2=Pearl-clasped Cloak", "=ds=#sr# 90"};
- { 17, "s3842", "4309", "=q2=Handstitched Linen Britches", "=ds=#sr# 70"};
- { 18, "s2402", "2584", "=q1=Woolen Cape", "=ds=#sr# 75"};
- { 19, "s2387", "2570", "=q1=Linen Cloak", "=ds=#sr# 1"};
- };
- {
- Name = AL["Cloth Armor"].." - Chest";
- { 1, "s23666", "19156", "=q4=Flarecore Robe", "=ds=#sr# 300"};
- { 2, "s28207", "22652", "=q4=Glacial Vest", "=ds=#sr# 300"};
- { 3, "s18457", "14152", "=q4=Robe of the Archmage", "=ds=#sr# 300"};
- { 4, "s18458", "14153", "=q4=Robe of the Void", "=ds=#sr# 300"};
- { 5, "s18456", "14154", "=q4=Truefaith Vestments", "=ds=#sr# 300"};
- { 6, "s24091", "19682", "=q3=Bloodvine Vest", "=ds=#sr# 300"};
- { 7, "s22902", "18486", "=q3=Mooncloth Robe", "=ds=#sr# 300"};
- { 8, "s18447", "14138", "=q3=Mooncloth Vest", "=ds=#sr# 300"};
- { 9, "s28480", "22756", "=q3=Sylvan Vest", "=ds=#sr# 300"};
- { 10, "s18436", "14136", "=q3=Robe of Winter Night", "=ds=#sr# 285"};
- { 11, "s12070", "10021", "=q3=Dreamweave Vest", "=ds=#sr# 225"};
- { 12, "s8770", "7054", "=q3=Robe of Power", "=ds=#sr# 190"};
- { 13, "s18451", "14106", "=q2=Felcloth Robe", "=ds=#sr# 300"};
- { 14, "s18446", "14128", "=q2=Wizardweave Robe", "=ds=#sr# 300"};
- { 15, "s18416", "14141", "=q2=Ghostweave Vest", "=ds=#sr# 275"};
- { 16, "s22813", "18258", "=q2=Gordok Ogre Suit", "=ds=#sr# 275"};
- { 17, "s18414", "14100", "=q2=Brightcloth Robe", "=ds=#sr# 270"};
- { 18, "s18408", "14042", "=q2=Cindercloth Vest", "=ds=#sr# 260"};
- { 19, "s18406", "13858", "=q2=Runecloth Robe", "=ds=#sr# 260"};
- { 20, "s18407", "13857", "=q2=Runecloth Tunic", "=ds=#sr# 260"};
- { 21, "s18404", "13868", "=q2=Frostweave Robe", "=ds=#sr# 255"};
- { 22, "s18403", "13869", "=q2=Frostweave Tunic", "=ds=#sr# 255"};
- { 23, "s26407", "21542", "=q1=Festive Red Pant Suit", "=ds=#sr# 250"};
- { 24, "s26403", "21154", "=q1=Festival Dress", "=ds=#sr# 250"};
- { 25, "s12093", "10036", "=q1=Tuxedo Jacket", "=ds=#sr# 250"};
- { 26, "s44950", "34087", "=q1=Green Winter Clothes", "=ds=#sr# 250"};
- { 27, "s44958", "34085", "=q1=Red Winter Clothes", "=ds=#sr# 250"};
- { 28, "s12091", "10040", "=q1=White Wedding Dress", "=ds=#sr# 250"};
- { 29, "s12077", "10053", "=q1=Simple Black Dress", "=ds=#sr# 235"};
- { 30, "s12069", "10042", "=q2=Cindercloth Robe", "=ds=#sr# 225"};
- };
- {
- Name = AL["Cloth Armor"].." - Chest";
- { 1, "s12056", "10007", "=q2=Red Mageweave Vest", "=ds=#sr# 215"};
- { 2, "s12055", "10004", "=q2=Shadoweave Robe", "=ds=#sr# 215"};
- { 3, "s12050", "10001", "=q2=Black Mageweave Robe", "=ds=#sr# 210"};
- { 4, "s12048", "9998", "=q2=Black Mageweave Vest", "=ds=#sr# 205"};
- { 5, "s8802", "7063", "=q2=Crimson Silk Robe", "=ds=#sr# 205"};
- { 6, "s8791", "7058", "=q1=Crimson Silk Vest", "=ds=#sr# 185"};
- { 7, "s8764", "7051", "=q2=Earthen Vest", "=ds=#sr# 170"};
- { 8, "s8784", "7065", "=q2=Green Silk Armor", "=ds=#sr# 165"};
- { 9, "s3859", "4324", "=q2=Azure Silk Vest", "=ds=#sr# 150"};
- { 10, "s6692", "5770", "=q2=Robes of Arcana", "=ds=#sr# 150"};
- { 11, "s6690", "5766", "=q2=Lesser Wizard's Robe", "=ds=#sr# 135"};
- { 12, "s12047", "10048", "=q2=Colorful Kilt", "=ds=#sr# 120"};
- { 13, "s7643", "6264", "=q2=Greater Adept's Robe", "=ds=#sr# 115"};
- { 14, "s8467", "6787", "=q1=White Woolen Dress", "=ds=#sr# 110"};
- { 15, "s2403", "2585", "=q2=Gray Woolen Robe", "=ds=#sr# 105"};
- { 16, "s7639", "6263", "=q2=Blue Overalls", "=ds=#sr# 100"};
- { 17, "s2399", "2582", "=q1=Green Woolen Vest", "=ds=#sr# 85"};
- { 18, "s12046", "10047", "=q1=Simple Kilt", "=ds=#sr# 75"};
- { 19, "s2395", "2578", "=q2=Barbaric Linen Vest", "=ds=#sr# 70"};
- { 20, "s7633", "6242", "=q2=Blue Linen Robe", "=ds=#sr# 70"};
- { 21, "s7630", "6240", "=q2=Blue Linen Vest", "=ds=#sr# 55"};
- { 22, "s7629", "6239", "=q2=Red Linen Vest", "=ds=#sr# 55"};
- { 23, "s8465", "6786", "=q1=Simple Dress", "=ds=#sr# 40"};
- { 24, "s2389", "2572", "=q2=Red Linen Robe", "=ds=#sr# 40"};
- { 25, "s7623", "6238", "=q2=Brown Linen Robe", "=ds=#sr# 30"};
- { 26, "s7624", "6241", "=q2=White Linen Robe", "=ds=#sr# 30"};
- { 27, "s2385", "2568", "=q1=Brown Linen Vest", "=ds=#sr# 10"};
- { 28, "s50644", "38277", "=q1=Haliscan Jacket", "=ds="..AL["Vendor"]..""};
- };
- {
- Name = AL["Cloth Armor"].." - Feet";
- { 1, "s24093", "19684", "=q3=Bloodvine Boots", "=ds=#sr# 300"};
- { 2, "s24903", "20537", "=q3=Runed Stygian Boots", "=ds=#sr# 300"};
- { 3, "s19435", "15802", "=q3=Mooncloth Boots", "=ds=#sr# 290"};
- { 4, "s23664", "19056", "=q3=Argent Boots", "=ds=#sr# 290"};
- { 5, "s18437", "14108", "=q2=Felcloth Boots", "=ds=#sr# 285"};
- { 6, "s18423", "13864", "=q2=Runecloth Boots", "=ds=#sr# 280"};
- { 7, "s12088", "10044", "=q2=Cindercloth Boots", "=ds=#sr# 245"};
- { 8, "s12082", "10031", "=q2=Shadoweave Boots", "=ds=#sr# 240"};
- { 9, "s12073", "10026", "=q2=Black Mageweave Boots", "=ds=#sr# 230"};
- { 10, "s3860", "4325", "=q2=Boots of the Enchanter", "=ds=#sr# 175"};
- { 11, "s3855", "4320", "=q3=Spidersilk Boots", "=ds=#sr# 125"};
- { 12, "s3847", "4313", "=q2=Red Woolen Boots", "=ds=#sr# 95"};
- { 13, "s2401", "2583", "=q2=Woolen Boots", "=ds=#sr# 95"};
- { 14, "s3845", "4312", "=q2=Soft-soled Linen Boots", "=ds=#sr# 80"};
- { 15, "s2386", "2569", "=q1=Linen Boots", "=ds=#sr# 65"};
- { 16, "s12045", "10046", "=q1=Simple Linen Boots", "=ds=#sr# 20"};
- { 17, "s49677", "6836", "=q1=Dress Shoes", "=ds="..AL["Vendor"]..""};
- };
- {
- Name = AL["Cloth Armor"].." - Hands";
- { 1, "s22759", "18263", "=q4=Flarecore Wraps", "=ds=#sr# 300"};
- { 2, "s20849", "16979", "=q4=Flarecore Gloves", "=ds=#sr# 300"};
- { 3, "s28205", "22654", "=q4=Glacial Gloves", "=ds=#sr# 300"};
- { 4, "s18454", "14146", "=q4=Gloves of Spell Mastery", "=ds=#sr# 300"};
- { 5, "s22867", "18407", "=q3=Felcloth Gloves", "=ds=#sr# 300"};
- { 6, "s22868", "18408", "=q3=Inferno Gloves", "=ds=#sr# 300"};
- { 7, "s22869", "18409", "=q3=Mooncloth Gloves", "=ds=#sr# 300"};
- { 8, "s12067", "10019", "=q3=Dreamweave Gloves", "=ds=#sr# 225"};
- { 9, "s18417", "13863", "=q2=Runecloth Gloves", "=ds=#sr# 275"};
- { 10, "s18415", "14101", "=q2=Brightcloth Gloves", "=ds=#sr# 270"};
- { 11, "s18412", "14043", "=q2=Cindercloth Gloves", "=ds=#sr# 270"};
- { 12, "s18413", "14142", "=q2=Ghostweave Gloves", "=ds=#sr# 270"};
- { 13, "s18411", "13870", "=q2=Frostweave Gloves", "=ds=#sr# 265"};
- { 14, "s12066", "10018", "=q2=Red Mageweave Gloves", "=ds=#sr# 225"};
- { 15, "s12071", "10023", "=q2=Shadoweave Gloves", "=ds=#sr# 225"};
- { 16, "s12053", "10003", "=q2=Black Mageweave Gloves", "=ds=#sr# 215"};
- { 17, "s8804", "7064", "=q2=Crimson Silk Gloves", "=ds=#sr# 210"};
- { 18, "s8782", "7049", "=q2=Truefaith Gloves", "=ds=#sr# 150"};
- { 19, "s3854", "4319", "=q2=Azure Silk Gloves", "=ds=#sr# 145"};
- { 20, "s3852", "4318", "=q2=Gloves of Meditation", "=ds=#sr# 130"};
- { 21, "s3868", "4331", "=q2=Phoenix Gloves", "=ds=#sr# 125"};
- { 22, "s3843", "4310", "=q2=Heavy Woolen Gloves", "=ds=#sr# 85"};
- { 23, "s3840", "4307", "=q1=Heavy Linen Gloves", "=ds=#sr# 35"};
- };
- {
- Name = AL["Cloth Armor"].." - Head";
- { 1, "s28210", "22660", "=q3=Gaea's Embrace", "=ds=#sr# 300"};
- { 2, "s18452", "14140", "=q3=Mooncloth Circlet", "=ds=#sr# 300"};
- { 3, "s28481", "22757", "=q3=Sylvan Crown", "=ds=#sr# 300"};
- { 4, "s18450", "14130", "=q2=Wizardweave Turban", "=ds=#sr# 300"};
- { 5, "s12092", "10041", "=q3=Dreamweave Circlet", "=ds=#sr# 250"};
- { 6, "s18442", "14111", "=q2=Felcloth Hood", "=ds=#sr# 290"};
- { 7, "s18444", "13866", "=q2=Runecloth Headband", "=ds=#sr# 295"};
- { 8, "s12086", "10025", "=q2=Shadoweave Mask", "=ds=#sr# 245"};
- { 9, "s12081", "10030", "=q2=Admiral's Hat", "=ds=#sr# 240"};
- { 10, "s12084", "10033", "=q2=Red Mageweave Headband", "=ds=#sr# 240"};
- { 11, "s12072", "10024", "=q2=Black Mageweave Headband", "=ds=#sr# 230"};
- { 12, "s12059", "10008", "=q2=White Bandit Mask", "=ds=#sr# 215"};
- { 13, "s3858", "4323", "=q2=Shadow Hood", "=ds=#sr# 170"};
- { 14, "s3857", "4322", "=q2=Enchanter's Cowl", "=ds=#sr# 165"};
- { 15, "s8762", "7050", "=q1=Silk Headband", "=ds=#sr# 160"};
- { 16, "s8760", "7048", "=q1=Azure Silk Hood", "=ds=#sr# 145"};
- { 17, "s2397", "2580", "=q1=Reinforced Linen Cape", "=ds=#sr# 60"};
-
- };
- {
- Name = AL["Cloth Armor"].." - Legs";
- { 1, "s23667", "19165", "=q4=Flarecore Leggings", "=ds=#sr# 300"};
- { 2, "s24092", "19683", "=q3=Bloodvine Leggings", "=ds=#sr# 300"};
- { 3, "s24901", "20538", "=q3=Runed Stygian Leggings", "=ds=#sr# 300"};
- { 4, "s18440", "14137", "=q3=Mooncloth Leggings", "=ds=#sr# 290"};
- { 5, "s18439", "14104", "=q2=Brightcloth Pants", "=ds=#sr# 290"};
- { 6, "s18441", "14144", "=q2=Ghostweave Pants", "=ds=#sr# 290"};
- { 7, "s18438", "13865", "=q2=Runecloth Pants", "=ds=#sr# 285"};
- { 8, "s18434", "14045", "=q2=Cindercloth Pants", "=ds=#sr# 280"};
- { 9, "s18424", "13871", "=q2=Frostweave Pants", "=ds=#sr# 280"};
- { 10, "s18419", "14107", "=q2=Felcloth Pants", "=ds=#sr# 275"};
- { 11, "s18421", "14132", "=q2=Wizardweave Leggings", "=ds=#sr# 275"};
- { 12, "s50647", "38278", "=q1=Haliscan Pantaloons", "=ds="..AL["Vendor"]..""};
- { 13, "s12060", "10009", "=q2=Red Mageweave Pants", "=ds=#sr# 215"};
- { 14, "s12052", "10002", "=q2=Shadoweave Pants", "=ds=#sr# 210"};
- { 15, "s12049", "9999", "=q2=Black Mageweave Leggings", "=ds=#sr# 205"};
- { 16, "s8758", "7046", "=q2=Azure Silk Pants", "=ds=#sr# 140"};
- { 17, "s3851", "4317", "=q2=Phoenix Pants", "=ds=#sr# 125"};
- { 18, "s3850", "4316", "=q2=Heavy Woolen Pants", "=ds=#sr# 110"};
- { 19, "s12089", "10035", "=q1=Tuxedo Pants", "=ds=#sr# 245"};
- { 20, "s3914", "4343", "=q1=Brown Linen Pants", "=ds=#sr# 30"};
- { 21, "s12044", "10045", "=q1=Simple Linen Pants", "=ds=#sr# 1"};
-
- };
- {
- Name = AL["Cloth Armor"].." - Shoulder";
- { 1, "s20848", "16980", "=q4=Flarecore Mantle", "=ds=#sr# 300"};
- { 2, "s23665", "19059", "=q3=Argent Shoulders", "=ds=#sr# 300"};
- { 3, "s23663", "19050", "=q3=Mantle of the Timbermaw", "=ds=#sr# 300"};
- { 4, "s18448", "14139", "=q3=Mooncloth Shoulders", "=ds=#sr# 300"};
- { 5, "s28482", "22758", "=q3=Sylvan Shoulders", "=ds=#sr# 300"};
- { 6, "s18453", "14112", "=q2=Felcloth Shoulders", "=ds=#sr# 300"};
- { 7, "s18449", "13867", "=q2=Runecloth Shoulders", "=ds=#sr# 300"};
- { 8, "s12078", "10029", "=q2=Red Mageweave Shoulders", "=ds=#sr# 235"};
- { 9, "s12076", "10028", "=q2=Shadoweave Shoulders", "=ds=#sr# 235"};
- { 10, "s12074", "10027", "=q2=Black Mageweave Shoulders", "=ds=#sr# 230"};
- { 11, "s8799", "7062", "=q1=Crimson Silk Pantaloons", "=ds=#sr# 195"};
- { 12, "s8795", "7060", "=q2=Azure Shoulders", "=ds=#sr# 190"};
- { 13, "s8793", "7059", "=q2=Crimson Silk Shoulders", "=ds=#sr# 190"};
- { 14, "s8774", "7057", "=q2=Green Silken Shoulders", "=ds=#sr# 180"};
- { 15, "s3849", "4315", "=q1=Reinforced Woolen Shoulders", "=ds=#sr# 120"};
- { 16, "s3848", "4314", "=q1=Double-stitched Woolen Shoulders", "=ds=#sr# 110"};
- };
- {
- Name = AL["Cloth Armor"].." - Waist";
- { 1, "s22866", "18405", "=q4=Belt of the Archmage", "=ds=#sr# 300"};
- { 2, "s24902", "20539", "=q3=Runed Stygian Belt", "=ds=#sr# 300"};
- { 3, "s18410", "14143", "=q2=Ghostweave Belt", "=ds=#sr# 265"};
- { 4, "s18402", "13856", "=q2=Runecloth Belt", "=ds=#sr# 255"};
- { 5, "s3864", "4329", "=q2=Star Belt", "=ds=#sr# 200"};
- { 6, "s8797", "7061", "=q2=Earthen Silk Belt", "=ds=#sr# 195"};
- { 7, "s3863", "4328", "=q2=Spider Belt", "=ds=#sr# 180"};
- { 8, "s8766", "7052", "=q2=Azure Silk Belt", "=ds=#sr# 175"};
- { 9, "s8772", "7055", "=q2=Crimson Silk Belt", "=ds=#sr# 175"};
- { 10, "s8776", "7026", "=q1=Linen Belt", "=ds=#sr# 15"};
- };
- {
- Name = AL["Cloth Armor"].." - Wrist";
- { 1, "s28209", "22655", "=q4=Glacial Wrists", "=ds=#sr# 300"};
- { 2, "s3841", "4308", "=q1=Green Linen Bracers", "=ds=#sr# 60"};
- };
- {
- Name = AL["Bags"];
- { 1, "s26087", "21342", "=q4=Core Felcloth Bag", "=ds=#sr# 300"};
- { 2, "s18455", "14156", "=q3=Bottomless Bag", "=ds=#sr# 300"};
- { 3, "s26086", "21341", "=q3=Felcloth Bag", "=ds=#sr# 280"};
- { 4, "s27660", "22249", "=q2=Big Bag of Enchantment", "=ds=#sr# 300"};
- { 5, "s18445", "14155", "=q2=Mooncloth Bag", "=ds=#sr# 300"};
- { 6, "s27725", "22252", "=q2=Satchel of Cenarius", "=ds=#sr# 300"};
- { 7, "s27659", "22248", "=q2=Enchanted Runecloth Bag", "=ds=#sr# 275"};
- { 8, "s27724", "22251", "=q2=Cenarion Herb Bag", "=ds=#sr# 275"};
- { 9, "s26085", "21340", "=q2=Soul Pouch", "=ds=#sr# 260"};
- { 10, "s27658", "22246", "=q2=Enchanted Mageweave Pouch", "=ds=#sr# 225"};
- { 11, "s18405", "14046", "=q1=Runecloth Bag", "=ds=#sr# 260"};
- { 12, "s12079", "10051", "=q1=Red Mageweave Bag", "=ds=#sr# 235"};
- { 13, "s12065", "10050", "=q1=Mageweave Bag", "=ds=#sr# 225"};
- { 14, "s6695", "5765", "=q1=Black Silk Pack", "=ds=#sr# 185"};
- { 15, "s6693", "5764", "=q1=Green Silk Pack", "=ds=#sr# 175"};
- { 16, "s3813", "4245", "=q1=Small Silk Pack", "=ds=#sr# 150"};
- { 17, "s6688", "5763", "=q1=Red Woolen Bag", "=ds=#sr# 115"};
- { 18, "s3758", "4241", "=q1=Green Woolen Bag", "=ds=#sr# 95"};
- { 19, "s3757", "4240", "=q1=Woolen Bag", "=ds=#sr# 80"};
- { 20, "s6686", "5762", "=q1=Red Linen Bag", "=ds=#sr# 70"};
- { 21, "s3755", "4238", "=q1=Linen Bag", "=ds=#sr# 45"};
- };
- {
- Name = AL["Miscellaneous"];
- { 1, "s18560", "14342", "=q1=Mooncloth", "=ds=#sr# 250"};
- { 2, "s18401", "14048", "=q1=Bolt of Runecloth", "=ds=#sr# 250"};
- { 3, "s3865", "4339", "=q1=Bolt of Mageweave", "=ds=#sr# 175"};
- { 4, "s3839", "4305", "=q1=Bolt of Silk Cloth", "=ds=#sr# 125"};
- { 5, "s2964", "2997", "=q1=Bolt of Woolen Cloth", "=ds=#sr# 75"};
- { 6, "s2963", "2996", "=q1=Bolt of Linen Cloth", "=ds=#sr# 1"};
- };
- {
- Name = AL["Shirts"];
- { 1, "s12085", "10034", "=q1=Tuxedo Shirt", "=ds=#sr# 240"};
- { 2, "s12080", "10055", "=q1=Pink Mageweave Shirt", "=ds=#sr# 235"};
- { 3, "s12075", "10054", "=q1=Lavender Mageweave Shirt", "=ds=#sr# 230"};
- { 4, "s12064", "10052", "=q1=Orange Martial Shirt", "=ds=#sr# 220"};
- { 5, "s12061", "10056", "=q1=Orange Mageweave Shirt", "=ds=#sr# 215"};
- { 6, "s3873", "4336", "=q1=Black Swashbuckler's Shirt", "=ds=#sr# 200"};
- { 7, "s21945", "17723", "=q1=Green Holiday Shirt", "=ds=#sr# 190"};
- { 8, "s3872", "4335", "=q1=Rich Purple Silk Shirt", "=ds=#sr# 185"};
- { 9, "s8489", "6796", "=q1=Red Swashbuckler's Shirt", "=ds=#sr# 175"};
- { 10, "s3871", "4334", "=q1=Formal White Shirt", "=ds=#sr# 170"};
- { 11, "s8483", "6795", "=q1=White Swashbuckler's Shirt", "=ds=#sr# 160"};
- { 12, "s3870", "4333", "=q1=Dark Silk Shirt", "=ds=#sr# 155"};
- { 13, "s3869", "4332", "=q1=Bright Yellow Shirt", "=ds=#sr# 135"};
- { 14, "s7892", "6384", "=q1=Stylish Blue Shirt", "=ds=#sr# 120"};
- { 15, "s7893", "6385", "=q1=Stylish Green Shirt", "=ds=#sr# 120"};
- { 16, "s3866", "4330", "=q1=Stylish Red Shirt", "=ds=#sr# 110"};
- { 17, "s2406", "2587", "=q1=Gray Woolen Shirt", "=ds=#sr# 100"};
- { 18, "s2396", "2579", "=q1=Green Linen Shirt", "=ds=#sr# 70"};
- { 19, "s2394", "2577", "=q1=Blue Linen Shirt", "=ds=#sr# 40"};
- { 20, "s2392", "2575", "=q1=Red Linen Shirt", "=ds=#sr# 40"};
- { 21, "s2393", "2576", "=q1=White Linen Shirt", "=ds=#sr# 1"};
- { 22, "s3915", "4344", "=q1=Brown Linen Shirt", "=ds=#sr# 1"};
- };
- };
-
- -----------------------
- --- Profession Sets ---
- -----------------------
-
- -------------------------------
- --- Blacksmithing Mail Sets ---
- -------------------------------
-
- AtlasLoot_Data["BlacksmithingMailBloodsoulEmbrace"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbm1#", ""};
- { 2, 19691, "", "=q3=Bloodsoul Shoulders", "=ds=#s3#, #a3#"};
- { 3, 19690, "", "=q3=Bloodsoul Breastplate", "=ds=#s5#, #a3#"};
- { 4, 19692, "", "=q3=Bloodsoul Gauntlets", "=ds=#s9#, #a3#"};
- };
-
- AtlasLoot_Data["BlacksmithingMailFelIronChain"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbm2#", ""};
- { 2, 23493, "", "=q2=Fel Iron Chain Coif", "=ds=#s1#, #a3#"};
- { 3, 23490, "", "=q2=Fel Iron Chain Tunic", "=ds=#s5#, #a3#"};
- { 4, 23494, "", "=q2=Fel Iron Chain Bracers", "=ds=#s8#, #a3#"};
- { 5, 23491, "", "=q2=Fel Iron Chain Gloves", "=ds=#s9#, #a3#"};
- };
-
- --------------------------------
- --- Blacksmithing Plate Sets ---
- --------------------------------
-
- AtlasLoot_Data["BlacksmithingPlateImperialPlate"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp1#", ""};
- { 2, 12427, "", "=q2=Imperial Plate Helm", "=ds=#s1#, #a4#"};
- { 3, 12428, "", "=q2=Imperial Plate Shoulders", "=ds=#s3#, #a4#"};
- { 4, 12422, "", "=q2=Imperial Plate Chest", "=ds=#s5#, #a4#"};
- { 5, 12425, "", "=q2=Imperial Plate Bracers", "=ds=#s8#, #a4#"};
- { 6, 12424, "", "=q2=Imperial Plate Belt", "=ds=#s10#, #a4#"};
- { 7, 12429, "", "=q2=Imperial Plate Leggings", "=ds=#s11#, #a4#"};
- { 8, 12426, "", "=q2=Imperial Plate Boots", "=ds=#s12#, #a4#"};
- };
-
- AtlasLoot_Data["BlacksmithingPlateTheDarksoul"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp2#", ""};
- { 2, 19695, "", "=q3=Darksoul Shoulders", "=ds=#s3#, #a4#"};
- { 3, 19693, "", "=q3=Darksoul Breastplate", "=ds=#s5#, #a4#"};
- { 4, 19694, "", "=q3=Darksoul Leggings", "=ds=#s11#, #a4#"};
- };
-
- AtlasLoot_Data["BlacksmithingPlateFelIronPlate"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp3#", ""};
- { 2, 23489, "", "=q2=Fel Iron Breastplate", "=ds=#s5#, #a4#"};
- { 3, 23482, "", "=q2=Fel Iron Plate Gloves", "=ds=#s9#, #a4#"};
- { 4, 23484, "", "=q2=Fel Iron Plate Belt", "=ds=#s10#, #a4#"};
- { 5, 23488, "", "=q2=Fel Iron Plate Pants", "=ds=#s11#, #a4#"};
- { 6, 23487, "", "=q2=Fel Iron Plate Boots", "=ds=#s12#, #a4#"};
- };
-
- AtlasLoot_Data["BlacksmithingPlateAdamantiteB"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp4#", ""};
- { 2, 23507, "", "=q3=Adamantite Breastplate", "=ds=#s5#, #a4#"};
- { 3, 23506, "", "=q3=Adamantite Plate Bracers", "=ds=#s8#, #a4#"};
- { 4, 23508, "", "=q3=Adamantite Plate Gloves", "=ds=#s9#, #a4#"};
- };
-
- AtlasLoot_Data["BlacksmithingPlateFlameG"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp5#", "=q1=#j11#"};
- { 2, 23516, "", "=q3=Flamebane Helm", "=ds=#s1#, #a4#"};
- { 3, 23513, "", "=q3=Flamebane Breastplate", "=ds=#s5#, #a4#"};
- { 4, 23515, "", "=q3=Flamebane Bracers", "=ds=#s8#, #a4#"};
- { 5, 23514, "", "=q3=Flamebane Gloves", "=ds=#s9#, #a4#"};
- };
-
- AtlasLoot_Data["BlacksmithingPlateEnchantedAdaman"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp6#", "=q1=#j12#"};
- { 2, 23509, "", "=q3=Enchanted Adamantite Breastplate", "=ds=#s5#, #a4#"};
- { 3, 23510, "", "=q3=Enchanted Adamantite Belt", "=ds=#s10#, #a4#"};
- { 4, 23512, "", "=q3=Enchanted Adamantite Leggings", "=ds=#s11#, #a4#"};
- { 5, 23511, "", "=q3=Enchanted Adamantite Boots", "=ds=#s12#, #a4#"};
- };
-
- AtlasLoot_Data["BlacksmithingPlateKhoriumWard"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp7#", ""};
- { 2, 23524, "", "=q3=Khorium Belt", "=ds=#s10#, #a4#"};
- { 3, 23523, "", "=q3=Khorium Pants", "=ds=#s11#, #a4#"};
- { 4, 23525, "", "=q3=Khorium Boots", "=ds=#s12#, #a4#"};
- };
-
- AtlasLoot_Data["BlacksmithingPlateFaithFelsteel"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp8#", ""};
- { 2, 23519, "", "=q3=Felsteel Helm", "=ds=#s1#, #a4#"};
- { 3, 23517, "", "=q3=Felsteel Gloves", "=ds=#s9#, #a4#"};
- { 4, 23518, "", "=q3=Felsteel Leggings", "=ds=#s11#, #a4#"};
- };
-
- AtlasLoot_Data["BlacksmithingPlateBurningRage"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp9#", ""};
- { 2, 23521, "", "=q3=Ragesteel Helm", "=ds=#s1#, #a4#"};
- { 3, 33173, "", "=q3=Ragesteel Shoulders", "=ds=#s3#, #a4#"};
- { 4, 23522, "", "=q3=Ragesteel Breastplate", "=ds=#s5#, #a4#"};
- { 5, 23520, "", "=q3=Ragesteel Gloves", "=ds=#s9#, #a4#"};
- };
-
- AtlasLoot_Data["BlacksmithingPlateOrnateSaroniteBattlegear"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp10#", ""};
- { 2, 42728, "", "=q3=Ornate Saronite Skullshield", "=ds=#s1#, #a4#"};
- { 3, 42727, "", "=q3=Ornate Saronite Pauldrons", "=ds=#s3#, #a4#"};
- { 4, 42725, "", "=q3=Ornate Saronite Hauberk", "=ds=#s5#, #a4#"};
- { 5, 42723, "", "=q3=Ornate Saronite Bracers", "=ds=#s8#, #a4#"};
- { 6, 42724, "", "=q3=Ornate Saronite Gauntlets", "=ds=#s9#, #a4#"};
- { 7, 42729, "", "=q3=Ornate Saronite Waistguard", "=ds=#s10#, #a4#"};
- { 8, 42726, "", "=q3=Ornate Saronite Legplates", "=ds=#s11#, #a4#"};
- { 9, 42730, "", "=q3=Ornate Saronite Walkers", "=ds=#s12#, #a4#"};
- };
-
- AtlasLoot_Data["BlacksmithingPlateSavageSaroniteBattlegear"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp11#", ""};
- { 2, 41350, "", "=q3=Savage Saronite Skullshield", "=ds=#s1#, #a4#"};
- { 3, 41351, "", "=q3=Savage Saronite Pauldrons", "=ds=#s3#, #a4#"};
- { 4, 41353, "", "=q3=Savage Saronite Hauberk", "=ds=#s5#, #a4#"};
- { 5, 41354, "", "=q3=Savage Saronite Bracers", "=ds=#s8#, #a4#"};
- { 6, 41349, "", "=q3=Savage Saronite Gauntlets", "=ds=#s9#, #a4#"};
- { 7, 41352, "", "=q3=Savage Saronite Waistguard", "=ds=#s10#, #a4#"};
- { 8, 41347, "", "=q3=Savage Saronite Legplates", "=ds=#s11#, #a4#"};
- { 9, 41348, "", "=q3=Savage Saronite Walkers", "=ds=#s12#, #a4#"};
- };
-
- -----------------------------------
- --- Leatherworking Leather Sets ---
- -----------------------------------
-
- AtlasLoot_Data["LeatherworkingLeatherVolcanicArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl1#", "=q1=#j11#"};
- { 2, 15055, "", "=q2=Volcanic Shoulders", "=ds=#s3#, #a2#"};
- { 3, 15053, "", "=q2=Volcanic Breastplate", "=ds=#s5#, #a2#"};
- { 4, 15054, "", "=q2=Volcanic Leggings", "=ds=#s11#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherIronfeatherArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl2#", ""};
- { 2, 15067, "", "=q3=Ironfeather Shoulders", "=ds=#s3#, #a2#"};
- { 3, 15066, "", "=q3=Ironfeather Breastplate", "=ds=#s5#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherStormshroudArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl3#", ""};
- { 2, 15058, "", "=q3=Stormshroud Shoulders", "=ds=#s3#, #a2#"};
- { 3, 15056, "", "=q3=Stormshroud Armor", "=ds=#s5#, #a2#"};
- { 4, 21278, "", "=q3=Stormshroud Gloves", "=ds=#s9#, #a2#"};
- { 5, 15057, "", "=q3=Stormshroud Pants", "=ds=#s11#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherDevilsaurArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl4#", ""};
- { 2, 15063, "", "=q3=Devilsaur Gauntlets", "=ds=#s9#, #a2#"};
- { 3, 15062, "", "=q3=Devilsaur Leggings", "=ds=#s11#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherBloodTigerH"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl5#", ""};
- { 2, 19689, "", "=q3=Blood Tiger Shoulders", "=ds=#s3#, #a2#"};
- { 3, 19688, "", "=q3=Blood Tiger Breastplate", "=ds=#s5#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherPrimalBatskin"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl6#", ""};
- { 2, 19685, "", "=q3=Primal Batskin Jerkin", "=ds=#s5#, #a2#"};
- { 3, 19687, "", "=q3=Primal Batskin Bracers", "=ds=#s8#, #a2#"};
- { 4, 19686, "", "=q3=Primal Batskin Gloves", "=ds=#s9#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherWildDraenishA"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl7#", ""};
- { 2, 25676, "", "=q2=Wild Draenish Vest", "=ds=#s5#, #a2#"};
- { 3, 25674, "", "=q2=Wild Draenish Gloves", "=ds=#s9#, #a2#"};
- { 4, 25675, "", "=q2=Wild Draenish Leggings", "=ds=#s11#, #a2#"};
- { 5, 25673, "", "=q2=Wild Draenish Boots", "=ds=#s12#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherThickDraenicA"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl8#", ""};
- { 2, 25671, "", "=q2=Thick Draenic Vest", "=ds=#s5#, #a2#"};
- { 3, 25669, "", "=q2=Thick Draenic Gloves", "=ds=#s9#, #a2#"};
- { 4, 25670, "", "=q2=Thick Draenic Pants", "=ds=#s11#, #a2#"};
- { 5, 25668, "", "=q2=Thick Draenic Boots", "=ds=#s12#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherFelSkin"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl9#", ""};
- { 2, 25685, "", "=q3=Fel Leather Gloves", "=ds=#s9#, #a2#"};
- { 3, 25687, "", "=q3=Fel Leather Leggings", "=ds=#s11#, #a2#"};
- { 4, 25686, "", "=q3=Fel Leather Boots", "=ds=#s12#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherSClefthoof"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl10#", ""};
- { 2, 25689, "", "=q3=Heavy Clefthoof Vest", "=ds=#s5#, #a2#"};
- { 3, 25690, "", "=q3=Heavy Clefthoof Leggings", "=ds=#s11#, #a2#"};
- { 4, 25691, "", "=q3=Heavy Clefthoof Boots", "=ds=#s12#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherPrimalIntent"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwe1#", "=q1=#p11#"};
- { 2, 29525, "", "=q4=Primalstrike Vest", "=ds=#s5#, #a2#"};
- { 3, 29527, "", "=q4=Primalstrike Bracers", "=ds=#s8#, #a2#"};
- { 4, 29526, "", "=q4=Primalstrike Belt", "=ds=#s10#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherWindhawkArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwt1#", "=q1=#p10#"};
- { 2, 29522, "", "=q4=Windhawk Hauberk", "=ds=#s5#, #a2#"};
- { 3, 29523, "", "=q4=Windhawk Bracers", "=ds=#s8#, #a2#"};
- { 4, 29524, "", "=q4=Windhawk Belt", "=ds=#s10#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherBoreanEmbrace"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl11#", ""};
- { 2, 38437, "", "=q2=Arctic Helm", "=ds=#s1#, #a2#"};
- { 3, 38402, "", "=q2=Arctic Shoulderpads", "=ds=#s3#, #a2#"};
- { 4, 38400, "", "=q2=Arctic Chestpiece", "=ds=#s5#, #a2#"};
- { 5, 38433, "", "=q2=Arctic Wristguards", "=ds=#s8#, #a2#"};
- { 6, 38403, "", "=q2=Arctic Gloves", "=ds=#s9#, #a2#"};
- { 7, 38405, "", "=q2=Arctic Belt", "=ds=#s10#, #a2#"};
- { 8, 38401, "", "=q2=Arctic Leggings", "=ds=#s11#, #a2#"};
- { 9, 38404, "", "=q2=Arctic Boots", "=ds=#s12#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherIceborneEmbrace"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl12#", ""};
- { 2, 38438, "", "=q2=Iceborne Helm", "=ds=#s1#, #a2#"};
- { 3, 38411, "", "=q2=Iceborne Shoulderpads", "=ds=#s3#, #a2#"};
- { 4, 38408, "", "=q2=Iceborne Chestguard", "=ds=#s5#, #a2#"};
- { 5, 38434, "", "=q2=Iceborne Wristguards", "=ds=#s8#, #a2#"};
- { 6, 38409, "", "=q2=Iceborne Gloves", "=ds=#s9#, #a2#"};
- { 7, 38406, "", "=q2=Iceborne Belt", "=ds=#s10#, #a2#"};
- { 8, 38410, "", "=q2=Iceborne Leggings", "=ds=#s11#, #a2#"};
- { 9, 38407, "", "=q2=Iceborne Boots", "=ds=#s12#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherEvisceratorBattlegear"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl13#", ""};
- { 2, 43260, "", "=q3=Eviscerator's Facemask", "=ds=#s1#, #a2#"};
- { 3, 43433, "", "=q3=Eviscerator's Shoulderpads", "=ds=#s3#, #a2#"};
- { 4, 43434, "", "=q3=Eviscerator's Chestguard", "=ds=#s5#, #a2#"};
- { 5, 43435, "", "=q3=Eviscerator's Bindings", "=ds=#s8#, #a2#"};
- { 6, 43436, "", "=q3=Eviscerator's Gauntlets", "=ds=#s9#, #a2#"};
- { 7, 43437, "", "=q3=Eviscerator's Waistguard", "=ds=#s10#, #a2#"};
- { 8, 43438, "", "=q3=Eviscerator's Legguards", "=ds=#s11#, #a2#"};
- { 9, 43439, "", "=q3=Eviscerator's Treads", "=ds=#s12#, #a2#"};
- };
-
- AtlasLoot_Data["LeatherworkingLeatherOvercasterBattlegear"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl14#", ""};
- { 2, 43261, "", "=q3=Overcast Headguard", "=ds=#s1#, #a2#"};
- { 3, 43262, "", "=q3=Overcast Spaulders", "=ds=#s3#, #a2#"};
- { 4, 43263, "", "=q3=Overcast Chestguard", "=ds=#s5#, #a2#"};
- { 5, 43264, "", "=q3=Overcast Bracers", "=ds=#s8#, #a2#"};
- { 6, 43265, "", "=q3=Overcast Handwraps", "=ds=#s9#, #a2#"};
- { 7, 43266, "", "=q3=Overcast Belt", "=ds=#s10#, #a2#"};
- { 8, 43271, "", "=q3=Overcast Leggings", "=ds=#s11#, #a2#"};
- { 9, 43273, "", "=q3=Overcast Boots", "=ds=#s12#, #a2#"};
- };
-
- --------------------------------
- --- Leatherworking Mail Sets ---
- --------------------------------
-
- AtlasLoot_Data["LeatherworkingMailGreenDragonM"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm1#", "=q1=#j13#"};
- { 2, 15045, "", "=q3=Green Dragonscale Breastplate", "=ds=#s5#, #a3#"};
- { 3, 20296, "", "=q3=Green Dragonscale Gauntlets", "=ds=#s9#, #a3#"};
- { 4, 15046, "", "=q3=Green Dragonscale Leggings", "=ds=#s11#, #a3#"};
- };
-
- AtlasLoot_Data["LeatherworkingMailBlueDragonM"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm2#", "=q1=#j12#"};
- { 2, 15049, "", "=q3=Blue Dragonscale Shoulders", "=ds=#s3#, #a3#"};
- { 3, 15048, "", "=q3=Blue Dragonscale Breastplate", "=ds=#s5#, #a3#"};
- { 4, 20295, "", "=q3=Blue Dragonscale Leggings", "=ds=#s11#, #a3#"};
- };
-
- AtlasLoot_Data["LeatherworkingMailBlackDragonM"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm3#", "=q1=#j11#"};
- { 2, 15051, "", "=q3=Black Dragonscale Shoulders", "=ds=#s3#, #a3#"};
- { 3, 15050, "", "=q3=Black Dragonscale Breastplate", "=ds=#s5#, #a3#"};
- { 4, 15052, "", "=q3=Black Dragonscale Leggings", "=ds=#s11#, #a3#"};
- { 5, 16984, "", "=q4=Black Dragonscale Boots", "=ds=#s12#, #a3#"};
- };
-
- AtlasLoot_Data["LeatherworkingMailScaledDraenicA"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm4#", ""};
- { 2, 25660, "", "=q2=Scaled Draenic Vest", "=ds=#s5#, #a3#"};
- { 3, 25661, "", "=q2=Scaled Draenic Gloves", "=ds=#s9#, #a3#"};
- { 4, 25662, "", "=q2=Scaled Draenic Pants", "=ds=#s11#, #a3#"};
- { 5, 25659, "", "=q2=Scaled Draenic Boots", "=ds=#s12#, #a3#"};
- };
-
- AtlasLoot_Data["LeatherworkingMailFelscaleArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm5#", ""};
- { 2, 25657, "", "=q2=Felscale Breastplate", "=ds=#s5#, #a3#"};
- { 3, 25654, "", "=q2=Felscale Gloves", "=ds=#s9#, #a3#"};
- { 4, 25656, "", "=q2=Felscale Pants", "=ds=#s11#, #a3#"};
- { 5, 25655, "", "=q2=Felscale Boots", "=ds=#s12#, #a3#"};
- };
-
- AtlasLoot_Data["LeatherworkingMailFelstalkerArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm6#", ""};
- { 2, 25696, "", "=q3=Felstalker Breastplate", "=ds=#s5#, #a3#"};
- { 3, 25697, "", "=q3=Felstalker Bracers", "=ds=#s8#, #a3#"};
- { 4, 25695, "", "=q3=Felstalker Belt", "=ds=#s10#, #a3#"};
- };
-
- AtlasLoot_Data["LeatherworkingMailNetherFury"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm7#", ""};
- { 2, 25694, "", "=q3=Netherfury Belt", "=ds=#s10#, #a3#"};
- { 3, 25692, "", "=q3=Netherfury Leggings", "=ds=#s11#, #a3#"};
- { 4, 25693, "", "=q3=Netherfury Boots", "=ds=#s12#, #a3#"};
- };
-
- AtlasLoot_Data["LeatherworkingMailNetherscaleArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwd1#", "=q1=#p9#"};
- { 2, 29515, "", "=q4=Ebon Netherscale Breastplate", "=ds=#s5#, #a3#"};
- { 3, 29517, "", "=q4=Ebon Netherscale Bracers", "=ds=#s8#, #a3#"};
- { 4, 29516, "", "=q4=Ebon Netherscale Belt", "=ds=#s10#, #a3#"};
- };
-
- AtlasLoot_Data["LeatherworkingMailNetherstrikeArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwd2#", "=q1=#p9#"};
- { 2, 29519, "", "=q4=Netherstrike Breastplate", "=ds=#s5#, #a3#"};
- { 3, 29521, "", "=q4=Netherstrike Bracers", "=ds=#s8#, #a3#"};
- { 4, 29520, "", "=q4=Netherstrike Belt", "=ds=#s10#, #a3#"};
- };
-
- AtlasLoot_Data["LeatherworkingMailFrostscaleBinding"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm8#", ""};
- { 2, 38440, "", "=q2=Frostscale Helm", "=ds=#s1#, #a3#"};
- { 3, 38424, "", "=q2=Frostscale Shoulders", "=ds=#s3#, #a3#"};
- { 4, 38414, "", "=q2=Frostscale Chestguard", "=ds=#s5#, #a3#"};
- { 5, 38436, "", "=q2=Frostscale Bracers", "=ds=#s8#, #a3#"};
- { 6, 38415, "", "=q2=Frostscale Gloves", "=ds=#s9#, #a3#"};
- { 7, 38412, "", "=q2=Frostscale Belt", "=ds=#s10#, #a3#"};
- { 8, 38416, "", "=q2=Frostscale Leggings", "=ds=#s11#, #a3#"};
- { 9, 38413, "", "=q2=Frostscale Boots", "=ds=#s12#, #a3#"};
- };
-
- AtlasLoot_Data["LeatherworkingMailNerubianHive"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm9#", ""};
- { 2, 38439, "", "=q2=Nerubian Helm", "=ds=#s1#, #a3#"};
- { 3, 38417, "", "=q2=Nerubian Shoulders", "=ds=#s3#, #a3#"};
- { 4, 38420, "", "=q2=Nerubian Chestguard", "=ds=#s5#, #a3#"};
- { 5, 38435, "", "=q2=Nerubian Bracers", "=ds=#s8#, #a3#"};
- { 6, 38421, "", "=q2=Nerubian Gloves", "=ds=#s9#, #a3#"};
- { 7, 38418, "", "=q2=Nerubian Belt", "=ds=#s10#, #a3#"};
- { 8, 38422, "", "=q2=Nerubian Legguards", "=ds=#s11#, #a3#"};
- { 9, 38419, "", "=q2=Nerubian Boots", "=ds=#s12#, #a3#"};
- };
-
- AtlasLoot_Data["LeatherworkingMailStormhideBattlegear"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm10#", ""};
- { 2, 43455, "", "=q3=Stormhide Crown", "=ds=#s1#, #a3#"};
- { 3, 43457, "", "=q3=Stormhide Shoulders", "=ds=#s3#, #a3#"};
- { 4, 43453, "", "=q3=Stormhide Hauberk", "=ds=#s5#, #a3#"};
- { 5, 43452, "", "=q3=Stormhide Wristguards", "=ds=#s8#, #a3#"};
- { 6, 43454, "", "=q3=Stormhide Grips", "=ds=#s9#, #a3#"};
- { 7, 43450, "", "=q3=Stormhide Belt", "=ds=#s10#, #a3#"};
- { 8, 43456, "", "=q3=Stormhide Legguards", "=ds=#s11#, #a3#"};
- { 9, 43451, "", "=q3=Stormhide Stompers", "=ds=#s12#, #a3#"};
- };
-
- AtlasLoot_Data["LeatherworkingMailSwiftarrowBattlefear"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm11#", ""};
- { 2, 43447, "", "=q3=Swiftarrow Helm", "=ds=#s1#, #a3#"};
- { 3, 43449, "", "=q3=Swiftarrow Shoulderguards", "=ds=#s3#, #a3#"};
- { 4, 43445, "", "=q3=Swiftarrow Hauberk", "=ds=#s5#, #a3#"};
- { 5, 43444, "", "=q3=Swiftarrow Bracers", "=ds=#s8#, #a3#"};
- { 6, 43446, "", "=q3=Swiftarrow Gauntlets", "=ds=#s9#, #a3#"};
- { 7, 43442, "", "=q3=Swiftarrow Belt", "=ds=#s10#, #a3#"};
- { 8, 43448, "", "=q3=Swiftarrow Leggings", "=ds=#s11#, #a3#"};
- { 9, 43443, "", "=q3=Swiftarrow Boots", "=ds=#s12#, #a3#"};
- };
-
- ----------------------
- --- Tailoring Sets ---
- ----------------------
-
- AtlasLoot_Data["TailoringBloodvineG"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt1#", ""};
- { 2, 19682, "", "=q3=Bloodvine Vest", "=ds=#s5#, #a1#"};
- { 3, 19683, "", "=q3=Bloodvine Leggings", "=ds=#s11#, #a1#"};
- { 4, 19684, "", "=q3=Bloodvine Boots", "=ds=#s12#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringNeatherVest"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt2#", ""};
- { 2, 21855, "", "=q2=Netherweave Tunic", "=ds=#s5#, #a1#"};
- { 3, 21854, "", "=q2=Netherweave Robe", "=ds=#s5#, #a1#"};
- { 4, 21849, "", "=q2=Netherweave Bracers", "=ds=#s8#, #a1#"};
- { 5, 21851, "", "=q2=Netherweave Gloves", "=ds=#s9#, #a1##"};
- { 6, 21850, "", "=q2=Netherweave Belt", "=ds=#s10#, #a1#"};
- { 7, 21852, "", "=q2=Netherweave Pants", "=ds=#s11#, #a1#"};
- { 8, 21853, "", "=q2=Netherweave Boots", "=ds=#s12#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringImbuedNeather"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt3#", ""};
- { 2, 21862, "", "=q3=Imbued Netherweave Tunic", "=ds=#s5#, #a1#"};
- { 3, 21861, "", "=q3=Imbued Netherweave Robe", "=ds=#s5#, #a1#"};
- { 4, 21859, "", "=q3=Imbued Netherweave Pants", "=ds=#s11#, #a1#"};
- { 5, 21860, "", "=q3=Imbued Netherweave Boots", "=ds=#s12#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringArcanoVest"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt4#", "=q1=#j12#"};
- { 2, 21868, "", "=q3=Arcanoweave Robe", "=ds=#s5#, #a1#"};
- { 3, 21866, "", "=q3=Arcanoweave Bracers", "=ds=#s8#, #a1#"};
- { 4, 21867, "", "=q3=Arcanoweave Boots", "=ds=#s12#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringTheUnyielding"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt5#", ""};
- { 2, 24249, "", "=q3=Unyielding Bracers", "=ds=#s8#, #a1#"};
- { 3, 24255, "", "=q4=Unyielding Girdle", "=ds=#s10#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringWhitemendWis"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt6#", ""};
- { 2, 24264, "", "=q4=Whitemend Hood", "=ds=#s1#, #a1#"};
- { 3, 24261, "", "=q4=Whitemend Pants", "=ds=#s11#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringSpellstrikeInfu"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt7#", ""};
- { 2, 24266, "", "=q4=Spellstrike Hood", "=ds=#s1#, #a1#"};
- { 3, 24262, "", "=q4=Spellstrike Pants", "=ds=#s11#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringBattlecastG"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt8#", ""};
- { 2, 24267, "", "=q4=Battlecast Hood", "=ds=#s1#, #a1#"};
- { 3, 24263, "", "=q4=Battlecast Pants", "=ds=#s11#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringSoulclothEm"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt9#", "=q1=#j12#"};
- { 2, 21864, "", "=q4=Soulcloth Shoulders", "=ds=#s3#, #a1#"};
- { 3, 21865, "", "=q4=Soulcloth Vest", "=ds=#s5#, #a1#"};
- { 4, 21863, "", "=q4=Soulcloth Gloves", "=ds=#s9#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringPrimalMoon"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#crafttm1#", "=q1=#p19#"};
- { 2, 21874, "", "=q4=Primal Mooncloth Shoulders", "=ds=#s3#, #a1#"};
- { 3, 21875, "", "=q4=Primal Mooncloth Robe", "=ds=#s5#, #a1#"};
- { 4, 21873, "", "=q4=Primal Mooncloth Belt", "=ds=#s10#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringShadowEmbrace"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#crafttsh1#", "=q1=#p20#"};
- { 2, 21869, "", "=q4=Frozen Shadoweave Shoulders", "=ds=#s3#, #a1#"};
- { 3, 21871, "", "=q4=Frozen Shadoweave Vest", "=ds=#s5#, #a1#"};
- { 4, 21870, "", "=q4=Frozen Shadoweave Boots", "=ds=#s12#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringSpellfireWRATH"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#crafttsf1#", "=q1=#p21#"};
- { 2, 21848, "", "=q4=Spellfire Robe", "=ds=#s5#, #a1#"};
- { 3, 21847, "", "=q4=Spellfire Gloves", "=ds=#s9#, #a1#"};
- { 4, 21846, "", "=q4=Spellfire Belt", "=ds=#s10#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringFrostwovenPower"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt10#", ""};
- { 2, 41521, "", "=q2=Frostwoven Cowl", "=ds=#s1#, #a1#"};
- { 3, 41513, "", "=q2=Frostwoven Shoulders", "=ds=#s3#, #a1#"};
- { 4, 41515, "", "=q2=Frostwoven Robe", "=ds=#s5#, #a1#"};
- { 5, 41512, "", "=q2=Frostwoven Wristwraps", "=ds=#s8#, #a1#"};
- { 6, 44211, "", "=q2=Frostwoven Gloves", "=ds=#s9#, #a1#"};
- { 7, 41522, "", "=q2=Frostwoven Belt", "=ds=#s10#, #a1#"};
- { 8, 41519, "", "=q2=Frostwoven Leggings", "=ds=#s11#, #a1#"};
- { 9, 41520, "", "=q2=Frostwoven Boots", "=ds=#s12#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringDuskweaver"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt11#", ""};
- { 2, 41546, "", "=q2=Duskweave Cowl", "=ds=#s1#, #a1#"};
- { 3, 41550, "", "=q2=Duskweave Shoulders", "=ds=#s3#, #a1#"};
- { 4, 41549, "", "=q2=Duskweave Robe", "=ds=#s5#, #a1#"};
- { 5, 41551, "", "=q2=Duskweave Wristwraps", "=ds=#s8#, #a1#"};
- { 6, 41545, "", "=q2=Duskweave Gloves", "=ds=#s9#, #a1#"};
- { 7, 41543, "", "=q2=Duskweave Belt", "=ds=#s10#, #a1#"};
- { 8, 41548, "", "=q2=Duskweave Leggings", "=ds=#s11#, #a1#"};
- { 9, 41544, "", "=q2=Duskweave Boots", "=ds=#s12#, #a1#"};
- };
-
- AtlasLoot_Data["TailoringFrostsavageBattlegear"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt12#", ""};
- { 2, 43971, "", "=q3=Frostsavage Cowl", "=ds=#s1#, #a1#"};
- { 3, 43973, "", "=q3=Frostsavage Shoulders", "=ds=#s3#, #a1#"};
- { 4, 43972, "", "=q3=Frostsavage Robe", "=ds=#s5#, #a1#"};
- { 5, 43974, "", "=q3=Frostsavage Bracers", "=ds=#s8#, #a1#"};
- { 6, 41516, "", "=q3=Frostsavage Gloves", "=ds=#s9#, #a1#"};
- { 7, 43969, "", "=q3=Frostsavage Belt", "=ds=#s10#, #a1#"};
- { 8, 43975, "", "=q3=Frostsavage Leggings", "=ds=#s11#, #a1#"};
- { 9, 43970, "", "=q3=Frostsavage Boots", "=ds=#s12#, #a1#"};
- };
-
- -------------
- --- Other ---
- -------------
-
- ----------------------------
- --- Crafted Epic Weapons ---
- ----------------------------
-
- AtlasLoot_Data["CraftedWeapons1"] = {
- { 1, 49888, "", "=q4=Shadow's Edge", "=ds=#h2#, #w1#"};
- { 3, 0, "INV_Box_01", "=q6=#p2#", "=q1=#j54#"};
- { 4, 45085, "", "=q4=Titansteel Spellblade", "=ds=#h3#, #w4#"};
- { 5, 42435, "", "=q4=Titansteel Shanker", "=ds=#h1#, #w4#"};
- { 6, 41383, "", "=q4=Titansteel Bonecrusher", "=ds=#h3#, #w6#"};
- { 7, 41384, "", "=q4=Titansteel Guardian", "=ds=#h3#, #w6#"};
- { 8, 41257, "", "=q4=Titansteel Destroyer", "=ds=#h2#, #w6#"};
- { 9, 42508, "", "=q4=Titansteel Shield Wall", "=ds=#w8#"};
- { 11, 0, "INV_Box_01", "=q6=#p5#", "=q1=#j54#"};
- { 12, 41168, "", "=q4=Armor Plated Combat Shotgun", "=ds=#w5#"};
- { 13, 44504, "", "=q4=Nesingwary 4000", "=ds=#w5#"};
- { 16, 0, "INV_Box_01", "=q6=#p2#", "=q1=#j10#"};
- { 17, 23554, "", "=q4=Eternium Runed Blade", "=ds=#h3#, #w4#"};
- { 18, 23555, "", "=q4=Dirge", "=ds=#h1#, #w4#"};
- { 19, 23540, "", "=q4=Felsteel Longblade", "=ds=#h1#, #w10#"};
- { 20, 23541, "", "=q4=Khorium Champion", "=ds=#h2#, #w10#"};
- { 21, 23542, "", "=q4=Fel Edged Battleaxe", "=ds=#h1#, #w1#"};
- { 22, 23543, "", "=q4=Felsteel Reaper", "=ds=#h2#, #w1#"};
- { 23, 23556, "", "=q4=Hand of Eternity", "=ds=#h3#, #w6#"};
- { 24, 23544, "", "=q4=Runic Hammer", "=ds=#h1#, #w6#"};
- { 25, 23546, "", "=q4=Fel Hardened Maul", "=ds=#h2#, #w6#"};
- { 26, 32854, "", "=q4=Hammer of Righteous Might", "=ds=#h2#, #w6#"};
- { 28, 0, "INV_Box_01", "=q6=#p5#", "=q1=#j10#"};
- { 29, 32756, "", "=q4=Gyro-balanced Khorium Destroyer", "=ds=#w5#"};
- };
-
- AtlasLoot_Data["CraftedWeapons2"] = {
- { 1, 0, "INV_Box_01", "=q6=#p2#", "=q1=#j9#"};
- { 2, 19166, "", "=q4=Black Amnesty", "=ds=#h1#, #w4#"};
- { 3, 22383, "", "=q4=Sageblade", "=ds=#h3#, #w10#"};
- { 4, 19168, "", "=q4=Blackguard", "=ds=#h1#, #w10#"};
- { 5, 19169, "", "=q4=Nightfall", "=ds=#h2#, #w1#"};
- { 6, 19170, "", "=q4=Ebon Hand", "=ds=#h1#, #w6#"};
- { 7, 22384, "", "=q4=Persuader", "=ds=#h1#, #w6#"};
- { 8, 17193, "", "=q4=Sulfuron Hammer", "=ds=#h2#, #w6#"};
- { 9, 19167, "", "=q4=Blackfury", "=ds=#w7#"};
- { 10, 22198, "", "=q4=Jagged Obsidian Shield", "=ds=#w8#"};
- { 12, 0, "INV_Box_01", "=q6=#p5#", "=q1=#j9#"};
- { 13, 18282, "", "=q4=Core Marksman Rifle", "=ds=#w5#"};
- { 14, 18168, "", "=q4=Force Reactive Disk", "=ds=#w8#"};
- };
-
- AtlasLoot_Data["CraftedWeapons3"] = {
- { 1, 0, "INV_Box_01", "=q6=#p15#", ""};
- { 2, 28425, "", "=q4=Fireguard", "=ds=#h1#, #w10#"};
- { 3, 28426, "", "=q4=Blazeguard", "=ds=#h1#, #w10#"};
- { 4, 28427, "", "=q4=Blazefury", "=ds=#h1#, #w10#"};
- { 5, 28428, "", "=q4=Lionheart Blade", "=ds=#h2#, #w10#"};
- { 6, 28429, "", "=q4=Lionheart Champion", "=ds=#h2#, #w10#"};
- { 7, 28430, "", "=q4=Lionheart Executioner", "=ds=#h2#, #w10#"};
- { 9, 0, "INV_Box_01", "=q6=#p14#", ""};
- { 10, 28431, "", "=q4=The Planar Edge", "=ds=#h3#, #w1#"};
- { 11, 28432, "", "=q4=Black Planar Edge", "=ds=#h3#, #w1#"};
- { 12, 28433, "", "=q4=Wicked Edge of the Planes", "=ds=#h3#, #w1#"};
- { 13, 28434, "", "=q4=Lunar Crescent", "=ds=#h2#, #w1#"};
- { 14, 28435, "", "=q4=Mooncleaver", "=ds=#h2#, #w1#"};
- { 15, 28436, "", "=q4=Bloodmoon", "=ds=#h2#, #w1#"};
- { 16, 0, "INV_Box_01", "=q6=#p22#", ""};
- { 17, 28437, "", "=q4=Drakefist Hammer", "=ds=#h3#, #w6#"};
- { 18, 28438, "", "=q4=Dragonmaw", "=ds=#h3#, #w6#"};
- { 19, 28439, "", "=q4=Dragonstrike", "=ds=#h3#, #w6#"};
- { 20, 28440, "", "=q4=Thunder", "=ds=#h2#, #w6#"};
- { 21, 28441, "", "=q4=Deep Thunder", "=ds=#h2#, #w6#"};
- { 22, 28442, "", "=q4=Stormherald", "=ds=#h2#, #w6#"};
- };
-
- --------------------------------
- --- Daily Profession Rewards ---
- --------------------------------
-
- ---------------
- --- Cooking ---
- ---------------
-
- AtlasLoot_Data["CookingDaily1"] = {
- { 1, 33925, "", "=q3=Recipe: Delicious Chocolate Cake", "=ds=#p3# (1)", "", ""};
- { 2, 33871, "", "=q3=Recipe: Stormchops", "=ds=#p3# (300)", "", ""};
- { 3, 33869, "", "=q3=Recipe: Broiled Bloodfin", "=ds=#p3# (300)", "", ""};
- { 4, 33875, "", "=q2=Recipe: Kibler's Bits", "=ds=#p3# (300)", "", ""};
- { 5, 33870, "", "=q2=Recipe: Skullfish Soup", "=ds=#p3# (325)", "", ""};
- { 6, 33873, "", "=q2=Recipe: Spicy Hot Talbuk", "=ds=#p3# (300)", "", ""};
- };
-
- AtlasLoot_Data["CookingDaily2"] = {
- { 1, 43035, "", "=q2=Recipe: Blackened Dragonfin", "=ds=#p3# (400)"};
- { 2, 43032, "", "=q2=Recipe: Blackened Worg Steak", "=ds=#p3# (400)"};
- { 3, 43029, "", "=q2=Recipe: Critter Bites", "=ds=#p3# (400)"};
- { 4, 43033, "", "=q2=Recipe: Cuttlesteak", "=ds=#p3# (400)"};
- { 5, 43036, "", "=q2=Recipe: Dragonfin Filet", "=ds=#p3# (400)"};
- { 6, 43024, "", "=q2=Recipe: Firecracker Salmon", "=ds=#p3# (400)"};
- { 7, 43030, "", "=q2=Recipe: Hearty Rhino", "=ds=#p3# (400)"};
- { 8, 43026, "", "=q2=Recipe: Imperial Manta Steak", "=ds=#p3# (400)"};
- { 9, 43018, "", "=q2=Recipe: Mega Mammoth Meal", "=ds=#p3# (400)"};
- { 10, 43022, "", "=q2=Recipe: Mighty Rhino Dogs", "=ds=#p3# (400)"};
- { 11, 43023, "", "=q2=Recipe: Poached Northern Sculpin", "=ds=#p3# (400)"};
- { 12, 43028, "", "=q2=Recipe: Rhinolicious Wyrmsteak", "=ds=#p3# (400)"};
- { 13, 43031, "", "=q2=Recipe: Snapper Extreme", "=ds=#p3# (400)"};
- { 14, 43034, "", "=q2=Recipe: Spiced Mammoth Treats", "=ds=#p3# (400)"};
- { 15, 43020, "", "=q2=Recipe: Spiced Wyrm Burger", "=ds=#p3# (400)"};
- { 16, 43025, "", "=q2=Recipe: Spicy Blue Nettlefish", "=ds=#p3# (400)"};
- { 17, 43027, "", "=q2=Recipe: Spicy Fried Herring", "=ds=#p3# (400)"};
- { 18, 43019, "", "=q2=Recipe: Tender Shoveltusk Steak", "=ds=#p3# (400)"};
- { 19, 43037, "", "=q2=Recipe: Tracker Snacks", "=ds=#p3# (400)"};
- { 20, 43021, "", "=q2=Recipe: Very Burnt Worg", "=ds=#p3# (400)"};
- { 22, 46349, "", "=q3=Chef's Hat", "=ds=#s1#"};
- { 23, 43007, "", "=q1=Northern Spices", "=ds=#e8#"};
- { 25, 0, "inv_misc_bag_11", "=q6="..AL["Small Spice Bag"], ""};
- { 26, 33925, "", "=q3=Recipe: Delicious Chocolate Cake", "=ds=#p3# (1)", "", ""};
- { 27, 33871, "", "=q3=Recipe: Stormchops", "=ds=#p3# (300)", "", ""};
- { 28, 44228, "", "=q1=Baby Spice", "=ds=", "", ""};
- { 29, 44114, "", "=q1=Old Spices", "=ds=", "", ""};
- };
-
- ---------------
- --- Fishing ---
- ---------------
-
- AtlasLoot_Data["FishingDaily1"] = {
- { 1, 34837, "", "=q4=The 2 Ring", "=ds=#s13#", "", ""};
- { 2, 33820, "", "=q3=Weather-Beaten Fishing Hat", "=ds=#s1#, #a1#", "", ""};
- { 3, 35350, "", "=q3=Chuck's Bucket", "=ds=#e13#", "", ""};
- { 4, 33818, "", "=q3=Muckbreath's Bucket", "=ds=#e13#", "", ""};
- { 5, 35349, "", "=q3=Snarly's Bucket", "=ds=#e13#", "", ""};
- { 6, 33816, "", "=q3=Toothy's Bucket", "=ds=#e13#", "", ""};
- { 7, 34831, "", "=q3=Eye of the Sea", "=ds=#e7#", "", ""};
- { 8, 34834, "", "=q2=Recipe: Captain Rumsey's Lager", "=ds=#p3# (100)", "", ""};
- { 9, 34836, "", "=q2=Spun Truesilver Fishing Line", "=ds=#p24# #e17#", "", ""};
- { 16, 34827, "", "=q1=Noble's Monocle", "=ds=#s1#", "", ""};
- { 17, 34828, "", "=q1=Antique Silver Cufflinks", "=ds=#s8#", "", ""};
- { 18, 34826, "", "=q1=Gold Wedding Band", "=ds=#s13#", "", ""};
- { 19, 34829, "", "=q1=Ornate Drinking Stein", "=ds=#s15#", "", ""};
- { 20, 34859, "", "=q1=Razor Sharp Fillet Knife", "=ds=#h1#, #w4#", "", ""};
- { 21, 34109, "", "=q1=Weather-Beaten Journal", "=ds=#e10#", "", ""};
- { 22, 8827, "", "=q1=Elixir of Water Walking", "=ds=#e2#", "", ""};
- { 23, 34861, "", "=q1=Sharpened Fish Hook", "=ds=#e24#", "", ""};
- };
-
- AtlasLoot_Data["FishingDaily2"] = {
- { 1, 45862, "", "=q4=Bold Stormjewel", "=ds=#e7#", "", ""};
- { 2, 45882, "", "=q4=Brilliant Stormjewel", "=ds=#e7#", "", ""};
- { 3, 45879, "", "=q4=Delicate Stormjewel", "=ds=#e7#", "", ""};
- { 4, 45987, "", "=q4=Rigid Stormjewel", "=ds=#e7#", "", ""};
- { 5, 45883, "", "=q4=Runed Stormjewel", "=ds=#e7#", "", ""};
- { 6, 45880, "", "=q4=Solid Stormjewel", "=ds=#e7#", "", ""};
- { 7, 45881, "", "=q4=Sparkling Stormjewel", "=ds=#e7#", "", ""};
- { 8, 33820, "", "=q3=Weather-Beaten Fishing Hat", "=ds=#s1#, #a1#", "", ""};
- { 9, 45991, "", "=q3=Bone Fishing Pole", "=ds=#e20#", "", ""};
- { 10, 45992, "", "=q3=Jeweled Fishing Pole", "=ds=#e20#", "", ""};
- { 11, 44983, "", "=q3=Strand Crawler", "=ds=#e13#", "", ""};
- { 12, 36784, "", "=q3=Siren's Tear", "=ds=#e7#", "", ""};
- { 13, 45986, "", "=q3=Titanium Lockbox", "=ds=", "", ""};
- { 14, 34834, "", "=q2=Recipe: Captain Rumsey's Lager", "=ds=#p3# (100)", "", ""};
- { 15, 19971, "", "=q2=High Test Eternium Fishing Line", "=ds=#p24# #e17#", "", ""};
- { 16, 45998, "", "=q1=Battered Jungle Hat", "=ds=#s1#", "", ""};
- { 17, 45861, "", "=q1=Diamond-tipped Cane", "=ds=#h2#", "", ""};
- { 18, 46006, "", "=q1=Glow Worm", "=ds=#e24#", "", ""};
- { 19, 45984, "", "=q1=Unusual Compass", "=ds=", "", ""};
- { 20, 40195, "", "=q1=Pygmy Oil", "=ds=#e2#", "", ""};
- { 21, 8827, "", "=q1=Elixir of Water Walking", "=ds=#e2#", "", ""};
- { 22, 46004, "", "=q1=Sealed Vial of Poison", "=ds=#m2#", "", ""};
- { 23, 48679, "", "=q1=Waterlogged Recipe", "=ds=#m2# #p3# (350)", "", ""};
- };
-
- ---------------------
- --- High Risk ---
- ---------------------
-
- AtlasLoot_Data["AlchemyHighRiskCLASSIC"] = {
- Name = ALCHEMY.." High Risk";
- {
- Name = "Common";
- { 1, "s968402", "967443", "=q2=Flask of Manifesting Power", "=ds=#sr# 300"};
- { 2, "s968405", "967446", "=q2=Flask of the Warsong", "=ds=#sr# 300"};
- { 3, "s968408", "967449", "=q2=Flask of the Kirin Tor", "=ds=#sr# 300"};
- { 4, "s968411", "967452", "=q2=Flask of Butchery", "=ds=#sr# 300"};
- { 5, "s968414", "967455", "=q2=Flask of the Unyielding", "=ds=#sr# 300"};
- { 6, "s968417", "967458", "=q2=Flask of Unrelenting Power", "=ds=#sr# 300"};
- { 7, "s968420", "967461", "=q2=Flask of Savage Assault", "=ds=#sr# 300"};
- { 8, "s968423", "967464", "=q2=Flask of Shattering Thunder", "=ds=#sr# 300"};
- { 9, "s968426", "967467", "=q2=Flask of the Executioner", "=ds=#sr# 300"};
- { 10, "s968429", "967470", "=q2=Flask of Deep Meditation", "=ds=#sr# 300"};
- { 11, "s968432", "967473", "=q2=Flask of Adept Striking", "=ds=#sr# 300"};
- };
- {
- Name = "Rare";
- { 1, "s968403", "967444", "=q3=Potent Flask of Manifesting Power", "=ds=#sr# 300"};
- { 2, "s968406", "967447", "=q3=Potent Flask of the Warsong", "=ds=#sr# 300"};
- { 3, "s968409", "967450", "=q3=Potent Flask of the Kirin Tor", "=ds=#sr# 300"};
- { 4, "s968412", "967453", "=q3=Potent Flask of Butchery", "=ds=#sr# 300"};
- { 5, "s968415", "967456", "=q3=Potent Flask of the Unyielding", "=ds=#sr# 300"};
- { 6, "s968418", "967459", "=q3=Potent Flask of Unrelenting Power", "=ds=#sr# 300"};
- { 7, "s968421", "967462", "=q3=Potent Flask of Savage Assault", "=ds=#sr# 300"};
- { 8, "s968424", "967465", "=q3=Potent Flask of Shattering Thunder", "=ds=#sr# 300"};
- { 9, "s968427", "967468", "=q3=Potent Flask of the Executioner", "=ds=#sr# 300"};
- { 10, "s968430", "967471", "=q3=Potent Flask of Deep Meditation", "=ds=#sr# 300"};
- { 11, "s968433", "967474", "=q3=Potent Flask of Adept Striking", "=ds=#sr# 300"};
- };
- {
- Name = "Epic";
- { 1, "s968404", "967445", "=q4=Distilled Flask of Manifesting Power", "=ds=#sr# 300"};
- { 2, "s968407", "967448", "=q4=Distilled Flask of the Warsong", "=ds=#sr# 300"};
- { 3, "s968410", "967451", "=q4=Distilled Flask of the Kirin Tor", "=ds=#sr# 300"};
- { 4, "s968413", "967454", "=q4=Distilled Flask of Butchery", "=ds=#sr# 300"};
- { 5, "s968416", "967457", "=q4=Distilled Flask of the Unyielding", "=ds=#sr# 300"};
- { 6, "s968419", "967460", "=q4=Distilled Flask of Unrelenting Power", "=ds=#sr# 300"};
- { 7, "s968422", "967463", "=q4=Distilled Flask of Savage Assault", "=ds=#sr# 300"};
- { 8, "s968425", "967466", "=q4=Distilled Flask of Shattering Thunder", "=ds=#sr# 300"};
- { 9, "s968428", "967469", "=q4=Distilled Flask of the Executioner", "=ds=#sr# 300"};
- { 10, "s968431", "967472", "=q4=Distilled Flask of Deep Meditation", "=ds=#sr# 300"};
- { 11, "s968434", "967475", "=q4=Distilled Flask of Adept Striking", "=ds=#sr# 300"};
- };
- };
-
- AtlasLoot_Data["SmithingHighRiskCLASSIC"] = {
- Name = BLACKSMITHING.." High Risk";
- {
- Name = "Common";
- { 1, "s968018", "967172", "=q2=Living Belt Buckle", "=ds=#sr# 300"};
- { 2, "s968021", "967175", "=q2=Deflecting Buckle", "=ds=#sr# 300"};
- { 3, "s968024", "967178", "=q2=Roguish Belt Buckle", "=ds=#sr# 300"};
- { 4, "s968027", "967181", "=q2=Dancing Belt Buckle", "=ds=#sr# 300"};
- { 5, "s968030", "967184", "=q2=Magus Belt Buckle", "=ds=#sr# 300"};
- { 6, "s968033", "967187", "=q2=Cleric's Belt Buckle", "=ds=#sr# 300"};
- { 7, "s968036", "967190", "=q2=Warlord's Belt Buckle", "=ds=#sr# 300"};
- { 8, "s968039", "967193", "=q2=Gaurdian's Belt Buckle", "=ds=#sr# 300"};
- { 10, "s968480", "967680", "=q2=Homicite Key", "=ds=#sr# 300"};
- };
- {
- Name = "Rare";
- { 1, "s968019", "967173", "=q3=Sturdy Living Belt Buckle", "=ds=#sr# 300"};
- { 2, "s968022", "967176", "=q3=Sturdy Deflecting Belt Buckle", "=ds=#sr# 300"};
- { 3, "s968025", "967179", "=q3=Sturdy Roguish Belt Buckle", "=ds=#sr# 300"};
- { 4, "s968028", "967182", "=q3=Sturdy Dancing Belt Buckle", "=ds=#sr# 300"};
- { 5, "s968031", "967185", "=q3=Sturdy Magus Belt Buckle", "=ds=#sr# 300"};
- { 6, "s968034", "967188", "=q3=Sturdy Cleric's Belt Buckle", "=ds=#sr# 300"};
- { 7, "s968037", "967191", "=q3=Sturdy Warlord's Belt Buckle", "=ds=#sr# 300"};
- { 8, "s968040", "967194", "=q3=Sturdy Gaurdian's Belt Buckle", "=ds=#sr# 300"};
- { 10, "s968481", "967681", "=q3=Homicite Key", "=ds=#sr# 300"};
- };
- {
- Name = "Epic";
- { 1, "s968020", "967174", "=q4=Mastercraft Living Belt Buckle", "=ds=#sr# 300"};
- { 2, "s968023", "967177", "=q4=Mastercraft Deflecting Belt Buckle", "=ds=#sr# 300"};
- { 3, "s968026", "967180", "=q4=Mastercraft Roguish Belt Buckle", "=ds=#sr# 300"};
- { 4, "s968029", "967183", "=q4=Mastercraft Dancing Belt Buckle", "=ds=#sr# 300"};
- { 5, "s968032", "967186", "=q4=Mastercraft Magus Belt Buckle", "=ds=#sr# 300"};
- { 6, "s968035", "967189", "=q4=Mastercraft Cleric's Belt Buckle", "=ds=#sr# 300"};
- { 7, "s968038", "967192", "=q4=Mastercraft Warlord's Belt Buckle", "=ds=#sr# 300"};
- { 8, "s968041", "967195", "=q4=Mastercraft Gaurdian's Belt Buckle", "=ds=#sr# 300"};
- { 10, "s968482", "967682", "=q4=Homicite Key", "=ds=#sr# 300"};
- };
- };
-
- AtlasLoot_Data["LeatherworkingHighRiskCLASSIC"] = {
- Name = LEATHERWORKING.." High Risk";
- {
- Name = "Common";
- { 1, "s968000", "967154", "=q2=Yeti Gambeson", "=ds=#sr# 300"};
- { 2, "s968003", "967157", "=q2=Devilsaur Gambeson", "=ds=#sr# 300"};
- { 3, "s968006", "967160", "=q2=Plaguebat Gambeson", "=ds=#sr# 300"};
- { 4, "s968009", "967163", "=q2=Sandworm Gambeson", "=ds=#sr# 300"};
- { 5, "s968012", "967166", "=q2=Black Scale Gambeson", "=ds=#sr# 300"};
- { 6, "s968015", "967169", "=q2=Blue Scale Gambeson", "=ds=#sr# 300"};
- };
- {
- Name = "Rare";
- { 1, "s968001", "967155", "=q3=Sturdy Yeti Gambeson", "=ds=#sr# 300"};
- { 2, "s968004", "967158", "=q3=Sturdy Devilsaur Gambeson", "=ds=#sr# 300"};
- { 3, "s968007", "967161", "=q3=Sturdy Plaguebat Gambeson", "=ds=#sr# 300"};
- { 4, "s968010", "967164", "=q3=Sturdy Sandworm Gambeson", "=ds=#sr# 300"};
- { 5, "s968013", "967167", "=q3=Sturdy Black Scale Gambeson", "=ds=#sr# 300"};
- { 6, "s968016", "967170", "=q3=Sturdy Blue Scale Gambeson", "=ds=#sr# 300"};
- };
- {
- Name = "Epic";
- { 1, "s968002", "967156", "=q4=Mastercraft Yeti Gambeson", "=ds=#sr# 300"};
- { 2, "s968005", "967159", "=q4=Mastercraft Devilsaur Gambeson", "=ds=#sr# 300"};
- { 3, "s968008", "967162", "=q4=Mastercraft Plaguebat Gambeson", "=ds=#sr# 300"};
- { 4, "s968011", "967165", "=q4=Mastercraft Sandworm Gambeson", "=ds=#sr# 300"};
- { 5, "s968014", "967168", "=q4=Mastercraft Black Scale Gambeson", "=ds=#sr# 300"};
- { 6, "s968017", "967171", "=q4=Mastercraft Blue Scale Gambeson", "=ds=#sr# 300"};
- };
- };
-
- AtlasLoot_Data["EngineeringHighRiskCLASSIC"] = {
- Name = ENGINEERING.." High Risk";
- {
- Name = "Common";
- { 1, "s968042", "967196", "=q2=Gnomish Magnifying Lense I", "=ds=#sr# 300"};
- { 2, "s968045", "967199", "=q2=Gnomish Focusing Lense", "=ds=#sr# 300"};
- { 3, "s968048", "967202", "=q2=Gnomish Prismatic Lense", "=ds=#sr# 300"};
- { 4, "s968051", "967205", "=q2=Hipfire Scope", "=ds=#sr# 300"};
- { 5, "s968054", "967208", "=q2=Precision Scope", "=ds=#sr# 300"};
- { 6, "s968057", "967211", "=q2=Reflex Scope", "=ds=#sr# 300"};
- };
- {
- Name = "Rare";
- { 1, "s968043", "967197", "=q3=Focused Gnomish Magnifying Lense", "=ds=#sr# 300"};
- { 2, "s968046", "967200", "=q3=Focused Gnomish Focusing Lense", "=ds=#sr# 300"};
- { 3, "s968049", "967203", "=q3=Focused Gnomish Prismatic Lense", "=ds=#sr# 300"};
- { 4, "s968052", "967206", "=q3=Focused Hipfire Scope", "=ds=#sr# 300"};
- { 5, "s968055", "967209", "=q3=Focused Precision Scope", "=ds=#sr# 300"};
- { 6, "s968058", "967212", "=q3=Focused Reflex Scope", "=ds=#sr# 300"};
- };
- {
- Name = "Epic";
- { 1, "s968044", "967198", "=q4=Polished Gnomish Magnifying Lense", "=ds=#sr# 300"};
- { 2, "s968047", "967201", "=q4=Polished Gnomish Focusing Lense", "=ds=#sr# 300"};
- { 3, "s968050", "967204", "=q4=Polished Gnomish Prismatic Lense", "=ds=#sr# 300"};
- { 4, "s968053", "967207", "=q4=Polished Hipfire Scope", "=ds=#sr# 300"};
- { 5, "s968056", "967210", "=q4=Polished Precision Scope", "=ds=#sr# 300"};
- { 6, "s968059", "967213", "=q4=Polished Reflex Scope", "=ds=#sr# 300"};
- };
- };
-
- AtlasLoot_Data["EnchantingHighRiskCLASSIC"] = {
- Name = ENCHANTING.." High Risk";
- {
- Name = "Common";
- { 1, "s968676", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Unstoppable Assault", "=ds=#sr# 300"};
- { 2, "s968679", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Lucid Assault", "=ds=#sr# 300"};
- { 3, "s968682", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Spellbinder's Rage", "=ds=#sr# 300"};
- { 4, "s968685", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Ninja's Focus", "=ds=#sr# 300"};
- { 5, "s968688", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Grovewarden's Blessing", "=ds=#sr# 300"};
- { 6, "s968691", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Viscious Assault", "=ds=#sr# 300"};
- { 7, "s968694", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Arcane Dexterity", "=ds=#sr# 300"};
- { 8, "s968697", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Arcane Artillery", "=ds=#sr# 300"};
- { 9, "s968700", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Arcane Precision", "=ds=#sr# 300"};
- };
- {
- Name = "Rare";
- { 1, "s968677", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Unstoppable Assault", "=ds=#sr# 300"};
- { 2, "s968680", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Lucid Assault", "=ds=#sr# 300"};
- { 3, "s968683", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Spellbinder's Rage", "=ds=#sr# 300"};
- { 4, "s968686", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Ninja's Focus", "=ds=#sr# 300"};
- { 5, "s968689", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Grovewarden's Blessing", "=ds=#sr# 300"};
- { 6, "s968692", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Viscious Assault", "=ds=#sr# 300"};
- { 7, "s968695", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Arcane Dexterity", "=ds=#sr# 300"};
- { 8, "s968698", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Arcane Artillery", "=ds=#sr# 300"};
- { 9, "s968701", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Arcane Precision", "=ds=#sr# 300"};
- { 10, "s968770", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Crusader II", "=ds=#sr# 300"};
- };
- {
- Name = "Epic";
- { 1, "s968678", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Unstoppable Assault", "=ds=#sr# 300"};
- { 2, "s968681", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Lucid Assualt", "=ds=#sr# 300"};
- { 3, "s968684", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Spellbinder's Rage", "=ds=#sr# 300"};
- { 4, "s968687", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Ninja's Focus", "=ds=#sr# 300"};
- { 5, "s968690", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Grovewarden's Blessing", "=ds=#sr# 300"};
- { 6, "s968693", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Viscious Assault", "=ds=#sr# 300"};
- { 7, "s968696", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Arcane Dexterity", "=ds=#sr# 300"};
- { 8, "s968699", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Arcane Artillery", "=ds=#sr# 300"};
- { 9, "s968702", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Arcane Precision", "=ds=#sr# 300"};
- { 10, "s968771", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Crusader III", "=ds=#sr# 300"};
- };
- };
-
- AtlasLoot_Data["TailoringHighRiskCLASSIC"] = {
- Name = TAILORING.." High Risk";
- {
- Name = "Common";
- { 1, "s968060", "967214", "=q2=Dragonweave Cloak Lining", "=ds=#sr# 300"};
- { 2, "s968063", "967217", "=q2=Twilight Cloak Lining", "=ds=#sr# 300"};
- { 3, "s968066", "967220", "=q2=Scarlet Cloak Lining", "=ds=#sr# 300"};
- { 4, "s968069", "967223", "=q2=Rampager's Cloak Lining", "=ds=#sr# 300"};
- { 5, "s968072", "967226", "=q2=Deadwind Cloak Lining", "=ds=#sr# 300"};
- { 6, "s968075", "967229", "=q2=Slippery Cloak Lining", "=ds=#sr# 300"};
- };
- {
- Name = "Rare";
- { 1, "s968061", "967215", "=q3=Heavy Dragonweave Cloak Lining", "=ds=#sr# 300"};
- { 2, "s968064", "967218", "=q3=Heavy Twilight Cloak Lining", "=ds=#sr# 300"};
- { 3, "s968067", "967221", "=q3=Heavy Scarlet Cloak Lining", "=ds=#sr# 300"};
- { 4, "s968070", "967224", "=q3=Heavy Rampager's Cloak Lining", "=ds=#sr# 300"};
- { 5, "s968073", "967227", "=q3=Heavy Deadwind Cloak Lining", "=ds=#sr# 300"};
- { 6, "s968076", "967230", "=q3=Heavy Slippery Cloak Lining", "=ds=#sr# 300"};
- };
- {
- Name = "Epic";
- { 1, "s968062", "967216", "=q4=Illustrious Dragonweave Cloak Lining", "=ds=#sr# 300"};
- { 2, "s968065", "967219", "=q4=Illustrious Twilight Cloak Lining", "=ds=#sr# 300"};
- { 3, "s968068", "967222", "=q4=Illustrious Scarlet Cloak Lining", "=ds=#sr# 300"};
- { 4, "s968071", "967225", "=q4=Illustrious Rampager's Cloak Lining", "=ds=#sr# 300"};
- { 5, "s968074", "967228", "=q4=Illustrious Deadwind Cloak Lining", "=ds=#sr# 300"};
- { 6, "s968077", "967231", "=q4=Illustrious Slippery Cloak Lining", "=ds=#sr# 300"};
- };
- };
-
- AtlasLoot_Data["CookingHighRiskCLASSIC"] = {
- Name = COOKING.." High Risk";
- {
- Name = "Common";
- { 1, "s968279", "967509", "=q2=Animated Soup for the Soul", "=ds=#sr# 300"};
- { 2, "s968282", "967512", "=q2=Volcanic Sandwich", "=ds=#sr# 300"};
- { 3, "s968285", "967515", "=q2=Winter Wontons", "=ds=#sr# 300"};
- { 4, "s968288", "967518", "=q2=Storm Steak", "=ds=#sr# 300"};
- { 5, "s968291", "967521", "=q2=Void Touched Stew", "=ds=#sr# 300"};
- { 6, "s968294", "967524", "=q2=Spicy Vulture Steak", "=ds=#sr# 300"};
- { 7, "s968297", "967527", "=q2=Wizard Wontons", "=ds=#sr# 300"};
- { 8, "s968300", "967530", "=q2=Jurassic Burger", "=ds=#sr# 300"};
- { 9, "s968303", "967533", "=q2=Rough-alo wings", "=ds=#sr# 300"};
- { 10, "s968306", "967536", "=q2=The Whooper Sandwich", "=ds=#sr# 300"};
- { 11, "s968309", "967539", "=q2=Vulture a la King", "=ds=#sr# 300"};
- { 12, "s968312", "967542", "=q2=Scorching Hot Steak", "=ds=#sr# 300"};
- { 13, "s968315", "967545", "=q2=Lively Stew", "=ds=#sr# 300"};
- { 14, "s968318", "967548", "=q2=Crawling Steak", "=ds=#sr# 300"};
- { 15, "s968321", "967551", "=q2=Breakonator Sandwich", "=ds=#sr# 300"};
- { 16, "s968324", "967554", "=q2=Master Wontons", "=ds=#sr# 300"};
- { 17, "s968327", "967557", "=q2=Big Whack Sandwich", "=ds=#sr# 300"};
- { 18, "s968330", "967560", "=q2=Warping Wontons", "=ds=#sr# 300"};
- { 19, "s968333", "967563", "=q2=Duck Stew", "=ds=#sr# 300"};
- { 20, "s968336", "967566", "=q2=Mountainman Stew", "=ds=#sr# 300"};
- { 21, "s968339", "967569", "=q2=Scorched Stew", "=ds=#sr# 300"};
- { 22, "s968342", "967572", "=q2=Vulcan Wontons", "=ds=#sr# 300"};
- { 23, "s968345", "967575", "=q2=Jurassic Soup", "=ds=#sr# 300"};
- { 24, "s968348", "967578", "=q2=Heightened Wontons", "=ds=#sr# 300"};
- { 25, "s968351", "967581", "=q2=Hearty Spirit Soup", "=ds=#sr# 300"};
- { 26, "s968354", "967584", "=q2=Jurassic Steak", "=ds=#sr# 300"};
- { 27, "s968357", "967587", "=q2=Stormwich Sandwich", "=ds=#sr# 300"};
- { 28, "s968360", "967590", "=q2=Warding Wontons", "=ds=#sr# 300"};
- { 29, "s968363", "967593", "=q2=Rolling Meatballs", "=ds=#sr# 300"};
- { 30, "s968366", "967596", "=q2=Subtle Steak", "=ds=#sr# 300"};
- };
- {
- Name = "Common";
- { 1, "s968369", "967599", "=q2=Subtle Sandwich", "=ds=#sr# 300"};
- { 2, "s968372", "967602", "=q2=Subtle Wontons", "=ds=#sr# 300"};
- { 3, "s968375", "967605", "=q2=Subtle Sulferous Soup", "=ds=#sr# 300"};
- { 4, "s968378", "967608", "=q2=Strongman Stew", "=ds=#sr# 300"};
- { 5, "s968381", "967611", "=q2=Mysterious Void Roast", "=ds=#sr# 300"};
- { 6, "s968384", "967614", "=q2=Fire Charred Roast", "=ds=#sr# 300"};
- { 7, "s968387", "967617", "=q2=Storm Fried Roast", "=ds=#sr# 300"};
- { 8, "s968390", "967620", "=q2=Winter Roast", "=ds=#sr# 300"};
- { 9, "s968393", "967623", "=q2=Blackened Roast", "=ds=#sr# 300"};
- { 10, "s968396", "967626", "=q2=Dino Delight", "=ds=#sr# 300"};
- { 11, "s968399", "967629", "=q2=Slick-fil-A Sandwich", "=ds=#sr# 300"};
- { 13, "s968646", "967703", "=q2=Tempting Bait", "=ds=#sr# 300"};
- };
- {
- Name = "Rare";
- { 1, "s968280", "967510", "=q3=Animated Soup for the Soul", "=ds=#sr# 300"};
- { 2, "s968283", "967513", "=q3=Volcanic Sandwich", "=ds=#sr# 300"};
- { 3, "s968286", "967516", "=q3=Winter Wontons", "=ds=#sr# 300"};
- { 4, "s968289", "967519", "=q3=Storm Steak", "=ds=#sr# 300"};
- { 5, "s968292", "967522", "=q3=Void Touched Stew", "=ds=#sr# 300"};
- { 6, "s968295", "967525", "=q3=Spicy Vulture Steak", "=ds=#sr# 300"};
- { 7, "s968298", "967528", "=q3=Wizard Wontons", "=ds=#sr# 300"};
- { 8, "s968301", "967531", "=q3=Jurassic Burger", "=ds=#sr# 300"};
- { 9, "s968304", "967534", "=q3=Rough-alo wings", "=ds=#sr# 300"};
- { 10, "s968307", "967537", "=q3=The Whooper Sandwich", "=ds=#sr# 300"};
- { 11, "s968310", "967540", "=q3=Vulture a la King", "=ds=#sr# 300"};
- { 12, "s968313", "967543", "=q3=Scorching Hot Steak", "=ds=#sr# 300"};
- { 13, "s968316", "967546", "=q3=Lively Stew", "=ds=#sr# 300"};
- { 14, "s968319", "967549", "=q3=Crawling Steak", "=ds=#sr# 300"};
- { 15, "s968322", "967552", "=q3=Breakonator Sandwich", "=ds=#sr# 300"};
- { 16, "s968325", "967555", "=q3=Master Wontons", "=ds=#sr# 300"};
- { 17, "s968328", "967558", "=q3=Big Whack Sandwich", "=ds=#sr# 300"};
- { 18, "s968331", "967561", "=q3=Warping Wontons", "=ds=#sr# 300"};
- { 19, "s968334", "967564", "=q3=Duck Stew", "=ds=#sr# 300"};
- { 20, "s968337", "967567", "=q3=Mountainman Stew", "=ds=#sr# 300"};
- { 21, "s968340", "967570", "=q3=Scorched Stew", "=ds=#sr# 300"};
- { 22, "s968343", "967573", "=q3=Vulcan Wontons", "=ds=#sr# 300"};
- { 23, "s968346", "967576", "=q3=Jurassic Soup", "=ds=#sr# 300"};
- { 24, "s968349", "967579", "=q3=Heightened Wontons", "=ds=#sr# 300"};
- { 25, "s968352", "967582", "=q3=Hearty Spirit Soup", "=ds=#sr# 300"};
- { 26, "s968355", "967585", "=q3=Jurassic Steak", "=ds=#sr# 300"};
- { 27, "s968358", "967588", "=q3=Stormwich Sandwich", "=ds=#sr# 300"};
- { 28, "s968361", "967591", "=q3=Warding Wontons", "=ds=#sr# 300"};
- { 29, "s968364", "967594", "=q3=Rolling Meatballs", "=ds=#sr# 300"};
- { 30, "s968367", "967597", "=q3=Subtle Steak", "=ds=#sr# 300"};
- };
- {
- Name = "Rare";
- { 1, "s968370", "967600", "=q3=Subtle Sandwich", "=ds=#sr# 300"};
- { 2, "s968373", "967603", "=q3=Subtle Wontons", "=ds=#sr# 300"};
- { 3, "s968376", "967606", "=q3=Subtle Sulferous Soup", "=ds=#sr# 300"};
- { 4, "s968379", "967609", "=q3=Strongman Stew", "=ds=#sr# 300"};
- { 5, "s968382", "967612", "=q3=Mysterious Void Roast", "=ds=#sr# 300"};
- { 6, "s968385", "967615", "=q3=Fire Charred Roast", "=ds=#sr# 300"};
- { 7, "s968388", "967618", "=q3=Storm Fried Roast", "=ds=#sr# 300"};
- { 8, "s968391", "967621", "=q3=Winter Roast", "=ds=#sr# 300"};
- { 9, "s968394", "967624", "=q3=Blackened Roast", "=ds=#sr# 300"};
- { 10, "s968397", "967627", "=q3=Dino Delight", "=ds=#sr# 300"};
- { 11, "s968400", "967630", "=q3=Slick-fil-A Sandwich", "=ds=#sr# 300"};
- { 13, "s968647", "967704", "=q3=Alluring Bait", "=ds=#sr# 300"};
- };
- {
- Name = "Epic";
- { 1, "s968281", "967511", "=q4=Animated Soup for the Soul", "=ds=#sr# 300"};
- { 2, "s968284", "967514", "=q4=Volcanic Sandwich", "=ds=#sr# 300"};
- { 3, "s968287", "967517", "=q4=Winter Wontons", "=ds=#sr# 300"};
- { 4, "s968290", "967520", "=q4=Storm Steak", "=ds=#sr# 300"};
- { 5, "s968293", "967523", "=q4=Void Touched Stew", "=ds=#sr# 300"};
- { 6, "s968296", "967526", "=q4=Spicy Vulture Steak", "=ds=#sr# 300"};
- { 7, "s968299", "967529", "=q4=Wizard Wontons", "=ds=#sr# 300"};
- { 8, "s968302", "967532", "=q4=Jurassic Burger", "=ds=#sr# 300"};
- { 9, "s968305", "967535", "=q4=Rough-alo wings", "=ds=#sr# 300"};
- { 10, "s968308", "967538", "=q4=The Whooper Sandwich", "=ds=#sr# 300"};
- { 11, "s968311", "967541", "=q4=Vulture a la King", "=ds=#sr# 300"};
- { 12, "s968314", "967542", "=q4=Scorching Hot Steak", "=ds=#sr# 300"};
- { 13, "s968317", "967547", "=q4=Lively Stew", "=ds=#sr# 300"};
- { 14, "s968320", "967550", "=q4=Crawling Steak", "=ds=#sr# 300"};
- { 15, "s968323", "967553", "=q4=Breakonator Sandwich", "=ds=#sr# 300"};
- { 16, "s968326", "967556", "=q4=Master Wontons", "=ds=#sr# 300"};
- { 17, "s968329", "967559", "=q4=Big Whack Sandwich", "=ds=#sr# 300"};
- { 18, "s968332", "967562", "=q4=Warping Wontons", "=ds=#sr# 300"};
- { 19, "s968335", "967565", "=q4=Duck Stew", "=ds=#sr# 300"};
- { 20, "s968338", "967568", "=q4=Mountainman Stew", "=ds=#sr# 300"};
- { 21, "s968341", "967571", "=q4=Scorched Stew", "=ds=#sr# 300"};
- { 22, "s968344", "967574", "=q4=Vulcan Wontons", "=ds=#sr# 300"};
- { 23, "s968347", "967577", "=q4=Jurassic Soup", "=ds=#sr# 300"};
- { 24, "s968350", "967580", "=q4=Heightened Wontons", "=ds=#sr# 300"};
- { 25, "s968353", "967583", "=q4=Hearty Spirit Soup", "=ds=#sr# 300"};
- { 26, "s968356", "967586", "=q4=Jurassic Steak", "=ds=#sr# 300"};
- { 27, "s968359", "967589", "=q4=Stormwich Sandwich", "=ds=#sr# 300"};
- { 28, "s968362", "967592", "=q4=Warding Wontons", "=ds=#sr# 300"};
- { 29, "s968365", "967595", "=q4=Rolling Meatballs", "=ds=#sr# 300"};
- { 30, "s968368", "967598", "=q4=Subtle Steak", "=ds=#sr# 300"};
- };
- {
- Name = "Epic";
- { 1, "s968371", "967601", "=q4=Subtle Sandwich", "=ds=#sr# 300"};
- { 2, "s968374", "967604", "=q4=Subtle Wontons", "=ds=#sr# 300"};
- { 3, "s968377", "967607", "=q4=Subtle Sulferous Soup", "=ds=#sr# 300"};
- { 4, "s968380", "967610", "=q4=Strongman Stew", "=ds=#sr# 300"};
- { 5, "s968383", "967613", "=q4=Mysterious Void Roast", "=ds=#sr# 300"};
- { 6, "s968386", "967616", "=q4=Fire Charred Roast", "=ds=#sr# 300"};
- { 7, "s968389", "967619", "=q4=Storm Fried Roast", "=ds=#sr# 300"};
- { 8, "s968392", "967622", "=q4=Winter Roast", "=ds=#sr# 300"};
- { 9, "s968395", "967625", "=q4=Blackened Roast", "=ds=#sr# 300"};
- { 10, "s968398", "967628", "=q4=Dino Delight", "=ds=#sr# 300"};
- { 11, "s968401", "967631", "=q4=Slick-fil-A Sandwich", "=ds=#sr# 300"};
- { 13, "s968648", "967705", "=q4=Irresistible Bait", "=ds=#sr# 300"};
+-----------------------
+--- Tradeskill List ---
+-----------------------
+
+---------------
+--- Alchemy ---
+---------------
+AtlasLoot_Data["AlchemyCLASSIC"] = {
+ Name = ALCHEMY;
+ Type = "CraftingNoBF";
+ {
+ Name = AL["Battle Elixirs"];
+ { 1, "s17573", "13454", "=q1=Greater Arcane Elixir", "=ds=" .. AL["Trainer"] };
+ { 2, "s17571", "13452", "=q1=Elixir of the Mongoose", "=ds=" .. BabbleZone["Felwood"] };
+ { 3, "s17557", "13453", "=q1=Elixir of Brute Force", "=ds=" .. AL["Trainer"] };
+ { 4, "s11477", "9224", "=q1=Elixir of Demonslaying", "=ds=" .. AL["Vendor"] };
+ { 5, "s26277", "21546", "=q1=Elixir of Greater Firepower", "=ds=" .. BabbleZone["Searing Gorge"] };
+ { 6, "s11476", "9264", "=q1=Elixir of Shadow Power","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Undercity"] .. "/" .. BabbleZone["Stormwind City"] };
+ { 7, "s11472", "9206", "=q1=Elixir of Giants", "=ds=" .. AL["World Drop"] };
+ { 8, "s11467", "9187", "=q1=Elixir of Greater Agility", "=ds=" .. AL["Trainer"] };
+ { 9, "s11461", "9155", "=q1=Arcane Elixir", "=ds=" .. AL["Trainer"] };
+ { 10, "s21923", "17708", "=q1=Elixir of Frost Power", "=ds=" .. AL["Feast of Winter Veil"] };
+ { 11, "s11449", "8949", "=q1=Elixir of Agility", "=ds=" .. AL["Trainer"] };
+ { 12, "s63732", "45621", "=q1=Elixir of Minor Accuracy", "=ds=" };
+ { 13, "s3188", "3391", "=q1=Elixir of Ogre's Strength", "=ds=" .. AL["World Drop"] };
+ { 14, "s2333", "3390", "=q1=Elixir of Lesser Agility", "=ds=" .. AL["World Drop"] };
+ { 15, "s7845", "6373", "=q1=Elixir of Firepower", "=ds=" .. AL["Trainer"] };
+ { 16, "s8240", "6662", "=q1=Elixir of Giant Growth", "=ds=" .. BabbleZone["The Barrens"] };
+ { 17, "s3230", "2457", "=q1=Elixir of Minor Agility", "=ds=" .. AL["World Drop"] };
+ { 18, "s2329", "2454", "=q1=Elixir of Lion's Strength", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Guardian Elixirs"];
+ { 1, "s24368", "20004", "=q1=Major Troll's Blood Elixir","=ds=" .. BabbleFaction["Honored"] .. ": " .. BabbleFaction["Zandalar Tribe"] };
+ { 2, "s24365", "20007", "=q1=Mageblood Elixir", "=ds=" ..BabbleFaction["Revered"] .. ": " .. BabbleFaction["Zandalar Tribe"] };
+ { 3, "s17554", "13445", "=q1=Elixir of Superior Defense","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Orgrimmar"] .. "/" .. BabbleZone["Ironforge"] };
+ { 4, "s17555", "13447", "=q1=Elixir of the Sages", "=ds=" .. AL["Trainer"] };
+ { 5, "s11466", "9088", "=q1=Gift of Arthas", "=ds=" .. BabbleZone["Western Plaguelands"] };
+ { 6, "s11465", "9179", "=q1=Elixir of Greater Intellect", "=ds=" .. AL["Trainer"] };
+ { 7, "s11450", "8951", "=q1=Elixir of Greater Defense", "=ds=" .. AL["Trainer"] };
+ { 8, "s3451", "3826", "=q1=Mighty Troll's Blood Elixir", "=ds=" .. AL["World Drop"] };
+ { 9, "s3450", "3825", "=q1=Elixir of Fortitude", "=ds=" .. AL["Trainer"] };
+ { 10, "s3177", "3389", "=q1=Elixir of Defense", "=ds=" .. AL["Trainer"] };
+ { 11, "s3176", "3388", "=q1=Strong Troll's Blood Potion", "=ds=" .. AL["Trainer"] };
+ { 12, "s3171", "3383", "=q1=Elixir of Wisdom", "=ds=" .. AL["Trainer"] };
+ { 13, "s2334", "2458", "=q1=Elixir of Minor Fortitude", "=ds=" .. AL["Trainer"] };
+ { 14, "s3170", "3382", "=q1=Weak Troll's Blood Elixir", "=ds=" .. AL["Trainer"] };
+ { 15, "s7183", "5997", "=q1=Elixir of Minor Defense", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Potions"] .. " 1";
+ { 1, "s22732", "18253", "=q1=Major Rejuvenation Potion", "=ds=" .. BabbleZone["Molten Core"] };
+ { 2, "s17580", "13444", "=q1=Major Mana Potion", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Western Plaguelands"] };
+ { 3, "s17577", "13461", "=q1=Greater Arcane Protection Potion", "=ds=" .. BabbleZone["Winterspring"] };
+ { 4, "s17574", "13457", "=q1=Greater Fire Protection Potion", "=ds=" .. BabbleZone["Blackrock Spire"] };
+ { 5, "s17575", "13456", "=q1=Greater Frost Protection Potion", "=ds=" .. BabbleZone["Winterspring"] };
+ { 6, "s17576", "13458", "=q1=Greater Nature Protection Potion", "=ds=" .. BabbleZone["Western Plaguelands"] };
+ { 7, "s17578", "13459", "=q1=Greater Shadow Protection Potion", "=ds=" .. BabbleZone["Eastern Plaguelands"] };
+ { 8, "s24367", "20008", "=q1=Living Action Potion","=ds=" .. BabbleFaction["Exalted"] .. ": " .. BabbleFaction["Zandalar Tribe"] };
+ { 9, "s17572", "13462", "=q1=Purification Potion", "=ds=" .. AL["World Drop"] };
+ { 10, "s17570", "13455", "=q1=Greater Stoneshield Potion", "=ds=" .. AL["World Drop"] };
+ { 11, "s24366", "20002", "=q1=Greater Dreamless Sleep Potion","=ds=" .. BabbleFaction["Friendly"] .. ": " .. BabbleFaction["Zandalar Tribe"] };
+ { 12, "s17556", "13446", "=q1=Major Healing Potion", "=ds=" .. AL["Trainer"] };
+ { 13, "s17553", "13443", "=q1=Superior Mana Potion", "=ds=" .. AL["Trainer"] };
+ { 14, "s17552", "13442", "=q1=Mighty Rage Potion", "=ds=" .. AL["Trainer"] };
+ { 15, "s3175", "3387", "=q1=Limited Invulnerability Potion", "=ds=" .. AL["World Drop"] };
+ { 16, "s11464", "9172", "=q1=Invisibility Potion", "=ds=" .. AL["World Drop"] };
+ { 17, "s15833", "12190", "=q1=Dreamless Sleep Potion", "=ds=" .. AL["Trainer"] };
+ { 18, "s11458", "9144", "=q1=Wildvine Potion","=ds=" .. BabbleZone["The Hinterlands"] .. "/" .. BabbleZone["Stranglethorn Vale"] };
+ { 19, "s4942", "4623", "=q1=Lesser Stoneshield Potion", "=ds=" .. AL["Quest"] .. ": " .. BabbleZone["Badlands"] };
+ { 20, "s11457", "3928", "=q1=Superior Healing Potion", "=ds=" .. AL["Trainer"] };
+ { 21, "s11453", "9036", "=q1=Magic Resistance Potion", "=ds=" .. AL["World Drop"] };
+ };
+ {
+ Name = AL["Potions"] .. " 2";
+ { 1, "s11452", "9030", "=q1=Restorative Potion", "=ds=" .. AL["Quest"] .. ": " .. BabbleZone["Badlands"] };
+ { 2, "s11448", "6149", "=q1=Greater Mana Potion", "=ds=" .. AL["Trainer"] };
+ { 3, "s7258", "6050", "=q1=Frost Protection Potion", "=ds=" .. AL["Vendor"] };
+ { 4, "s7259", "6052", "=q1=Nature Protection Potion", "=ds=" .. AL["Vendor"] };
+ { 5, "s6618", "5633", "=q1=Great Rage Potion", "=ds=" .. AL["Vendor"] };
+ { 6, "s3448", "3823", "=q1=Lesser Invisibility Potion", "=ds=" .. AL["Trainer"] };
+ { 7, "s7257", "6049", "=q1=Fire Protection Potion", "=ds=" .. AL["Vendor"] };
+ { 8, "s3452", "3827", "=q1=Mana Potion", "=ds=" .. AL["Trainer"] };
+ { 9, "s7181", "1710", "=q1=Greater Healing Potion", "=ds=" .. AL["Trainer"] };
+ { 10, "s6624", "5634", "=q1=Free Action Potion", "=ds=" .. AL["Vendor"] };
+ { 11, "s7256", "6048", "=q1=Shadow Protection Potion", "=ds=" .. AL["Vendor"] };
+ { 12, "s3173", "3385", "=q1=Lesser Mana Potion", "=ds=" .. AL["Trainer"] };
+ { 13, "s3174", "3386", "=q1=Potion of Curing", "=ds=" .. AL["World Drop"] };
+ { 14, "s3447", "929", "=q1=Healing Potion", "=ds=" .. AL["Trainer"] };
+ { 15, "s3172", "3384", "=q1=Minor Magic Resistance Potion", "=ds=" .. AL["World Drop"] };
+ { 16, "s7255", "6051", "=q1=Holy Protection Potion", "=ds=" .. AL["Vendor"] };
+ { 17, "s7841", "6372", "=q1=Swim Speed Potion", "=ds=" .. AL["Trainer"] };
+ { 18, "s6617", "5631", "=q1=Rage Potion", "=ds=" .. AL["Vendor"] };
+ { 19, "s2335", "2459", "=q1=Swiftness Potion", "=ds=" .. AL["World Drop"] };
+ { 20, "s2337", "858", "=q1=Lesser Healing Potion", "=ds=" .. AL["Trainer"] };
+ { 21, "s4508", "4596", "=q1=Discolored Healing Potion", "=ds=" .. AL["Quest"] .. ", " ..BabbleZone["Silverpine Forest"] };
+ { 22, "s2332", "2456", "=q1=Minor Rejuvenation Potion", "=ds=" .. AL["Trainer"] };
+ { 23, "s2331", "2455", "=q1=Minor Mana Potion", "=ds=" .. AL["Trainer"] };
+ { 24, "s2330", "118", "=q1=Minor Healing Potion", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Flasks"];
+ { 1, "s17638", "13513", "=q1=Flask of Chromatic Resistance","=ds=" .. BabbleFaction["Exalted"] .. ": " .. BabbleFaction["Lower City"] };
+ { 2, "s17636", "13511", "=q1=Flask of Distilled Wisdom","=ds=" .. BabbleFaction["Exalted"] .. ": " .. BabbleFaction["Cenarion Expedition"] };
+ { 3, "s17634", "13506", "=q1=Flask of Petrification", "=ds=" .. AL["World Drop"] };
+ { 4, "s17637", "13512", "=q1=Flask of Supreme Power","=ds=" .. BabbleFaction["Exalted"] .. ": " .. BabbleFaction["Keepers of Time"] };
+ { 5, "s17635", "13510", "=q1=Flask of the Titans", "=ds=" ..BabbleFaction["Exalted"] .. ": " .. BabbleFaction["The Sha'tar"] };
+ };
+ {
+ Name = AL["Transmutes"];
+ { 1, "s11479", "3577", "=q2=Transmute: Iron to Gold", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Tanaris"] };
+ { 2, "s11480", "6037", "=q2=Transmute: Mithril to Truesilver", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Tanaris"] };
+ { 3, "s17187", "12360", "=q2=Transmute: Arcanite Bar", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Tanaris"] };
+ { 4, "s17559", "7078", "=q2=Transmute: Air to Fire","=ds=" .. BabbleFaction["Honored"] .. ": " .. BabbleFaction["Argent Dawn"] };
+ { 5, "s17566", "12803", "=q2=Transmute: Earth to Life", "=ds=" .. AL["World Drop"] };
+ { 6, "s17561", "7080", "=q2=Transmute: Earth to Water", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Felwood"] };
+ { 7, "s17560", "7076", "=q2=Transmute: Fire to Earth", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Blackrock Depths"] };
+ { 8, "s17565", "7076", "=q2=Transmute: Life to Earth", "=ds=" .. AL["World Drop"] };
+ { 9, "s17563", "7080", "=q2=Transmute: Undeath to Water", "=ds=" .. AL["World Drop"] };
+ { 10, "s17562", "7082", "=q2=Transmute: Water to Air", "=ds=" .. AL["Vendor"] ..", " .. BabbleZone["Western Plaguelands"] };
+ { 11, "s17564", "12808", "=q2=Transmute: Water to Undeath", "=ds=" .. AL["World Drop"] };
+ { 12, "s25146", "7068", "=q1=Transmute: Elemental Fire", "=ds=" .. AL["Vendor"] .. ", " ..BabbleZone["Blackrock Depths"] };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s24266", "19931", "=q3=Gurubashi Mojo Madness", "=ds=" .. BabbleZone["Zul'Gurub"] };
+ { 2, "s11460", "9154", "=q1=Elixir of Detect Undead", "=ds=" .. AL["Trainer"] };
+ { 3, "s22808", "18294", "=q1=Elixir of Greater Water Breathing", "=ds=" .. AL["Trainer"] };
+ { 4, "s11456", "9061", "=q1=Goblin Rocket Fuel", "=ds=" .. AL["Crafted"] .. ": " .. GetSpellInfo(4036) };
+ { 5, "s11451", "8956", "=q1=Oil of Immolation", "=ds=" .. AL["Trainer"] };
+ { 6, "s12609", "10592", "=q1=Catseye Elixir", "=ds=" .. AL["Trainer"] };
+ { 7, "s3454", "3829", "=q1=Frost Oil", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Alterac Mountains"] };
+ { 8, "s11459", "9149", "=q1=Philosopher's Stone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Tanaris"] };
+ { 9, "s3453", "3828", "=q1=Elixir of Detect Lesser Invisibility", "=ds=" .. AL["World Drop"] };
+ { 10, "s3449", "3824", "=q1=Shadow Oil", "=ds=" .. AL["Vendor"] };
+ { 11, "s7837", "6371", "=q1=Fire Oil", "=ds=" .. AL["Trainer"] };
+ { 12, "s7179", "5996", "=q1=Elixir of Water Breathing", "=ds=" .. AL["Trainer"] };
+ { 13, "s7836", "6370", "=q1=Blackmouth Oil", "=ds=" .. AL["Trainer"] };
+ };
+};
+---------------------
+--- Blacksmithing ---
+---------------------
+AtlasLoot_Data["SmithingCLASSIC"] = {
+ Name = BLACKSMITHING;
+ Type = "Crafting";
+ {
+ Name = BabbleInventory["Armor"] .. " - Chest";
+ { 1, "s28242", "22669", "=q4=Icebane Breastplate", "=ds=#sr# 300" };
+ { 2, "s16746", "12641", "=q4=Invulnerable Mail", "=ds=#sr# 300" };
+ { 3, "s27590", "22191", "=q4=Obsidian Mail Tunic", "=ds=#sr# 300" };
+ { 4, "s27587", "22196", "=q4=Thick Obsidian Breastplate", "=ds=#sr# 300" };
+ { 5, "s24136", "19690", "=q3=Bloodsoul Breastplate", "=ds=#sr# 300" };
+ { 6, "s24914", "20550", "=q3=Darkrune Breastplate", "=ds=#sr# 300" };
+ { 7, "s24139", "19693", "=q3=Darksoul Breastplate", "=ds=#sr# 300" };
+ { 8, "s28461", "22762", "=q3=Ironvine Breastplate", "=ds=#sr# 300" };
+ { 9, "s16745", "12618", "=q3=Enchanted Thorium Breastplate", "=ds=#sr# 300" };
+ { 10, "s16663", "12422", "=q2=Imperial Plate Chest", "=ds=#sr# 300" };
+ { 11, "s16731", "12613", "=q2=Runic Breastplate", "=ds=" .. AL["Drop"] .. "" };
+ { 12, "s16667", "12628", "=q3=Demon Forged Breastplate", "=ds=#sr# 285" };
+ { 13, "s15296", "11604", "=q3=Dark Iron Plate", "=ds=#sr# 285" };
+ { 14, "s16650", "12624", "=q3=Wildthorn Mail", "=ds=#sr# 270" };
+ { 15, "s16648", "12415", "=q2=Radiant Breastplate", "=ds=#sr# 270" };
+ { 16, "s16642", "12405", "=q2=Thorium Armor", "=ds=#sr# 250" };
+ { 17, "s9959", "7930", "=q2=Heavy Mithril Breastplate", "=ds=#sr# 230" };
+ { 18, "s9974", "7939", "=q3=Truesilver Breastplate", "=ds=#sr# 245" };
+ { 19, "s9916", "7963", "=q2=Steel Breastplate", "=ds=#sr# 200" };
+ { 20, "s3511", "3845", "=q2=Golden Scale Cuirass", "=ds=#sr# 195" };
+ { 21, "s3508", "3844", "=q3=Green Iron Hauberk", "=ds=#sr# 180" };
+ { 22, "s9813", "7914", "=q2=Barbaric Iron Breastplate", "=ds=#sr# 160" };
+ { 23, "s2675", "2870", "=q3=Shining Silver Breastplate", "=ds=#sr# 145" };
+ { 24, "s2673", "2869", "=q2=Silvered Bronze Breastplate", "=ds=#sr# 130" };
+ { 25, "s9972", "7935", "=q2=Ornate Mithril Breastplate", "=ds=" .. AL["Quest"] .. "" };
+ { 26, "s8367", "6731", "=q2=Ironforge Breastplate", "=ds=#sr# 100" };
+ { 27, "s2670", "2866", "=q1=Rough Bronze Cuirass", "=ds=#sr# 105" };
+ { 28, "s2667", "2864", "=q2=Runed Copper Breastplate", "=ds=#sr# 80" };
+ { 29, "s3321", "3471", "=q2=Copper Chain Vest", "=ds=#sr# 35" };
+ { 30, "s12260", "10421", "=q1=Rough Copper Vest", "=ds=#sr# 1" };
+ };
+ { Name = BabbleInventory["Armor"] .. " - Feet";
+ { 1, "s24399", "20039", "=q4=Dark Iron Boots", "=ds=#sr# 300" };
+ { 2, "s23629", "19048", "=q3=Heavy Timbermaw Boots", "=ds=#sr# 300" };
+ { 3, "s16665", "12611", "=q2=Runic Plate Boots", "=ds=#sr# 300" };
+ { 4, "s16657", "12426", "=q2=Imperial Plate Boots", "=ds=#sr# 295" };
+ { 5, "s16656", "12419", "=q2=Radiant Boots", "=ds=#sr# 290" };
+ { 6, "s16652", "12409", "=q2=Thorium Boots", "=ds=#sr# 280" };
+ { 7, "s9979", "7936", "=q2=Ornate Mithril Boots", "=ds=" .. AL["Quest"] .. "" };
+ { 8, "s9968", "7933", "=q2=Heavy Mithril Boots", "=ds=#sr# 235" };
+ { 9, "s3515", "3847", "=q2=Golden Scale Boots", "=ds=#sr# 200" };
+ { 10, "s3513", "3846", "=q2=Polished Steel Boots", "=ds=#sr# 185" };
+ { 11, "s9818", "7916", "=q2=Barbaric Iron Boots", "=ds=#sr# 180" };
+ { 12, "s3334", "3484", "=q2=Green Iron Boots", "=ds=#sr# 145" };
+ { 13, "s3331", "3482", "=q2=Silvered Bronze Boots", "=ds=#sr# 130" };
+ { 14, "s7817", "6350", "=q1=Rough Bronze Boots", "=ds=#sr# 95" };
+ { 15, "s3319", "3469", "=q1=Copper Chain Boots", "=ds=#sr# 20" };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Hands";
+ { 1, "s23637", "19164", "=q4=Dark Iron Gauntlets", "=ds=#sr# 300" };
+ { 2, "s28243", "22670", "=q4=Icebane Gauntlets", "=ds=#sr# 300" };
+ { 3, "s16741", "12639", "=q4=Stronghold Gauntlets", "=ds=#sr# 300" };
+ { 4, "s24138", "19692", "=q3=Bloodsoul Gauntlets", "=ds=#sr# 300" };
+ { 5, "s24912", "20549", "=q3=Darkrune Gauntlets", "=ds=#sr# 300" };
+ { 6, "s23633", "19057", "=q3=Gloves of the Dawn", "=ds=#sr# 300" };
+ { 7, "s28462", "22763", "=q3=Ironvine Gloves", "=ds=#sr# 300" };
+ { 8, "s27589", "22194", "=q4=Black Grasp of the Destroyer", "=ds=#sr# 300" };
+ { 9, "s16661", "12632", "=q3=Storm Gauntlets", "=ds=#sr# 295" };
+ { 10, "s16655", "12631", "=q3=Fiery Plate Gauntlets", "=ds=#sr# 290" };
+ { 11, "s9954", "7938", "=q3=Truesilver Gauntlets", "=ds=#sr# 225" };
+ { 12, "s16654", "12418", "=q2=Radiant Gloves", "=ds=#sr# 285" };
+ { 13, "s9950", "7927", "=q2=Ornate Mithril Gloves", "=ds=#sr# 220" };
+ { 14, "s11643", "9366", "=q2=Golden Scale Gauntlets", "=ds=#sr# 205" };
+ { 15, "s9928", "7919", "=q2=Heavy Mithril Gauntlet", "=ds=#sr# 205" };
+ { 16, "s9820", "7917", "=q2=Barbaric Iron Gloves", "=ds=#sr# 185" };
+ { 17, "s3336", "3485", "=q2=Green Iron Gauntlets", "=ds=#sr# 150" };
+ { 18, "s3333", "3483", "=q2=Silvered Bronze Gauntlets", "=ds=#sr# 135" };
+ { 19, "s3325", "3474", "=q2=Gemmed Copper Gauntlets", "=ds=#sr# 60" };
+ { 20, "s3323", "3472", "=q1=Runed Copper Gauntlets", "=ds=#sr# 40" };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Head";
+ { 1, "s23636", "19148", "=q4=Dark Iron Helm", "=ds=#sr# 300" };
+ { 2, "s16729", "12640", "=q4=Lionheart Helm", "=ds=#sr# 300" };
+ { 3, "s24913", "20551", "=q3=Darkrune Helm", "=ds=#sr# 300" };
+ { 4, "s16742", "12620", "=q3=Enchanted Thorium Helm", "=ds=#sr# 300" };
+ { 5, "s16728", "12636", "=q3=Helm of the Great Chief", "=ds=#sr# 300" };
+ { 6, "s16724", "12633", "=q3=Whitesoul Helm", "=ds=#sr# 300" };
+ { 7, "s16726", "12612", "=q2=Runic Plate Helm", "=ds=" .. AL["Drop"] .. "" };
+ { 8, "s16658", "12427", "=q2=Imperial Plate Helm", "=ds=#sr# 295" };
+ { 9, "s16659", "12417", "=q2=Radiant Circlet", "=ds=#sr# 295" };
+ { 10, "s16653", "12410", "=q2=Thorium Helm", "=ds=#sr# 280" };
+ { 11, "s15293", "11606", "=q2=Dark Iron Mail", "=ds=#sr# 270" };
+ { 12, "s9980", "7937", "=q2=Ornate Mithril Helm", "=ds=" .. AL["Quest"] .. "" };
+ { 13, "s9970", "7934", "=q2=Heavy Mithril Helm", "=ds=#sr# 245" };
+ { 14, "s9961", "7931", "=q2=Mithril Coif", "=ds=#sr# 230" };
+ { 15, "s9935", "7922", "=q1=Steel Plate Helm", "=ds=#sr# 215" };
+ { 16, "s3503", "3837", "=q2=Golden Scale Coif", "=ds=#sr# 190" };
+ { 17, "s16726", "12612", "=q2=Runic Plate Helm", "=ds=" .. AL["Drop"] .. "" };
+ { 18, "s9814", "7915", "=q2=Barbaric Iron Helm", "=ds=#sr# 175" };
+ { 19, "s3502", "3836", "=q2=Green Iron Helm", "=ds=#sr# 170" };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Legs";
+ { 1, "s20876", "17013", "=q4=Dark Iron Leggings", "=ds=#sr# 300" };
+ { 3, "s16662", "12414", "=q2=Thorium Leggings", "=ds=#sr# 300" };
+ { 2, "s27829", "22385", "=q4=Titanic Leggings", "=ds=#sr# 300" };
+ { 4, "s24140", "19694", "=q3=Darksoul Leggings", "=ds=#sr# 300" };
+ { 5, "s16744", "12619", "=q3=Enchanted Thorium Leggings", "=ds=#sr# 300" };
+ { 6, "s16730", "12429", "=q2=Imperial Plate Leggings", "=ds=#sr# 300" };
+ { 7, "s16725", "12420", "=q2=Radiant Leggings", "=ds=#sr# 300" };
+ { 8, "s16732", "12614", "=q2=Runic Plate Leggings", "=ds=#sr# 300" };
+ { 9, "s36122", "30069", "=q3=Earthforged Leggings", "=ds=#sr# 260" };
+ { 10, "s36124", "30070", "=q3=Windforged Leggings", "=ds=#sr# 260" };
+ { 11, "s9945", "7926", "=q2=Ornate Mithril Pants", "=ds=#sr# 220" };
+ { 12, "s9931", "7920", "=q2=Mithril Scale Pants", "=ds=#sr# 210" };
+ { 13, "s9933", "7921", "=q2=Heavy Mithril Pants", "=ds=#sr# 210" };
+ { 14, "s9957", "7929", "=q2=Orcish War Leggings", "=ds=" .. AL["Quest"] .. "" };
+ { 15, "s3507", "3843", "=q2=Golden Scale Leggings", "=ds=#sr# 170" };
+ { 16, "s3506", "3842", "=q2=Green Iron Leggings", "=ds=#sr# 155" };
+ { 17, "s12259", "10423", "=q2=Silvered Bronze Leggings", "=ds=#sr# 155" };
+ { 18, "s2668", "2865", "=q2=Rough Bronze Leggings", "=ds=#sr# 105" };
+ { 19, "s3324", "3473", "=q2=Runed Copper Pants", "=ds=#sr# 45" };
+ { 20, "s2662", "2852", "=q1=Copper Chain Pants", "=ds=#sr# 1" };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Shoulder";
+ { 1, "s20873", "16988", "=q4=Fiery Chain Shoulders", "=ds=#sr# 300" };
+ { 2, "s24137", "19691", "=q3=Bloodsoul Shoulders", "=ds=#sr# 300" };
+ { 3, "s24141", "19695", "=q3=Darksoul Shoulders", "=ds=#sr# 300" };
+ { 4, "s16664", "12610", "=q2=Runic Plate Shoulders", "=ds=#sr# 300" };
+ { 5, "s16660", "12625", "=q3=Dawnbringer Shoulders", "=ds=#sr# 290" };
+ { 6, "s15295", "11605", "=q2=Dark Iron Shoulders", "=ds=#sr# 280" };
+ { 7, "s16646", "12428", "=q2=Imperial Plate Shoulders", "=ds=#sr# 265" };
+ { 8, "s9966", "7932", "=q2=Mithril Scale Shoulders", "=ds=#sr# 235" };
+ { 9, "s9952", "7928", "=q2=Ornate Mithril Shoulder", "=ds=#sr# 225" };
+ { 10, "s9926", "7918", "=q2=Heavy Mithril Shoulder", "=ds=#sr# 205" };
+ { 11, "s3505", "3841", "=q2=Golden Scale Shoulders", "=ds=#sr# 175" };
+ { 12, "s9811", "7913", "=q2=Barbaric Iron Shoulders", "=ds=#sr# 160" };
+ { 13, "s3504", "3840", "=q2=Green Iron Shoulders", "=ds=#sr# 160" };
+ { 14, "s3330", "3481", "=q2=Silvered Bronze Shoulders", "=ds=#sr# 125" };
+ { 15, "s3328", "3480", "=q1=Rough Bronze Shoulders", "=ds=#sr# 110" };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Waist";
+ { 1, "s27585", "22197", "=q3=Heavy Obsidian Belt", "=ds=#sr# 300" };
+ { 2, "s28463", "22764", "=q3=Ironvine Belt", "=ds=#sr# 300" };
+ { 3, "s27588", "22195", "=q3=Light Obsidian Belt", "=ds=#sr# 300" };
+ { 4, "s20872", "16989", "=q4=Fiery Chain Girdle", "=ds=#sr# 295" };
+ { 5, "s23632", "19051", "=q3=Girdle of the Dawn", "=ds=#sr# 290" };
+ { 6, "s23628", "19043", "=q3=Heavy Timbermaw Belt", "=ds=#sr# 290" };
+ { 7, "s16647", "12424", "=q2=Imperial Plate Belt", "=ds=#sr# 265" };
+ { 8, "s16645", "12416", "=q2=Radiant Belt", "=ds=#sr# 260" };
+ { 9, "s16643", "12406", "=q2=Thorium Belt", "=ds=#sr# 250" };
+ { 10, "s2666", "2857", "=q1=Runed Copper Belt", "=ds=#sr# 70" };
+ { 11, "s2661", "2851", "=q1=Copper Chain Belt", "=ds=#sr# 35" };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Wrist";
+ { 1, "s28244", "22671", "=q4=Icebane Bracers", "=ds=#sr# 300" };
+ { 2, "s20874", "17014", "=q4=Dark Iron Bracers", "=ds=#sr# 295" };
+ { 3, "s16649", "12425", "=q2=Imperial Plate Bracers", "=ds=#sr# 270" };
+ { 4, "s16644", "12408", "=q2=Thorium Bracers", "=ds=#sr# 255" };
+ { 5, "s9937", "7924", "=q2=Mithril Scale Bracers", "=ds=#sr# 215" };
+ { 6, "s7223", "6040", "=q1=Golden Scale Bracers", "=ds=#sr# 185" };
+ { 7, "s3501", "3835", "=q1=Green Iron Bracers", "=ds=#sr# 165" };
+ { 8, "s2672", "2868", "=q2=Patterned Bronze Bracers", "=ds=#sr# 120" };
+ { 9, "s2664", "2854", "=q1=Runed Copper Bracers", "=ds=#sr# 90" };
+ { 10, "s2663", "2853", "=q1=Copper Bracers", "=ds=#sr# 1" };
+ };
+ {
+ Name = "Weapon - One Handed";
+ { 1, "s23638", "19166", "=q4=Black Amnesty", "=ds=#sr# 300" };
+ { 2, "s23652", "19168", "=q4=Blackguard", "=ds=#sr# 300" };
+ { 3, "s23650", "19170", "=q4=Ebon Hand", "=ds=#sr# 300" };
+ { 4, "s27830", "22384", "=q4=Persuader", "=ds=#sr# 300" };
+ { 5, "s27832", "22383", "=q4=Sageblade", "=ds=#sr# 300" };
+ { 6, "s16991", "12798", "=q3=Annihilator", "=ds=#sr# 300" };
+ { 7, "s20897", "17016", "=q3=Dark Iron Destroyer", "=ds=#sr# 300" };
+ { 8, "s20890", "17015", "=q3=Dark Iron Reaver", "=ds=#sr# 300" };
+ { 9, "s16992", "12797", "=q3=Frostguard", "=ds=#sr# 300" };
+ { 10, "s16995", "12783", "=q3=Heartseeker", "=ds=#sr# 300" };
+ { 11, "s16993", "12794", "=q3=Masterwork Stormhammer", "=ds=#sr# 300" };
+ { 12, "s16983", "12781", "=q3=Serenity", "=ds=#sr# 285" };
+ { 13, "s16978", "12777", "=q3=Blazing Rapier", "=ds=#sr# 280" };
+ { 14, "s16970", "12774", "=q3=Dawn's Edge", "=ds=#sr# 275" };
+ { 15, "s36125", "30071", "=q3=Light Earthforged Blade", "=ds=#sr# 260" };
+ { 16, "s36128", "30073", "=q3=Light Emberforged Hammer", "=ds=#sr# 260" };
+ { 17, "s36126", "30072", "=q3=Light Skyforged Axe", "=ds=#sr# 260" };
+ { 18, "s10007", "7961", "=q3=Phantom Blade", "=ds=#sr# 245" };
+ { 19, "s10003", "7954", "=q3=The Shatterer", "=ds=#sr# 235" };
+ { 20, "s16984", "12792", "=q2=Volcanic Hammer", "=ds=#sr# 290" };
+ { 21, "s16969", "12773", "=q2=Ornate Thorium Handaxe", "=ds=#sr# 275" };
+ { 22, "s10013", "7947", "=q2=Ebon Shiv", "=ds=#sr# 255" };
+ { 23, "s10009", "7946", "=q2=Runed Mithril Hammer", "=ds=#sr# 245" };
+ { 24, "s10005", "7944", "=q2=Dazzling Mithril Rapier", "=ds=#sr# 240" };
+ { 25, "s10001", "7945", "=q2=Big Black Mace", "=ds=#sr# 230" };
+ { 26, "s9997", "7943", "=q2=Wicked Mithril Blade", "=ds=#sr# 225" };
+ { 27, "s9995", "7942", "=q2=Blue Glittering Axe", "=ds=#sr# 220" };
+ { 28, "s9993", "7941", "=q2=Heavy Mithril Axe", "=ds=#sr# 210" };
+ { 29, "s15973", "12260", "=q2=Searing Golden Blade", "=ds=#sr# 190" };
+ { 30, "s21913", "17704", "=q2=Edge of Winter", "=ds=#sr# 190" };
+ };
+ {
+ Name = "Weapon - One Handed";
+ { 1, "s15972", "12259", "=q2=Glinting Steel Dagger", "=ds=#sr# 180" };
+ { 2, "s3493", "3850", "=q2=Jade Serpentblade", "=ds=#sr# 175" };
+ { 3, "s3492", "3849", "=q2=Hardened Iron Shortsword", "=ds=#sr# 160" };
+ { 4, "s3297", "3492", "=q2=Mighty Iron Hammer", "=ds=#sr# 145" };
+ { 5, "s6518", "5541", "=q2=Iridescent Hammer", "=ds=#sr# 140" };
+ { 6, "s3296", "3491", "=q2=Heavy Bronze Mace", "=ds=#sr# 130" };
+ { 7, "s3295", "3490", "=q2=Deadly Bronze Poniard", "=ds=#sr# 125" };
+ { 8, "s6517", "5540", "=q2=Pearl-handled Dagger", "=ds=#sr# 110" };
+ { 9, "s3491", "3848", "=q2=Big Bronze Knife", "=ds=#sr# 105" };
+ { 10, "s3294", "3489", "=q2=Thick War Axe", "=ds=#sr# 70" };
+ { 11, "s43549", "33791", "=q2=Heavy Copper Longsword", "=ds=#sr# 35" };
+ { 12, "s2742", "2850", "=q1=Bronze Shortsword", "=ds=#sr# 120" };
+ { 13, "s2741", "2849", "=q1=Bronze Axe", "=ds=#sr# 115" };
+ { 14, "s2740", "2848", "=q1=Bronze Mace", "=ds=#sr# 110" };
+ { 15, "s2738", "2845", "=q1=Copper Axe", "=ds=#sr# 20" };
+ { 16, "s2737", "2844", "=q1=Copper Mace", "=ds=#sr# 15" };
+ };
+ {
+ Name = "Weapon - Two Handed";
+ { 1, "s23639", "19167", "=q4=Blackfury", "=ds=#sr# 300" };
+ { 2, "s23653", "19169", "=q4=Nightfall", "=ds=#sr# 300" };
+ { 3, "s21161", "17193", "=q4=Sulfuron Hammer", "=ds=#sr# 300" };
+ { 4, "s16990", "12790", "=q3=Arcanite Champion", "=ds=#sr# 300" };
+ { 5, "s16994", "12784", "=q3=Arcanite Reaper", "=ds=#sr# 300" };
+ { 6, "s16988", "12796", "=q3=Hammer of the Titans", "=ds=#sr# 300" };
+ { 7, "s16985", "12782", "=q3=Corruption", "=ds=#sr# 290" };
+ { 8, "s16973", "12776", "=q3=Enchanted Battlehammer", "=ds=#sr# 280" };
+ { 9, "s15294", "11607", "=q3=Dark Iron Sunderer", "=ds=#sr# 275" };
+ { 10, "s15292", "11608", "=q3=Dark Iron Pulverizer", "=ds=#sr# 265" };
+ { 11, "s10015", "7960", "=q3=Truesilver Champion", "=ds=#sr# 260" };
+ { 12, "s10011", "7959", "=q3=Blight", "=ds=#sr# 250" };
+ { 13, "s16971", "12775", "=q2=Huge Thorium Battleaxe", "=ds=#sr# 280" };
+ { 14, "s3500", "3856", "=q2=Shadow Crescent Axe", "=ds=#sr# 200" };
+ { 15, "s3497", "3854", "=q2=Frost Tiger Blade", "=ds=#sr# 200" };
+ { 16, "s3498", "3855", "=q2=Massive Iron Axe", "=ds=#sr# 185" };
+ { 17, "s3496", "3853", "=q2=Moonsteel Broadsword", "=ds=#sr# 180" };
+ { 18, "s3495", "3852", "=q2=Golden Iron Destroyer", "=ds=#sr# 170" };
+ { 19, "s3494", "3851", "=q2=Solid Iron Maul", "=ds=#sr# 155" };
+ { 20, "s3292", "3487", "=q2=Heavy Copper Broadsword", "=ds=#sr# 95" };
+ { 21, "s3293", "3488", "=q2=Copper Battle Axe", "=ds=#sr# 35" };
+ { 22, "s9987", "7958", "=q1=Bronze Battle Axe", "=ds=#sr# 135" };
+ { 23, "s9986", "7957", "=q1=Bronze Greatsword", "=ds=#sr# 130" };
+ { 24, "s9985", "7956", "=q1=Bronze Warhammer", "=ds=#sr# 125" };
+ { 25, "s7408", "6214", "=q1=Heavy Copper Maul", "=ds=#sr# 65" };
+ { 26, "s9983", "7955", "=q1=Copper Claymore", "=ds=#sr# 30" };
+ { 27, "s8880", "7166", "=q1=Copper Dagger", "=ds=#sr# 30" };
+ { 28, "s2739", "2847", "=q1=Copper Shortsword", "=ds=#sr# 25" };
+
+ };
+ {
+ Name = "Weapon - Thrown";
+ { 1, "s34979", "29201", "=q2=Thick Bronze Darts", "=ds=#sr# 100" };
+ { 2, "s34982", "29203", "=q2=Enchanted Thorium Blades", "=ds=#sr# 300" };
+ { 3, "s34981", "29202", "=q2=Whirling Steel Axes", "=ds=#sr# 200" };
+ };
+ {
+ Name = "Shield";
+ { 1, "s27586", "22198", "=q4=Jagged Obsidian Shield", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Item Enhancements"];
+ { 1, "s16641", "12404", "=q1=Dense Sharpening Stone", "=ds=#sr# 250" };
+ { 2, "s16640", "12643", "=q1=Dense Weightstone", "=ds=#sr# 250" };
+ { 3, "s9918", "7964", "=q1=Solid Sharpening Stone", "=ds=#sr# 200" };
+ { 4, "s9921", "7965", "=q1=Solid Weightstone", "=ds=#sr# 200" };
+ { 5, "s7224", "6041", "=q1=Steel Weapon Chain", "=ds=#sr# 190" };
+ { 6, "s7222", "6043", "=q1=Iron Counterweight", "=ds=#sr# 165" };
+ { 7, "s7221", "6042", "=q1=Iron Shield Spike", "=ds=#sr# 150" };
+ { 8, "s2674", "2871", "=q1=Heavy Sharpening Stone", "=ds=#sr# 125" };
+ { 9, "s3117", "3241", "=q1=Heavy Weightstone", "=ds=#sr# 125" };
+ { 10, "s2665", "2863", "=q1=Coarse Sharpening Stone", "=ds=#sr# 65" };
+ { 11, "s3116", "3240", "=q1=Coarse Weightstone", "=ds=#sr# 65" };
+ { 12, "s2660", "2862", "=q1=Rough Sharpening Stone", "=ds=#sr# 1" };
+ { 13, "s3115", "3239", "=q1=Rough Weightstone", "=ds=#sr# 1" };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s59406", "43853", "=q2=Titanium Skeleton Key", "=ds=" .. AL["Trainer"] };
+ { 2, "s59405", "43854", "=q2=Cobalt Skeleton Key", "=ds=" .. AL["Trainer"] };
+ { 3, "s19669", "15872", "=q2=Arcanite Skeleton Key", "=ds=#sr# 275" };
+ { 4, "s19668", "15871", "=q2=Truesilver Skeleton Key", "=ds=#sr# 200" };
+ { 5, "s19667", "15870", "=q2=Golden Skeleton Key", "=ds=#sr# 150" };
+ { 6, "s19666", "15869", "=q2=Silver Skeleton Key", "=ds=#sr# 100" };
+ { 7, "s55732", "41745", "=q1=Titanium Rod", "=ds=" .. AL["Trainer"] };
+ { 8, "s32657", "25845", "=q1=Eternium Rod", "=ds=#sr# 360" };
+ { 9, "s32656", "25844", "=q1=Adamantite Rod", "=ds=#sr# 350" };
+ { 10, "s32655", "25843", "=q1=Fel Iron Rod", "=ds=#sr# 300" };
+ { 11, "s20201", "16206", "=q1=Arcanite Rod", "=ds=#sr# 275" };
+ { 12, "s16639", "12644", "=q1=Dense Grinding Stone", "=ds=#sr# 250" };
+ { 13, "s11454", "9060", "=q1=Inlaid Mithril Cylinder", "=ds=#sr# 200" };
+ { 14, "s14380", "11144", "=q1=Truesilver Rod", "=ds=#sr# 200" };
+ { 15, "s9920", "7966", "=q1=Solid Grinding Stone", "=ds=#sr# 200" };
+ { 16, "s14379", "11128", "=q1=Golden Rod", "=ds=#sr# 150" };
+ { 17, "s8768", "7071", "=q1=Iron Buckle", "=ds=#sr# 150" };
+ { 18, "s3337", "3486", "=q1=Heavy Grinding Stone", "=ds=#sr# 125" };
+ { 19, "s7818", "6338", "=q1=Silver Rod", "=ds=#sr# 100" };
+ { 20, "s3326", "3478", "=q1=Coarse Grinding Stone", "=ds=#sr# 75" };
+ { 21, "s3320", "3470", "=q1=Rough Grinding Stone", "=ds=#sr# 25" };
+ };
+ {
+ Name = ARMORSMITH;
+ { 1, "s36122", "30069", "=q3=Earthforged Leggings", "=ds=#sr# 260" };
+ { 2, "s36124", "30070", "=q3=Windforged Leggings", "=ds=#sr# 260" };
+ };
+ {
+ Name = WEAPONSMITH;
+ { 1, "s36125", "30071", "=q3=Light Earthforged Blade", "=ds=#sr# 260" };
+ { 2, "s36128", "30073", "=q3=Light Emberforged Hammer", "=ds=#sr# 260" };
+ { 3, "s36126", "30072", "=q3=Light Skyforged Axe", "=ds=#sr# 260" };
+ };
+};
+---------------
+--- Cooking ---
+---------------
+
+AtlasLoot_Data["CookingCLASSIC"] = {
+ Name = COOKING;
+ Type = "CraftingNoBF";
+ {
+ Name = COOKING;
+ { 1, "s25659", "21023", "=q1=Dirge's Kickin' Chimaerok Chops", "=ds=" .. AL["Quest"] .. "" };
+ { 2, "s966455", "100626", "=q1=Azerothian Schmorgus Boards", "=ds=" .. AL["Vendor"] .. "" };
+ { 3, "s966436", "100609", "=q1=Chilled Lava Eels", "=ds=" .. AL["Vendor"] .. "" };
+ { 4, "s966435", "100608", "=q1=Chillwind Flank Steaks", "=ds=" .. AL["Drop"] .. "" };
+ { 5, "s966434", "100607", "=q1=Hippogryph Steaks", "=ds=" .. AL["Quest"] .. "" };
+ { 6, "s966433", "100606", "=q1=Steamed Makrinni Claws", "=ds=" .. AL["Quest"] .. "" };
+ { 7, "s966432", "100605", "=q1=Rubbed Ravasaur Ribss", "=ds=" .. AL["Drop"] .. "" };
+ { 8, "s966431", "100604", "=q1=Hearty Stegodon Stews", "=ds=" .. AL["Drop"] .. "" };
+ { 9, "s966430", "100603", "=q1=Crispy Pterrordax Wings", "=ds=" .. AL["Drop"] .. "" };
+ { 10, "s966429", "100602", "=q1=Spicy Dino Jerkys", "=ds=" .. AL["Drop"] .. "" };
+ { 11, "s966428", "100601", "=q1=Dirge's Nevermelt Ice Creams", "=ds=" .. AL["Quest"] .. "" };
+ { 12, "s966427", "100599", "=q1=Silithid Snacks", "=ds=" .. AL["Quest"] .. "" };
+ { 13, "s966426", "100598", "=q1=Hydra Scale Soups", "=ds=" .. AL["Quest"] .. "" };
+ { 14, "s966425", "100597", "=q1=Ghostly Goulashs", "=ds=" .. AL["Quest"] .. "" };
+ { 15, "s966398", "100583", "=q1=Seared Cunning Carps", "=ds=" .. AL["Drop"] .. "" };
+ };
+ {
+ Name = COOKING;
+ { 1, "s24801", "20452", "=q1=Smoked Desert Dumplings", "=ds=" .. AL["Quest"] .. "" };
+ { 2, "s18247", "13935", "=q1=Baked Salmon", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Feralas"] };
+ { 3, "s18245", "13933", "=q1=Lobster Stew", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Feralas"] };
+ { 4, "s18246", "13934", "=q1=Mightfish Steak", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Feralas"] };
+ { 5, "s22761", "18254", "=q1=Runn Tum Tuber Surprise", "=ds=" .. AL["Drop"] .. "" };
+ { 6, "s46684", "35563", "=q1=Charred Bear Kabobs", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Felwood"] };
+ { 7, "s46688", "35565", "=q1=Juicy Bear Burger", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Felwood"] };
+ { 8, "s18243", "13931", "=q1=Nightfin Soup", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Tanaris"] };
+ { 9, "s18244", "13932", "=q1=Poached Sunscale Salmon", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Tanaris"] };
+ { 10, "s18240", "13928", "=q1=Grilled Squid", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Tanaris"] };
+ { 11, "s18242", "13929", "=q1=Hot Smoked Bass", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Stranglethorn Vale"] };
+ { 12, "s64054", "INV_Misc_Shell_03", "=q1=Clamlette Magnifique", "=ds=" .. AL["Quest"] .. "" };
+ { 13, "s18239", "13927", "=q1=Cooked Glossy Mightfish", "=ds=" .. AL["Vendor"] ..", " .. BabbleZone["Stranglethorn Vale"] };
+ { 14, "s18241", "13930", "=q1=Filet of Redgill", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Stranglethorn Vale"] };
+ { 15, "s15933", "12218", "=q1=Monster Omelet", "=ds=" .. AL["Vendor"] .. "" };
+ { 16, "s15915", "12216", "=q1=Spiced Chili Crab", "=ds=" .. AL["Vendor"] .. "" };
+ { 17, "s18238", "6887", "=q1=Spotted Yellowtail", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Tanaris"] };
+ { 18, "s22480", "18045", "=q1=Tender Wolf Steak", "=ds=" .. AL["Vendor"] .. "" };
+ { 19, "s20626", "16766", "=q1=Undermine Clam Chowder", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Tanaris"] };
+ { 20, "s15906", "12217", "=q1=Dragonbreath Chili", "=ds=" .. AL["Vendor"] .. "" };
+ { 21, "s15910", "12215", "=q1=Heavy Kodo Stew", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Desolace"] };
+ { 22, "s21175", "17222", "=q1=Spider Sausage", "=ds=" .. AL["Trainer"] };
+ { 23, "s4094", "4457", "=q1=Barbecued Buzzard Wing", "=ds=" };
+ { 24, "s15863", "12213", "=q1=Carrion Surprise", "=ds=" .. AL["Vendor"] .. "" };
+ { 25, "s7213", "6038", "=q1=Giant Clam Scorcho", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Stranglethorn Vale"] };
+ { 26, "s13028", "10841", "=q1=Goldthorn Tea", "=ds=" };
+ { 27, "s15856", "13851", "=q1=Hot Wolf Ribs", "=ds=" .. AL["Vendor"] .. "" };
+ };
+ {
+ Name = COOKING;
+ { 1, "s15861", "12212", "=q1=Jungle Stew", "=ds=" .. AL["Vendor"] .. "" };
+ { 2, "s20916", "8364", "=q1=Mithril Head Trout", "=ds=" .. AL["Vendor"] .. "" };
+ { 3, "s15865", "12214", "=q1=Mystery Stew", "=ds=" .. AL["Vendor"] .. "" };
+ { 4, "s15855", "12210", "=q1=Roast Raptor", "=ds=" .. AL["Vendor"] .. "" };
+ { 5, "s7828", "4594", "=q1=Rockscale Cod", "=ds=" .. AL["Vendor"] .. "" };
+ { 6, "s25954", "21217", "=q1=Sagefish Delight", "=ds=" .. AL["Vendor"] .. "" };
+ { 7, "s3400", "3729", "=q1=Soothing Turtle Bisque", "=ds=" .. AL["Quest"] .. "" };
+ { 8, "s24418", "20074", "=q1=Heavy Crocolisk Stew", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dustwallow Marsh"] };
+ { 9, "s3399", "3728", "=q1=Tasty Lion Steak", "=ds=" .. AL["Quest"] .. "" };
+ { 10, "s3376", "3665", "=q1=Curiously Tasty Omelet", "=ds=" };
+ { 11, "s6500", "5527", "=q1=Goblin Deviled Clams", "=ds=" .. AL["Trainer"] };
+ { 12, "s3398", "3727", "=q1=Hot Lion Chops", "=ds=" };
+ { 13, "s15853", "12209", "=q1=Lean Wolf Steak", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Desolace"] };
+ { 14, "s3373", "3664", "=q1=Crocolisk Gumbo", "=ds=" };
+ { 15, "s3397", "3726", "=q1=Big Bear Steak", "=ds=" };
+ { 16, "s3377", "3666", "=q1=Gooey Spider Cake", "=ds=" };
+ { 17, "s6419", "5480", "=q1=Lean Venison", "=ds=" .. AL["Vendor"] .. "" };
+ { 18, "s2548", "2685", "=q1=Succulent Pork Ribs", "=ds=" };
+ { 19, "s7755", "4593", "=q1=Bristle Whisker Catfish", "=ds=" .. AL["Vendor"] .. "" };
+ { 20, "s45695", "34832", "=q1=Captain Rumsey's Lager", "=ds=" .. AL["Drop"] .. "" };
+ { 21, "s6418", "5479", "=q1=Crispy Lizard Tail", "=ds=" .. AL["Vendor"] .. "" };
+ { 22, "s2547", "1082", "=q1=Redridge Goulash", "=ds=" };
+ { 23, "s2549", "1017", "=q1=Seasoned Wolf Kabob", "=ds=" };
+ { 24, "s6501", "5526", "=q1=Clam Chowder", "=ds=" .. AL["Vendor"] .. "" };
+ { 25, "s6417", "5478", "=q1=Dig Rat Stew", "=ds=" .. AL["Quest"] .. "" };
+ { 26, "s3372", "3663", "=q1=Murloc Fin Soup", "=ds=" };
+ { 27, "s2545", "2682", "=q1=Cooked Crab Claw", "=ds=" };
+ { 28, "s8238", "6657", "=q1=Savory Deviate Delight", "=ds=" .. AL["Drop"] .. "" };
+ { 29, "s3370", "3662", "=q1=Crocolisk Steak", "=ds=" };
+ { 30, "s8607", "6890", "=q1=Smoked Bear Meat", "=ds=" .. AL["Vendor"] .. "" };
+ };
+ {
+ Name = COOKING;
+ { 1, "s2546", "2687", "=q1=Dry Pork Ribs", "=ds=" .. AL["Trainer"] };
+ { 2, "s25704", "21072", "=q1=Smoked Sagefish", "=ds=" .. AL["Vendor"] .. "" };
+ { 3, "s2544", "2683", "=q1=Crab Cake", "=ds=" .. AL["Trainer"] };
+ { 4, "s62050", "44837", "=q1=Cornbread Stuffing", "=ds=" };
+ { 5, "s2543", "733", "=q1=Westfall Stew", "=ds=" };
+ { 6, "s3371", "3220", "=q1=Blood Sausage", "=ds=" };
+ { 7, "s28267", "22645", "=q1=Crunchy Spider Surprise", "=ds=" };
+ { 8, "s9513", "7676", "=q1=Thistle Tea", "=ds=" };
+ { 9, "s33278", "27636", "=q1=Bat Bites", "=ds=" .. AL["Vendor"] .. "" };
+ { 10, "s6499", "5525", "=q1=Boiled Clams", "=ds=" .. AL["Trainer"] };
+ { 11, "s2541", "2684", "=q1=Coyote Steak", "=ds=" .. AL["Trainer"] };
+ { 12, "s6415", "5476", "=q1=Fillet of Frenzy", "=ds=" .. AL["Vendor"] .. "" };
+ { 13, "s2542", "724", "=q1=Goretusk Liver Pie", "=ds=" };
+ { 14, "s7754", "6316", "=q1=Loch Frenzy Delight", "=ds=" .. AL["Vendor"] .. "" };
+ { 15, "s7753", "4592", "=q1=Longjaw Mud Snapper", "=ds=" .. AL["Vendor"] .. "" };
+ { 16, "s7827", "5095", "=q1=Rainbow Fin Albacore", "=ds=" .. AL["Vendor"] .. "" };
+ { 17, "s62045", "34112", "=q1=Roasted Turkey", "=ds=" };
+ { 18, "s6416", "5477", "=q1=Strider Stew", "=ds=" };
+ { 19, "s62044", "1645", "=q1=Tasty Cranberries", "=ds=" };
+ { 20, "s62051", "44839", "=q1=Candied Yam", "=ds=" };
+ { 21, "s21144", "17198", "=q1=Egg Nog", "=ds=" .. AL["Vendor"] .. "" };
+ { 22, "s6414", "5474", "=q1=Roasted Kodo Meat", "=ds=" .. AL["Vendor"] .. "" };
+ { 23, "s62049", "44840", "=q1=Cranberry Chutney", "=ds=" };
+ { 24, "s6413", "5473", "=q1=Scorpid Surprise", "=ds=" .. AL["Vendor"] .. "" };
+ { 25, "s2795", "2888", "=q1=Beer Basted Boar Ribs", "=ds=" };
+ { 26, "s6412", "5472", "=q1=Kaldorei Spider Kabob", "=ds=" .. AL["Quest"] .. "" };
+ { 27, "s2539", "2680", "=q1=Spiced Wolf Meat", "=ds=" .. AL["Trainer"] };
+ { 28, "s7751", "6290", "=q1=Brilliant Smallfish", "=ds=" .. AL["Vendor"] .. "" };
+ { 29, "s2538", "2679", "=q1=Charred Wolf Meat", "=ds=" };
+ { 30, "s33276", "27635", "=q1=Lynx Steak", "=ds=" .. AL["Vendor"] .. "" };
+ };
+ {
+ Name = COOKING;
+ { 1, "s15935", "12224", "=q1=Crispy Bat Wing", "=ds=" .. AL["Vendor"] .. "" };
+ { 2, "s43779", "33924", "=q1=Delicious Chocolate Cake", "=ds=" .. AL["Drop"] .. "" };
+ { 3, "s21143", "17197", "=q1=Gingerbread Cookie", "=ds=" .. AL["Vendor"] .. "" };
+ { 4, "s8604", "6888", "=q1=Herb Baked Egg", "=ds=" };
+ { 5, "s2540", "2681", "=q1=Roasted Boar Meat", "=ds=" };
+ { 6, "s33277", "24105", "=q1=Roasted Moongraze Tenderloin", "=ds=" .. AL["Quest"] .. "" };
+ { 7, "s7752", "787", "=q1=Slitherskin Mackerel", "=ds=" .. AL["Vendor"] .. "" };
+ { 8, "s37836", "30816", "=q1=Spice Bread", "=ds=" .. AL["Trainer"] };
+ { 9, "s65454", "46691", "=q1=Bread of the Dead", "=ds=" .. AL["Vendor"] };
+ };
+};
+
+------------------
+--- Enchanting ---
+------------------
+
+AtlasLoot_Data["EnchantingCLASSIC"] = {
+ Name = ENCHANTING;
+ Type = "CraftingNoBF";
+ {
+ Name = AL["Enchant Boots"];
+ { 1, "s20023", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Agility", "=ds=#sr# 295" };
+ { 2, "s20024", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Spirit", "=ds=#sr# 275" };
+ { 3, "s20020", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Stamina", "=ds=#sr# 260" };
+ { 4, "s63746", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Accuracy", "=ds=" };
+ { 5, "s13935", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Agility", "=ds=#sr# 235" };
+ { 6, "s13890", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Minor Speed", "=ds=#sr# 225" };
+ { 16, "s13836", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Stamina", "=ds=#sr# 215" };
+ { 17, "s13687", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Spirit", "=ds=#sr# 190" };
+ { 18, "s13644", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Stamina", "=ds=#sr# 170" };
+ { 19, "s13637", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Agility", "=ds=#sr# 160" };
+ { 20, "s7867", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Minor Agility", "=ds=#sr# 125" };
+ { 21, "s7863", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Minor Stamina", "=ds=#sr# 125" };
+ };
+ {
+ Name = AL["Enchant Bracer"];
+ { 1, "s23802", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Healing Power", "=ds=#sr# 300" };
+ { 2, "s20011", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Stamina", "=ds=#sr# 300" };
+ { 3, "s20010", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Strength", "=ds=#sr# 295" };
+ { 4, "s23801", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Mana Regeneration", "=ds=#sr# 290" };
+ { 5, "s20009", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Spirit", "=ds=#sr# 270" };
+ { 6, "s20008", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Intellect", "=ds=#sr# 255" };
+ { 7, "s13939", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Strength", "=ds=#sr# 240" };
+ { 8, "s13945", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Stamina", "=ds=#sr# 245" };
+ { 9, "s13931", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Deflection", "=ds=#sr# 235" };
+ { 10, "s13846", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Spirit", "=ds=#sr# 220" };
+ { 11, "s13822", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Intellect", "=ds=#sr# 210" };
+ { 12, "s13661", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Strength", "=ds=#sr# 180" };
+ { 13, "s13646", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Deflection", "=ds=#sr# 170" };
+ { 14, "s13648", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Stamina", "=ds=#sr# 170" };
+ { 15, "s13642", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Spirit", "=ds=#sr# 165" };
+ { 16, "s13622", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Intellect", "=ds=#sr# 150" };
+ { 17, "s13536", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Strength", "=ds=#sr# 140" };
+ { 18, "s13501", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Stamina", "=ds=#sr# 130" };
+ { 19, "s7859", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Spirit", "=ds=#sr# 120" };
+ { 20, "s7779", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Agility", "=ds=#sr# 80" };
+ { 21, "s7782", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Strength", "=ds=#sr# 80" };
+ { 22, "s7457", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Stamina", "=ds=#sr# 50" };
+ { 23, "s7766", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Spirit", "=ds=#sr# 60" };
+ { 24, "s7418", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Health", "=ds=#sr# 1" };
+ { 25, "s7428", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Deflection", "=ds=#sr# 1" };
+ };
+ {
+ Name = AL["Enchant Chest"];
+ { 1, "s20025", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Stats", "=ds=#sr# 300" };
+ { 2, "s33991", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Restore Mana Prime", "=ds=#sr# 300" };
+ { 3, "s20028", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Mana", "=ds=#sr# 290" };
+ { 4, "s20026", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Health", "=ds=#sr# 275" };
+ { 5, "s13941", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Stats", "=ds=#sr# 245" };
+ { 6, "s13917", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Superior Mana", "=ds=#sr# 230" };
+ { 7, "s13858", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Superior Health", "=ds=#sr# 220" };
+ { 8, "s13700", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Stats", "=ds=#sr# 200" };
+ { 9, "s13663", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Mana", "=ds=#sr# 185" };
+ { 10, "s13640", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Health", "=ds=#sr# 160" };
+ { 11, "s13626", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Stats", "=ds=#sr# 150" };
+ { 12, "s13607", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Mana", "=ds=#sr# 145" };
+ { 13, "s13538", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Absorption", "=ds=#sr# 140" };
+ { 14, "s7857", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Health", "=ds=#sr# 120" };
+ { 15, "s7776", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Mana", "=ds=#sr# 80" };
+ { 16, "s7748", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Health", "=ds=#sr# 60" };
+ { 17, "s7443", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Mana", "=ds=#sr# 20" };
+ { 18, "s7420", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Health", "=ds=#sr# 15" };
+ };
+ {
+ Name = AL["Enchant Cloak"];
+ { 1, "s25081", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Fire Resistance", "=ds=#sr# 300" };
+ { 2, "s20015", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Defense", "=ds=#sr# 285" };
+ { 3, "s20014", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Resistance", "=ds=#sr# 265" };
+ { 4, "s13882", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Agility", "=ds=#sr# 225" };
+ { 5, "s13746", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Defense", "=ds=#sr# 205" };
+ { 6, "s13794", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Resistance", "=ds=#sr# 205" };
+ { 7, "s13657", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Fire Resistance", "=ds=#sr# 175" };
+ { 8, "s13635", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Defense", "=ds=#sr# 155" };
+ { 9, "s13522", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Shadow Resistance", "=ds=#sr# 135" };
+ { 10, "s7861", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Fire Resistance", "=ds=#sr# 125" };
+ { 11, "s13419", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Minor Agility", "=ds=#sr# 110" };
+ { 12, "s13421", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Protection", "=ds=#sr# 115" };
+ { 13, "s7771", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Minor Protection", "=ds=#sr# 70" };
+ { 14, "s7454", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Minor Resistance", "=ds=#sr# 45" };
+ { 15, "s7426", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Absorption", "=ds=#sr# 40" };
+ };
+ {
+ Name = AL["Enchant Gloves"];
+ { 1, "s25078", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Fire Power", "=ds=#sr# 300" };
+ { 2, "s25074", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Frost Power", "=ds=#sr# 300" };
+ { 3, "s25079", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Healing Power", "=ds=#sr# 300" };
+ { 4, "s25073", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Shadow Power", "=ds=#sr# 300" };
+ { 5, "s25080", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Superior Agility", "=ds=#sr# 300" };
+ { 6, "s25072", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Threat", "=ds=#sr# 300" };
+ { 7, "s20013", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Greater Strength", "=ds=#sr# 295" };
+ { 8, "s20012", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Greater Agility", "=ds=#sr# 270" };
+ { 9, "s13948", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Minor Haste", "=ds=#sr# 250" };
+ { 10, "s13947", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Riding Skill", "=ds=#sr# 250" };
+ { 11, "s13868", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Advanced Herbalism", "=ds=#sr# 225" };
+ { 12, "s13887", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Strength", "=ds=#sr# 225" };
+ { 13, "s13841", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Advanced Mining", "=ds=#sr# 215" };
+ { 14, "s13815", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Agility", "=ds=#sr# 210" };
+ { 15, "s13698", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Skinning", "=ds=#sr# 200" };
+ { 16, "s13620", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Fishing", "=ds=#sr# 145" };
+ { 17, "s13617", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Herbalism", "=ds=#sr# 145" };
+ { 18, "s13612", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Mining", "=ds=#sr# 145" };
+ };
+ {
+ Name = AL["Enchant Shield"];
+ { 1, "s20016", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Superior Spirit", "=ds=#sr# 280" };
+ { 2, "s20017", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Greater Stamina", "=ds=#sr# 265" };
+ { 3, "s13933", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Frost Resistance", "=ds=#sr# 235" };
+ { 4, "s13905", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Greater Spirit", "=ds=#sr# 230" };
+ { 5, "s13817", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Stamina", "=ds=#sr# 210" };
+ { 6, "s13689", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Block", "=ds=#sr# 195" };
+ { 7, "s13659", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Spirit", "=ds=#sr# 180" };
+ { 8, "s13631", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Stamina", "=ds=#sr# 155" };
+ { 9, "s13485", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Spirit", "=ds=#sr# 130" };
+ { 10, "s13464", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Protection", "=ds=#sr# 115" };
+ { 11, "s13378", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Minor Stamina", "=ds=#sr# 105" };
+ };
+ {
+ Name = AL["Enchant 2H Weapon"];
+ { 1, "s20036", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Major Intellect", "=ds=#sr# 300" };
+ { 2, "s20035", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Major Spirit", "=ds=#sr# 300" };
+ { 3, "s20030", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Superior Impact", "=ds=#sr# 295" };
+ { 4, "s27837", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Agility", "=ds=#sr# 290" };
+ { 5, "s13937", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Greater Impact", "=ds=#sr# 240" };
+ { 6, "s13695", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Impact", "=ds=#sr# 200" };
+ { 7, "s13529", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Lesser Impact", "=ds=#sr# 145" };
+ { 8, "s13380", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Lesser Spirit", "=ds=#sr# 110" };
+ { 9, "s7793", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Lesser Intellect", "=ds=#sr# 100" };
+ { 10, "s7745", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Minor Impact", "=ds=#sr# 100" };
+ };
+ {
+ Name = AL["Enchant Weapon"];
+ { 1, "s20034", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Crusader", "=ds=#sr# 300" };
+ { 2, "s22750", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Healing Power", "=ds=#sr# 300" };
+ { 3, "s20032", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lifestealing", "=ds=#sr# 300" };
+ { 4, "s23804", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Mighty Intellect", "=ds=#sr# 300" };
+ { 5, "s23803", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Mighty Spirit", "=ds=#sr# 300" };
+ { 6, "s22749", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Spell Power", "=ds=#sr# 300" };
+ { 7, "s20031", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Superior Striking", "=ds=#sr# 300" };
+ { 8, "s20033", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Unholy Weapon", "=ds=#sr# 295" };
+ { 9, "s23800", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Agility", "=ds=#sr# 290" };
+ { 10, "s23799", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Strength", "=ds=#sr# 290" };
+ { 11, "s20029", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Icy Chill", "=ds=#sr# 285" };
+ { 12, "s13898", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Fiery Weapon", "=ds=#sr# 265" };
+ { 13, "s13943", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Greater Striking", "=ds=#sr# 245" };
+ { 14, "s13915", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Demonslaying", "=ds=#sr# 230" };
+ { 15, "s13693", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Striking", "=ds=#sr# 195" };
+ { 16, "s21931", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Winter's Might", "=ds=#sr# 190" };
+ { 17, "s13655", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lesser Elemental Slayer", "=ds=#sr# 175" };
+ { 18, "s13653", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lesser Beastslayer", "=ds=#sr# 175" };
+ { 19, "s13503", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lesser Striking", "=ds=#sr# 140" };
+ { 20, "s7786", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Minor Beastslayer", "=ds=#sr# 90" };
+ { 21, "s7788", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Minor Striking", "=ds=#sr# 90" };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s25130", "20748", "=q1=Brilliant Mana Oil", "=ds=#sr# 300" };
+ { 2, "s25129", "20749", "=q1=Brilliant Wizard Oil", "=ds=#sr# 300" };
+ { 3, "s32664", "22461", "=q1=Runed Fel Iron Rod", "=ds=#sr# 300" };
+ { 4, "s20051", "16207", "=q1=Runed Arcanite Rod", "=ds=#sr# 290" };
+ { 5, "s25128", "20750", "=q1=Wizard Oil", "=ds=#sr# 275" };
+ { 6, "s17180", "12655", "=q1=Enchanted Thorium", "=ds=#sr# 250" };
+ { 7, "s25127", "20747", "=q1=Lesser Mana Oil", "=ds=#sr# 250" };
+ { 8, "s17181", "12810", "=q1=Enchanted Leather", "=ds=#sr# 250" };
+ { 9, "s25126", "20746", "=q1=Lesser Wizard Oil", "=ds=#sr# 200" };
+ { 10, "s13702", "11145", "=q1=Runed Truesilver Rod", "=ds=#sr# 200" };
+ { 11, "s25125", "20745", "=q1=Minor Mana Oil", "=ds=#sr# 150" };
+ { 12, "s13628", "11130", "=q1=Runed Golden Rod", "=ds=#sr# 150" };
+ { 13, "s7795", "6339", "=q1=Runed Silver Rod", "=ds=#sr# 100" };
+ { 14, "s25124", "20744", "=q1=Minor Wizard Oil", "=ds=#sr# 45" };
+ { 15, "s7421", "6218", "=q1=Runed Copper Rod", "=ds=#sr# 1" };
+ { 16, "s14810", "11290", "=q2=Greater Mystic Wand", "=ds=#sr# 175" };
+ { 17, "s14809", "11289", "=q2=Lesser Mystic Wand", "=ds=#sr# 155" };
+ { 18, "s14807", "11288", "=q2=Greater Magic Wand", "=ds=#sr# 70" };
+ { 19, "s14293", "11287", "=q2=Lesser Magic Wand", "=ds=#sr# 10" };
+ };
+};
+
+-------------------
+--- Engineering ---
+-------------------
+
+AtlasLoot_Data["EngineeringCLASSIC"] = {
+ Name = ENGINEERING;
+ Type = "Crafting";
+ {
+ Name = AL["Ammunition"];
+ { 1, 18042, "", "=q2=Thorium Headed Arrow", "Quest See Tooltip", "", "=EI=Trade Thorium Shells With\nArtilleryman Sheldonore in Ironforge\nBounty Hunter Kolark in Orgrimmar" };
+ { 2, "s19800", "15997", "=q2=Thorium Shells", "=ds=#sr# 285" };
+ { 3, "s12621", "10513", "=q2=Mithril Gyro-Shot", "=ds=#sr# 245" };
+ { 4, "s12596", "10512", "=q2=Hi-Impact Mithril Slugs", "=ds=#sr# 210" };
+ { 5, "s3947", "8069", "=q1=Crafted Solid Shot", "=ds=#sr# 125" };
+ { 6, "s3930", "8068", "=q1=Crafted Heavy Shot", "=ds=#sr# 75" };
+ { 7, "s3920", "8067", "=q1=Crafted Light Shot", "=ds=#sr# 1" };
+ };
+ {
+ Name = BabbleInventory["Armor"];
+ { 1, "s19830", "16022", "=q3=Arcanite Dragonling", "=ds=#sr# 300" };
+ { 2, "s24356", "19999", "=q3=Bloodvine Goggles", "=ds=#sr# 300" };
+ { 3, "s24357", "19998", "=q3=Bloodvine Lens", "=ds=#sr# 300" };
+ { 4, "s23082", "18639", "=q3=Ultra-Flash Shadow Reflector", "=ds=#sr# 300" };
+ { 5, "s23081", "18638", "=q3=Hyper-Radiant Flame Reflector", "=ds=#sr# 290" };
+ { 6, "s23077", "18634", "=q3=Gyrofreeze Ice Reflector", "=ds=#sr# 260" };
+ { 7, "s12622", "10504", "=q3=Green Lens", "=ds=#sr# 245" };
+ { 8, "s19825", "16008", "=q2=Master Engineer's Goggles", "=ds=#sr# 290" };
+ { 9, "s19819", "16009", "=q2=Voice Amplification Modulator", "=ds=#sr# 290" };
+ { 10, "s23079", "18637", "=q2=Major Recombobulator", "=ds=#sr# 275" };
+ { 11, "s19794", "15999", "=q2=Spellpower Goggles Xtreme Plus", "=ds=#sr# 270" };
+ { 12, "s12624", "10576", "=q2=Mithril Mechanical Dragonling", "=ds=#sr# 250" };
+ { 13, "s12617", "10506", "=q2=Deepdive Helmet", "=ds=#sr# 230" };
+ { 14, "s12618", "10503", "=q2=Rose Colored Goggles", "=ds=#sr# 230" };
+ { 15, "s12616", "10518", "=q2=Parachute Cloak", "=ds=#sr# 225" };
+ { 16, "s12615", "10502", "=q2=Spellpower Goggles Xtreme", "=ds=#sr# 225" };
+ { 17, "s12607", "10501", "=q2=Catseye Ultra Goggles", "=ds=#sr# 220" };
+ { 18, "s12594", "10500", "=q2=Fire Goggles", "=ds=#sr# 205" };
+ { 19, "s3969", "4396", "=q1=Mechanical Dragonling", "=ds=#sr# 200" };
+ { 20, "s3966", "4393", "=q2=Craftsman's Monocle", "=ds=#sr# 185" };
+ { 21, "s12587", "10499", "=q2=Bright-Eye Goggles", "=ds=#sr# 175" };
+ { 22, "s3956", "4385", "=q2=Green Tinted Goggles", "=ds=#sr# 150" };
+ { 23, "s3952", "4381", "=q2=Minor Recombobulator", "=ds=#sr# 140" };
+ { 24, "s3940", "4373", "=q2=Shadow Goggles", "=ds=#sr# 120" };
+ { 25, "s3934", "4368", "=q2=Flying Tiger Goggles", "=ds=#sr# 100" };
+ };
+ {
+ Name = AL["Explosives"];
+ { 1, "s19831", "16040", "=q1=Arcane Bomb", "=ds=#sr# 300" };
+ { 2, "s19799", "16005", "=q1=Dark Iron Bomb", "=ds=#sr# 285" };
+ { 3, "s23080", "18594", "=q1=Powerful Seaforium Charge", "=ds=#sr# 275" };
+ { 4, "s19790", "15993", "=q1=Thorium Grenade", "=ds=#sr# 260" };
+ { 5, "s23070", "18641", "=q1=Dense Dynamite", "=ds=#sr# 250" };
+ { 6, "s12619", "10562", "=q1=Hi-Explosive Bomb", "=ds=#sr# 235" };
+ { 7, "s12754", "10586", "=q1=The Big One", "=ds=#sr# 235" };
+ { 8, "s12603", "10514", "=q1=Mithril Frag Bomb", "=ds=#sr# 215" };
+ { 9, "s12716", "10577", "=q1=Goblin Mortar", "=ds=#sr# 205" };
+ { 10, "s12760", "10646", "=q1=Goblin Sapper Charge", "=ds=#sr# 205" };
+ { 11, "s13240", "10577", "=q1=The Mortar: Reloaded", "=ds=#sr# 205" };
+ { 12, "s23069", "18588", "=q1=EZ-Thro Dynamite II", "=ds=#sr# 200" };
+ { 13, "s3972", "4398", "=q1=Large Seaforium Charge", "=ds=#sr# 200" };
+ { 14, "s3968", "4395", "=q1=Goblin Land Mine", "=ds=#sr# 195" };
+ { 15, "s3967", "4394", "=q1=Big Iron Bomb", "=ds=#sr# 190" };
+ { 16, "s3962", "4390", "=q1=Iron Grenade", "=ds=#sr# 175" };
+ { 17, "s12586", "10507", "=q1=Solid Dynamite", "=ds=#sr# 175" };
+ { 18, "s3960", "4403", "=q1=Portable Bronze Mortar", "=ds=#sr# 165" };
+ { 19, "s3950", "4380", "=q1=Big Bronze Bomb", "=ds=#sr# 140" };
+ { 20, "s3946", "4378", "=q1=Heavy Dynamite", "=ds=#sr# 125" };
+ { 21, "s3941", "4374", "=q1=Small Bronze Bomb", "=ds=#sr# 120" };
+ { 22, "s3937", "4370", "=q1=Large Copper Bomb", "=ds=#sr# 105" };
+ { 23, "s8339", "6714", "=q1=EZ-Thro Dynamite", "=ds=#sr# 100" };
+ { 24, "s3933", "4367", "=q1=Small Seaforium Charge", "=ds=#sr# 100" };
+ { 25, "s3931", "4365", "=q1=Coarse Dynamite", "=ds=#sr# 75" };
+ { 26, "s3923", "4360", "=q1=Rough Copper Bomb", "=ds=#sr# 30" };
+ { 27, "s3919", "4358", "=q1=Rough Dynamite", "=ds=#sr# 1" };
+ };
+ {
+ Name = AL["Item Enhancements"];
+ { 1, "s22793", "18283", "=q3=Biznicks 247x128 Accurascope", "=ds=#sr# 300" };
+ { 2, "s12620", "10548", "=q1=Sniper Scope", "=ds=#sr# 240" };
+ { 3, "s12597", "10546", "=q1=Deadly Scope", "=ds=#sr# 210" };
+ { 4, "s3979", "4407", "=q2=Accurate Scope", "=ds=#sr# 180" };
+ { 5, "s3978", "4406", "=q1=Standard Scope", "=ds=#sr# 110" };
+ { 6, "s3977", "4405", "=q1=Crude Scope", "=ds=#sr# 60" };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s22704", "18232", "=q1=Field Repair Bot 74A", "=ds=#sr# 300" };
+ { 2, "s30573", "23832", "=q1=Gnomish Tonk Controller", "=ds=#sr# 295" };
+ { 3, "s30561", "23831", "=q1=Goblin Tonk Controller", "=ds=#sr# 295" };
+ { 4, "s26443", "21570", "=q1=Firework Cluster Launcher", "=ds=#sr# 275" };
+ { 5, "s19814", "16023", "=q1=Masterwork Target Dummy", "=ds=#sr# 275" };
+ { 6, "s26426", "21714", "=q1=Large Blue Rocket Cluster", "=ds=#sr# 275" };
+ { 7, "s26427", "21716", "=q1=Large Green Rocket Cluster", "=ds=#sr# 275" };
+ { 8, "s26428", "21718", "=q1=Large Red Rocket Cluster", "=ds=#sr# 275" };
+ { 9, "s23096", "18645", "=q1=Alarm-O-Bot", "=ds=#sr# 265" };
+ { 10, "s23078", "18587", "=q1=Goblin Jumper Cables XL", "=ds=#sr# 265" };
+ { 11, "s19793", "15996", "=q1=Lifelike Mechanical Toad", "=ds=#sr# 265" };
+ { 12, "s19567", "15846", "=q1=Salt Shaker", "=ds=#sr# 250" };
+ { 13, "s26011", "21277", "=q1=Tranquil Mechanical Yeti", "=ds=#sr# 250" };
+ { 14, "s23507", "19026", "=q1=Snake Burst Firework", "=ds=#sr# 250" };
+ { 15, "s26442", "21569", "=q1=Firework Launcher", "=ds=#sr# 225" };
+ { 16, "s26423", "21571", "=q1=Blue Rocket Cluster", "=ds=#sr# 225" };
+ { 17, "s26424", "21574", "=q1=Green Rocket Cluster", "=ds=#sr# 225" };
+ { 18, "s26425", "21576", "=q1=Red Rocket Cluster", "=ds=#sr# 225" };
+ { 19, "s12902", "10720", "=q1=Gnomish Net-o-Matic Projector", "=ds=#sr# 210" };
+ { 20, "s12715", "10644", "=q1=Goblin Rocket Fuel Recipe", "=ds=#sr# 205" };
+ { 21, "s12895", "10713", "=q1=Inlaid Mithril Cylinder Plans", "=ds=#sr# 205" };
+ { 22, "s15633", "11826", "=q1=Lil' Smoky", "=ds=#sr# 205" };
+ { 23, "s15628", "11825", "=q1=Pet Bombling", "=ds=#sr# 205" };
+ { 24, "s15255", "11590", "=q1=Mechanical Repair Kit", "=ds=#sr# 200" };
+ { 25, "s21940", "17716", "=q1=Snowmaster 9000", "=ds=#sr# 190" };
+ { 26, "s3965", "4392", "=q1=Advanced Target Dummy", "=ds=#sr# 185" };
+ { 27, "s8243", "4852", "=q1=Flash Bomb", "=ds=#sr# 185" };
+ { 28, "s26420", "21589", "=q1=Large Blue Rocket", "=ds=#sr# 175" };
+ { 29, "s26421", "21590", "=q1=Large Green Rocket", "=ds=#sr# 175" };
+ { 30, "s26422", "21592", "=q1=Large Red Rocket", "=ds=#sr# 175" };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s3963", "4391", "=q1=Compact Harvest Reaper Kit", "=ds=#sr# 175" };
+ { 2, "s9273", "7148", "=q1=Goblin Jumper Cables", "=ds=#sr# 165" };
+ { 3, "s3959", "4388", "=q1=Discombobulator Ray", "=ds=#sr# 160" };
+ { 4, "s3957", "4386", "=q1=Ice Deflector", "=ds=#sr# 155" };
+ { 5, "s3955", "4384", "=q1=Explosive Sheep", "=ds=#sr# 150" };
+ { 6, "s9271", "6533", "=q1=Aquadynamic Fish Attractor", "=ds=#sr# 150" };
+ { 7, "s23067", "9312", "=q1=Blue Firework", "=ds=#sr# 150" };
+ { 8, "s23068", "9313", "=q1=Green Firework", "=ds=#sr# 150" };
+ { 9, "s23066", "9318", "=q1=Red Firework", "=ds=#sr# 150" };
+ { 10, "s6458", "5507", "=q1=Ornate Spyglass", "=ds=#sr# 135" };
+ { 11, "s26416", "21558", "=q1=Small Blue Rocket", "=ds=#sr# 125" };
+ { 12, "s26417", "21559", "=q1=Small Green Rocket", "=ds=#sr# 125" };
+ { 13, "s26418", "21557", "=q1=Small Red Rocket", "=ds=#sr# 125" };
+ { 14, "s3944", "4376", "=q1=Flame Deflector", "=ds=#sr# 125" };
+ { 15, "s8334", "6712", "=q1=Practice Lock", "=ds=#sr# 100" };
+ { 16, "s3932", "4366", "=q1=Target Dummy", "=ds=#sr# 85" };
+ { 17, "s3928", "4401", "=q1=Mechanical Squirrel", "=ds=#sr# 75" };
+ };
+ {
+ Name = AL["Reagents"];
+ { 1, "s19815", "16006", "=q1=Delicate Arcanite Converter", "=ds=#sr# 285" };
+ { 2, "s19795", "16000", "=q1=Thorium Tube", "=ds=#sr# 275" };
+ { 3, "s39895", "7191", "=q1=Fused Wiring", "=ds=#sr# 275" };
+ { 4, "s19791", "15994", "=q1=Thorium Widget", "=ds=#sr# 260" };
+ { 5, "s23071", "18631", "=q1=Truesilver Transformer", "=ds=#sr# 260" };
+ { 6, "s19788", "15992", "=q1=Dense Blasting Powder", "=ds=#sr# 250" };
+ { 7, "s12599", "10561", "=q1=Mithril Casing", "=ds=#sr# 215" };
+ { 8, "s12591", "10560", "=q1=Unstable Trigger", "=ds=#sr# 200" };
+ { 9, "s12589", "10559", "=q1=Mithril Tube", "=ds=#sr# 195" };
+ { 10, "s12590", "10498", "=q1=Gyromatic Micro-Adjustor", "=ds=#sr# 175" };
+ { 11, "s12585", "10505", "=q1=Solid Blasting Powder", "=ds=#sr# 175" };
+ { 12, "s3961", "4389", "=q1=Gyrochronatom", "=ds=#sr# 170" };
+ { 13, "s3958", "4387", "=q1=Iron Strut", "=ds=#sr# 160" };
+ { 14, "s12584", "10558", "=q1=Gold Power Core", "=ds=#sr# 150" };
+ { 15, "s3953", "4382", "=q1=Bronze Framework", "=ds=#sr# 145" };
+ { 16, "s3942", "4375", "=q1=Whirring Bronze Gizmo", "=ds=#sr# 125" };
+ { 17, "s3945", "4377", "=q1=Heavy Blasting Powder", "=ds=#sr# 125" };
+ { 18, "s3938", "4371", "=q1=Bronze Tube", "=ds=#sr# 105" };
+ { 19, "s3973", "4404", "=q1=Silver Contact", "=ds=#sr# 90" };
+ { 20, "s3929", "4364", "=q1=Coarse Blasting Powder", "=ds=#sr# 75" };
+ { 21, "s3926", "4363", "=q1=Copper Modulator", "=ds=#sr# 65" };
+ { 22, "s3924", "4361", "=q1=Copper Tube", "=ds=#sr# 50" };
+ { 23, "s3922", "4359", "=q1=Handful of Copper Bolts", "=ds=#sr# 30" };
+ { 24, "s3918", "4357", "=q1=Rough Blasting Powder", "=ds=#sr# 1" };
+ };
+ {
+ Name = BabbleInventory["Weapon"];
+ { 1, "s22795", "18282", "=q4=Core Marksman Rifle", "=ds=#sr# 300" };
+ { 2, "s19833", "16007", "=q3=Flawless Arcanite Rifle", "=ds=#sr# 300" };
+ { 3, "s19796", "16004", "=q3=Dark Iron Rifle", "=ds=#sr# 275" };
+ { 4, "s19792", "15995", "=q2=Thorium Rifle", "=ds=#sr# 260" };
+ { 5, "s12614", "10510", "=q2=Mithril Heavy-bore Rifle", "=ds=#sr# 220" };
+ { 6, "s12595", "10508", "=q2=Mithril Blunderbuss", "=ds=#sr# 205" };
+ { 7, "s3954", "4383", "=q2=Moonsight Rifle", "=ds=#sr# 145" };
+ { 8, "s3949", "4379", "=q2=Silver-plated Shotgun", "=ds=#sr# 130" };
+ { 9, "s3939", "4372", "=q2=Lovingly Crafted Boomstick", "=ds=#sr# 120" };
+ { 10, "s3936", "4369", "=q2=Deadly Blunderbuss", "=ds=#sr# 105" };
+ { 11, "s3925", "4362", "=q2=Rough Boomstick", "=ds=#sr# 50" };
+ { 12, "s7430", "6219", "=q1=Arclight Spanner", "=ds=#sr# 50" };
+ };
+ {
+ Name = GNOMISH;
+ { 1, "s23489", "18986", "=q2=Ultrasafe Transporter - Gadgetzan", "=ds=#sr# 260" };
+ { 2, "s23129", "18660", "=q2=World Enlarger", "=ds=#sr# 260" };
+ { 3, "s12907", "10726", "=q2=Gnomish Mind Control Cap", "=ds=#sr# 235" };
+ { 4, "s12905", "10724", "=q2=Gnomish Rocket Boots", "=ds=#sr# 225" };
+ { 5, "s12903", "10721", "=q2=Gnomish Harm Prevention Belt", "=ds=#sr# 215" };
+ { 6, "s12897", "10545", "=q2=Gnomish Goggles", "=ds=#sr# 210" };
+ { 7, "s30568", "23841", "=q1=Gnomish Flame Turret", "=ds=#sr# 325" };
+ { 8, "s23096", "18645", "=q1=Alarm-O-Bot", "=ds=#sr# 265" };
+ { 9, "s12759", "10645", "=q1=Gnomish Death Ray", "=ds=#sr# 240" };
+ { 10, "s12906", "10725", "=q1=Gnomish Battle Chicken", "=ds=#sr# 230" };
+ { 11, "s12902", "10720", "=q1=Gnomish Net-o-Matic Projector", "=ds=#sr# 210" };
+ { 12, "s12899", "10716", "=q1=Gnomish Shrink Ray", "=ds=#sr# 205" };
+ { 13, "s12895", "10713", "=q1=Inlaid Mithril Cylinder Plans", "=ds=#sr# 205" };
+ { 14, "s3971", "4397", "=q1=Gnomish Cloaking Device", "=ds=#sr# 200" };
+ { 15, "s9269", "7506", "=q2=Gnomish Universal Remote", "=ds=#sr# 125" };
+ };
+ {
+ Name = GOBLIN;
+ { 1, "s23486", "18984", "=q2=Dimensional Ripper - Everlook", "=ds=#sr# 260" };
+ { 2, "s12758", "10588", "=q2=Goblin Rocket Helmet", "=ds=#sr# 245" };
+ { 3, "s8895", "7189", "=q2=Goblin Rocket Boots", "=ds=#sr# 225" };
+ { 4, "s12718", "10543", "=q2=Goblin Construction Helmet", "=ds=#sr# 205" };
+ { 5, "s12717", "10542", "=q2=Goblin Mining Helmet", "=ds=#sr# 205" };
+ { 6, "s56514", "42641", "=q1=Global Thermal Sapper Charge", "=ds=#sr# 425" };
+ { 7, "s30560", "23827", "=q1=Super Sapper Charge", "=ds=#sr# 340" };
+ { 8, "s30558", "23826", "=q1=The Bigger One", "=ds=#sr# 325" };
+ { 9, "s23078", "18587", "=q1=Goblin Jumper Cables XL", "=ds=#sr# 265" };
+ { 10, "s12908", "10727", "=q1=Goblin Dragon Gun", "=ds=#sr# 240" };
+ { 11, "s12754", "10586", "=q1=The Big One", "=ds=#sr# 235" };
+ { 12, "s12755", "10587", "=q1=Goblin Bomb Dispenser", "=ds=#sr# 230" };
+ { 13, "s12716", "10577", "=q1=Goblin Mortar", "=ds=#sr# 205" };
+ { 14, "s12715", "10644", "=q1=Goblin Rocket Fuel Recipe", "=ds=#sr# 205" };
+ { 15, "s12760", "10646", "=q1=Goblin Sapper Charge", "=ds=#sr# 205" };
+ { 16, "s13240", "10577", "=q1=The Mortar: Reloaded", "=ds=#sr# 205" };
+ };
+};
+
+-----------------
+--- First Aid ---
+-----------------
+
+AtlasLoot_Data["FirstAidCLASSIC"] = {
+ Name = FIRSTAID;
+ Type = "CraftingNoBF";
+ {
+ Name = FIRSTAID;
+ { 1, "s23787", "19440", "=q1=Powerful Anti-Venom", "=ds=#sr# 300" };
+ { 2, "s18630", "14530", "=q1=Heavy Runecloth Bandage", "=ds=#sr# 290" };
+ { 3, "s18629", "14529", "=q1=Runecloth Bandage", "=ds=#sr# 260" };
+ { 4, "s10841", "8545", "=q1=Heavy Mageweave Bandage", "=ds=#sr# 240" };
+ { 5, "s10840", "8544", "=q1=Mageweave Bandage", "=ds=#sr# 210" };
+ { 6, "s7929", "6451", "=q1=Heavy Silk Bandage", "=ds=#sr# 180" };
+ { 7, "s7928", "6450", "=q1=Silk Bandage", "=ds=#sr# 150" };
+ { 8, "s7935", "6453", "=q1=Strong Anti-Venom", "=ds=#sr# 130" };
+ { 9, "s3278", "3531", "=q1=Heavy Wool Bandage", "=ds=#sr# 115" };
+ { 10, "s3277", "3530", "=q1=Wool Bandage", "=ds=#sr# 80" };
+ { 11, "s7934", "6452", "=q1=Anti-Venom", "=ds=#sr# 80" };
+ { 12, "s3276", "2581", "=q1=Heavy Linen Bandage", "=ds=#sr# 40" };
+ { 13, "s3275", "1251", "=q1=Linen Bandage", "=ds=#sr# 1" };
+ };
+};
+-------------------
+--- Inscription ---
+-------------------
+
+AtlasLoot_Data["Inscription"] = {
+ Name = INSCRIPTION;
+ Type = "CraftingNoBF";
+ {
+ Name = AL["Off-Hand Items"];
+ { 1, "s59498", "44210", "=q4=Faces of Doom", "=ds=" };
+ { 2, "s59497", "38322", "=q4=Iron-bound Tome", "=ds=" };
+ { 3, "s64051", "45854", "=q3=Rituals of the New Moon", "=ds=" };
+ { 4, "s64053", "45849", "=q3=Twilight Tome", "=ds=" };
+ { 5, "s59496", "43667", "=q3=Book of Clever Tricks", "=ds=" };
+ { 6, "s59495", "43666", "=q3=Hellfire Tome", "=ds=" };
+ { 7, "s59494", "43664", "=q3=Manual of Clouds", "=ds=" };
+ { 8, "s59493", "43663", "=q3=Stormbound Tome", "=ds=" };
+ { 9, "s59490", "43661", "=q3=Book of Stars", "=ds=" };
+ { 10, "s59489", "43660", "=q3=Fire Eater's Guide", "=ds=" };
+ { 11, "s59486", "43657", "=q3=Royal Guide of Escape Routes", "=ds=" };
+ { 12, "s59484", "43656", "=q3=Tome of Kings", "=ds=" };
+ { 13, "s59478", "43655", "=q3=Book of Survival", "=ds=" };
+ { 14, "s59475", "43654", "=q3=Tome of the Dawn", "=ds=" };
+ { 15, "s58565", "43515", "=q3=Mystic Tome", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Reagents"];
+ { 1, "s57716", "43127", "=q2=Snowfall Ink", "=ds=" .. AL["Trainer"] };
+ { 2, "s57714", "43125", "=q2=Darkflame Ink", "=ds=" .. AL["Trainer"] };
+ { 3, "s57712", "43123", "=q2=Ink of the Sky", "=ds=" .. AL["Trainer"] };
+ { 4, "s57710", "43121", "=q2=Fiery Ink", "=ds=" .. AL["Trainer"] };
+ { 5, "s57708", "43119", "=q2=Royal Ink", "=ds=" .. AL["Trainer"] };
+ { 6, "s57706", "43117", "=q2=Dawnstar Ink", "=ds=" .. AL["Trainer"] };
+ { 7, "s57703", "43115", "=q2=Hunter's Ink", "=ds=" .. AL["Trainer"] };
+ { 8, "s57715", "43126", "=q1=Ink of the Sea", "=ds=" .. AL["Trainer"] };
+ { 9, "s57713", "43124", "=q1=Ethereal Ink", "=ds=" .. AL["Trainer"] };
+ { 10, "s57711", "43122", "=q1=Shimmering Ink", "=ds=" .. AL["Trainer"] };
+ { 11, "s57709", "43120", "=q1=Celestial Ink", "=ds=" .. AL["Trainer"] };
+ { 12, "s57707", "43118", "=q1=Jadefire Ink", "=ds=" .. AL["Trainer"] };
+ { 13, "s57704", "43116", "=q1=Lion's Ink", "=ds=" .. AL["Trainer"] };
+ { 14, "s53462", "39774", "=q1=Midnight Ink", "=ds=" .. AL["Trainer"] };
+ { 15, "s52843", "39469", "=q1=Moonglow Ink", "=ds=" .. AL["Trainer"] };
+ { 16, "s52738", "37101", "=q1=Ivory Ink", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Scrolls"];
+ { 1, "s69385", "49632", "=q1=Runescroll of Fortitude", "=ds=" };
+ { 3, "s60337", "44315", "=q1=Scroll of Recall III", "=ds=" };
+ { 4, "s60336", "44314", "=q1=Scroll of Recall II", "=ds=" };
+ { 5, "s48248", "37118", "=q1=Scroll of Recall", "=ds=" };
+ { 6, "s58483", "3012", "=q1=Scroll of Agility VIII", "=ds=" };
+ { 7, "s58482", "3012", "=q1=Scroll of Agility VII", "=ds=" };
+ { 8, "s58481", "3012", "=q1=Scroll of Agility VI", "=ds=" };
+ { 9, "s58480", "3012", "=q1=Scroll of Agility V", "=ds=" };
+ { 10, "s58478", "3012", "=q1=Scroll of Agility IV", "=ds=" };
+ { 11, "s58476", "3012", "=q1=Scroll of Agility III", "=ds=" };
+ { 12, "s58473", "3012", "=q1=Scroll of Agility II", "=ds=" };
+ { 13, "s58472", "3012", "=q1=Scroll of Agility", "=ds=" };
+ { 14, "s50604", "955", "=q1=Scroll of Intellect VIII", "=ds=" };
+ { 15, "s50603", "955", "=q1=Scroll of Intellect VII", "=ds=" };
+ { 16, "s50602", "955", "=q1=Scroll of Intellect VI", "=ds=" };
+ { 17, "s50601", "955", "=q1=Scroll of Intellect V", "=ds=" };
+ { 18, "s50600", "955", "=q1=Scroll of Intellect IV", "=ds=" };
+ { 19, "s50599", "955", "=q1=Scroll of Intellect III", "=ds=" };
+ { 20, "s50598", "955", "=q1=Scroll of Intellect II", "=ds=" };
+ { 21, "s48114", "955", "=q1=Scroll of Intellect", "=ds=" };
+ { 23, "s50611", "955", "=q1=Scroll of Spirit VIII", "=ds=" };
+ { 24, "s50610", "955", "=q1=Scroll of Spirit VII", "=ds=" };
+ { 25, "s50609", "955", "=q1=Scroll of Spirit VI", "=ds=" };
+ { 26, "s50608", "955", "=q1=Scroll of Spirit V", "=ds=" };
+ { 27, "s50607", "955", "=q1=Scroll of Spirit IV", "=ds=" };
+ { 28, "s50606", "955", "=q1=Scroll of Spirit III", "=ds=" };
+ { 29, "s50605", "955", "=q1=Scroll of Spirit II", "=ds=" };
+ { 30, "s48116", "955", "=q1=Scroll of Spirit", "=ds=" };
+ };
+ {
+ Name = AL["Scrolls"];
+ { 1, "s50620", "1180", "=q1=Scroll of Stamina VIII", "=ds=" };
+ { 2, "s50619", "1180", "=q1=Scroll of Stamina VII", "=ds=" };
+ { 3, "s50618", "1180", "=q1=Scroll of Stamina VI", "=ds=" };
+ { 4, "s50617", "1180", "=q1=Scroll of Stamina V", "=ds=" };
+ { 5, "s50616", "1180", "=q1=Scroll of Stamina IV", "=ds=" };
+ { 6, "s50614", "1180", "=q1=Scroll of Stamina III", "=ds=" };
+ { 7, "s50612", "1180", "=q1=Scroll of Stamina II", "=ds=" };
+ { 8, "s45382", "1180", "=q1=Scroll of Stamina", "=ds=" };
+ { 16, "s58491", "3012", "=q1=Scroll of Strength VIII", "=ds=" };
+ { 17, "s58490", "3012", "=q1=Scroll of Strength VII", "=ds=" };
+ { 18, "s58489", "3012", "=q1=Scroll of Strength VI", "=ds=" };
+ { 19, "s58488", "3012", "=q1=Scroll of Strength V", "=ds=" };
+ { 20, "s58487", "3012", "=q1=Scroll of Strength IV", "=ds=" };
+ { 21, "s58486", "3012", "=q1=Scroll of Strength III", "=ds=" };
+ { 22, "s58485", "3012", "=q1=Scroll of Strength II", "=ds=" };
+ { 23, "s58484", "3012", "=q1=Scroll of Strength", "=ds=" };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s59504", "INV_Feather_05", "=ds=Darkmoon Card of the North", "=ds=" };
+ { 2, "s59503", "INV_Feather_05", "=ds=Greater Darkmoon Card", "=ds=" };
+ { 3, "s59502", "INV_Feather_05", "=ds=Darkmoon Card", "=ds=" };
+ { 4, "s59491", "INV_Feather_05", "=ds=Shadowy Tarot", "=ds=" };
+ { 5, "s59487", "INV_Feather_05", "=ds=Arcane Tarot", "=ds=" };
+ { 6, "s48247", "INV_Feather_05", "=ds=Mysterious Tarot", "=ds=" .. AL["Trainer"] .. "" };
+ { 7, "s59480", "INV_Feather_05", "=ds=Strange Tarot", "=ds=" };
+ { 9, "s61117", "INV_Inscription_Tradeskill01", "=ds=Master's Inscription of the Axe", "=ds=" };
+ { 10, "s61118", "INV_Inscription_Tradeskill01", "=ds=Master's Inscription of the Crag", "=ds=" };
+ { 11, "s61119", "INV_Inscription_Tradeskill01", "=ds=Master's Inscription of the Pinnacle", "=ds=" };
+ { 12, "s61120", "INV_Inscription_Tradeskill01", "=ds=Master's Inscription of the Storm", "=ds=" };
+ { 14, "s52175", "INV_Misc_Book_11", "=ds=Decipher", "=ds=" .. AL["Trainer"] };
+ { 16, "s59500", "43145", "=q1=Armor Vellum III", "=ds=" };
+ { 17, "s59499", "37602", "=q1=Armor Vellum II", "=ds=" };
+ { 18, "s52739", "38682", "=q1=Armor Vellum", "=ds=" .. AL["Trainer"] };
+ { 20, "s59501", "43146", "=q1=Weapon Vellum III", "=ds=" };
+ { 21, "s59488", "39350", "=q1=Weapon Vellum II", "=ds=" };
+ { 22, "s52840", "39349", "=q1=Weapon Vellum", "=ds=" .. AL["Trainer"] };
+ { 24, "s59387", "43850", "=q1=Certificate of Ownership", "=ds=" };
+ };
+ {
+ Name = AL["Major Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"];
+ { 1, "s57207", "43533", "=q1=Glyph of Anti-Magic Shell", "=ds=" .. GetSpellInfo(61177) };
+ { 2, "s59339", "43826", "=q1=Glyph of Blood Strike", "=ds=" .. AL["Trainer"] };
+ { 3, "s57210", "43536", "=q1=Glyph of Bone Shield", "=ds=" .. AL["Trainer"] };
+ { 4, "s57211", "43537", "=q1=Glyph of Chains of Ice", "=ds=" .. GetSpellInfo(61177) };
+ { 5, "s64297", "45799", "=q1=Glyph of Dancing Rune Weapon", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 6, "s57212", "43538", "=q1=Glyph of Dark Command", "=ds=" .. GetSpellInfo(61177) };
+ { 7, "s64266", "45804", "=q1=Glyph of Dark Death", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 8, "s57214", "43542", "=q1=Glyph of Death and Decay", "=ds=" .. GetSpellInfo(61177) };
+ { 9, "s57213", "43541", "=q1=Glyph of Death Grip", "=ds=" .. AL["Trainer"] };
+ { 10, "s59340", "43827", "=q1=Glyph of Death Strike", "=ds=" .. AL["Trainer"] };
+ { 11, "s64267", "45805", "=q1=Glyph of Disease", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 12, "s57216", "43543", "=q1=Glyph of Frost Strike", "=ds=" .. AL["Trainer"] };
+ { 13, "s57208", "43534", "=q1=Glyph of Heart Strike", "=ds=" .. GetSpellInfo(61177) };
+ { 14, "s64300", "45806", "=q1=Glyph of Howling Blast", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 15, "s64298", "45800", "=q1=Glyph of Hungering Cold", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 16, "s57218", "43545", "=q1=Glyph of Icebound Fortitude", "=ds=" .. GetSpellInfo(61177) };
+ { 17, "s57219", "43546", "=q1=Glyph of Icy Touch", "=ds=" .. AL["Trainer"] };
+ { 18, "s57220", "43547", "=q1=Glyph of Obliterate", "=ds=" .. GetSpellInfo(61177) };
+ { 19, "s57221", "43548", "=q1=Glyph of Plague Strike", "=ds=" .. AL["Trainer"] };
+ { 20, "s57223", "43550", "=q1=Glyph of Rune Strike", "=ds=" .. GetSpellInfo(61177) };
+ { 21, "s59338", "43825", "=q1=Glyph of Rune Tap", "=ds=" .. AL["Trainer"] };
+ { 22, "s57224", "43551", "=q1=Glyph of Scourge Strike", "=ds=" .. AL["Trainer"] };
+ { 23, "s57225", "43552", "=q1=Glyph of Strangulate", "=ds=" .. AL["Trainer"] };
+ { 24, "s57222", "43549", "=q1=Glyph of the Ghoul", "=ds=" .. AL["Trainer"] };
+ { 25, "s57226", "43553", "=q1=Glyph of Unbreakable Armor", "=ds=" .. AL["Trainer"] };
+ { 26, "s64299", "45803", "=q1=Glyph of Unholy Blight", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 27, "s57227", "43554", "=q1=Glyph of Vampiric Blood", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Minor Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"];
+ { 1, "s57209", "43535", "=q1=Glyph of Blood Tap", "=ds=" .. GetSpellInfo(61288) };
+ { 2, "s57229", "43671", "=q1=Glyph of Corpse Explosion", "=ds=" .. GetSpellInfo(61288) };
+ { 3, "s57215", "43539", "=q1=Glyph of Death's Embrace", "=ds=" .. GetSpellInfo(61288) };
+ { 4, "s57217", "43544", "=q1=Glyph of Horn of Winter", "=ds=" .. GetSpellInfo(61288) };
+ { 5, "s57230", "43672", "=q1=Glyph of Pestilence", "=ds=" .. GetSpellInfo(61288) };
+ { 6, "s57228", "43673", "=q1=Glyph of Raise Dead", "=ds=" .. GetSpellInfo(61288) };
+ };
+ {
+ Name = AL["Major Glyph"] .. " - " .. AL["Druid"];
+ { 1, "s64256", "45623", "=q1=Glyph of Barkskin", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 2, "s64268", "45601", "=q1=Glyph of Berserk", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 3, "s67600", "48720", "=q1=Glyph of Claw", "=ds=" .. AL["Trainer"] };
+ { 4, "s48121", "40924", "=q1=Glyph of Entangling Roots", "=ds=" .. AL["Trainer"] };
+ { 5, "s62162", "44928", "=q1=Glyph of Focus", "=ds=" .. GetSpellInfo(61177) };
+ { 6, "s56943", "40896", "=q1=Glyph of Frenzied Regeneration", "=ds=" .. AL["Trainer"] };
+ { 7, "s56944", "40899", "=q1=Glyph of Growl", "=ds=" .. GetSpellInfo(61177) };
+ { 8, "s56945", "40914", "=q1=Glyph of Healing Touch", "=ds=" .. AL["Trainer"] };
+ { 9, "s56946", "40920", "=q1=Glyph of Hurricane", "=ds=" .. GetSpellInfo(61177) };
+ { 10, "s56947", "40908", "=q1=Glyph of Innervate", "=ds=" .. GetSpellInfo(61177) };
+ { 11, "s56948", "40919", "=q1=Glyph of Insect Swarm", "=ds=" .. AL["Trainer"] };
+ { 12, "s56949", "40915", "=q1=Glyph of Lifebloom", "=ds=" .. GetSpellInfo(61177) };
+ { 13, "s56950", "40900", "=q1=Glyph of Mangle", "=ds=" .. GetSpellInfo(61177) };
+ { 14, "s56961", "40897", "=q1=Glyph of Maul", "=ds=" .. AL["Trainer"] };
+ { 15, "s64258", "45622", "=q1=Glyph of Monsoon", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 16, "s56951", "40923", "=q1=Glyph of Moonfire", "=ds=" .. AL["Trainer"] };
+ { 17, "s64313", "45603", "=q1=Glyph of Nourish", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 18, "s56952", "40903", "=q1=Glyph of Rake", "=ds=" .. AL["Trainer"] };
+ { 19, "s71015", "50125", "=q1=Glyph of Rapid Rejuvenation", "=ds=" .. AL["Vendor"] .. "" };
+ { 20, "s56953", "40909", "=q1=Glyph of Rebirth", "=ds=" .. AL["Trainer"] };
+ { 21, "s56954", "40912", "=q1=Glyph of Regrowth", "=ds=" .. GetSpellInfo(61177) };
+ { 22, "s56955", "40913", "=q1=Glyph of Rejuvenation", "=ds=" .. AL["Trainer"] };
+ { 23, "s56956", "40902", "=q1=Glyph of Rip", "=ds=" .. AL["Trainer"] };
+ { 24, "s64307", "45604", "=q1=Glyph of Savage Roar", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 25, "s56957", "40901", "=q1=Glyph of Shred", "=ds=" .. AL["Trainer"] };
+ { 26, "s56958", "40921", "=q1=Glyph of Starfall", "=ds=" .. GetSpellInfo(61177) };
+ { 27, "s56959", "40916", "=q1=Glyph of Starfire", "=ds=" .. AL["Trainer"] };
+ { 28, "s65245", "46372", "=q1=Glyph of Survival Instincts", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 29, "s56960", "40906", "=q1=Glyph of Swiftmend", "=ds=" .. GetSpellInfo(61177) };
+ { 30, "s56963", "40922", "=q1=Glyph of WRATH", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Minor Glyph"] .. " - " .. AL["Druid"];
+ { 1, "s64270", "45602", "=q1=Glyph of Wild Growth", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 2, "s58286", "43316", "=q1=Glyph of Aquatic Form", "=ds=" .. GetSpellInfo(61288) };
+ { 3, "s58287", "43334", "=q1=Glyph of Challenging Roar", "=ds=" .. GetSpellInfo(61288) };
+ { 4, "s59315", "43674", "=q1=Glyph of Dash", "=ds=" .. GetSpellInfo(61288) };
+ { 5, "s58296", "43335", "=q1=Glyph of the Wild", "=ds=" .. GetSpellInfo(61288) };
+ { 6, "s58289", "43332", "=q1=Glyph of Thorns", "=ds=" .. GetSpellInfo(61288) };
+ { 7, "s56965", "44922", "=q1=Glyph of Typhoon", "=ds=" .. GetSpellInfo(61288) };
+ { 8, "s58288", "43331", "=q1=Glyph of Unburdened Rebirth", "=ds=" .. GetSpellInfo(61288) };
+ };
+ {
+ Name = AL["Major Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, "s56994", "42897", "=q1=Glyph of Aimed Shot", "=ds=" .. AL["Trainer"] };
+ { 2, "s56995", "42898", "=q1=Glyph of Arcane Shot", "=ds=" .. AL["Trainer"] };
+ { 3, "s56996", "42899", "=q1=Glyph of Aspect of the Beast", "=ds=" .. GetSpellInfo(61177) };
+ { 4, "s56997", "42900", "=q1=Glyph of Aspect of the Monkey", "=ds=" .. AL["Trainer"] };
+ { 5, "s56998", "42901", "=q1=Glyph of Aspect of the Viper", "=ds=" .. GetSpellInfo(61177) };
+ { 6, "s56999", "42902", "=q1=Glyph of Beastial WRATH", "=ds=" .. GetSpellInfo(61177) };
+ { 7, "s64271", "45625", "=q1=Glyph of Chimera Shot", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 8, "s57000", "42903", "=q1=Glyph of Deterrence", "=ds=" .. AL["Trainer"] };
+ { 9, "s57001", "42904", "=q1=Glyph of Disengage", "=ds=" .. AL["Trainer"] };
+ { 10, "s64273", "45731", "=q1=Glyph of Explosive Shot", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 11, "s64253", "45733", "=q1=Glyph of Explosive Trap", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 12, "s57002", "42905", "=q1=Glyph of Freezing Trap", "=ds=" .. AL["Trainer"] };
+ { 13, "s57003", "42906", "=q1=Glyph of Frost Trap", "=ds=" .. AL["Trainer"] };
+ { 14, "s57004", "42907", "=q1=Glyph of Hunter's Mark", "=ds=" .. AL["Trainer"] };
+ { 15, "s57005", "42908", "=q1=Glyph of Immolation Trap", "=ds=" .. AL["Trainer"] };
+ { 16, "s57006", "42909", "=q1=Glyph of Improved Aspect of the Hawk", "=ds=" .. AL["Trainer"] };
+ { 17, "s64304", "45732", "=q1=Glyph of Kill Shot", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 18, "s57007", "42910", "=q1=Glyph of Multi-Shot", "=ds=" .. AL["Trainer"] };
+ { 19, "s57008", "42911", "=q1=Glyph of Rapid Fire", "=ds=" .. AL["Trainer"] };
+ { 20, "s64246", "45735", "=q1=Glyph of Raptor Strike", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 21, "s64249", "45734", "=q1=Glyph of Scatter Shot", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 22, "s57009", "42912", "=q1=Glyph of Serpent Sting", "=ds=" .. AL["Trainer"] };
+ { 23, "s57010", "42913", "=q1=Glyph of Snake Trap", "=ds=" .. GetSpellInfo(61177) };
+ { 24, "s57011", "42914", "=q1=Glyph of Steady Shot", "=ds=" .. GetSpellInfo(61177) };
+ { 25, "s57012", "42915", "=q1=Glyph of Trueshot Aura", "=ds=" .. GetSpellInfo(61177) };
+ { 26, "s57013", "42916", "=q1=Glyph of Volley", "=ds=" .. GetSpellInfo(61177) };
+ { 27, "s57014", "42917", "=q1=Glyph of Wyvern Sting", "=ds=" .. GetSpellInfo(61177) };
+ };
+ {
+ Name = AL["Minor Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, "s58302", "43351", "=q1=Glyph of Feign Death", "=ds=" .. GetSpellInfo(61288) };
+ { 2, "s58301", "43350", "=q1=Glyph of Mend Pet", "=ds=" .. GetSpellInfo(61288) };
+ { 3, "s58300", "43354", "=q1=Glyph of Possessed Strength", "=ds=" .. GetSpellInfo(61288) };
+ { 4, "s58299", "43338", "=q1=Glyph of Revive Pet", "=ds=" .. GetSpellInfo(61288) };
+ { 5, "s58298", "43356", "=q1=Glyph of Scare Beast", "=ds=" .. GetSpellInfo(61288) };
+ { 6, "s58297", "43355", "=q1=Glyph of the Pack", "=ds=" .. GetSpellInfo(61288) };
+ };
+ {
+ Name = AL["Major Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, "s64276", "45738", "=q1=Glyph of Arcane Barrage", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 2, "s56991", "44955", "=q1=Glyph of Arcane Blast", "=ds=" .. GetSpellInfo(61177) };
+ { 3, "s56968", "42734", "=q1=Glyph of Arcane Explosion", "=ds=" .. AL["Trainer"] };
+ { 4, "s56971", "42735", "=q1=Glyph of Arcane Missiles", "=ds=" .. AL["Trainer"] };
+ { 5, "s56972", "42736", "=q1=Glyph of Arcane Power", "=ds=" .. AL["Trainer"] };
+ { 6, "s56973", "42737", "=q1=Glyph of Blink", "=ds=" .. AL["Trainer"] };
+ { 7, "s64274", "45736", "=q1=Glyph of Deep Freeze", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 8, "s71101", "50045", "=q1=Glyph of Eternal Water", "=ds=" .. AL["Vendor"] .. "" };
+ { 9, "s56974", "42738", "=q1=Glyph of Evocation", "=ds=" .. AL["Trainer"] };
+ { 10, "s57719", "42740", "=q1=Glyph of Fire Blast", "=ds=" .. GetSpellInfo(61177) };
+ { 11, "s56975", "42739", "=q1=Glyph of Fireball", "=ds=" .. GetSpellInfo(61177) };
+ { 12, "s56976", "42741", "=q1=Glyph of Frost Nova", "=ds=" .. AL["Trainer"] };
+ { 13, "s56977", "42742", "=q1=Glyph of Frostbolt", "=ds=" .. GetSpellInfo(61177) };
+ { 14, "s61677", "44684", "=q1=Glyph of Frostfire", "=ds=" .. GetSpellInfo(61177) };
+ { 15, "s56978", "42743", "=q1=Glyph of Ice Armor", "=ds=" .. AL["Trainer"] };
+ { 16, "s64257", "45740", "=q1=Glyph of Ice Barrier", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 17, "s56979", "42744", "=q1=Glyph of Ice Block", "=ds=" .. AL["Trainer"] };
+ { 18, "s56980", "42745", "=q1=Glyph of Ice Lance", "=ds=" .. AL["Trainer"] };
+ { 19, "s56981", "42746", "=q1=Glyph of Icy Veins", "=ds=" .. AL["Trainer"] };
+ { 20, "s56982", "42747", "=q1=Glyph of Improved Scorch", "=ds=" .. AL["Trainer"] };
+ { 21, "s56983", "42748", "=q1=Glyph of Invisibility", "=ds=" .. GetSpellInfo(61177) };
+ { 22, "s64275", "45737", "=q1=Glyph of Living Bomb", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 23, "s56984", "42749", "=q1=Glyph of Mage Armor", "=ds=" .. AL["Trainer"] };
+ { 24, "s56985", "42750", "=q1=Glyph of Mana Gem", "=ds=" .. AL["Trainer"] };
+ { 25, "s64314", "45739", "=q1=Glyph of Mirror Image", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 26, "s56986", "42751", "=q1=Glyph of Molten Armor", "=ds=" .. GetSpellInfo(61177) };
+ { 27, "s56987", "42752", "=q1=Glyph of Polymorph", "=ds=" .. AL["Trainer"] };
+ { 28, "s56988", "42753", "=q1=Glyph of Remove Curse", "=ds=" .. GetSpellInfo(61177) };
+ { 29, "s56989", "42754", "=q1=Glyph of Water Elemental", "=ds=" .. GetSpellInfo(61177) };
+ };
+ {
+ Name = AL["Minor Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, "s58303", "43339", "=q1=Glyph of Arcane Intellect", "=ds=" .. GetSpellInfo(61288) };
+ { 2, "s56990", "44920", "=q1=Glyph of Blast Wave", "=ds=" .. GetSpellInfo(61288) };
+ { 3, "s58305", "43357", "=q1=Glyph of Fire Ward", "=ds=" .. GetSpellInfo(61288) };
+ { 4, "s58306", "43359", "=q1=Glyph of Frost Armor", "=ds=" .. GetSpellInfo(61288) };
+ { 5, "s58307", "43360", "=q1=Glyph of Frost Ward", "=ds=" .. GetSpellInfo(61288) };
+ { 6, "s58308", "43364", "=q1=Glyph of Slow Fall", "=ds=" .. GetSpellInfo(61288) };
+ { 7, "s58310", "43361", "=q1=Glyph of the Penguin", "=ds=" .. GetSpellInfo(61288) };
+ };
+ {
+ Name = AL["Major Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
+ { 1, "s57019", "41101", "=q1=Glyph of Avenger's Shield", "=ds=" .. GetSpellInfo(61177) };
+ { 2, "s57021", "41107", "=q1=Glyph of Avenging WRATH", "=ds=" .. GetSpellInfo(61177) };
+ { 3, "s64277", "45741", "=q1=Glyph of Beacon of Light", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 4, "s57020", "41104", "=q1=Glyph of Cleansing", "=ds=" .. AL["Trainer"] };
+ { 5, "s57023", "41099", "=q1=Glyph of Consecration", "=ds=" .. AL["Trainer"] };
+ { 6, "s57024", "41098", "=q1=Glyph of Crusader Strike", "=ds=" .. AL["Trainer"] };
+ { 7, "s64305", "45745", "=q1=Glyph of Divine Plea", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 8, "s64279", "45743", "=q1=Glyph of Divine Storm", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 9, "s57031", "41108", "=q1=Glyph of Divinity", "=ds=" .. AL["Trainer"] };
+ { 10, "s57025", "41103", "=q1=Glyph of Exorcism", "=ds=" .. AL["Trainer"] };
+ { 11, "s57026", "41105", "=q1=Glyph of Flash of Light", "=ds=" .. AL["Trainer"] };
+ { 12, "s57027", "41095", "=q1=Glyph of Hammer of Justice", "=ds=" .. AL["Trainer"] };
+ { 13, "s64278", "45742", "=q1=Glyph of Hammer of the Righteous", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 14, "s57028", "41097", "=q1=Glyph of Hammer of WRATH", "=ds=" .. GetSpellInfo(61177) };
+ { 15, "s57029", "41106", "=q1=Glyph of Holy Light", "=ds=" .. AL["Trainer"] };
+ { 16, "s64254", "45746", "=q1=Glyph of Holy Shock", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 17, "s57030", "41092", "=q1=Glyph of Judgement", "=ds=" .. AL["Trainer"] };
+ { 18, "s57032", "41100", "=q1=Glyph of Righteous Defense", "=ds=" .. AL["Trainer"] };
+ { 19, "s64251", "45747", "=q1=Glyph of Salvation", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 20, "s59559", "43867", "=q1=Glyph of Seal of Blood", "=ds=" .. GetSpellInfo(61177) };
+ { 21, "s57033", "41094", "=q1=Glyph of Seal of Command", "=ds=" .. AL["Trainer"] };
+ { 22, "s57034", "41110", "=q1=Glyph of Seal of Light", "=ds=" .. GetSpellInfo(61177) };
+ { 23, "s59560", "43868", "=q1=Glyph of Seal of Righteousness", "=ds=" .. GetSpellInfo(61177) };
+ { 24, "s59561", "43869", "=q1=Glyph of Seal of Vengeance", "=ds=" .. GetSpellInfo(61177) };
+ { 25, "s57035", "41109", "=q1=Glyph of Seal of Wisdom", "=ds=" .. GetSpellInfo(61177) };
+ { 26, "s64308", "45744", "=q1=Glyph of Shield of Righteousness", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 27, "s57022", "41096", "=q1=Glyph of Spiritual Attunement", "=ds=" .. AL["Trainer"] };
+ { 28, "s57036", "41102", "=q1=Glyph of Turn Evil", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Minor Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
+ { 1, "s58311", "43365", "=q1=Glyph of Blessing of Kings", "=ds=" .. GetSpellInfo(61288) };
+ { 2, "s58314", "43340", "=q1=Glyph of Blessing of Might", "=ds=" .. GetSpellInfo(61288) };
+ { 3, "s58312", "43366", "=q1=Glyph of Blessing of Wisdom", "=ds=" .. GetSpellInfo(61288) };
+ { 4, "s58313", "43367", "=q1=Glyph of Lay on Hands", "=ds=" .. GetSpellInfo(61288) };
+ { 5, "s58315", "43368", "=q1=Glyph of Sense Undead", "=ds=" .. GetSpellInfo(61288) };
+ { 6, "s58316", "43369", "=q1=Glyph of the Wise", "=ds=" .. GetSpellInfo(61288) };
+ };
+ {
+ Name = AL["Major Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
+ { 1, "s57181", "42396", "=q1=Glyph of Circle of Healing", "=ds=" .. GetSpellInfo(61177) };
+ { 2, "s57183", "42397", "=q1=Glyph of Dispel Magic", "=ds=" .. AL["Trainer"] };
+ { 3, "s64280", "45753", "=q1=Glyph of Dispersion", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 4, "s57184", "42398", "=q1=Glyph of Fade", "=ds=" .. AL["Trainer"] };
+ { 5, "s57185", "42399", "=q1=Glyph of Fear Ward", "=ds=" .. AL["Trainer"] };
+ { 6, "s57186", "42400", "=q1=Glyph of Flash Heal", "=ds=" .. AL["Trainer"] };
+ { 7, "s64281", "45755", "=q1=Glyph of Guardian Spirit", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 8, "s57187", "42401", "=q1=Glyph of Holy Nova", "=ds=" .. AL["Trainer"] };
+ { 9, "s64283", "45758", "=q1=Glyph of Hymn of Hope", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 10, "s57188", "42402", "=q1=Glyph of Inner Fire", "=ds=" .. AL["Trainer"] };
+ { 11, "s57189", "42403", "=q1=Glyph of Lightwell", "=ds=" .. GetSpellInfo(61177) };
+ { 12, "s57190", "42404", "=q1=Glyph of Mass Dispel", "=ds=" .. GetSpellInfo(61177) };
+ { 13, "s57191", "42405", "=q1=Glyph of Mind Control", "=ds=" .. GetSpellInfo(61177) };
+ { 14, "s57192", "42406", "=q1=Glyph of Mind Flay", "=ds=" .. AL["Trainer"] };
+ { 15, "s64309", "45757", "=q1=Glyph of Mind Sear", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 16, "s64259", "45760", "=q1=Glyph of Pain Suppression", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 17, "s64282", "45756", "=q1=Glyph of Penance", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 18, "s57194", "42408", "=q1=Glyph of Power Word: Shield", "=ds=" .. AL["Trainer"] };
+ { 19, "s57195", "42409", "=q1=Glyph of Prayer of Healing", "=ds=" .. GetSpellInfo(61177) };
+ { 20, "s57196", "42410", "=q1=Glyph of Psychic Scream", "=ds=" .. AL["Trainer"] };
+ { 21, "s57197", "42411", "=q1=Glyph of Renew", "=ds=" .. AL["Trainer"] };
+ { 22, "s57198", "42412", "=q1=Glyph of Scourge Imprisonment", "=ds=" .. AL["Trainer"] };
+ { 23, "s57193", "42407", "=q1=Glyph of Shadow", "=ds=" .. GetSpellInfo(61177) };
+ { 24, "s57199", "42414", "=q1=Glyph of Shadow Word: Death", "=ds=" .. GetSpellInfo(61177) };
+ { 25, "s57200", "42415", "=q1=Glyph of Shadow Word: Pain", "=ds=" .. AL["Trainer"] };
+ { 26, "s57201", "42416", "=q1=Glyph of Smite", "=ds=" .. AL["Trainer"] };
+ { 27, "s57202", "42417", "=q1=Glyph of Spirit of Redemption", "=ds=" .. GetSpellInfo(61177) };
+ };
+ {
+ Name = AL["Minor Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
+ { 1, "s58317", "43342", "=q1=Glyph of Fading", "=ds=" .. GetSpellInfo(61288) };
+ { 2, "s58318", "43371", "=q1=Glyph of Fortitude", "=ds=" .. GetSpellInfo(61288) };
+ { 3, "s58319", "43370", "=q1=Glyph of Levitate", "=ds=" .. GetSpellInfo(61288) };
+ { 4, "s58320", "43373", "=q1=Glyph of Shackle Undead", "=ds=" .. GetSpellInfo(61288) };
+ { 5, "s58321", "43372", "=q1=Glyph of Shadow Protection", "=ds=" .. GetSpellInfo(61288) };
+ { 6, "s58322", "43374", "=q1=Glyph of Shadowfiend", "=ds=" .. GetSpellInfo(61288) };
+ };
+ {
+ Name = AL["Major Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, "s57112", "42954", "=q1=Glyph of Adrenaline Rush", "=ds=" .. GetSpellInfo(61177) };
+ { 2, "s57113", "42955", "=q1=Glyph of Ambush", "=ds=" .. AL["Trainer"] };
+ { 3, "s57114", "42956", "=q1=Glyph of Backstab", "=ds=" .. AL["Trainer"] };
+ { 4, "s57115", "42957", "=q1=Glyph of Blade Flurry", "=ds=" .. GetSpellInfo(61177) };
+ { 5, "s64303", "45769", "=q1=Glyph of Cloak of Shadows", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 6, "s57116", "42958", "=q1=Glyph of Crippling Poison", "=ds=" .. GetSpellInfo(61177) };
+ { 7, "s57117", "42959", "=q1=Glyph of Deadly Throw", "=ds=" .. GetSpellInfo(61177) };
+ { 8, "s57119", "42960", "=q1=Glyph of Evasion", "=ds=" .. AL["Trainer"] };
+ { 9, "s57120", "42961", "=q1=Glyph of Eviscerate", "=ds=" .. AL["Trainer"] };
+ { 10, "s57121", "42962", "=q1=Glyph of Expose Armor", "=ds=" .. AL["Trainer"] };
+ { 11, "s64315", "45766", "=q1=Glyph of Fan of Knives", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 12, "s57122", "42963", "=q1=Glyph of Feint", "=ds=" .. AL["Trainer"] };
+ { 13, "s57123", "42964", "=q1=Glyph of Garrote", "=ds=" .. AL["Trainer"] };
+ { 14, "s57124", "42965", "=q1=Glyph of Ghostly Strike", "=ds=" .. GetSpellInfo(61177) };
+ { 15, "s57125", "42966", "=q1=Glyph of Gouge", "=ds=" .. AL["Trainer"] };
+ { 16, "s57126", "42967", "=q1=Glyph of Hemorrhage", "=ds=" .. GetSpellInfo(61177) };
+ { 17, "s64284", "45761", "=q1=Glyph of Hunger for Blood", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 18, "s64285", "45762", "=q1=Glyph of Killing Spree", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 19, "s64260", "45768", "=q1=Glyph of Mutilate", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 20, "s57127", "42968", "=q1=Glyph of Preparation", "=ds=" .. GetSpellInfo(61177) };
+ { 21, "s57128", "42969", "=q1=Glyph of Rupture", "=ds=" .. GetSpellInfo(61177) };
+ { 22, "s57129", "42970", "=q1=Glyph of Sap", "=ds=" .. AL["Trainer"] };
+ { 23, "s64286", "45764", "=q1=Glyph of Shadow Dance", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 24, "s57131", "42972", "=q1=Glyph of Sinister Strike", "=ds=" .. AL["Trainer"] };
+ { 25, "s57132", "42973", "=q1=Glyph of Slice and Dice", "=ds=" .. AL["Trainer"] };
+ { 26, "s57133", "42974", "=q1=Glyph of Sprint", "=ds=" .. AL["Trainer"] };
+ { 27, "s64310", "45767", "=q1=Glyph of Tricks of the Trade", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 28, "s57130", "42971", "=q1=Glyph of Vigor", "=ds=" .. GetSpellInfo(61177) };
+ };
+ {
+ Name = AL["Minor Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, "s58323", "43379", "=q1=Glyph of Blurred Speed", "=ds=" .. GetSpellInfo(61288) };
+ { 2, "s58324", "43376", "=q1=Glyph of Distract", "=ds=" .. GetSpellInfo(61288) };
+ { 3, "s58325", "43377", "=q1=Glyph of Pick Lock", "=ds=" .. GetSpellInfo(61288) };
+ { 4, "s58326", "43343", "=q1=Glyph of Pick Pocket", "=ds=" .. GetSpellInfo(61288) };
+ { 5, "s58327", "43378", "=q1=Glyph of Safe Fall", "=ds=" .. GetSpellInfo(61288) };
+ { 6, "s58328", "43380", "=q1=Glyph of Vanish", "=ds=" .. GetSpellInfo(61288) };
+ };
+ {
+ Name = AL["Major Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
+ { 1, "s57232", "41517", "=q1=Glyph of Chain Heal", "=ds=" .. GetSpellInfo(61177) };
+ { 2, "s57233", "41518", "=q1=Glyph of Chain Lightning", "=ds=" .. GetSpellInfo(61177) };
+ { 3, "s64261", "45775", "=q1=Glyph of Earth Shield", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 4, "s57235", "41526", "=q1=Glyph of Earth Shock", "=ds=" .. GetSpellInfo(61177) };
+ { 5, "s57236", "41527", "=q1=Glyph of Earthliving Weapon", "=ds=" .. AL["Trainer"] };
+ { 6, "s57250", "41552", "=q1=Glyph of Elemental Mastery", "=ds=" .. GetSpellInfo(61177) };
+ { 7, "s64288", "45771", "=q1=Glyph of Feral Spirit", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 8, "s57237", "41529", "=q1=Glyph of Fire Elemental Totem", "=ds=" .. GetSpellInfo(61177) };
+ { 9, "s57238", "41530", "=q1=Glyph of Fire Nova Totem", "=ds=" .. AL["Trainer"] };
+ { 10, "s57239", "41531", "=q1=Glyph of Flame Shock", "=ds=" .. AL["Trainer"] };
+ { 11, "s57240", "41532", "=q1=Glyph of Flametongue Weapon", "=ds=" .. AL["Trainer"] };
+ { 12, "s57241", "41547", "=q1=Glyph of Frost Shock", "=ds=" .. AL["Trainer"] };
+ { 13, "s57242", "41533", "=q1=Glyph of Healing Stream Totem", "=ds=" .. AL["Trainer"] };
+ { 14, "s57243", "41534", "=q1=Glyph of Healing Wave", "=ds=" .. GetSpellInfo(61177) };
+ { 15, "s64316", "45777", "=q1=Glyph of Hex", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 16, "s57234", "41524", "=q1=Glyph of Lava", "=ds=" .. GetSpellInfo(61177) };
+ { 17, "s57249", "41540", "=q1=Glyph of Lava Lash", "=ds=" .. AL["Trainer"] };
+ { 18, "s57244", "41535", "=q1=Glyph of Lesser Healing Wave", "=ds=" .. AL["Trainer"] };
+ { 19, "s57245", "41536", "=q1=Glyph of Lightning Bolt", "=ds=" .. AL["Trainer"] };
+ { 20, "s57246", "41537", "=q1=Glyph of Lightning Shield", "=ds=" .. AL["Trainer"] };
+ { 21, "s57247", "41538", "=q1=Glyph of Mana Tide Totem", "=ds=" .. GetSpellInfo(61177) };
+ { 22, "s64289", "45772", "=q1=Glyph of Riptide", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 23, "s64247", "45778", "=q1=Glyph of Stoneclaw Totem", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 24, "s57248", "41539", "=q1=Glyph of Stormstrike", "=ds=" .. AL["Trainer"] };
+ { 25, "s64287", "45770", "=q1=Glyph of Thunder", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 26, "s64262", "45776", "=q1=Glyph of Totem of WRATH", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 27, "s57251", "41541", "=q1=Glyph of Water Mastery", "=ds=" .. AL["Trainer"] };
+ { 28, "s57252", "41542", "=q1=Glyph of Windfury Weapon", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Minor Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
+ { 1, "s58329", "43381", "=q1=Glyph of Astral Recall", "=ds=" .. GetSpellInfo(61288) };
+ { 2, "s59326", "43725", "=q1=Glyph of Ghost Wolf", "=ds=" .. GetSpellInfo(61288) };
+ { 3, "s58330", "43385", "=q1=Glyph of Renewed Life", "=ds=" .. GetSpellInfo(61288) };
+ { 4, "s57253", "44923", "=q1=Glyph of Thunderstorm", "=ds=" .. GetSpellInfo(61288) };
+ { 5, "s58331", "43344", "=q1=Glyph of Water Breathing", "=ds=" .. GetSpellInfo(61288) };
+ { 6, "s58332", "43386", "=q1=Glyph of Water Shield", "=ds=" .. GetSpellInfo(61288) };
+ { 7, "s58333", "43388", "=q1=Glyph of Water Walking", "=ds=" .. GetSpellInfo(61288) };
+ };
+ {
+ Name = AL["Major Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, "s64294", "45781", "=q1=Glyph of Chaos Bolt", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 2, "s57258", "42454", "=q1=Glyph of Conflagrate", "=ds=" .. GetSpellInfo(61177) };
+ { 3, "s57259", "42455", "=q1=Glyph of Corruption", "=ds=" .. AL["Trainer"] };
+ { 4, "s57260", "42456", "=q1=Glyph of Curse of Agony", "=ds=" .. GetSpellInfo(61177) };
+ { 5, "s57261", "42457", "=q1=Glyph of Death Coil", "=ds=" .. GetSpellInfo(61177) };
+ { 6, "s64317", "45782", "=q1=Glyph of Demonic Circle", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 7, "s57262", "42458", "=q1=Glyph of Fear", "=ds=" .. AL["Trainer"] };
+ { 8, "s57263", "42459", "=q1=Glyph of Felguard", "=ds=" .. GetSpellInfo(61177) };
+ { 9, "s57264", "42460", "=q1=Glyph of Felhunter", "=ds=" .. GetSpellInfo(61177) };
+ { 10, "s64291", "45779", "=q1=Glyph of Haunt", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 11, "s57265", "42461", "=q1=Glyph of Health Funnel", "=ds=" .. AL["Trainer"] };
+ { 12, "s57266", "42462", "=q1=Glyph of Healthstone", "=ds=" .. AL["Trainer"] };
+ { 13, "s57267", "42463", "=q1=Glyph of Howl of Terror", "=ds=" .. GetSpellInfo(61177) };
+ { 14, "s57268", "42464", "=q1=Glyph of Immolate", "=ds=" .. GetSpellInfo(61177) };
+ { 15, "s57269", "42465", "=q1=Glyph of Imp", "=ds=" .. AL["Trainer"] };
+ { 16, "s57257", "42453", "=q1=Glyph of Incinerate", "=ds=" .. AL["Trainer"] };
+ { 17, "s64248", "45785", "=q1=Glyph of Life Tap", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 18, "s64318", "45780", "=q1=Glyph of Metamorphosis", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 19, "s71102", "50077", "=q1=Glyph of Quick Decay", "=ds=" .. AL["Trainer"] };
+ { 20, "s57270", "42466", "=q1=Glyph of Searing Pain", "=ds=" .. AL["Trainer"] };
+ { 21, "s57271", "42467", "=q1=Glyph of Shadow Bolt", "=ds=" .. AL["Trainer"] };
+ { 22, "s57272", "42468", "=q1=Glyph of Shadowburn", "=ds=" .. AL["Trainer"] };
+ { 23, "s64311", "45783", "=q1=Glyph of Shadowflame", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 24, "s57273", "42469", "=q1=Glyph of Siphon Life", "=ds=" .. GetSpellInfo(61177) };
+ { 25, "s64250", "45789", "=q1=Glyph of Soul Link", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 26, "s57274", "42470", "=q1=Glyph of Soulstone", "=ds=" .. AL["Trainer"] };
+ { 27, "s57275", "42471", "=q1=Glyph of Succubus", "=ds=" .. AL["Trainer"] };
+ { 28, "s57276", "42472", "=q1=Glyph of Unstable Affliction", "=ds=" .. GetSpellInfo(61177) };
+ { 29, "s57277", "42473", "=q1=Glyph of Voidwalker", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Minor Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, "s58338", "43392", "=q1=Glyph of Curse of Exhaustion", "=ds=" .. GetSpellInfo(61288) };
+ { 2, "s58337", "43390", "=q1=Glyph of Drain Soul", "=ds=" .. GetSpellInfo(61288) };
+ { 3, "s58339", "43393", "=q1=Glyph of Enslave Demon", "=ds=" .. GetSpellInfo(61288) };
+ { 4, "s58340", "43391", "=q1=Glyph of Kilrogg", "=ds=" .. GetSpellInfo(61288) };
+ { 5, "s58341", "43394", "=q1=Glyph of Souls", "=ds=" .. GetSpellInfo(61288) };
+ { 6, "s58336", "43389", "=q1=Glyph of Unending Breath", "=ds=" .. GetSpellInfo(61288) };
+ };
+ {
+ Name = AL["Major Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
+ { 1, "s57151", "43420", "=q1=Glyph of Barbaric Insults", "=ds=" .. AL["Trainer"] };
+ { 2, "s64295", "45790", "=q1=Glyph of Bladestorm", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 3, "s57152", "43425", "=q1=Glyph of Blocking", "=ds=" .. GetSpellInfo(61177) };
+ { 4, "s57153", "43412", "=q1=Glyph of Bloodthirst", "=ds=" .. GetSpellInfo(61177) };
+ { 5, "s57154", "43414", "=q1=Glyph of Cleaving", "=ds=" .. AL["Trainer"] };
+ { 6, "s57155", "43415", "=q1=Glyph of Devastate", "=ds=" .. GetSpellInfo(61177) };
+ { 7, "s64312", "45794", "=q1=Glyph of Enraged Regeneration", "=ds=" };
+ { 8, "s57156", "43416", "=q1=Glyph of Execution", "=ds=" .. AL["Trainer"] };
+ { 9, "s57157", "43417", "=q1=Glyph of Hamstring", "=ds=" .. AL["Trainer"] };
+ { 10, "s57158", "43418", "=q1=Glyph of Heroic Strike", "=ds=" .. AL["Trainer"] };
+ { 11, "s57159", "43419", "=q1=Glyph of Intervene", "=ds=" .. GetSpellInfo(61177) };
+ { 12, "s57166", "43426", "=q1=Glyph of Last Stand", "=ds=" .. GetSpellInfo(61177) };
+ { 13, "s57160", "43421", "=q1=Glyph of Mortal Strike", "=ds=" .. GetSpellInfo(61177) };
+ { 14, "s57161", "43422", "=q1=Glyph of Overpower", "=ds=" .. AL["Trainer"] };
+ { 15, "s57162", "43413", "=q1=Glyph of Rapid Charge", "=ds=" .. AL["Trainer"] };
+ { 16, "s57163", "43423", "=q1=Glyph of Rending", "=ds=" .. AL["Trainer"] };
+ { 17, "s57164", "43430", "=q1=Glyph of Resonating Power", "=ds=" .. GetSpellInfo(61177) };
+ { 18, "s57165", "43424", "=q1=Glyph of Revenge", "=ds=" .. AL["Trainer"] };
+ { 19, "s64252", "45797", "=q1=Glyph of Shield Wall", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 20, "s64296", "45792", "=q1=Glyph of Shockwave", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 21, "s64302", "45795", "=q1=Glyph of Spell Reflection", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 22, "s57167", "43427", "=q1=Glyph of Sunder Armor", "=ds=" .. AL["Trainer"] };
+ { 23, "s57168", "43428", "=q1=Glyph of Sweeping Strikes", "=ds=" .. AL["Trainer"] };
+ { 24, "s57169", "43429", "=q1=Glyph of Taunt", "=ds=" .. GetSpellInfo(61177) };
+ { 25, "s57170", "43431", "=q1=Glyph of Victory Rush", "=ds=" .. GetSpellInfo(61177) };
+ { 26, "s64255", "45793", "=q1=Glyph of Vigilance", "=ds=" .. AL["Book of Glyph Mastery"] };
+ { 27, "s57172", "43432", "=q1=Glyph of Whirlwind", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Minor Glyph"] .. " - " .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
+ { 1, "s58342", "43395", "=q1=Glyph of Battle", "=ds=" .. GetSpellInfo(61288) };
+ { 2, "s58343", "43396", "=q1=Glyph of Bloodrage", "=ds=" .. GetSpellInfo(61288) };
+ { 3, "s58344", "43397", "=q1=Glyph of Charge", "=ds=" .. GetSpellInfo(61288) };
+ { 4, "s68166", "49084", "=q1=Glyph of Command", "=ds=" .. GetSpellInfo(61288) };
+ { 5, "s58347", "43400", "=q1=Glyph of Enduring Victory", "=ds=" .. GetSpellInfo(61288) };
+ { 6, "s58345", "43398", "=q1=Glyph of Mocking Blow", "=ds=" .. GetSpellInfo(61288) };
+ { 7, "s58346", "43399", "=q1=Glyph of Thunder Clap", "=ds=" .. GetSpellInfo(61288) };
+ };
+};
+
+----------------------
+--- Leatherworking ---
+----------------------
+
+AtlasLoot_Data["LeatherworkingCLASSIC"] = {
+ Name = LEATHERWORKING;
+ Type = "Crafting";
+ {
+ Name = AL["Leather Armor"] .. " - Back";
+ { 1, "s22926", "18509", "=q4=Chromatic Cloak", "=ds=#sr# 300" };
+ { 2, "s22928", "18511", "=q4=Shifting Cloak", "=ds=#sr# 300" };
+ { 3, "s22927", "18510", "=q4=Hide of the Wild", "=ds=#sr# 300" };
+ { 4, "s19093", "15138", "=q3=Onyxia Scale Cloak", "=ds=#sr# 300" };
+ { 5, "s10574", "8215", "=q2=Wild Leather Cloak", "=ds=#sr# 250" };
+ { 6, "s10562", "8216", "=q2=Big Voodoo Cloak", "=ds=#sr# 240" };
+ { 7, "s7153", "5965", "=q2=Guardian Cloak", "=ds=#sr# 185" };
+ { 8, "s9198", "7377", "=q2=Frost Leather Cloak", "=ds=#sr# 180" };
+ { 9, "s9070", "7283", "=q2=Black Whelp Cloak", "=ds=#sr# 100" };
+ { 10, "s7953", "6466", "=q2=Deviate Scale Cloak", "=ds=#sr# 90" };
+ { 11, "s2159", "2308", "=q2=Fine Leather Cloak", "=ds=#sr# 85" };
+ { 12, "s3760", "3719", "=q1=Hillman's Cloak", "=ds=#sr# 150" };
+ { 13, "s2168", "2316", "=q1=Dark Leather Cloak", "=ds=#sr# 110" };
+ { 14, "s2162", "2310", "=q1=Embossed Leather Cloak", "=ds=#sr# 60" };
+ { 15, "s9058", "7276", "=q1=Handstitched Leather Cloak", "=ds=#sr# 1" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Chest";
+ { 1, "s28219", "22661", "=q4=Polar Tunic", "=ds=#sr# 300" };
+ { 2, "s19095", "15059", "=q3=Living Breastplate", "=ds=#sr# 300" };
+ { 3, "s24121", "19685", "=q3=Primal Batskin Jerkin", "=ds=#sr# 300" };
+ { 4, "s24124", "19688", "=q3=Blood Tiger Breastplate", "=ds=#sr# 300" };
+ { 5, "s19104", "15068", "=q2=Frostsaber Tunic", "=ds=#sr# 300" };
+ { 6, "s19102", "15090", "=q2=Runic Leather Armor", "=ds=#sr# 300" };
+ { 7, "s19098", "15085", "=q2=Wicked Leather Armor", "=ds=#sr# 300" };
+ { 8, "s19081", "15075", "=q2=Chimeric Vest", "=ds=#sr# 290" };
+ { 9, "s19086", "15066", "=q3=Ironfeather Breastplate", "=ds=#sr# 290" };
+ { 10, "s19079", "15056", "=q3=Stormshroud Armor", "=ds=#sr# 285" };
+ { 11, "s19076", "15053", "=q2=Volcanic Breastplate", "=ds=#sr# 285" };
+ { 12, "s19068", "15064", "=q3=Warbear Harness", "=ds=#sr# 275" };
+ { 13, "s10647", "8349", "=q3=Feathered Breastplate", "=ds=#sr# 250" };
+ { 14, "s10630", "8346", "=q3=Gauntlets of the Sea", "=ds=#sr# 230" };
+ { 15, "s10544", "8211", "=q2=Wild Leather Vest", "=ds=#sr# 225" };
+ { 16, "s10520", "8200", "=q2=Big Voodoo Robe", "=ds=#sr# 215" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Chest";
+ { 1, "s10499", "8175", "=q2=Nightscape Tunic", "=ds=#sr# 205" };
+ { 2, "s6661", "5739", "=q1=Barbaric Harness", "=ds=#sr# 190" };
+ { 3, "s9196", "7374", "=q2=Dusky Leather Armor", "=ds=#sr# 175" };
+ { 4, "s9197", "7375", "=q2=Green Whelp Armor", "=ds=#sr# 175" };
+ { 5, "s3773", "4256", "=q2=Guardian Armor", "=ds=#sr# 175" };
+ { 6, "s6704", "5782", "=q2=Thick Murloc Armor", "=ds=#sr# 170" };
+ { 7, "s4096", "4455", "=q2=Raptor Hide Harness", "=ds=#sr# 165" };
+ { 8, "s2166", "2314", "=q1=Toughened Leather Armor", "=ds=#sr# 120" };
+ { 9, "s24940", "20575", "=q2=Black Whelp Tunic", "=ds=#sr# 100" };
+ { 10, "s2169", "2317", "=q2=Dark Leather Tunic", "=ds=#sr# 100" };
+ { 11, "s3762", "4244", "=q2=Hillman's Leather Vest", "=ds=#sr# 100" };
+ { 12, "s6703", "5781", "=q2=Murloc Scale Breastplate", "=ds=#sr# 95" };
+ { 13, "s8322", "6709", "=q2=Moonglow Vest", "=ds=#sr# 90" };
+ { 14, "s3761", "4243", "=q2=Fine Leather Tunic", "=ds=#sr# 85" };
+ { 15, "s2160", "2300", "=q2=Embossed Leather Vest", "=ds=#sr# 40" };
+ { 16, "s2163", "2311", "=q1=White Leather Jerkin", "=ds=#sr# 60" };
+ { 17, "s7126", "5957", "=q1=Handstitched Leather Vest", "=ds=#sr# 1" };
+ };
+
+ {
+ Name = AL["Leather Armor"] .. " - Feet";
+ { 1, "s28473", "22760", "=q3=Bramblewood Boots", "=ds=#sr# 300" };
+ { 2, "s22922", "18506", "=q3=Mongoose Boots", "=ds=#sr# 300" };
+ { 3, "s20853", "16982", "=q4=Corehound Boots", "=ds=#sr# 295" };
+ { 4, "s23705", "19052", "=q3=Dawn Treaders", "=ds=#sr# 290" };
+ { 5, "s44953", "34086", "=q1=Winter Boots", "=ds=#sr# 285" };
+ { 6, "s19063", "15073", "=q2=Chimeric Boots", "=ds=#sr# 275" };
+ { 7, "s19066", "15071", "=q2=Frostsaber Boots", "=ds=#sr# 275" };
+ { 8, "s10566", "8213", "=q2=Wild Leather Boots", "=ds=#sr# 245" };
+ { 9, "s10558", "8197", "=q2=Nightscape Boots", "=ds=#sr# 235" };
+ { 10, "s9207", "7390", "=q2=Dusky Boots", "=ds=#sr# 200" };
+ { 11, "s9208", "7391", "=q2=Swift Boots", "=ds=#sr# 200" };
+ { 12, "s2167", "2315", "=q1=Dark Leather Boots", "=ds=#sr# 100" };
+ { 13, "s2158", "2307", "=q1=Fine Leather Boots", "=ds=#sr# 90" };
+ { 14, "s2161", "2309", "=q2=Embossed Leather Boots", "=ds=#sr# 55" };
+ { 15, "s2149", "2302", "=q1=Handstitched Leather Boots", "=ds=#sr# 1" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Hands";
+ { 1, "s28220", "22662", "=q4=Polar Gloves", "=ds=#sr# 300" };
+ { 2, "s24122", "19686", "=q3=Primal Batskin Gloves", "=ds=#sr# 300" };
+ { 3, "s26279", "21278", "=q3=Stormshroud Gloves", "=ds=#sr# 300" };
+ { 4, "s19087", "15070", "=q2=Frostsaber Gloves", "=ds=#sr# 295" };
+ { 5, "s19084", "15063", "=q3=Devilsaur Gauntlets", "=ds=#sr# 290" };
+ { 6, "s19055", "15091", "=q2=Runic Leather Gauntlets", "=ds=#sr# 270" };
+ { 7, "s19053", "15074", "=q2=Chimeric Gloves", "=ds=#sr# 265" };
+ { 8, "s19049", "15083", "=q2=Wicked Leather Gauntlets", "=ds=#sr# 260" };
+ { 9, "s22711", "18238", "=q3=Shadowskin Gloves", "=ds=#sr# 200" };
+ { 10, "s21943", "17721", "=q2=Gloves of the Greatfather", "=ds=#sr# 190" };
+ { 11, "s7156", "5966", "=q1=Guardian Gloves", "=ds=#sr# 190" };
+ { 12, "s3771", "4254", "=q2=Barbaric Gloves", "=ds=#sr# 150" };
+ { 13, "s9149", "7359", "=q2=Heavy Earthen Gloves", "=ds=#sr# 145" };
+ { 14, "s3764", "4247", "=q2=Hillman's Leather Gloves", "=ds=#sr# 145" };
+ { 15, "s9148", "7358", "=q2=Pilferer's Gloves", "=ds=#sr# 140" };
+ { 16, "s3770", "4253", "=q3=Toughened Leather Gloves", "=ds=#sr# 135" };
+ { 17, "s9146", "7349", "=q2=Herbalist's Gloves", "=ds=#sr# 135" };
+ { 18, "s9145", "7348", "=q2=Fletcher's Gloves", "=ds=#sr# 125" };
+ { 19, "s3765", "4248", "=q2=Dark Leather Gloves", "=ds=#sr# 120" };
+ { 20, "s9074", "7285", "=q2=Nimble Leather Gloves", "=ds=#sr# 120" };
+ { 21, "s9072", "7284", "=q2=Red Whelp Gloves", "=ds=#sr# 120" };
+ { 22, "s7954", "6467", "=q2=Deviate Scale Gloves", "=ds=#sr# 105" };
+ { 23, "s2164", "2312", "=q2=Fine Leather Gloves", "=ds=#sr# 75" };
+ { 24, "s3756", "4239", "=q1=Embossed Leather Gloves", "=ds=#sr# 55" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Head";
+ { 1, "s20854", "16983", "=q4=Molten Helm", "=ds=#sr# 300" };
+ { 2, "s28472", "22759", "=q3=Bramblewood Helm", "=ds=#sr# 300" };
+ { 3, "s19082", "15094", "=q2=Runic Leather Headband", "=ds=#sr# 290" };
+ { 4, "s19071", "15086", "=q2=Wicked Leather Headband", "=ds=#sr# 280" };
+ { 5, "s10632", "8348", "=q3=Helm of Fire", "=ds=#sr# 250" };
+ { 6, "s10546", "8214", "=q2=Wild Leather Helmet", "=ds=#sr# 225" };
+ { 7, "s10621", "8345", "=q3=Wolfshead Helm", "=ds=#sr# 225" };
+ { 8, "s10531", "8201", "=q2=Big Voodoo Mask", "=ds=#sr# 220" };
+ { 9, "s10507", "8176", "=q2=Nightscape Headband", "=ds=#sr# 205" };
+ { 10, "s10490", "8174", "=q2=Comfortable Leather Hat", "=ds=#sr# 200" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Legs";
+ { 1, "s19091", "15095", "=q2=Runic Leather Pants", "=ds=#sr# 300" };
+ { 2, "s19097", "15062", "=q3=Devilsaur Leggings", "=ds=#sr# 300" };
+ { 3, "s19083", "15087", "=q2=Wicked Leather Pants", "=ds=#sr# 290" };
+ { 4, "s19074", "15069", "=q2=Frostsaber Leggings", "=ds=#sr# 285" };
+ { 5, "s19080", "15065", "=q3=Warbear Woolies", "=ds=#sr# 285" };
+ { 6, "s19078", "15060", "=q3=Living Leggings", "=ds=#sr# 285" };
+ { 7, "s19073", "15072", "=q2=Chimeric Leggings", "=ds=#sr# 280" };
+ { 8, "s19067", "15057", "=q3=Stormshroud Pants", "=ds=#sr# 275" };
+ { 9, "s19059", "15054", "=q2=Volcanic Leggings", "=ds=#sr# 270" };
+ { 10, "s36074", "29964", "=q3=Blackstorm Leggings", "=ds=#sr# 260" };
+ { 11, "s36075", "29970", "=q3=Wildfeather Leggings", "=ds=#sr# 260" };
+ { 12, "s10572", "8212", "=q2=Wild Leather Leggings", "=ds=#sr# 250" };
+ { 13, "s10560", "8202", "=q2=Big Voodoo Pants", "=ds=#sr# 240" };
+ { 14, "s10548", "8193", "=q2=Nightscape Pants", "=ds=#sr# 230" };
+ { 15, "s7149", "5963", "=q2=Barbaric Leggings", "=ds=#sr# 170" };
+ { 16, "s9195", "7373", "=q2=Dusky Leather Leggings", "=ds=#sr# 165" };
+ { 17, "s7147", "5962", "=q2=Guardian Pants", "=ds=#sr# 160" };
+ { 18, "s3772", "4255", "=q2=Green Leather Armor", "=ds=#sr# 155" };
+ { 19, "s7133", "5958", "=q2=Fine Leather Pants", "=ds=#sr# 105" };
+ { 20, "s7135", "5961", "=q2=Dark Leather Pants", "=ds=#sr# 115" };
+ { 21, "s9068", "7282", "=q2=Light Leather Pants", "=ds=#sr# 95" };
+ { 22, "s3759", "4242", "=q2=Embossed Leather Pants", "=ds=#sr# 75" };
+ { 23, "s9064", "7280", "=q2=Rugged Leather Pants", "=ds=#sr# 35" };
+ { 24, "s2153", "2303", "=q1=Handstitched Leather Pants", "=ds=#sr# 15" };
+
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Shoulder";
+ { 1, "s23704", "19049", "=q3=Timbermaw Brawlers", "=ds=#sr# 300" };
+ { 2, "s24125", "19689", "=q3=Blood Tiger Shoulders", "=ds=#sr# 300" };
+ { 3, "s23706", "19058", "=q3=Golden Mantle of the Dawn", "=ds=#sr# 300" };
+ { 4, "s19103", "15096", "=q2=Runic Leather Shoulders", "=ds=#sr# 300" };
+ { 5, "s19101", "15055", "=q2=Volcanic Shoulders", "=ds=#sr# 300" };
+ { 6, "s19090", "15058", "=q3=Stormshroud Shoulders", "=ds=#sr# 295" };
+ { 7, "s23703", "19044", "=q3=Might of the Timbermaw", "=ds=#sr# 290" };
+ { 8, "s19062", "15067", "=q3=Ironfeather Shoulders", "=ds=#sr# 270" };
+ { 9, "s19061", "15061", "=q3=Living Shoulders", "=ds=#sr# 270" };
+ { 10, "s10529", "8210", "=q2=Wild Leather Shoulders", "=ds=#sr# 220" };
+ { 11, "s10516", "8192", "=q2=Nightscape Shoulders", "=ds=#sr# 210" };
+ { 12, "s7151", "5964", "=q2=Barbaric Shoulders", "=ds=#sr# 175" };
+ { 13, "s3769", "4252", "=q2=Dark Leather Shoulders", "=ds=#sr# 140" };
+ { 14, "s9147", "7352", "=q2=Earthen Leather Shoulders", "=ds=#sr# 135" };
+ { 15, "s3768", "4251", "=q2=Hillman's Shoulders", "=ds=#sr# 130" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Waist";
+ { 1, "s23709", "19162", "=q4=Corehound Belt", "=ds=#sr# 300" };
+ { 2, "s23707", "19149", "=q4=Lava Belt", "=ds=#sr# 300" };
+ { 3, "s23710", "19163", "=q4=Molten Belt", "=ds=#sr# 300" };
+ { 4, "s22921", "18504", "=q3=Girdle of Insight", "=ds=#sr# 300" };
+ { 5, "s28474", "22761", "=q3=Bramblewood Belt", "=ds=#sr# 300" };
+ { 6, "s19092", "15088", "=q2=Wicked Leather Belt", "=ds=#sr# 300" };
+ { 7, "s19072", "15093", "=q2=Runic Leather Belt", "=ds=#sr# 280" };
+ { 8, "s3779", "4264", "=q2=Barbaric Belt", "=ds=#sr# 200" };
+ { 9, "s9206", "7387", "=q2=Dusky Belt", "=ds=#sr# 195" };
+ { 10, "s3778", "4262", "=q3=Gem-studded Leather Belt", "=ds=#sr# 185" };
+ { 11, "s3775", "4258", "=q2=Guardian Belt", "=ds=#sr# 170" };
+ { 12, "s4097", "4456", "=q2=Raptor Hide Belt", "=ds=#sr# 165" };
+ { 13, "s3774", "4257", "=q2=Green Leather Belt", "=ds=#sr# 160" };
+ { 14, "s3766", "4249", "=q2=Dark Leather Belt", "=ds=#sr# 125" };
+ { 15, "s3767", "4250", "=q2=Hillman's Belt", "=ds=#sr# 120" };
+ { 16, "s7955", "6468", "=q3=Deviate Scale Belt", "=ds=#sr# 115" };
+ { 17, "s6702", "5780", "=q2=Murloc Scale Belt", "=ds=#sr# 90" };
+ { 18, "s3763", "4246", "=q1=Fine Leather Belt", "=ds=#sr# 80" };
+ { 19, "s3753", "4237", "=q1=Handstitched Leather Belt", "=ds=#sr# 25" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Wrist";
+ { 1, "s28221", "22663", "=q4=Polar Bracers", "=ds=#sr# 300" };
+ { 2, "s24123", "19687", "=q3=Primal Batskin Bracers", "=ds=#sr# 300" };
+ { 3, "s19065", "15092", "=q2=Runic Leather Bracers", "=ds=#sr# 275" };
+ { 4, "s19052", "15084", "=q2=Wicked Leather Bracers", "=ds=#sr# 265" };
+ { 5, "s3777", "4260", "=q2=Guardian Leather Bracers", "=ds=#sr# 195" };
+ { 6, "s9202", "7386", "=q2=Green Whelp Bracers", "=ds=#sr# 190" };
+ { 7, "s6705", "5783", "=q2=Murloc Scale Bracers", "=ds=#sr# 190" };
+ { 8, "s9201", "7378", "=q2=Dusky Bracers", "=ds=#sr# 185" };
+ { 9, "s3776", "4259", "=q2=Green Leather Bracers", "=ds=#sr# 180" };
+ { 10, "s23399", "18948", "=q3=Barbaric Bracers", "=ds=#sr# 155" };
+ { 11, "s9065", "7281", "=q1=Light Leather Bracers", "=ds=#sr# 70" };
+ { 12, "s9059", "7277", "=q1=Handstitched Leather Bracers", "=ds=#sr# 1" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Chest";
+ { 1, "s28222", "22664", "=q4=Icy Scale Breastplate", "=ds=#sr# 300" };
+ { 2, "s24703", "20380", "=q4=Dreamscale Breastplate", "=ds=#sr# 300" };
+ { 3, "s24851", "20478", "=q3=Sandstalker Breastplate", "=ds=#sr# 300" };
+ { 4, "s24848", "20479", "=q3=Spitfire Breastplate", "=ds=#sr# 300" };
+ { 5, "s19054", "15047", "=q3=Red Dragonscale Breastplate", "=ds=#sr# 300" };
+ { 6, "s19085", "15050", "=q3=Black Dragonscale Breastplate", "=ds=#sr# 290" };
+ { 7, "s19077", "15048", "=q3=Blue Dragonscale Breastplate", "=ds=#sr# 285" };
+ { 8, "s19050", "15045", "=q3=Green Dragonscale Breastplate", "=ds=#sr# 260" };
+ { 9, "s19051", "15076", "=q2=Heavy Scorpid Vest", "=ds=#sr# 265" };
+ { 10, "s10650", "8367", "=q3=Dragonscale Breastplate", "=ds=#sr# 255" };
+ { 11, "s10525", "8203", "=q2=Tough Scorpid Breastplate", "=ds=#sr# 220" };
+ { 12, "s10511", "8189", "=q2=Turtle Scale Breastplate", "=ds=#sr# 210" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Feet";
+ { 1, "s20855", "16984", "=q4=Black Dragonscale Boots", "=ds=#sr# 300" };
+ { 2, "s10554", "8209", "=q2=Tough Scorpid Boots", "=ds=#sr# 235" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Hands";
+ { 1, "s28223", "22666", "=q4=Icy Scale Gauntlets", "=ds=#sr# 300" };
+ { 2, "s23708", "19157", "=q4=Chromatic Gauntlets", "=ds=#sr# 300" };
+ { 3, "s24850", "20477", "=q3=Sandstalker Gauntlets", "=ds=#sr# 300" };
+ { 4, "s24847", "20480", "=q3=Spitfire Gauntlets", "=ds=#sr# 300" };
+ { 5, "s24655", "20296", "=q3=Green Dragonscale Gauntlets", "=ds=#sr# 280" };
+ { 6, "s19064", "15078", "=q2=Heavy Scorpid Gauntlets", "=ds=#sr# 275" };
+ { 7, "s10619", "8347", "=q3=Dragonscale Gauntlets", "=ds=#sr# 225" };
+ { 8, "s10542", "8204", "=q2=Tough Scorpid Gloves", "=ds=#sr# 225" };
+ { 9, "s10509", "8187", "=q2=Turtle Scale Gloves", "=ds=#sr# 205" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Head";
+ { 1, "s19088", "15080", "=q2=Heavy Scorpid Helm", "=ds=#sr# 295" };
+ { 2, "s10570", "8208", "=q2=Tough Scorpid Helm", "=ds=#sr# 250" };
+ { 3, "s10552", "8191", "=q2=Turtle Scale Helm", "=ds=#sr# 230" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Legs";
+ { 1, "s24654", "20295", "=q3=Blue Dragonscale Leggings", "=ds=#sr# 300" };
+ { 2, "s19107", "15052", "=q3=Black Dragonscale Leggings", "=ds=#sr# 300" };
+ { 3, "s19075", "15079", "=q2=Heavy Scorpid Leggings", "=ds=#sr# 285" };
+ { 4, "s19060", "15046", "=q3=Green Dragonscale Leggings", "=ds=#sr# 270" };
+ { 5, "s36076", "29971", "=q3=Dragonstrike Leggings", "=ds=#sr# 260" };
+ { 6, "s10568", "8206", "=q2=Tough Scorpid Leggings", "=ds=#sr# 245" };
+ { 7, "s10556", "8185", "=q2=Turtle Scale Leggings", "=ds=#sr# 235" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Shoulder";
+ { 1, "s19094", "15051", "=q3=Black Dragonscale Shoulders", "=ds=#sr# 300" };
+ { 2, "s19100", "15081", "=q2=Heavy Scorpid Shoulders", "=ds=#sr# 300" };
+ { 3, "s19089", "15049", "=q3=Blue Dragonscale Shoulders", "=ds=#sr# 295" };
+ { 4, "s10564", "8207", "=q2=Tough Scorpid Shoulders", "=ds=#sr# 240" };
+
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Waist";
+ { 1, "s19070", "15082", "=q2=Heavy Scorpid Belt", "=ds=#sr# 280" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Wrist";
+ { 1, "s28224", "22665", "=q4=Icy Scale Bracers", "=ds=#sr# 300" };
+ { 2, "s22923", "18508", "=q3=Swift Flight Bracers", "=ds=#sr# 300" };
+ { 3, "s24849", "20476", "=q3=Sandstalker Bracers", "=ds=#sr# 300" };
+ { 4, "s24846", "20481", "=q3=Spitfire Bracers", "=ds=#sr# 300" };
+ { 5, "s19048", "15077", "=q2=Heavy Scorpid Bracers", "=ds=#sr# 255" };
+ { 6, "s10533", "8205", "=q2=Tough Scorpid Bracers", "=ds=#sr# 220" };
+ { 7, "s10518", "8198", "=q2=Turtle Scale Bracers", "=ds=#sr# 210" };
+ };
+ {
+ Name = AL["Item Enhancements"];
+ { 1, "s19058", "15564", "=q1=Rugged Armor Kit", "=ds=#sr# 250" };
+ { 2, "s10487", "8173", "=q1=Thick Armor Kit", "=ds=#sr# 200" };
+ { 3, "s3780", "4265", "=q1=Heavy Armor Kit", "=ds=#sr# 150" };
+ { 4, "s2165", "2313", "=q1=Medium Armor Kit", "=ds=#sr# 100" };
+ { 5, "s2152", "2304", "=q1=Light Armor Kit", "=ds=#sr# 1" };
+ };
+ {
+ Name = AL["Quivers and Ammo Pouches"];
+ { 1, "s14930", "8217", "=q2=Quickdraw Quiver", "=ds=#sr# 225" };
+ { 2, "s14932", "8218", "=q2=Thick Leather Ammo Pouch", "=ds=#sr# 225" };
+ { 3, "s9194", "7372", "=q2=Heavy Leather Ammo Pouch", "=ds=#sr# 150" };
+ { 4, "s9193", "7371", "=q2=Heavy Quiver", "=ds=#sr# 150" };
+ { 5, "s9060", "7278", "=q1=Light Leather Quiver", "=ds=#sr# 30" };
+ { 6, "s9062", "7279", "=q1=Small Leather Ammo Pouch", "=ds=#sr# 30" };
+ };
+ {
+ Name = AL["Drums, Bags and Misc."];
+ { 1, "s22815", "18258", "=q2=Gordok Ogre Suit", "=ds=#sr# 275" };
+ { 2, "s23190", "18662", "=q1=Heavy Leather Ball", "=ds=#sr# 150" };
+ { 3, "s5244", "5081", "=q1=Kodo Hide Bag", "=ds=#sr# 40" };
+ };
+ {
+ Name = BabbleInventory["Leather"];
+ { 1, "s22331", "8170", "=q1=Rugged Leather", "=ds=#sr# 250" };
+ { 2, "s19047", "15407", "=q1=Cured Rugged Hide", "=ds=#sr# 250" };
+ { 3, "s20650", "4304", "=q1=Thick Leather", "=ds=#sr# 200" };
+ { 4, "s10482", "8172", "=q1=Cured Thick Hide", "=ds=#sr# 200" };
+ { 5, "s20649", "4234", "=q1=Heavy Leather", "=ds=#sr# 150" };
+ { 6, "s3818", "4236", "=q1=Cured Heavy Hide", "=ds=#sr# 150" };
+ { 7, "s20648", "2319", "=q1=Medium Leather", "=ds=#sr# 100" };
+ { 8, "s3817", "4233", "=q1=Cured Medium Hide", "=ds=#sr# 100" };
+ { 9, "s3816", "4231", "=q1=Cured Light Hide", "=ds=#sr# 35" };
+ { 10, "s2881", "2318", "=q1=Light Leather", "=ds=#sr# 1" };
+ };
+ {
+ Name = DRAGONSCALE;
+ { 1, "s24654", "20295", "=q3=Blue Dragonscale Leggings", "=ds=#sr# 300" };
+ { 2, "s24655", "20296", "=q3=Green Dragonscale Gauntlets", "=ds=#sr# 280" };
+ { 3, "s36076", "29971", "=q3=Dragonstrike Leggings", "=ds=#sr# 260" };
+ { 4, "s10650", "8367", "=q3=Dragonscale Breastplate", "=ds=#sr# 255" };
+ { 5, "s10619", "8347", "=q3=Dragonscale Gauntlets", "=ds=#sr# 225" };
+ };
+ {
+ Name = ELEMENTAL;
+ { 3, "s10630", "8346", "=q3=Gauntlets of the Sea", "=ds=#sr# 230" };
+ { 2, "s10632", "8348", "=q3=Helm of Fire", "=ds=#sr# 250" };
+ { 1, "s36074", "29964", "=q3=Blackstorm Leggings", "=ds=#sr# 260" };
+ };
+ {
+ Name = TRIBAL;
+ { 3, "s10621", "8345", "=q3=Wolfshead Helm", "=ds=#sr# 225" };
+ { 2, "s10647", "8349", "=q3=Feathered Breastplate", "=ds=#sr# 250" };
+ { 1, "s36075", "29970", "=q3=Wildfeather Leggings", "=ds=#sr# 260" };
+ };
+};
+
+--------------
+--- Mining ---
+--------------
+
+AtlasLoot_Data["MiningCLASSIC"] = {
+ Name = MINING;
+ Type = "CraftingNoBF";
+ {
+ Name = MINING;
+ { 1, "s22967", "17771", "=q5=Smelt Elementium", "=ds=#sr# 300" };
+ { 2, "s70524", "12655", "=q1=Enchanted Thorium", "=ds=#sr# 250" };
+ { 3, "s16153", "12359", "=q1=Smelt Thorium", "=ds=#sr# 250" };
+ { 4, "s14891", "11371", "=q1=Smelt Dark Iron", "=ds=#sr# 230" };
+ { 5, "s10098", "6037", "=q2=Smelt Truesilver", "=ds=#sr# 230" };
+ { 6, "s10097", "3860", "=q1=Smelt Mithril", "=ds=#sr# 175" };
+ { 7, "s3569", "3859", "=q1=Smelt Steel", "=ds=#sr# 165" };
+ { 8, "s3308", "3577", "=q2=Smelt Gold", "=ds=#sr# 155" };
+ { 9, "s3307", "3575", "=q1=Smelt Iron", "=ds=#sr# 125" };
+ { 10, "s2658", "2842", "=q2=Smelt Silver", "=ds=#sr# 75" };
+ { 11, "s2659", "2841", "=q1=Smelt Bronze", "=ds=#sr# 65" };
+ { 12, "s3304", "3576", "=q1=Smelt Tin", "=ds=#sr# 65" };
+ { 13, "s2657", "2840", "=q1=Smelt Copper", "=ds=#sr# 1" };
+ };
+};
+
+-----------------
+--- Tailoring ---
+-----------------
+
+AtlasLoot_Data["TailoringCLASSIC"] = {
+ Name = TAILORING;
+ Type = "Crafting";
+ {
+ Name = AL["Cloth Armor"] .. " - Back";
+ { 1, "s28208", "22658", "=q4=Glacial Cloak", "=ds=#sr# 300" };
+ { 2, "s28210", "22660", "=q3=Gaea's Embrace", "=ds=#sr# 300" };
+ { 3, "s22870", "18413", "=q3=Cloak of Warding", "=ds=#sr# 300" };
+ { 4, "s23662", "19047", "=q3=Wisdom of the Timbermaw", "=ds=#sr# 290" };
+ { 5, "s18422", "14134", "=q3=Cloak of Fire", "=ds=#sr# 275" };
+ { 6, "s18409", "13860", "=q2=Runecloth Cloak", "=ds=#sr# 265" };
+ { 7, "s3862", "4327", "=q3=Icy Cloak", "=ds=#sr# 200" };
+ { 8, "s63742", "45626", "=q3=Spidersilk Drape", "=ds=#sr# 125" };
+ { 9, "s18420", "14103", "=q2=Brightcloth Cloak", "=ds=#sr# 275" };
+ { 10, "s18418", "14044", "=q2=Cindercloth Cloak", "=ds=#sr# 275" };
+ { 11, "s3861", "4326", "=q2=Long Silken Cloak", "=ds=#sr# 185" };
+ { 12, "s8789", "7056", "=q2=Crimson Silk Cloak", "=ds=#sr# 180" };
+ { 13, "s8786", "7053", "=q2=Azure Silk Cloak", "=ds=#sr# 175" };
+ { 14, "s8780", "7047", "=q2=Hands of Darkness", "=ds=#sr# 145" };
+ { 15, "s3844", "4311", "=q2=Heavy Woolen Cloak", "=ds=#sr# 100" };
+ { 16, "s6521", "5542", "=q2=Pearl-clasped Cloak", "=ds=#sr# 90" };
+ { 17, "s2402", "2584", "=q1=Woolen Cape", "=ds=#sr# 75" };
+ { 18, "s2397", "2580", "=q1=Reinforced Linen Cape", "=ds=#sr# 60" };
+ { 19, "s2387", "2570", "=q1=Linen Cloak", "=ds=#sr# 1" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Chest";
+ { 1, "s23666", "19156", "=q4=Flarecore Robe", "=ds=#sr# 300" };
+ { 2, "s28207", "22652", "=q4=Glacial Vest", "=ds=#sr# 300" };
+ { 3, "s18457", "14152", "=q4=Robe of the Archmage", "=ds=#sr# 300" };
+ { 4, "s18458", "14153", "=q4=Robe of the Void", "=ds=#sr# 300" };
+ { 5, "s18456", "14154", "=q4=Truefaith Vestments", "=ds=#sr# 300" };
+ { 6, "s24091", "19682", "=q3=Bloodvine Vest", "=ds=#sr# 300" };
+ { 7, "s22902", "18486", "=q3=Mooncloth Robe", "=ds=#sr# 300" };
+ { 8, "s18447", "14138", "=q3=Mooncloth Vest", "=ds=#sr# 300" };
+ { 9, "s28480", "22756", "=q3=Sylvan Vest", "=ds=#sr# 300" };
+ { 10, "s18451", "14106", "=q2=Felcloth Robe", "=ds=#sr# 300" };
+ { 11, "s18446", "14128", "=q2=Wizardweave Robe", "=ds=#sr# 300" };
+ { 12, "s18436", "14136", "=q3=Robe of Winter Night", "=ds=#sr# 285" };
+ { 13, "s12070", "10021", "=q3=Dreamweave Vest", "=ds=#sr# 225" };
+ { 14, "s18416", "14141", "=q2=Ghostweave Vest", "=ds=#sr# 275" };
+ { 15, "s22813", "18258", "=q2=Gordok Ogre Suit", "=ds=#sr# 275" };
+ { 16, "s18414", "14100", "=q2=Brightcloth Robe", "=ds=#sr# 270" };
+ { 17, "s18408", "14042", "=q2=Cindercloth Vest", "=ds=#sr# 260" };
+ { 18, "s18406", "13858", "=q2=Runecloth Robe", "=ds=#sr# 260" };
+ { 19, "s18407", "13857", "=q2=Runecloth Tunic", "=ds=#sr# 260" };
+ { 20, "s18404", "13868", "=q2=Frostweave Robe", "=ds=#sr# 255" };
+ { 21, "s18403", "13869", "=q2=Frostweave Tunic", "=ds=#sr# 255" };
+ { 22, "s26407", "21542", "=q1=Festive Red Pant Suit", "=ds=#sr# 250" };
+ { 23, "s26403", "21154", "=q1=Festival Dress", "=ds=#sr# 250" };
+ { 24, "s12093", "10036", "=q1=Tuxedo Jacket", "=ds=#sr# 250" };
+ { 25, "s44950", "34087", "=q1=Green Winter Clothes", "=ds=#sr# 250" };
+ { 26, "s44958", "34085", "=q1=Red Winter Clothes", "=ds=#sr# 250" };
+ { 27, "s12091", "10040", "=q1=White Wedding Dress", "=ds=#sr# 250" };
+ { 28, "s12077", "10053", "=q1=Simple Black Dress", "=ds=#sr# 235" };
+ { 29, "s12069", "10042", "=q2=Cindercloth Robe", "=ds=#sr# 225" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Chest";
+ { 1, "s12056", "10007", "=q2=Red Mageweave Vest", "=ds=#sr# 215" };
+ { 2, "s12055", "10004", "=q2=Shadoweave Robe", "=ds=#sr# 215" };
+ { 3, "s12050", "10001", "=q2=Black Mageweave Robe", "=ds=#sr# 210" };
+ { 4, "s12048", "9998", "=q2=Black Mageweave Vest", "=ds=#sr# 205" };
+ { 5, "s8802", "7063", "=q2=Crimson Silk Robe", "=ds=#sr# 205" };
+ { 12, "s8770", "7054", "=q3=Robe of Power", "=ds=#sr# 190" };
+ { 6, "s8791", "7058", "=q1=Crimson Silk Vest", "=ds=#sr# 185" };
+ { 7, "s8764", "7051", "=q2=Earthen Vest", "=ds=#sr# 170" };
+ { 8, "s8784", "7065", "=q2=Green Silk Armor", "=ds=#sr# 165" };
+ { 9, "s3859", "4324", "=q2=Azure Silk Vest", "=ds=#sr# 150" };
+ { 10, "s6692", "5770", "=q2=Robes of Arcana", "=ds=#sr# 150" };
+ { 11, "s6690", "5766", "=q2=Lesser Wizard's Robe", "=ds=#sr# 135" };
+ { 12, "s7643", "6264", "=q2=Greater Adept's Robe", "=ds=#sr# 115" };
+ { 13, "s8467", "6787", "=q1=White Woolen Dress", "=ds=#sr# 110" };
+ { 14, "s2403", "2585", "=q2=Gray Woolen Robe", "=ds=#sr# 105" };
+ { 15, "s7639", "6263", "=q2=Blue Overalls", "=ds=#sr# 100" };
+ { 16, "s2399", "2582", "=q1=Green Woolen Vest", "=ds=#sr# 85" };
+ { 17, "s2395", "2578", "=q2=Barbaric Linen Vest", "=ds=#sr# 70" };
+ { 18, "s7633", "6242", "=q2=Blue Linen Robe", "=ds=#sr# 70" };
+ { 19, "s7630", "6240", "=q2=Blue Linen Vest", "=ds=#sr# 55" };
+ { 20, "s7629", "6239", "=q2=Red Linen Vest", "=ds=#sr# 55" };
+ { 21, "s8465", "6786", "=q1=Simple Dress", "=ds=#sr# 40" };
+ { 22, "s2389", "2572", "=q2=Red Linen Robe", "=ds=#sr# 40" };
+ { 23, "s7623", "6238", "=q2=Brown Linen Robe", "=ds=#sr# 30" };
+ { 24, "s7624", "6241", "=q2=White Linen Robe", "=ds=#sr# 30" };
+ { 25, "s2385", "2568", "=q1=Brown Linen Vest", "=ds=#sr# 10" };
+ { 26, "s50644", "38277", "=q1=Haliscan Jacket", "=ds=" .. AL["Vendor"] .. "" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Feet";
+ { 1, "s24093", "19684", "=q3=Bloodvine Boots", "=ds=#sr# 300" };
+ { 2, "s24903", "20537", "=q3=Runed Stygian Boots", "=ds=#sr# 300" };
+ { 3, "s19435", "15802", "=q3=Mooncloth Boots", "=ds=#sr# 290" };
+ { 4, "s23664", "19056", "=q3=Argent Boots", "=ds=#sr# 290" };
+ { 5, "s18437", "14108", "=q2=Felcloth Boots", "=ds=#sr# 285" };
+ { 6, "s18423", "13864", "=q2=Runecloth Boots", "=ds=#sr# 280" };
+ { 7, "s12088", "10044", "=q2=Cindercloth Boots", "=ds=#sr# 245" };
+ { 8, "s12082", "10031", "=q2=Shadoweave Boots", "=ds=#sr# 240" };
+ { 9, "s12073", "10026", "=q2=Black Mageweave Boots", "=ds=#sr# 230" };
+ { 10, "s3860", "4325", "=q2=Boots of the Enchanter", "=ds=#sr# 175" };
+ { 11, "s3856", "4321", "=q2=Spider Silk Slippers", "=ds=#sr# 140" };
+ { 12, "s3855", "4320", "=q3=Spidersilk Boots", "=ds=#sr# 125" };
+ { 13, "s3847", "4313", "=q2=Red Woolen Boots", "=ds=#sr# 95" };
+ { 14, "s2401", "2583", "=q2=Woolen Boots", "=ds=#sr# 95" };
+ { 15, "s3845", "4312", "=q2=Soft-soled Linen Boots", "=ds=#sr# 80" };
+ { 16, "s2386", "2569", "=q1=Linen Boots", "=ds=#sr# 65" };
+ { 17, "s12045", "10046", "=q1=Simple Linen Boots", "=ds=#sr# 20" };
+ { 18, "s49677", "6836", "=q1=Dress Shoes", "=ds=" .. AL["Vendor"] .. "" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Hands";
+ { 1, "s20849", "16979", "=q4=Flarecore Gloves", "=ds=#sr# 300" };
+ { 2, "s28205", "22654", "=q4=Glacial Gloves", "=ds=#sr# 300" };
+ { 3, "s18454", "14146", "=q4=Gloves of Spell Mastery", "=ds=#sr# 300" };
+ { 4, "s22867", "18407", "=q3=Felcloth Gloves", "=ds=#sr# 300" };
+ { 5, "s22868", "18408", "=q3=Inferno Gloves", "=ds=#sr# 300" };
+ { 6, "s22869", "18409", "=q3=Mooncloth Gloves", "=ds=#sr# 300" };
+ { 7, "s12067", "10019", "=q3=Dreamweave Gloves", "=ds=#sr# 225" };
+ { 8, "s18417", "13863", "=q2=Runecloth Gloves", "=ds=#sr# 275" };
+ { 9, "s18415", "14101", "=q2=Brightcloth Gloves", "=ds=#sr# 270" };
+ { 10, "s18412", "14043", "=q2=Cindercloth Gloves", "=ds=#sr# 270" };
+ { 11, "s18413", "14142", "=q2=Ghostweave Gloves", "=ds=#sr# 270" };
+ { 12, "s18411", "13870", "=q2=Frostweave Gloves", "=ds=#sr# 265" };
+ { 13, "s12066", "10018", "=q2=Red Mageweave Gloves", "=ds=#sr# 225" };
+ { 14, "s12071", "10023", "=q2=Shadoweave Gloves", "=ds=#sr# 225" };
+ { 15, "s12053", "10003", "=q2=Black Mageweave Gloves", "=ds=#sr# 215" };
+ { 16, "s8804", "7064", "=q2=Crimson Silk Gloves", "=ds=#sr# 210" };
+ { 17, "s8782", "7049", "=q2=Truefaith Gloves", "=ds=#sr# 150" };
+ { 18, "s3854", "4319", "=q2=Azure Silk Gloves", "=ds=#sr# 145" };
+ { 19, "s3852", "4318", "=q2=Gloves of Meditation", "=ds=#sr# 130" };
+ { 20, "s3868", "4331", "=q2=Phoenix Gloves", "=ds=#sr# 125" };
+ { 21, "s3843", "4310", "=q2=Heavy Woolen Gloves", "=ds=#sr# 85" };
+ { 22, "s3840", "4307", "=q1=Heavy Linen Gloves", "=ds=#sr# 35" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Head";
+ { 1, "s18452", "14140", "=q3=Mooncloth Circlet", "=ds=#sr# 300" };
+ { 2, "s28481", "22757", "=q3=Sylvan Crown", "=ds=#sr# 300" };
+ { 3, "s18450", "14130", "=q2=Wizardweave Turban", "=ds=#sr# 300" };
+ { 4, "s18444", "13866", "=q2=Runecloth Headband", "=ds=#sr# 295" };
+ { 5, "s18442", "14111", "=q2=Felcloth Hood", "=ds=#sr# 290" };
+ { 6, "s12092", "10041", "=q3=Dreamweave Circlet", "=ds=#sr# 250" };
+ { 7, "s12086", "10025", "=q2=Shadoweave Mask", "=ds=#sr# 245" };
+ { 8, "s12081", "10030", "=q2=Admiral's Hat", "=ds=#sr# 240" };
+ { 9, "s12084", "10033", "=q2=Red Mageweave Headband", "=ds=#sr# 240" };
+ { 10, "s12072", "10024", "=q2=Black Mageweave Headband", "=ds=#sr# 230" };
+ { 11, "s12059", "10008", "=q2=White Bandit Mask", "=ds=#sr# 215" };
+ { 12, "s3858", "4323", "=q2=Shadow Hood", "=ds=#sr# 170" };
+ { 13, "s3857", "4322", "=q2=Enchanter's Cowl", "=ds=#sr# 165" };
+ { 14, "s8762", "7050", "=q1=Silk Headband", "=ds=#sr# 160" };
+ { 15, "s8760", "7048", "=q1=Azure Silk Hood", "=ds=#sr# 145" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Legs";
+ { 1, "s23667", "19165", "=q4=Flarecore Leggings", "=ds=#sr# 300" };
+ { 2, "s24092", "19683", "=q3=Bloodvine Leggings", "=ds=#sr# 300" };
+ { 3, "s24901", "20538", "=q3=Runed Stygian Leggings", "=ds=#sr# 300" };
+ { 4, "s18440", "14137", "=q3=Mooncloth Leggings", "=ds=#sr# 290" };
+ { 5, "s18439", "14104", "=q2=Brightcloth Pants", "=ds=#sr# 290" };
+ { 6, "s18441", "14144", "=q2=Ghostweave Pants", "=ds=#sr# 290" };
+ { 7, "s18438", "13865", "=q2=Runecloth Pants", "=ds=#sr# 285" };
+ { 8, "s18434", "14045", "=q2=Cindercloth Pants", "=ds=#sr# 280" };
+ { 9, "s18424", "13871", "=q2=Frostweave Pants", "=ds=#sr# 280" };
+ { 10, "s18419", "14107", "=q2=Felcloth Pants", "=ds=#sr# 275" };
+ { 11, "s18421", "14132", "=q2=Wizardweave Leggings", "=ds=#sr# 275" };
+ { 12, "s12089", "10035", "=q1=Tuxedo Pants", "=ds=#sr# 245" };
+ { 13, "s50647", "38278", "=q1=Haliscan Pantaloons", "=ds=" .. AL["Vendor"] .. "" };
+ { 14, "s12060", "10009", "=q2=Red Mageweave Pants", "=ds=#sr# 215" };
+ { 15, "s12052", "10002", "=q2=Shadoweave Pants", "=ds=#sr# 210" };
+ { 16, "s12049", "9999", "=q2=Black Mageweave Leggings", "=ds=#sr# 205" };
+ { 17, "s8758", "7046", "=q2=Azure Silk Pants", "=ds=#sr# 140" };
+ { 18, "s3851", "4317", "=q2=Phoenix Pants", "=ds=#sr# 125" };
+ { 19, "s12047", "10048", "=q2=Colorful Kilt", "=ds=#sr# 120" };
+ { 20, "s3850", "4316", "=q2=Heavy Woolen Pants", "=ds=#sr# 110" };
+ { 21, "s12046", "10047", "=q1=Simple Kilt", "=ds=#sr# 75" };
+ { 22, "s3842", "4309", "=q2=Handstitched Linen Britches", "=ds=#sr# 70" };
+ { 23, "s3914", "4343", "=q1=Brown Linen Pants", "=ds=#sr# 30" };
+ { 24, "s12044", "10045", "=q1=Simple Linen Pants", "=ds=#sr# 1" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Shoulder";
+ { 1, "s20848", "16980", "=q4=Flarecore Mantle", "=ds=#sr# 300" };
+ { 2, "s23665", "19059", "=q3=Argent Shoulders", "=ds=#sr# 300" };
+ { 3, "s23663", "19050", "=q3=Mantle of the Timbermaw", "=ds=#sr# 300" };
+ { 4, "s18448", "14139", "=q3=Mooncloth Shoulders", "=ds=#sr# 300" };
+ { 5, "s28482", "22758", "=q3=Sylvan Shoulders", "=ds=#sr# 300" };
+ { 6, "s18453", "14112", "=q2=Felcloth Shoulders", "=ds=#sr# 300" };
+ { 7, "s18449", "13867", "=q2=Runecloth Shoulders", "=ds=#sr# 300" };
+ { 8, "s12078", "10029", "=q2=Red Mageweave Shoulders", "=ds=#sr# 235" };
+ { 9, "s12076", "10028", "=q2=Shadoweave Shoulders", "=ds=#sr# 235" };
+ { 10, "s12074", "10027", "=q2=Black Mageweave Shoulders", "=ds=#sr# 230" };
+ { 11, "s8799", "7062", "=q1=Crimson Silk Pantaloons", "=ds=#sr# 195" };
+ { 12, "s8795", "7060", "=q2=Azure Shoulders", "=ds=#sr# 190" };
+ { 13, "s8793", "7059", "=q2=Crimson Silk Shoulders", "=ds=#sr# 190" };
+ { 14, "s8774", "7057", "=q2=Green Silken Shoulders", "=ds=#sr# 180" };
+ { 15, "s3849", "4315", "=q1=Reinforced Woolen Shoulders", "=ds=#sr# 120" };
+ { 16, "s3848", "4314", "=q1=Double-stitched Woolen Shoulders", "=ds=#sr# 110" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Waist";
+ { 1, "s22866", "18405", "=q4=Belt of the Archmage", "=ds=#sr# 300" };
+ { 2, "s24902", "20539", "=q3=Runed Stygian Belt", "=ds=#sr# 300" };
+ { 3, "s18410", "14143", "=q2=Ghostweave Belt", "=ds=#sr# 265" };
+ { 4, "s18402", "13856", "=q2=Runecloth Belt", "=ds=#sr# 255" };
+ { 5, "s3864", "4329", "=q2=Star Belt", "=ds=#sr# 200" };
+ { 6, "s8797", "7061", "=q2=Earthen Silk Belt", "=ds=#sr# 195" };
+ { 7, "s3863", "4328", "=q2=Spider Belt", "=ds=#sr# 180" };
+ { 8, "s8766", "7052", "=q2=Azure Silk Belt", "=ds=#sr# 175" };
+ { 9, "s8772", "7055", "=q2=Crimson Silk Belt", "=ds=#sr# 175" };
+ { 10, "s8776", "7026", "=q1=Linen Belt", "=ds=#sr# 15" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Wrist";
+ { 1, "s22759", "18263", "=q4=Flarecore Wraps", "=ds=#sr# 300" };
+ { 2, "s28209", "22655", "=q4=Glacial Wrists", "=ds=#sr# 300" };
+ { 3, "s3841", "4308", "=q1=Green Linen Bracers", "=ds=#sr# 60" };
+ };
+ {
+ Name = AL["Bags"];
+ { 1, "s26087", "21342", "=q4=Core Felcloth Bag", "=ds=#sr# 300" };
+ { 2, "s18455", "14156", "=q3=Bottomless Bag", "=ds=#sr# 300" };
+ { 3, "s26086", "21341", "=q3=Felcloth Bag", "=ds=#sr# 280" };
+ { 4, "s27660", "22249", "=q2=Big Bag of Enchantment", "=ds=#sr# 300" };
+ { 5, "s18445", "14155", "=q2=Mooncloth Bag", "=ds=#sr# 300" };
+ { 6, "s27725", "22252", "=q2=Satchel of Cenarius", "=ds=#sr# 300" };
+ { 7, "s27659", "22248", "=q2=Enchanted Runecloth Bag", "=ds=#sr# 275" };
+ { 8, "s27724", "22251", "=q2=Cenarion Herb Bag", "=ds=#sr# 275" };
+ { 9, "s26085", "21340", "=q2=Soul Pouch", "=ds=#sr# 260" };
+ { 10, "s27658", "22246", "=q2=Enchanted Mageweave Pouch", "=ds=#sr# 225" };
+ { 11, "s18405", "14046", "=q1=Runecloth Bag", "=ds=#sr# 260" };
+ { 12, "s12079", "10051", "=q1=Red Mageweave Bag", "=ds=#sr# 235" };
+ { 13, "s12065", "10050", "=q1=Mageweave Bag", "=ds=#sr# 225" };
+ { 14, "s6695", "5765", "=q1=Black Silk Pack", "=ds=#sr# 185" };
+ { 15, "s6693", "5764", "=q1=Green Silk Pack", "=ds=#sr# 175" };
+ { 16, "s3813", "4245", "=q1=Small Silk Pack", "=ds=#sr# 150" };
+ { 17, "s6688", "5763", "=q1=Red Woolen Bag", "=ds=#sr# 115" };
+ { 18, "s3758", "4241", "=q1=Green Woolen Bag", "=ds=#sr# 95" };
+ { 19, "s3757", "4240", "=q1=Woolen Bag", "=ds=#sr# 80" };
+ { 20, "s6686", "5762", "=q1=Red Linen Bag", "=ds=#sr# 70" };
+ { 21, "s3755", "4238", "=q1=Linen Bag", "=ds=#sr# 45" };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s18560", "14342", "=q1=Mooncloth", "=ds=#sr# 250" };
+ { 2, "s18401", "14048", "=q1=Bolt of Runecloth", "=ds=#sr# 250" };
+ { 3, "s3865", "4339", "=q1=Bolt of Mageweave", "=ds=#sr# 175" };
+ { 4, "s3839", "4305", "=q1=Bolt of Silk Cloth", "=ds=#sr# 125" };
+ { 5, "s2964", "2997", "=q1=Bolt of Woolen Cloth", "=ds=#sr# 75" };
+ { 6, "s2963", "2996", "=q1=Bolt of Linen Cloth", "=ds=#sr# 1" };
+ };
+ {
+ Name = AL["Shirts"];
+ { 1, "s12085", "10034", "=q1=Tuxedo Shirt", "=ds=#sr# 240" };
+ { 2, "s12080", "10055", "=q1=Pink Mageweave Shirt", "=ds=#sr# 235" };
+ { 3, "s12075", "10054", "=q1=Lavender Mageweave Shirt", "=ds=#sr# 230" };
+ { 4, "s12064", "10052", "=q1=Orange Martial Shirt", "=ds=#sr# 220" };
+ { 5, "s12061", "10056", "=q1=Orange Mageweave Shirt", "=ds=#sr# 215" };
+ { 6, "s3873", "4336", "=q1=Black Swashbuckler's Shirt", "=ds=#sr# 200" };
+ { 7, "s21945", "17723", "=q1=Green Holiday Shirt", "=ds=#sr# 190" };
+ { 8, "s3872", "4335", "=q1=Rich Purple Silk Shirt", "=ds=#sr# 185" };
+ { 9, "s8489", "6796", "=q1=Red Swashbuckler's Shirt", "=ds=#sr# 175" };
+ { 10, "s3871", "4334", "=q1=Formal White Shirt", "=ds=#sr# 170" };
+ { 11, "s8483", "6795", "=q1=White Swashbuckler's Shirt", "=ds=#sr# 160" };
+ { 12, "s3870", "4333", "=q1=Dark Silk Shirt", "=ds=#sr# 155" };
+ { 13, "s3869", "4332", "=q1=Bright Yellow Shirt", "=ds=#sr# 135" };
+ { 14, "s7892", "6384", "=q1=Stylish Blue Shirt", "=ds=#sr# 120" };
+ { 15, "s7893", "6385", "=q1=Stylish Green Shirt", "=ds=#sr# 120" };
+ { 16, "s3866", "4330", "=q1=Stylish Red Shirt", "=ds=#sr# 110" };
+ { 17, "s2406", "2587", "=q1=Gray Woolen Shirt", "=ds=#sr# 100" };
+ { 18, "s2396", "2579", "=q1=Green Linen Shirt", "=ds=#sr# 70" };
+ { 19, "s2394", "2577", "=q1=Blue Linen Shirt", "=ds=#sr# 40" };
+ { 20, "s2392", "2575", "=q1=Red Linen Shirt", "=ds=#sr# 40" };
+ { 21, "s2393", "2576", "=q1=White Linen Shirt", "=ds=#sr# 1" };
+ { 22, "s3915", "4344", "=q1=Brown Linen Shirt", "=ds=#sr# 1" };
+ };
+};
+
+--------------------------------
+--- Daily Profession Rewards ---
+--------------------------------
+
+---------------
+--- Cooking ---
+---------------
+
+AtlasLoot_Data["CookingDaily1"] = {
+ { 1, 33925, "", "=q3=Recipe: Delicious Chocolate Cake", "=ds=#p3# (1)", "", "" };
+ { 2, 33871, "", "=q3=Recipe: Stormchops", "=ds=#p3# (300)", "", "" };
+ { 3, 33869, "", "=q3=Recipe: Broiled Bloodfin", "=ds=#p3# (300)", "", "" };
+ { 4, 33875, "", "=q2=Recipe: Kibler's Bits", "=ds=#p3# (300)", "", "" };
+ { 5, 33870, "", "=q2=Recipe: Skullfish Soup", "=ds=#p3# (325)", "", "" };
+ { 6, 33873, "", "=q2=Recipe: Spicy Hot Talbuk", "=ds=#p3# (300)", "", "" };
+};
+
+AtlasLoot_Data["CookingDaily2"] = {
+ { 1, 43035, "", "=q2=Recipe: Blackened Dragonfin", "=ds=#p3# (400)" };
+ { 2, 43032, "", "=q2=Recipe: Blackened Worg Steak", "=ds=#p3# (400)" };
+ { 3, 43029, "", "=q2=Recipe: Critter Bites", "=ds=#p3# (400)" };
+ { 4, 43033, "", "=q2=Recipe: Cuttlesteak", "=ds=#p3# (400)" };
+ { 5, 43036, "", "=q2=Recipe: Dragonfin Filet", "=ds=#p3# (400)" };
+ { 6, 43024, "", "=q2=Recipe: Firecracker Salmon", "=ds=#p3# (400)" };
+ { 7, 43030, "", "=q2=Recipe: Hearty Rhino", "=ds=#p3# (400)" };
+ { 8, 43026, "", "=q2=Recipe: Imperial Manta Steak", "=ds=#p3# (400)" };
+ { 9, 43018, "", "=q2=Recipe: Mega Mammoth Meal", "=ds=#p3# (400)" };
+ { 10, 43022, "", "=q2=Recipe: Mighty Rhino Dogs", "=ds=#p3# (400)" };
+ { 11, 43023, "", "=q2=Recipe: Poached Northern Sculpin", "=ds=#p3# (400)" };
+ { 12, 43028, "", "=q2=Recipe: Rhinolicious Wyrmsteak", "=ds=#p3# (400)" };
+ { 13, 43031, "", "=q2=Recipe: Snapper Extreme", "=ds=#p3# (400)" };
+ { 14, 43034, "", "=q2=Recipe: Spiced Mammoth Treats", "=ds=#p3# (400)" };
+ { 15, 43020, "", "=q2=Recipe: Spiced Wyrm Burger", "=ds=#p3# (400)" };
+ { 16, 43025, "", "=q2=Recipe: Spicy Blue Nettlefish", "=ds=#p3# (400)" };
+ { 17, 43027, "", "=q2=Recipe: Spicy Fried Herring", "=ds=#p3# (400)" };
+ { 18, 43019, "", "=q2=Recipe: Tender Shoveltusk Steak", "=ds=#p3# (400)" };
+ { 19, 43037, "", "=q2=Recipe: Tracker Snacks", "=ds=#p3# (400)" };
+ { 20, 43021, "", "=q2=Recipe: Very Burnt Worg", "=ds=#p3# (400)" };
+ { 22, 46349, "", "=q3=Chef's Hat", "=ds=#s1#" };
+ { 23, 43007, "", "=q1=Northern Spices", "=ds=#e8#" };
+ { 25, 0, "inv_misc_bag_11", "=q6=" .. AL["Small Spice Bag"], "" };
+ { 26, 33925, "", "=q3=Recipe: Delicious Chocolate Cake", "=ds=#p3# (1)", "", "" };
+ { 27, 33871, "", "=q3=Recipe: Stormchops", "=ds=#p3# (300)", "", "" };
+ { 28, 44228, "", "=q1=Baby Spice", "=ds=", "", "" };
+ { 29, 44114, "", "=q1=Old Spices", "=ds=", "", "" };
+};
+
+---------------
+--- Fishing ---
+---------------
+
+AtlasLoot_Data["FishingDaily1"] = {
+ { 1, 34837, "", "=q4=The 2 Ring", "=ds=#s13#", "", "" };
+ { 2, 33820, "", "=q3=Weather-Beaten Fishing Hat", "=ds=#s1#, #a1#", "", "" };
+ { 3, 35350, "", "=q3=Chuck's Bucket", "=ds=#e13#", "", "" };
+ { 4, 33818, "", "=q3=Muckbreath's Bucket", "=ds=#e13#", "", "" };
+ { 5, 35349, "", "=q3=Snarly's Bucket", "=ds=#e13#", "", "" };
+ { 6, 33816, "", "=q3=Toothy's Bucket", "=ds=#e13#", "", "" };
+ { 7, 34831, "", "=q3=Eye of the Sea", "=ds=#e7#", "", "" };
+ { 8, 34834, "", "=q2=Recipe: Captain Rumsey's Lager", "=ds=#p3# (100)", "", "" };
+ { 9, 34836, "", "=q2=Spun Truesilver Fishing Line", "=ds=#p24# #e17#", "", "" };
+ { 16, 34827, "", "=q1=Noble's Monocle", "=ds=#s1#", "", "" };
+ { 17, 34828, "", "=q1=Antique Silver Cufflinks", "=ds=#s8#", "", "" };
+ { 18, 34826, "", "=q1=Gold Wedding Band", "=ds=#s13#", "", "" };
+ { 19, 34829, "", "=q1=Ornate Drinking Stein", "=ds=#s15#", "", "" };
+ { 20, 34859, "", "=q1=Razor Sharp Fillet Knife", "=ds=#h1#, #w4#", "", "" };
+ { 21, 34109, "", "=q1=Weather-Beaten Journal", "=ds=#e10#", "", "" };
+ { 22, 8827, "", "=q1=Elixir of Water Walking", "=ds=#e2#", "", "" };
+ { 23, 34861, "", "=q1=Sharpened Fish Hook", "=ds=#e24#", "", "" };
+};
+
+AtlasLoot_Data["FishingDaily2"] = {
+ { 1, 45862, "", "=q4=Bold Stormjewel", "=ds=#e7#", "", "" };
+ { 2, 45882, "", "=q4=Brilliant Stormjewel", "=ds=#e7#", "", "" };
+ { 3, 45879, "", "=q4=Delicate Stormjewel", "=ds=#e7#", "", "" };
+ { 4, 45987, "", "=q4=Rigid Stormjewel", "=ds=#e7#", "", "" };
+ { 5, 45883, "", "=q4=Runed Stormjewel", "=ds=#e7#", "", "" };
+ { 6, 45880, "", "=q4=Solid Stormjewel", "=ds=#e7#", "", "" };
+ { 7, 45881, "", "=q4=Sparkling Stormjewel", "=ds=#e7#", "", "" };
+ { 8, 33820, "", "=q3=Weather-Beaten Fishing Hat", "=ds=#s1#, #a1#", "", "" };
+ { 9, 45991, "", "=q3=Bone Fishing Pole", "=ds=#e20#", "", "" };
+ { 10, 45992, "", "=q3=Jeweled Fishing Pole", "=ds=#e20#", "", "" };
+ { 11, 44983, "", "=q3=Strand Crawler", "=ds=#e13#", "", "" };
+ { 12, 36784, "", "=q3=Siren's Tear", "=ds=#e7#", "", "" };
+ { 13, 45986, "", "=q3=Titanium Lockbox", "=ds=", "", "" };
+ { 14, 34834, "", "=q2=Recipe: Captain Rumsey's Lager", "=ds=#p3# (100)", "", "" };
+ { 15, 19971, "", "=q2=High Test Eternium Fishing Line", "=ds=#p24# #e17#", "", "" };
+ { 16, 45998, "", "=q1=Battered Jungle Hat", "=ds=#s1#", "", "" };
+ { 17, 45861, "", "=q1=Diamond-tipped Cane", "=ds=#h2#", "", "" };
+ { 18, 46006, "", "=q1=Glow Worm", "=ds=#e24#", "", "" };
+ { 19, 45984, "", "=q1=Unusual Compass", "=ds=", "", "" };
+ { 20, 40195, "", "=q1=Pygmy Oil", "=ds=#e2#", "", "" };
+ { 21, 8827, "", "=q1=Elixir of Water Walking", "=ds=#e2#", "", "" };
+ { 22, 46004, "", "=q1=Sealed Vial of Poison", "=ds=#m2#", "", "" };
+ { 23, 48679, "", "=q1=Waterlogged Recipe", "=ds=#m2# #p3# (350)", "", "" };
+};
+
+---------------------
+--- High Risk ---
+---------------------
+
+AtlasLoot_Data["AlchemyHighRiskCLASSIC"] = {
+ Name = ALCHEMY .. " High Risk";
+ Type = "CraftingNoBF";
+ {
+ Name = "Common";
+ { 1, "s968402", "967443", "=q2=Flask of Manifesting Power", "=ds=#sr# 300" };
+ { 2, "s968405", "967446", "=q2=Flask of the Warsong", "=ds=#sr# 300" };
+ { 3, "s968408", "967449", "=q2=Flask of the Kirin Tor", "=ds=#sr# 300" };
+ { 4, "s968411", "967452", "=q2=Flask of Butchery", "=ds=#sr# 300" };
+ { 5, "s968414", "967455", "=q2=Flask of the Unyielding", "=ds=#sr# 300" };
+ { 6, "s968417", "967458", "=q2=Flask of Unrelenting Power", "=ds=#sr# 300" };
+ { 7, "s968420", "967461", "=q2=Flask of Savage Assault", "=ds=#sr# 300" };
+ { 8, "s968423", "967464", "=q2=Flask of Shattering Thunder", "=ds=#sr# 300" };
+ { 9, "s968426", "967467", "=q2=Flask of the Executioner", "=ds=#sr# 300" };
+ { 10, "s968429", "967470", "=q2=Flask of Deep Meditation", "=ds=#sr# 300" };
+ { 11, "s968432", "967473", "=q2=Flask of Adept Striking", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Rare";
+ { 1, "s968403", "967444", "=q3=Potent Flask of Manifesting Power", "=ds=#sr# 300" };
+ { 2, "s968406", "967447", "=q3=Potent Flask of the Warsong", "=ds=#sr# 300" };
+ { 3, "s968409", "967450", "=q3=Potent Flask of the Kirin Tor", "=ds=#sr# 300" };
+ { 4, "s968412", "967453", "=q3=Potent Flask of Butchery", "=ds=#sr# 300" };
+ { 5, "s968415", "967456", "=q3=Potent Flask of the Unyielding", "=ds=#sr# 300" };
+ { 6, "s968418", "967459", "=q3=Potent Flask of Unrelenting Power", "=ds=#sr# 300" };
+ { 7, "s968421", "967462", "=q3=Potent Flask of Savage Assault", "=ds=#sr# 300" };
+ { 8, "s968424", "967465", "=q3=Potent Flask of Shattering Thunder", "=ds=#sr# 300" };
+ { 9, "s968427", "967468", "=q3=Potent Flask of the Executioner", "=ds=#sr# 300" };
+ { 10, "s968430", "967471", "=q3=Potent Flask of Deep Meditation", "=ds=#sr# 300" };
+ { 11, "s968433", "967474", "=q3=Potent Flask of Adept Striking", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Epic";
+ { 1, "s968404", "967445", "=q4=Distilled Flask of Manifesting Power", "=ds=#sr# 300" };
+ { 2, "s968407", "967448", "=q4=Distilled Flask of the Warsong", "=ds=#sr# 300" };
+ { 3, "s968410", "967451", "=q4=Distilled Flask of the Kirin Tor", "=ds=#sr# 300" };
+ { 4, "s968413", "967454", "=q4=Distilled Flask of Butchery", "=ds=#sr# 300" };
+ { 5, "s968416", "967457", "=q4=Distilled Flask of the Unyielding", "=ds=#sr# 300" };
+ { 6, "s968419", "967460", "=q4=Distilled Flask of Unrelenting Power", "=ds=#sr# 300" };
+ { 7, "s968422", "967463", "=q4=Distilled Flask of Savage Assault", "=ds=#sr# 300" };
+ { 8, "s968425", "967466", "=q4=Distilled Flask of Shattering Thunder", "=ds=#sr# 300" };
+ { 9, "s968428", "967469", "=q4=Distilled Flask of the Executioner", "=ds=#sr# 300" };
+ { 10, "s968431", "967472", "=q4=Distilled Flask of Deep Meditation", "=ds=#sr# 300" };
+ { 11, "s968434", "967475", "=q4=Distilled Flask of Adept Striking", "=ds=#sr# 300" };
+ };
+};
+
+AtlasLoot_Data["SmithingHighRiskCLASSIC"] = {
+ Name = BLACKSMITHING .. " High Risk";
+ Type = "CraftingNoBF";
+ {
+ Name = "Common";
+ { 1, "s968018", "967172", "=q2=Living Belt Buckle", "=ds=#sr# 300" };
+ { 2, "s968021", "967175", "=q2=Deflecting Buckle", "=ds=#sr# 300" };
+ { 3, "s968024", "967178", "=q2=Roguish Belt Buckle", "=ds=#sr# 300" };
+ { 4, "s968027", "967181", "=q2=Dancing Belt Buckle", "=ds=#sr# 300" };
+ { 5, "s968030", "967184", "=q2=Magus Belt Buckle", "=ds=#sr# 300" };
+ { 6, "s968033", "967187", "=q2=Cleric's Belt Buckle", "=ds=#sr# 300" };
+ { 7, "s968036", "967190", "=q2=Warlord's Belt Buckle", "=ds=#sr# 300" };
+ { 8, "s968039", "967193", "=q2=Gaurdian's Belt Buckle", "=ds=#sr# 300" };
+ { 10, "s968480", "967680", "=q2=Homicite Key", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Rare";
+ { 1, "s968019", "967173", "=q3=Sturdy Living Belt Buckle", "=ds=#sr# 300" };
+ { 2, "s968022", "967176", "=q3=Sturdy Deflecting Belt Buckle", "=ds=#sr# 300" };
+ { 3, "s968025", "967179", "=q3=Sturdy Roguish Belt Buckle", "=ds=#sr# 300" };
+ { 4, "s968028", "967182", "=q3=Sturdy Dancing Belt Buckle", "=ds=#sr# 300" };
+ { 5, "s968031", "967185", "=q3=Sturdy Magus Belt Buckle", "=ds=#sr# 300" };
+ { 6, "s968034", "967188", "=q3=Sturdy Cleric's Belt Buckle", "=ds=#sr# 300" };
+ { 7, "s968037", "967191", "=q3=Sturdy Warlord's Belt Buckle", "=ds=#sr# 300" };
+ { 8, "s968040", "967194", "=q3=Sturdy Gaurdian's Belt Buckle", "=ds=#sr# 300" };
+ { 10, "s968481", "967681", "=q3=Homicite Key", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Epic";
+ { 1, "s968020", "967174", "=q4=Mastercraft Living Belt Buckle", "=ds=#sr# 300" };
+ { 2, "s968023", "967177", "=q4=Mastercraft Deflecting Belt Buckle", "=ds=#sr# 300" };
+ { 3, "s968026", "967180", "=q4=Mastercraft Roguish Belt Buckle", "=ds=#sr# 300" };
+ { 4, "s968029", "967183", "=q4=Mastercraft Dancing Belt Buckle", "=ds=#sr# 300" };
+ { 5, "s968032", "967186", "=q4=Mastercraft Magus Belt Buckle", "=ds=#sr# 300" };
+ { 6, "s968035", "967189", "=q4=Mastercraft Cleric's Belt Buckle", "=ds=#sr# 300" };
+ { 7, "s968038", "967192", "=q4=Mastercraft Warlord's Belt Buckle", "=ds=#sr# 300" };
+ { 8, "s968041", "967195", "=q4=Mastercraft Gaurdian's Belt Buckle", "=ds=#sr# 300" };
+ { 10, "s968482", "967682", "=q4=Homicite Key", "=ds=#sr# 300" };
+ };
+};
+
+AtlasLoot_Data["LeatherworkingHighRiskCLASSIC"] = {
+ Name = LEATHERWORKING .. " High Risk";
+ Type = "CraftingNoBF";
+ {
+ Name = "Common";
+ { 1, "s968000", "967154", "=q2=Yeti Gambeson", "=ds=#sr# 300" };
+ { 2, "s968003", "967157", "=q2=Devilsaur Gambeson", "=ds=#sr# 300" };
+ { 3, "s968006", "967160", "=q2=Plaguebat Gambeson", "=ds=#sr# 300" };
+ { 4, "s968009", "967163", "=q2=Sandworm Gambeson", "=ds=#sr# 300" };
+ { 5, "s968012", "967166", "=q2=Black Scale Gambeson", "=ds=#sr# 300" };
+ { 6, "s968015", "967169", "=q2=Blue Scale Gambeson", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Rare";
+ { 1, "s968001", "967155", "=q3=Sturdy Yeti Gambeson", "=ds=#sr# 300" };
+ { 2, "s968004", "967158", "=q3=Sturdy Devilsaur Gambeson", "=ds=#sr# 300" };
+ { 3, "s968007", "967161", "=q3=Sturdy Plaguebat Gambeson", "=ds=#sr# 300" };
+ { 4, "s968010", "967164", "=q3=Sturdy Sandworm Gambeson", "=ds=#sr# 300" };
+ { 5, "s968013", "967167", "=q3=Sturdy Black Scale Gambeson", "=ds=#sr# 300" };
+ { 6, "s968016", "967170", "=q3=Sturdy Blue Scale Gambeson", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Epic";
+ { 1, "s968002", "967156", "=q4=Mastercraft Yeti Gambeson", "=ds=#sr# 300" };
+ { 2, "s968005", "967159", "=q4=Mastercraft Devilsaur Gambeson", "=ds=#sr# 300" };
+ { 3, "s968008", "967162", "=q4=Mastercraft Plaguebat Gambeson", "=ds=#sr# 300" };
+ { 4, "s968011", "967165", "=q4=Mastercraft Sandworm Gambeson", "=ds=#sr# 300" };
+ { 5, "s968014", "967168", "=q4=Mastercraft Black Scale Gambeson", "=ds=#sr# 300" };
+ { 6, "s968017", "967171", "=q4=Mastercraft Blue Scale Gambeson", "=ds=#sr# 300" };
+ };
+};
+
+AtlasLoot_Data["EngineeringHighRiskCLASSIC"] = {
+ Name = ENGINEERING .. " High Risk";
+ Type = "CraftingNoBF";
+ {
+ Name = "Common";
+ { 1, "s968042", "967196", "=q2=Gnomish Magnifying Lense I", "=ds=#sr# 300" };
+ { 2, "s968045", "967199", "=q2=Gnomish Focusing Lense", "=ds=#sr# 300" };
+ { 3, "s968048", "967202", "=q2=Gnomish Prismatic Lense", "=ds=#sr# 300" };
+ { 4, "s968051", "967205", "=q2=Hipfire Scope", "=ds=#sr# 300" };
+ { 5, "s968054", "967208", "=q2=Precision Scope", "=ds=#sr# 300" };
+ { 6, "s968057", "967211", "=q2=Reflex Scope", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Rare";
+ { 1, "s968043", "967197", "=q3=Focused Gnomish Magnifying Lense", "=ds=#sr# 300" };
+ { 2, "s968046", "967200", "=q3=Focused Gnomish Focusing Lense", "=ds=#sr# 300" };
+ { 3, "s968049", "967203", "=q3=Focused Gnomish Prismatic Lense", "=ds=#sr# 300" };
+ { 4, "s968052", "967206", "=q3=Focused Hipfire Scope", "=ds=#sr# 300" };
+ { 5, "s968055", "967209", "=q3=Focused Precision Scope", "=ds=#sr# 300" };
+ { 6, "s968058", "967212", "=q3=Focused Reflex Scope", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Epic";
+ { 1, "s968044", "967198", "=q4=Polished Gnomish Magnifying Lense", "=ds=#sr# 300" };
+ { 2, "s968047", "967201", "=q4=Polished Gnomish Focusing Lense", "=ds=#sr# 300" };
+ { 3, "s968050", "967204", "=q4=Polished Gnomish Prismatic Lense", "=ds=#sr# 300" };
+ { 4, "s968053", "967207", "=q4=Polished Hipfire Scope", "=ds=#sr# 300" };
+ { 5, "s968056", "967210", "=q4=Polished Precision Scope", "=ds=#sr# 300" };
+ { 6, "s968059", "967213", "=q4=Polished Reflex Scope", "=ds=#sr# 300" };
+ };
+};
+
+AtlasLoot_Data["EnchantingHighRiskCLASSIC"] = {
+ Name = ENCHANTING .. " High Risk";
+ Type = "CraftingNoBF";
+ {
+ Name = "Common";
+ { 1, "s968676", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Unstoppable Assault", "=ds=#sr# 300" };
+ { 2, "s968679", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Lucid Assault", "=ds=#sr# 300" };
+ { 3, "s968682", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Spellbinder's Rage", "=ds=#sr# 300" };
+ { 4, "s968685", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Ninja's Focus", "=ds=#sr# 300" };
+ { 5, "s968688", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Grovewarden's Blessing", "=ds=#sr# 300" };
+ { 6, "s968691", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Viscious Assault", "=ds=#sr# 300" };
+ { 7, "s968694", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Arcane Dexterity", "=ds=#sr# 300" };
+ { 8, "s968697", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Arcane Artillery", "=ds=#sr# 300" };
+ { 9, "s968700", "Spell_Holy_GreaterHeal", "=q2=Enchant Weapon - Lesser Arcane Precision", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Rare";
+ { 1, "s968677", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Unstoppable Assault", "=ds=#sr# 300" };
+ { 2, "s968680", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Lucid Assault", "=ds=#sr# 300" };
+ { 3, "s968683", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Spellbinder's Rage", "=ds=#sr# 300" };
+ { 4, "s968686", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Ninja's Focus", "=ds=#sr# 300" };
+ { 5, "s968689", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Grovewarden's Blessing", "=ds=#sr# 300" };
+ { 6, "s968692", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Viscious Assault", "=ds=#sr# 300" };
+ { 7, "s968695", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Arcane Dexterity", "=ds=#sr# 300" };
+ { 8, "s968698", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Arcane Artillery", "=ds=#sr# 300" };
+ { 9, "s968701", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Arcane Precision", "=ds=#sr# 300" };
+ { 10, "s968770", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Crusader II", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Epic";
+ { 1, "s968678", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Unstoppable Assault", "=ds=#sr# 300" };
+ { 2, "s968681", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Lucid Assualt", "=ds=#sr# 300" };
+ { 3, "s968684", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Spellbinder's Rage", "=ds=#sr# 300" };
+ { 4, "s968687", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Ninja's Focus", "=ds=#sr# 300" };
+ { 5, "s968690", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Grovewarden's Blessing", "=ds=#sr# 300" };
+ { 6, "s968693", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Viscious Assault", "=ds=#sr# 300" };
+ { 7, "s968696", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Arcane Dexterity", "=ds=#sr# 300" };
+ { 8, "s968699", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Arcane Artillery", "=ds=#sr# 300" };
+ { 9, "s968702", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Arcane Precision", "=ds=#sr# 300" };
+ { 10, "s968771", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Crusader III", "=ds=#sr# 300" };
+ };
+};
+
+AtlasLoot_Data["TailoringHighRiskCLASSIC"] = {
+ Name = TAILORING .. " High Risk";
+ Type = "CraftingNoBF";
+ {
+ Name = "Common";
+ { 1, "s968060", "967214", "=q2=Dragonweave Cloak Lining", "=ds=#sr# 300" };
+ { 2, "s968063", "967217", "=q2=Twilight Cloak Lining", "=ds=#sr# 300" };
+ { 3, "s968066", "967220", "=q2=Scarlet Cloak Lining", "=ds=#sr# 300" };
+ { 4, "s968069", "967223", "=q2=Rampager's Cloak Lining", "=ds=#sr# 300" };
+ { 5, "s968072", "967226", "=q2=Deadwind Cloak Lining", "=ds=#sr# 300" };
+ { 6, "s968075", "967229", "=q2=Slippery Cloak Lining", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Rare";
+ { 1, "s968061", "967215", "=q3=Heavy Dragonweave Cloak Lining", "=ds=#sr# 300" };
+ { 2, "s968064", "967218", "=q3=Heavy Twilight Cloak Lining", "=ds=#sr# 300" };
+ { 3, "s968067", "967221", "=q3=Heavy Scarlet Cloak Lining", "=ds=#sr# 300" };
+ { 4, "s968070", "967224", "=q3=Heavy Rampager's Cloak Lining", "=ds=#sr# 300" };
+ { 5, "s968073", "967227", "=q3=Heavy Deadwind Cloak Lining", "=ds=#sr# 300" };
+ { 6, "s968076", "967230", "=q3=Heavy Slippery Cloak Lining", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Epic";
+ { 1, "s968062", "967216", "=q4=Illustrious Dragonweave Cloak Lining", "=ds=#sr# 300" };
+ { 2, "s968065", "967219", "=q4=Illustrious Twilight Cloak Lining", "=ds=#sr# 300" };
+ { 3, "s968068", "967222", "=q4=Illustrious Scarlet Cloak Lining", "=ds=#sr# 300" };
+ { 4, "s968071", "967225", "=q4=Illustrious Rampager's Cloak Lining", "=ds=#sr# 300" };
+ { 5, "s968074", "967228", "=q4=Illustrious Deadwind Cloak Lining", "=ds=#sr# 300" };
+ { 6, "s968077", "967231", "=q4=Illustrious Slippery Cloak Lining", "=ds=#sr# 300" };
+ };
+};
+
+AtlasLoot_Data["CookingHighRiskCLASSIC"] = {
+ Name = COOKING .. " High Risk";
+ Type = "CraftingNoBF";
+ {
+ Name = "Common";
+ { 1, "s968279", "967509", "=q2=Animated Soup for the Soul", "=ds=#sr# 300" };
+ { 2, "s968282", "967512", "=q2=Volcanic Sandwich", "=ds=#sr# 300" };
+ { 3, "s968285", "967515", "=q2=Winter Wontons", "=ds=#sr# 300" };
+ { 4, "s968288", "967518", "=q2=Storm Steak", "=ds=#sr# 300" };
+ { 5, "s968291", "967521", "=q2=Void Touched Stew", "=ds=#sr# 300" };
+ { 6, "s968294", "967524", "=q2=Spicy Vulture Steak", "=ds=#sr# 300" };
+ { 7, "s968297", "967527", "=q2=Wizard Wontons", "=ds=#sr# 300" };
+ { 8, "s968300", "967530", "=q2=Jurassic Burger", "=ds=#sr# 300" };
+ { 9, "s968303", "967533", "=q2=Rough-alo wings", "=ds=#sr# 300" };
+ { 10, "s968306", "967536", "=q2=The Whooper Sandwich", "=ds=#sr# 300" };
+ { 11, "s968309", "967539", "=q2=Vulture a la King", "=ds=#sr# 300" };
+ { 12, "s968312", "967542", "=q2=Scorching Hot Steak", "=ds=#sr# 300" };
+ { 13, "s968315", "967545", "=q2=Lively Stew", "=ds=#sr# 300" };
+ { 14, "s968318", "967548", "=q2=Crawling Steak", "=ds=#sr# 300" };
+ { 15, "s968321", "967551", "=q2=Breakonator Sandwich", "=ds=#sr# 300" };
+ { 16, "s968324", "967554", "=q2=Master Wontons", "=ds=#sr# 300" };
+ { 17, "s968327", "967557", "=q2=Big Whack Sandwich", "=ds=#sr# 300" };
+ { 18, "s968330", "967560", "=q2=Warping Wontons", "=ds=#sr# 300" };
+ { 19, "s968333", "967563", "=q2=Duck Stew", "=ds=#sr# 300" };
+ { 20, "s968336", "967566", "=q2=Mountainman Stew", "=ds=#sr# 300" };
+ { 21, "s968339", "967569", "=q2=Scorched Stew", "=ds=#sr# 300" };
+ { 22, "s968342", "967572", "=q2=Vulcan Wontons", "=ds=#sr# 300" };
+ { 23, "s968345", "967575", "=q2=Jurassic Soup", "=ds=#sr# 300" };
+ { 24, "s968348", "967578", "=q2=Heightened Wontons", "=ds=#sr# 300" };
+ { 25, "s968351", "967581", "=q2=Hearty Spirit Soup", "=ds=#sr# 300" };
+ { 26, "s968354", "967584", "=q2=Jurassic Steak", "=ds=#sr# 300" };
+ { 27, "s968357", "967587", "=q2=Stormwich Sandwich", "=ds=#sr# 300" };
+ { 28, "s968360", "967590", "=q2=Warding Wontons", "=ds=#sr# 300" };
+ { 29, "s968363", "967593", "=q2=Rolling Meatballs", "=ds=#sr# 300" };
+ { 30, "s968366", "967596", "=q2=Subtle Steak", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Common";
+ { 1, "s968369", "967599", "=q2=Subtle Sandwich", "=ds=#sr# 300" };
+ { 2, "s968372", "967602", "=q2=Subtle Wontons", "=ds=#sr# 300" };
+ { 3, "s968375", "967605", "=q2=Subtle Sulferous Soup", "=ds=#sr# 300" };
+ { 4, "s968378", "967608", "=q2=Strongman Stew", "=ds=#sr# 300" };
+ { 5, "s968381", "967611", "=q2=Mysterious Void Roast", "=ds=#sr# 300" };
+ { 6, "s968384", "967614", "=q2=Fire Charred Roast", "=ds=#sr# 300" };
+ { 7, "s968387", "967617", "=q2=Storm Fried Roast", "=ds=#sr# 300" };
+ { 8, "s968390", "967620", "=q2=Winter Roast", "=ds=#sr# 300" };
+ { 9, "s968393", "967623", "=q2=Blackened Roast", "=ds=#sr# 300" };
+ { 10, "s968396", "967626", "=q2=Dino Delight", "=ds=#sr# 300" };
+ { 11, "s968399", "967629", "=q2=Slick-fil-A Sandwich", "=ds=#sr# 300" };
+ { 13, "s968646", "967703", "=q2=Tempting Bait", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Rare";
+ { 1, "s968280", "967510", "=q3=Animated Soup for the Soul", "=ds=#sr# 300" };
+ { 2, "s968283", "967513", "=q3=Volcanic Sandwich", "=ds=#sr# 300" };
+ { 3, "s968286", "967516", "=q3=Winter Wontons", "=ds=#sr# 300" };
+ { 4, "s968289", "967519", "=q3=Storm Steak", "=ds=#sr# 300" };
+ { 5, "s968292", "967522", "=q3=Void Touched Stew", "=ds=#sr# 300" };
+ { 6, "s968295", "967525", "=q3=Spicy Vulture Steak", "=ds=#sr# 300" };
+ { 7, "s968298", "967528", "=q3=Wizard Wontons", "=ds=#sr# 300" };
+ { 8, "s968301", "967531", "=q3=Jurassic Burger", "=ds=#sr# 300" };
+ { 9, "s968304", "967534", "=q3=Rough-alo wings", "=ds=#sr# 300" };
+ { 10, "s968307", "967537", "=q3=The Whooper Sandwich", "=ds=#sr# 300" };
+ { 11, "s968310", "967540", "=q3=Vulture a la King", "=ds=#sr# 300" };
+ { 12, "s968313", "967543", "=q3=Scorching Hot Steak", "=ds=#sr# 300" };
+ { 13, "s968316", "967546", "=q3=Lively Stew", "=ds=#sr# 300" };
+ { 14, "s968319", "967549", "=q3=Crawling Steak", "=ds=#sr# 300" };
+ { 15, "s968322", "967552", "=q3=Breakonator Sandwich", "=ds=#sr# 300" };
+ { 16, "s968325", "967555", "=q3=Master Wontons", "=ds=#sr# 300" };
+ { 17, "s968328", "967558", "=q3=Big Whack Sandwich", "=ds=#sr# 300" };
+ { 18, "s968331", "967561", "=q3=Warping Wontons", "=ds=#sr# 300" };
+ { 19, "s968334", "967564", "=q3=Duck Stew", "=ds=#sr# 300" };
+ { 20, "s968337", "967567", "=q3=Mountainman Stew", "=ds=#sr# 300" };
+ { 21, "s968340", "967570", "=q3=Scorched Stew", "=ds=#sr# 300" };
+ { 22, "s968343", "967573", "=q3=Vulcan Wontons", "=ds=#sr# 300" };
+ { 23, "s968346", "967576", "=q3=Jurassic Soup", "=ds=#sr# 300" };
+ { 24, "s968349", "967579", "=q3=Heightened Wontons", "=ds=#sr# 300" };
+ { 25, "s968352", "967582", "=q3=Hearty Spirit Soup", "=ds=#sr# 300" };
+ { 26, "s968355", "967585", "=q3=Jurassic Steak", "=ds=#sr# 300" };
+ { 27, "s968358", "967588", "=q3=Stormwich Sandwich", "=ds=#sr# 300" };
+ { 28, "s968361", "967591", "=q3=Warding Wontons", "=ds=#sr# 300" };
+ { 29, "s968364", "967594", "=q3=Rolling Meatballs", "=ds=#sr# 300" };
+ { 30, "s968367", "967597", "=q3=Subtle Steak", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Rare";
+ { 1, "s968370", "967600", "=q3=Subtle Sandwich", "=ds=#sr# 300" };
+ { 2, "s968373", "967603", "=q3=Subtle Wontons", "=ds=#sr# 300" };
+ { 3, "s968376", "967606", "=q3=Subtle Sulferous Soup", "=ds=#sr# 300" };
+ { 4, "s968379", "967609", "=q3=Strongman Stew", "=ds=#sr# 300" };
+ { 5, "s968382", "967612", "=q3=Mysterious Void Roast", "=ds=#sr# 300" };
+ { 6, "s968385", "967615", "=q3=Fire Charred Roast", "=ds=#sr# 300" };
+ { 7, "s968388", "967618", "=q3=Storm Fried Roast", "=ds=#sr# 300" };
+ { 8, "s968391", "967621", "=q3=Winter Roast", "=ds=#sr# 300" };
+ { 9, "s968394", "967624", "=q3=Blackened Roast", "=ds=#sr# 300" };
+ { 10, "s968397", "967627", "=q3=Dino Delight", "=ds=#sr# 300" };
+ { 11, "s968400", "967630", "=q3=Slick-fil-A Sandwich", "=ds=#sr# 300" };
+ { 13, "s968647", "967704", "=q3=Alluring Bait", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Epic";
+ { 1, "s968281", "967511", "=q4=Animated Soup for the Soul", "=ds=#sr# 300" };
+ { 2, "s968284", "967514", "=q4=Volcanic Sandwich", "=ds=#sr# 300" };
+ { 3, "s968287", "967517", "=q4=Winter Wontons", "=ds=#sr# 300" };
+ { 4, "s968290", "967520", "=q4=Storm Steak", "=ds=#sr# 300" };
+ { 5, "s968293", "967523", "=q4=Void Touched Stew", "=ds=#sr# 300" };
+ { 6, "s968296", "967526", "=q4=Spicy Vulture Steak", "=ds=#sr# 300" };
+ { 7, "s968299", "967529", "=q4=Wizard Wontons", "=ds=#sr# 300" };
+ { 8, "s968302", "967532", "=q4=Jurassic Burger", "=ds=#sr# 300" };
+ { 9, "s968305", "967535", "=q4=Rough-alo wings", "=ds=#sr# 300" };
+ { 10, "s968308", "967538", "=q4=The Whooper Sandwich", "=ds=#sr# 300" };
+ { 11, "s968311", "967541", "=q4=Vulture a la King", "=ds=#sr# 300" };
+ { 12, "s968314", "967542", "=q4=Scorching Hot Steak", "=ds=#sr# 300" };
+ { 13, "s968317", "967547", "=q4=Lively Stew", "=ds=#sr# 300" };
+ { 14, "s968320", "967550", "=q4=Crawling Steak", "=ds=#sr# 300" };
+ { 15, "s968323", "967553", "=q4=Breakonator Sandwich", "=ds=#sr# 300" };
+ { 16, "s968326", "967556", "=q4=Master Wontons", "=ds=#sr# 300" };
+ { 17, "s968329", "967559", "=q4=Big Whack Sandwich", "=ds=#sr# 300" };
+ { 18, "s968332", "967562", "=q4=Warping Wontons", "=ds=#sr# 300" };
+ { 19, "s968335", "967565", "=q4=Duck Stew", "=ds=#sr# 300" };
+ { 20, "s968338", "967568", "=q4=Mountainman Stew", "=ds=#sr# 300" };
+ { 21, "s968341", "967571", "=q4=Scorched Stew", "=ds=#sr# 300" };
+ { 22, "s968344", "967574", "=q4=Vulcan Wontons", "=ds=#sr# 300" };
+ { 23, "s968347", "967577", "=q4=Jurassic Soup", "=ds=#sr# 300" };
+ { 24, "s968350", "967580", "=q4=Heightened Wontons", "=ds=#sr# 300" };
+ { 25, "s968353", "967583", "=q4=Hearty Spirit Soup", "=ds=#sr# 300" };
+ { 26, "s968356", "967586", "=q4=Jurassic Steak", "=ds=#sr# 300" };
+ { 27, "s968359", "967589", "=q4=Stormwich Sandwich", "=ds=#sr# 300" };
+ { 28, "s968362", "967592", "=q4=Warding Wontons", "=ds=#sr# 300" };
+ { 29, "s968365", "967595", "=q4=Rolling Meatballs", "=ds=#sr# 300" };
+ { 30, "s968368", "967598", "=q4=Subtle Steak", "=ds=#sr# 300" };
+ };
+ {
+ Name = "Epic";
+ { 1, "s968371", "967601", "=q4=Subtle Sandwich", "=ds=#sr# 300" };
+ { 2, "s968374", "967604", "=q4=Subtle Wontons", "=ds=#sr# 300" };
+ { 3, "s968377", "967607", "=q4=Subtle Sulferous Soup", "=ds=#sr# 300" };
+ { 4, "s968380", "967610", "=q4=Strongman Stew", "=ds=#sr# 300" };
+ { 5, "s968383", "967613", "=q4=Mysterious Void Roast", "=ds=#sr# 300" };
+ { 6, "s968386", "967616", "=q4=Fire Charred Roast", "=ds=#sr# 300" };
+ { 7, "s968389", "967619", "=q4=Storm Fried Roast", "=ds=#sr# 300" };
+ { 8, "s968392", "967622", "=q4=Winter Roast", "=ds=#sr# 300" };
+ { 9, "s968395", "967625", "=q4=Blackened Roast", "=ds=#sr# 300" };
+ { 10, "s968398", "967628", "=q4=Dino Delight", "=ds=#sr# 300" };
+ { 11, "s968401", "967631", "=q4=Slick-fil-A Sandwich", "=ds=#sr# 300" };
+ { 13, "s968648", "967705", "=q4=Irresistible Bait", "=ds=#sr# 300" };
};
};
diff --git a/AtlasLoot_Crafting/craftingTBC.lua b/AtlasLoot_Crafting/craftingTBC.lua
index 505f79f..9998d0c 100644
--- a/AtlasLoot_Crafting/craftingTBC.lua
+++ b/AtlasLoot_Crafting/craftingTBC.lua
@@ -89,2776 +89,1971 @@ local SPELLFIRE = GetSpellInfo(26797);
---- Fishing
---- Jewelcrafting
- -----------------------
- --- Tradeskill List ---
- -----------------------
+-----------------------
+--- Tradeskill List ---
+-----------------------
- ---------------
- --- Alchemy ---
- ---------------
- AtlasLoot_Data["AlchemyTBC"] = {
- Name = ALCHEMY;
- Type = "Crafting";
- {
- Name = AL["Battle Elixirs"];
- { 1, "s28558", "22835", "=q1=Elixir of Major Shadow Power", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["Lower City"]};
- { 2, "s28556", "22833", "=q1=Elixir of Major Firepower", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["The Scryers"]};
- { 3, "s38960", "31679", "=q1=Fel Strength Elixir", "=ds="..BabbleZone["Shadowmoon Valley"]};
- { 4, "s28553", "22831", "=q1=Elixir of Major Agility", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Thrallmar"].."/"..BabbleFaction["Honor Hold"]};
- { 5, "s28549", "22827", "=q1=Elixir of Major Frost Power", "=ds="..AL["Vendor"]..", "..BabbleZone["Zangarmarsh"]};
- { 6, "s33741", "28104", "=q1=Elixir of Mastery", "=ds="..AL["Trainer"]};
- { 7, "s28545", "22825", "=q1=Elixir of Healing Power", "=ds="..AL["Trainer"]};
- { 8, "s28544", "22824", "=q1=Elixir of Major Strength", "=ds="..AL["Trainer"]};
- { 9, "s33740", "28103", "=q1=Adept's Elixir", "=ds="..AL["Trainer"]};
- { 10, "s33738", "28102", "=q1=Onslaught Elixir", "=ds="..AL["Trainer"]};
+---------------
+--- Alchemy ---
+---------------
+AtlasLoot_Data["AlchemyTBC"] = {
+ Name = ALCHEMY;
+ Type = "CraftingNoBF";
+ {
+ Name = AL["Battle Elixirs"];
+ { 1, "s28558", "22835", "=q1=Elixir of Major Shadow Power","=ds=" .. BabbleFaction["Revered"] .. ": " .. BabbleFaction["Lower City"] };
+ { 2, "s28556", "22833", "=q1=Elixir of Major Firepower","=ds=" .. BabbleFaction["Revered"] .. ": " .. BabbleFaction["The Scryers"] };
+ { 3, "s38960", "31679", "=q1=Fel Strength Elixir", "=ds=" .. BabbleZone["Shadowmoon Valley"] };
+ { 4, "s28553", "22831", "=q1=Elixir of Major Agility","=ds=" .. BabbleFaction["Honored"] .. ": " .. BabbleFaction["Thrallmar"] .. "/" .. BabbleFaction["Honor Hold"] };
+ { 5, "s28549", "22827", "=q1=Elixir of Major Frost Power", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Zangarmarsh"] };
+ { 6, "s33741", "28104", "=q1=Elixir of Mastery", "=ds=" .. AL["Trainer"] };
+ { 7, "s28545", "22825", "=q1=Elixir of Healing Power", "=ds=" .. AL["Trainer"] };
+ { 8, "s28544", "22824", "=q1=Elixir of Major Strength", "=ds=" .. AL["Trainer"] };
+ { 9, "s33740", "28103", "=q1=Adept's Elixir", "=ds=" .. AL["Trainer"] };
+ { 10, "s33738", "28102", "=q1=Onslaught Elixir", "=ds=" .. AL["Trainer"] };
};
{
Name = AL["Guardian Elixirs"];
- { 1, "s28578", "22848", "=q1=Elixir of Empowerment", "=ds="..AL["World Drop"]};
- { 2, "s28570", "22840", "=q1=Elixir of Major Mageblood", "=ds="..AL["World Drop"]};
- { 3, "s28557", "22834", "=q1=Elixir of Major Defense", "=ds="..AL["Vendor"]};
- { 4, "s39639", "32068", "=q1=Elixir of Ironskin", "=ds="..AL["Vendor"]..", "..BabbleZone["Nagrand"]};
- { 5, "s39637", "32063", "=q1=Earthen Elixir", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Cenarion Expedition"]};
- { 6, "s39638", "32067", "=q1=Elixir of Draenic Wisdom", "=ds="..AL["Trainer"]};
- { 7, "s39636", "32062", "=q1=Elixir of Major Fortitude", "=ds="..AL["Trainer"]};
+ { 1, "s28578", "22848", "=q1=Elixir of Empowerment", "=ds=" .. AL["World Drop"] };
+ { 2, "s28570", "22840", "=q1=Elixir of Major Mageblood", "=ds=" .. AL["World Drop"] };
+ { 3, "s28557", "22834", "=q1=Elixir of Major Defense", "=ds=" .. AL["Vendor"] };
+ { 4, "s39639", "32068", "=q1=Elixir of Ironskin", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Nagrand"] };
+ { 5, "s39637", "32063", "=q1=Earthen Elixir","=ds=" .. BabbleFaction["Honored"] .. ": " .. BabbleFaction["Cenarion Expedition"] };
+ { 6, "s39638", "32067", "=q1=Elixir of Draenic Wisdom", "=ds=" .. AL["Trainer"] };
+ { 7, "s39636", "32062", "=q1=Elixir of Major Fortitude", "=ds=" .. AL["Trainer"] };
};
{
- Name = AL["Potions"];
- { 1, "s28586", "22850", "=q1=Super Rejuvenation Potion", "=ds="..AL["Discovery"]};
- { 2, "s38961", "31677", "=q1=Fel Mana Potion", "=ds="..BabbleZone["Shadowmoon Valley"]};
- { 3, "s28579", "22849", "=q1=Ironshield Potion", "=ds="..BabbleBoss["Captain Skarloc"]..": "..BabbleZone["Old Hillsbrad Foothills"]};
- { 4, "s28575", "22845", "=q1=Major Arcane Protection Potion", "=ds="..BabbleZone["Nagrand"]};
- { 5, "s28571", "22841", "=q1=Major Fire Protection Potion", "=ds="..BabbleZone["The Mechanar"]};
- { 6, "s28572", "22842", "=q1=Major Frost Protection Potion", "=ds="..BabbleBoss["Nexus-Prince Shaffar"]..": "..BabbleZone["Mana-Tombs"]};
- { 7, "s28577", "22847", "=q1=Major Holy Protection Potion", "=ds="..BabbleZone["Blade's Edge Mountains"]};
- { 8, "s28573", "22844", "=q1=Major Nature Protection Potion", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Cenarion Expedition"]};
- { 9, "s28576", "22846", "=q1=Major Shadow Protection Potion", "=ds="..BabbleZone["Shadowmoon Valley"]};
- { 10, "s28565", "22839", "=q1=Destruction Potion", "=ds="..AL["World Drop"]};
- { 11, "s28564", "22838", "=q1=Haste Potion", "=ds="..AL["World Drop"]};
- { 12, "s28563", "22837", "=q1=Heroic Potion", "=ds="..AL["World Drop"]};
- { 13, "s28562", "22836", "=q1=Major Dreamless Sleep Potion", "=ds="..AL["Vendor"]};
- { 14, "s38962", "31676", "=q1=Fel Regeneration Potion", "=ds="..BabbleZone["Shadowmoon Valley"]};
- { 15, "s28555", "22832", "=q1=Super Mana Potion", "=ds="..AL["Vendor"]};
- { 16, "s28554", "22871", "=q1=Shrouding Potion", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Sporeggar"]};
- { 17, "s45061", "34440", "=q1=Mad Alchemist's Potion", "=ds="..AL["Trainer"]};
- { 18, "s28551", "22829", "=q1=Super Healing Potion", "=ds="..AL["Trainer"]};
- { 19, "s28550", "22828", "=q1=Insane Strength Potion", "=ds="..AL["World Drop"]};
- { 20, "s28546", "22826", "=q1=Sneaking Potion", "=ds="..AL["Vendor"]};
- { 21, "s33733", "28101", "=q1=Unstable Mana Potion", "=ds="..AL["Trainer"]};
- { 22, "s33732", "28100", "=q1=Volatile Healing Potion", "=ds="..AL["Trainer"]};
+ Name = AL["Potions"];
+ { 1, "s28586", "22850", "=q1=Super Rejuvenation Potion", "=ds=" .. AL["Discovery"] };
+ { 2, "s38961", "31677", "=q1=Fel Mana Potion", "=ds=" .. BabbleZone["Shadowmoon Valley"] };
+ { 3, "s28579", "22849", "=q1=Ironshield Potion","=ds=" .. BabbleBoss["Captain Skarloc"] .. ": " .. BabbleZone["Old Hillsbrad Foothills"] };
+ { 4, "s28575", "22845", "=q1=Major Arcane Protection Potion", "=ds=" .. BabbleZone["Nagrand"] };
+ { 5, "s28571", "22841", "=q1=Major Fire Protection Potion", "=ds=" .. BabbleZone["The Mechanar"] };
+ { 6, "s28572", "22842", "=q1=Major Frost Protection Potion","=ds=" .. BabbleBoss["Nexus-Prince Shaffar"] .. ": " .. BabbleZone["Mana-Tombs"] };
+ { 7, "s28577", "22847", "=q1=Major Holy Protection Potion", "=ds=" .. BabbleZone["Blade's Edge Mountains"] };
+ { 8, "s28573", "22844", "=q1=Major Nature Protection Potion","=ds=" .. BabbleFaction["Exalted"] .. ": " .. BabbleFaction["Cenarion Expedition"] };
+ { 9, "s28576", "22846", "=q1=Major Shadow Protection Potion", "=ds=" .. BabbleZone["Shadowmoon Valley"] };
+ { 10, "s28565", "22839", "=q1=Destruction Potion", "=ds=" .. AL["World Drop"] };
+ { 11, "s28564", "22838", "=q1=Haste Potion", "=ds=" .. AL["World Drop"] };
+ { 12, "s28563", "22837", "=q1=Heroic Potion", "=ds=" .. AL["World Drop"] };
+ { 13, "s28562", "22836", "=q1=Major Dreamless Sleep Potion", "=ds=" .. AL["Vendor"] };
+ { 14, "s38962", "31676", "=q1=Fel Regeneration Potion", "=ds=" .. BabbleZone["Shadowmoon Valley"] };
+ { 15, "s28555", "22832", "=q1=Super Mana Potion", "=ds=" .. AL["Vendor"] };
+ { 16, "s28554", "22871", "=q1=Shrouding Potion", "=ds=" .. BabbleFaction["Exalted"] .. ": " ..BabbleFaction["Sporeggar"] };
+ { 17, "s45061", "34440", "=q1=Mad Alchemist's Potion", "=ds=" .. AL["Trainer"] };
+ { 18, "s28551", "22829", "=q1=Super Healing Potion", "=ds=" .. AL["Trainer"] };
+ { 19, "s28550", "22828", "=q1=Insane Strength Potion", "=ds=" .. AL["World Drop"] };
+ { 20, "s28546", "22826", "=q1=Sneaking Potion", "=ds=" .. AL["Vendor"] };
+ { 21, "s33733", "28101", "=q1=Unstable Mana Potion", "=ds=" .. AL["Trainer"] };
+ { 22, "s33732", "28100", "=q1=Volatile Healing Potion", "=ds=" .. AL["Trainer"] };
};
{
Name = AL["Flasks"];
- { 1, "s42736", "33208", "=q1=Flask of Chromatic Wonder", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["The Violet Eye"]};
- { 2, "s28590", "22861", "=q1=Flask of Blinding Light", "=ds="..AL["Discovery"]};
- { 3, "s28587", "22851", "=q1=Flask of Fortification", "=ds="..AL["Discovery"]};
- { 4, "s28588", "22853", "=q1=Flask of Mighty Restoration", "=ds="..AL["Discovery"]};
- { 5, "s28591", "22866", "=q1=Flask of Pure Death", "=ds="..AL["Discovery"]};
- { 6, "s28589", "22854", "=q1=Flask of Relentless Assault", "=ds="..AL["Discovery"]};
+ { 1, "s42736", "33208", "=q1=Flask of Chromatic Wonder","=ds=" .. BabbleFaction["Honored"] .. ": " .. BabbleFaction["The Violet Eye"] };
+ { 2, "s28590", "22861", "=q1=Flask of Blinding Light", "=ds=" .. AL["Discovery"] };
+ { 3, "s28587", "22851", "=q1=Flask of Fortification", "=ds=" .. AL["Discovery"] };
+ { 4, "s28588", "22853", "=q1=Flask of Mighty Restoration", "=ds=" .. AL["Discovery"] };
+ { 5, "s28591", "22866", "=q1=Flask of Pure Death", "=ds=" .. AL["Discovery"] };
+ { 6, "s28589", "22854", "=q1=Flask of Relentless Assault", "=ds=" .. AL["Discovery"] };
};
{
Name = AL["Transmutes"];
- { 1, "s29688", "23571", "=q3=Transmute: Primal Might", "=ds="..AL["Vendor"]};
- { 2, "s32765", "25867", "=q3=Transmute: Earthstorm Diamond", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Cenarion Expedition"]};
- { 3, "s32766", "25868", "=q3=Transmute: Skyfire Diamond", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Thrallmar"].."/"..BabbleFaction["Honor Hold"]};
- { 4, "s28585", "21886", "=q2=Transmute: Primal Earth to Life", "=ds="..AL["Discovery"]};
- { 5, "s28583", "22457", "=q2=Transmute: Primal Fire to Mana", "=ds="..AL["Discovery"]};
- { 6, "s28584", "22452", "=q2=Transmute: Primal Life to Earth", "=ds="..AL["Discovery"]};
- { 7, "s28582", "21884", "=q2=Transmute: Primal Mana to Fire", "=ds="..AL["Discovery"]};
- { 8, "s28580", "21885", "=q2=Transmute: Primal Shadow to Water", "=ds="..AL["Discovery"]};
- { 9, "s28581", "22456", "=q2=Transmute: Primal Water to Shadow", "=ds="..AL["Discovery"]};
- { 10, "s28566", "21884", "=q2=Transmute: Primal Air to Fire", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["The Sha'tar"]};
- { 11, "s28567", "21885", "=q2=Transmute: Primal Earth to Water", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["Sporeggar"]};
- { 12, "s28568", "22452", "=q2=Transmute: Primal Fire to Earth", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["The Mag'har"].."/"..BabbleFaction["Kurenai"]};
- { 13, "s28569", "22451", "=q2=Transmute: Primal Water to Air", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["Cenarion Expedition"]};
+ { 1, "s29688", "23571", "=q3=Transmute: Primal Might", "=ds=" .. AL["Vendor"] };
+ { 2, "s32765", "25867", "=q3=Transmute: Earthstorm Diamond","=ds=" .. BabbleFaction["Honored"] .. ": " .. BabbleFaction["Cenarion Expedition"] };
+ { 3, "s32766", "25868", "=q3=Transmute: Skyfire Diamond","=ds=" .. BabbleFaction["Honored"] .. ": " .. BabbleFaction["Thrallmar"] .. "/" .. BabbleFaction["Honor Hold"] };
+ { 4, "s28585", "21886", "=q2=Transmute: Primal Earth to Life", "=ds=" .. AL["Discovery"] };
+ { 5, "s28583", "22457", "=q2=Transmute: Primal Fire to Mana", "=ds=" .. AL["Discovery"] };
+ { 6, "s28584", "22452", "=q2=Transmute: Primal Life to Earth", "=ds=" .. AL["Discovery"] };
+ { 7, "s28582", "21884", "=q2=Transmute: Primal Mana to Fire", "=ds=" .. AL["Discovery"] };
+ { 8, "s28580", "21885", "=q2=Transmute: Primal Shadow to Water", "=ds=" .. AL["Discovery"] };
+ { 9, "s28581", "22456", "=q2=Transmute: Primal Water to Shadow", "=ds=" .. AL["Discovery"] };
+ { 10, "s28566", "21884", "=q2=Transmute: Primal Air to Fire","=ds=" .. BabbleFaction["Revered"] .. ": " .. BabbleFaction["The Sha'tar"] };
+ { 11, "s28567", "21885", "=q2=Transmute: Primal Earth to Water","=ds=" .. BabbleFaction["Revered"] .. ": " .. BabbleFaction["Sporeggar"] };
+ { 12, "s28568", "22452", "=q2=Transmute: Primal Fire to Earth","=ds=" .. BabbleFaction["Revered"] .. ": " .. BabbleFaction["The Mag'har"] .. "/" .. BabbleFaction["Kurenai"] };
+ { 13, "s28569", "22451", "=q2=Transmute: Primal Water to Air","=ds=" .. BabbleFaction["Revered"] .. ": " .. BabbleFaction["Cenarion Expedition"] };
};
{
Name = AL["Miscellaneous"];
- { 1, "s24266", "19931", "=q3=Gurubashi Mojo Madness", "=ds="..BabbleZone["Zul'Gurub"]};
- { 2, "s11460", "9154", "=q1=Elixir of Detect Undead", "=ds="..AL["Trainer"]};
- { 3, "s22808", "18294", "=q1=Elixir of Greater Water Breathing", "=ds="..AL["Trainer"]};
- { 4, "s11456", "9061", "=q1=Goblin Rocket Fuel", "=ds="..AL["Crafted"]..": "..GetSpellInfo(4036)};
- { 5, "s11451", "8956", "=q1=Oil of Immolation", "=ds="..AL["Trainer"]};
- { 6, "s12609", "10592", "=q1=Catseye Elixir", "=ds="..AL["Trainer"]};
- { 7, "s3454", "3829", "=q1=Frost Oil", "=ds="..AL["Vendor"]..", "..BabbleZone["Alterac Mountains"]};
- { 8, "s11459", "9149", "=q1=Philosopher's Stone", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 9, "s3453", "3828", "=q1=Elixir of Detect Lesser Invisibility", "=ds="..AL["World Drop"]};
- { 10, "s3449", "3824", "=q1=Shadow Oil", "=ds="..AL["Vendor"]};
- { 11, "s7837", "6371", "=q1=Fire Oil", "=ds="..AL["Trainer"]};
- { 12, "s7179", "5996", "=q1=Elixir of Water Breathing", "=ds="..AL["Trainer"]};
- { 13, "s7836", "6370", "=q1=Blackmouth Oil", "=ds="..AL["Trainer"]};
+ { 1, "s24266", "19931", "=q3=Gurubashi Mojo Madness", "=ds=" .. BabbleZone["Zul'Gurub"] };
+ { 2, "s11460", "9154", "=q1=Elixir of Detect Undead", "=ds=" .. AL["Trainer"] };
+ { 3, "s22808", "18294", "=q1=Elixir of Greater Water Breathing", "=ds=" .. AL["Trainer"] };
+ { 4, "s11456", "9061", "=q1=Goblin Rocket Fuel", "=ds=" .. AL["Crafted"] .. ": " .. GetSpellInfo(4036) };
+ { 5, "s11451", "8956", "=q1=Oil of Immolation", "=ds=" .. AL["Trainer"] };
+ { 6, "s12609", "10592", "=q1=Catseye Elixir", "=ds=" .. AL["Trainer"] };
+ { 7, "s3454", "3829", "=q1=Frost Oil", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Alterac Mountains"] };
+ { 8, "s11459", "9149", "=q1=Philosopher's Stone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Tanaris"] };
+ { 9, "s3453", "3828", "=q1=Elixir of Detect Lesser Invisibility", "=ds=" .. AL["World Drop"] };
+ { 10, "s3449", "3824", "=q1=Shadow Oil", "=ds=" .. AL["Vendor"] };
+ { 11, "s7837", "6371", "=q1=Fire Oil", "=ds=" .. AL["Trainer"] };
+ { 12, "s7179", "5996", "=q1=Elixir of Water Breathing", "=ds=" .. AL["Trainer"] };
+ { 13, "s7836", "6370", "=q1=Blackmouth Oil", "=ds=" .. AL["Trainer"] };
};
};
- ---------------------
- --- Blacksmithing ---
- ---------------------
+---------------------
+--- Blacksmithing ---
+---------------------
- AtlasLoot_Data["SmithingTBC"] = {
- Name = BLACKSMITHING;
- Type = "Crafting";
- {
- Name = BabbleInventory["Armor"].." - Chest";
- { 1, "s34534", "28484", "=q4=Bulwark of Kings", "=ds=#sr# 375"};
- { 2, "s36257", "28485", "=q4=Bulwark of the Ancient Kings", "=ds=#sr# 375"};
- { 3, "s36256", "23565", "=q4=Embrace of the Twisting Nether", "=ds=#sr# 375"};
- { 4, "s38477", "31369", "=q4=Iceguard Breastplate", "=ds=#sr# 375"};
- { 5, "s34530", "23564", "=q4=Twisting Nether Chain Shirt", "=ds=#sr# 375"};
- { 6, "s38473", "31364", "=q4=Wildguard Breastplate", "=ds=#sr# 375"};
- { 7, "s46144", "34377", "=q4=Hard Khorium Battleplate", "=ds=#sr# 365"};
- { 8, "s46142", "34379", "=q4=Sunblessed Breastplate", "=ds=#sr# 365"};
- { 9, "s29649", "23527", "=q3=Earthpeace Breastplate", "=ds=#sr# 370"};
- { 10, "s29645", "23522", "=q3=Ragesteel Breastplate", "=ds=#sr# 370"};
- { 11, "s29617", "23513", "=q3=Flamebane Breastplate", "=ds=#sr# 365"};
- { 12, "s29610", "23509", "=q3=Enchanted Adamantite Breastplate", "=ds=#sr# 360"};
- { 13, "s34533", "28483", "=q4=Breastplate of Kings", "=ds=#sr# 350"};
- { 14, "s34529", "23563", "=q4=Nether Chain Shirt", "=ds=#sr# 350"};
- { 15, "s29606", "23507", "=q3=Adamantite Breastplate", "=ds=#sr# 340"};
- { 16, "s36129", "30074", "=q3=Heavy Earthforged Breastplate", "=ds=#sr# 330"};
- { 17, "s36130", "30076", "=q3=Stormforged Hauberk", "=ds=#sr# 330"};
- { 18, "s29550", "23489", "=q2=Fel Iron Breastplate", "=ds=#sr# 325"};
- { 19, "s29556", "23490", "=q2=Fel Iron Chain Tunic", "=ds=#sr# 320"};
- };
- { Name = BabbleInventory["Armor"].." - Feet";
- { 1, "s36391", "30033", "=q4=Boots of the Protector", "=ds=#sr# 375"};
- { 2, "s36392", "30031", "=q4=Red Havoc Boots", "=ds=#sr# 375"};
- { 3, "s40033", "32402", "=q4=Shadesteel Sabots", "=ds=#sr# 375"};
- { 4, "s29630", "23525", "=q3=Khorium Boots", "=ds=#sr# 365"};
- { 5, "s29611", "23511", "=q3=Enchanted Adamantite Boots", "=ds=#sr# 355"};
- { 6, "s29548", "23487", "=q2=Fel Iron Plate Boots", "=ds=#sr# 315"};
- };
- {
- Name = BabbleInventory["Armor"].." - Hands";
- { 1, "s29648", "23526", "=q3=Swiftsteel Gloves", "=ds=#sr# 370"};
- { 2, "s29658", "23531", "=q4=Felfury Gauntlets", "=ds=#sr# 365"};
- { 3, "s29622", "23532", "=q4=Gauntlets of the Iron Tower", "=ds=#sr# 365"};
- { 4, "s29662", "23533", "=q4=Steelgrip Gauntlets", "=ds=#sr# 365"};
- { 5, "s46140", "34380", "=q4=Sunblessed Gauntlets", "=ds=#sr# 365"};
- { 6, "s46141", "34378", "=q4=Hard Khorium Battlefists", "=ds=#sr# 365"};
- { 7, "s29642", "23520", "=q3=Ragesteel Gloves", "=ds=#sr# 365"};
- { 8, "s29619", "23517", "=q3=Felsteel Gloves", "=ds=#sr# 360"};
- { 9, "s29616", "23514", "=q3=Flamebane Gloves", "=ds=#sr# 360"};
- { 10, "s29605", "23508", "=q3=Adamantite Plate Gloves", "=ds=#sr# 335"};
- { 11, "s29552", "23491", "=q2=Fel Iron Chain Gloves", "=ds=#sr# 310"};
- { 12, "s29545", "23482", "=q2=Fel Iron Plate Gloves", "=ds=#sr# 300"};
- };
- {
- Name = BabbleInventory["Armor"].." - Head";
- { 1, "s38479", "31371", "=q4=Iceguard Helm", "=ds=#sr# 375"};
- { 2, "s38476", "31368", "=q4=Wildguard Helm", "=ds=#sr# 375"};
- { 3, "s29664", "23535", "=q4=Helm of the Stalwart Defender", "=ds=#sr# 365"};
- { 4, "s29668", "23536", "=q4=Oathkeeper's Helm", "=ds=#sr# 365"};
- { 5, "s29663", "23534", "=q4=Storm Helm", "=ds=#sr# 365"};
- { 6, "s29621", "23519", "=q3=Felsteel Helm", "=ds=#sr# 365"};
- { 7, "s29643", "23521", "=q3=Ragesteel Helm", "=ds=#sr# 365"};
- { 8, "s29615", "23516", "=q3=Flamebane Helm", "=ds=#sr# 355"};
- { 9, "s29551", "23493", "=q2=Fel Iron Chain Coif", "=ds=#sr# 300"};
-
- };
- {
- Name = BabbleInventory["Armor"].." - Legs";
- { 1, "s38478", "31370", "=q4=Iceguard Leggings", "=ds=#sr# 375"};
- { 2, "s40035", "32404", "=q4=Shadesteel Greaves", "=ds=#sr# 375"};
- { 3, "s38475", "31367", "=q4=Wildguard Leggings", "=ds=#sr# 375"};
- { 4, "s29613", "23512", "=q3=Enchanted Adamantite Leggings", "=ds=#sr# 365"};
- { 5, "s29620", "23518", "=q3=Felsteel Leggings", "=ds=#sr# 360"};
- { 6, "s29629", "23523", "=q3=Khorium Pants", "=ds=#sr# 360"};
- { 7, "s29549", "23488", "=q2=Fel Iron Plate Pants", "=ds=#sr# 315"};
- };
- {
- Name = BabbleInventory["Armor"].." - Shoulder";
- { 1, "s41135", "32573", "=q4=Dawnsteel Shoulders", "=ds=#sr# 375"};
- { 2, "s42662", "33173", "=q3=Ragesteel Shoulders", "=ds=#sr# 365"};
- { 3, "s41133", "32570", "=q4=Swiftsteel Shoulders", "=ds=#sr# 375"};
-
- };
- {
- Name = BabbleInventory["Armor"].." - Waist";
- { 1, "s36389", "30034", "=q4=Belt of the Guardian", "=ds=#sr# 375"};
- { 2, "s36390", "30032", "=q4=Red Belt of Battle", "=ds=#sr# 375"};
- { 3, "s40036", "32401", "=q4=Shadesteel Girdle", "=ds=#sr# 375"};
- { 4, "s29628", "23524", "=q3=Khorium Belt", "=ds=#sr# 360"};
- { 5, "s29608", "23510", "=q3=Enchanted Adamantite Belt", "=ds=#sr# 355"};
- { 6, "s29547", "23484", "=q2=Fel Iron Plate Belt", "=ds=#sr# 305"};
- };
- {
- Name = BabbleInventory["Armor"].." - Wrist";
- { 1, "s41134", "32571", "=q4=Dawnsteel Bracers", "=ds=#sr# 375"};
- { 2, "s40034", "32403", "=q4=Shadesteel Bracers", "=ds=#sr# 375"};
- { 3, "s41132", "32568", "=q4=Swiftsteel Bracers", "=ds=#sr# 375"};
- { 4, "s29669", "23537", "=q4=Black Felsteel Bracers", "=ds=#sr# 365"};
- { 5, "s29672", "23539", "=q4=Blessed Bracers", "=ds=#sr# 365"};
- { 6, "s29671", "23538", "=q4=Bracers of the Green Fortress", "=ds=#sr# 365"};
- { 7, "s29614", "23515", "=q3=Flamebane Bracers", "=ds=#sr# 350"};
- { 8, "s29603", "23506", "=q3=Adamantite Plate Bracers", "=ds=#sr# 335"};
- { 9, "s29553", "23494", "=q2=Fel Iron Chain Bracers", "=ds=#sr# 315"};
- };
- {
- Name = "Weapon - OneHanded";
- { 1, "s34542", "28432", "=q4=Black Planar Edge", "=ds=#sr# 375"};
- { 2, "s36258", "28427", "=q4=Blazefury", "=ds=#sr# 375"};
- { 3, "s34537", "28426", "=q4=Blazeguard", "=ds=#sr# 375"};
- { 4, "s34546", "28438", "=q4=Dragonmaw", "=ds=#sr# 375"};
- { 5, "s36262", "28439", "=q4=Dragonstrike", "=ds=#sr# 375"};
- { 6, "s36260", "28433", "=q4=Wicked Edge of the Planes", "=ds=#sr# 375"};
- { 7, "s29699", "23555", "=q4=Dirge", "=ds=#sr# 365"};
- { 8, "s29698", "23554", "=q4=Eternium Runed Blade", "=ds=#sr# 365"};
- { 9, "s29694", "23542", "=q4=Fel Edged Battleaxe", "=ds=#sr# 365"};
- { 10, "s29692", "23540", "=q4=Felsteel Longblade", "=ds=#sr# 365"};
- { 11, "s29700", "23556", "=q4=Hand of Eternity", "=ds=#sr# 365"};
- { 12, "s29696", "23544", "=q4=Runic Hammer", "=ds=#sr# 365"};
- { 13, "s34545", "28437", "=q4=Drakefist Hammer", "=ds=#sr# 350"};
- { 14, "s34535", "28425", "=q4=Fireguard", "=ds=#sr# 350"};
- { 15, "s34541", "28431", "=q4=The Planar Edge", "=ds=#sr# 350"};
- { 16, "s34983", "29204", "=q3=Felsteel Whisper Knives", "=ds=#sr# 350"};
- { 17, "s36136", "30089", "=q3=Lavaforged Warhammer", "=ds=#sr# 330"};
- { 18, "s36134", "30087", "=q3=Stormforged Axe", "=ds=#sr# 330"};
- { 19, "s36131", "30077", "=q3=Windforged Rapier", "=ds=#sr# 330"};
- { 20, "s29571", "23505", "=q2=Adamantite Rapier", "=ds=#sr# 335"};
- { 21, "s29569", "23504", "=q2=Adamantite Dagger", "=ds=#sr# 330"};
- { 22, "s29558", "23498", "=q2=Fel Iron Hammer", "=ds=#sr# 315"};
- { 23, "s29557", "23497", "=q2=Fel Iron Hatchet", "=ds=#sr# 310"};
- };
- {
- Name = "Weapon - Twohanded";
- { 1, "s36261", "28436", "=q4=Bloodmoon", "=ds=#sr# 375"};
- { 2, "s34548", "28441", "=q4=Deep Thunder", "=ds=#sr# 375"};
- { 3, "s34540", "28429", "=q4=Lionheart Champion", "=ds=#sr# 375"};
- { 4, "s36259", "28430", "=q4=Lionheart Executioner", "=ds=#sr# 375"};
- { 5, "s34544", "28435", "=q4=Mooncleaver", "=ds=#sr# 375"};
- { 6, "s36263", "28442", "=q4=Stormherald", "=ds=#sr# 375"};
- { 7, "s29697", "23546", "=q4=Fel Hardened Maul", "=ds=#sr# 365"};
- { 8, "s29695", "23543", "=q4=Felsteel Reaper", "=ds=#sr# 365"};
- { 9, "s43846", "32854", "=q4=Hammer of Righteous Might", "=ds=#sr# 365"};
- { 10, "s29693", "23541", "=q4=Khorium Champion", "=ds=#sr# 365"};
- { 11, "s34538", "28428", "=q4=Lionheart Blade", "=ds=#sr# 350"};
- { 12, "s34543", "28434", "=q4=Lunar Crescent", "=ds=#sr# 350"};
- { 13, "s34547", "28440", "=q4=Thunder", "=ds=#sr# 350"};
- { 14, "s36137", "30093", "=q3=Great Earthforged Hammer", "=ds=#sr# 330"};
- { 15, "s36135", "30088", "=q3=Skyforged Great Axe", "=ds=#sr# 330"};
- { 16, "s36133", "30086", "=q3=Stoneforged Claymore", "=ds=#sr# 330"};
- { 17, "s29568", "23503", "=q2=Adamantite Cleaver", "=ds=#sr# 330"};
- { 18, "s29566", "23502", "=q2=Adamantite Maul", "=ds=#sr# 325"};
- { 19, "s29565", "23499", "=q2=Fel Iron Greatsword", "=ds=#sr# 320"};
- };
- {
- Name = AL["Item Enhancements"];
- { 1, "s29657", "23530", "=q2=Felsteel Shield Spike", "=ds=#sr# 360"};
- { 2, "s29656", "23529", "=q2=Adamantite Sharpening Stone", "=ds=#sr# 350"};
- { 3, "s34608", "28421", "=q2=Adamantite Weightstone", "=ds=#sr# 350"};
- { 4, "s42688", "33185", "=q2=Adamantite Weapon Chain", "=ds=#sr# 335"};
- { 5, "s22757", "18262", "=q2=Elemental Sharpening Stone", "=ds=#sr# 300"};
- { 6, "s16651", "12645", "=q2=Thorium Shield Spike", "=ds=#sr# 275"};
- { 7, "s9964", "7969", "=q2=Mithril Spurs", "=ds=#sr# 235"};
- { 8, "s9939", "7967", "=q2=Mithril Shield Spike", "=ds=#sr# 215"};
- { 9, "s29729", "23576", "=q1=Greater Ward of Shielding", "=ds=#sr# 375"};
- { 10, "s32285", "25521", "=q1=Greater Rune of Warding", "=ds=#sr# 350"};
- { 11, "s29728", "23575", "=q1=Lesser Ward of Shielding", "=ds=#sr# 340"};
- { 12, "s32284", "23559", "=q1=Lesser Rune of Warding", "=ds=#sr# 325"};
- { 13, "s29654", "23528", "=q1=Fel Sharpening Stone", "=ds=#sr# 300"};
- { 14, "s34607", "28420", "=q1=Fel Weightstone", "=ds=#sr# 300"};
- };
- {
- Name = AL["Miscellaneous"];
- { 1, "s59406", "43853", "=q2=Titanium Skeleton Key", "=ds="..AL["Trainer"] };
- { 2, "s59405", "43854", "=q2=Cobalt Skeleton Key", "=ds="..AL["Trainer"] };
- { 3, "s19669", "15872", "=q2=Arcanite Skeleton Key", "=ds=#sr# 275"};
- { 4, "s19668", "15871", "=q2=Truesilver Skeleton Key", "=ds=#sr# 200"};
- { 5, "s19667", "15870", "=q2=Golden Skeleton Key", "=ds=#sr# 150"};
- { 6, "s19666", "15869", "=q2=Silver Skeleton Key", "=ds=#sr# 100"};
- { 7, "s55732", "41745", "=q1=Titanium Rod", "=ds="..AL["Trainer"]};
- { 8, "s32657", "25845", "=q1=Eternium Rod", "=ds=#sr# 360"};
- { 9, "s32656", "25844", "=q1=Adamantite Rod", "=ds=#sr# 350"};
- { 10, "s32655", "25843", "=q1=Fel Iron Rod", "=ds=#sr# 300"};
- { 11, "s20201", "16206", "=q1=Arcanite Rod", "=ds=#sr# 275"};
- { 12, "s16639", "12644", "=q1=Dense Grinding Stone", "=ds=#sr# 250"};
- { 13, "s11454", "9060", "=q1=Inlaid Mithril Cylinder", "=ds=#sr# 200"};
- { 14, "s14380", "11144", "=q1=Truesilver Rod", "=ds=#sr# 200"};
- { 15, "s9920", "7966", "=q1=Solid Grinding Stone", "=ds=#sr# 200"};
- { 16, "s14379", "11128", "=q1=Golden Rod", "=ds=#sr# 150"};
- { 17, "s8768", "7071", "=q1=Iron Buckle", "=ds=#sr# 150"};
- { 18, "s3337", "3486", "=q1=Heavy Grinding Stone", "=ds=#sr# 125"};
- { 19, "s7818", "6338", "=q1=Silver Rod", "=ds=#sr# 100"};
- { 20, "s3326", "3478", "=q1=Coarse Grinding Stone", "=ds=#sr# 75"};
- { 21, "s3320", "3470", "=q1=Rough Grinding Stone", "=ds=#sr# 25"};
- };
- {
- Name = ARMORSMITH;
- { 8, "s36129", "30074", "=q3=Heavy Earthforged Breastplate", "=ds=#sr# 330"};
- { 7, "s36130", "30076", "=q3=Stormforged Hauberk", "=ds=#sr# 330"};
- { 6, "s34533", "28483", "=q4=Breastplate of Kings", "=ds=#sr# 350"};
- { 5, "s34529", "23563", "=q4=Nether Chain Shirt", "=ds=#sr# 350"};
- { 4, "s34534", "28484", "=q4=Bulwark of Kings", "=ds=#sr# 375"};
- { 3, "s36257", "28485", "=q4=Bulwark of the Ancient Kings", "=ds=#sr# 375"};
- { 2, "s36256", "23565", "=q4=Embrace of the Twisting Nether", "=ds=#sr# 375"};
- { 1, "s34530", "23564", "=q4=Twisting Nether Chain Shirt", "=ds=#sr# 375"};
- };
- {
- Name = WEAPONSMITH;
- { 1, "s36125", "30071", "=q3=Light Earthforged Blade", "=ds=#sr# 260"};
- { 2, "s36128", "30073", "=q3=Light Emberforged Hammer", "=ds=#sr# 260"};
- { 3, "s36126", "30072", "=q3=Light Skyforged Axe", "=ds=#sr# 260"};
- };
- {
- Name = AXESMITH;
- { 8, "s36135", "30088", "=q3=Skyforged Great Axe", "=ds=#sr# 330"};
- { 7, "s36134", "30087", "=q3=Stormforged Axe", "=ds=#sr# 330"};
- { 6, "s34543", "28434", "=q4=Lunar Crescent", "=ds=#sr# 350"};
- { 5, "s34541", "28431", "=q4=The Planar Edge", "=ds=#sr# 350"};
- { 4, "s34542", "28432", "=q4=Black Planar Edge", "=ds=#sr# 375"};
- { 3, "s36261", "28436", "=q4=Bloodmoon", "=ds=#sr# 375"};
- { 2, "s34544", "28435", "=q4=Mooncleaver", "=ds=#sr# 375"};
- { 1, "s36260", "28433", "=q4=Wicked Edge of the Planes", "=ds=#sr# 375"};
- };
- {
- Name = HAMMERSMITH;
- { 8, "s36137", "30093", "=q3=Great Earthforged Hammer", "=ds=#sr# 330"};
- { 7, "s36136", "30089", "=q3=Lavaforged Warhammer", "=ds=#sr# 330"};
- { 6, "s34545", "28437", "=q4=Drakefist Hammer", "=ds=#sr# 350"};
- { 5, "s34547", "28440", "=q4=Thunder", "=ds=#sr# 350"};
- { 4, "s34548", "28441", "=q4=Deep Thunder", "=ds=#sr# 375"};
- { 3, "s34546", "28438", "=q4=Dragonmaw", "=ds=#sr# 375"};
- { 2, "s36262", "28439", "=q4=Dragonstrike", "=ds=#sr# 375"};
- { 1, "s36263", "28442", "=q4=Stormherald", "=ds=#sr# 375"};
- };
- {
- Name = SWORDSMITH;
- { 8, "s36133", "30086", "=q3=Stoneforged Claymore", "=ds=#sr# 330"};
- { 7, "s36131", "30077", "=q3=Windforged Rapier", "=ds=#sr# 330"};
- { 6, "s34535", "28425", "=q4=Fireguard", "=ds=#sr# 350"};
- { 5, "s34538", "28428", "=q4=Lionheart Blade", "=ds=#sr# 350"};
- { 4, "s36258", "28427", "=q4=Blazefury", "=ds=#sr# 375"};
- { 3, "s34537", "28426", "=q4=Blazeguard", "=ds=#sr# 375"};
- { 2, "s34540", "28429", "=q4=Lionheart Champion", "=ds=#sr# 375"};
- { 1, "s36259", "28430", "=q4=Lionheart Executioner", "=ds=#sr# 375"};
- };
+AtlasLoot_Data["SmithingTBC"] = {
+ Name = BLACKSMITHING;
+ Type = "Crafting";
+ {
+ Name = BabbleInventory["Armor"] .. " - Chest";
+ { 1, "s34534", "28484", "=q4=Bulwark of Kings", "=ds=#sr# 375" };
+ { 2, "s36257", "28485", "=q4=Bulwark of the Ancient Kings", "=ds=#sr# 375" };
+ { 3, "s36256", "23565", "=q4=Embrace of the Twisting Nether", "=ds=#sr# 375" };
+ { 4, "s38477", "31369", "=q4=Iceguard Breastplate", "=ds=#sr# 375" };
+ { 5, "s34530", "23564", "=q4=Twisting Nether Chain Shirt", "=ds=#sr# 375" };
+ { 6, "s38473", "31364", "=q4=Wildguard Breastplate", "=ds=#sr# 375" };
+ { 7, "s46144", "34377", "=q4=Hard Khorium Battleplate", "=ds=#sr# 365" };
+ { 8, "s46142", "34379", "=q4=Sunblessed Breastplate", "=ds=#sr# 365" };
+ { 9, "s29649", "23527", "=q3=Earthpeace Breastplate", "=ds=#sr# 370" };
+ { 10, "s29645", "23522", "=q3=Ragesteel Breastplate", "=ds=#sr# 370" };
+ { 11, "s29617", "23513", "=q3=Flamebane Breastplate", "=ds=#sr# 365" };
+ { 12, "s29610", "23509", "=q3=Enchanted Adamantite Breastplate", "=ds=#sr# 360" };
+ { 13, "s34533", "28483", "=q4=Breastplate of Kings", "=ds=#sr# 350" };
+ { 14, "s34529", "23563", "=q4=Nether Chain Shirt", "=ds=#sr# 350" };
+ { 15, "s29606", "23507", "=q3=Adamantite Breastplate", "=ds=#sr# 340" };
+ { 16, "s36129", "30074", "=q3=Heavy Earthforged Breastplate", "=ds=#sr# 330" };
+ { 17, "s36130", "30076", "=q3=Stormforged Hauberk", "=ds=#sr# 330" };
+ { 18, "s29550", "23489", "=q2=Fel Iron Breastplate", "=ds=#sr# 325" };
+ { 19, "s29556", "23490", "=q2=Fel Iron Chain Tunic", "=ds=#sr# 320" };
};
-
- ---------------
- --- Cooking ---
- ---------------
-
- AtlasLoot_Data["CookingTBC"] = {
- Name = COOKING;
- {
- Name = COOKING;
- { 1, "s42302", "33052", "=q1=Fisherman's Feast", "=ds="..AL["Trainer"]};
- { 2, "s45561", "34760", "=q1=Grilled Bonescale", "=ds="..AL["Trainer"]};
- { 3, "s45563", "34762", "=q1=Grilled Sculpin", "=ds="..AL["Trainer"]};
- { 4, "s58525", "43492", "=q1=Haunted Herring", "=ds="..AL["Drop"]..""};
- { 5, "s42305", "33053", "=q1=Hot Buttered Trout", "=ds="..AL["Trainer"]};
- { 6, "s58521", "43488", "=q1=Last Week's Mammoth", "=ds="..AL["Drop"]..""};
- { 7, "s45549", "34748", "=q1=Mammoth Meal", "=ds="..AL["Trainer"]};
- { 8, "s57421", "34747", "=q1=Northern Stew", "=ds="..AL["Quest"]..""};
- { 9, "s45566", "34765", "=q1=Pickled Fangtooth", "=ds="..AL["Trainer"]};
- { 10, "s45565", "34764", "=q1=Poached Nettlefish", "=ds="..AL["Trainer"]};
- { 11, "s45553", "34752", "=q1=Rhino Dogs", "=ds="..AL["Trainer"]};
- { 12, "s45552", "34751", "=q1=Roasted Worg", "=ds="..AL["Trainer"]};
- { 13, "s45562", "34761", "=q1=Sauteed Goby", "=ds="..AL["Trainer"]};
- { 14, "s45550", "34749", "=q1=Shoveltusk Steak", "=ds="..AL["Trainer"]};
- { 15, "s45560", "34759", "=q1=Smoked Rockfin", "=ds="..AL["Trainer"]};
- { 16, "s45564", "34763", "=q1=Smoked Salmon", "=ds="..AL["Trainer"]};
- { 17, "s33296", "27667", "=q1=Spicy Crawdad", "=ds="..AL["Vendor"]..", "..BabbleZone["Terokkar Forest"]};
- { 18, "s58512", "43490", "=q1=Tasty Cupcake", "=ds="..AL["Drop"]..""};
- { 19, "s45551", "34750", "=q1=Wyrm Delight", "=ds="..AL["Trainer"]};
- { 20, "s38868", "31673", "=q1=Crunchy Serpent", "=ds="..AL["Vendor"]..", "..BabbleZone["Blade's Edge Mountains"]};
- { 21, "s38867", "31672", "=q1=Mok'Nathal Shortribs", "=ds="..AL["Vendor"]..", "..BabbleZone["Blade's Edge Mountains"]};
- { 22, "s33295", "27666", "=q1=Golden Fish Sticks", "=ds="..AL["Vendor"]..", "..BabbleZone["Terokkar Forest"]};
- { 23, "s45022", "34411", "=q1=Hot Apple Cider", "=ds="..AL["Vendor"]..""};
- { 24, "s33287", "27658", "=q1=Roasted Clefthoof", "=ds="..AL["Vendor"]..", "..BabbleZone["Nagrand"]};
- { 25, "s43707", "33825", "=q1=Skullfish Soup", "=ds="..AL["Drop"]..""};
- { 26, "s43765", "33872", "=q1=Spicy Hot Talbuk", "=ds="..AL["Drop"]..""};
- { 27, "s33289", "27660", "=q1=Talbuk Steak", "=ds="..AL["Vendor"]..", "..BabbleZone["Nagrand"]};
- { 28, "s33288", "27659", "=q1=Warp Burger", "=ds="..AL["Vendor"]..", "..BabbleZone["Terokkar Forest"]};
- { 29, "s33293", "27664", "=q1=Grilled Mudfish", "=ds="..AL["Vendor"]..", "..BabbleZone["Nagrand"]};
- { 30, "s33294", "27665", "=q1=Poached Bluefish", "=ds="..AL["Vendor"]..", "..BabbleZone["Nagrand"]};
-
- };
- {
- Name = COOKING;
- { 1, "s42296", "33048", "=q1=Stewed Trout", "=ds="..AL["Trainer"]};
- { 2, "s33286", "27657", "=q1=Blackened Basilisk", "=ds="..AL["Vendor"]..", "..BabbleZone["Terokkar Forest"]};
- { 3, "s33292", "27663", "=q1=Blackened Sporefish", "=ds="..AL["Vendor"]..", "..BabbleZone["Zangarmarsh"]};
- { 4, "s33285", "27656", "=q1=Sporeling Snack", "=ds="..AL["Vendor"]..", "..BabbleZone["Zangarmarsh"]};
- { 5, "s33290", "27661", "=q1=Blackened Trout", "=ds="..AL["Vendor"]..", "..BabbleZone["Zangarmarsh"]};
- { 6, "s43761", "33867", "=q1=Broiled Bloodfin", "=ds="..AL["Drop"]..""};
- { 7, "s33279", "27651", "=q1=Buzzard Bites", "=ds="..AL["Quest"]..""};
- { 8, "s36210", "30155", "=q1=Clam Bar", "=ds="..AL["Vendor"]..", "..BabbleZone["Zangarmarsh"]};
- { 9, "s25659", "21023", "=q1=Dirge's Kickin' Chimaerok Chops", "=ds="..AL["Quest"]..""};
- { 10, "s966455", "100626", "=q1=Azerothian Schmorgus Boards", "=ds="..AL["Vendor"]..""};
- { 11, "s966436", "100609", "=q1=Chilled Lava Eels", "=ds="..AL["Vendor"]..""};
- { 12, "s966435", "100608", "=q1=Chillwind Flank Steaks", "=ds="..AL["Drop"]..""};
- { 13, "s966434", "100607", "=q1=Hippogryph Steaks", "=ds="..AL["Quest"]..""};
- { 14, "s966433", "100606", "=q1=Steamed Makrinni Claws", "=ds="..AL["Quest"]..""};
- { 15, "s966432", "100605", "=q1=Rubbed Ravasaur Ribss", "=ds="..AL["Drop"]..""};
- { 16, "s966431", "100604", "=q1=Hearty Stegodon Stews", "=ds="..AL["Drop"]..""};
- { 17, "s966430", "100603", "=q1=Crispy Pterrordax Wings", "=ds="..AL["Drop"]..""};
- { 18, "s966429", "100602", "=q1=Spicy Dino Jerkys", "=ds="..AL["Drop"]..""};
- { 19, "s966428", "100601", "=q1=Dirge's Nevermelt Ice Creams", "=ds="..AL["Quest"]..""};
- { 20, "s966427", "100599", "=q1=Silithid Snacks", "=ds="..AL["Quest"]..""};
- { 21, "s966426", "100598", "=q1=Hydra Scale Soups", "=ds="..AL["Quest"]..""};
- { 22, "s966425", "100597", "=q1=Ghostly Goulashs", "=ds="..AL["Quest"]..""};
- { 23, "s966398", "100583", "=q1=Seared Cunning Carps", "=ds="..AL["Drop"]..""};
- { 24, "s43772", "33874", "=q1=Kibler's Bits", "=ds="..AL["Drop"]..""};
- { 25, "s33284", "27655", "=q1=Ravager Dog", "=ds="..AL["Vendor"]..", "..BabbleZone["Hellfire Peninsula"]};
- { 26, "s43758", "33866", "=q1=Stormchops", "=ds="..AL["Drop"]..""};
- };
+ { Name = BabbleInventory["Armor"] .. " - Feet";
+ { 1, "s36391", "30033", "=q4=Boots of the Protector", "=ds=#sr# 375" };
+ { 2, "s36392", "30031", "=q4=Red Havoc Boots", "=ds=#sr# 375" };
+ { 3, "s40033", "32402", "=q4=Shadesteel Sabots", "=ds=#sr# 375" };
+ { 4, "s29630", "23525", "=q3=Khorium Boots", "=ds=#sr# 365" };
+ { 5, "s29611", "23511", "=q3=Enchanted Adamantite Boots", "=ds=#sr# 355" };
+ { 6, "s29548", "23487", "=q2=Fel Iron Plate Boots", "=ds=#sr# 315" };
};
+ {
+ Name = BabbleInventory["Armor"] .. " - Hands";
+ { 1, "s29648", "23526", "=q3=Swiftsteel Gloves", "=ds=#sr# 370" };
+ { 2, "s29658", "23531", "=q4=Felfury Gauntlets", "=ds=#sr# 365" };
+ { 3, "s29622", "23532", "=q4=Gauntlets of the Iron Tower", "=ds=#sr# 365" };
+ { 4, "s29662", "23533", "=q4=Steelgrip Gauntlets", "=ds=#sr# 365" };
+ { 5, "s46140", "34380", "=q4=Sunblessed Gauntlets", "=ds=#sr# 365" };
+ { 6, "s46141", "34378", "=q4=Hard Khorium Battlefists", "=ds=#sr# 365" };
+ { 7, "s29642", "23520", "=q3=Ragesteel Gloves", "=ds=#sr# 365" };
+ { 8, "s29619", "23517", "=q3=Felsteel Gloves", "=ds=#sr# 360" };
+ { 9, "s29616", "23514", "=q3=Flamebane Gloves", "=ds=#sr# 360" };
+ { 10, "s29605", "23508", "=q3=Adamantite Plate Gloves", "=ds=#sr# 335" };
+ { 11, "s29552", "23491", "=q2=Fel Iron Chain Gloves", "=ds=#sr# 310" };
+ { 12, "s29545", "23482", "=q2=Fel Iron Plate Gloves", "Dungeon Bosses/Raid Trash" };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Head";
+ { 1, "s38479", "31371", "=q4=Iceguard Helm", "=ds=#sr# 375" };
+ { 2, "s38476", "31368", "=q4=Wildguard Helm", "=ds=#sr# 375" };
+ { 3, "s29664", "23535", "=q4=Helm of the Stalwart Defender", "=ds=#sr# 365" };
+ { 4, "s29668", "23536", "=q4=Oathkeeper's Helm", "=ds=#sr# 365" };
+ { 5, "s29663", "23534", "=q4=Storm Helm", "=ds=#sr# 365" };
+ { 6, "s29621", "23519", "=q3=Felsteel Helm", "=ds=#sr# 365" };
+ { 7, "s29643", "23521", "=q3=Ragesteel Helm", "=ds=#sr# 365" };
+ { 8, "s29615", "23516", "=q3=Flamebane Helm", "=ds=#sr# 355" };
+ { 9, "s29551", "23493", "=q2=Fel Iron Chain Coif", "=ds=#sr# 300" };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Legs";
+ { 1, "s38478", "31370", "=q4=Iceguard Leggings", "=ds=#sr# 375" };
+ { 2, "s40035", "32404", "=q4=Shadesteel Greaves", "=ds=#sr# 375" };
+ { 3, "s38475", "31367", "=q4=Wildguard Leggings", "=ds=#sr# 375" };
+ { 4, "s29613", "23512", "=q3=Enchanted Adamantite Leggings", "=ds=#sr# 365" };
+ { 5, "s29620", "23518", "=q3=Felsteel Leggings", "=ds=#sr# 360" };
+ { 6, "s29629", "23523", "=q3=Khorium Pants", "=ds=#sr# 360" };
+ { 7, "s29549", "23488", "=q2=Fel Iron Plate Pants", "=ds=#sr# 315" };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Shoulder";
+ { 1, "s41135", "32573", "=q4=Dawnsteel Shoulders", "=ds=#sr# 375" };
+ { 2, "s42662", "33173", "=q3=Ragesteel Shoulders", "=ds=#sr# 365" };
+ { 3, "s41133", "32570", "=q4=Swiftsteel Shoulders", "=ds=#sr# 375" };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Waist";
+ { 1, "s36389", "30034", "=q4=Belt of the Guardian", "=ds=#sr# 375" };
+ { 2, "s36390", "30032", "=q4=Red Belt of Battle", "=ds=#sr# 375" };
+ { 3, "s40036", "32401", "=q4=Shadesteel Girdle", "=ds=#sr# 375" };
+ { 4, "s29628", "23524", "=q3=Khorium Belt", "=ds=#sr# 360" };
+ { 5, "s29608", "23510", "=q3=Enchanted Adamantite Belt", "=ds=#sr# 355" };
+ { 6, "s29547", "23484", "=q2=Fel Iron Plate Belt", "=ds=#sr# 305" };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Wrist";
+ { 1, "s41134", "32571", "=q4=Dawnsteel Bracers", "=ds=#sr# 375" };
+ { 2, "s40034", "32403", "=q4=Shadesteel Bracers", "=ds=#sr# 375" };
+ { 3, "s41132", "32568", "=q4=Swiftsteel Bracers", "=ds=#sr# 375" };
+ { 4, "s29669", "23537", "=q4=Black Felsteel Bracers", "=ds=#sr# 365" };
+ { 5, "s29672", "23539", "=q4=Blessed Bracers", "=ds=#sr# 365" };
+ { 6, "s29671", "23538", "=q4=Bracers of the Green Fortress", "=ds=#sr# 365" };
+ { 7, "s29614", "23515", "=q3=Flamebane Bracers", "=ds=#sr# 350" };
+ { 8, "s29603", "23506", "=q3=Adamantite Plate Bracers", "=ds=#sr# 335" };
+ { 9, "s29553", "23494", "=q2=Fel Iron Chain Bracers", "=ds=#sr# 315" };
+ };
+ {
+ Name = "Weapon - OneHanded";
+ { 1, "s34542", "28432", "=q4=Black Planar Edge", "=ds=#sr# 375" };
+ { 2, "s36258", "28427", "=q4=Blazefury", "=ds=#sr# 375" };
+ { 3, "s34537", "28426", "=q4=Blazeguard", "=ds=#sr# 375" };
+ { 4, "s34546", "28438", "=q4=Dragonmaw", "=ds=#sr# 375" };
+ { 5, "s36262", "28439", "=q4=Dragonstrike", "=ds=#sr# 375" };
+ { 6, "s36260", "28433", "=q4=Wicked Edge of the Planes", "=ds=#sr# 375" };
+ { 7, "s29699", "23555", "=q4=Dirge", "=ds=#sr# 365" };
+ { 8, "s29698", "23554", "=q4=Eternium Runed Blade", "=ds=#sr# 365" };
+ { 9, "s29694", "23542", "=q4=Fel Edged Battleaxe", "=ds=#sr# 365" };
+ { 10, "s29692", "23540", "=q4=Felsteel Longblade", "=ds=#sr# 365" };
+ { 11, "s29700", "23556", "=q4=Hand of Eternity", "=ds=#sr# 365" };
+ { 12, "s29696", "23544", "=q4=Runic Hammer", "=ds=#sr# 365" };
+ { 13, "s34545", "28437", "=q4=Drakefist Hammer", "=ds=#sr# 350" };
+ { 14, "s34535", "28425", "=q4=Fireguard", "=ds=#sr# 350" };
+ { 15, "s34541", "28431", "=q4=The Planar Edge", "=ds=#sr# 350" };
+ { 16, "s34983", "29204", "=q3=Felsteel Whisper Knives", "=ds=#sr# 350" };
+ { 17, "s36136", "30089", "=q3=Lavaforged Warhammer", "=ds=#sr# 330" };
+ { 18, "s36134", "30087", "=q3=Stormforged Axe", "=ds=#sr# 330" };
+ { 19, "s36131", "30077", "=q3=Windforged Rapier", "=ds=#sr# 330" };
+ { 20, "s29571", "23505", "=q2=Adamantite Rapier", "=ds=#sr# 335" };
+ { 21, "s29569", "23504", "=q2=Adamantite Dagger", "=ds=#sr# 330" };
+ { 22, "s29558", "23498", "=q2=Fel Iron Hammer", "=ds=#sr# 315" };
+ { 23, "s29557", "23497", "=q2=Fel Iron Hatchet", "=ds=#sr# 310" };
+ };
+ {
+ Name = "Weapon - Twohanded";
+ { 1, "s36261", "28436", "=q4=Bloodmoon", "=ds=#sr# 375" };
+ { 2, "s34548", "28441", "=q4=Deep Thunder", "=ds=#sr# 375" };
+ { 3, "s34540", "28429", "=q4=Lionheart Champion", "=ds=#sr# 375" };
+ { 4, "s36259", "28430", "=q4=Lionheart Executioner", "=ds=#sr# 375" };
+ { 5, "s34544", "28435", "=q4=Mooncleaver", "=ds=#sr# 375" };
+ { 6, "s36263", "28442", "=q4=Stormherald", "=ds=#sr# 375" };
+ { 7, "s29697", "23546", "=q4=Fel Hardened Maul", "=ds=#sr# 365" };
+ { 8, "s29695", "23543", "=q4=Felsteel Reaper", "=ds=#sr# 365" };
+ { 9, "s43846", "32854", "=q4=Hammer of Righteous Might", "=ds=#sr# 365" };
+ { 10, "s29693", "23541", "=q4=Khorium Champion", "=ds=#sr# 365" };
+ { 11, "s34538", "28428", "=q4=Lionheart Blade", "=ds=#sr# 350" };
+ { 12, "s34543", "28434", "=q4=Lunar Crescent", "=ds=#sr# 350" };
+ { 13, "s34547", "28440", "=q4=Thunder", "=ds=#sr# 350" };
+ { 14, "s36137", "30093", "=q3=Great Earthforged Hammer", "=ds=#sr# 330" };
+ { 15, "s36135", "30088", "=q3=Skyforged Great Axe", "=ds=#sr# 330" };
+ { 16, "s36133", "30086", "=q3=Stoneforged Claymore", "=ds=#sr# 330" };
+ { 17, "s29568", "23503", "=q2=Adamantite Cleaver", "=ds=#sr# 330" };
+ { 18, "s29566", "23502", "=q2=Adamantite Maul", "=ds=#sr# 325" };
+ { 19, "s29565", "23499", "=q2=Fel Iron Greatsword", "=ds=#sr# 320" };
+ };
+ {
+ Name = AL["Item Enhancements"];
+ { 1, "s29657", "23530", "=q2=Felsteel Shield Spike", "=ds=#sr# 360" };
+ { 2, "s29656", "23529", "=q2=Adamantite Sharpening Stone", "=ds=#sr# 350" };
+ { 3, "s34608", "28421", "=q2=Adamantite Weightstone", "=ds=#sr# 350" };
+ { 4, "s42688", "33185", "=q2=Adamantite Weapon Chain", "=ds=#sr# 335" };
+ { 5, "s22757", "18262", "=q2=Elemental Sharpening Stone", "=ds=#sr# 300" };
+ { 6, "s16651", "12645", "=q2=Thorium Shield Spike", "=ds=#sr# 275" };
+ { 7, "s9964", "7969", "=q2=Mithril Spurs", "=ds=#sr# 235" };
+ { 8, "s9939", "7967", "=q2=Mithril Shield Spike", "=ds=#sr# 215" };
+ { 9, "s29729", "23576", "=q1=Greater Ward of Shielding", "=ds=#sr# 375" };
+ { 10, "s32285", "25521", "=q1=Greater Rune of Warding", "=ds=#sr# 350" };
+ { 11, "s29728", "23575", "=q1=Lesser Ward of Shielding", "=ds=#sr# 340" };
+ { 12, "s32284", "23559", "=q1=Lesser Rune of Warding", "=ds=#sr# 325" };
+ { 13, "s29654", "23528", "=q1=Fel Sharpening Stone", "=ds=#sr# 300" };
+ { 14, "s34607", "28420", "=q1=Fel Weightstone", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s59406", "43853", "=q2=Titanium Skeleton Key", "=ds=" .. AL["Trainer"] };
+ { 2, "s59405", "43854", "=q2=Cobalt Skeleton Key", "=ds=" .. AL["Trainer"] };
+ { 3, "s19669", "15872", "=q2=Arcanite Skeleton Key", "=ds=#sr# 275" };
+ { 4, "s19668", "15871", "=q2=Truesilver Skeleton Key", "=ds=#sr# 200" };
+ { 5, "s19667", "15870", "=q2=Golden Skeleton Key", "=ds=#sr# 150" };
+ { 6, "s19666", "15869", "=q2=Silver Skeleton Key", "=ds=#sr# 100" };
+ { 7, "s55732", "41745", "=q1=Titanium Rod", "=ds=" .. AL["Trainer"] };
+ { 8, "s32657", "25845", "=q1=Eternium Rod", "=ds=#sr# 360" };
+ { 9, "s32656", "25844", "=q1=Adamantite Rod", "=ds=#sr# 350" };
+ { 10, "s32655", "25843", "=q1=Fel Iron Rod", "=ds=#sr# 300" };
+ { 11, "s20201", "16206", "=q1=Arcanite Rod", "=ds=#sr# 275" };
+ { 12, "s16639", "12644", "=q1=Dense Grinding Stone", "=ds=#sr# 250" };
+ { 13, "s11454", "9060", "=q1=Inlaid Mithril Cylinder", "=ds=#sr# 200" };
+ { 14, "s14380", "11144", "=q1=Truesilver Rod", "=ds=#sr# 200" };
+ { 15, "s9920", "7966", "=q1=Solid Grinding Stone", "=ds=#sr# 200" };
+ { 16, "s14379", "11128", "=q1=Golden Rod", "=ds=#sr# 150" };
+ { 17, "s8768", "7071", "=q1=Iron Buckle", "=ds=#sr# 150" };
+ { 18, "s3337", "3486", "=q1=Heavy Grinding Stone", "=ds=#sr# 125" };
+ { 19, "s7818", "6338", "=q1=Silver Rod", "=ds=#sr# 100" };
+ { 20, "s3326", "3478", "=q1=Coarse Grinding Stone", "=ds=#sr# 75" };
+ { 21, "s3320", "3470", "=q1=Rough Grinding Stone", "=ds=#sr# 25" };
+ };
+ {
+ Name = ARMORSMITH;
+ { 8, "s36129", "30074", "=q3=Heavy Earthforged Breastplate", "=ds=#sr# 330" };
+ { 7, "s36130", "30076", "=q3=Stormforged Hauberk", "=ds=#sr# 330" };
+ { 6, "s34533", "28483", "=q4=Breastplate of Kings", "=ds=#sr# 350" };
+ { 5, "s34529", "23563", "=q4=Nether Chain Shirt", "=ds=#sr# 350" };
+ { 4, "s34534", "28484", "=q4=Bulwark of Kings", "=ds=#sr# 375" };
+ { 3, "s36257", "28485", "=q4=Bulwark of the Ancient Kings", "=ds=#sr# 375" };
+ { 2, "s36256", "23565", "=q4=Embrace of the Twisting Nether", "=ds=#sr# 375" };
+ { 1, "s34530", "23564", "=q4=Twisting Nether Chain Shirt", "=ds=#sr# 375" };
+ };
+ {
+ Name = WEAPONSMITH;
+ { 1, "s36125", "30071", "=q3=Light Earthforged Blade", "=ds=#sr# 260" };
+ { 2, "s36128", "30073", "=q3=Light Emberforged Hammer", "=ds=#sr# 260" };
+ { 3, "s36126", "30072", "=q3=Light Skyforged Axe", "=ds=#sr# 260" };
+ };
+ {
+ Name = AXESMITH;
+ { 8, "s36135", "30088", "=q3=Skyforged Great Axe", "=ds=#sr# 330" };
+ { 7, "s36134", "30087", "=q3=Stormforged Axe", "=ds=#sr# 330" };
+ { 6, "s34543", "28434", "=q4=Lunar Crescent", "=ds=#sr# 350" };
+ { 5, "s34541", "28431", "=q4=The Planar Edge", "=ds=#sr# 350" };
+ { 4, "s34542", "28432", "=q4=Black Planar Edge", "=ds=#sr# 375" };
+ { 3, "s36261", "28436", "=q4=Bloodmoon", "=ds=#sr# 375" };
+ { 2, "s34544", "28435", "=q4=Mooncleaver", "=ds=#sr# 375" };
+ { 1, "s36260", "28433", "=q4=Wicked Edge of the Planes", "=ds=#sr# 375" };
+ };
+ {
+ Name = HAMMERSMITH;
+ { 8, "s36137", "30093", "=q3=Great Earthforged Hammer", "=ds=#sr# 330" };
+ { 7, "s36136", "30089", "=q3=Lavaforged Warhammer", "=ds=#sr# 330" };
+ { 6, "s34545", "28437", "=q4=Drakefist Hammer", "=ds=#sr# 350" };
+ { 5, "s34547", "28440", "=q4=Thunder", "=ds=#sr# 350" };
+ { 4, "s34548", "28441", "=q4=Deep Thunder", "=ds=#sr# 375" };
+ { 3, "s34546", "28438", "=q4=Dragonmaw", "=ds=#sr# 375" };
+ { 2, "s36262", "28439", "=q4=Dragonstrike", "=ds=#sr# 375" };
+ { 1, "s36263", "28442", "=q4=Stormherald", "=ds=#sr# 375" };
+ };
+ {
+ Name = SWORDSMITH;
+ { 8, "s36133", "30086", "=q3=Stoneforged Claymore", "=ds=#sr# 330" };
+ { 7, "s36131", "30077", "=q3=Windforged Rapier", "=ds=#sr# 330" };
+ { 6, "s34535", "28425", "=q4=Fireguard", "=ds=#sr# 350" };
+ { 5, "s34538", "28428", "=q4=Lionheart Blade", "=ds=#sr# 350" };
+ { 4, "s36258", "28427", "=q4=Blazefury", "=ds=#sr# 375" };
+ { 3, "s34537", "28426", "=q4=Blazeguard", "=ds=#sr# 375" };
+ { 2, "s34540", "28429", "=q4=Lionheart Champion", "=ds=#sr# 375" };
+ { 1, "s36259", "28430", "=q4=Lionheart Executioner", "=ds=#sr# 375" };
+ };
+};
- ------------------
- --- Enchanting ---
- ------------------
+---------------
+--- Cooking ---
+---------------
- AtlasLoot_Data["EnchantingTBC"] = {
- Name = ENCHANTING;
- {
- Name = AL["Enchant Boots"];
- { 1, "s27954", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Surefooted", "=ds=#sr# 370"};
- { 2, "s34008", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Boar's Speed", "=ds=#sr# 360"};
- { 3, "s34007", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Cat's Swiftness", "=ds=#sr# 360"};
- { 4, "s27951", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Dexterity", "=ds=#sr# 340"};
- { 5, "s27950", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Fortitude", "=ds=#sr# 320"};
- { 6, "s27948", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Vitality", "=ds=#sr# 305"};
- };
- {
- Name = AL["Enchant Bracer"];
- { 1, "s27917", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Spellpower", "=ds=#sr# 360"};
- { 2, "s27914", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Fortitude", "=ds=#sr# 350"};
- { 3, "s27913", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Restore Mana Prime", "=ds=#sr# 335"};
- { 4, "s27911", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Healing", "=ds=#sr# 325"};
- { 5, "s27906", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Defense", "=ds=#sr# 320"};
- { 6, "s27905", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Stats", "=ds=#sr# 315"};
- { 7, "s27899", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Brawn", "=ds=#sr# 305"};
- { 8, "s34001", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Intellect", "=ds=#sr# 305"};
- { 9, "s34002", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Assault", "=ds=#sr# 300"};
- };
- {
- Name = AL["Enchant Chest"];
- { 1, "s46594", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Defense", "=ds=#sr# 360"};
- { 2, "s27960", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Stats", "=ds=#sr# 345"};
- { 3, "s33992", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Resilience", "=ds=#sr# 345"};
- { 4, "s33990", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Spirit", "=ds=#sr# 320"};
- { 5, "s27957", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Health", "=ds=#sr# 315"};
- };
- {
- Name = AL["Enchant Cloak"];
- { 1, "s47051", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Steelweave", "=ds=#sr# 375"};
- { 2, "s351501", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Crushing Wave", "=ds=#sr# 375"};
- { 3, "s351530", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Phoenix Fire", "=ds=#sr# 375"};
- { 4, "s34005", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Arcane Resistance", "=ds=#sr# 350"};
- { 5, "s34006", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Shadow Resistance", "=ds=#sr# 350"};
- { 6, "s27962", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Major Resistance", "=ds=#sr# 330"};
- { 7, "s34003", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Spell Penetration", "=ds=#sr# 325"};
- { 8, "s34004", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Agility", "=ds=#sr# 310"};
- { 9, "s27961", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Major Armor", "=ds=#sr# 310"};
- { 10, "s25082", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Nature Resistance", "=ds=#sr# 300"};
- { 11, "s25083", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Stealth", "=ds=#sr# 300"};
- { 12, "s25084", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Subtlety", "=ds=#sr# 300"};
- { 13, "s25086", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Dodge", "=ds=#sr# 300"};
- };
- {
- Name = AL["Enchant Gloves"];
- { 1, "s44592", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Exceptional Spellpower", "=ds="..AL["Trainer"] };
- { 2, "s33997", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Spellpower", "=ds=#sr# 360"};
- { 3, "s33994", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Spell Strike", "=ds=#sr# 360"};
- { 4, "s33999", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Healing", "=ds=#sr# 350"};
- { 5, "s33995", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Strength", "=ds=#sr# 340"};
- { 6, "s33996", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Assault", "=ds=#sr# 310"};
- { 7, "s33993", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Blasting", "=ds=#sr# 305"};
- { 8, "s25080", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Superior Agility", "=ds=#sr# 300"};
- { 9, "s25072", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Threat", "=ds=#sr# 300"};
- };
- {
- Name = AL["Enchant Ring"];
- { 1, "s27927", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Stats", "=ds=#sr# 375"};
- { 2, "s27926", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Healing Power", "=ds=#sr# 370"};
- { 3, "s27924", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Spellpower", "=ds=#sr# 360"};
- { 4, "s27920", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Striking", "=ds=#sr# 360"};
- };
- {
- Name = AL["Enchant Shield"];
- { 1, "s27947", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Resistance", "=ds=#sr# 360"};
- { 2, "s27946", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Shield Block", "=ds=#sr# 340"};
- { 3, "s44383", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Resilience", "=ds=#sr# 330"};
- { 4, "s27945", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Intellect", "=ds=#sr# 325"};
- { 5, "s34009", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Major Stamina", "=ds=#sr# 325"};
- { 6, "s27944", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Tough Shield", "=ds=#sr# 310"};
- };
- {
- Name = AL["Enchant 2H Weapon"];
- { 1, "s27977", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Major Agility", "=ds=#sr# 360"};
- { 2, "s27971", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Savagery", "=ds=#sr# 350"};
- };
- {
- Name = AL["Enchant Weapon"];
- { 1, "s42974", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Executioner", "=ds=#sr# 375"};
- { 2, "s820034", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Undaunted Might", "=ds=#sr# 375"};
- { 3, "s359012", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Faith", "=ds=#sr# 375"};
- { 4, "s27984", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Mongoose", "=ds=#sr# 375"};
- { 5, "s27982", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Soulfrost", "=ds=#sr# 375"};
- { 6, "s27981", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Sunfire", "=ds=#sr# 375"};
- { 7, "s28004", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Battlemaster", "=ds=#sr# 360"};
- { 8, "s28003", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Spellsurge", "=ds=#sr# 360"};
- { 9, "s46578", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Deathfrost", "=ds=#sr# 350"};
- { 10, "s34010", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Healing", "=ds=#sr# 350"};
- { 11, "s27975", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Spellpower", "=ds=#sr# 350"};
- { 12, "s27972", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Potency", "=ds=#sr# 350"};
- { 13, "s42620", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Greater Agility", "=ds=#sr# 350"};
- { 14, "s27968", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Intellect", "=ds=#sr# 340"};
- { 15, "s27967", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Striking", "=ds=#sr# 340"};
- };
- {
- Name = "Enchant Staff";
- { 1, "s62948", "Spell_Holy_GreaterHeal", "=ds=Enchant Staff - Greater Spellpower", "=ds="};
- { 2, "s62959", "Spell_Holy_GreaterHeal", "=ds=Enchant Staff - Spellpower", "=ds="};
- };
- {
- Name = AL["Miscellaneous"];
- { 1, "s32667", "22463", "=q3=Runed Eternium Rod", "=ds=#sr# 375"};
- { 2, "s45765", "22449", "=q3=Void Shatter", "=ds=#sr# 360"};
- { 3, "s42615", "22448", "=q3=Small Prismatic Shard", "=ds=#sr# 335"};
- { 4, "s28022", "22449", "=q3=Large Prismatic Shard", "=ds=#sr# 335"};
- { 5, "s28027", "22460", "=q3=Prismatic Sphere", "=ds=#sr# 325"};
- { 6, "s42613", "22448", "=q3=Nexus Transformation", "=ds=#sr# 300"};
- { 7, "s15596", "11811", "=q3=Smoking Heart of the Mountain", "=ds=#sr# 265"};
- { 8, "s32665", "22462", "=q2=Runed Adamantite Rod", "=ds=#sr# 350"};
- { 9, "s28019", "22522", "=q1=Superior Wizard Oil", "=ds=#sr# 340"};
- { 10, "s28016", "22521", "=q1=Superior Mana Oil", "=ds=#sr# 310"};
+AtlasLoot_Data["CookingTBC"] = {
+ Name = COOKING;
+ Type = "CraftingNoBF";
+ {
+ Name = COOKING;
+ { 1, "s42302", "33052", "=q1=Fisherman's Feast", "=ds=" .. AL["Trainer"] };
+ { 2, "s45561", "34760", "=q1=Grilled Bonescale", "=ds=" .. AL["Trainer"] };
+ { 3, "s45563", "34762", "=q1=Grilled Sculpin", "=ds=" .. AL["Trainer"] };
+ { 4, "s58525", "43492", "=q1=Haunted Herring", "=ds=" .. AL["Drop"] .. "" };
+ { 5, "s42305", "33053", "=q1=Hot Buttered Trout", "=ds=" .. AL["Trainer"] };
+ { 6, "s58521", "43488", "=q1=Last Week's Mammoth", "=ds=" .. AL["Drop"] .. "" };
+ { 7, "s45549", "34748", "=q1=Mammoth Meal", "=ds=" .. AL["Trainer"] };
+ { 8, "s57421", "34747", "=q1=Northern Stew", "=ds=" .. AL["Quest"] .. "" };
+ { 9, "s45566", "34765", "=q1=Pickled Fangtooth", "=ds=" .. AL["Trainer"] };
+ { 10, "s45565", "34764", "=q1=Poached Nettlefish", "=ds=" .. AL["Trainer"] };
+ { 11, "s45553", "34752", "=q1=Rhino Dogs", "=ds=" .. AL["Trainer"] };
+ { 12, "s45552", "34751", "=q1=Roasted Worg", "=ds=" .. AL["Trainer"] };
+ { 13, "s45562", "34761", "=q1=Sauteed Goby", "=ds=" .. AL["Trainer"] };
+ { 14, "s45550", "34749", "=q1=Shoveltusk Steak", "=ds=" .. AL["Trainer"] };
+ { 15, "s45560", "34759", "=q1=Smoked Rockfin", "=ds=" .. AL["Trainer"] };
+ { 16, "s45564", "34763", "=q1=Smoked Salmon", "=ds=" .. AL["Trainer"] };
+ { 17, "s33296", "27667", "=q1=Spicy Crawdad", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Terokkar Forest"] };
+ { 18, "s58512", "43490", "=q1=Tasty Cupcake", "=ds=" .. AL["Drop"] .. "" };
+ { 19, "s45551", "34750", "=q1=Wyrm Delight", "=ds=" .. AL["Trainer"] };
+ { 20, "s38868", "31673", "=q1=Crunchy Serpent", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Blade's Edge Mountains"] };
+ { 21, "s38867", "31672", "=q1=Mok'Nathal Shortribs", "=ds=" .. AL["Vendor"] ..", " .. BabbleZone["Blade's Edge Mountains"] };
+ { 22, "s33295", "27666", "=q1=Golden Fish Sticks", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Terokkar Forest"] };
+ { 23, "s45022", "34411", "=q1=Hot Apple Cider", "=ds=" .. AL["Vendor"] .. "" };
+ { 24, "s33287", "27658", "=q1=Roasted Clefthoof", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Nagrand"] };
+ { 25, "s43707", "33825", "=q1=Skullfish Soup", "=ds=" .. AL["Drop"] .. "" };
+ { 26, "s43765", "33872", "=q1=Spicy Hot Talbuk", "=ds=" .. AL["Drop"] .. "" };
+ { 27, "s33289", "27660", "=q1=Talbuk Steak", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Nagrand"] };
+ { 28, "s33288", "27659", "=q1=Warp Burger", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Terokkar Forest"] };
+ { 29, "s33293", "27664", "=q1=Grilled Mudfish", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Nagrand"] };
+ { 30, "s33294", "27665", "=q1=Poached Bluefish", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Nagrand"] };
+
+ };
+ {
+ Name = COOKING;
+ { 1, "s42296", "33048", "=q1=Stewed Trout", "=ds=" .. AL["Trainer"] };
+ { 2, "s33286", "27657", "=q1=Blackened Basilisk", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Terokkar Forest"] };
+ { 3, "s33292", "27663", "=q1=Blackened Sporefish", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Zangarmarsh"] };
+ { 4, "s33285", "27656", "=q1=Sporeling Snack", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Zangarmarsh"] };
+ { 5, "s33290", "27661", "=q1=Blackened Trout", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Zangarmarsh"] };
+ { 6, "s43761", "33867", "=q1=Broiled Bloodfin", "=ds=" .. AL["Drop"] .. "" };
+ { 7, "s33279", "27651", "=q1=Buzzard Bites", "=ds=" .. AL["Quest"] .. "" };
+ { 8, "s36210", "30155", "=q1=Clam Bar", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Zangarmarsh"] };
+ { 9, "s25659", "21023", "=q1=Dirge's Kickin' Chimaerok Chops", "=ds=" .. AL["Quest"] .. "" };
+ { 10, "s966455", "100626", "=q1=Azerothian Schmorgus Boards", "=ds=" .. AL["Vendor"] .. "" };
+ { 11, "s966436", "100609", "=q1=Chilled Lava Eels", "=ds=" .. AL["Vendor"] .. "" };
+ { 12, "s966435", "100608", "=q1=Chillwind Flank Steaks", "=ds=" .. AL["Drop"] .. "" };
+ { 13, "s966434", "100607", "=q1=Hippogryph Steaks", "=ds=" .. AL["Quest"] .. "" };
+ { 14, "s966433", "100606", "=q1=Steamed Makrinni Claws", "=ds=" .. AL["Quest"] .. "" };
+ { 15, "s966432", "100605", "=q1=Rubbed Ravasaur Ribss", "=ds=" .. AL["Drop"] .. "" };
+ { 16, "s966431", "100604", "=q1=Hearty Stegodon Stews", "=ds=" .. AL["Drop"] .. "" };
+ { 17, "s966430", "100603", "=q1=Crispy Pterrordax Wings", "=ds=" .. AL["Drop"] .. "" };
+ { 18, "s966429", "100602", "=q1=Spicy Dino Jerkys", "=ds=" .. AL["Drop"] .. "" };
+ { 19, "s966428", "100601", "=q1=Dirge's Nevermelt Ice Creams", "=ds=" .. AL["Quest"] .. "" };
+ { 20, "s966427", "100599", "=q1=Silithid Snacks", "=ds=" .. AL["Quest"] .. "" };
+ { 21, "s966426", "100598", "=q1=Hydra Scale Soups", "=ds=" .. AL["Quest"] .. "" };
+ { 22, "s966425", "100597", "=q1=Ghostly Goulashs", "=ds=" .. AL["Quest"] .. "" };
+ { 23, "s966398", "100583", "=q1=Seared Cunning Carps", "=ds=" .. AL["Drop"] .. "" };
+ { 24, "s43772", "33874", "=q1=Kibler's Bits", "=ds=" .. AL["Drop"] .. "" };
+ { 25, "s33284", "27655", "=q1=Ravager Dog", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Hellfire Peninsula"] };
+ { 26, "s43758", "33866", "=q1=Stormchops", "=ds=" .. AL["Drop"] .. "" };
+ };
+};
+
+------------------
+--- Enchanting ---
+------------------
+
+AtlasLoot_Data["EnchantingTBC"] = {
+ Name = ENCHANTING;
+ Type = "CraftingNoBF";
+ {
+ Name = AL["Enchant Boots"];
+ { 1, "s27954", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Surefooted", "=ds=#sr# 370" };
+ { 2, "s34008", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Boar's Speed", "=ds=#sr# 360" };
+ { 3, "s34007", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Cat's Swiftness", "=ds=#sr# 360" };
+ { 4, "s27951", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Dexterity", "=ds=#sr# 340" };
+ { 5, "s27950", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Fortitude", "=ds=#sr# 320" };
+ { 6, "s27948", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Vitality", "=ds=#sr# 305" };
+ };
+ {
+ Name = AL["Enchant Bracer"];
+ { 1, "s27917", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Spellpower", "=ds=#sr# 360" };
+ { 2, "s27914", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Fortitude", "=ds=#sr# 350" };
+ { 3, "s27913", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Restore Mana Prime", "=ds=#sr# 335" };
+ { 4, "s27911", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Healing", "=ds=#sr# 325" };
+ { 5, "s27906", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Defense", "=ds=#sr# 320" };
+ { 6, "s27905", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Stats", "=ds=#sr# 315" };
+ { 7, "s27899", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Brawn", "=ds=#sr# 305" };
+ { 8, "s34001", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Intellect", "=ds=#sr# 305" };
+ { 9, "s34002", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Assault", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Enchant Chest"];
+ { 1, "s46594", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Defense", "=ds=#sr# 360" };
+ { 2, "s27960", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Stats", "=ds=#sr# 345" };
+ { 3, "s33992", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Resilience", "=ds=#sr# 345" };
+ { 4, "s33990", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Spirit", "=ds=#sr# 320" };
+ { 5, "s27957", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Health", "=ds=#sr# 315" };
+ };
+ {
+ Name = AL["Enchant Cloak"];
+ { 1, "s47051", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Steelweave", "=ds=#sr# 375" };
+ { 2, "s351501", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Crushing Wave", "=ds=#sr# 375" };
+ { 3, "s351530", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Phoenix Fire", "=ds=#sr# 375" };
+ { 4, "s34005", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Arcane Resistance", "=ds=#sr# 350" };
+ { 5, "s34006", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Shadow Resistance", "=ds=#sr# 350" };
+ { 6, "s27962", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Major Resistance", "=ds=#sr# 330" };
+ { 7, "s34003", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Spell Penetration", "=ds=#sr# 325" };
+ { 8, "s34004", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Agility", "=ds=#sr# 310" };
+ { 9, "s27961", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Major Armor", "=ds=#sr# 310" };
+ { 10, "s25082", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Nature Resistance", "=ds=#sr# 300" };
+ { 11, "s25083", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Stealth", "=ds=#sr# 300" };
+ { 12, "s25084", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Subtlety", "=ds=#sr# 300" };
+ { 13, "s25086", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Dodge", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Enchant Gloves"];
+ { 1, "s44592", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Exceptional Spellpower", "=ds=" .. AL["Trainer"] };
+ { 2, "s33997", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Spellpower", "=ds=#sr# 360" };
+ { 3, "s33994", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Spell Strike", "=ds=#sr# 360" };
+ { 4, "s33999", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Healing", "=ds=#sr# 350" };
+ { 5, "s33995", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Strength", "=ds=#sr# 340" };
+ { 6, "s33996", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Assault", "=ds=#sr# 310" };
+ { 7, "s33993", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Blasting", "=ds=#sr# 305" };
+ { 8, "s25080", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Superior Agility", "=ds=#sr# 300" };
+ { 9, "s25072", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Threat", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Enchant Ring"];
+ { 1, "s27927", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Stats", "=ds=#sr# 375" };
+ { 2, "s27926", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Healing Power", "=ds=#sr# 370" };
+ { 3, "s27924", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Spellpower", "=ds=#sr# 360" };
+ { 4, "s27920", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Striking", "=ds=#sr# 360" };
+ };
+ {
+ Name = AL["Enchant Shield"];
+ { 1, "s27947", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Resistance", "=ds=#sr# 360" };
+ { 2, "s27946", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Shield Block", "=ds=#sr# 340" };
+ { 3, "s44383", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Resilience", "=ds=#sr# 330" };
+ { 4, "s27945", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Intellect", "=ds=#sr# 325" };
+ { 5, "s34009", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Major Stamina", "=ds=#sr# 325" };
+ { 6, "s27944", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Tough Shield", "=ds=#sr# 310" };
+ };
+ {
+ Name = AL["Enchant 2H Weapon"];
+ { 1, "s27977", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Major Agility", "=ds=#sr# 360" };
+ { 2, "s27971", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Savagery", "=ds=#sr# 350" };
+ };
+ {
+ Name = AL["Enchant Weapon"];
+ { 1, "s351535", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Witchdoctor", "=ds=#sr# 375" };
+ { 2, "s42974", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Executioner", "=ds=#sr# 375" };
+ { 3, "s820034", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Undaunted Might", "=ds=#sr# 375" };
+ { 4, "s359012", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Faith", "=ds=#sr# 375" };
+ { 5, "s27984", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Mongoose", "=ds=#sr# 375" };
+ { 6, "s27982", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Soulfrost", "=ds=#sr# 375" };
+ { 7, "s27981", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Sunfire", "=ds=#sr# 375" };
+ { 8, "s28004", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Battlemaster", "=ds=#sr# 360" };
+ { 9, "s28003", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Spellsurge", "=ds=#sr# 360" };
+ { 10, "s46578", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Deathfrost", "=ds=#sr# 350" };
+ { 11, "s34010", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Healing", "=ds=#sr# 350" };
+ { 12, "s27975", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Spellpower", "=ds=#sr# 350" };
+ { 13, "s27972", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Potency", "=ds=#sr# 350" };
+ { 14, "s42620", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Greater Agility", "=ds=#sr# 350" };
+ { 15, "s27968", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Intellect", "=ds=#sr# 340" };
+ { 16, "s27967", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Striking", "=ds=#sr# 340" };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s32667", "22463", "=q3=Runed Eternium Rod", "=ds=#sr# 375" };
+ { 2, "s45765", "22449", "=q3=Void Shatter", "=ds=#sr# 360" };
+ { 3, "s42615", "22448", "=q3=Small Prismatic Shard", "=ds=#sr# 335" };
+ { 4, "s28022", "22449", "=q3=Large Prismatic Shard", "=ds=#sr# 335" };
+ { 5, "s28027", "22460", "=q3=Prismatic Sphere", "=ds=#sr# 325" };
+ { 6, "s42613", "22448", "=q3=Nexus Transformation", "=ds=#sr# 300" };
+ { 7, "s15596", "11811", "=q3=Smoking Heart of the Mountain", "=ds=#sr# 265" };
+ { 8, "s32665", "22462", "=q2=Runed Adamantite Rod", "=ds=#sr# 350" };
+ { 9, "s28019", "22522", "=q1=Superior Wizard Oil", "=ds=#sr# 340" };
+ { 10, "s28016", "22521", "=q1=Superior Mana Oil", "=ds=#sr# 310" };
};
};
- -------------------
- --- Engineering ---
- -------------------
+-------------------
+--- Engineering ---
+-------------------
- AtlasLoot_Data["EngineeringTBC"] = {
- Name = ENGINEERING;
- Type = "Crafting";
- {
- Name = AL["Ammunition"];
- { 1, "s43676", "20475", "=q1=Adamantite Arrow Maker", "=ds=#sr# 335"};
- { 2, "s30347", "34504", "=q1=Adamantite Shell Machine", "=ds=#sr# 335"};
- { 3, "s30346", "23772", "=q2=Fel Iron Shells", "=ds=#sr# 310"};
- };
- {
- Name = BabbleInventory["Armor"];
- { 1, "s46111", "34847", "=q4=Annihilator Holo-Gogs", "=ds=#sr# 375"};
- { 2, "s30565", "23838", "=q4=Foreman's Enchanted Helmet", "=ds=#sr# 375"};
- { 3, "s30566", "23839", "=q4=Foreman's Reinforced Helmet", "=ds=#sr# 375"};
- { 4, "s30575", "23829", "=q4=Gnomish Battle Goggles", "=ds=#sr# 375"};
- { 5, "s30574", "23828", "=q4=Gnomish Power Goggles", "=ds=#sr# 375"};
- { 6, "s46115", "34357", "=q4=Hard Khorium Goggles", "=ds=#sr# 375"};
- { 7, "s46109", "35182", "=q4=Hyper-Magnified Moon Specs", "=ds=#sr# 375"};
- { 8, "s46107", "35185", "=q4=Justicebringer 3000 Specs", "=ds=#sr# 375"};
- { 9, "s46112", "34355", "=q4=Lightning Etched Specs", "=ds=#sr# 375"};
- { 10, "s46114", "34354", "=q4=Mayhem Projection Goggles", "=ds=#sr# 375"};
- { 11, "s46108", "35181", "=q4=Powerheal 9000 Lens", "=ds=#sr# 375"};
- { 12, "s46110", "35184", "=q4=Primal-Attuned Goggles", "=ds=#sr# 375"};
- { 13, "s46116", "34353", "=q4=Quad Deathblow X44 Goggles", "=ds=#sr# 375"};
- { 14, "s46113", "34356", "=q4=Surestrike Goggles v3.0", "=ds=#sr# 375"};
- { 15, "s46106", "35183", "=q4=Wonderheal XT68 Shades", "=ds=#sr# 375"};
- { 16, "s41317", "32478", "=q4=Deathblow X11 Goggles", "=ds=#sr# 350"};
- { 17, "s41320", "32494", "=q4=Destruction Holo-gogs", "=ds=#sr# 350"};
- { 18, "s40274", "32461", "=q4=Furious Gizmatic Goggles", "=ds=#sr# 350"};
- { 19, "s41315", "32476", "=q4=Gadgetstorm Goggles", "=ds=#sr# 350"};
- { 20, "s41311", "32472", "=q4=Justicebringer 2000 Specs", "=ds=#sr# 350"};
- { 21, "s41316", "32475", "=q4=Living Replicator Specs", "=ds=#sr# 350"};
- { 22, "s41319", "32480", "=q4=Magnified Moon Specs", "=ds=#sr# 350"};
- };
- {
- Name = BabbleInventory["Armor"];
- { 1, "s30325", "23763", "=q3=Hyper-Vision Goggles", "=ds=#sr# 360"};
- { 2, "s30556", "23824", "=q3=Rocket Boots Xtreme", "=ds=#sr# 355"};
- { 3, "s46697", "35581", "=q3=Rocket Boots Xtreme Lite", "=ds=#sr# 355"};
- { 4, "s30563", "23836", "=q3=Goblin Rocket Launcher", "=ds=#sr# 350"};
- { 5, "s30570", "23825", "=q3=Nigh-Invulnerability Belt", "=ds=#sr# 350"};
- { 6, "s30318", "23762", "=q3=Ultra-Spectropic Detection Goggles", "=ds=#sr# 350"};
- { 7, "s30316", "23758", "=q3=Cogspinner Goggles", "=ds=#sr# 340"};
- { 8, "s30569", "23835", "=q3=Gnomish Poultryizer", "=ds=#sr# 340"};
- { 9, "s30317", "23761", "=q3=Power Amplification Goggles", "=ds=#sr# 340"};
- };
- {
- Name = AL["Explosives"];
- { 1, "s30547", "23819", "=q1=Elemental Seaforium Charge", "=ds=#sr# 350"};
- { 2, "s30560", "23827", "=q1=Super Sapper Charge", "=ds=#sr# 340"};
- { 3, "s39973", "32413", "=q1=Frost Grenades", "=ds=#sr# 335"};
- { 4, "s30311", "23737", "=q1=Adamantite Grenade", "=ds=#sr# 325"};
- { 5, "s30558", "23826", "=q1=The Bigger One", "=ds=#sr# 325"};
- { 6, "s30310", "23736", "=q1=Fel Iron Bomb", "=ds=#sr# 300"};
- };
- {
- Name = AL["Item Enhancements"];
- { 1, "s30334", "23766", "=q3=Stabilized Eternium Scope", "=ds=#sr# 375"};
- { 2, "s30332", "23765", "=q3=Khorium Scope", "=ds=#sr# 360"};
- { 3, "s30329", "23764", "=q2=Adamantite Scope", "=ds=#sr# 335"};
- { 4, "s22793", "18283", "=q3=Biznicks 247x128 Accurascope", "=ds=#sr# 300"};
- };
- {
- Name = AL["Miscellaneous"];
- { 1, "s44157", "34061", "=q4=Turbo-Charged Flying Machine", "=ds=#sr# 375"};
- { 2, "s44155", "34060", "=q3=Flying Machine", "=ds=#sr# 350"};
- { 3, "s30348", "23774", "=q2=Fel Iron Toolbox", "=ds=#sr# 325"};
- { 4, "s30337", "23767", "=q2=Crashin' Thrashin' Robot", "=ds=#sr# 325"};
- { 5, "s56459", "40892", "=q1=Hammer Pick", "=ds=#sr# 375" };
- { 6, "s44391", "34113", "=q1=Field Repair Bot 110G", "=ds=#sr# 360"};
- { 7, "s30552", "33093", "=q1=Mana Potion Injector", "=ds=#sr# 345"};
- { 8, "s30344", "23771", "=q1=Green Smoke Flare", "=ds=#sr# 335"};
- { 9, "s32814", "25886", "=q1=Purple Smoke Flare", "=ds=#sr# 335"};
- { 10, "s30341", "23768", "=q1=White Smoke Flare", "=ds=#sr# 335"};
- { 11, "s30551", "33092", "=q1=Healing Potion Injector", "=ds=#sr# 330"};
- { 12, "s30568", "23841", "=q1=Gnomish Flame Turret", "=ds=#sr# 325"};
- { 13, "s30548", "23821", "=q1=Zapthrottle Mote Extractor", "=ds=#sr# 305"};
- };
- {
- Name = AL["Reagents"];
- { 1, "s30309", "23787", "=q1=Felsteel Stabilizer", "=ds=#sr# 340"};
- { 2, "s30307", "23785", "=q1=Hardened Adamantite Tube", "=ds=#sr# 340"};
- { 3, "s30308", "23786", "=q1=Khorium Power Core", "=ds=#sr# 340"};
- { 4, "s39971", "32423", "=q1=Icy Blasting Primers", "=ds=#sr# 335"};
- { 5, "s30306", "23784", "=q1=Adamantite Frame", "=ds=#sr# 325"};
- { 6, "s30305", "23783", "=q1=Handful of Fel Iron Bolts", "=ds=#sr# 300"};
- { 7, "s30303", "23781", "=q1=Elemental Blasting Powder", "=ds=#sr# 300"};
- { 8, "s30304", "23782", "=q1=Fel Iron Casing", "=ds=#sr# 300"};
- };
- {
- Name = BabbleInventory["Weapon"];
- { 1, "s41307", "32756", "=q4=Gyro-balanced Khorium Destroyer", "=ds=#sr# 375"};
- { 2, "s30315", "23748", "=q3=Ornate Khorium Rifle", "=ds=#sr# 375"};
- { 3, "s30314", "23747", "=q3=Felsteel Boomstick", "=ds=#sr# 360"};
- { 4, "s30313", "23746", "=q2=Adamantite Rifle", "=ds=#sr# 350"};
- { 5, "s30312", "23742", "=q2=Fel Iron Musket", "=ds=#sr# 320"};
- };
- {
- Name = GNOMISH;
- { 1, "s30570", "23825", "=q3=Nigh-Invulnerability Belt", "=ds=#sr# 350"};
- { 2, "s30569", "23835", "=q3=Gnomish Poultryizer", "=ds=#sr# 340"};
- { 3, "s36955", "30544", "=q2=Ultrasafe Transporter - Toshley's Station", "=ds=#sr# 350"};
- };
- {
- Name = GOBLIN;
- { 1, "s30563", "23836", "=q3=Goblin Rocket Launcher", "=ds=#sr# 350"};
- { 2, "s36954", "30542", "=q2=Dimensional Ripper - Area 52", "=ds=#sr# 350"};
- };
+AtlasLoot_Data["EngineeringTBC"] = {
+ Name = ENGINEERING;
+ Type = "Crafting";
+ {
+ Name = AL["Ammunition"];
+ { 1, "s43676", "20475", "=q1=Adamantite Arrow Maker", "=ds=#sr# 335" };
+ { 2, "s30347", "34504", "=q1=Adamantite Shell Machine", "=ds=#sr# 335" };
+ { 3, "s30346", "23772", "=q2=Fel Iron Shells", "=ds=#sr# 310" };
};
-
- -----------------
- --- First Aid ---
- -----------------
-
- AtlasLoot_Data["FirstAid"] = {
- Name = FIRSTAID;
- {
- Name = FIRSTAID;
- { 1, "s45546", "34722", "=q1=Heavy Frostweave Bandage", "=ds=#sr# 400"};
- { 2, "s45545", "34721", "=q1=Frostweave Bandage", "=ds=#sr# 375"};
- { 3, "s27033", "21991", "=q1=Heavy Netherweave Bandage", "=ds=#sr# 360"};
- { 4, "s27032", "21990", "=q1=Netherweave Bandage", "=ds=#sr# 330"};
- { 5, "s23787", "19440", "=q1=Powerful Anti-Venom", "=ds=#sr# 300"};
- { 6, "s18630", "14530", "=q1=Heavy Runecloth Bandage", "=ds=#sr# 290"};
- { 7, "s18629", "14529", "=q1=Runecloth Bandage", "=ds=#sr# 260"};
- { 8, "s10841", "8545", "=q1=Heavy Mageweave Bandage", "=ds=#sr# 240"};
- { 9, "s10840", "8544", "=q1=Mageweave Bandage", "=ds=#sr# 210"};
- { 10, "s7929", "6451", "=q1=Heavy Silk Bandage", "=ds=#sr# 180"};
- { 11, "s7928", "6450", "=q1=Silk Bandage", "=ds=#sr# 150"};
- { 12, "s7935", "6453", "=q1=Strong Anti-Venom", "=ds=#sr# 130"};
- { 13, "s3278", "3531", "=q1=Heavy Wool Bandage", "=ds=#sr# 115"};
- { 14, "s3277", "3530", "=q1=Wool Bandage", "=ds=#sr# 80"};
- { 15, "s7934", "6452", "=q1=Anti-Venom", "=ds=#sr# 80"};
- { 16, "s3276", "2581", "=q1=Heavy Linen Bandage", "=ds=#sr# 40"};
- { 17, "s3275", "1251", "=q1=Linen Bandage", "=ds=#sr# 1"};
- };
+ {
+ Name = BabbleInventory["Armor"];
+ { 1, "s46111", "34847", "=q4=Annihilator Holo-Gogs", "=ds=#sr# 375" };
+ { 2, "s30565", "23838", "=q4=Foreman's Enchanted Helmet", "=ds=#sr# 375" };
+ { 3, "s30566", "23839", "=q4=Foreman's Reinforced Helmet", "=ds=#sr# 375" };
+ { 4, "s30575", "23829", "=q4=Gnomish Battle Goggles", "=ds=#sr# 375" };
+ { 5, "s30574", "23828", "=q4=Gnomish Power Goggles", "=ds=#sr# 375" };
+ { 6, "s46115", "34357", "=q4=Hard Khorium Goggles", "=ds=#sr# 375" };
+ { 7, "s46109", "35182", "=q4=Hyper-Magnified Moon Specs", "=ds=#sr# 375" };
+ { 8, "s46107", "35185", "=q4=Justicebringer 3000 Specs", "=ds=#sr# 375" };
+ { 9, "s46112", "34355", "=q4=Lightning Etched Specs", "=ds=#sr# 375" };
+ { 10, "s46114", "34354", "=q4=Mayhem Projection Goggles", "=ds=#sr# 375" };
+ { 11, "s46108", "35181", "=q4=Powerheal 9000 Lens", "=ds=#sr# 375" };
+ { 12, "s46110", "35184", "=q4=Primal-Attuned Goggles", "=ds=#sr# 375" };
+ { 13, "s46116", "34353", "=q4=Quad Deathblow X44 Goggles", "=ds=#sr# 375" };
+ { 14, "s46113", "34356", "=q4=Surestrike Goggles v3.0", "=ds=#sr# 375" };
+ { 15, "s46106", "35183", "=q4=Wonderheal XT68 Shades", "=ds=#sr# 375" };
+ { 16, "s41317", "32478", "=q4=Deathblow X11 Goggles", "=ds=#sr# 350" };
+ { 17, "s41320", "32494", "=q4=Destruction Holo-gogs", "=ds=#sr# 350" };
+ { 18, "s40274", "32461", "=q4=Furious Gizmatic Goggles", "=ds=#sr# 350" };
+ { 19, "s41315", "32476", "=q4=Gadgetstorm Goggles", "=ds=#sr# 350" };
+ { 20, "s41311", "32472", "=q4=Justicebringer 2000 Specs", "=ds=#sr# 350" };
+ { 21, "s41316", "32475", "=q4=Living Replicator Specs", "=ds=#sr# 350" };
+ { 22, "s41319", "32480", "=q4=Magnified Moon Specs", "=ds=#sr# 350" };
};
-
- ---------------------
- --- Jewelcrafting ---
- ---------------------
-
- AtlasLoot_Data["JewelcraftingTBC"] = {
- Name = JEWELCRAFTING;
- Type = "Crafting";
- {
- Name = AL["Red Gems"];
- { 1, "s39705", "32193", "=q4=Bold Crimson Spinel", "=ds=#sr# 375"};
- { 2, "s39712", "32197", "=q4=Bright Crimson Spinel", "=ds=#sr# 375"};
- { 3, "s39706", "32194", "=q4=Delicate Crimson Spinel", "=ds=#sr# 375"};
- { 4, "s39714", "32199", "=q4=Flashing Crimson Spinel", "=ds=#sr# 375"};
- { 5, "s39711", "32196", "=q4=Runed Crimson Spinel", "=ds=#sr# 375"};
- { 6, "s39713", "32198", "=q4=Subtle Crimson Spinel", "=ds=#sr# 375"};
- { 7, "s39710", "32195", "=q4=Teardrop Crimson Spinel", "=ds=#sr# 375"};
- { 8, "s42589", "33131", "=q4=Crimson Sun", "=ds=#sr# 360"};
- { 9, "s42558", "33133", "=q4=Don Julio's Heart", "=ds=#sr# 360"};
- { 10, "s42588", "33134", "=q4=Kailee's Rose", "=ds=#sr# 360"};
- { 16, "s31084", "24027", "=q3=Bold Living Ruby", "=ds=#sr# 350"};
- { 17, "s31089", "24031", "=q3=Bright Living Ruby", "=ds=#sr# 350"};
- { 18, "s31085", "24028", "=q3=Delicate Living Ruby", "=ds=#sr# 350"};
- { 19, "s31091", "24036", "=q3=Flashing Living Ruby", "=ds=#sr# 350"};
- { 20, "s31088", "24030", "=q3=Runed Living Ruby", "=ds=#sr# 350"};
- { 21, "s31090", "24032", "=q3=Subtle Living Ruby", "=ds=#sr# 350"};
- { 22, "s31087", "24029", "=q3=Teardrop Living Ruby", "=ds=#sr# 350"};
- { 23, "s28907", "23097", "=q2=Delicate Blood Garnet", "=ds=#sr# 325"};
- { 24, "s28906", "23096", "=q2=Runed Blood Garnet", "=ds=#sr# 315"};
- { 25, "s28905", "23095", "=q2=Bold Blood Garnet", "=ds=#sr# 305"};
- { 26, "s34590", "28595", "=q2=Bright Blood Garnet", "=ds=#sr# 305"};
- { 27, "s28903", "23094", "=q2=Teardrop Blood Garnet", "=ds=#sr# 300"};
- };
- {
- Name = AL["Blue Gems"];
- { 1, "s39717", "32202", "=q4=Lustrous Empyrean Sapphire", "=ds=#sr# 375"};
- { 2, "s39715", "32200", "=q4=Solid Empyrean Sapphire", "=ds=#sr# 375"};
- { 3, "s39716", "32201", "=q4=Sparkling Empyrean Sapphire", "=ds=#sr# 375"};
- { 4, "s39718", "32203", "=q4=Stormy Empyrean Sapphire", "=ds=#sr# 375"};
- { 5, "s42590", "33135", "=q4=Falling Star", "=ds=#sr# 360"};
- { 6, "s31094", "24037", "=q3=Lustrous Star of Elune", "=ds=#sr# 350"};
- { 7, "s31092", "24033", "=q3=Solid Star of Elune", "=ds=#sr# 350"};
- { 8, "s31149", "24035", "=q3=Sparkling Star of Elune", "=ds=#sr# 350"};
- { 9, "s31095", "24039", "=q3=Stormy Star of Elune", "=ds=#sr# 350"};
- { 10, "s28957", "23121", "=q2=Lustrous Azure Moonstone", "=ds=#sr# 325"};
- { 11, "s28955", "23120", "=q2=Stormy Azure Moonstone", "=ds=#sr# 315"};
- { 12, "s28953", "23119", "=q2=Sparkling Azure Moonstone", "=ds=#sr# 305"};
- { 13, "s28950", "23118", "=q2=Solid Azure Moonstone", "=ds=#sr# 300"};
- };
- {
- Name = AL["Yellow Gems"];
- { 1, "s39719", "32204", "=q4=Brilliant Lionseye", "=ds=#sr# 375"};
- { 2, "s39722", "32207", "=q4=Gleaming Lionseye", "=ds=#sr# 375"};
- { 3, "s39725", "32210", "=q4=Great Lionseye", "=ds=#sr# 375"};
- { 4, "s39724", "32209", "=q4=Mystic Lionseye", "=ds=#sr# 375"};
- { 5, "s47056", "35761", "=q4=Quick Lionseye", "=ds=#sr# 375"};
- { 6, "s39721", "32206", "=q4=Rigid Lionseye", "=ds=#sr# 375"};
- { 7, "s39720", "32205", "=q4=Smooth Lionseye", "=ds=#sr# 375"};
- { 8, "s39723", "32208", "=q4=Thick Lionseye", "=ds=#sr# 375"};
- { 9, "s42592", "33140", "=q4=Blood of Amber", "=ds=#sr# 360"};
- { 10, "s42593", "33144", "=q4=Facet of Eternity", "=ds=#sr# 360"};
- { 11, "s42591", "33143", "=q4=Stone of Blades", "=ds=#sr# 360"};
- { 16, "s31096", "24047", "=q3=Brilliant Dawnstone", "=ds=#sr# 350"};
- { 17, "s31099", "24050", "=q3=Gleaming Dawnstone", "=ds=#sr# 350"};
- { 18, "s39452", "31861", "=q3=Great Dawnstone", "=ds=#sr# 350"};
- { 19, "s31101", "24053", "=q3=Mystic Dawnstone", "=ds=#sr# 350"};
- { 20, "s46403", "35315", "=q3=Quick Dawnstone", "=ds=#sr# "..AL["Vendor"]};
- { 21, "s31098", "24051", "=q3=Rigid Dawnstone", "=ds=#sr# 350"};
- { 22, "s31097", "24048", "=q3=Smooth Dawnstone", "=ds=#sr# 350"};
- { 23, "s31100", "24052", "=q3=Thick Dawnstone", "=ds=#sr# 350"};
- { 24, "s39451", "31860", "=q2=Great Golden Draenite", "=ds=#sr# 325"};
- { 25, "s28948", "23116", "=q2=Rigid Golden Draenite", "=ds=#sr# 325"};
- { 26, "s34069", "28290", "=q2=Smooth Golden Draenite", "=ds=#sr# 325"};
- { 27, "s28947", "23115", "=q2=Thick Golden Draenite", "=ds=#sr# 315"};
- { 28, "s28944", "23114", "=q2=Gleaming Golden Draenite", "=ds=#sr# 305"};
- { 29, "s28938", "23113", "=q2=Brilliant Golden Draenite", "=ds=#sr# 300"};
- };
- {
- Name = AL["Green Gems"];
- { 1, "s39741", "32225", "=q4=Dazzling Seaspray Emerald", "=ds=#sr# 375"};
- { 2, "s39739", "32223", "=q4=Enduring Seaspray Emerald", "=ds=#sr# 375"};
- { 3, "s47053", "35759", "=q4=Forceful Seaspray Emerald", "=ds=#sr# 375"};
- { 4, "s39742", "32226", "=q4=Jagged Seaspray Emerald", "=ds=#sr# 375"};
- { 5, "s39740", "32224", "=q4=Radiant Seaspray Emerald", "=ds=#sr# 375"};
- { 6, "s47054", "35758", "=q4=Steady Seaspray Emerald", "=ds=#sr# 375"};
- { 7, "s31112", "24065", "=q3=Dazzling Talasite", "=ds=#sr# 350"};
- { 8, "s31110", "24062", "=q3=Enduring Talasite", "=ds=#sr# 350"};
- { 9, "s46405", "35318", "=q3=Forceful Talasite", "=ds=#sr# "..AL["Vendor"]};
- { 10, "s31113", "24067", "=q3=Jagged Talasite", "=ds=#sr# 350"};
- { 11, "s31111", "24066", "=q3=Radiant Talasite", "=ds=#sr# 350"};
- { 12, "s43493", "33782", "=q3=Steady Talasite", "=ds=#sr# 350"};
- { 16, "s28924", "23106", "=q2=Dazzling Deep Peridot", "=ds=#sr# 325"};
- { 17, "s28918", "23105", "=q2=Enduring Deep Peridot", "=ds=#sr# 315"};
- { 18, "s28917", "23104", "=q2=Jagged Deep Peridot", "=ds=#sr# 305"};
- { 19, "s28916", "23103", "=q2=Radiant Deep Peridot", "=ds=#sr# 300"};
- };
- {
- Name = AL["Orange Gems"];
- { 1, "s39736", "32220", "=q4=Glinting Pyrestone", "=ds=#sr# 375"};
- { 2, "s39733", "32217", "=q4=Inscribed Pyrestone", "=ds=#sr# 375"};
- { 3, "s39735", "32219", "=q4=Luminous Pyrestone", "=ds=#sr# 375"};
- { 4, "s39734", "32218", "=q4=Potent Pyrestone", "=ds=#sr# 375"};
- { 5, "s47055", "35760", "=q4=Reckless Pyrestone", "=ds=#sr# 375"};
- { 6, "s39737", "32221", "=q4=Veiled Pyrestone", "=ds=#sr# 375"};
- { 7, "s39738", "32222", "=q4=Wicked Pyrestone", "=ds=#sr# 375"};
- { 8, "s31109", "24061", "=q3=Glinting Noble Topaz", "=ds=#sr# 350"};
- { 9, "s31106", "24058", "=q3=Inscribed Noble Topaz", "=ds=#sr# 350"};
- { 10, "s31108", "24060", "=q3=Luminous Noble Topaz", "=ds=#sr# 350"};
- { 11, "s31107", "24059", "=q3=Potent Noble Topaz", "=ds=#sr# 350"};
- { 12, "s46404", "35316", "=q3=Reckless Noble Topaz", "=ds=#sr# "..AL["Vendor"]};
- { 13, "s39470", "31867", "=q3=Veiled Noble Topaz", "=ds=#sr# 350"};
- { 14, "s39471", "31868", "=q3=Wicked Noble Topaz", "=ds=#sr# 350"};
- { 21, "s28915", "23101", "=q2=Potent Flame Spessarite", "=ds=#sr# 325"};
- { 16, "s39466", "31866", "=q2=Veiled Flame Spessarite", "=ds=#sr# 325"};
- { 17, "s39467", "31869", "=q2=Wicked Flame Spessarite", "=ds=#sr# 325"};
- { 18, "s28914", "23100", "=q2=Glinting Flame Spessarite", "=ds=#sr# 315"};
- { 19, "s28912", "23099", "=q2=Luminous Flame Spessarite", "=ds=#sr# 305"};
- { 20, "s28910", "23098", "=q2=Inscribed Flame Spessarite", "=ds=#sr# 300"};
- };
- {
- Name = AL["Purple Gems"];
- { 1, "s39729", "32213", "=q4=Balanced Shadowsong Amethyst", "=ds=#sr# 375"};
- { 2, "s39731", "32215", "=q4=Glowing Shadowsong Amethyst", "=ds=#sr# 375"};
- { 3, "s39730", "32214", "=q4=Infused Shadowsong Amethyst", "=ds=#sr# 375"};
- { 4, "s48789", "37503", "=q4=Purified Shadowsong Amethyst", "=ds="..AL["Vendor"]..""};
- { 5, "s39732", "32216", "=q4=Royal Shadowsong Amethyst", "=ds=#sr# 375"};
- { 6, "s39728", "32212", "=q4=Shifting Shadowsong Amethyst", "=ds=#sr# 375"};
- { 7, "s39727", "32211", "=q4=Sovereign Shadowsong Amethyst", "=ds=#sr# 375"};
- { 8, "s39463", "31863", "=q3=Balanced Nightseye", "=ds=#sr# 350"};
- { 9, "s31104", "24056", "=q3=Glowing Nightseye", "=ds=#sr# 350"};
- { 10, "s39462", "31865", "=q3=Infused Nightseye", "=ds=#sr# 350"};
- { 11, "s46803", "35707", "=q3=Regal Nightseye", "=ds=#sr# 350"};
- { 12, "s31105", "24057", "=q3=Royal Nightseye", "=ds=#sr# 350"};
- { 13, "s31103", "24055", "=q3=Shifting Nightseye", "=ds=#sr# 350"};
- { 14, "s31102", "24054", "=q3=Sovereign Nightseye", "=ds=#sr# 350"};
- { 15, "s41429", "32836", "=q3=Purified Shadow Pearl", "=ds=#sr# 350"};
- { 16, "s39455", "31862", "=q2=Balanced Shadow Draenite", "=ds=#sr# 325"};
- { 17, "s39458", "31864", "=q2=Infused Shadow Draenite", "=ds=#sr# 325"};
- { 18, "s28936", "23111", "=q2=Sovereign Shadow Draenite", "=ds=#sr# 325"};
- { 19, "s28933", "23110", "=q2=Shifting Shadow Draenite", "=ds=#sr# 315"};
- { 20, "s28927", "23109", "=q2=Royal Shadow Draenite", "=ds=#sr# 305"};
- { 21, "s28925", "23108", "=q2=Glowing Shadow Draenite", "=ds=#sr# 300"};
- };
- {
- Name = AL["Meta Gems"];
- { 1, "s46601", "35503", "=q3=Ember Skyfire Diamond", "=ds=#sr# 370"};
- { 2, "s44794", "34220", "=q3=Chaotic Skyfire Diamond", "=ds=#sr# 365"};
- { 3, "s32871", "25890", "=q3=Destructive Skyfire Diamond", "=ds=#sr# 365"};
- { 4, "s32874", "25895", "=q3=Enigmatic Skyfire Diamond", "=ds=#sr# 365"};
- { 5, "s32872", "25893", "=q3=Mystical Skyfire Diamond", "=ds=#sr# 365"};
- { 6, "s32873", "25894", "=q3=Swift Skyfire Diamond", "=ds=#sr# 365"};
- { 7, "s39963", "32410", "=q3=Thundering Skyfire Diamond", "=ds=#sr# 365"};
- { 16, "s46597", "35501", "=q3=Eternal Earthstorm Diamond", "=ds=#sr# 370"};
- { 17, "s32867", "25897", "=q3=Bracing Earthstorm Diamond", "=ds=#sr# 365"};
- { 18, "s32869", "25899", "=q3=Brutal Earthstorm Diamond", "=ds=#sr# 365"};
- { 19, "s32870", "25901", "=q3=Insightful Earthstorm Diamond", "=ds=#sr# 365"};
- { 20, "s32866", "25896", "=q3=Powerful Earthstorm Diamond", "=ds=#sr# 365"};
- { 21, "s39961", "32409", "=q3=Relentless Earthstorm Diamond", "=ds=#sr# 365"};
- { 22, "s32868", "25898", "=q3=Tenacious Earthstorm Diamond", "=ds=#sr# 365"};
- };
- {
- Name = AL["Prismatic Gems"];
- { 1, "s28028", "22459", "=q4=Void Sphere", "=ds="..GetSpellInfo(7411) };
- { 2, "s56531", "42702", "=q3=Enchanted Tear", "=ds="..AL["Trainer"] };
- { 3, "s28027", "22460", "=q3=Prismatic Sphere", "=ds="..GetSpellInfo(7411) };
- { 4, "s56530", "42701", "=q2=Enchanted Pearl", "=ds="..AL["Trainer"] };
- { 5, "s62941", "42701", "=q2=Prismatic Black Diamond", "=ds="..AL["Trainer"] };
- };
- {
- Name = AL["Trinkets"];
- { 1, "s46777", "35700", "=q4=Figurine - Crimson Serpent", "=ds=#sr# 375"};
- { 2, "s46775", "35693", "=q4=Figurine - Empyrean Tortoise", "=ds=#sr# 375"};
- { 3, "s46776", "35694", "=q4=Figurine - Khorium Boar", "=ds=#sr# 375"};
- { 4, "s46779", "35703", "=q4=Figurine - Seaspray Albatross", "=ds=#sr# 375"};
- { 5, "s46778", "35702", "=q4=Figurine - Shadowsong Panther", "=ds=#sr# 375"};
- { 6, "s56203", "42418", "=q3=Figurine - Emerald Boar", "=ds="..AL["Trainer"] };
- { 7, "s59759", "44063", "=q3=Figurine - Monarch Crab", "=ds="..AL["Trainer"] };
- { 8, "s56199", "42341", "=q3=Figurine - Ruby Hare", "=ds="..AL["Trainer"] };
- { 9, "s56202", "42413", "=q3=Figurine - Sapphire Owl", "=ds="..AL["Trainer"] };
- { 10, "s56201", "42395", "=q3=Figurine - Twilight Serpent", "=ds="..AL["Trainer"] };
- { 11, "s31080", "24125", "=q3=Figurine - Dawnstone Crab", "=ds=#sr# 370"};
- { 12, "s31079", "24124", "=q3=Figurine - Felsteel Boar", "=ds=#sr# 370"};
- { 13, "s31081", "24126", "=q3=Figurine - Living Ruby Serpent", "=ds=#sr# 370"};
- { 14, "s31083", "24128", "=q3=Figurine - Nightseye Panther", "=ds=#sr# 370"};
- { 15, "s31082", "24127", "=q3=Figurine - Talasite Owl", "=ds=#sr# 370"};
- { 16, "s26912", "21784", "=q3=Figurine - Black Diamond Crab", "=ds=#sr# 300"};
- { 17, "s26914", "21789", "=q3=Figurine - Dark Iron Scorpid", "=ds=#sr# 300"};
- { 18, "s26909", "21777", "=q2=Figurine - Emerald Owl", "=ds=#sr# 285"};
- { 19, "s26900", "21769", "=q2=Figurine - Ruby Serpent", "=ds=#sr# 260"};
- { 20, "s26882", "21763", "=q2=Figurine - Truesilver Boar", "=ds=#sr# 235"};
- { 21, "s26881", "21760", "=q2=Figurine - Truesilver Crab", "=ds=#sr# 225"};
- { 22, "s26873", "21756", "=q2=Figurine - Golden Hare", "=ds=#sr# 200"};
- { 23, "s26872", "21748", "=q2=Figurine - Jade Owl", "=ds=#sr# 200"};
- { 24, "s26875", "21758", "=q2=Figurine - Black Pearl Panther", "=ds=#sr# 215"};
- };
- {
- Name = AL["Rings"];
- { 1, "s31057", "24086", "=q3=Arcane Khorium Band", "=ds=#sr# 365"};
- { 2, "s31061", "24089", "=q3=Blazing Eternium Band", "=ds=#sr# 365"};
- { 3, "s31056", "24085", "=q3=Khorium Band of Leaves", "=ds=#sr# 360"};
- { 4, "s37855", "30825", "=q3=Ring of Arcane Shielding", "=ds=#sr# 360"};
- { 5, "s31060", "24088", "=q3=Delicate Eternium Ring", "=ds=#sr# 355"};
- { 6, "s31054", "24080", "=q3=Khorium Band of Frost", "=ds=#sr# 355"};
- { 7, "s31055", "24082", "=q3=Khorium Inferno Band", "=ds=#sr# 355"};
- { 8, "s31053", "24079", "=q3=Khorium Band of Shadows", "=ds=#sr# 350"};
- { 9, "s31058", "24087", "=q3=Heavy Felsteel Ring", "=ds=#sr# 345"};
- { 10, "s41415", "32774", "=q3=The Black Pearl", "=ds=#sr# 330"};
- { 11, "s41414", "32772", "=q3=Brilliant Pearl Band", "=ds=#sr# 325"};
- { 12, "s26916", "21779", "=q3=Band of Natural Fire", "=ds=#sr# 310"};
- { 13, "s26903", "21768", "=q3=Sapphire Signet", "=ds=#sr# 275"};
- { 14, "s26896", "21753", "=q3=Gem Studded Band", "=ds=#sr# 250"};
- { 15, "s26874", "20964", "=q3=Aquamarine Signet", "=ds=#sr# 210"};
- { 16, "s34959", "29158", "=q3=Truesilver Commander's Ring", "=ds=#sr# 200"};
- { 17, "s34955", "29157", "=q3=Golden Ring of Power", "=ds=#sr# 180"};
- { 18, "s37818", "30804", "=q3=Bronze Band of Force", "=ds=#sr# 65"};
- { 19, "s25305", "20826", "=q3=Heavy Silver Ring", "=ds=#sr# 90"};
- { 20, "s58146", "43249", "=q2=Shadowmight Ring", "=ds="..AL["Trainer"] };
- { 21, "s58145", "43248", "=q2=Stoneguard Band", "=ds="..AL["Trainer"] };
- { 22, "s56193", "42336", "=q2=Bloodstone Band", "=ds="..AL["Trainer"] };
- { 23, "s56194", "42337", "=q2=Sun Rock Ring", "=ds="..AL["Trainer"] };
- { 24, "s31052", "24078", "=q2=Heavy Adamantite Ring", "=ds=#sr# 335"};
- { 25, "s31050", "24076", "=q2=Azure Moonstone Ring", "=ds=#sr# 320"};
- { 26, "s31048", "24074", "=q2=Fel Iron Blood Ring", "=ds=#sr# 310"};
- { 27, "s31049", "24075", "=q2=Golden Draenite Ring", "=ds=#sr# 310"};
- { 28, "s34961", "29160", "=q2=Emerald Lion Ring", "=ds=#sr# 290"};
- { 29, "s26910", "21778", "=q2=Ring of Bitter Shadows", "=ds=#sr# 285"};
- { 30, "s34960", "29159", "=q2=Glowing Thorium Band", "=ds=#sr# 280"};
-
- };
- {
- Name = AL["Rings"];
- { 1, "s26907", "21775", "=q2=Onslaught Ring", "=ds=#sr# 280"};
- { 2, "s36526", "30422", "=q2=Diamond Focus Ring", "=ds=#sr# 265"};
- { 3, "s26902", "21767", "=q2=Simple Opal Ring", "=ds=#sr# 260"};
- { 4, "s26887", "21754", "=q2=The Aquamarine Ward", "=ds=#sr# 245"};
- { 5, "s26885", "21765", "=q2=Truesilver Healing Ring", "=ds=#sr# 240"};
- { 6, "s36525", "30421", "=q2=Red Ring of Destruction", "=ds=#sr# 230"};
- { 7, "s25621", "20961", "=q2=Citrine Ring of Rapid Healing", "=ds=#sr# 180"};
- { 8, "s25620", "20960", "=q2=Engraved Truesilver Ring", "=ds=#sr# 170"};
- { 9, "s25619", "20959", "=q2=The Jade Eye", "=ds=#sr# 170"};
- { 10, "s25617", "20958", "=q2=Blazing Citrine Ring", "=ds=#sr# 150"};
- { 11, "s25613", "20955", "=q2=Golden Dragon Ring", "=ds=#sr# 135"};
- { 12, "s25323", "20833", "=q2=Wicked Moonstone Ring", "=ds=#sr# 125"};
- { 13, "s36524", "30420", "=q2=Heavy Jade Ring", "=ds=#sr# 105"};
- { 14, "s25318", "20828", "=q2=Ring of Twilight Shadows", "=ds=#sr# 100"};
- { 15, "s25317", "20827", "=q2=Ring of Silver Might", "=ds=#sr# 80"};
- { 16, "s25287", "20823", "=q2=Gloom Band", "=ds=#sr# 70"};
- { 17, "s25284", "20820", "=q2=Simple Pearl Ring", "=ds=#sr# 60"};
- { 18, "s25490", "20907", "=q2=Solid Bronze Ring", "=ds=#sr# 50"};
- { 19, "s25280", "20818", "=q2=Elegant Silver Ring", "=ds=#sr# 50"};
- { 20, "s25283", "20821", "=q2=Inlaid Malachite Ring", "=ds=#sr# 30"};
- { 21, "s32179", "25439", "=q2=Tigerseye Band", "=ds=#sr# 20"};
- { 22, "s26926", "21932", "=q2=Heavy Copper Ring", "=ds=#sr# 5"};
- { 23, "s25493", "20906", "=q2=Braided Copper Ring", "=ds=#sr# 1"};
- { 24, "s26925", "21931", "=q2=Woven Copper Ring", "=ds=#sr# 1"};
- };
- {
- Name = AL["Necks"];
- { 1, "s31072", "24117", "=q3=Embrace of the Dawn", "=ds=#sr# 365"};
- { 2, "s31070", "24114", "=q3=Braided Eternium Chain", "=ds=#sr# 360"};
- { 3, "s31071", "24116", "=q3=Eye of the Night", "=ds=#sr# 360"};
- { 4, "s31062", "24092", "=q3=Pendant of Frozen Flame", "=ds=#sr# 360"};
- { 5, "s31065", "24097", "=q3=Pendant of Shadow's End", "=ds=#sr# 360"};
- { 6, "s31063", "24093", "=q3=Pendant of Thawing", "=ds=#sr# 360"};
- { 7, "s31066", "24098", "=q3=Pendant of the Null Rune", "=ds=#sr# 360"};
- { 8, "s31064", "24095", "=q3=Pendant of Withering", "=ds=#sr# 360"};
- { 9, "s31068", "24110", "=q3=Living Ruby Pendant", "=ds=#sr# 355"};
- { 10, "s31067", "24106", "=q3=Thick Felsteel Necklace", "=ds=#sr# 355"};
- { 11, "s40514", "32508", "=q3=Necklace of the Deep", "=ds=#sr# 340"};
- { 12, "s26915", "21792", "=q3=Necklace of the Diamond Tower", "=ds=#sr# 305"};
- { 13, "s26911", "21791", "=q3=Living Emerald Pendant", "=ds=#sr# 290"};
- { 14, "s26897", "21766", "=q3=Opal Necklace of Impact", "=ds=#sr# 250"};
- { 15, "s63743", "45627", "=q3=Amulet of Truesight", "=ds="};
- { 16, "s58142", "43245", "=q2=Crystal Chalcedony Amulet", "=ds="..AL["Trainer"] };
- { 17, "s58141", "43244", "=q2=Crystal Citrine Necklace", "=ds="..AL["Trainer"] };
- { 18, "s31051", "24077", "=q2=Thick Adamantite Necklace", "=ds=#sr# 335"};
- { 19, "s26908", "21790", "=q2=Sapphire Pendant of Winter Night", "=ds=#sr# 280"};
- };
- {
- Name = AL["Necks"];
- { 1, "s26883", "21764", "=q2=Ruby Pendant of Fire", "=ds=#sr# 235"};
- { 2, "s26876", "21755", "=q2=Aquamarine Pendant of the Warrior", "=ds=#sr# 220"};
- { 3, "s25622", "20967", "=q2=Citrine Pendant of Golden Healing", "=ds=#sr# 190"};
- { 4, "s25618", "20966", "=q2=Jade Pendant of Blasting", "=ds=#sr# 160"};
- { 5, "s25320", "20831", "=q2=Heavy Golden Necklace of Battle", "=ds=#sr# 150"};
- { 6, "s25610", "20950", "=q2=Pendant of the Agate Shield", "=ds=#sr# 120"};
- { 7, "s25339", "20830", "=q2=Amulet of the Moon", "=ds=#sr# 110"};
- { 8, "s25498", "20909", "=q2=Barbaric Iron Collar", "=ds=#sr# 110"};
- { 9, "s38175", "31154", "=q2=Bronze Torc", "=ds=#sr# 80"};
- { 10, "s36523", "30419", "=q2=Brilliant Necklace", "=ds=#sr# 75"};
- { 11, "s26927", "21933", "=q2=Thick Bronze Necklace", "=ds=#sr# 50"};
- { 12, "s26928", "21934", "=q2=Ornate Tigerseye Necklace", "=ds=#sr# 30"};
- { 13, "s32178", "25438", "=q2=Malachite Pendant", "=ds=#sr# 20"};
- };
- {
- Name = AL["Miscellaneous"];
- { 1, "s31078", "24123", "=q4=Circlet of Arcane Might", "=ds=#sr# 370"};
- { 2, "s31077", "24122", "=q4=Coronet of the Verdant Flame", "=ds=#sr# 370"};
- { 4, "s41418", "32776", "=q3=Crown of the Sea Witch", "=ds=#sr# 365"};
- { 5, "s47280", "35945", "=q3=Brilliant Glass", "=ds=#sr# 350"};
- { 6, "s38068", "31079", "=q3=Mercurial Adamantite", "=ds=#sr# 325"};
- { 7, "s26906", "21774", "=q3=Emerald Crown of Destruction", "=ds=#sr# 275"};
- { 8, "s26878", "20969", "=q3=Ruby Crown of Restoration", "=ds=#sr# 225"};
- { 9, "s25321", "20832", "=q3=Moonsoul Crown", "=ds=#sr# 120"};
- { 10, "s56208", "42421", "=q2=Shadow Jade Focusing Lens", "=ds="..AL["Trainer"] };
- { 11, "s56206", "42420", "=q2=Shadow Crystal Focusing Lens", "=ds="..AL["Trainer"] };
- { 12, "s56205", "41367", "=q2=Dark Jade Focusing Lens", "=ds="..AL["Trainer"] };
- { 13, "s25612", "20954", "=q2=Heavy Iron Knuckles", "=ds=#sr# 125"};
- { 14, "s26880", "21752", "=q1=Thorium Setting", "=ds=#sr# 225"};
- { 15, "s32809", "25883", "=q1=Dense Stone Statue", "=ds=#sr# 225"};
- { 16, "s32808", "25882", "=q1=Solid Stone Statue", "=ds=#sr# 175"};
- { 17, "s25615", "20963", "=q1=Mithril Filigree", "=ds=#sr# 150"};
- { 18, "s32807", "25881", "=q1=Heavy Stone Statue", "=ds=#sr# 110"};
- { 19, "s25278", "20817", "=q1=Bronze Setting", "=ds=#sr# 50"};
- { 20, "s32801", "25880", "=q1=Coarse Stone Statue", "=ds=#sr# 50"};
- { 21, "s25255", "20816", "=q1=Delicate Copper Wire", "=ds=#sr# 1"};
- { 22, "s32259", "25498", "=q1=Rough Stone Statue", "=ds=#sr# 1"};
- };
+ {
+ Name = BabbleInventory["Armor"];
+ { 1, "s30325", "23763", "=q3=Hyper-Vision Goggles", "=ds=#sr# 360" };
+ { 2, "s30556", "23824", "=q3=Rocket Boots Xtreme", "=ds=#sr# 355" };
+ { 3, "s46697", "35581", "=q3=Rocket Boots Xtreme Lite", "=ds=#sr# 355" };
+ { 4, "s30563", "23836", "=q3=Goblin Rocket Launcher", "=ds=#sr# 350" };
+ { 5, "s30570", "23825", "=q3=Nigh-Invulnerability Belt", "=ds=#sr# 350" };
+ { 6, "s30318", "23762", "=q3=Ultra-Spectropic Detection Goggles", "=ds=#sr# 350" };
+ { 7, "s30316", "23758", "=q3=Cogspinner Goggles", "=ds=#sr# 340" };
+ { 8, "s30569", "23835", "=q3=Gnomish Poultryizer", "=ds=#sr# 340" };
+ { 9, "s30317", "23761", "=q3=Power Amplification Goggles", "=ds=#sr# 340" };
};
-
- ----------------------
- --- Leatherworking ---
- ----------------------
- AtlasLoot_Data["LeatherworkingTBC"] = {
- Name = LEATHERWORKING;
- Type = "Crafting";
- {
- Name = AL["Leather Armor"].." - Back";
- { 1, "s42546", "33122", "=q4=Cloak of Darkness", "=ds=#sr# 360"};
- };
- {
- Name = AL["Leather Armor"].." - Chest";
- { 1, "s35589", "29525", "=q4=Primalstrike Vest", "=ds=#sr# 375"};
- { 2, "s35585", "29522", "=q4=Windhawk Hauberk", "=ds=#sr# 375"};
- { 3, "s46138", "34369", "=q4=Carapace of Sun and Shadow", "=ds=#sr# 365"};
- { 4, "s46136", "34371", "=q4=Leather Chestguard of the Sun", "=ds=#sr# 365"};
- { 5, "s42731", "33204", "=q4=Shadowprowler's Chestguard", "=ds=#sr# 365"};
- { 6, "s32495", "25689", "=q3=Heavy Clefthoof Vest", "=ds=#sr# 360"};
- { 7, "s36078", "29974", "=q3=Living Crystal Breastplate", "=ds=#sr# 330"};
- { 8, "s36077", "29973", "=q3=Primalstorm Breastplate", "=ds=#sr# 330"};
- { 9, "s32473", "25671", "=q2=Thick Draenic Vest", "=ds=#sr# 330"};
- { 10, "s32481", "25676", "=q2=Wild Draenish Vest", "=ds=#sr# 330"};
-
- };
- {
- Name = AL["Leather Armor"].." - Feet";
- { 1, "s36355", "30041", "=q4=Boots of Natural Grace", "=ds=#sr# 375"};
- { 2, "s36357", "30039", "=q4=Boots of Utter Darkness", "=ds=#sr# 375"};
- { 3, "s40003", "32394", "=q4=Redeemed Soul Moccasins", "=ds=#sr# 375"};
- { 4, "s40003", "32394", "=q4=Redeemed Soul Moccasins", "=ds=#sr# 375"};
- { 5, "s32497", "25691", "=q3=Heavy Clefthoof Boots", "=ds=#sr# 355"};
- { 6, "s35536", "29499", "=q3=Blastguard Boots", "=ds=#sr# 350"};
- { 7, "s35534", "29497", "=q3=Enchanted Clefthoof Boots", "=ds=#sr# 350"};
- { 8, "s32493", "25686", "=q3=Fel Leather Boots", "=ds=#sr# 350"};
- { 9, "s32472", "25668", "=q2=Thick Draenic Boots", "=ds=#sr# 320"};
- { 10, "s32478", "25673", "=q2=Wild Draenish Boots", "=ds=#sr# 300"};
- };
- {
- Name = AL["Leather Armor"].." - Hands";
- { 1, "s35559", "29503", "=q4=Cobrascale Gloves", "=ds=#sr# 365"};
- { 2, "s46134", "34370", "=q4=Gloves of Immortal Dusk", "=ds=#sr# 365"};
- { 3, "s35562", "29506", "=q4=Gloves of the Living Touch", "=ds=#sr# 365"};
- { 4, "s46132", "34372", "=q4=Leather Gauntlets of the Sun", "=ds=#sr# 365"};
- { 5, "s35563", "29507", "=q4=Windslayer Wraps", "=ds=#sr# 365"};
- { 6, "s35533", "29496", "=q3=Enchanted Clefthoof Gloves", "=ds=#sr# 350"};
- { 7, "s32490", "25685", "=q3=Fel Leather Gloves", "=ds=#sr# 340"};
- { 8, "s32479", "25674", "=q2=Wild Draenish Gloves", "=ds=#sr# 310"};
- { 9, "s32470", "25669", "=q2=Thick Draenic Gloves", "=ds=#sr# 300"};
- };
- {
- Name = AL["Leather Armor"].." - Head";
- { 1, "s35558", "29502", "=q4=Cobrascale Hood", "=ds=#sr# 365"};
- { 2, "s35561", "29505", "=q4=Hood of Primal Life", "=ds=#sr# 365"};
- { 3, "s35560", "29504", "=q4=Windscale Hood", "=ds=#sr# 365"};
- { 4, "s32489", "25682", "=q3=Stylin' Jungle Hat", "=ds=#sr# 350"};
- { 5, "s32485", "25680", "=q3=Stylin' Purple Hat", "=ds=#sr# 350"};
-
- };
- {
- Name = AL["Leather Armor"].." - Legs";
- { 1, "s40005", "32396", "=q4=Redeemed Soul Legguards", "=ds=#sr# 375"};
- { 2, "s32496", "25690", "=q3=Heavy Clefthoof Leggings", "=ds=#sr# 355"};
- { 3, "s35535", "29498", "=q3=Blastguard Pants", "=ds=#sr# 350"};
- { 4, "s35532", "29495", "=q3=Enchanted Clefthoof Leggings", "=ds=#sr# 350"};
- { 5, "s32494", "25687", "=q3=Fel Leather Leggings", "=ds=#sr# 350"};
- { 6, "s32480", "25675", "=q2=Wild Draenish Leggings", "=ds=#sr# 320"};
- { 7, "s32471", "25670", "=q2=Thick Draenic Pants", "=ds=#sr# 315"};
-
-
- };
- {
- Name = AL["Leather Armor"].." - Shoulder";
- { 1, "s41157", "32583", "=q4=Shoulderpads of Renewed Life", "=ds=#sr# 375"};
- { 2, "s41160", "32581", "=q4=Swiftstrike Shoulders", "=ds=#sr# 375"};
- };
- {
- Name = AL["Leather Armor"].." - Waist";
- { 1, "s36351", "30040", "=q4=Belt of Deep Shadow", "=ds=#sr# 375"};
- { 2, "s36349", "30042", "=q4=Belt of Natural Power", "=ds=#sr# 375"};
- { 3, "s35590", "29526", "=q4=Primalstrike Belt", "=ds=#sr# 375"};
- { 4, "s40006", "32393", "=q4=Redeemed Soul Cinch", "=ds=#sr# 375"};
- { 5, "s35587", "29524", "=q4=Windhawk Belt", "=ds=#sr# 375"};
- };
- {
- Name = AL["Leather Armor"].." - Wrist";
- { 1, "s41156", "32582", "=q4=Bracers of Renewed Life", "=ds=#sr# 375"};
- { 2, "s35591", "29527", "=q4=Primalstrike Bracers", "=ds=#sr# 375"};
- { 3, "s40004", "32395", "=q4=Redeemed Soul Wristguards", "=ds=#sr# 375"};
- { 4, "s41158", "32580", "=q4=Swiftstrike Bracers", "=ds=#sr# 375"};
- { 5, "s35588", "29523", "=q4=Windhawk Bracers", "=ds=#sr# 375"};
- };
- {
- Name = AL["Mail Armor"].." - Chest";
- { 1, "s35580", "29519", "=q4=Netherstrike Breastplate", "=ds=#sr# 375"};
- { 2, "s35575", "29515", "=q4=Ebon Netherscale Breastplate", "=ds=#sr# 375"};
- { 3, "s46137", "34373", "=q4=Embrace of the Phoenix", "=ds=#sr# 365"};
- { 4, "s46139", "34375", "=q4=Sun-Drenched Scale Chestguard", "=ds=#sr# 365"};
- { 5, "s35574", "29514", "=q4=Thick Netherscale Breastplate", "=ds=#sr# 365"};
- { 6, "s32500", "25696", "=q3=Felstalker Breastplate", "=ds=#sr# 360"};
- { 7, "s36079", "29975", "=q3=Golden Dragonstrike Breastplate", "=ds=#sr# 330"};
- { 8, "s32465", "25657", "=q2=Felscale Breastplate", "=ds=#sr# 335"};
- { 9, "s32468", "25660", "=q2=Scaled Draenic Vest", "=ds=#sr# 325"};
- };
- {
- Name = AL["Mail Armor"].." - Feet";
- { 1, "s36359", "30043", "=q4=Hurricane Boots", "=ds=#sr# 375"};
- { 2, "s39997", "32398", "=q4=Boots of Shackled Souls", "=ds=#sr# 375"};
- { 3, "s36358", "30045", "=q4=Boots of the Crimson Hawk", "=ds=#sr# 375"};
- { 4, "s35567", "29512", "=q4=Earthen Netherscale Boots", "=ds=#sr# 365"};
- { 5, "s35528", "29493", "=q3=Flamescale Boots", "=ds=#sr# 350"};
- { 6, "s32503", "25693", "=q3=Netherfury Boots", "=ds=#sr# 350"};
- { 7, "s35527", "29491", "=q3=Enchanted Felscale Boots", "=ds=#sr# 350"};
- { 8, "s32469", "25659", "=q2=Scaled Draenic Boots", "=ds=#sr# 335"};
- { 9, "s32463", "25655", "=q2=Felscale Boots", "=ds=#sr# 310"};
- };
- {
- Name = AL["Mail Armor"].." - Hands";
- { 1, "s46135", "34376", "=q4=Sun-Drenched Scale Gloves", "=ds=#sr# 365"};
- { 2, "s46133", "34374", "=q4=Fletcher's Gloves of the Phoenix", "=ds=#sr# 365"};
- { 3, "s35568", "29509", "=q4=Windstrike Gloves", "=ds=#sr# 365"};
- { 4, "s35573", "29511", "=q4=Netherdrake Gloves", "=ds=#sr# 365"};
- { 5, "s32467", "25661", "=q2=Scaled Draenic Gloves", "=ds=#sr# 310"};
- { 6, "s32462", "25654", "=q2=Felscale Gloves", "=ds=#sr# 300"};
- };
- {
- Name = AL["Mail Armor"].." - Head";
- { 1, "s35564", "29508", "=q4=Living Dragonscale Helm", "=ds=#sr# 365"};
- { 2, "s35572", "29510", "=q4=Netherdrake Helm", "=ds=#sr# 365"};
- { 3, "s32487", "25681", "=q3=Stylin' Adventure Hat", "=ds=#sr# 350"};
- { 4, "s32488", "25683", "=q3=Stylin' Crimson Hat", "=ds=#sr# 350"};
- { 5, "s35526", "29490", "=q3=Enchanted Felscale Gloves", "=ds=#sr# 350"};
- };
- {
- Name = AL["Mail Armor"].." - Legs";
- { 1, "s40001", "32400", "=q4=Greaves of Shackled Souls", "=ds=#sr# 375"};
- { 2, "s35529", "29492", "=q3=Flamescale Leggings", "=ds=#sr# 350"};
- { 3, "s35525", "29489", "=q3=Enchanted Felscale Leggings", "=ds=#sr# 350"};
- { 4, "s32502", "25692", "=q3=Netherfury Leggings", "=ds=#sr# 340"};
- { 5, "s32464", "25656", "=q2=Felscale Pants", "=ds=#sr# 320"};
- { 6, "s32466", "25662", "=q2=Scaled Draenic Pants", "=ds=#sr# 300"};
- };
- {
- Name = AL["Mail Armor"].." - Shoulder";
- { 1, "s41162", "32575", "=q4=Shoulders of Lightning Reflexes", "=ds=#sr# 375"};
- { 2, "s41164", "32579", "=q4=Living Earth Shoulders", "=ds=#sr# 375"};
- };
- {
- Name = AL["Mail Armor"].." - Waist";
- { 1, "s40002", "32397", "=q4=Waistguard of Shackled Souls", "=ds=#sr# 375"};
- { 2, "s35582", "29520", "=q4=Netherstrike Belt", "=ds=#sr# 375"};
- { 3, "s36353", "30044", "=q4=Monsoon Belt", "=ds=#sr# 375"};
- { 4, "s35576", "29516", "=q4=Ebon Netherscale Belt", "=ds=#sr# 375"};
- { 5, "s36352", "30046", "=q4=Belt of the Black Eagle", "=ds=#sr# 375"};
- { 6, "s32498", "25695", "=q3=Felstalker Belt", "=ds=#sr# 350"};
- { 7, "s35531", "29494", "=q3=Flamescale Belt", "=ds=#sr# 350"};
- { 8, "s35537", "29500", "=q3=Blastguard Belt", "=ds=#sr# 350"};
- { 9, "s32501", "25694", "=q3=Netherfury Belt", "=ds=#sr# 340"};
- };
- {
- Name = AL["Mail Armor"].." - Wrist";
- { 1, "s35584", "29521", "=q4=Netherstrike Bracers", "=ds=#sr# 375"};
- { 2, "s52733", "32399", "=q4=Bracers of Shackled Souls", "=ds="..AL["Vendor"]..""};
- { 3, "s35577", "29517", "=q4=Ebon Netherscale Bracers", "=ds=#sr# 375"};
- { 4, "s41163", "32577", "=q4=Living Earth Bindings", "=ds=#sr# 375"};
- { 5, "s41161", "32574", "=q4=Bindings of Lightning Reflexes", "=ds=#sr# 375"};
- { 6, "s32499", "25697", "=q3=Felstalker Bracer", "=ds=#sr# 360"};
- };
- {
- Name = AL["Item Enhancements"];
- { 1, "s35557", "29536", "=q4=Nethercleft Leg Armor", "=ds=#sr# 365"};
- { 2, "s35554", "29535", "=q4=Nethercobra Leg Armor", "=ds=#sr# 365"};
- { 3, "s35555", "29534", "=q3=Clefthide Leg Armor", "=ds=#sr# 335"};
- { 4, "s35549", "29533", "=q3=Cobrahide Leg Armor", "=ds=#sr# 335"};
- { 5, "s22727", "18251", "=q3=Core Armor Kit", "=ds=#sr# 300"};
- { 6, "s50963", "38376", "=q2=Heavy Borean Armor Kit", "=ds="..AL["Trainer"]};
- { 7, "s44770", "34207", "=q2=Glove Reinforcements", "=ds=#sr# 350"};
- { 8, "s35524", "29488", "=q2=Arcane Armor Kit", "=ds=#sr# 340"};
- { 9, "s35521", "29485", "=q2=Flame Armor Kit", "=ds=#sr# 340"};
- { 10, "s35522", "29486", "=q2=Frost Armor Kit", "=ds=#sr# 340"};
- { 11, "s35523", "29487", "=q2=Nature Armor Kit", "=ds=#sr# 340"};
- { 12, "s35520", "29483", "=q2=Shadow Armor Kit", "=ds=#sr# 340"};
- { 13, "s50962", "38375", "=q1=Borean Armor Kit", "=ds="..AL["Trainer"]};
- { 14, "s44970", "34330", "=q1=Heavy Knothide Armor Kit", "=ds=#sr# 350"};
- { 15, "s32458", "25652", "=q1=Magister's Armor Kit", "=ds=#sr# 325"};
- { 16, "s32457", "25651", "=q1=Vindicator's Armor Kit", "=ds=#sr# 325"};
- { 17, "s32456", "25650", "=q1=Knothide Armor Kit", "=ds=#sr# 300"};
- { 18, "s32482", "25679", "=q1=Comfortable Insoles", "=ds=#sr# 300"};
- };
- {
- Name = AL["Quivers and Ammo Pouches"];
- { 1, "s44768", "34106", "=q3=Netherscale Ammo Pouch", "=ds=#sr# 350"};
- { 2, "s44359", "34105", "=q3=Quiver of a Thousand Feathers", "=ds=#sr# 350"};
- { 3, "s44343", "34099", "=q2=Knothide Ammo Pouch", "=ds=#sr# 315"};
- { 4, "s44344", "34100", "=q2=Knothide Quiver", "=ds=#sr# 315"};
- };
- {
- Name = AL["Drums, Bags and Misc."];
- { 1, "s35543", "29529", "=q3=Drums of Battle", "=ds=#sr# 365"};
- { 2, "s45117", "34490", "=q3=Bag of Many Hides", "=ds=#sr# 360"};
- { 3, "s32461", "25653", "=q3=Riding Crop", "=ds=#sr# 350"};
- { 4, "s35538", "29532", "=q2=Drums of Panic", "=ds=#sr# 370"};
- { 5, "s35539", "29531", "=q2=Drums of Restoration", "=ds=#sr# 350"};
- { 6, "s35544", "29530", "=q2=Drums of Speed", "=ds=#sr# 345"};
- { 7, "s35540", "29528", "=q2=Drums of War", "=ds=#sr# 340"};
- { 8, "s35530", "29540", "=q2=Reinforced Mining Bag", "=ds=#sr# 325"};
- { 9, "s45100", "34482", "=q2=Leatherworker's Satchel", "=ds=#sr# 300"};
- };
- {
- Name = BabbleInventory["Leather"];
- { 1, "s32455", "23793", "=q1=Heavy Knothide Leather", "=ds=#sr# 325"};
- { 2, "s32454", "21887", "=q1=Knothide Leather", "=ds=#sr# 300"};
- };
- {
- Name = DRAGONSCALE;
- { 1, "s35576", "29516", "=q4=Ebon Netherscale Belt", "=ds=#sr# 375"};
- { 2, "s35577", "29517", "=q4=Ebon Netherscale Bracers", "=ds=#sr# 375"};
- { 3, "s35575", "29515", "=q4=Ebon Netherscale Breastplate", "=ds=#sr# 375"};
- { 4, "s35582", "29520", "=q4=Netherstrike Belt", "=ds=#sr# 375"};
- { 5, "s35584", "29521", "=q4=Netherstrike Bracers", "=ds=#sr# 375"};
- { 6, "s35580", "29519", "=q4=Netherstrike Breastplate", "=ds=#sr# 375"};
- { 7, "s36079", "29975", "=q3=Golden Dragonstrike Breastplate", "=ds=#sr# 330"};
- };
- {
- Name = ELEMENTAL;
- { 1, "s35590", "29526", "=q4=Primalstrike Belt", "=ds=#sr# 375"};
- { 2, "s35591", "29527", "=q4=Primalstrike Bracers", "=ds=#sr# 375"};
- { 3, "s35589", "29525", "=q4=Primalstrike Vest", "=ds=#sr# 375"};
- { 4, "s36077", "29973", "=q3=Primalstorm Breastplate", "=ds=#sr# 330"};
- };
- {
- Name = TRIBAL;
- { 1, "s35587", "29524", "=q4=Windhawk Belt", "=ds=#sr# 375"};
- { 2, "s35588", "29523", "=q4=Windhawk Bracers", "=ds=#sr# 375"};
- { 3, "s35585", "29522", "=q4=Windhawk Hauberk", "=ds=#sr# 375"};
- { 4, "s36078", "29974", "=q3=Living Crystal Breastplate", "=ds=#sr# 330"};
- };
+ {
+ Name = AL["Explosives"];
+ { 1, "s30547", "23819", "=q1=Elemental Seaforium Charge", "=ds=#sr# 350" };
+ { 2, "s30560", "23827", "=q1=Super Sapper Charge", "=ds=#sr# 340" };
+ { 3, "s39973", "32413", "=q1=Frost Grenades", "=ds=#sr# 335" };
+ { 4, "s30311", "23737", "=q1=Adamantite Grenade", "=ds=#sr# 325" };
+ { 5, "s30558", "23826", "=q1=The Bigger One", "=ds=#sr# 325" };
+ { 6, "s30310", "23736", "=q1=Fel Iron Bomb", "=ds=#sr# 300" };
};
+ {
+ Name = AL["Item Enhancements"];
+ { 1, "s30334", "23766", "=q3=Stabilized Eternium Scope", "=ds=#sr# 375" };
+ { 2, "s30332", "23765", "=q3=Khorium Scope", "=ds=#sr# 360" };
+ { 3, "s30329", "23764", "=q2=Adamantite Scope", "=ds=#sr# 335" };
+ { 4, "s22793", "18283", "=q3=Biznicks 247x128 Accurascope", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s44157", "34061", "=q4=Turbo-Charged Flying Machine", "=ds=#sr# 375" };
+ { 2, "s44155", "34060", "=q3=Flying Machine", "=ds=#sr# 350" };
+ { 3, "s30348", "23774", "=q2=Fel Iron Toolbox", "=ds=#sr# 325" };
+ { 4, "s30337", "23767", "=q2=Crashin' Thrashin' Robot", "=ds=#sr# 325" };
+ { 5, "s56459", "40892", "=q1=Hammer Pick", "=ds=#sr# 375" };
+ { 6, "s44391", "34113", "=q1=Field Repair Bot 110G", "=ds=#sr# 360" };
+ { 7, "s30552", "33093", "=q1=Mana Potion Injector", "=ds=#sr# 345" };
+ { 8, "s30344", "23771", "=q1=Green Smoke Flare", "=ds=#sr# 335" };
+ { 9, "s32814", "25886", "=q1=Purple Smoke Flare", "=ds=#sr# 335" };
+ { 10, "s30341", "23768", "=q1=White Smoke Flare", "=ds=#sr# 335" };
+ { 11, "s30551", "33092", "=q1=Healing Potion Injector", "=ds=#sr# 330" };
+ { 12, "s30568", "23841", "=q1=Gnomish Flame Turret", "=ds=#sr# 325" };
+ { 13, "s30548", "23821", "=q1=Zapthrottle Mote Extractor", "=ds=#sr# 305" };
+ };
+ {
+ Name = AL["Reagents"];
+ { 1, "s30309", "23787", "=q1=Felsteel Stabilizer", "=ds=#sr# 340" };
+ { 2, "s30307", "23785", "=q1=Hardened Adamantite Tube", "=ds=#sr# 340" };
+ { 3, "s30308", "23786", "=q1=Khorium Power Core", "=ds=#sr# 340" };
+ { 4, "s39971", "32423", "=q1=Icy Blasting Primers", "=ds=#sr# 335" };
+ { 5, "s30306", "23784", "=q1=Adamantite Frame", "=ds=#sr# 325" };
+ { 6, "s30305", "23783", "=q1=Handful of Fel Iron Bolts", "=ds=#sr# 300" };
+ { 7, "s30303", "23781", "=q1=Elemental Blasting Powder", "=ds=#sr# 300" };
+ { 8, "s30304", "23782", "=q1=Fel Iron Casing", "=ds=#sr# 300" };
+ };
+ {
+ Name = BabbleInventory["Weapon"];
+ { 1, "s41307", "32756", "=q4=Gyro-balanced Khorium Destroyer", "=ds=#sr# 375" };
+ { 2, "s30315", "23748", "=q3=Ornate Khorium Rifle", "=ds=#sr# 375" };
+ { 3, "s30314", "23747", "=q3=Felsteel Boomstick", "=ds=#sr# 360" };
+ { 4, "s30313", "23746", "=q2=Adamantite Rifle", "=ds=#sr# 350" };
+ { 5, "s30312", "23742", "=q2=Fel Iron Musket", "=ds=#sr# 320" };
+ };
+ {
+ Name = GNOMISH;
+ { 1, "s30570", "23825", "=q3=Nigh-Invulnerability Belt", "=ds=#sr# 350" };
+ { 2, "s30569", "23835", "=q3=Gnomish Poultryizer", "=ds=#sr# 340" };
+ { 3, "s36955", "30544", "=q2=Ultrasafe Transporter - Toshley's Station", "=ds=#sr# 350" };
+ };
+ {
+ Name = GOBLIN;
+ { 1, "s30563", "23836", "=q3=Goblin Rocket Launcher", "=ds=#sr# 350" };
+ { 2, "s36954", "30542", "=q2=Dimensional Ripper - Area 52", "=ds=#sr# 350" };
+ };
+};
- AtlasLoot_Data["MiningTBC"] = {
+-----------------
+--- First Aid ---
+-----------------
+
+AtlasLoot_Data["FirstAid"] = {
+ Name = FIRSTAID;
+ {
+ Name = FIRSTAID;
+ { 1, "s45546", "34722", "=q1=Heavy Frostweave Bandage", "=ds=#sr# 400" };
+ { 2, "s45545", "34721", "=q1=Frostweave Bandage", "=ds=#sr# 375" };
+ { 3, "s27033", "21991", "=q1=Heavy Netherweave Bandage", "=ds=#sr# 360" };
+ { 4, "s27032", "21990", "=q1=Netherweave Bandage", "=ds=#sr# 330" };
+ { 5, "s23787", "19440", "=q1=Powerful Anti-Venom", "=ds=#sr# 300" };
+ { 6, "s18630", "14530", "=q1=Heavy Runecloth Bandage", "=ds=#sr# 290" };
+ { 7, "s18629", "14529", "=q1=Runecloth Bandage", "=ds=#sr# 260" };
+ { 8, "s10841", "8545", "=q1=Heavy Mageweave Bandage", "=ds=#sr# 240" };
+ { 9, "s10840", "8544", "=q1=Mageweave Bandage", "=ds=#sr# 210" };
+ { 10, "s7929", "6451", "=q1=Heavy Silk Bandage", "=ds=#sr# 180" };
+ { 11, "s7928", "6450", "=q1=Silk Bandage", "=ds=#sr# 150" };
+ { 12, "s7935", "6453", "=q1=Strong Anti-Venom", "=ds=#sr# 130" };
+ { 13, "s3278", "3531", "=q1=Heavy Wool Bandage", "=ds=#sr# 115" };
+ { 14, "s3277", "3530", "=q1=Wool Bandage", "=ds=#sr# 80" };
+ { 15, "s7934", "6452", "=q1=Anti-Venom", "=ds=#sr# 80" };
+ { 16, "s3276", "2581", "=q1=Heavy Linen Bandage", "=ds=#sr# 40" };
+ { 17, "s3275", "1251", "=q1=Linen Bandage", "=ds=#sr# 1" };
+ };
+};
+
+---------------------
+--- Jewelcrafting ---
+---------------------
+
+AtlasLoot_Data["JewelcraftingTBC"] = {
+ Name = JEWELCRAFTING;
+ Type = "CraftingNoBF";
+ {
+ Name = AL["Red Gems"];
+ { 1, "s39705", "32193", "=q4=Bold Crimson Spinel", "=ds=#sr# 375" };
+ { 2, "s39712", "32197", "=q4=Bright Crimson Spinel", "=ds=#sr# 375" };
+ { 3, "s39706", "32194", "=q4=Delicate Crimson Spinel", "=ds=#sr# 375" };
+ { 4, "s39714", "32199", "=q4=Flashing Crimson Spinel", "=ds=#sr# 375" };
+ { 5, "s39711", "32196", "=q4=Runed Crimson Spinel", "=ds=#sr# 375" };
+ { 6, "s39713", "32198", "=q4=Subtle Crimson Spinel", "=ds=#sr# 375" };
+ { 7, "s39710", "32195", "=q4=Teardrop Crimson Spinel", "=ds=#sr# 375" };
+ { 8, "s42589", "33131", "=q4=Crimson Sun", "=ds=#sr# 360" };
+ { 9, "s42558", "33133", "=q4=Don Julio's Heart", "=ds=#sr# 360" };
+ { 10, "s42588", "33134", "=q4=Kailee's Rose", "=ds=#sr# 360" };
+ { 16, "s31084", "24027", "=q3=Bold Living Ruby", "=ds=#sr# 350" };
+ { 17, "s31089", "24031", "=q3=Bright Living Ruby", "=ds=#sr# 350" };
+ { 18, "s31085", "24028", "=q3=Delicate Living Ruby", "=ds=#sr# 350" };
+ { 19, "s31091", "24036", "=q3=Flashing Living Ruby", "=ds=#sr# 350" };
+ { 20, "s31088", "24030", "=q3=Runed Living Ruby", "=ds=#sr# 350" };
+ { 21, "s31090", "24032", "=q3=Subtle Living Ruby", "=ds=#sr# 350" };
+ { 22, "s31087", "24029", "=q3=Teardrop Living Ruby", "=ds=#sr# 350" };
+ { 23, "s28907", "23097", "=q2=Delicate Blood Garnet", "=ds=#sr# 325" };
+ { 24, "s28906", "23096", "=q2=Runed Blood Garnet", "=ds=#sr# 315" };
+ { 25, "s28905", "23095", "=q2=Bold Blood Garnet", "=ds=#sr# 305" };
+ { 26, "s34590", "28595", "=q2=Bright Blood Garnet", "=ds=#sr# 305" };
+ { 27, "s28903", "23094", "=q2=Teardrop Blood Garnet", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Blue Gems"];
+ { 1, "s39717", "32202", "=q4=Lustrous Empyrean Sapphire", "=ds=#sr# 375" };
+ { 2, "s39715", "32200", "=q4=Solid Empyrean Sapphire", "=ds=#sr# 375" };
+ { 3, "s39716", "32201", "=q4=Sparkling Empyrean Sapphire", "=ds=#sr# 375" };
+ { 4, "s39718", "32203", "=q4=Stormy Empyrean Sapphire", "=ds=#sr# 375" };
+ { 5, "s42590", "33135", "=q4=Falling Star", "=ds=#sr# 360" };
+ { 6, "s31094", "24037", "=q3=Lustrous Star of Elune", "=ds=#sr# 350" };
+ { 7, "s31092", "24033", "=q3=Solid Star of Elune", "=ds=#sr# 350" };
+ { 8, "s31149", "24035", "=q3=Sparkling Star of Elune", "=ds=#sr# 350" };
+ { 9, "s31095", "24039", "=q3=Stormy Star of Elune", "=ds=#sr# 350" };
+ { 10, "s28957", "23121", "=q2=Lustrous Azure Moonstone", "=ds=#sr# 325" };
+ { 11, "s28955", "23120", "=q2=Stormy Azure Moonstone", "=ds=#sr# 315" };
+ { 12, "s28953", "23119", "=q2=Sparkling Azure Moonstone", "=ds=#sr# 305" };
+ { 13, "s28950", "23118", "=q2=Solid Azure Moonstone", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Yellow Gems"];
+ { 1, "s39719", "32204", "=q4=Brilliant Lionseye", "=ds=#sr# 375" };
+ { 2, "s39722", "32207", "=q4=Gleaming Lionseye", "=ds=#sr# 375" };
+ { 3, "s39725", "32210", "=q4=Great Lionseye", "=ds=#sr# 375" };
+ { 4, "s39724", "32209", "=q4=Mystic Lionseye", "=ds=#sr# 375" };
+ { 5, "s47056", "35761", "=q4=Quick Lionseye", "=ds=#sr# 375" };
+ { 6, "s39721", "32206", "=q4=Rigid Lionseye", "=ds=#sr# 375" };
+ { 7, "s39720", "32205", "=q4=Smooth Lionseye", "=ds=#sr# 375" };
+ { 8, "s39723", "32208", "=q4=Thick Lionseye", "=ds=#sr# 375" };
+ { 9, "s42592", "33140", "=q4=Blood of Amber", "=ds=#sr# 360" };
+ { 10, "s42593", "33144", "=q4=Facet of Eternity", "=ds=#sr# 360" };
+ { 11, "s42591", "33143", "=q4=Stone of Blades", "=ds=#sr# 360" };
+ { 16, "s31096", "24047", "=q3=Brilliant Dawnstone", "=ds=#sr# 350" };
+ { 17, "s31099", "24050", "=q3=Gleaming Dawnstone", "=ds=#sr# 350" };
+ { 18, "s39452", "31861", "=q3=Great Dawnstone", "=ds=#sr# 350" };
+ { 19, "s31101", "24053", "=q3=Mystic Dawnstone", "=ds=#sr# 350" };
+ { 20, "s46403", "35315", "=q3=Quick Dawnstone", "=ds=#sr# " .. AL["Vendor"] };
+ { 21, "s31098", "24051", "=q3=Rigid Dawnstone", "=ds=#sr# 350" };
+ { 22, "s31097", "24048", "=q3=Smooth Dawnstone", "=ds=#sr# 350" };
+ { 23, "s31100", "24052", "=q3=Thick Dawnstone", "=ds=#sr# 350" };
+ { 24, "s39451", "31860", "=q2=Great Golden Draenite", "=ds=#sr# 325" };
+ { 25, "s28948", "23116", "=q2=Rigid Golden Draenite", "=ds=#sr# 325" };
+ { 26, "s34069", "28290", "=q2=Smooth Golden Draenite", "=ds=#sr# 325" };
+ { 27, "s28947", "23115", "=q2=Thick Golden Draenite", "=ds=#sr# 315" };
+ { 28, "s28944", "23114", "=q2=Gleaming Golden Draenite", "=ds=#sr# 305" };
+ { 29, "s28938", "23113", "=q2=Brilliant Golden Draenite", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Green Gems"];
+ { 1, "s39741", "32225", "=q4=Dazzling Seaspray Emerald", "=ds=#sr# 375" };
+ { 2, "s39739", "32223", "=q4=Enduring Seaspray Emerald", "=ds=#sr# 375" };
+ { 3, "s47053", "35759", "=q4=Forceful Seaspray Emerald", "=ds=#sr# 375" };
+ { 4, "s39742", "32226", "=q4=Jagged Seaspray Emerald", "=ds=#sr# 375" };
+ { 5, "s39740", "32224", "=q4=Radiant Seaspray Emerald", "=ds=#sr# 375" };
+ { 6, "s47054", "35758", "=q4=Steady Seaspray Emerald", "=ds=#sr# 375" };
+ { 7, "s31112", "24065", "=q3=Dazzling Talasite", "=ds=#sr# 350" };
+ { 8, "s31110", "24062", "=q3=Enduring Talasite", "=ds=#sr# 350" };
+ { 9, "s46405", "35318", "=q3=Forceful Talasite", "=ds=#sr# " .. AL["Vendor"] };
+ { 10, "s31113", "24067", "=q3=Jagged Talasite", "=ds=#sr# 350" };
+ { 11, "s31111", "24066", "=q3=Radiant Talasite", "=ds=#sr# 350" };
+ { 12, "s43493", "33782", "=q3=Steady Talasite", "=ds=#sr# 350" };
+ { 16, "s28924", "23106", "=q2=Dazzling Deep Peridot", "=ds=#sr# 325" };
+ { 17, "s28918", "23105", "=q2=Enduring Deep Peridot", "=ds=#sr# 315" };
+ { 18, "s28917", "23104", "=q2=Jagged Deep Peridot", "=ds=#sr# 305" };
+ { 19, "s28916", "23103", "=q2=Radiant Deep Peridot", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Orange Gems"];
+ { 1, "s39736", "32220", "=q4=Glinting Pyrestone", "=ds=#sr# 375" };
+ { 2, "s39733", "32217", "=q4=Inscribed Pyrestone", "=ds=#sr# 375" };
+ { 3, "s39735", "32219", "=q4=Luminous Pyrestone", "=ds=#sr# 375" };
+ { 4, "s39734", "32218", "=q4=Potent Pyrestone", "=ds=#sr# 375" };
+ { 5, "s47055", "35760", "=q4=Reckless Pyrestone", "=ds=#sr# 375" };
+ { 6, "s39737", "32221", "=q4=Veiled Pyrestone", "=ds=#sr# 375" };
+ { 7, "s39738", "32222", "=q4=Wicked Pyrestone", "=ds=#sr# 375" };
+ { 8, "s31109", "24061", "=q3=Glinting Noble Topaz", "=ds=#sr# 350" };
+ { 9, "s31106", "24058", "=q3=Inscribed Noble Topaz", "=ds=#sr# 350" };
+ { 10, "s31108", "24060", "=q3=Luminous Noble Topaz", "=ds=#sr# 350" };
+ { 11, "s31107", "24059", "=q3=Potent Noble Topaz", "=ds=#sr# 350" };
+ { 12, "s46404", "35316", "=q3=Reckless Noble Topaz", "=ds=#sr# " .. AL["Vendor"] };
+ { 13, "s39470", "31867", "=q3=Veiled Noble Topaz", "=ds=#sr# 350" };
+ { 14, "s39471", "31868", "=q3=Wicked Noble Topaz", "=ds=#sr# 350" };
+ { 21, "s28915", "23101", "=q2=Potent Flame Spessarite", "=ds=#sr# 325" };
+ { 16, "s39466", "31866", "=q2=Veiled Flame Spessarite", "=ds=#sr# 325" };
+ { 17, "s39467", "31869", "=q2=Wicked Flame Spessarite", "=ds=#sr# 325" };
+ { 18, "s28914", "23100", "=q2=Glinting Flame Spessarite", "=ds=#sr# 315" };
+ { 19, "s28912", "23099", "=q2=Luminous Flame Spessarite", "=ds=#sr# 305" };
+ { 20, "s28910", "23098", "=q2=Inscribed Flame Spessarite", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Purple Gems"];
+ { 1, "s39729", "32213", "=q4=Balanced Shadowsong Amethyst", "=ds=#sr# 375" };
+ { 2, "s39731", "32215", "=q4=Glowing Shadowsong Amethyst", "=ds=#sr# 375" };
+ { 3, "s39730", "32214", "=q4=Infused Shadowsong Amethyst", "=ds=#sr# 375" };
+ { 4, "s48789", "37503", "=q4=Purified Shadowsong Amethyst", "=ds=" .. AL["Vendor"] .. "" };
+ { 5, "s39732", "32216", "=q4=Royal Shadowsong Amethyst", "=ds=#sr# 375" };
+ { 6, "s39728", "32212", "=q4=Shifting Shadowsong Amethyst", "=ds=#sr# 375" };
+ { 7, "s39727", "32211", "=q4=Sovereign Shadowsong Amethyst", "=ds=#sr# 375" };
+ { 8, "s39463", "31863", "=q3=Balanced Nightseye", "=ds=#sr# 350" };
+ { 9, "s31104", "24056", "=q3=Glowing Nightseye", "=ds=#sr# 350" };
+ { 10, "s39462", "31865", "=q3=Infused Nightseye", "=ds=#sr# 350" };
+ { 11, "s46803", "35707", "=q3=Regal Nightseye", "=ds=#sr# 350" };
+ { 12, "s31105", "24057", "=q3=Royal Nightseye", "=ds=#sr# 350" };
+ { 13, "s31103", "24055", "=q3=Shifting Nightseye", "=ds=#sr# 350" };
+ { 14, "s31102", "24054", "=q3=Sovereign Nightseye", "=ds=#sr# 350" };
+ { 15, "s41429", "32836", "=q3=Purified Shadow Pearl", "=ds=#sr# 350" };
+ { 16, "s39455", "31862", "=q2=Balanced Shadow Draenite", "=ds=#sr# 325" };
+ { 17, "s39458", "31864", "=q2=Infused Shadow Draenite", "=ds=#sr# 325" };
+ { 18, "s28936", "23111", "=q2=Sovereign Shadow Draenite", "=ds=#sr# 325" };
+ { 19, "s28933", "23110", "=q2=Shifting Shadow Draenite", "=ds=#sr# 315" };
+ { 20, "s28927", "23109", "=q2=Royal Shadow Draenite", "=ds=#sr# 305" };
+ { 21, "s28925", "23108", "=q2=Glowing Shadow Draenite", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Meta Gems"];
+ { 1, "s46601", "35503", "=q3=Ember Skyfire Diamond", "=ds=#sr# 370" };
+ { 2, "s44794", "34220", "=q3=Chaotic Skyfire Diamond", "=ds=#sr# 365" };
+ { 3, "s32871", "25890", "=q3=Destructive Skyfire Diamond", "=ds=#sr# 365" };
+ { 4, "s32874", "25895", "=q3=Enigmatic Skyfire Diamond", "=ds=#sr# 365" };
+ { 5, "s32872", "25893", "=q3=Mystical Skyfire Diamond", "=ds=#sr# 365" };
+ { 6, "s32873", "25894", "=q3=Swift Skyfire Diamond", "=ds=#sr# 365" };
+ { 7, "s39963", "32410", "=q3=Thundering Skyfire Diamond", "=ds=#sr# 365" };
+ { 16, "s46597", "35501", "=q3=Eternal Earthstorm Diamond", "=ds=#sr# 370" };
+ { 17, "s32867", "25897", "=q3=Bracing Earthstorm Diamond", "=ds=#sr# 365" };
+ { 18, "s32869", "25899", "=q3=Brutal Earthstorm Diamond", "=ds=#sr# 365" };
+ { 19, "s32870", "25901", "=q3=Insightful Earthstorm Diamond", "=ds=#sr# 365" };
+ { 20, "s32866", "25896", "=q3=Powerful Earthstorm Diamond", "=ds=#sr# 365" };
+ { 21, "s39961", "32409", "=q3=Relentless Earthstorm Diamond", "=ds=#sr# 365" };
+ { 22, "s32868", "25898", "=q3=Tenacious Earthstorm Diamond", "=ds=#sr# 365" };
+ };
+ {
+ Name = AL["Prismatic Gems"];
+ { 1, "s28028", "22459", "=q4=Void Sphere", "=ds=" .. GetSpellInfo(7411) };
+ { 2, "s56531", "42702", "=q3=Enchanted Tear", "=ds=" .. AL["Trainer"] };
+ { 3, "s28027", "22460", "=q3=Prismatic Sphere", "=ds=" .. GetSpellInfo(7411) };
+ { 4, "s56530", "42701", "=q2=Enchanted Pearl", "=ds=" .. AL["Trainer"] };
+ { 5, "s62941", "42701", "=q2=Prismatic Black Diamond", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Trinkets"];
+ { 1, "s46777", "35700", "=q4=Figurine - Crimson Serpent", "=ds=#sr# 375" };
+ { 2, "s46775", "35693", "=q4=Figurine - Empyrean Tortoise", "=ds=#sr# 375" };
+ { 3, "s46776", "35694", "=q4=Figurine - Khorium Boar", "=ds=#sr# 375" };
+ { 4, "s46779", "35703", "=q4=Figurine - Seaspray Albatross", "=ds=#sr# 375" };
+ { 5, "s46778", "35702", "=q4=Figurine - Shadowsong Panther", "=ds=#sr# 375" };
+ { 6, "s56203", "42418", "=q3=Figurine - Emerald Boar", "=ds=" .. AL["Trainer"] };
+ { 7, "s59759", "44063", "=q3=Figurine - Monarch Crab", "=ds=" .. AL["Trainer"] };
+ { 8, "s56199", "42341", "=q3=Figurine - Ruby Hare", "=ds=" .. AL["Trainer"] };
+ { 9, "s56202", "42413", "=q3=Figurine - Sapphire Owl", "=ds=" .. AL["Trainer"] };
+ { 10, "s56201", "42395", "=q3=Figurine - Twilight Serpent", "=ds=" .. AL["Trainer"] };
+ { 11, "s31080", "24125", "=q3=Figurine - Dawnstone Crab", "=ds=#sr# 370" };
+ { 12, "s31079", "24124", "=q3=Figurine - Felsteel Boar", "=ds=#sr# 370" };
+ { 13, "s31081", "24126", "=q3=Figurine - Living Ruby Serpent", "=ds=#sr# 370" };
+ { 14, "s31083", "24128", "=q3=Figurine - Nightseye Panther", "=ds=#sr# 370" };
+ { 15, "s31082", "24127", "=q3=Figurine - Talasite Owl", "=ds=#sr# 370" };
+ { 16, "s26912", "21784", "=q3=Figurine - Black Diamond Crab", "=ds=#sr# 300" };
+ { 17, "s26914", "21789", "=q3=Figurine - Dark Iron Scorpid", "=ds=#sr# 300" };
+ { 18, "s26909", "21777", "=q2=Figurine - Emerald Owl", "=ds=#sr# 285" };
+ { 19, "s26900", "21769", "=q2=Figurine - Ruby Serpent", "=ds=#sr# 260" };
+ { 20, "s26882", "21763", "=q2=Figurine - Truesilver Boar", "=ds=#sr# 235" };
+ { 21, "s26881", "21760", "=q2=Figurine - Truesilver Crab", "=ds=#sr# 225" };
+ { 22, "s26873", "21756", "=q2=Figurine - Golden Hare", "=ds=#sr# 200" };
+ { 23, "s26872", "21748", "=q2=Figurine - Jade Owl", "=ds=#sr# 200" };
+ { 24, "s26875", "21758", "=q2=Figurine - Black Pearl Panther", "=ds=#sr# 215" };
+ };
+ {
+ Name = AL["Rings"];
+ { 1, "s31057", "24086", "=q3=Arcane Khorium Band", "=ds=#sr# 365" };
+ { 2, "s31061", "24089", "=q3=Blazing Eternium Band", "=ds=#sr# 365" };
+ { 3, "s31056", "24085", "=q3=Khorium Band of Leaves", "=ds=#sr# 360" };
+ { 4, "s37855", "30825", "=q3=Ring of Arcane Shielding", "=ds=#sr# 360" };
+ { 5, "s31060", "24088", "=q3=Delicate Eternium Ring", "=ds=#sr# 355" };
+ { 6, "s31054", "24080", "=q3=Khorium Band of Frost", "=ds=#sr# 355" };
+ { 7, "s31055", "24082", "=q3=Khorium Inferno Band", "=ds=#sr# 355" };
+ { 8, "s31053", "24079", "=q3=Khorium Band of Shadows", "=ds=#sr# 350" };
+ { 9, "s31058", "24087", "=q3=Heavy Felsteel Ring", "=ds=#sr# 345" };
+ { 10, "s41415", "32774", "=q3=The Black Pearl", "=ds=#sr# 330" };
+ { 11, "s41414", "32772", "=q3=Brilliant Pearl Band", "=ds=#sr# 325" };
+ { 12, "s26916", "21779", "=q3=Band of Natural Fire", "=ds=#sr# 310" };
+ { 13, "s26903", "21768", "=q3=Sapphire Signet", "=ds=#sr# 275" };
+ { 14, "s26896", "21753", "=q3=Gem Studded Band", "=ds=#sr# 250" };
+ { 15, "s26874", "20964", "=q3=Aquamarine Signet", "=ds=#sr# 210" };
+ { 16, "s34959", "29158", "=q3=Truesilver Commander's Ring", "=ds=#sr# 200" };
+ { 17, "s34955", "29157", "=q3=Golden Ring of Power", "=ds=#sr# 180" };
+ { 18, "s37818", "30804", "=q3=Bronze Band of Force", "=ds=#sr# 65" };
+ { 19, "s25305", "20826", "=q3=Heavy Silver Ring", "=ds=#sr# 90" };
+ { 20, "s58146", "43249", "=q2=Shadowmight Ring", "=ds=" .. AL["Trainer"] };
+ { 21, "s58145", "43248", "=q2=Stoneguard Band", "=ds=" .. AL["Trainer"] };
+ { 22, "s56193", "42336", "=q2=Bloodstone Band", "=ds=" .. AL["Trainer"] };
+ { 23, "s56194", "42337", "=q2=Sun Rock Ring", "=ds=" .. AL["Trainer"] };
+ { 24, "s31052", "24078", "=q2=Heavy Adamantite Ring", "=ds=#sr# 335" };
+ { 25, "s31050", "24076", "=q2=Azure Moonstone Ring", "=ds=#sr# 320" };
+ { 26, "s31048", "24074", "=q2=Fel Iron Blood Ring", "=ds=#sr# 310" };
+ { 27, "s31049", "24075", "=q2=Golden Draenite Ring", "=ds=#sr# 310" };
+ { 28, "s34961", "29160", "=q2=Emerald Lion Ring", "=ds=#sr# 290" };
+ { 29, "s26910", "21778", "=q2=Ring of Bitter Shadows", "=ds=#sr# 285" };
+ { 30, "s34960", "29159", "=q2=Glowing Thorium Band", "=ds=#sr# 280" };
+
+ };
+ {
+ Name = AL["Rings"];
+ { 1, "s26907", "21775", "=q2=Onslaught Ring", "=ds=#sr# 280" };
+ { 2, "s36526", "30422", "=q2=Diamond Focus Ring", "=ds=#sr# 265" };
+ { 3, "s26902", "21767", "=q2=Simple Opal Ring", "=ds=#sr# 260" };
+ { 4, "s26887", "21754", "=q2=The Aquamarine Ward", "=ds=#sr# 245" };
+ { 5, "s26885", "21765", "=q2=Truesilver Healing Ring", "=ds=#sr# 240" };
+ { 6, "s36525", "30421", "=q2=Red Ring of Destruction", "=ds=#sr# 230" };
+ { 7, "s25621", "20961", "=q2=Citrine Ring of Rapid Healing", "=ds=#sr# 180" };
+ { 8, "s25620", "20960", "=q2=Engraved Truesilver Ring", "=ds=#sr# 170" };
+ { 9, "s25619", "20959", "=q2=The Jade Eye", "=ds=#sr# 170" };
+ { 10, "s25617", "20958", "=q2=Blazing Citrine Ring", "=ds=#sr# 150" };
+ { 11, "s25613", "20955", "=q2=Golden Dragon Ring", "=ds=#sr# 135" };
+ { 12, "s25323", "20833", "=q2=Wicked Moonstone Ring", "=ds=#sr# 125" };
+ { 13, "s36524", "30420", "=q2=Heavy Jade Ring", "=ds=#sr# 105" };
+ { 14, "s25318", "20828", "=q2=Ring of Twilight Shadows", "=ds=#sr# 100" };
+ { 15, "s25317", "20827", "=q2=Ring of Silver Might", "=ds=#sr# 80" };
+ { 16, "s25287", "20823", "=q2=Gloom Band", "=ds=#sr# 70" };
+ { 17, "s25284", "20820", "=q2=Simple Pearl Ring", "=ds=#sr# 60" };
+ { 18, "s25490", "20907", "=q2=Solid Bronze Ring", "=ds=#sr# 50" };
+ { 19, "s25280", "20818", "=q2=Elegant Silver Ring", "=ds=#sr# 50" };
+ { 20, "s25283", "20821", "=q2=Inlaid Malachite Ring", "=ds=#sr# 30" };
+ { 21, "s32179", "25439", "=q2=Tigerseye Band", "=ds=#sr# 20" };
+ { 22, "s26926", "21932", "=q2=Heavy Copper Ring", "=ds=#sr# 5" };
+ { 23, "s25493", "20906", "=q2=Braided Copper Ring", "=ds=#sr# 1" };
+ { 24, "s26925", "21931", "=q2=Woven Copper Ring", "=ds=#sr# 1" };
+ };
+ {
+ Name = AL["Necks"];
+ { 1, "s31072", "24117", "=q3=Embrace of the Dawn", "=ds=#sr# 365" };
+ { 2, "s31070", "24114", "=q3=Braided Eternium Chain", "=ds=#sr# 360" };
+ { 3, "s31071", "24116", "=q3=Eye of the Night", "=ds=#sr# 360" };
+ { 4, "s31062", "24092", "=q3=Pendant of Frozen Flame", "=ds=#sr# 360" };
+ { 5, "s31065", "24097", "=q3=Pendant of Shadow's End", "=ds=#sr# 360" };
+ { 6, "s31063", "24093", "=q3=Pendant of Thawing", "=ds=#sr# 360" };
+ { 7, "s31066", "24098", "=q3=Pendant of the Null Rune", "=ds=#sr# 360" };
+ { 8, "s31064", "24095", "=q3=Pendant of Withering", "=ds=#sr# 360" };
+ { 9, "s31068", "24110", "=q3=Living Ruby Pendant", "=ds=#sr# 355" };
+ { 10, "s31067", "24106", "=q3=Thick Felsteel Necklace", "=ds=#sr# 355" };
+ { 11, "s40514", "32508", "=q3=Necklace of the Deep", "=ds=#sr# 340" };
+ { 12, "s26915", "21792", "=q3=Necklace of the Diamond Tower", "=ds=#sr# 305" };
+ { 13, "s26911", "21791", "=q3=Living Emerald Pendant", "=ds=#sr# 290" };
+ { 14, "s26897", "21766", "=q3=Opal Necklace of Impact", "=ds=#sr# 250" };
+ { 15, "s63743", "45627", "=q3=Amulet of Truesight", "=ds=" };
+ { 16, "s58142", "43245", "=q2=Crystal Chalcedony Amulet", "=ds=" .. AL["Trainer"] };
+ { 17, "s58141", "43244", "=q2=Crystal Citrine Necklace", "=ds=" .. AL["Trainer"] };
+ { 18, "s31051", "24077", "=q2=Thick Adamantite Necklace", "=ds=#sr# 335" };
+ { 19, "s26908", "21790", "=q2=Sapphire Pendant of Winter Night", "=ds=#sr# 280" };
+ };
+ {
+ Name = AL["Necks"];
+ { 1, "s26883", "21764", "=q2=Ruby Pendant of Fire", "=ds=#sr# 235" };
+ { 2, "s26876", "21755", "=q2=Aquamarine Pendant of the Warrior", "=ds=#sr# 220" };
+ { 3, "s25622", "20967", "=q2=Citrine Pendant of Golden Healing", "=ds=#sr# 190" };
+ { 4, "s25618", "20966", "=q2=Jade Pendant of Blasting", "=ds=#sr# 160" };
+ { 5, "s25320", "20831", "=q2=Heavy Golden Necklace of Battle", "=ds=#sr# 150" };
+ { 6, "s25610", "20950", "=q2=Pendant of the Agate Shield", "=ds=#sr# 120" };
+ { 7, "s25339", "20830", "=q2=Amulet of the Moon", "=ds=#sr# 110" };
+ { 8, "s25498", "20909", "=q2=Barbaric Iron Collar", "=ds=#sr# 110" };
+ { 9, "s38175", "31154", "=q2=Bronze Torc", "=ds=#sr# 80" };
+ { 10, "s36523", "30419", "=q2=Brilliant Necklace", "=ds=#sr# 75" };
+ { 11, "s26927", "21933", "=q2=Thick Bronze Necklace", "=ds=#sr# 50" };
+ { 12, "s26928", "21934", "=q2=Ornate Tigerseye Necklace", "=ds=#sr# 30" };
+ { 13, "s32178", "25438", "=q2=Malachite Pendant", "=ds=#sr# 20" };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s31078", "24123", "=q4=Circlet of Arcane Might", "=ds=#sr# 370" };
+ { 2, "s31077", "24122", "=q4=Coronet of the Verdant Flame", "=ds=#sr# 370" };
+ { 4, "s41418", "32776", "=q3=Crown of the Sea Witch", "=ds=#sr# 365" };
+ { 5, "s47280", "35945", "=q3=Brilliant Glass", "=ds=#sr# 350" };
+ { 6, "s38068", "31079", "=q3=Mercurial Adamantite", "=ds=#sr# 325" };
+ { 7, "s26906", "21774", "=q3=Emerald Crown of Destruction", "=ds=#sr# 275" };
+ { 8, "s26878", "20969", "=q3=Ruby Crown of Restoration", "=ds=#sr# 225" };
+ { 9, "s25321", "20832", "=q3=Moonsoul Crown", "=ds=#sr# 120" };
+ { 10, "s56208", "42421", "=q2=Shadow Jade Focusing Lens", "=ds=" .. AL["Trainer"] };
+ { 11, "s56206", "42420", "=q2=Shadow Crystal Focusing Lens", "=ds=" .. AL["Trainer"] };
+ { 12, "s56205", "41367", "=q2=Dark Jade Focusing Lens", "=ds=" .. AL["Trainer"] };
+ { 13, "s25612", "20954", "=q2=Heavy Iron Knuckles", "=ds=#sr# 125" };
+ { 14, "s26880", "21752", "=q1=Thorium Setting", "=ds=#sr# 225" };
+ { 15, "s32809", "25883", "=q1=Dense Stone Statue", "=ds=#sr# 225" };
+ { 16, "s32808", "25882", "=q1=Solid Stone Statue", "=ds=#sr# 175" };
+ { 17, "s25615", "20963", "=q1=Mithril Filigree", "=ds=#sr# 150" };
+ { 18, "s32807", "25881", "=q1=Heavy Stone Statue", "=ds=#sr# 110" };
+ { 19, "s25278", "20817", "=q1=Bronze Setting", "=ds=#sr# 50" };
+ { 20, "s32801", "25880", "=q1=Coarse Stone Statue", "=ds=#sr# 50" };
+ { 21, "s25255", "20816", "=q1=Delicate Copper Wire", "=ds=#sr# 1" };
+ { 22, "s32259", "25498", "=q1=Rough Stone Statue", "=ds=#sr# 1" };
+ };
+};
+
+----------------------
+--- Leatherworking ---
+----------------------
+AtlasLoot_Data["LeatherworkingTBC"] = {
+ Name = LEATHERWORKING;
+ Type = "Crafting";
+ {
+ Name = AL["Leather Armor"] .. " - Back";
+ { 1, "s42546", "33122", "=q4=Cloak of Darkness", "=ds=#sr# 360" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Chest";
+ { 1, "s35589", "29525", "=q4=Primalstrike Vest", "=ds=#sr# 375" };
+ { 2, "s35585", "29522", "=q4=Windhawk Hauberk", "=ds=#sr# 375" };
+ { 3, "s46138", "34369", "=q4=Carapace of Sun and Shadow", "=ds=#sr# 365" };
+ { 4, "s46136", "34371", "=q4=Leather Chestguard of the Sun", "=ds=#sr# 365" };
+ { 5, "s42731", "33204", "=q4=Shadowprowler's Chestguard", "=ds=#sr# 365" };
+ { 6, "s32495", "25689", "=q3=Heavy Clefthoof Vest", "=ds=#sr# 360" };
+ { 7, "s36078", "29974", "=q3=Living Crystal Breastplate", "=ds=#sr# 330" };
+ { 8, "s36077", "29973", "=q3=Primalstorm Breastplate", "=ds=#sr# 330" };
+ { 9, "s32473", "25671", "=q2=Thick Draenic Vest", "=ds=#sr# 330" };
+ { 10, "s32481", "25676", "=q2=Wild Draenish Vest", "=ds=#sr# 330" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Feet";
+ { 1, "s36355", "30041", "=q4=Boots of Natural Grace", "=ds=#sr# 375" };
+ { 2, "s36357", "30039", "=q4=Boots of Utter Darkness", "=ds=#sr# 375" };
+ { 3, "s40003", "32394", "=q4=Redeemed Soul Moccasins", "=ds=#sr# 375" };
+ { 4, "s40003", "32394", "=q4=Redeemed Soul Moccasins", "=ds=#sr# 375" };
+ { 5, "s32497", "25691", "=q3=Heavy Clefthoof Boots", "=ds=#sr# 355" };
+ { 6, "s35536", "29499", "=q3=Blastguard Boots", "=ds=#sr# 350" };
+ { 7, "s35534", "29497", "=q3=Enchanted Clefthoof Boots", "=ds=#sr# 350" };
+ { 8, "s32493", "25686", "=q3=Fel Leather Boots", "=ds=#sr# 350" };
+ { 9, "s32472", "25668", "=q2=Thick Draenic Boots", "=ds=#sr# 320" };
+ { 10, "s32478", "25673", "=q2=Wild Draenish Boots", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Hands";
+ { 1, "s35559", "29503", "=q4=Cobrascale Gloves", "=ds=#sr# 365" };
+ { 2, "s46134", "34370", "=q4=Gloves of Immortal Dusk", "=ds=#sr# 365" };
+ { 3, "s35562", "29506", "=q4=Gloves of the Living Touch", "=ds=#sr# 365" };
+ { 4, "s46132", "34372", "=q4=Leather Gauntlets of the Sun", "=ds=#sr# 365" };
+ { 5, "s35563", "29507", "=q4=Windslayer Wraps", "=ds=#sr# 365" };
+ { 6, "s35533", "29496", "=q3=Enchanted Clefthoof Gloves", "=ds=#sr# 350" };
+ { 7, "s32490", "25685", "=q3=Fel Leather Gloves", "=ds=#sr# 340" };
+ { 8, "s32479", "25674", "=q2=Wild Draenish Gloves", "=ds=#sr# 310" };
+ { 9, "s32470", "25669", "=q2=Thick Draenic Gloves", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Head";
+ { 1, "s35558", "29502", "=q4=Cobrascale Hood", "=ds=#sr# 365" };
+ { 2, "s35561", "29505", "=q4=Hood of Primal Life", "=ds=#sr# 365" };
+ { 3, "s35560", "29504", "=q4=Windscale Hood", "=ds=#sr# 365" };
+ { 4, "s32489", "25682", "=q3=Stylin' Jungle Hat", "=ds=#sr# 350" };
+ { 5, "s32485", "25680", "=q3=Stylin' Purple Hat", "=ds=#sr# 350" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Legs";
+ { 1, "s40005", "32396", "=q4=Redeemed Soul Legguards", "=ds=#sr# 375" };
+ { 2, "s32496", "25690", "=q3=Heavy Clefthoof Leggings", "=ds=#sr# 355" };
+ { 3, "s35535", "29498", "=q3=Blastguard Pants", "=ds=#sr# 350" };
+ { 4, "s35532", "29495", "=q3=Enchanted Clefthoof Leggings", "=ds=#sr# 350" };
+ { 5, "s32494", "25687", "=q3=Fel Leather Leggings", "=ds=#sr# 350" };
+ { 6, "s32480", "25675", "=q2=Wild Draenish Leggings", "=ds=#sr# 320" };
+ { 7, "s32471", "25670", "=q2=Thick Draenic Pants", "=ds=#sr# 315" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Shoulder";
+ { 1, "s41157", "32583", "=q4=Shoulderpads of Renewed Life", "=ds=#sr# 375" };
+ { 2, "s41160", "32581", "=q4=Swiftstrike Shoulders", "=ds=#sr# 375" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Waist";
+ { 1, "s36351", "30040", "=q4=Belt of Deep Shadow", "=ds=#sr# 375" };
+ { 2, "s36349", "30042", "=q4=Belt of Natural Power", "=ds=#sr# 375" };
+ { 3, "s35590", "29526", "=q4=Primalstrike Belt", "=ds=#sr# 375" };
+ { 4, "s40006", "32393", "=q4=Redeemed Soul Cinch", "=ds=#sr# 375" };
+ { 5, "s35587", "29524", "=q4=Windhawk Belt", "=ds=#sr# 375" };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Wrist";
+ { 1, "s41156", "32582", "=q4=Bracers of Renewed Life", "=ds=#sr# 375" };
+ { 2, "s35591", "29527", "=q4=Primalstrike Bracers", "=ds=#sr# 375" };
+ { 3, "s40004", "32395", "=q4=Redeemed Soul Wristguards", "=ds=#sr# 375" };
+ { 4, "s41158", "32580", "=q4=Swiftstrike Bracers", "=ds=#sr# 375" };
+ { 5, "s35588", "29523", "=q4=Windhawk Bracers", "=ds=#sr# 375" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Chest";
+ { 1, "s35580", "29519", "=q4=Netherstrike Breastplate", "=ds=#sr# 375" };
+ { 2, "s35575", "29515", "=q4=Ebon Netherscale Breastplate", "=ds=#sr# 375" };
+ { 3, "s46137", "34373", "=q4=Embrace of the Phoenix", "=ds=#sr# 365" };
+ { 4, "s46139", "34375", "=q4=Sun-Drenched Scale Chestguard", "=ds=#sr# 365" };
+ { 5, "s35574", "29514", "=q4=Thick Netherscale Breastplate", "=ds=#sr# 365" };
+ { 6, "s32500", "25696", "=q3=Felstalker Breastplate", "=ds=#sr# 360" };
+ { 7, "s36079", "29975", "=q3=Golden Dragonstrike Breastplate", "=ds=#sr# 330" };
+ { 8, "s32465", "25657", "=q2=Felscale Breastplate", "=ds=#sr# 335" };
+ { 9, "s32468", "25660", "=q2=Scaled Draenic Vest", "=ds=#sr# 325" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Feet";
+ { 1, "s36359", "30043", "=q4=Hurricane Boots", "=ds=#sr# 375" };
+ { 2, "s39997", "32398", "=q4=Boots of Shackled Souls", "=ds=#sr# 375" };
+ { 3, "s36358", "30045", "=q4=Boots of the Crimson Hawk", "=ds=#sr# 375" };
+ { 4, "s35567", "29512", "=q4=Earthen Netherscale Boots", "=ds=#sr# 365" };
+ { 5, "s35528", "29493", "=q3=Flamescale Boots", "=ds=#sr# 350" };
+ { 6, "s32503", "25693", "=q3=Netherfury Boots", "=ds=#sr# 350" };
+ { 7, "s35527", "29491", "=q3=Enchanted Felscale Boots", "=ds=#sr# 350" };
+ { 8, "s32469", "25659", "=q2=Scaled Draenic Boots", "=ds=#sr# 335" };
+ { 9, "s32463", "25655", "=q2=Felscale Boots", "=ds=#sr# 310" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Hands";
+ { 1, "s46135", "34376", "=q4=Sun-Drenched Scale Gloves", "=ds=#sr# 365" };
+ { 2, "s46133", "34374", "=q4=Fletcher's Gloves of the Phoenix", "=ds=#sr# 365" };
+ { 3, "s35568", "29509", "=q4=Windstrike Gloves", "=ds=#sr# 365" };
+ { 4, "s35573", "29511", "=q4=Netherdrake Gloves", "=ds=#sr# 365" };
+ { 5, "s32467", "25661", "=q2=Scaled Draenic Gloves", "=ds=#sr# 310" };
+ { 6, "s32462", "25654", "=q2=Felscale Gloves", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Head";
+ { 1, "s35564", "29508", "=q4=Living Dragonscale Helm", "=ds=#sr# 365" };
+ { 2, "s35572", "29510", "=q4=Netherdrake Helm", "=ds=#sr# 365" };
+ { 3, "s32487", "25681", "=q3=Stylin' Adventure Hat", "=ds=#sr# 350" };
+ { 4, "s32488", "25683", "=q3=Stylin' Crimson Hat", "=ds=#sr# 350" };
+ { 5, "s35526", "29490", "=q3=Enchanted Felscale Gloves", "=ds=#sr# 350" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Legs";
+ { 1, "s40001", "32400", "=q4=Greaves of Shackled Souls", "=ds=#sr# 375" };
+ { 2, "s35529", "29492", "=q3=Flamescale Leggings", "=ds=#sr# 350" };
+ { 3, "s35525", "29489", "=q3=Enchanted Felscale Leggings", "=ds=#sr# 350" };
+ { 4, "s32502", "25692", "=q3=Netherfury Leggings", "=ds=#sr# 340" };
+ { 5, "s32464", "25656", "=q2=Felscale Pants", "=ds=#sr# 320" };
+ { 6, "s32466", "25662", "=q2=Scaled Draenic Pants", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Shoulder";
+ { 1, "s41162", "32575", "=q4=Shoulders of Lightning Reflexes", "=ds=#sr# 375" };
+ { 2, "s41164", "32579", "=q4=Living Earth Shoulders", "=ds=#sr# 375" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Waist";
+ { 1, "s40002", "32397", "=q4=Waistguard of Shackled Souls", "=ds=#sr# 375" };
+ { 2, "s35582", "29520", "=q4=Netherstrike Belt", "=ds=#sr# 375" };
+ { 3, "s36353", "30044", "=q4=Monsoon Belt", "=ds=#sr# 375" };
+ { 4, "s35576", "29516", "=q4=Ebon Netherscale Belt", "=ds=#sr# 375" };
+ { 5, "s36352", "30046", "=q4=Belt of the Black Eagle", "=ds=#sr# 375" };
+ { 6, "s32498", "25695", "=q3=Felstalker Belt", "=ds=#sr# 350" };
+ { 7, "s35531", "29494", "=q3=Flamescale Belt", "=ds=#sr# 350" };
+ { 8, "s35537", "29500", "=q3=Blastguard Belt", "=ds=#sr# 350" };
+ { 9, "s32501", "25694", "=q3=Netherfury Belt", "=ds=#sr# 340" };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Wrist";
+ { 1, "s35584", "29521", "=q4=Netherstrike Bracers", "=ds=#sr# 375" };
+ { 2, "s52733", "32399", "=q4=Bracers of Shackled Souls", "=ds=" .. AL["Vendor"] .. "" };
+ { 3, "s35577", "29517", "=q4=Ebon Netherscale Bracers", "=ds=#sr# 375" };
+ { 4, "s41163", "32577", "=q4=Living Earth Bindings", "=ds=#sr# 375" };
+ { 5, "s41161", "32574", "=q4=Bindings of Lightning Reflexes", "=ds=#sr# 375" };
+ { 6, "s32499", "25697", "=q3=Felstalker Bracer", "=ds=#sr# 360" };
+ };
+ {
+ Name = AL["Item Enhancements"];
+ { 1, "s35557", "29536", "=q4=Nethercleft Leg Armor", "=ds=#sr# 365" };
+ { 2, "s35554", "29535", "=q4=Nethercobra Leg Armor", "=ds=#sr# 365" };
+ { 3, "s35555", "29534", "=q3=Clefthide Leg Armor", "=ds=#sr# 335" };
+ { 4, "s35549", "29533", "=q3=Cobrahide Leg Armor", "=ds=#sr# 335" };
+ { 5, "s22727", "18251", "=q3=Core Armor Kit", "=ds=#sr# 300" };
+ { 6, "s50963", "38376", "=q2=Heavy Borean Armor Kit", "=ds=" .. AL["Trainer"] };
+ { 7, "s44770", "34207", "=q2=Glove Reinforcements", "=ds=#sr# 350" };
+ { 8, "s35524", "29488", "=q2=Arcane Armor Kit", "=ds=#sr# 340" };
+ { 9, "s35521", "29485", "=q2=Flame Armor Kit", "=ds=#sr# 340" };
+ { 10, "s35522", "29486", "=q2=Frost Armor Kit", "=ds=#sr# 340" };
+ { 11, "s35523", "29487", "=q2=Nature Armor Kit", "=ds=#sr# 340" };
+ { 12, "s35520", "29483", "=q2=Shadow Armor Kit", "=ds=#sr# 340" };
+ { 13, "s50962", "38375", "=q1=Borean Armor Kit", "=ds=" .. AL["Trainer"] };
+ { 14, "s44970", "34330", "=q1=Heavy Knothide Armor Kit", "=ds=#sr# 350" };
+ { 15, "s32458", "25652", "=q1=Magister's Armor Kit", "=ds=#sr# 325" };
+ { 16, "s32457", "25651", "=q1=Vindicator's Armor Kit", "=ds=#sr# 325" };
+ { 17, "s32456", "25650", "=q1=Knothide Armor Kit", "=ds=#sr# 300" };
+ { 18, "s32482", "25679", "=q1=Comfortable Insoles", "=ds=#sr# 300" };
+ };
+ {
+ Name = AL["Quivers and Ammo Pouches"];
+ { 1, "s44768", "34106", "=q3=Netherscale Ammo Pouch", "=ds=#sr# 350" };
+ { 2, "s44359", "34105", "=q3=Quiver of a Thousand Feathers", "=ds=#sr# 350" };
+ { 3, "s44343", "34099", "=q2=Knothide Ammo Pouch", "=ds=#sr# 315" };
+ { 4, "s44344", "34100", "=q2=Knothide Quiver", "=ds=#sr# 315" };
+ };
+ {
+ Name = AL["Drums, Bags and Misc."];
+ { 1, "s35543", "29529", "=q3=Drums of Battle", "=ds=#sr# 365" };
+ { 2, "s45117", "34490", "=q3=Bag of Many Hides", "=ds=#sr# 360" };
+ { 3, "s32461", "25653", "=q3=Riding Crop", "=ds=#sr# 350" };
+ { 4, "s35538", "29532", "=q2=Drums of Panic", "=ds=#sr# 370" };
+ { 5, "s35539", "29531", "=q2=Drums of Restoration", "=ds=#sr# 350" };
+ { 6, "s35544", "29530", "=q2=Drums of Speed", "=ds=#sr# 345" };
+ { 7, "s35540", "29528", "=q2=Drums of War", "=ds=#sr# 340" };
+ { 8, "s35530", "29540", "=q2=Reinforced Mining Bag", "=ds=#sr# 325" };
+ { 9, "s45100", "34482", "=q2=Leatherworker's Satchel", "=ds=#sr# 300" };
+ };
+ {
+ Name = BabbleInventory["Leather"];
+ { 1, "s32455", "23793", "=q1=Heavy Knothide Leather", "=ds=#sr# 325" };
+ { 2, "s32454", "21887", "=q1=Knothide Leather", "=ds=#sr# 300" };
+ };
+ {
+ Name = DRAGONSCALE;
+ { 1, "s35576", "29516", "=q4=Ebon Netherscale Belt", "=ds=#sr# 375" };
+ { 2, "s35577", "29517", "=q4=Ebon Netherscale Bracers", "=ds=#sr# 375" };
+ { 3, "s35575", "29515", "=q4=Ebon Netherscale Breastplate", "=ds=#sr# 375" };
+ { 4, "s35582", "29520", "=q4=Netherstrike Belt", "=ds=#sr# 375" };
+ { 5, "s35584", "29521", "=q4=Netherstrike Bracers", "=ds=#sr# 375" };
+ { 6, "s35580", "29519", "=q4=Netherstrike Breastplate", "=ds=#sr# 375" };
+ { 7, "s36079", "29975", "=q3=Golden Dragonstrike Breastplate", "=ds=#sr# 330" };
+ };
+ {
+ Name = ELEMENTAL;
+ { 1, "s35590", "29526", "=q4=Primalstrike Belt", "=ds=#sr# 375" };
+ { 2, "s35591", "29527", "=q4=Primalstrike Bracers", "=ds=#sr# 375" };
+ { 3, "s35589", "29525", "=q4=Primalstrike Vest", "=ds=#sr# 375" };
+ { 4, "s36077", "29973", "=q3=Primalstorm Breastplate", "=ds=#sr# 330" };
+ };
+ {
+ Name = TRIBAL;
+ { 1, "s35587", "29524", "=q4=Windhawk Belt", "=ds=#sr# 375" };
+ { 2, "s35588", "29523", "=q4=Windhawk Bracers", "=ds=#sr# 375" };
+ { 3, "s35585", "29522", "=q4=Windhawk Hauberk", "=ds=#sr# 375" };
+ { 4, "s36078", "29974", "=q3=Living Crystal Breastplate", "=ds=#sr# 330" };
+ };
+};
+
+AtlasLoot_Data["MiningTBC"] = {
+ Name = MINING;
+ {
Name = MINING;
- {
- Name = MINING;
- { 1, "s46353", "35128", "=q2=Smelt Hardened Khorium", "=ds=#sr# 375"};
- { 2, "s29686", "23573", "=q1=Smelt Hardened Adamantite", "=ds=#sr# 375"};
- { 3, "s29361", "23449", "=q2=Smelt Khorium", "=ds=#sr# 375"};
- { 4, "s29360", "23448", "=q2=Smelt Felsteel", "=ds=#sr# 350"};
- { 5, "s29359", "23447", "=q2=Smelt Eternium", "=ds=#sr# 350"};
- { 6, "s29358", "23446", "=q1=Smelt Adamantite", "=ds=#sr# 325"};
- { 7, "s29356", "23445", "=q1=Smelt Fel Iron", "=ds=#sr# 300"};
- { 8, "s35751", "22574", "=q1=Fire Sunder", "=ds=#sr# 300"};
- { 9, "s35750", "22573", "=q1=Earth Shatter", "=ds=#sr# 300"};
+ { 1, "s46353", "35128", "=q2=Smelt Hardened Khorium", "=ds=#sr# 375" };
+ { 2, "s29686", "23573", "=q1=Smelt Hardened Adamantite", "=ds=#sr# 375" };
+ { 3, "s29361", "23449", "=q2=Smelt Khorium", "=ds=#sr# 375" };
+ { 4, "s29360", "23448", "=q2=Smelt Felsteel", "=ds=#sr# 350" };
+ { 5, "s29359", "23447", "=q2=Smelt Eternium", "=ds=#sr# 350" };
+ { 6, "s29358", "23446", "=q1=Smelt Adamantite", "=ds=#sr# 325" };
+ { 7, "s29356", "23445", "=q1=Smelt Fel Iron", "=ds=#sr# 300" };
+ { 8, "s35751", "22574", "=q1=Fire Sunder", "=ds=#sr# 300" };
+ { 9, "s35750", "22573", "=q1=Earth Shatter", "=ds=#sr# 300" };
};
};
- AtlasLoot_Data["FirstAidTBC"] = {
- Name = FIRSTAID;
- {
- Name = FIRSTAID;
- { 1, "s27033", "21991", "=q1=Heavy Netherweave Bandage", "=ds=#sr# 360"};
- { 2, "s27032", "21990", "=q1=Netherweave Bandage", "=ds=#sr# 330"};
- };
+AtlasLoot_Data["FirstAidTBC"] = {
+ Name = FIRSTAID;
+ {
+ Name = FIRSTAID;
+ { 1, "s27033", "21991", "=q1=Heavy Netherweave Bandage", "=ds=#sr# 360" };
+ { 2, "s27032", "21990", "=q1=Netherweave Bandage", "=ds=#sr# 330" };
};
- -----------------
- --- Tailoring ---
- -----------------
-
-
-
- AtlasLoot_Data["TailoringTBC"] = {
- Name = TAILORING;
- Type = "Crafting";
- {
- Name = AL["Cloth Armor"].." - Back";
- { 1, "s40060", "32420", "=q4=Night's End", "=ds=#sr# 375"};
- { 2, "s31450", "24260", "=q4=Manaweave Cloak", "=ds=#sr# 365"};
- { 3, "s31449", "24259", "=q4=Vengeance Wrap", "=ds=#sr# 365"};
- { 4, "s37873", "30831", "=q3=Cloak of Arcane Evasion", "=ds=#sr# 350"};
- { 5, "s31440", "24253", "=q3=Cloak of Eternity", "=ds=#sr# 350"};
- { 6, "s31438", "24252", "=q3=Cloak of the Black Void", "=ds=#sr# 350"};
- };
- {
- Name = AL["Cloth Armor"].." - Chest";
- { 1, "s26758", "21871", "=q4=Frozen Shadoweave Robe", "=ds=#sr# 375"};
- { 2, "s26762", "21875", "=q4=Primal Mooncloth Robe", "=ds=#sr# 375"};
- { 3, "s26781", "21865", "=q4=Soulcloth Vest", "=ds=#sr# 375"};
- { 4, "s26754", "21848", "=q4=Spellfire Robe", "=ds=#sr# 375"};
- { 5, "s46131", "34365", "=q4=Robe of Eternal Light", "=ds=#sr# 365"};
- { 6, "s46130", "34364", "=q4=Sunfire Robe", "=ds=#sr# 365"};
- { 7, "s26784", "21868", "=q3=Arcanoweave Robe", "=ds=#sr# 370"};
- { 8, "s37884", "30839", "=q3=Flameheart Vest", "=ds=#sr# 370"};
- { 9, "s26777", "21861", "=q3=Imbued Netherweave Robe", "=ds=#sr# 360"};
- { 10, "s26778", "21862", "=q3=Imbued Netherweave Tunic", "=ds=#sr# 360"};
- { 11, "s26774", "21855", "=q2=Netherweave Tunic", "=ds=#sr# 345"};
- { 12, "s26773", "21854", "=q2=Netherweave Robe", "=ds=#sr# 340"};
- };
- {
- Name = AL["Cloth Armor"].." - Feet";
- { 1, "s36317", "30037", "=q4=Boots of Blasting", "=ds=#sr# 375"};
- { 2, "s36318", "30035", "=q4=Boots of the Long Road", "=ds=#sr# 375"};
- { 3, "s40020", "32391", "=q4=Soulguard Slippers", "=ds=#sr# 375"};
- { 4, "s26757", "21870", "=q4=Frozen Shadoweave Boots", "=ds=#sr# 365"};
- { 5, "s26783", "21867", "=q3=Arcanoweave Boots", "=ds=#sr# 360"};
- { 6, "s26776", "21860", "=q3=Imbued Netherweave Boots", "=ds=#sr# 350"};
- { 7, "s26772", "21853", "=q2=Netherweave Boots", "=ds=#sr# 335"};
-
- };
- {
- Name = AL["Cloth Armor"].." - Hands";
- { 1, "s41207", "32584", "=q4=Swiftheal Wraps", "=ds=#sr# 375"};
- { 2, "s46129", "34367", "=q4=Hands of Eternal Light", "=ds=#sr# 365"};
- { 3, "s26753", "21847", "=q4=Spellfire Gloves", "=ds=#sr# 365"};
- { 4, "s46128", "34366", "=q4=Sunfire Handwraps", "=ds=#sr# 365"};
- { 5, "s26779", "21863", "=q4=Soulcloth Gloves", "=ds=#sr# 355"};
- { 6, "s37883", "30838", "=q3=Flameheart Gloves", "=ds=#sr# 360"};
- { 7, "s26770", "21851", "=q2=Netherweave Gloves", "=ds=#sr# 320"};
- };
- {
- Name = AL["Cloth Armor"].." - Head";
- { 1, "s31456", "24267", "=q4=Battlecast Hood", "=ds=#sr# 375"};
- { 2, "s31455", "24266", "=q4=Spellstrike Hood", "=ds=#sr# 375"};
- { 3, "s31454", "24264", "=q4=Whitemend Hood", "=ds=#sr# 375"};
- { 4, "s31448", "24258", "=q4=Resolute Cape", "=ds=#sr# 365"};
- { 5, "s31441", "24254", "=q3=White Remedy Cape", "=ds=#sr# 350"};
- };
- {
- Name = AL["Cloth Armor"].." - Legs";
- { 1, "s31453", "24263", "=q4=Battlecast Pants", "=ds=#sr# 375"};
- { 2, "s40023", "32389", "=q4=Soulguard Leggings", "=ds=#sr# 375"};
- { 3, "s31452", "24262", "=q4=Spellstrike Pants", "=ds=#sr# 375"};
- { 4, "s31451", "24261", "=q4=Whitemend Pants", "=ds=#sr# 375"};
- { 5, "s26775", "21859", "=q3=Imbued Netherweave Pants", "=ds=#sr# 340"};
- { 6, "s26771", "21852", "=q2=Netherweave Pants", "=ds=#sr# 325"};
-
- };
- {
- Name = AL["Cloth Armor"].." - Shoulder";
- { 1, "s41206", "32587", "=q4=Mantle of Nimble Thought", "=ds=#sr# 375"};
- { 2, "s41208", "32585", "=q4=Swiftheal Mantle", "=ds=#sr# 375"};
- { 3, "s26761", "21874", "=q4=Primal Mooncloth Shoulders", "=ds=#sr# 365"};
- { 4, "s26780", "21864", "=q4=Soulcloth Shoulders", "=ds=#sr# 365"};
- { 5, "s26756", "21869", "=q4=Frozen Shadoweave Shoulders", "=ds=#sr# 355"};
-
- };
- {
- Name = AL["Cloth Armor"].." - Waist";
- { 1, "s36315", "30038", "=q4=Belt of Blasting", "=ds=#sr# 375"};
- { 2, "s36316", "30036", "=q4=Belt of the Long Road", "=ds=#sr# 375"};
- { 3, "s40024", "32390", "=q4=Soulguard Girdle", "=ds=#sr# 375"};
- { 4, "s31444", "24257", "=q4=Black Belt of Knowledge", "=ds=#sr# 365"};
- { 5, "s31443", "24256", "=q4=Girdle of Ruination", "=ds=#sr# 365"};
- { 6, "s31442", "24255", "=q4=Unyielding Girdle", "=ds=#sr# 365"};
- { 7, "s26760", "21873", "=q4=Primal Mooncloth Belt", "=ds=#sr# 355"};
- { 8, "s26752", "21846", "=q4=Spellfire Belt", "=ds=#sr# 355"};
- { 9, "s26765", "21850", "=q2=Netherweave Belt", "=ds=#sr# 310"};
- };
- {
- Name = AL["Cloth Armor"].." - Wrist";
- { 1, "s41205", "32586", "=q4=Bracers of Nimble Thought", "=ds=#sr# 375"};
- { 2, "s40021", "32392", "=q4=Soulguard Bracers", "=ds=#sr# 375"};
- { 3, "s26782", "21866", "=q3=Arcanoweave Bracers", "=ds=#sr# 350"};
- { 4, "s31437", "24251", "=q3=Blackstrike Bracers", "=ds=#sr# 350"};
- { 5, "s37882", "30837", "=q3=Flameheart Bracers", "=ds=#sr# 350"};
- { 6, "s31434", "24249", "=q3=Unyielding Bracers", "=ds=#sr# 350"};
- { 7, "s31435", "24250", "=q3=Bracers of Havok", "=ds=#sr# 350"};
- { 8, "s26764", "21849", "=q2=Netherweave Bracers", "=ds=#sr# 310"};
-
- };
- {
- Name = AL["Bags"];
- { 1, "s26759", "21872", "=q3=Ebon Shadowbag", "=ds=#sr# 375"};
- { 2, "s50194", "38225", "=q3=Mycah's Botanical Bag", "=ds=#sr# 375"};
- { 3, "s26763", "21876", "=q3=Primal Mooncloth Bag", "=ds=#sr# 375"};
- { 4, "s26755", "21858", "=q3=Spellfire Bag", "=ds=#sr# 375"};
- { 5, "s18455", "14156", "=q3=Bottomless Bag", "=ds=#sr# 300"};
- { 6, "s26086", "21341", "=q3=Felcloth Bag", "=ds=#sr# 280"};
- { 7, "s56007", "41599", "=q2=Frostweave Bag", "=ds="..AL["Trainer"] };
- { 8, "s31459", "24270", "=q2=Bag of Jewels", "=ds=#sr# 340"};
- { 9, "s26749", "21843", "=q2=Imbued Netherweave Bag", "=ds=#sr# 340"};
- { 10, "s26746", "21841", "=q2=Netherweave Bag", "=ds=#sr# 315"};
- };
- {
- Name = AL["Miscellaneous"];
- { 1, "s31433", "24276", "=q4=Golden Spellthread", "=ds=#sr# 375"};
- { 2, "s31432", "24274", "=q4=Runic Spellthread", "=ds=#sr# 375"};
- { 3, "s26751", "21845", "=q3=Primal Mooncloth", "=ds=#sr# 350"};
- { 4, "s36686", "24272", "=q3=Shadowcloth", "=ds=#sr# 350"};
- { 5, "s31373", "24271", "=q3=Spellcloth", "=ds=#sr# 350"};
- { 6, "s31430", "24273", "=q3=Mystic Spellthread", "=ds=#sr# 335"};
- { 7, "s31431", "24275", "=q3=Silver Spellthread", "=ds=#sr# 335"};
- { 8, "s26747", "21842", "=q2=Bolt of Imbued Netherweave", "=ds=#sr# 325"};
- { 9, "s26750", "21844", "=q1=Bolt of Soulcloth", "=ds=#sr# 345"};
- { 10, "s26745", "21840", "=q1=Bolt of Netherweave", "=ds=#sr# 300"};
- { 11, "s31460", "24268", "=q1=Netherweave Net", "=ds=#sr# 300"};
- };
- {
- Name = MOONCLOTH;
- { 1, "s26762", "21875", "=q4=Primal Mooncloth Robe", "=ds=#sr# 375"};
- { 2, "s26761", "21874", "=q4=Primal Mooncloth Shoulders", "=ds=#sr# 365"};
- { 3, "s26760", "21873", "=q4=Primal Mooncloth Belt", "=ds=#sr# 355"};
- };
- {
- Name = SHADOWEAVE;
- { 1, "s26758", "21871", "=q4=Frozen Shadoweave Robe", "=ds=#sr# 375"};
- { 2, "s26757", "21870", "=q4=Frozen Shadoweave Boots", "=ds=#sr# 365"};
- { 3, "s26756", "21869", "=q4=Frozen Shadoweave Shoulders", "=ds=#sr# 355"};
- };
- {
- Name = SPELLFIRE;
- { 1, "s26754", "21848", "=q4=Spellfire Robe", "=ds=#sr# 375"};
- { 2, "s26753", "21847", "=q4=Spellfire Gloves", "=ds=#sr# 365"};
- { 3, "s26752", "21846", "=q4=Spellfire Belt", "=ds=#sr# 355"};
- };
- };
-
- -----------------------
- --- Profession Sets ---
- -----------------------
-
- -------------------------------
- --- Blacksmithing Mail Sets ---
- -------------------------------
-
- AtlasLoot_Data["BlacksmithingMailBloodsoulEmbrace"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbm1#", ""};
- { 2, 19691, "", "=q3=Bloodsoul Shoulders", "=ds=#s3#, #a3#"};
- { 3, 19690, "", "=q3=Bloodsoul Breastplate", "=ds=#s5#, #a3#"};
- { 4, 19692, "", "=q3=Bloodsoul Gauntlets", "=ds=#s9#, #a3#"};
- Next = "BlacksmithingMailFelIronChain";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingMailFelIronChain"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbm2#", ""};
- { 2, 23493, "", "=q2=Fel Iron Chain Coif", "=ds=#s1#, #a3#"};
- { 3, 23490, "", "=q2=Fel Iron Chain Tunic", "=ds=#s5#, #a3#"};
- { 4, 23494, "", "=q2=Fel Iron Chain Bracers", "=ds=#s8#, #a3#"};
- { 5, 23491, "", "=q2=Fel Iron Chain Gloves", "=ds=#s9#, #a3#"};
- Prev = "BlacksmithingMailBloodsoulEmbrace";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- --------------------------------
- --- Blacksmithing Plate Sets ---
- --------------------------------
-
- AtlasLoot_Data["BlacksmithingPlateImperialPlate"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp1#", ""};
- { 2, 12427, "", "=q2=Imperial Plate Helm", "=ds=#s1#, #a4#"};
- { 3, 12428, "", "=q2=Imperial Plate Shoulders", "=ds=#s3#, #a4#"};
- { 4, 12422, "", "=q2=Imperial Plate Chest", "=ds=#s5#, #a4#"};
- { 5, 12425, "", "=q2=Imperial Plate Bracers", "=ds=#s8#, #a4#"};
- { 6, 12424, "", "=q2=Imperial Plate Belt", "=ds=#s10#, #a4#"};
- { 7, 12429, "", "=q2=Imperial Plate Leggings", "=ds=#s11#, #a4#"};
- { 8, 12426, "", "=q2=Imperial Plate Boots", "=ds=#s12#, #a4#"};
- Next = "BlacksmithingPlateTheDarksoul";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateTheDarksoul"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp2#", ""};
- { 2, 19695, "", "=q3=Darksoul Shoulders", "=ds=#s3#, #a4#"};
- { 3, 19693, "", "=q3=Darksoul Breastplate", "=ds=#s5#, #a4#"};
- { 4, 19694, "", "=q3=Darksoul Leggings", "=ds=#s11#, #a4#"};
- Prev = "BlacksmithingPlateImperialPlate";
- Next = "BlacksmithingPlateFelIronPlate";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateFelIronPlate"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp3#", ""};
- { 2, 23489, "", "=q2=Fel Iron Breastplate", "=ds=#s5#, #a4#"};
- { 3, 23482, "", "=q2=Fel Iron Plate Gloves", "=ds=#s9#, #a4#"};
- { 4, 23484, "", "=q2=Fel Iron Plate Belt", "=ds=#s10#, #a4#"};
- { 5, 23488, "", "=q2=Fel Iron Plate Pants", "=ds=#s11#, #a4#"};
- { 6, 23487, "", "=q2=Fel Iron Plate Boots", "=ds=#s12#, #a4#"};
- Prev = "BlacksmithingPlateTheDarksoul";
- Next = "BlacksmithingPlateAdamantiteB";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateAdamantiteB"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp4#", ""};
- { 2, 23507, "", "=q3=Adamantite Breastplate", "=ds=#s5#, #a4#"};
- { 3, 23506, "", "=q3=Adamantite Plate Bracers", "=ds=#s8#, #a4#"};
- { 4, 23508, "", "=q3=Adamantite Plate Gloves", "=ds=#s9#, #a4#"};
- Prev = "BlacksmithingPlateFelIronPlate";
- Next = "BlacksmithingPlateFlameG";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateFlameG"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp5#", "=q1=#j11#"};
- { 2, 23516, "", "=q3=Flamebane Helm", "=ds=#s1#, #a4#"};
- { 3, 23513, "", "=q3=Flamebane Breastplate", "=ds=#s5#, #a4#"};
- { 4, 23515, "", "=q3=Flamebane Bracers", "=ds=#s8#, #a4#"};
- { 5, 23514, "", "=q3=Flamebane Gloves", "=ds=#s9#, #a4#"};
- Prev = "BlacksmithingPlateAdamantiteB";
- Next = "BlacksmithingPlateEnchantedAdaman";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateEnchantedAdaman"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp6#", "=q1=#j12#"};
- { 2, 23509, "", "=q3=Enchanted Adamantite Breastplate", "=ds=#s5#, #a4#"};
- { 3, 23510, "", "=q3=Enchanted Adamantite Belt", "=ds=#s10#, #a4#"};
- { 4, 23512, "", "=q3=Enchanted Adamantite Leggings", "=ds=#s11#, #a4#"};
- { 5, 23511, "", "=q3=Enchanted Adamantite Boots", "=ds=#s12#, #a4#"};
- Prev = "BlacksmithingPlateFlameG";
- Next = "BlacksmithingPlateKhoriumWard";
- Back = "CRAFTSET1";
- };
-
- AtlasLoot_Data["BlacksmithingPlateKhoriumWard"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp7#", ""};
- { 2, 23524, "", "=q3=Khorium Belt", "=ds=#s10#, #a4#"};
- { 3, 23523, "", "=q3=Khorium Pants", "=ds=#s11#, #a4#"};
- { 4, 23525, "", "=q3=Khorium Boots", "=ds=#s12#, #a4#"};
- Prev = "BlacksmithingPlateEnchantedAdaman";
- Next = "BlacksmithingPlateFaithFelsteel";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateFaithFelsteel"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp8#", ""};
- { 2, 23519, "", "=q3=Felsteel Helm", "=ds=#s1#, #a4#"};
- { 3, 23517, "", "=q3=Felsteel Gloves", "=ds=#s9#, #a4#"};
- { 4, 23518, "", "=q3=Felsteel Leggings", "=ds=#s11#, #a4#"};
- Prev = "BlacksmithingPlateKhoriumWard";
- Next = "BlacksmithingPlateBurningRage";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateBurningRage"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp9#", ""};
- { 2, 23521, "", "=q3=Ragesteel Helm", "=ds=#s1#, #a4#"};
- { 3, 33173, "", "=q3=Ragesteel Shoulders", "=ds=#s3#, #a4#"};
- { 4, 23522, "", "=q3=Ragesteel Breastplate", "=ds=#s5#, #a4#"};
- { 5, 23520, "", "=q3=Ragesteel Gloves", "=ds=#s9#, #a4#"};
- Prev = "BlacksmithingPlateFaithFelsteel";
- Next = "BlacksmithingPlateOrnateSaroniteBattlegear";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateOrnateSaroniteBattlegear"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp10#", ""};
- { 2, 42728, "", "=q3=Ornate Saronite Skullshield", "=ds=#s1#, #a4#"};
- { 3, 42727, "", "=q3=Ornate Saronite Pauldrons", "=ds=#s3#, #a4#"};
- { 4, 42725, "", "=q3=Ornate Saronite Hauberk", "=ds=#s5#, #a4#"};
- { 5, 42723, "", "=q3=Ornate Saronite Bracers", "=ds=#s8#, #a4#"};
- { 6, 42724, "", "=q3=Ornate Saronite Gauntlets", "=ds=#s9#, #a4#"};
- { 7, 42729, "", "=q3=Ornate Saronite Waistguard", "=ds=#s10#, #a4#"};
- { 8, 42726, "", "=q3=Ornate Saronite Legplates", "=ds=#s11#, #a4#"};
- { 9, 42730, "", "=q3=Ornate Saronite Walkers", "=ds=#s12#, #a4#"};
- Prev = "BlacksmithingPlateBurningRage";
- Next = "BlacksmithingPlateSavageSaroniteBattlegear";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateSavageSaroniteBattlegear"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp11#", ""};
- { 2, 41350, "", "=q3=Savage Saronite Skullshield", "=ds=#s1#, #a4#"};
- { 3, 41351, "", "=q3=Savage Saronite Pauldrons", "=ds=#s3#, #a4#"};
- { 4, 41353, "", "=q3=Savage Saronite Hauberk", "=ds=#s5#, #a4#"};
- { 5, 41354, "", "=q3=Savage Saronite Bracers", "=ds=#s8#, #a4#"};
- { 6, 41349, "", "=q3=Savage Saronite Gauntlets", "=ds=#s9#, #a4#"};
- { 7, 41352, "", "=q3=Savage Saronite Waistguard", "=ds=#s10#, #a4#"};
- { 8, 41347, "", "=q3=Savage Saronite Legplates", "=ds=#s11#, #a4#"};
- { 9, 41348, "", "=q3=Savage Saronite Walkers", "=ds=#s12#, #a4#"};
- Prev = "BlacksmithingPlateOrnateSaroniteBattlegear";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- -----------------------------------
- --- Leatherworking Leather Sets ---
- -----------------------------------
-
- AtlasLoot_Data["LeatherworkingLeatherVolcanicArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl1#", "=q1=#j11#"};
- { 2, 15055, "", "=q2=Volcanic Shoulders", "=ds=#s3#, #a2#"};
- { 3, 15053, "", "=q2=Volcanic Breastplate", "=ds=#s5#, #a2#"};
- { 4, 15054, "", "=q2=Volcanic Leggings", "=ds=#s11#, #a2#"};
- Next = "LeatherworkingLeatherIronfeatherArmor";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherIronfeatherArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl2#", ""};
- { 2, 15067, "", "=q3=Ironfeather Shoulders", "=ds=#s3#, #a2#"};
- { 3, 15066, "", "=q3=Ironfeather Breastplate", "=ds=#s5#, #a2#"};
- Prev = "LeatherworkingLeatherVolcanicArmor";
- Next = "LeatherworkingLeatherStormshroudArmor";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherStormshroudArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl3#", ""};
- { 2, 15058, "", "=q3=Stormshroud Shoulders", "=ds=#s3#, #a2#"};
- { 3, 15056, "", "=q3=Stormshroud Armor", "=ds=#s5#, #a2#"};
- { 4, 21278, "", "=q3=Stormshroud Gloves", "=ds=#s9#, #a2#"};
- { 5, 15057, "", "=q3=Stormshroud Pants", "=ds=#s11#, #a2#"};
- Prev = "LeatherworkingLeatherIronfeatherArmor";
- Next = "LeatherworkingLeatherDevilsaurArmor";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherDevilsaurArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl4#", ""};
- { 2, 15063, "", "=q3=Devilsaur Gauntlets", "=ds=#s9#, #a2#"};
- { 3, 15062, "", "=q3=Devilsaur Leggings", "=ds=#s11#, #a2#"};
- Prev = "LeatherworkingLeatherStormshroudArmor";
- Next = "LeatherworkingLeatherBloodTigerH";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherBloodTigerH"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl5#", ""};
- { 2, 19689, "", "=q3=Blood Tiger Shoulders", "=ds=#s3#, #a2#"};
- { 3, 19688, "", "=q3=Blood Tiger Breastplate", "=ds=#s5#, #a2#"};
- Prev = "LeatherworkingLeatherDevilsaurArmor";
- Next = "LeatherworkingLeatherPrimalBatskin";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherPrimalBatskin"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl6#", ""};
- { 2, 19685, "", "=q3=Primal Batskin Jerkin", "=ds=#s5#, #a2#"};
- { 3, 19687, "", "=q3=Primal Batskin Bracers", "=ds=#s8#, #a2#"};
- { 4, 19686, "", "=q3=Primal Batskin Gloves", "=ds=#s9#, #a2#"};
- Prev = "LeatherworkingLeatherBloodTigerH";
- Next = "LeatherworkingLeatherWildDraenishA";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherWildDraenishA"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl7#", ""};
- { 2, 25676, "", "=q2=Wild Draenish Vest", "=ds=#s5#, #a2#"};
- { 3, 25674, "", "=q2=Wild Draenish Gloves", "=ds=#s9#, #a2#"};
- { 4, 25675, "", "=q2=Wild Draenish Leggings", "=ds=#s11#, #a2#"};
- { 5, 25673, "", "=q2=Wild Draenish Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherPrimalBatskin";
- Next = "LeatherworkingLeatherThickDraenicA";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherThickDraenicA"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl8#", ""};
- { 2, 25671, "", "=q2=Thick Draenic Vest", "=ds=#s5#, #a2#"};
- { 3, 25669, "", "=q2=Thick Draenic Gloves", "=ds=#s9#, #a2#"};
- { 4, 25670, "", "=q2=Thick Draenic Pants", "=ds=#s11#, #a2#"};
- { 5, 25668, "", "=q2=Thick Draenic Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherWildDraenishA";
- Next = "LeatherworkingLeatherFelSkin";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherFelSkin"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl9#", ""};
- { 2, 25685, "", "=q3=Fel Leather Gloves", "=ds=#s9#, #a2#"};
- { 3, 25687, "", "=q3=Fel Leather Leggings", "=ds=#s11#, #a2#"};
- { 4, 25686, "", "=q3=Fel Leather Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherThickDraenicA";
- Next = "LeatherworkingLeatherSClefthoof";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherSClefthoof"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl10#", ""};
- { 2, 25689, "", "=q3=Heavy Clefthoof Vest", "=ds=#s5#, #a2#"};
- { 3, 25690, "", "=q3=Heavy Clefthoof Leggings", "=ds=#s11#, #a2#"};
- { 4, 25691, "", "=q3=Heavy Clefthoof Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherFelSkin";
- Next = "LeatherworkingLeatherPrimalIntent";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherPrimalIntent"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwe1#", "=q1=#p11#"};
- { 2, 29525, "", "=q4=Primalstrike Vest", "=ds=#s5#, #a2#"};
- { 3, 29527, "", "=q4=Primalstrike Bracers", "=ds=#s8#, #a2#"};
- { 4, 29526, "", "=q4=Primalstrike Belt", "=ds=#s10#, #a2#"};
- Prev = "LeatherworkingLeatherSClefthoof";
- Next = "LeatherworkingLeatherWindhawkArmor";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherWindhawkArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwt1#", "=q1=#p10#"};
- { 2, 29522, "", "=q4=Windhawk Hauberk", "=ds=#s5#, #a2#"};
- { 3, 29523, "", "=q4=Windhawk Bracers", "=ds=#s8#, #a2#"};
- { 4, 29524, "", "=q4=Windhawk Belt", "=ds=#s10#, #a2#"};
- Prev = "LeatherworkingLeatherPrimalIntent";
- Next = "LeatherworkingLeatherBoreanEmbrace";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherBoreanEmbrace"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl11#", ""};
- { 2, 38437, "", "=q2=Arctic Helm", "=ds=#s1#, #a2#"};
- { 3, 38402, "", "=q2=Arctic Shoulderpads", "=ds=#s3#, #a2#"};
- { 4, 38400, "", "=q2=Arctic Chestpiece", "=ds=#s5#, #a2#"};
- { 5, 38433, "", "=q2=Arctic Wristguards", "=ds=#s8#, #a2#"};
- { 6, 38403, "", "=q2=Arctic Gloves", "=ds=#s9#, #a2#"};
- { 7, 38405, "", "=q2=Arctic Belt", "=ds=#s10#, #a2#"};
- { 8, 38401, "", "=q2=Arctic Leggings", "=ds=#s11#, #a2#"};
- { 9, 38404, "", "=q2=Arctic Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherWindhawkArmor";
- Next = "LeatherworkingLeatherIceborneEmbrace";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherIceborneEmbrace"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl12#", ""};
- { 2, 38438, "", "=q2=Iceborne Helm", "=ds=#s1#, #a2#"};
- { 3, 38411, "", "=q2=Iceborne Shoulderpads", "=ds=#s3#, #a2#"};
- { 4, 38408, "", "=q2=Iceborne Chestguard", "=ds=#s5#, #a2#"};
- { 5, 38434, "", "=q2=Iceborne Wristguards", "=ds=#s8#, #a2#"};
- { 6, 38409, "", "=q2=Iceborne Gloves", "=ds=#s9#, #a2#"};
- { 7, 38406, "", "=q2=Iceborne Belt", "=ds=#s10#, #a2#"};
- { 8, 38410, "", "=q2=Iceborne Leggings", "=ds=#s11#, #a2#"};
- { 9, 38407, "", "=q2=Iceborne Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherBoreanEmbrace";
- Next = "LeatherworkingLeatherEvisceratorBattlegear";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherEvisceratorBattlegear"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl13#", ""};
- { 2, 43260, "", "=q3=Eviscerator's Facemask", "=ds=#s1#, #a2#"};
- { 3, 43433, "", "=q3=Eviscerator's Shoulderpads", "=ds=#s3#, #a2#"};
- { 4, 43434, "", "=q3=Eviscerator's Chestguard", "=ds=#s5#, #a2#"};
- { 5, 43435, "", "=q3=Eviscerator's Bindings", "=ds=#s8#, #a2#"};
- { 6, 43436, "", "=q3=Eviscerator's Gauntlets", "=ds=#s9#, #a2#"};
- { 7, 43437, "", "=q3=Eviscerator's Waistguard", "=ds=#s10#, #a2#"};
- { 8, 43438, "", "=q3=Eviscerator's Legguards", "=ds=#s11#, #a2#"};
- { 9, 43439, "", "=q3=Eviscerator's Treads", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherIceborneEmbrace";
- Next = "LeatherworkingLeatherOvercasterBattlegear";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherOvercasterBattlegear"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl14#", ""};
- { 2, 43261, "", "=q3=Overcast Headguard", "=ds=#s1#, #a2#"};
- { 3, 43262, "", "=q3=Overcast Spaulders", "=ds=#s3#, #a2#"};
- { 4, 43263, "", "=q3=Overcast Chestguard", "=ds=#s5#, #a2#"};
- { 5, 43264, "", "=q3=Overcast Bracers", "=ds=#s8#, #a2#"};
- { 6, 43265, "", "=q3=Overcast Handwraps", "=ds=#s9#, #a2#"};
- { 7, 43266, "", "=q3=Overcast Belt", "=ds=#s10#, #a2#"};
- { 8, 43271, "", "=q3=Overcast Leggings", "=ds=#s11#, #a2#"};
- { 9, 43273, "", "=q3=Overcast Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherEvisceratorBattlegear";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- --------------------------------
- --- Leatherworking Mail Sets ---
- --------------------------------
-
- AtlasLoot_Data["LeatherworkingMailGreenDragonM"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm1#", "=q1=#j13#"};
- { 2, 15045, "", "=q3=Green Dragonscale Breastplate", "=ds=#s5#, #a3#"};
- { 3, 20296, "", "=q3=Green Dragonscale Gauntlets", "=ds=#s9#, #a3#"};
- { 4, 15046, "", "=q3=Green Dragonscale Leggings", "=ds=#s11#, #a3#"};
- Next = "LeatherworkingMailBlueDragonM";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailBlueDragonM"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm2#", "=q1=#j12#"};
- { 2, 15049, "", "=q3=Blue Dragonscale Shoulders", "=ds=#s3#, #a3#"};
- { 3, 15048, "", "=q3=Blue Dragonscale Breastplate", "=ds=#s5#, #a3#"};
- { 4, 20295, "", "=q3=Blue Dragonscale Leggings", "=ds=#s11#, #a3#"};
- Prev = "LeatherworkingMailGreenDragonM";
- Next = "LeatherworkingMailBlackDragonM";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailBlackDragonM"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm3#", "=q1=#j11#"};
- { 2, 15051, "", "=q3=Black Dragonscale Shoulders", "=ds=#s3#, #a3#"};
- { 3, 15050, "", "=q3=Black Dragonscale Breastplate", "=ds=#s5#, #a3#"};
- { 4, 15052, "", "=q3=Black Dragonscale Leggings", "=ds=#s11#, #a3#"};
- { 5, 16984, "", "=q4=Black Dragonscale Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailBlueDragonM";
- Next = "LeatherworkingMailScaledDraenicA";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailScaledDraenicA"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm4#", ""};
- { 2, 25660, "", "=q2=Scaled Draenic Vest", "=ds=#s5#, #a3#"};
- { 3, 25661, "", "=q2=Scaled Draenic Gloves", "=ds=#s9#, #a3#"};
- { 4, 25662, "", "=q2=Scaled Draenic Pants", "=ds=#s11#, #a3#"};
- { 5, 25659, "", "=q2=Scaled Draenic Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailBlackDragonM";
- Next = "LeatherworkingMailFelscaleArmor";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailFelscaleArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm5#", ""};
- { 2, 25657, "", "=q2=Felscale Breastplate", "=ds=#s5#, #a3#"};
- { 3, 25654, "", "=q2=Felscale Gloves", "=ds=#s9#, #a3#"};
- { 4, 25656, "", "=q2=Felscale Pants", "=ds=#s11#, #a3#"};
- { 5, 25655, "", "=q2=Felscale Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailScaledDraenicA";
- Next = "LeatherworkingMailFelstalkerArmor";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailFelstalkerArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm6#", ""};
- { 2, 25696, "", "=q3=Felstalker Breastplate", "=ds=#s5#, #a3#"};
- { 3, 25697, "", "=q3=Felstalker Bracers", "=ds=#s8#, #a3#"};
- { 4, 25695, "", "=q3=Felstalker Belt", "=ds=#s10#, #a3#"};
- Prev = "LeatherworkingMailFelscaleArmor";
- Next = "LeatherworkingMailNetherFury";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailNetherFury"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm7#", ""};
- { 2, 25694, "", "=q3=Netherfury Belt", "=ds=#s10#, #a3#"};
- { 3, 25692, "", "=q3=Netherfury Leggings", "=ds=#s11#, #a3#"};
- { 4, 25693, "", "=q3=Netherfury Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailFelstalkerArmor";
- Next = "LeatherworkingMailNetherscaleArmor";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailNetherscaleArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwd1#", "=q1=#p9#"};
- { 2, 29515, "", "=q4=Ebon Netherscale Breastplate", "=ds=#s5#, #a3#"};
- { 3, 29517, "", "=q4=Ebon Netherscale Bracers", "=ds=#s8#, #a3#"};
- { 4, 29516, "", "=q4=Ebon Netherscale Belt", "=ds=#s10#, #a3#"};
- Prev = "LeatherworkingMailNetherFury";
- Next = "LeatherworkingMailNetherstrikeArmor";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailNetherstrikeArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwd2#", "=q1=#p9#"};
- { 2, 29519, "", "=q4=Netherstrike Breastplate", "=ds=#s5#, #a3#"};
- { 3, 29521, "", "=q4=Netherstrike Bracers", "=ds=#s8#, #a3#"};
- { 4, 29520, "", "=q4=Netherstrike Belt", "=ds=#s10#, #a3#"};
- Prev = "LeatherworkingMailNetherscaleArmor";
- Next = "LeatherworkingMailFrostscaleBinding";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailFrostscaleBinding"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm8#", ""};
- { 2, 38440, "", "=q2=Frostscale Helm", "=ds=#s1#, #a3#"};
- { 3, 38424, "", "=q2=Frostscale Shoulders", "=ds=#s3#, #a3#"};
- { 4, 38414, "", "=q2=Frostscale Chestguard", "=ds=#s5#, #a3#"};
- { 5, 38436, "", "=q2=Frostscale Bracers", "=ds=#s8#, #a3#"};
- { 6, 38415, "", "=q2=Frostscale Gloves", "=ds=#s9#, #a3#"};
- { 7, 38412, "", "=q2=Frostscale Belt", "=ds=#s10#, #a3#"};
- { 8, 38416, "", "=q2=Frostscale Leggings", "=ds=#s11#, #a3#"};
- { 9, 38413, "", "=q2=Frostscale Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailNetherstrikeArmor";
- Next = "LeatherworkingMailNerubianHive";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailNerubianHive"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm9#", ""};
- { 2, 38439, "", "=q2=Nerubian Helm", "=ds=#s1#, #a3#"};
- { 3, 38417, "", "=q2=Nerubian Shoulders", "=ds=#s3#, #a3#"};
- { 4, 38420, "", "=q2=Nerubian Chestguard", "=ds=#s5#, #a3#"};
- { 5, 38435, "", "=q2=Nerubian Bracers", "=ds=#s8#, #a3#"};
- { 6, 38421, "", "=q2=Nerubian Gloves", "=ds=#s9#, #a3#"};
- { 7, 38418, "", "=q2=Nerubian Belt", "=ds=#s10#, #a3#"};
- { 8, 38422, "", "=q2=Nerubian Legguards", "=ds=#s11#, #a3#"};
- { 9, 38419, "", "=q2=Nerubian Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailFrostscaleBinding";
- Next = "LeatherworkingMailStormhideBattlegear";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailStormhideBattlegear"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm10#", ""};
- { 2, 43455, "", "=q3=Stormhide Crown", "=ds=#s1#, #a3#"};
- { 3, 43457, "", "=q3=Stormhide Shoulders", "=ds=#s3#, #a3#"};
- { 4, 43453, "", "=q3=Stormhide Hauberk", "=ds=#s5#, #a3#"};
- { 5, 43452, "", "=q3=Stormhide Wristguards", "=ds=#s8#, #a3#"};
- { 6, 43454, "", "=q3=Stormhide Grips", "=ds=#s9#, #a3#"};
- { 7, 43450, "", "=q3=Stormhide Belt", "=ds=#s10#, #a3#"};
- { 8, 43456, "", "=q3=Stormhide Legguards", "=ds=#s11#, #a3#"};
- { 9, 43451, "", "=q3=Stormhide Stompers", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailNerubianHive";
- Next = "LeatherworkingMailSwiftarrowBattlefear";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailSwiftarrowBattlefear"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm11#", ""};
- { 2, 43447, "", "=q3=Swiftarrow Helm", "=ds=#s1#, #a3#"};
- { 3, 43449, "", "=q3=Swiftarrow Shoulderguards", "=ds=#s3#, #a3#"};
- { 4, 43445, "", "=q3=Swiftarrow Hauberk", "=ds=#s5#, #a3#"};
- { 5, 43444, "", "=q3=Swiftarrow Bracers", "=ds=#s8#, #a3#"};
- { 6, 43446, "", "=q3=Swiftarrow Gauntlets", "=ds=#s9#, #a3#"};
- { 7, 43442, "", "=q3=Swiftarrow Belt", "=ds=#s10#, #a3#"};
- { 8, 43448, "", "=q3=Swiftarrow Leggings", "=ds=#s11#, #a3#"};
- { 9, 43443, "", "=q3=Swiftarrow Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailStormhideBattlegear";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- ----------------------
- --- Tailoring Sets ---
- ----------------------
-
- AtlasLoot_Data["TailoringBloodvineG"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt1#", ""};
- { 2, 19682, "", "=q3=Bloodvine Vest", "=ds=#s5#, #a1#"};
- { 3, 19683, "", "=q3=Bloodvine Leggings", "=ds=#s11#, #a1#"};
- { 4, 19684, "", "=q3=Bloodvine Boots", "=ds=#s12#, #a1#"};
- Next = "TailoringNeatherVest";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringNeatherVest"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt2#", ""};
- { 2, 21855, "", "=q2=Netherweave Tunic", "=ds=#s5#, #a1#"};
- { 3, 21854, "", "=q2=Netherweave Robe", "=ds=#s5#, #a1#"};
- { 4, 21849, "", "=q2=Netherweave Bracers", "=ds=#s8#, #a1#"};
- { 5, 21851, "", "=q2=Netherweave Gloves", "=ds=#s9#, #a1##"};
- { 6, 21850, "", "=q2=Netherweave Belt", "=ds=#s10#, #a1#"};
- { 7, 21852, "", "=q2=Netherweave Pants", "=ds=#s11#, #a1#"};
- { 8, 21853, "", "=q2=Netherweave Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringBloodvineG";
- Next = "TailoringImbuedNeather";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringImbuedNeather"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt3#", ""};
- { 2, 21862, "", "=q3=Imbued Netherweave Tunic", "=ds=#s5#, #a1#"};
- { 3, 21861, "", "=q3=Imbued Netherweave Robe", "=ds=#s5#, #a1#"};
- { 4, 21859, "", "=q3=Imbued Netherweave Pants", "=ds=#s11#, #a1#"};
- { 5, 21860, "", "=q3=Imbued Netherweave Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringNeatherVest";
- Next = "TailoringArcanoVest";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringArcanoVest"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt4#", "=q1=#j12#"};
- { 2, 21868, "", "=q3=Arcanoweave Robe", "=ds=#s5#, #a1#"};
- { 3, 21866, "", "=q3=Arcanoweave Bracers", "=ds=#s8#, #a1#"};
- { 4, 21867, "", "=q3=Arcanoweave Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringImbuedNeather";
- Next = "TailoringTheUnyielding";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringTheUnyielding"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt5#", ""};
- { 2, 24249, "", "=q3=Unyielding Bracers", "=ds=#s8#, #a1#"};
- { 3, 24255, "", "=q4=Unyielding Girdle", "=ds=#s10#, #a1#"};
- Prev = "TailoringArcanoVest";
- Next = "TailoringWhitemendWis";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringWhitemendWis"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt6#", ""};
- { 2, 24264, "", "=q4=Whitemend Hood", "=ds=#s1#, #a1#"};
- { 3, 24261, "", "=q4=Whitemend Pants", "=ds=#s11#, #a1#"};
- Prev = "TailoringTheUnyielding";
- Next = "TailoringSpellstrikeInfu";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringSpellstrikeInfu"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt7#", ""};
- { 2, 24266, "", "=q4=Spellstrike Hood", "=ds=#s1#, #a1#"};
- { 3, 24262, "", "=q4=Spellstrike Pants", "=ds=#s11#, #a1#"};
- Prev = "TailoringWhitemendWis";
- Next = "TailoringBattlecastG";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringBattlecastG"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt8#", ""};
- { 2, 24267, "", "=q4=Battlecast Hood", "=ds=#s1#, #a1#"};
- { 3, 24263, "", "=q4=Battlecast Pants", "=ds=#s11#, #a1#"};
- Prev = "TailoringSpellstrikeInfu";
- Next = "TailoringSoulclothEm";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringSoulclothEm"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt9#", "=q1=#j12#"};
- { 2, 21864, "", "=q4=Soulcloth Shoulders", "=ds=#s3#, #a1#"};
- { 3, 21865, "", "=q4=Soulcloth Vest", "=ds=#s5#, #a1#"};
- { 4, 21863, "", "=q4=Soulcloth Gloves", "=ds=#s9#, #a1#"};
- Prev = "TailoringBattlecastG";
- Next = "TailoringPrimalMoon";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringPrimalMoon"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#crafttm1#", "=q1=#p19#"};
- { 2, 21874, "", "=q4=Primal Mooncloth Shoulders", "=ds=#s3#, #a1#"};
- { 3, 21875, "", "=q4=Primal Mooncloth Robe", "=ds=#s5#, #a1#"};
- { 4, 21873, "", "=q4=Primal Mooncloth Belt", "=ds=#s10#, #a1#"};
- Prev = "TailoringSoulclothEm";
- Next = "TailoringShadowEmbrace";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringShadowEmbrace"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#crafttsh1#", "=q1=#p20#"};
- { 2, 21869, "", "=q4=Frozen Shadoweave Shoulders", "=ds=#s3#, #a1#"};
- { 3, 21871, "", "=q4=Frozen Shadoweave Vest", "=ds=#s5#, #a1#"};
- { 4, 21870, "", "=q4=Frozen Shadoweave Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringPrimalMoon";
- Next = "TailoringSpellfireWRATH";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringSpellfireWRATH"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#crafttsf1#", "=q1=#p21#"};
- { 2, 21848, "", "=q4=Spellfire Robe", "=ds=#s5#, #a1#"};
- { 3, 21847, "", "=q4=Spellfire Gloves", "=ds=#s9#, #a1#"};
- { 4, 21846, "", "=q4=Spellfire Belt", "=ds=#s10#, #a1#"};
- Prev = "TailoringShadowEmbrace";
- Next = "TailoringFrostwovenPower";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringFrostwovenPower"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt10#", ""};
- { 2, 41521, "", "=q2=Frostwoven Cowl", "=ds=#s1#, #a1#"};
- { 3, 41513, "", "=q2=Frostwoven Shoulders", "=ds=#s3#, #a1#"};
- { 4, 41515, "", "=q2=Frostwoven Robe", "=ds=#s5#, #a1#"};
- { 5, 41512, "", "=q2=Frostwoven Wristwraps", "=ds=#s8#, #a1#"};
- { 6, 44211, "", "=q2=Frostwoven Gloves", "=ds=#s9#, #a1#"};
- { 7, 41522, "", "=q2=Frostwoven Belt", "=ds=#s10#, #a1#"};
- { 8, 41519, "", "=q2=Frostwoven Leggings", "=ds=#s11#, #a1#"};
- { 9, 41520, "", "=q2=Frostwoven Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringSpellfireWRATH";
- Next = "TailoringDuskweaver";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringDuskweaver"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt11#", ""};
- { 2, 41546, "", "=q2=Duskweave Cowl", "=ds=#s1#, #a1#"};
- { 3, 41550, "", "=q2=Duskweave Shoulders", "=ds=#s3#, #a1#"};
- { 4, 41549, "", "=q2=Duskweave Robe", "=ds=#s5#, #a1#"};
- { 5, 41551, "", "=q2=Duskweave Wristwraps", "=ds=#s8#, #a1#"};
- { 6, 41545, "", "=q2=Duskweave Gloves", "=ds=#s9#, #a1#"};
- { 7, 41543, "", "=q2=Duskweave Belt", "=ds=#s10#, #a1#"};
- { 8, 41548, "", "=q2=Duskweave Leggings", "=ds=#s11#, #a1#"};
- { 9, 41544, "", "=q2=Duskweave Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringFrostwovenPower";
- Next = "TailoringFrostsavageBattlegear";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringFrostsavageBattlegear"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt12#", ""};
- { 2, 43971, "", "=q3=Frostsavage Cowl", "=ds=#s1#, #a1#"};
- { 3, 43973, "", "=q3=Frostsavage Shoulders", "=ds=#s3#, #a1#"};
- { 4, 43972, "", "=q3=Frostsavage Robe", "=ds=#s5#, #a1#"};
- { 5, 43974, "", "=q3=Frostsavage Bracers", "=ds=#s8#, #a1#"};
- { 6, 41516, "", "=q3=Frostsavage Gloves", "=ds=#s9#, #a1#"};
- { 7, 43969, "", "=q3=Frostsavage Belt", "=ds=#s10#, #a1#"};
- { 8, 43975, "", "=q3=Frostsavage Leggings", "=ds=#s11#, #a1#"};
- { 9, 43970, "", "=q3=Frostsavage Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringDuskweaver";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- -------------
- --- Other ---
- -------------
-
- ----------------------------
- --- Crafted Epic Weapons ---
- ----------------------------
-
- AtlasLoot_Data["CraftedWeapons1"] = {
- { 1, 49888, "", "=q4=Shadow's Edge", "=ds=#h2#, #w1#"};
- { 3, 0, "INV_Box_01", "=q6=#p2#", "=q1=#j54#"};
- { 4, 45085, "", "=q4=Titansteel Spellblade", "=ds=#h3#, #w4#"};
- { 5, 42435, "", "=q4=Titansteel Shanker", "=ds=#h1#, #w4#"};
- { 6, 41383, "", "=q4=Titansteel Bonecrusher", "=ds=#h3#, #w6#"};
- { 7, 41384, "", "=q4=Titansteel Guardian", "=ds=#h3#, #w6#"};
- { 8, 41257, "", "=q4=Titansteel Destroyer", "=ds=#h2#, #w6#"};
- { 9, 42508, "", "=q4=Titansteel Shield Wall", "=ds=#w8#"};
- { 11, 0, "INV_Box_01", "=q6=#p5#", "=q1=#j54#"};
- { 12, 41168, "", "=q4=Armor Plated Combat Shotgun", "=ds=#w5#"};
- { 13, 44504, "", "=q4=Nesingwary 4000", "=ds=#w5#"};
- { 16, 0, "INV_Box_01", "=q6=#p2#", "=q1=#j10#"};
- { 17, 23554, "", "=q4=Eternium Runed Blade", "=ds=#h3#, #w4#"};
- { 18, 23555, "", "=q4=Dirge", "=ds=#h1#, #w4#"};
- { 19, 23540, "", "=q4=Felsteel Longblade", "=ds=#h1#, #w10#"};
- { 20, 23541, "", "=q4=Khorium Champion", "=ds=#h2#, #w10#"};
- { 21, 23542, "", "=q4=Fel Edged Battleaxe", "=ds=#h1#, #w1#"};
- { 22, 23543, "", "=q4=Felsteel Reaper", "=ds=#h2#, #w1#"};
- { 23, 23556, "", "=q4=Hand of Eternity", "=ds=#h3#, #w6#"};
- { 24, 23544, "", "=q4=Runic Hammer", "=ds=#h1#, #w6#"};
- { 25, 23546, "", "=q4=Fel Hardened Maul", "=ds=#h2#, #w6#"};
- { 26, 32854, "", "=q4=Hammer of Righteous Might", "=ds=#h2#, #w6#"};
- { 28, 0, "INV_Box_01", "=q6=#p5#", "=q1=#j10#"};
- { 29, 32756, "", "=q4=Gyro-balanced Khorium Destroyer", "=ds=#w5#"};
- Next = "CraftedWeapons2";
- Back = "CRAFTINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["CraftedWeapons2"] = {
- { 1, 0, "INV_Box_01", "=q6=#p2#", "=q1=#j9#"};
- { 2, 19166, "", "=q4=Black Amnesty", "=ds=#h1#, #w4#"};
- { 3, 22383, "", "=q4=Sageblade", "=ds=#h3#, #w10#"};
- { 4, 19168, "", "=q4=Blackguard", "=ds=#h1#, #w10#"};
- { 5, 19169, "", "=q4=Nightfall", "=ds=#h2#, #w1#"};
- { 6, 19170, "", "=q4=Ebon Hand", "=ds=#h1#, #w6#"};
- { 7, 22384, "", "=q4=Persuader", "=ds=#h1#, #w6#"};
- { 8, 17193, "", "=q4=Sulfuron Hammer", "=ds=#h2#, #w6#"};
- { 9, 19167, "", "=q4=Blackfury", "=ds=#w7#"};
- { 10, 22198, "", "=q4=Jagged Obsidian Shield", "=ds=#w8#"};
- { 12, 0, "INV_Box_01", "=q6=#p5#", "=q1=#j9#"};
- { 13, 18282, "", "=q4=Core Marksman Rifle", "=ds=#w5#"};
- { 14, 18168, "", "=q4=Force Reactive Disk", "=ds=#w8#"};
- Prev = "CraftedWeapons1";
- Next = "CraftedWeapons3";
- Back = "CRAFTINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["CraftedWeapons3"] = {
- { 1, 0, "INV_Box_01", "=q6=#p15#", ""};
- { 2, 28425, "", "=q4=Fireguard", "=ds=#h1#, #w10#"};
- { 3, 28426, "", "=q4=Blazeguard", "=ds=#h1#, #w10#"};
- { 4, 28427, "", "=q4=Blazefury", "=ds=#h1#, #w10#"};
- { 5, 28428, "", "=q4=Lionheart Blade", "=ds=#h2#, #w10#"};
- { 6, 28429, "", "=q4=Lionheart Champion", "=ds=#h2#, #w10#"};
- { 7, 28430, "", "=q4=Lionheart Executioner", "=ds=#h2#, #w10#"};
- { 9, 0, "INV_Box_01", "=q6=#p14#", ""};
- { 10, 28431, "", "=q4=The Planar Edge", "=ds=#h3#, #w1#"};
- { 11, 28432, "", "=q4=Black Planar Edge", "=ds=#h3#, #w1#"};
- { 12, 28433, "", "=q4=Wicked Edge of the Planes", "=ds=#h3#, #w1#"};
- { 13, 28434, "", "=q4=Lunar Crescent", "=ds=#h2#, #w1#"};
- { 14, 28435, "", "=q4=Mooncleaver", "=ds=#h2#, #w1#"};
- { 15, 28436, "", "=q4=Bloodmoon", "=ds=#h2#, #w1#"};
- { 16, 0, "INV_Box_01", "=q6=#p22#", ""};
- { 17, 28437, "", "=q4=Drakefist Hammer", "=ds=#h3#, #w6#"};
- { 18, 28438, "", "=q4=Dragonmaw", "=ds=#h3#, #w6#"};
- { 19, 28439, "", "=q4=Dragonstrike", "=ds=#h3#, #w6#"};
- { 20, 28440, "", "=q4=Thunder", "=ds=#h2#, #w6#"};
- { 21, 28441, "", "=q4=Deep Thunder", "=ds=#h2#, #w6#"};
- { 22, 28442, "", "=q4=Stormherald", "=ds=#h2#, #w6#"};
- Prev = "CraftedWeapons2";
- Back = "CRAFTINGMENU";
- Type = "Crafting";
- };
-
- --------------------------------
- --- Daily Profession Rewards ---
- --------------------------------
-
- ---------------
- --- Cooking ---
- ---------------
-
- AtlasLoot_Data["CookingDaily1"] = {
- { 1, 33925, "", "=q3=Recipe: Delicious Chocolate Cake", "=ds=#p3# (1)", "", ""};
- { 2, 33871, "", "=q3=Recipe: Stormchops", "=ds=#p3# (300)", "", ""};
- { 3, 33869, "", "=q3=Recipe: Broiled Bloodfin", "=ds=#p3# (300)", "", ""};
- { 4, 33875, "", "=q2=Recipe: Kibler's Bits", "=ds=#p3# (300)", "", ""};
- { 5, 33870, "", "=q2=Recipe: Skullfish Soup", "=ds=#p3# (325)", "", ""};
- { 6, 33873, "", "=q2=Recipe: Spicy Hot Talbuk", "=ds=#p3# (300)", "", ""};
- Next = "CookingDaily2";
- Back = "COOKINGDAILYMENU";
- };
-
- AtlasLoot_Data["CookingDaily2"] = {
- { 1, 43035, "", "=q2=Recipe: Blackened Dragonfin", "=ds=#p3# (400)"};
- { 2, 43032, "", "=q2=Recipe: Blackened Worg Steak", "=ds=#p3# (400)"};
- { 3, 43029, "", "=q2=Recipe: Critter Bites", "=ds=#p3# (400)"};
- { 4, 43033, "", "=q2=Recipe: Cuttlesteak", "=ds=#p3# (400)"};
- { 5, 43036, "", "=q2=Recipe: Dragonfin Filet", "=ds=#p3# (400)"};
- { 6, 43024, "", "=q2=Recipe: Firecracker Salmon", "=ds=#p3# (400)"};
- { 7, 43030, "", "=q2=Recipe: Hearty Rhino", "=ds=#p3# (400)"};
- { 8, 43026, "", "=q2=Recipe: Imperial Manta Steak", "=ds=#p3# (400)"};
- { 9, 43018, "", "=q2=Recipe: Mega Mammoth Meal", "=ds=#p3# (400)"};
- { 10, 43022, "", "=q2=Recipe: Mighty Rhino Dogs", "=ds=#p3# (400)"};
- { 11, 43023, "", "=q2=Recipe: Poached Northern Sculpin", "=ds=#p3# (400)"};
- { 12, 43028, "", "=q2=Recipe: Rhinolicious Wyrmsteak", "=ds=#p3# (400)"};
- { 13, 43031, "", "=q2=Recipe: Snapper Extreme", "=ds=#p3# (400)"};
- { 14, 43034, "", "=q2=Recipe: Spiced Mammoth Treats", "=ds=#p3# (400)"};
- { 15, 43020, "", "=q2=Recipe: Spiced Wyrm Burger", "=ds=#p3# (400)"};
- { 16, 43025, "", "=q2=Recipe: Spicy Blue Nettlefish", "=ds=#p3# (400)"};
- { 17, 43027, "", "=q2=Recipe: Spicy Fried Herring", "=ds=#p3# (400)"};
- { 18, 43019, "", "=q2=Recipe: Tender Shoveltusk Steak", "=ds=#p3# (400)"};
- { 19, 43037, "", "=q2=Recipe: Tracker Snacks", "=ds=#p3# (400)"};
- { 20, 43021, "", "=q2=Recipe: Very Burnt Worg", "=ds=#p3# (400)"};
- { 22, 46349, "", "=q3=Chef's Hat", "=ds=#s1#"};
- { 23, 43007, "", "=q1=Northern Spices", "=ds=#e8#"};
- { 25, 0, "inv_misc_bag_11", "=q6="..AL["Small Spice Bag"], ""};
- { 26, 33925, "", "=q3=Recipe: Delicious Chocolate Cake", "=ds=#p3# (1)", "", ""};
- { 27, 33871, "", "=q3=Recipe: Stormchops", "=ds=#p3# (300)", "", ""};
- { 28, 44228, "", "=q1=Baby Spice", "=ds=", "", ""};
- { 29, 44114, "", "=q1=Old Spices", "=ds=", "", ""};
- Prev = "CookingDaily1";
- Back = "COOKINGDAILYMENU";
- };
-
- ---------------
- --- Fishing ---
- ---------------
-
- AtlasLoot_Data["FishingDaily1"] = {
- { 1, 34837, "", "=q4=The 2 Ring", "=ds=#s13#", "", ""};
- { 2, 33820, "", "=q3=Weather-Beaten Fishing Hat", "=ds=#s1#, #a1#", "", ""};
- { 3, 35350, "", "=q3=Chuck's Bucket", "=ds=#e13#", "", ""};
- { 4, 33818, "", "=q3=Muckbreath's Bucket", "=ds=#e13#", "", ""};
- { 5, 35349, "", "=q3=Snarly's Bucket", "=ds=#e13#", "", ""};
- { 6, 33816, "", "=q3=Toothy's Bucket", "=ds=#e13#", "", ""};
- { 7, 34831, "", "=q3=Eye of the Sea", "=ds=#e7#", "", ""};
- { 8, 34834, "", "=q2=Recipe: Captain Rumsey's Lager", "=ds=#p3# (100)", "", ""};
- { 9, 34836, "", "=q2=Spun Truesilver Fishing Line", "=ds=#p24# #e17#", "", ""};
- { 16, 34827, "", "=q1=Noble's Monocle", "=ds=#s1#", "", ""};
- { 17, 34828, "", "=q1=Antique Silver Cufflinks", "=ds=#s8#", "", ""};
- { 18, 34826, "", "=q1=Gold Wedding Band", "=ds=#s13#", "", ""};
- { 19, 34829, "", "=q1=Ornate Drinking Stein", "=ds=#s15#", "", ""};
- { 20, 34859, "", "=q1=Razor Sharp Fillet Knife", "=ds=#h1#, #w4#", "", ""};
- { 21, 34109, "", "=q1=Weather-Beaten Journal", "=ds=#e10#", "", ""};
- { 22, 8827, "", "=q1=Elixir of Water Walking", "=ds=#e2#", "", ""};
- { 23, 34861, "", "=q1=Sharpened Fish Hook", "=ds=#e24#", "", ""};
- Next = "FishingDaily2";
- Back = "FISHINGDAILYMENU";
- };
-
- AtlasLoot_Data["FishingDaily2"] = {
- { 1, 45862, "", "=q4=Bold Stormjewel", "=ds=#e7#", "", ""};
- { 2, 45882, "", "=q4=Brilliant Stormjewel", "=ds=#e7#", "", ""};
- { 3, 45879, "", "=q4=Delicate Stormjewel", "=ds=#e7#", "", ""};
- { 4, 45987, "", "=q4=Rigid Stormjewel", "=ds=#e7#", "", ""};
- { 5, 45883, "", "=q4=Runed Stormjewel", "=ds=#e7#", "", ""};
- { 6, 45880, "", "=q4=Solid Stormjewel", "=ds=#e7#", "", ""};
- { 7, 45881, "", "=q4=Sparkling Stormjewel", "=ds=#e7#", "", ""};
- { 8, 33820, "", "=q3=Weather-Beaten Fishing Hat", "=ds=#s1#, #a1#", "", ""};
- { 9, 45991, "", "=q3=Bone Fishing Pole", "=ds=#e20#", "", ""};
- { 10, 45992, "", "=q3=Jeweled Fishing Pole", "=ds=#e20#", "", ""};
- { 11, 44983, "", "=q3=Strand Crawler", "=ds=#e13#", "", ""};
- { 12, 36784, "", "=q3=Siren's Tear", "=ds=#e7#", "", ""};
- { 13, 45986, "", "=q3=Titanium Lockbox", "=ds=", "", ""};
- { 14, 34834, "", "=q2=Recipe: Captain Rumsey's Lager", "=ds=#p3# (100)", "", ""};
- { 15, 19971, "", "=q2=High Test Eternium Fishing Line", "=ds=#p24# #e17#", "", ""};
- { 16, 45998, "", "=q1=Battered Jungle Hat", "=ds=#s1#", "", ""};
- { 17, 45861, "", "=q1=Diamond-tipped Cane", "=ds=#h2#", "", ""};
- { 18, 46006, "", "=q1=Glow Worm", "=ds=#e24#", "", ""};
- { 19, 45984, "", "=q1=Unusual Compass", "=ds=", "", ""};
- { 20, 40195, "", "=q1=Pygmy Oil", "=ds=#e2#", "", ""};
- { 21, 8827, "", "=q1=Elixir of Water Walking", "=ds=#e2#", "", ""};
- { 22, 46004, "", "=q1=Sealed Vial of Poison", "=ds=#m2#", "", ""};
- { 23, 48679, "", "=q1=Waterlogged Recipe", "=ds=#m2# #p3# (350)", "", ""};
- Prev = "FishingDaily1";
- Back = "FISHINGDAILYMENU";
- };
-
- ---------------------
- --- Jewelcrafting ---
- ---------------------
-
- AtlasLoot_Data["JewelcraftingDaily1"] = {
- { 1, 46917, "", "=q3=Design: Bold Cardinal Ruby", "=ds=#p12# (450)"};
- { 2, 46919, "", "=q3=Design: Bright Cardinal Ruby", "=ds=#p12# (450)"};
- { 3, 46918, "", "=q3=Design: Delicate Cardinal Ruby", "=ds=#p12# (450)"};
- { 4, 46923, "", "=q3=Design: Flashing Cardinal Ruby", "=ds=#p12# (450)"};
- { 5, 46921, "", "=q3=Design: Fractured Cardinal Ruby", "=ds=#p12# (450)"};
- { 6, 46920, "", "=q3=Design: Precise Cardinal Ruby", "=ds=#p12# (450)"};
- { 7, 46916, "", "=q3=Design: Runed Cardinal Ruby", "=ds=#p12# (450)"};
- { 8, 46922, "", "=q3=Design: Subtle Cardinal Ruby", "=ds=#p12# (450)"};
- { 9, 41576, "", "=q3=Design: Bold Scarlet Ruby", "=ds=#p12# (390)"};
- { 10, 41577, "", "=q3=Design: Delicate Scarlet Ruby", "=ds=#p12# (390)"};
- { 11, 41578, "", "=q3=Design: Flashing Scarlet Ruby", "=ds=#p12# (390)"};
- { 16, 46930, "", "=q3=Design: Brilliant King's Amber", "=ds=#p12# (450)"};
- { 17, 46932, "", "=q3=Design: Mystic King's Amber", "=ds=#p12# (450)"};
- { 18, 46933, "", "=q3=Design: Quick King's Amber", "=ds=#p12# (450)"};
- { 19, 46928, "", "=q3=Design: Rigid King's Amber", "=ds=#p12# (450)"};
- { 20, 46929, "", "=q3=Design: Smooth King's Amber", "=ds=#p12# (450)"};
- { 21, 46931, "", "=q3=Design: Thick King's Amber", "=ds=#p12# (450)"};
- { 22, 41579, "", "=q3=Design: Quick Autumn's Glow", "=ds=#p12# (390)"};
- { 23, 41580, "", "=q3=Design: Rigid Autumn's Glow", "=ds=#p12# (390)"};
- Next = "JewelcraftingDaily2";
- Back = "JEWELCRAFTINGDAILYMENU";
- };
-
- AtlasLoot_Data["JewelcraftingDaily2"] = {
- { 1, 47010, "", "=q3=Design: Accurate Ametrine", "=ds=#p12# (450)"};
- { 2, 47015, "", "=q3=Design: Champion's Ametrine", "=ds=#p12# (450)"};
- { 3, 46949, "", "=q3=Design: Deadly Ametrine", "=ds=#p12# (450)"};
- { 4, 47020, "", "=q3=Design: Deft Ametrine", "=ds=#p12# (450)"};
- { 5, 46952, "", "=q3=Design: Durable Ametrine", "=ds=#p12# (450)"};
- { 6, 47016, "", "=q3=Design: Empowered Ametrine", "=ds=#p12# (450)"};
- { 7, 46953, "", "=q3=Design: Etched Ametrine", "=ds=#p12# (450)"};
- { 8, 47019, "", "=q3=Design: Fierce Ametrine", "=ds=#p12# (450)"};
- { 9, 47012, "", "=q3=Design: Glimmering Ametrine", "=ds=#p12# (450)"};
- { 10, 47008, "", "=q3=Design: Glinting Ametrine", "=ds=#p12# (450)"};
- { 11, 46948, "", "=q3=Design: Inscribed Ametrine", "=ds=#p12# (450)"};
- { 12, 47021, "", "=q3=Design: Lucent Ametrine", "=ds=#p12# (450)"};
- { 13, 46947, "", "=q3=Design: Luminous Ametrine", "=ds=#p12# (450)"};
- { 14, 46950, "", "=q3=Design: Potent Ametrine", "=ds=#p12# (450)"};
- { 15, 46956, "", "=q3=Design: Pristine Ametrine", "=ds=#p12# (450)"};
- { 16, 47007, "", "=q3=Design: Reckless Ametrine", "=ds=#p12# (450)"};
- { 17, 47022, "", "=q3=Design: Resolute Ametrine", "=ds=#p12# (450)"};
- { 18, 47018, "", "=q3=Design: Resplendent Ametrine", "=ds=#p12# (450)"};
- { 19, 47017, "", "=q3=Design: Stalwart Ametrine", "=ds=#p12# (450)"};
- { 20, 47023, "", "=q3=Design: Stark Ametrine", "=ds=#p12# (450)"};
- { 21, 46951, "", "=q3=Design: Veiled Ametrine", "=ds=#p12# (450)"};
- { 22, 47011, "", "=q3=Design: Wicked Ametrine", "=ds=#p12# (450)"};
- { 23, 41582, "", "=q3=Design: Glinting Monarch Topaz", "=ds=#p12# (390)"};
- { 24, 41689, "", "=q3=Design: Luminous Monarch Topaz", "=ds=#p12# (390)"};
- { 25, 41686, "", "=q3=Design: Potent Monarch Topaz", "=ds=#p12# (390)"};
- { 26, 41690, "", "=q3=Design: Reckless Monarch Topaz", "=ds=#p12# (390)"};
- { 27, 41687, "", "=q3=Design: Stark Monarch Topaz", "=ds=#p12# (390)"};
- { 28, 41688, "", "=q3=Design: Veiled Monarch Topaz", "=ds=#p12# (390)"};
- Prev = "JewelcraftingDaily1";
- Next = "JewelcraftingDaily3";
- Back = "JEWELCRAFTINGDAILYMENU";
- };
-
- AtlasLoot_Data["JewelcraftingDaily3"] = {
- { 1, 46900, "", "=q3=Design: Dazzling Eye of Zul", "=ds=#p12# (450)"};
- { 2, 46897, "", "=q3=Design: Enduring Eye of Zul", "=ds=#p12# (450)"};
- { 3, 46912, "", "=q3=Design: Energized Eye of Zul", "=ds=#p12# (450)"};
- { 4, 46904, "", "=q3=Design: Forceful Eye of Zul", "=ds=#p12# (450)"};
- { 5, 46910, "", "=q3=Design: Intricate Eye of Zul", "=ds=#p12# (450)"};
- { 6, 46901, "", "=q3=Design: Jagged Eye of Zul", "=ds=#p12# (450)"};
- { 7, 46909, "", "=q3=Design: Lambent Eye of Zul", "=ds=#p12# (450)"};
- { 8, 46905, "", "=q3=Design: Misty Eye of Zul", "=ds=#p12# (450)"};
- { 9, 46914, "", "=q3=Design: Opaque Eye of Zul", "=ds=#p12# (450)"};
- { 10, 46911, "", "=q3=Design: Radiant Eye of Zul", "=ds=#p12# (450)"};
- { 11, 46903, "", "=q3=Design: Seer's Eye of Zul", "=ds=#p12# (450)"};
- { 12, 46913, "", "=q3=Design: Shattered Eye of Zul", "=ds=#p12# (450)"};
- { 13, 46907, "", "=q3=Design: Shining Eye of Zul", "=ds=#p12# (450)"};
- { 14, 46898, "", "=q3=Design: Steady Eye of Zul", "=ds=#p12# (450)"};
- { 15, 46906, "", "=q3=Design: Sundered Eye of Zul", "=ds=#p12# (450)"};
- { 16, 46908, "", "=q3=Design: Tense Eye of Zul", "=ds=#p12# (450)"};
- { 17, 46902, "", "=q3=Design: Timeless Eye of Zul", "=ds=#p12# (450)"};
- { 18, 46915, "", "=q3=Design: Turbid Eye of Zul", "=ds=#p12# (450)"};
- { 19, 46899, "", "=q3=Design: Vivid Eye of Zul", "=ds=#p12# (450)"};
- { 20, 41697, "", "=q3=Design: Enduring Forest Emerald", "=ds=#p12# (390)"};
- { 21, 41692, "", "=q3=Design: Energized Forest Emerald", "=ds=#p12# (390)"};
- { 22, 41693, "", "=q3=Design: Forceful Forest Emerald", "=ds=#p12# (390)"};
- { 23, 41694, "", "=q3=Design: Intricate Forest Emerald", "=ds=#p12# (390)"};
- { 24, 41696, "", "=q3=Design: Lambent Forest Emerald", "=ds=#p12# (390)"};
- { 25, 41699, "", "=q3=Design: Seer's Forest Emerald", "=ds=#p12# (390)"};
- { 26, 41698, "", "=q3=Design: Vivid Forest Emerald", "=ds=#p12# (390)"};
- Prev = "JewelcraftingDaily2";
- Next = "JewelcraftingDaily4";
- Back = "JEWELCRAFTINGDAILYMENU";
- };
-
- AtlasLoot_Data["JewelcraftingDaily4"] = {
- { 1, 46934, "", "=q3=Design: Balanced Dreadstone", "=ds=#p12# (450)"};
- { 2, 46941, "", "=q3=Design: Defender's Dreadstone", "=ds=#p12# (450)"};
- { 3, 46936, "", "=q3=Design: Glowing Dreadstone", "=ds=#p12# (450)"};
- { 4, 46942, "", "=q3=Design: Guardian's Dreadstone", "=ds=#p12# (450)"};
- { 5, 46945, "", "=q3=Design: Infused Dreadstone", "=ds=#p12# (450)"};
- { 6, 46943, "", "=q3=Design: Mysterious Dreadstone", "=ds=#p12# (450)"};
- { 7, 46944, "", "=q3=Design: Puissant Dreadstone", "=ds=#p12# (450)"};
- { 8, 46937, "", "=q3=Design: Purified Dreadstone", "=ds=#p12# (450)"};
- { 9, 46940, "", "=q3=Design: Regal Dreadstone", "=ds=#p12# (450)"};
- { 10, 46939, "", "=q3=Design: Royal Dreadstone", "=ds=#p12# (450)"};
- { 11, 46938, "", "=q3=Design: Shifting Dreadstone", "=ds=#p12# (450)"};
- { 12, 46935, "", "=q3=Design: Sovereign Dreadstone", "=ds=#p12# (450)"};
- { 13, 46946, "", "=q3=Design: Tenuous Dreadstone", "=ds=#p12# (450)"};
- { 14, 41702, "", "=q3=Design: Puissant Twilight Opal", "=ds=#p12# (390)"};
- { 15, 41703, "", "=q3=Design: Regal Twilight Opal", "=ds=#p12# (390)"};
- { 16, 41701, "", "=q3=Design: Royal Twilight Opal", "=ds=#p12# (390)"};
- Prev = "JewelcraftingDaily3";
- Next = "JewelcraftingDaily5";
- Back = "JEWELCRAFTINGDAILYMENU";
- };
-
- AtlasLoot_Data["JewelcraftingDaily5"] = {
- { 1, 46927, "", "=q3=Design: Lustrous Majestic Zircon", "=ds=#p12# (450)"};
- { 2, 46924, "", "=q3=Design: Solid Majestic Zircon", "=ds=#p12# (450)"};
- { 3, 46925, "", "=q3=Design: Sparkling Majestic Zircon", "=ds=#p12# (450)"};
- { 4, 46926, "", "=q3=Design: Stormy Majestic Zircon", "=ds=#p12# (450)"};
- { 5, 41581, "", "=q3=Design: Lustrous Sky Sapphire", "=ds=#p12# (390)"};
- { 6, 42138, "", "=q3=Design: Solid Sky Sapphire", "=ds=#p12# (390)"};
- { 16, 41704, "", "=q3=Design: Chaotic Skyflare Diamond", "=ds=#p12# (420)"};
- { 17, 41705, "", "=q3=Design: Effulgent Skyflare Diamond", "=ds=#p12# (420)"};
- { 18, 41706, "", "=q3=Design: Ember Skyflare Diamond", "=ds=#p12# (420)"};
- { 19, 41708, "", "=q3=Design: Insightful Earthsiege Diamond", "=ds=#p12# (420)"};
- { 20, 41709, "", "=q3=Design: Invigorating Earthsiege Diamond", "=ds=#p12# (420)"};
- { 21, 41710, "", "=q3=Design: Relentless Earthsiege Diamond", "=ds=#p12# (420)"};
- { 22, 41707, "", "=q3=Design: Revitalizing Skyflare Diamond", "=ds=#p12# (420)"};
- { 23, 41711, "", "=q3=Design: Trenchant Earthsiege Diamond", "=ds=#p12# (420)"};
- Prev = "JewelcraftingDaily4";
- Next = "JewelcraftingDaily6";
- Back = "JEWELCRAFTINGDAILYMENU";
- };
-
- AtlasLoot_Data["JewelcraftingDaily6"] = {
- { 1, 42298, "", "=q3=Design: Bold Dragon's Eye", "=ds=#p12# (370)"};
- { 2, 42299, "", "=q3=Design: Bright Dragon's Eye", "=ds=#p12# (370)"};
- { 3, 42300, "", "=q3=Design: Brilliant Dragon's Eye", "=ds=#p12# (370)"};
- { 4, 42301, "", "=q3=Design: Delicate Dragon's Eye", "=ds=#p12# (370)"};
- { 5, 42302, "", "=q3=Design: Flashing Dragon's Eye", "=ds=#p12# (370)"};
- { 6, 42303, "", "=q3=Design: Fractured Dragon's Eye", "=ds=#p12# (370)"};
- { 7, 42304, "", "=q3=Design: Lustrous Dragon's Eye", "=ds=#p12# (370)"};
- { 8, 42305, "", "=q3=Design: Mystic Dragon's Eye", "=ds=#p12# (370)"};
- { 9, 42306, "", "=q3=Design: Precise Dragon's Eye", "=ds=#p12# (370)"};
- { 10, 42307, "", "=q3=Design: Quick Dragon's Eye", "=ds=#p12# (370)"};
- { 11, 42308, "", "=q3=Design: Rigid Dragon's Eye", "=ds=#p12# (370)"};
- { 12, 42309, "", "=q3=Design: Runed Dragon's Eye", "=ds=#p12# (370)"};
- { 13, 42310, "", "=q3=Design: Smooth Dragon's Eye", "=ds=#p12# (370)"};
- { 14, 42311, "", "=q3=Design: Solid Dragon's Eye", "=ds=#p12# (370)"};
- { 15, 42312, "", "=q3=Design: Sparkling Dragon's Eye", "=ds=#p12# (370)"};
- { 16, 42313, "", "=q3=Design: Stormy Dragon's Eye", "=ds=#p12# (370)"};
- { 17, 42314, "", "=q3=Design: Subtle Dragon's Eye", "=ds=#p12# (370)"};
- { 18, 42315, "", "=q3=Design: Thick Dragon's Eye", "=ds=#p12# (370)"};
- { 20, 42652, "", "=q4=Design: Titanium Earthguard Chain", "=ds=#p12# (420)"};
- { 21, 42649, "", "=q4=Design: Titanium Earthguard Ring", "=ds=#p12# (420)"};
- { 22, 42648, "", "=q4=Design: Titanium Impact Band", "=ds=#p12# (420)"};
- { 23, 42651, "", "=q4=Design: Titanium Impact Choker", "=ds=#p12# (420)"};
- { 24, 42653, "", "=q4=Design: Titanium Spellshock Necklace", "=ds=#p12# (420)"};
- { 25, 42650, "", "=q4=Design: Titanium Spellshock Ring", "=ds=#p12# (420)"};
- Prev = "JewelcraftingDaily5";
- Back = "JEWELCRAFTINGDAILYMENU";
- };
-
- ---------------------
- --- High Risk ---
- ---------------------
-
- AtlasLoot_Data["AlchemyHighRiskTBC"] = {
- Name = ALCHEMY.." High Risk";
- {
- Name = "Rare";
- { 1, "s979362", "1203258", "=q3=Impure Flask of Manifesting Power", "=ds=#sr# 300"};
- { 2, "s979364", "1203260", "=q3=Impure Flask of the Warsong", "=ds=#sr# 300"};
- { 3, "s979366", "1203262", "=q3=Impure Flask of the Kirin Tor", "=ds=#sr# 300"};
- { 4, "s979368", "1203264", "=q3=Impure Flask of Butchery", "=ds=#sr# 300"};
- { 5, "s979370", "1203266", "=q3=Impure Flask of the Unyielding", "=ds=#sr# 300"};
- { 6, "s979372", "1203268", "=q3=Impure Flask of Unrelenting Power", "=ds=#sr# 300"};
- { 7, "s979374", "1203270", "=q3=Impure Flask of Savage Assault", "=ds=#sr# 300"};
- { 8, "s979376", "1203272", "=q3=Impure Flask of Shattering Thunder", "=ds=#sr# 300"};
- { 9, "s979378", "1203274", "=q3=Impure Flask of the Executioner", "=ds=#sr# 300"};
- { 10, "s979380", "1203276", "=q3=Impure Flask of Deep Meditation", "=ds=#sr# 300"};
- { 11, "s979382", "1203278", "=q3=Impure Flask of Adept Striking", "=ds=#sr# 300"};
- };
- {
- Name = "Epic";
- { 1, "s979363", "1203259", "=q4=Pure Flask of Manifesting Power", "=ds=#sr# 300"};
- { 2, "s979365", "1203261", "=q4=Pure Flask of the Warsong", "=ds=#sr# 300"};
- { 3, "s979367", "1203263", "=q4=Pure Flask of the Kirin Tor", "=ds=#sr# 300"};
- { 4, "s979369", "1203265", "=q4=Pure Flask of Butchery", "=ds=#sr# 300"};
- { 5, "s979371", "1203267", "=q4=Pure Flask of the Unyielding", "=ds=#sr# 300"};
- { 6, "s979373", "1203269", "=q4=Pure Flask of Unrelenting Power", "=ds=#sr# 300"};
- { 7, "s979375", "1203271", "=q4=Pure Flask of Savage Assault", "=ds=#sr# 300"};
- { 8, "s979377", "1203273", "=q4=Pure Flask of Shattering Thunder", "=ds=#sr# 300"};
- { 9, "s979379", "1203275", "=q4=Pure Flask of the Executioner", "=ds=#sr# 300"};
- { 10, "s979381", "1203277", "=q4=Pure Flask of Deep Meditation", "=ds=#sr# 300"};
- { 11, "s979383", "1203279", "=q4=Pure Flask of Adept Striking", "=ds=#sr# 300"};
- };
- };
-
- AtlasLoot_Data["SmithingHighRiskTBC"] = {
- Name = BLACKSMITHING.." High Risk";
- {
- Name = "Rare";
- { 1, "s979534", "1204033", "=q3=Hulking Belt Buckle", "=ds=#sr# 300"};
- { 2, "s979536", "1204035", "=q3=Blade Master's Belt Buckle", "=ds=#sr# 300"};
- { 3, "s979538", "1204037", "=q3=Agile Belt Buckle", "=ds=#sr# 300"};
- { 4, "s979540", "1204039", "=q3=Eluding Belt Buckle", "=ds=#sr# 300"};
- { 5, "s979542", "1204041", "=q3=Scholar's Belt Buckle", "=ds=#sr# 300"};
- { 6, "s979544", "1204043", "=q3=Priestly Belt Buckle", "=ds=#sr# 300"};
- { 7, "s979546", "1204045", "=q3=Champion\'s Belt Buckle", "=ds=#sr# 300"};
- { 8, "s979548", "1204047", "=q3=Guarded Belt Buckle", "=ds=#sr# 300"};
- };
- {
- Name = "Epic";
- { 1, "s979535", "1204034", "=q4=Mastercraft Hulking Belt Buckle", "=ds=#sr# 300"};
- { 2, "s979537", "1204036", "=q4=Mastercraft Blade Master's Belt Buckle", "=ds=#sr# 300"};
- { 3, "s979539", "1204038", "=q4=Mastercraft Agile Belt Buckle", "=ds=#sr# 300"};
- { 4, "s979541", "1204040", "=q4=Mastercraft Eluding Belt Buckle", "=ds=#sr# 300"};
- { 5, "s979543", "1204042", "=q4=Mastercraft Scholar's Belt Buckle", "=ds=#sr# 300"};
- { 6, "s979545", "1204044", "=q4=Mastercraft Priestly Belt Buckle", "=ds=#sr# 300"};
- { 7, "s979547", "1204046", "=q4=Mastercraft Champion\'s Belt Buckle", "=ds=#sr# 300"};
- { 8, "s979549", "1204048", "=q4=Mastercraft Guarded Belt Buckle", "=ds=#sr# 300"};
- };
- };
-
- AtlasLoot_Data["LeatherworkingHighRiskTBC"] = {
- Name = LEATHERWORKING.." High Risk";
- {
- Name = "Rare";
- { 1, "s979522", "1204021", "=q3=Cobra Strike Gambeson", "=ds=#sr# 300"};
- { 2, "s979524", "1204023", "=q3=Fel Strike Gambeson", "=ds=#sr# 300"};
- { 3, "s979526", "1204025", "=q3=Wind Gambeson", "=ds=#sr# 300"};
- { 4, "s979528", "1204027", "=q3=True Strike Gambeson", "=ds=#sr# 300"};
- { 5, "s979530", "1204029", "=q3=Clefthoof Gambeson", "=ds=#sr# 300"};
- { 6, "s979532", "1204031", "=q3=Subtle Gambeson", "=ds=#sr# 300"};
- };
- {
- Name = "Epic";
- { 1, "s979523", "1204022", "=q4=Mastercraft Cobra Strike Gambeson", "=ds=#sr# 300"};
- { 2, "s979525", "1204024", "=q4=Mastercraft Fel Strike Gambeson", "=ds=#sr# 300"};
- { 3, "s979527", "1204026", "=q4=Mastercraft Wind Gambeson", "=ds=#sr# 300"};
- { 4, "s979529", "1204028", "=q4=Mastercraft True Strike Gambeson", "=ds=#sr# 300"};
- { 5, "s979531", "1204030", "=q4=Mastercraft Clefthoof Gambeson", "=ds=#sr# 300"};
- { 6, "s979533", "1204032", "=q4=Mastercraft Subtle Gambeson", "=ds=#sr# 300"};
- };
- };
-
- AtlasLoot_Data["EngineeringHighRiskTBC"] = {
- Name = ENGINEERING.." High Risk";
- {
- Name = "Rare";
- { 1, "s979550", "1204049", "=q3=Gnomish Magnification Polish", "=ds=#sr# 300"};
- { 2, "s979552", "1204051", "=q3=Gnomish Sharpening Polish", "=ds=#sr# 300"};
- { 3, "s979554", "1204053", "=q3=Gnomish Prismatic Polish", "=ds=#sr# 300"};
- { 4, "s979556", "1204055", "=q3=Felfire Scope", "=ds=#sr# 300"};
- { 5, "s979558", "1204057", "=q3=Sighted Scope", "=ds=#sr# 300"};
- { 6, "s979560", "1204059", "=q3=Quickshot Scope", "=ds=#sr# 300"};
+};
+-----------------
+--- Tailoring ---
+-----------------
+
+
+
+AtlasLoot_Data["TailoringTBC"] = {
+ Name = TAILORING;
+ Type = "Crafting";
+ {
+ Name = AL["Cloth Armor"] .. " - Back";
+ { 1, "s40060", "32420", "=q4=Night's End", "=ds=#sr# 375" };
+ { 2, "s31450", "24260", "=q4=Manaweave Cloak", "=ds=#sr# 365" };
+ { 3, "s31449", "24259", "=q4=Vengeance Wrap", "=ds=#sr# 365" };
+ { 4, "s37873", "30831", "=q3=Cloak of Arcane Evasion", "=ds=#sr# 350" };
+ { 5, "s31440", "24253", "=q3=Cloak of Eternity", "=ds=#sr# 350" };
+ { 6, "s31438", "24252", "=q3=Cloak of the Black Void", "=ds=#sr# 350" };
};
{
- Name = "Epic";
- { 1, "s968044", "1204050", "=q4=Fine Gnomish Magnification Polish", "=ds=#sr# 300"};
- { 2, "s968047", "1204052", "=q4=Fine Gnomish Sharpening Polish", "=ds=#sr# 300"};
- { 3, "s968050", "1204054", "=q4=Fine Gnomish Prismatic Polish", "=ds=#sr# 300"};
- { 4, "s968053", "1204056", "=q4=Focused Felfire Scope", "=ds=#sr# 300"};
- { 5, "s968056", "1204058", "=q4=Focused Sighted Scope", "=ds=#sr# 300"};
- { 6, "s968059", "1204060", "=q4=Focused Quickshot Scope", "=ds=#sr# 300"};
+ Name = AL["Cloth Armor"] .. " - Chest";
+ { 1, "s26758", "21871", "=q4=Frozen Shadoweave Robe", "=ds=#sr# 375" };
+ { 2, "s26762", "21875", "=q4=Primal Mooncloth Robe", "=ds=#sr# 375" };
+ { 3, "s26781", "21865", "=q4=Soulcloth Vest", "=ds=#sr# 375" };
+ { 4, "s26754", "21848", "=q4=Spellfire Robe", "=ds=#sr# 375" };
+ { 5, "s46131", "34365", "=q4=Robe of Eternal Light", "=ds=#sr# 365" };
+ { 6, "s46130", "34364", "=q4=Sunfire Robe", "=ds=#sr# 365" };
+ { 7, "s26784", "21868", "=q3=Arcanoweave Robe", "=ds=#sr# 370" };
+ { 8, "s37884", "30839", "=q3=Flameheart Vest", "=ds=#sr# 370" };
+ { 9, "s26777", "21861", "=q3=Imbued Netherweave Robe", "=ds=#sr# 360" };
+ { 10, "s26778", "21862", "=q3=Imbued Netherweave Tunic", "=ds=#sr# 360" };
+ { 11, "s26774", "21855", "=q2=Netherweave Tunic", "=ds=#sr# 345" };
+ { 12, "s26773", "21854", "=q2=Netherweave Robe", "=ds=#sr# 340" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Feet";
+ { 1, "s36317", "30037", "=q4=Boots of Blasting", "=ds=#sr# 375" };
+ { 2, "s36318", "30035", "=q4=Boots of the Long Road", "=ds=#sr# 375" };
+ { 3, "s40020", "32391", "=q4=Soulguard Slippers", "=ds=#sr# 375" };
+ { 4, "s26757", "21870", "=q4=Frozen Shadoweave Boots", "=ds=#sr# 365" };
+ { 5, "s26783", "21867", "=q3=Arcanoweave Boots", "=ds=#sr# 360" };
+ { 6, "s26776", "21860", "=q3=Imbued Netherweave Boots", "=ds=#sr# 350" };
+ { 7, "s26772", "21853", "=q2=Netherweave Boots", "=ds=#sr# 335" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Hands";
+ { 1, "s41207", "32584", "=q4=Swiftheal Wraps", "=ds=#sr# 375" };
+ { 2, "s46129", "34367", "=q4=Hands of Eternal Light", "=ds=#sr# 365" };
+ { 3, "s26753", "21847", "=q4=Spellfire Gloves", "=ds=#sr# 365" };
+ { 4, "s46128", "34366", "=q4=Sunfire Handwraps", "=ds=#sr# 365" };
+ { 5, "s26779", "21863", "=q4=Soulcloth Gloves", "=ds=#sr# 355" };
+ { 6, "s37883", "30838", "=q3=Flameheart Gloves", "=ds=#sr# 360" };
+ { 7, "s26770", "21851", "=q2=Netherweave Gloves", "=ds=#sr# 320" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Head";
+ { 1, "s31456", "24267", "=q4=Battlecast Hood", "=ds=#sr# 375" };
+ { 2, "s31455", "24266", "=q4=Spellstrike Hood", "=ds=#sr# 375" };
+ { 3, "s31454", "24264", "=q4=Whitemend Hood", "=ds=#sr# 375" };
+ { 4, "s31448", "24258", "=q4=Resolute Cape", "=ds=#sr# 365" };
+ { 5, "s31441", "24254", "=q3=White Remedy Cape", "=ds=#sr# 350" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Legs";
+ { 1, "s31453", "24263", "=q4=Battlecast Pants", "=ds=#sr# 375" };
+ { 2, "s40023", "32389", "=q4=Soulguard Leggings", "=ds=#sr# 375" };
+ { 3, "s31452", "24262", "=q4=Spellstrike Pants", "=ds=#sr# 375" };
+ { 4, "s31451", "24261", "=q4=Whitemend Pants", "=ds=#sr# 375" };
+ { 5, "s26775", "21859", "=q3=Imbued Netherweave Pants", "=ds=#sr# 340" };
+ { 6, "s26771", "21852", "=q2=Netherweave Pants", "=ds=#sr# 325" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Shoulder";
+ { 1, "s41206", "32587", "=q4=Mantle of Nimble Thought", "=ds=#sr# 375" };
+ { 2, "s41208", "32585", "=q4=Swiftheal Mantle", "=ds=#sr# 375" };
+ { 3, "s26761", "21874", "=q4=Primal Mooncloth Shoulders", "=ds=#sr# 365" };
+ { 4, "s26780", "21864", "=q4=Soulcloth Shoulders", "=ds=#sr# 365" };
+ { 5, "s26756", "21869", "=q4=Frozen Shadoweave Shoulders", "=ds=#sr# 355" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Waist";
+ { 1, "s36315", "30038", "=q4=Belt of Blasting", "=ds=#sr# 375" };
+ { 2, "s36316", "30036", "=q4=Belt of the Long Road", "=ds=#sr# 375" };
+ { 3, "s40024", "32390", "=q4=Soulguard Girdle", "=ds=#sr# 375" };
+ { 4, "s31444", "24257", "=q4=Black Belt of Knowledge", "=ds=#sr# 365" };
+ { 5, "s31443", "24256", "=q4=Girdle of Ruination", "=ds=#sr# 365" };
+ { 6, "s31442", "24255", "=q4=Unyielding Girdle", "=ds=#sr# 365" };
+ { 7, "s26760", "21873", "=q4=Primal Mooncloth Belt", "=ds=#sr# 355" };
+ { 8, "s26752", "21846", "=q4=Spellfire Belt", "=ds=#sr# 355" };
+ { 9, "s26765", "21850", "=q2=Netherweave Belt", "=ds=#sr# 310" };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Wrist";
+ { 1, "s41205", "32586", "=q4=Bracers of Nimble Thought", "=ds=#sr# 375" };
+ { 2, "s40021", "32392", "=q4=Soulguard Bracers", "=ds=#sr# 375" };
+ { 3, "s26782", "21866", "=q3=Arcanoweave Bracers", "=ds=#sr# 350" };
+ { 4, "s31437", "24251", "=q3=Blackstrike Bracers", "=ds=#sr# 350" };
+ { 5, "s37882", "30837", "=q3=Flameheart Bracers", "=ds=#sr# 350" };
+ { 6, "s31434", "24249", "=q3=Unyielding Bracers", "=ds=#sr# 350" };
+ { 7, "s31435", "24250", "=q3=Bracers of Havok", "=ds=#sr# 350" };
+ { 8, "s26764", "21849", "=q2=Netherweave Bracers", "=ds=#sr# 310" };
+ };
+ {
+ Name = AL["Bags"];
+ { 1, "s26759", "21872", "=q3=Ebon Shadowbag", "=ds=#sr# 375" };
+ { 2, "s50194", "38225", "=q3=Mycah's Botanical Bag", "=ds=#sr# 375" };
+ { 3, "s26763", "21876", "=q3=Primal Mooncloth Bag", "=ds=#sr# 375" };
+ { 4, "s26755", "21858", "=q3=Spellfire Bag", "=ds=#sr# 375" };
+ { 5, "s18455", "14156", "=q3=Bottomless Bag", "=ds=#sr# 300" };
+ { 6, "s26086", "21341", "=q3=Felcloth Bag", "=ds=#sr# 280" };
+ { 7, "s56007", "41599", "=q2=Frostweave Bag", "=ds=" .. AL["Trainer"] };
+ { 8, "s31459", "24270", "=q2=Bag of Jewels", "=ds=#sr# 340" };
+ { 9, "s26749", "21843", "=q2=Imbued Netherweave Bag", "=ds=#sr# 340" };
+ { 10, "s26746", "21841", "=q2=Netherweave Bag", "=ds=#sr# 315" };
+ };
+ {
+ Name = AL["Item Enhancements"];
+ { 1, "s31433", "24276", "=q4=Golden Spellthread", "=ds=#sr# 375" };
+ { 2, "s31432", "24274", "=q4=Runic Spellthread", "=ds=#sr# 375" };
+ { 3, "s31430", "24273", "=q3=Mystic Spellthread", "=ds=#sr# 335" };
+ { 4, "s31431", "24275", "=q3=Silver Spellthread", "=ds=#sr# 335" };
+ };
+ {
+ Name = "Cloth/" .. AL["Miscellaneous"];
+ { 1, "s26751", "21845", "=q3=Primal Mooncloth", "=ds=#sr# 350" };
+ { 2, "s36686", "24272", "=q3=Shadowcloth", "=ds=#sr# 350" };
+ { 3, "s31373", "24271", "=q3=Spellcloth", "=ds=#sr# 350" };
+ { 4, "s26747", "21842", "=q2=Bolt of Imbued Netherweave", "=ds=#sr# 325" };
+ { 5, "s26750", "21844", "=q1=Bolt of Soulcloth", "=ds=#sr# 345" };
+ { 6, "s26745", "21840", "=q1=Bolt of Netherweave", "=ds=#sr# 300" };
+ { 8, "s31460", "24268", "=q1=Netherweave Net", "=ds=#sr# 300" };
+ };
+ {
+ Name = MOONCLOTH;
+ { 1, "s26762", "21875", "=q4=Primal Mooncloth Robe", "=ds=#sr# 375" };
+ { 2, "s26761", "21874", "=q4=Primal Mooncloth Shoulders", "=ds=#sr# 365" };
+ { 3, "s26760", "21873", "=q4=Primal Mooncloth Belt", "=ds=#sr# 355" };
+ };
+ {
+ Name = SHADOWEAVE;
+ { 1, "s26758", "21871", "=q4=Frozen Shadoweave Robe", "=ds=#sr# 375" };
+ { 2, "s26757", "21870", "=q4=Frozen Shadoweave Boots", "=ds=#sr# 365" };
+ { 3, "s26756", "21869", "=q4=Frozen Shadoweave Shoulders", "=ds=#sr# 355" };
+ };
+ {
+ Name = SPELLFIRE;
+ { 1, "s26754", "21848", "=q4=Spellfire Robe", "=ds=#sr# 375" };
+ { 2, "s26753", "21847", "=q4=Spellfire Gloves", "=ds=#sr# 365" };
+ { 3, "s26752", "21846", "=q4=Spellfire Belt", "=ds=#sr# 355" };
};
};
- AtlasLoot_Data["EnchantingHighRiskTBC"] = {
- Name = ENCHANTING.." High Risk";
- {
+--------------------------------
+--- Daily Profession Rewards ---
+--------------------------------
+
+---------------
+--- Cooking ---
+---------------
+
+AtlasLoot_Data["CookingDaily1"] = {
+ { 1, 33925, "", "=q3=Recipe: Delicious Chocolate Cake", "=ds=#p3# (1)", "", "" };
+ { 2, 33871, "", "=q3=Recipe: Stormchops", "=ds=#p3# (300)", "", "" };
+ { 3, 33869, "", "=q3=Recipe: Broiled Bloodfin", "=ds=#p3# (300)", "", "" };
+ { 4, 33875, "", "=q2=Recipe: Kibler's Bits", "=ds=#p3# (300)", "", "" };
+ { 5, 33870, "", "=q2=Recipe: Skullfish Soup", "=ds=#p3# (325)", "", "" };
+ { 6, 33873, "", "=q2=Recipe: Spicy Hot Talbuk", "=ds=#p3# (300)", "", "" };
+ Next = "CookingDaily2";
+ Back = "COOKINGDAILYMENU";
+};
+
+AtlasLoot_Data["CookingDaily2"] = {
+ { 1, 43035, "", "=q2=Recipe: Blackened Dragonfin", "=ds=#p3# (400)" };
+ { 2, 43032, "", "=q2=Recipe: Blackened Worg Steak", "=ds=#p3# (400)" };
+ { 3, 43029, "", "=q2=Recipe: Critter Bites", "=ds=#p3# (400)" };
+ { 4, 43033, "", "=q2=Recipe: Cuttlesteak", "=ds=#p3# (400)" };
+ { 5, 43036, "", "=q2=Recipe: Dragonfin Filet", "=ds=#p3# (400)" };
+ { 6, 43024, "", "=q2=Recipe: Firecracker Salmon", "=ds=#p3# (400)" };
+ { 7, 43030, "", "=q2=Recipe: Hearty Rhino", "=ds=#p3# (400)" };
+ { 8, 43026, "", "=q2=Recipe: Imperial Manta Steak", "=ds=#p3# (400)" };
+ { 9, 43018, "", "=q2=Recipe: Mega Mammoth Meal", "=ds=#p3# (400)" };
+ { 10, 43022, "", "=q2=Recipe: Mighty Rhino Dogs", "=ds=#p3# (400)" };
+ { 11, 43023, "", "=q2=Recipe: Poached Northern Sculpin", "=ds=#p3# (400)" };
+ { 12, 43028, "", "=q2=Recipe: Rhinolicious Wyrmsteak", "=ds=#p3# (400)" };
+ { 13, 43031, "", "=q2=Recipe: Snapper Extreme", "=ds=#p3# (400)" };
+ { 14, 43034, "", "=q2=Recipe: Spiced Mammoth Treats", "=ds=#p3# (400)" };
+ { 15, 43020, "", "=q2=Recipe: Spiced Wyrm Burger", "=ds=#p3# (400)" };
+ { 16, 43025, "", "=q2=Recipe: Spicy Blue Nettlefish", "=ds=#p3# (400)" };
+ { 17, 43027, "", "=q2=Recipe: Spicy Fried Herring", "=ds=#p3# (400)" };
+ { 18, 43019, "", "=q2=Recipe: Tender Shoveltusk Steak", "=ds=#p3# (400)" };
+ { 19, 43037, "", "=q2=Recipe: Tracker Snacks", "=ds=#p3# (400)" };
+ { 20, 43021, "", "=q2=Recipe: Very Burnt Worg", "=ds=#p3# (400)" };
+ { 22, 46349, "", "=q3=Chef's Hat", "=ds=#s1#" };
+ { 23, 43007, "", "=q1=Northern Spices", "=ds=#e8#" };
+ { 25, 0, "inv_misc_bag_11", "=q6=" .. AL["Small Spice Bag"], "" };
+ { 26, 33925, "", "=q3=Recipe: Delicious Chocolate Cake", "=ds=#p3# (1)", "", "" };
+ { 27, 33871, "", "=q3=Recipe: Stormchops", "=ds=#p3# (300)", "", "" };
+ { 28, 44228, "", "=q1=Baby Spice", "=ds=", "", "" };
+ { 29, 44114, "", "=q1=Old Spices", "=ds=", "", "" };
+ Prev = "CookingDaily1";
+ Back = "COOKINGDAILYMENU";
+};
+
+---------------
+--- Fishing ---
+---------------
+
+AtlasLoot_Data["FishingDaily1"] = {
+ { 1, 34837, "", "=q4=The 2 Ring", "=ds=#s13#", "", "" };
+ { 2, 33820, "", "=q3=Weather-Beaten Fishing Hat", "=ds=#s1#, #a1#", "", "" };
+ { 3, 35350, "", "=q3=Chuck's Bucket", "=ds=#e13#", "", "" };
+ { 4, 33818, "", "=q3=Muckbreath's Bucket", "=ds=#e13#", "", "" };
+ { 5, 35349, "", "=q3=Snarly's Bucket", "=ds=#e13#", "", "" };
+ { 6, 33816, "", "=q3=Toothy's Bucket", "=ds=#e13#", "", "" };
+ { 7, 34831, "", "=q3=Eye of the Sea", "=ds=#e7#", "", "" };
+ { 8, 34834, "", "=q2=Recipe: Captain Rumsey's Lager", "=ds=#p3# (100)", "", "" };
+ { 9, 34836, "", "=q2=Spun Truesilver Fishing Line", "=ds=#p24# #e17#", "", "" };
+ { 16, 34827, "", "=q1=Noble's Monocle", "=ds=#s1#", "", "" };
+ { 17, 34828, "", "=q1=Antique Silver Cufflinks", "=ds=#s8#", "", "" };
+ { 18, 34826, "", "=q1=Gold Wedding Band", "=ds=#s13#", "", "" };
+ { 19, 34829, "", "=q1=Ornate Drinking Stein", "=ds=#s15#", "", "" };
+ { 20, 34859, "", "=q1=Razor Sharp Fillet Knife", "=ds=#h1#, #w4#", "", "" };
+ { 21, 34109, "", "=q1=Weather-Beaten Journal", "=ds=#e10#", "", "" };
+ { 22, 8827, "", "=q1=Elixir of Water Walking", "=ds=#e2#", "", "" };
+ { 23, 34861, "", "=q1=Sharpened Fish Hook", "=ds=#e24#", "", "" };
+ Next = "FishingDaily2";
+ Back = "FISHINGDAILYMENU";
+};
+
+AtlasLoot_Data["FishingDaily2"] = {
+ { 1, 45862, "", "=q4=Bold Stormjewel", "=ds=#e7#", "", "" };
+ { 2, 45882, "", "=q4=Brilliant Stormjewel", "=ds=#e7#", "", "" };
+ { 3, 45879, "", "=q4=Delicate Stormjewel", "=ds=#e7#", "", "" };
+ { 4, 45987, "", "=q4=Rigid Stormjewel", "=ds=#e7#", "", "" };
+ { 5, 45883, "", "=q4=Runed Stormjewel", "=ds=#e7#", "", "" };
+ { 6, 45880, "", "=q4=Solid Stormjewel", "=ds=#e7#", "", "" };
+ { 7, 45881, "", "=q4=Sparkling Stormjewel", "=ds=#e7#", "", "" };
+ { 8, 33820, "", "=q3=Weather-Beaten Fishing Hat", "=ds=#s1#, #a1#", "", "" };
+ { 9, 45991, "", "=q3=Bone Fishing Pole", "=ds=#e20#", "", "" };
+ { 10, 45992, "", "=q3=Jeweled Fishing Pole", "=ds=#e20#", "", "" };
+ { 11, 44983, "", "=q3=Strand Crawler", "=ds=#e13#", "", "" };
+ { 12, 36784, "", "=q3=Siren's Tear", "=ds=#e7#", "", "" };
+ { 13, 45986, "", "=q3=Titanium Lockbox", "=ds=", "", "" };
+ { 14, 34834, "", "=q2=Recipe: Captain Rumsey's Lager", "=ds=#p3# (100)", "", "" };
+ { 15, 19971, "", "=q2=High Test Eternium Fishing Line", "=ds=#p24# #e17#", "", "" };
+ { 16, 45998, "", "=q1=Battered Jungle Hat", "=ds=#s1#", "", "" };
+ { 17, 45861, "", "=q1=Diamond-tipped Cane", "=ds=#h2#", "", "" };
+ { 18, 46006, "", "=q1=Glow Worm", "=ds=#e24#", "", "" };
+ { 19, 45984, "", "=q1=Unusual Compass", "=ds=", "", "" };
+ { 20, 40195, "", "=q1=Pygmy Oil", "=ds=#e2#", "", "" };
+ { 21, 8827, "", "=q1=Elixir of Water Walking", "=ds=#e2#", "", "" };
+ { 22, 46004, "", "=q1=Sealed Vial of Poison", "=ds=#m2#", "", "" };
+ { 23, 48679, "", "=q1=Waterlogged Recipe", "=ds=#m2# #p3# (350)", "", "" };
+ Prev = "FishingDaily1";
+ Back = "FISHINGDAILYMENU";
+};
+
+---------------------
+--- Jewelcrafting ---
+---------------------
+
+AtlasLoot_Data["JewelcraftingDaily1"] = {
+ { 1, 46917, "", "=q3=Design: Bold Cardinal Ruby", "=ds=#p12# (450)" };
+ { 2, 46919, "", "=q3=Design: Bright Cardinal Ruby", "=ds=#p12# (450)" };
+ { 3, 46918, "", "=q3=Design: Delicate Cardinal Ruby", "=ds=#p12# (450)" };
+ { 4, 46923, "", "=q3=Design: Flashing Cardinal Ruby", "=ds=#p12# (450)" };
+ { 5, 46921, "", "=q3=Design: Fractured Cardinal Ruby", "=ds=#p12# (450)" };
+ { 6, 46920, "", "=q3=Design: Precise Cardinal Ruby", "=ds=#p12# (450)" };
+ { 7, 46916, "", "=q3=Design: Runed Cardinal Ruby", "=ds=#p12# (450)" };
+ { 8, 46922, "", "=q3=Design: Subtle Cardinal Ruby", "=ds=#p12# (450)" };
+ { 9, 41576, "", "=q3=Design: Bold Scarlet Ruby", "=ds=#p12# (390)" };
+ { 10, 41577, "", "=q3=Design: Delicate Scarlet Ruby", "=ds=#p12# (390)" };
+ { 11, 41578, "", "=q3=Design: Flashing Scarlet Ruby", "=ds=#p12# (390)" };
+ { 16, 46930, "", "=q3=Design: Brilliant King's Amber", "=ds=#p12# (450)" };
+ { 17, 46932, "", "=q3=Design: Mystic King's Amber", "=ds=#p12# (450)" };
+ { 18, 46933, "", "=q3=Design: Quick King's Amber", "=ds=#p12# (450)" };
+ { 19, 46928, "", "=q3=Design: Rigid King's Amber", "=ds=#p12# (450)" };
+ { 20, 46929, "", "=q3=Design: Smooth King's Amber", "=ds=#p12# (450)" };
+ { 21, 46931, "", "=q3=Design: Thick King's Amber", "=ds=#p12# (450)" };
+ { 22, 41579, "", "=q3=Design: Quick Autumn's Glow", "=ds=#p12# (390)" };
+ { 23, 41580, "", "=q3=Design: Rigid Autumn's Glow", "=ds=#p12# (390)" };
+ Next = "JewelcraftingDaily2";
+ Back = "JEWELCRAFTINGDAILYMENU";
+};
+
+AtlasLoot_Data["JewelcraftingDaily2"] = {
+ { 1, 47010, "", "=q3=Design: Accurate Ametrine", "=ds=#p12# (450)" };
+ { 2, 47015, "", "=q3=Design: Champion's Ametrine", "=ds=#p12# (450)" };
+ { 3, 46949, "", "=q3=Design: Deadly Ametrine", "=ds=#p12# (450)" };
+ { 4, 47020, "", "=q3=Design: Deft Ametrine", "=ds=#p12# (450)" };
+ { 5, 46952, "", "=q3=Design: Durable Ametrine", "=ds=#p12# (450)" };
+ { 6, 47016, "", "=q3=Design: Empowered Ametrine", "=ds=#p12# (450)" };
+ { 7, 46953, "", "=q3=Design: Etched Ametrine", "=ds=#p12# (450)" };
+ { 8, 47019, "", "=q3=Design: Fierce Ametrine", "=ds=#p12# (450)" };
+ { 9, 47012, "", "=q3=Design: Glimmering Ametrine", "=ds=#p12# (450)" };
+ { 10, 47008, "", "=q3=Design: Glinting Ametrine", "=ds=#p12# (450)" };
+ { 11, 46948, "", "=q3=Design: Inscribed Ametrine", "=ds=#p12# (450)" };
+ { 12, 47021, "", "=q3=Design: Lucent Ametrine", "=ds=#p12# (450)" };
+ { 13, 46947, "", "=q3=Design: Luminous Ametrine", "=ds=#p12# (450)" };
+ { 14, 46950, "", "=q3=Design: Potent Ametrine", "=ds=#p12# (450)" };
+ { 15, 46956, "", "=q3=Design: Pristine Ametrine", "=ds=#p12# (450)" };
+ { 16, 47007, "", "=q3=Design: Reckless Ametrine", "=ds=#p12# (450)" };
+ { 17, 47022, "", "=q3=Design: Resolute Ametrine", "=ds=#p12# (450)" };
+ { 18, 47018, "", "=q3=Design: Resplendent Ametrine", "=ds=#p12# (450)" };
+ { 19, 47017, "", "=q3=Design: Stalwart Ametrine", "=ds=#p12# (450)" };
+ { 20, 47023, "", "=q3=Design: Stark Ametrine", "=ds=#p12# (450)" };
+ { 21, 46951, "", "=q3=Design: Veiled Ametrine", "=ds=#p12# (450)" };
+ { 22, 47011, "", "=q3=Design: Wicked Ametrine", "=ds=#p12# (450)" };
+ { 23, 41582, "", "=q3=Design: Glinting Monarch Topaz", "=ds=#p12# (390)" };
+ { 24, 41689, "", "=q3=Design: Luminous Monarch Topaz", "=ds=#p12# (390)" };
+ { 25, 41686, "", "=q3=Design: Potent Monarch Topaz", "=ds=#p12# (390)" };
+ { 26, 41690, "", "=q3=Design: Reckless Monarch Topaz", "=ds=#p12# (390)" };
+ { 27, 41687, "", "=q3=Design: Stark Monarch Topaz", "=ds=#p12# (390)" };
+ { 28, 41688, "", "=q3=Design: Veiled Monarch Topaz", "=ds=#p12# (390)" };
+ Prev = "JewelcraftingDaily1";
+ Next = "JewelcraftingDaily3";
+ Back = "JEWELCRAFTINGDAILYMENU";
+};
+
+AtlasLoot_Data["JewelcraftingDaily3"] = {
+ { 1, 46900, "", "=q3=Design: Dazzling Eye of Zul", "=ds=#p12# (450)" };
+ { 2, 46897, "", "=q3=Design: Enduring Eye of Zul", "=ds=#p12# (450)" };
+ { 3, 46912, "", "=q3=Design: Energized Eye of Zul", "=ds=#p12# (450)" };
+ { 4, 46904, "", "=q3=Design: Forceful Eye of Zul", "=ds=#p12# (450)" };
+ { 5, 46910, "", "=q3=Design: Intricate Eye of Zul", "=ds=#p12# (450)" };
+ { 6, 46901, "", "=q3=Design: Jagged Eye of Zul", "=ds=#p12# (450)" };
+ { 7, 46909, "", "=q3=Design: Lambent Eye of Zul", "=ds=#p12# (450)" };
+ { 8, 46905, "", "=q3=Design: Misty Eye of Zul", "=ds=#p12# (450)" };
+ { 9, 46914, "", "=q3=Design: Opaque Eye of Zul", "=ds=#p12# (450)" };
+ { 10, 46911, "", "=q3=Design: Radiant Eye of Zul", "=ds=#p12# (450)" };
+ { 11, 46903, "", "=q3=Design: Seer's Eye of Zul", "=ds=#p12# (450)" };
+ { 12, 46913, "", "=q3=Design: Shattered Eye of Zul", "=ds=#p12# (450)" };
+ { 13, 46907, "", "=q3=Design: Shining Eye of Zul", "=ds=#p12# (450)" };
+ { 14, 46898, "", "=q3=Design: Steady Eye of Zul", "=ds=#p12# (450)" };
+ { 15, 46906, "", "=q3=Design: Sundered Eye of Zul", "=ds=#p12# (450)" };
+ { 16, 46908, "", "=q3=Design: Tense Eye of Zul", "=ds=#p12# (450)" };
+ { 17, 46902, "", "=q3=Design: Timeless Eye of Zul", "=ds=#p12# (450)" };
+ { 18, 46915, "", "=q3=Design: Turbid Eye of Zul", "=ds=#p12# (450)" };
+ { 19, 46899, "", "=q3=Design: Vivid Eye of Zul", "=ds=#p12# (450)" };
+ { 20, 41697, "", "=q3=Design: Enduring Forest Emerald", "=ds=#p12# (390)" };
+ { 21, 41692, "", "=q3=Design: Energized Forest Emerald", "=ds=#p12# (390)" };
+ { 22, 41693, "", "=q3=Design: Forceful Forest Emerald", "=ds=#p12# (390)" };
+ { 23, 41694, "", "=q3=Design: Intricate Forest Emerald", "=ds=#p12# (390)" };
+ { 24, 41696, "", "=q3=Design: Lambent Forest Emerald", "=ds=#p12# (390)" };
+ { 25, 41699, "", "=q3=Design: Seer's Forest Emerald", "=ds=#p12# (390)" };
+ { 26, 41698, "", "=q3=Design: Vivid Forest Emerald", "=ds=#p12# (390)" };
+ Prev = "JewelcraftingDaily2";
+ Next = "JewelcraftingDaily4";
+ Back = "JEWELCRAFTINGDAILYMENU";
+};
+
+AtlasLoot_Data["JewelcraftingDaily4"] = {
+ { 1, 46934, "", "=q3=Design: Balanced Dreadstone", "=ds=#p12# (450)" };
+ { 2, 46941, "", "=q3=Design: Defender's Dreadstone", "=ds=#p12# (450)" };
+ { 3, 46936, "", "=q3=Design: Glowing Dreadstone", "=ds=#p12# (450)" };
+ { 4, 46942, "", "=q3=Design: Guardian's Dreadstone", "=ds=#p12# (450)" };
+ { 5, 46945, "", "=q3=Design: Infused Dreadstone", "=ds=#p12# (450)" };
+ { 6, 46943, "", "=q3=Design: Mysterious Dreadstone", "=ds=#p12# (450)" };
+ { 7, 46944, "", "=q3=Design: Puissant Dreadstone", "=ds=#p12# (450)" };
+ { 8, 46937, "", "=q3=Design: Purified Dreadstone", "=ds=#p12# (450)" };
+ { 9, 46940, "", "=q3=Design: Regal Dreadstone", "=ds=#p12# (450)" };
+ { 10, 46939, "", "=q3=Design: Royal Dreadstone", "=ds=#p12# (450)" };
+ { 11, 46938, "", "=q3=Design: Shifting Dreadstone", "=ds=#p12# (450)" };
+ { 12, 46935, "", "=q3=Design: Sovereign Dreadstone", "=ds=#p12# (450)" };
+ { 13, 46946, "", "=q3=Design: Tenuous Dreadstone", "=ds=#p12# (450)" };
+ { 14, 41702, "", "=q3=Design: Puissant Twilight Opal", "=ds=#p12# (390)" };
+ { 15, 41703, "", "=q3=Design: Regal Twilight Opal", "=ds=#p12# (390)" };
+ { 16, 41701, "", "=q3=Design: Royal Twilight Opal", "=ds=#p12# (390)" };
+ Prev = "JewelcraftingDaily3";
+ Next = "JewelcraftingDaily5";
+ Back = "JEWELCRAFTINGDAILYMENU";
+};
+
+AtlasLoot_Data["JewelcraftingDaily5"] = {
+ { 1, 46927, "", "=q3=Design: Lustrous Majestic Zircon", "=ds=#p12# (450)" };
+ { 2, 46924, "", "=q3=Design: Solid Majestic Zircon", "=ds=#p12# (450)" };
+ { 3, 46925, "", "=q3=Design: Sparkling Majestic Zircon", "=ds=#p12# (450)" };
+ { 4, 46926, "", "=q3=Design: Stormy Majestic Zircon", "=ds=#p12# (450)" };
+ { 5, 41581, "", "=q3=Design: Lustrous Sky Sapphire", "=ds=#p12# (390)" };
+ { 6, 42138, "", "=q3=Design: Solid Sky Sapphire", "=ds=#p12# (390)" };
+ { 16, 41704, "", "=q3=Design: Chaotic Skyflare Diamond", "=ds=#p12# (420)" };
+ { 17, 41705, "", "=q3=Design: Effulgent Skyflare Diamond", "=ds=#p12# (420)" };
+ { 18, 41706, "", "=q3=Design: Ember Skyflare Diamond", "=ds=#p12# (420)" };
+ { 19, 41708, "", "=q3=Design: Insightful Earthsiege Diamond", "=ds=#p12# (420)" };
+ { 20, 41709, "", "=q3=Design: Invigorating Earthsiege Diamond", "=ds=#p12# (420)" };
+ { 21, 41710, "", "=q3=Design: Relentless Earthsiege Diamond", "=ds=#p12# (420)" };
+ { 22, 41707, "", "=q3=Design: Revitalizing Skyflare Diamond", "=ds=#p12# (420)" };
+ { 23, 41711, "", "=q3=Design: Trenchant Earthsiege Diamond", "=ds=#p12# (420)" };
+ Prev = "JewelcraftingDaily4";
+ Next = "JewelcraftingDaily6";
+ Back = "JEWELCRAFTINGDAILYMENU";
+};
+
+AtlasLoot_Data["JewelcraftingDaily6"] = {
+ { 1, 42298, "", "=q3=Design: Bold Dragon's Eye", "=ds=#p12# (370)" };
+ { 2, 42299, "", "=q3=Design: Bright Dragon's Eye", "=ds=#p12# (370)" };
+ { 3, 42300, "", "=q3=Design: Brilliant Dragon's Eye", "=ds=#p12# (370)" };
+ { 4, 42301, "", "=q3=Design: Delicate Dragon's Eye", "=ds=#p12# (370)" };
+ { 5, 42302, "", "=q3=Design: Flashing Dragon's Eye", "=ds=#p12# (370)" };
+ { 6, 42303, "", "=q3=Design: Fractured Dragon's Eye", "=ds=#p12# (370)" };
+ { 7, 42304, "", "=q3=Design: Lustrous Dragon's Eye", "=ds=#p12# (370)" };
+ { 8, 42305, "", "=q3=Design: Mystic Dragon's Eye", "=ds=#p12# (370)" };
+ { 9, 42306, "", "=q3=Design: Precise Dragon's Eye", "=ds=#p12# (370)" };
+ { 10, 42307, "", "=q3=Design: Quick Dragon's Eye", "=ds=#p12# (370)" };
+ { 11, 42308, "", "=q3=Design: Rigid Dragon's Eye", "=ds=#p12# (370)" };
+ { 12, 42309, "", "=q3=Design: Runed Dragon's Eye", "=ds=#p12# (370)" };
+ { 13, 42310, "", "=q3=Design: Smooth Dragon's Eye", "=ds=#p12# (370)" };
+ { 14, 42311, "", "=q3=Design: Solid Dragon's Eye", "=ds=#p12# (370)" };
+ { 15, 42312, "", "=q3=Design: Sparkling Dragon's Eye", "=ds=#p12# (370)" };
+ { 16, 42313, "", "=q3=Design: Stormy Dragon's Eye", "=ds=#p12# (370)" };
+ { 17, 42314, "", "=q3=Design: Subtle Dragon's Eye", "=ds=#p12# (370)" };
+ { 18, 42315, "", "=q3=Design: Thick Dragon's Eye", "=ds=#p12# (370)" };
+ { 20, 42652, "", "=q4=Design: Titanium Earthguard Chain", "=ds=#p12# (420)" };
+ { 21, 42649, "", "=q4=Design: Titanium Earthguard Ring", "=ds=#p12# (420)" };
+ { 22, 42648, "", "=q4=Design: Titanium Impact Band", "=ds=#p12# (420)" };
+ { 23, 42651, "", "=q4=Design: Titanium Impact Choker", "=ds=#p12# (420)" };
+ { 24, 42653, "", "=q4=Design: Titanium Spellshock Necklace", "=ds=#p12# (420)" };
+ { 25, 42650, "", "=q4=Design: Titanium Spellshock Ring", "=ds=#p12# (420)" };
+ Prev = "JewelcraftingDaily5";
+ Back = "JEWELCRAFTINGDAILYMENU";
+};
+
+---------------------
+--- High Risk ---
+---------------------
+
+AtlasLoot_Data["AlchemyHighRiskTBC"] = {
+ Name = ALCHEMY .. " High Risk";
+ Type = "CraftingNoBF";
+ {
Name = "Rare";
- { 1, "s1968677", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Void Assault", "=ds=#sr# 300"};
- { 2, "s1968680", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Dread Assault", "=ds=#sr# 300"};
- { 3, "s1968683", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Twisted Evoker", "=ds=#sr# 300"};
- { 4, "s1968686", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Twisted Assault", "=ds=#sr# 300"};
- { 5, "s1968689", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Twisted Channeler", "=ds=#sr# 300"};
- { 6, "s1968692", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Dread Omen Strikes", "=ds=#sr# 300"};
- { 7, "s1968695", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Void Flows", "=ds=#sr# 300"};
- { 8, "s1968698", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Void Blasting", "=ds=#sr# 300"};
- { 9, "s1968701", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Dread Precision", "=ds=#sr# 300"};
- { 10, "s1968770", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Twisted Crusader", "=ds=#sr# 300"};
+ { 1, "s979362", "1203258", "=q3=Impure Flask of Manifesting Power", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979364", "1203260", "=q3=Impure Flask of the Warsong", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979366", "1203262", "=q3=Impure Flask of the Kirin Tor", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979368", "1203264", "=q3=Impure Flask of Butchery", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979370", "1203266", "=q3=Impure Flask of the Unyielding", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979372", "1203268", "=q3=Impure Flask of Unrelenting Power", "Dungeon Bosses/Raid Trash" };
+ { 7, "s979374", "1203270", "=q3=Impure Flask of Savage Assault", "Dungeon Bosses/Raid Trash" };
+ { 8, "s979376", "1203272", "=q3=Impure Flask of Shattering Thunder", "Dungeon Bosses/Raid Trash" };
+ { 9, "s979378", "1203274", "=q3=Impure Flask of the Executioner", "Dungeon Bosses/Raid Trash" };
+ { 10, "s979380", "1203276", "=q3=Impure Flask of Deep Meditation", "Dungeon Bosses/Raid Trash" };
+ { 11, "s979382", "1203278", "=q3=Impure Flask of Adept Striking", "Dungeon Bosses/Raid Trash" };
};
{
Name = "Epic";
- { 1, "s1968678", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Void Assault", "=ds=#sr# 300"};
- { 2, "s1968681", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Dread Assault", "=ds=#sr# 300"};
- { 3, "s1968684", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Twisted Evoker", "=ds=#sr# 300"};
- { 4, "s1968687", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Twisted Assault", "=ds=#sr# 300"};
- { 5, "s1968690", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Twisted Channeler", "=ds=#sr# 300"};
- { 6, "s1968693", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Dread Omen Strikes", "=ds=#sr# 300"};
- { 7, "s1968696", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Void Flows", "=ds=#sr# 300"};
- { 8, "s1968699", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Void Blasting", "=ds=#sr# 300"};
- { 9, "s1968702", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Dread Precision", "=ds=#sr# 300"};
- { 10, "s1968771", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Twisted Crusader", "=ds=#sr# 300"};
+ { 1, "s979363", "1203259", "=q4=Pure Flask of Manifesting Power", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979365", "1203261", "=q4=Pure Flask of the Warsong", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979367", "1203263", "=q4=Pure Flask of the Kirin Tor", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979369", "1203265", "=q4=Pure Flask of Butchery", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979371", "1203267", "=q4=Pure Flask of the Unyielding", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979373", "1203269", "=q4=Pure Flask of Unrelenting Power", "Dungeon Bosses/Raid Trash" };
+ { 7, "s979375", "1203271", "=q4=Pure Flask of Savage Assault", "Dungeon Bosses/Raid Trash" };
+ { 8, "s979377", "1203273", "=q4=Pure Flask of Shattering Thunder", "Dungeon Bosses/Raid Trash" };
+ { 9, "s979379", "1203275", "=q4=Pure Flask of the Executioner", "Dungeon Bosses/Raid Trash" };
+ { 10, "s979381", "1203277", "=q4=Pure Flask of Deep Meditation", "Dungeon Bosses/Raid Trash" };
+ { 11, "s979383", "1203279", "=q4=Pure Flask of Adept Striking", "Dungeon Bosses/Raid Trash" };
};
};
- AtlasLoot_Data["TailoringHighRiskTBC"] = {
- Name = TAILORING.." High Risk";
- {
+AtlasLoot_Data["SmithingHighRiskTBC"] = {
+ Name = BLACKSMITHING .. " High Risk";
+ Type = "CraftingNoBF";
+ {
Name = "Rare";
- { 1, "s979562", "1204061", "=q3=Armored Cloak Lining", "=ds=#sr# 300"};
- { 2, "s979564", "1204063", "=q3=Chaneller\'s Cloak Lining", "=ds=#sr# 300"};
- { 3, "s979566", "1204065", "=q3=Energizing Cloak Lining", "=ds=#sr# 300"};
- { 4, "s979568", "1204067", "=q3=Rager\'s Cloak Lining", "=ds=#sr# 300"};
- { 5, "s979570", "1204069", "=q3=Steadfast Cloak Lining", "=ds=#sr# 300"};
- { 6, "s979572", "1204071", "=q3=Shifting Cloak Lining", "=ds=#sr# 300"};
+ { 1, "s979534", "1204033", "=q3=Hulking Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979536", "1204035", "=q3=Blade Master's Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979538", "1204037", "=q3=Agile Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979540", "1204039", "=q3=Eluding Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979542", "1204041", "=q3=Scholar's Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979544", "1204043", "=q3=Priestly Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 7, "s979546", "1204045", "=q3=Champion\'s Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 8, "s979548", "1204047", "=q3=Guarded Belt Buckle", "Dungeon Bosses/Raid Trash" };
};
{
Name = "Epic";
- { 1, "s979563", "1204062", "=q4=Fitted Armored Cloak Lining", "=ds=#sr# 300"};
- { 2, "s979565", "1204064", "=q4=Fitted Chaneller\'s Cloak Lining", "=ds=#sr# 300"};
- { 3, "s979567", "1204066", "=q4=Fitted Energizing Cloak Lining", "=ds=#sr# 300"};
- { 4, "s979569", "1204068", "=q4=Fitted Rager\'s Cloak Lining", "=ds=#sr# 300"};
- { 5, "s979571", "1204070", "=q4=Fitted Steadfast Cloak Lining", "=ds=#sr# 300"};
- { 6, "s979573", "1204072", "=q4=Fitted Shifting Cloak Lining", "=ds=#sr# 300"};
+ { 1, "s979535", "1204034", "=q4=Mastercraft Hulking Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979537", "1204036", "=q4=Mastercraft Blade Master's Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979539", "1204038", "=q4=Mastercraft Agile Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979541", "1204040", "=q4=Mastercraft Eluding Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979543", "1204042", "=q4=Mastercraft Scholar's Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979545", "1204044", "=q4=Mastercraft Priestly Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 7, "s979547", "1204046", "=q4=Mastercraft Champion\'s Belt Buckle", "Dungeon Bosses/Raid Trash" };
+ { 8, "s979549", "1204048", "=q4=Mastercraft Guarded Belt Buckle", "Dungeon Bosses/Raid Trash" };
};
};
- AtlasLoot_Data["JewelcraftingHighRiskTBC"] = {
- Name = JEWELCRAFTING.." High Risk";
- {
+AtlasLoot_Data["LeatherworkingHighRiskTBC"] = {
+ Name = LEATHERWORKING .. " High Risk";
+ Type = "CraftingNoBF";
+ {
Name = "Rare";
- { 1, "s979639", "1204165", "=q3=Deep Gold Twisted Pendant", "=ds=#sr# 300"};
- { 2, "s979641", "1204167", "=q3=Bloodshadow Twisted Pendant", "=ds=#sr# 300"};
- { 3, "s979643", "1204169", "=q3=Azureflame Twisted Pendant", "=ds=#sr# 300"};
- { 4, "s979645", "1204171", "=q3=Shadowgold Dread Pendant", "=ds=#sr# 300"};
- { 5, "s979647", "1204173", "=q3=Deep Azure Dread Pendant", "=ds=#sr# 300"};
- { 6, "s979649", "1204175", "=q3=Bloodflame Dread Pendant", "=ds=#sr# 300"};
- { 7, "s979651", "1204177", "=q3=Living Night Void Pendant", "=ds=#sr# 300"};
- { 8, "s979653", "1204179", "=q3=Dawnstar Void Pendant", "=ds=#sr# 300"};
- { 9, "s979655", "1204181", "=q3=Noble Talasite Void Pendant", "=ds=#sr# 300"};
+ { 1, "s979522", "1204021", "=q3=Cobra Strike Gambeson", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979524", "1204023", "=q3=Fel Strike Gambeson", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979526", "1204025", "=q3=Wind Gambeson", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979528", "1204027", "=q3=True Strike Gambeson", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979530", "1204029", "=q3=Clefthoof Gambeson", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979532", "1204031", "=q3=Subtle Gambeson", "Dungeon Bosses/Raid Trash" };
};
{
Name = "Epic";
- { 1, "s979640", "1204166", "=q4=Engraved Deep Gold Twisted Pendant", "=ds=#sr# 300"};
- { 2, "s979642", "1204168", "=q4=Engraved Bloodshadow Twisted Pendant", "=ds=#sr# 300"};
- { 3, "s979644", "1204170", "=q4=Engraved Azureflame Twisted Pendant", "=ds=#sr# 300"};
- { 4, "s979646", "1204172", "=q4=Engraved Shadowgold Dread Pendant", "=ds=#sr# 300"};
- { 5, "s979648", "1204174", "=q4=Engraved Deep Azure Dread Pendant", "=ds=#sr# 300"};
- { 6, "s979650", "1204176", "=q4=Engraved Bloodflame Dread Pendant", "=ds=#sr# 300"};
- { 7, "s979652", "1204178", "=q4=Engraved Living Night Void Pendant", "=ds=#sr# 300"};
- { 8, "s979654", "1204180", "=q4=Engraved Dawnstar Void Pendant", "=ds=#sr# 300"};
- { 9, "s979656", "1204182", "=q4=Engraved Noble Talasite Void Pendant", "=ds=#sr# 300"};
+ { 1, "s979523", "1204022", "=q4=Mastercraft Cobra Strike Gambeson", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979525", "1204024", "=q4=Mastercraft Fel Strike Gambeson", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979527", "1204026", "=q4=Mastercraft Wind Gambeson", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979529", "1204028", "=q4=Mastercraft True Strike Gambeson", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979531", "1204030", "=q4=Mastercraft Clefthoof Gambeson", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979533", "1204032", "=q4=Mastercraft Subtle Gambeson", "Dungeon Bosses/Raid Trash" };
};
};
- AtlasLoot_Data["CookingHighRiskTBC"] = {
- Name = COOKING.." High Risk";
- {
- Name = "Rare";
- { 1, "s979384", "1203280", "=q3=Infused Living Soup", "=ds=#sr# 300"};
- { 2, "s979386", "1203282", "=q3=Infused Charred Steak", "=ds=#sr# 300"};
- { 3, "s979388", "1203284", "=q3=Infused Steamed Wontons", "=ds=#sr# 300"};
- { 4, "s979390", "1203286", "=q3=Infused Air Fried Chops", "=ds=#sr# 300"};
- { 5, "s979392", "1203288", "=q3=Infused Rock\'s Stew (Airsick lowlander flavor text)", "=ds=#sr# 300"};
- { 6, "s979394", "1203290", "=q3=Infused Clear-Cut Chops", "=ds=#sr# 300"};
- { 7, "s979396", "1203292", "=q3=Infused Clear-Cut Wontons", "=ds=#sr# 300"};
- { 8, "s979398", "1203294", "=q3=Infused Clear-Cut Steak", "=ds=#sr# 300"};
- { 9, "s979463", "1203358", "=q3=Infused Bold Simmered Stew", "=ds=#sr# 300"};
- { 10, "s979465", "1203360", "=q3=Infused Bold Duck Stew", "=ds=#sr# 300"};
- { 11, "s979447", "1203338", "=q3=Infused Subtle Chops", "=ds=#sr# 300"};
- { 12, "s979445", "1203340", "=q3=Infused Subtle Steak", "=ds=#sr# 300"};
- { 13, "s979447", "1203342", "=q3=Infused Subtle Wontons", "=ds=#sr# 300"};
- { 14, "s979449", "1203344", "=q3=Infused Subtle Soup", "=ds=#sr# 300"};
- { 15, "s979451", "1203346", "=q3=Infused Bold Stew", "=ds=#sr# 300"};
- { 16, "s979400", "1203296", "=q3=Infused Piercing Chops", "=ds=#sr# 300"};
- { 17, "s979402", "1203298", "=q3=Infused Piercing Steak", "=ds=#sr# 300"};
- { 18, "s979404", "1203300", "=q3=Infused Seared Wontons", "=ds=#sr# 300"};
- { 19, "s979406", "1203302", "=q3=Infused Seared Chops", "=ds=#sr# 300"};
- { 20, "s979421", "1203316", "=q3=Infused Duck Stew", "=ds=#sr# 300"};
- { 21, "s979423", "1203318", "=q3=Infused Chunky Stew", "=ds=#sr# 300"};
- { 22, "s979425", "1203320", "=q3=Infused Simmered Stew", "=ds=#sr# 300"};
- { 23, "s979427", "1203322", "=q3=Infused Wizard Wontons", "=ds=#sr# 300"};
- { 24, "s979429", "1203324", "=q3=Infused Wizard Soup", "=ds=#sr# 300"};
- { 25, "s979431", "1203326", "=q3=Infused Heightened Wontons", "=ds=#sr# 300"};
- { 26, "s979441", "1203336", "=q3=Infused Vibrant Chops", "=ds=#sr# 300"};
- { 27, "s979408", "1203304", "=q3=Infused Savory Stew", "=ds=#sr# 300"};
- { 28, "s979410", "1203306", "=q3=Infused Savory Chops", "=ds=#sr# 300"};
- };
+AtlasLoot_Data["EngineeringHighRiskTBC"] = {
+ Name = ENGINEERING .. " High Risk";
+ Type = "CraftingNoBF";
{
Name = "Rare";
- { 1, "s979413", "1203308", "=q3=Infused Savory Steak", "=ds=#sr# 300"};
- { 2, "s979415", "1203310", "=q3=Infused Savory Wontons", "=ds=#sr# 300"};
- { 3, "s979417", "1203312", "=q3=Infused Red-Hot Stew", "=ds=#sr# 300"};
- { 4, "s979419", "1203314", "=q3=Infused Blazing Stew", "=ds=#sr# 300"};
- { 5, "s979433", "1203328", "=q3=Infused Hearty Living Soup", "=ds=#sr# 300"};
- { 6, "s979435", "1203330", "=q3=Infused Hearty Air Fried Chops", "=ds=#sr# 300"};
- { 7, "s979437", "1203332", "=q3=Infused Hearty Charred Steak", "=ds=#sr# 300"};
- { 8, "s979439", "1203334", "=q3=Infused Hearty Steamed Wontons", "=ds=#sr# 300"};
- { 9, "s979453", "1203348", "=q3=Infused Mana Charged Roast", "=ds=#sr# 300"};
- { 10, "s979455", "1203350", "=q3=Infused Sizzling Roast", "=ds=#sr# 300"};
- { 11, "s979457", "1203352", "=q3=Infused Wild Roast", "=ds=#sr# 300"};
- { 12, "s979459", "1203354", "=q3=Infused Winter Roast", "=ds=#sr# 300"};
- { 13, "s979461", "1203356", "=q3=Infused Blackened Roast", "=ds=#sr# 300"};
+ { 1, "s979550", "1204101", "=q3=Gnomish Magnification Polish", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979552", "1204103", "=q3=Gnomish Sharpening Polish", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979554", "1204105", "=q3=Gnomish Prismatic Polish", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979556", "1204107", "=q3=Felfire Scope", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979558", "1204109", "=q3=Sighted Scope", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979560", "1204111", "=q3=Quickshot Scope", "Dungeon Bosses/Raid Trash" };
};
{
Name = "Epic";
- { 1, "s979385", "1203281", "=q4=Charged Living Soup", "=ds=#sr# 300"};
- { 2, "s979387", "1203283", "=q4=Charged Charred Steak", "=ds=#sr# 300"};
- { 3, "s979389", "1203285", "=q4=Charged Steamed Wontons", "=ds=#sr# 300"};
- { 4, "s979391", "1203287", "=q4=Charged Air Fried Chops", "=ds=#sr# 300"};
- { 5, "s979393", "1203289", "=q4=Charged Rock\'s Stew (Airsick lowlander flavor text)", "=ds=#sr# 300"};
- { 6, "s979395", "1203291", "=q4=Charged Clear-Cut Chops", "=ds=#sr# 300"};
- { 7, "s979397", "1203293", "=q4=Charged Clear-Cut Wontons", "=ds=#sr# 300"};
- { 8, "s979399", "1203295", "=q4=Charged Clear-Cut Steak", "=ds=#sr# 300"};
- { 9, "s979464", "1203359", "=q4=Charged Bold Simmered Stew", "=ds=#sr# 300"};
- { 10, "s979466", "1203361", "=q4=Charged Bold Duck Stew", "=ds=#sr# 300"};
- { 11, "s979444", "1203339", "=q4=Charged Subtle Chops", "=ds=#sr# 300"};
- { 12, "s979446", "1203341", "=q4=Charged Subtle Steak", "=ds=#sr# 300"};
- { 13, "s979448", "1203343", "=q4=Charged Subtle Wontons", "=ds=#sr# 300"};
- { 14, "s979450", "1203345", "=q4=Charged Subtle Soup", "=ds=#sr# 300"};
- { 15, "s979452", "1203347", "=q4=Charged Bold Stew", "=ds=#sr# 300"};
- { 16, "s979401", "1203297", "=q4=Charged Piercing Chops", "=ds=#sr# 300"};
- { 17, "s979403", "1203299", "=q4=Charged Piercing Steak", "=ds=#sr# 300"};
- { 18, "s979405", "1203301", "=q4=Charged Seared Wontons", "=ds=#sr# 300"};
- { 19, "s979407", "1203303", "=q4=Charged Seared Chops", "=ds=#sr# 300"};
- { 20, "s979422", "1203317", "=q4=Charged Duck Stew", "=ds=#sr# 300"};
- { 21, "s979424", "1203319", "=q4=Charged Chunky Stew", "=ds=#sr# 300"};
- { 22, "s979426", "1203321", "=q4=Charged Simmered Stew", "=ds=#sr# 300"};
- { 23, "s979428", "1203323", "=q4=Charged Wizard Wontons", "=ds=#sr# 300"};
- { 24, "s979430", "1203325", "=q4=Charged Wizard Soup", "=ds=#sr# 300"};
- { 25, "s979432", "1203327", "=q4=Charged Heightened Wontons", "=ds=#sr# 300"};
- { 26, "s979442", "1203337", "=q4=Charged Vibrant Chops", "=ds=#sr# 300"};
- { 27, "s979409", "1203305", "=q4=Charged Savory Stew", "=ds=#sr# 300"};
- { 28, "s979412", "1203307", "=q4=Charged Savory Chops", "=ds=#sr# 300"};
+ { 1, "s979551", "1204102", "=q4=Fine Gnomish Magnification Polish", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979553", "1204104", "=q4=Fine Gnomish Sharpening Polish", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979555", "1204106", "=q4=Fine Gnomish Prismatic Polish", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979557", "1204108", "=q4=Focused Felfire Scope", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979559", "1204110", "=q4=Focused Sighted Scope", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979561", "1204112", "=q4=Focused Quickshot Scope", "Dungeon Bosses/Raid Trash" };
+ };
+};
+
+AtlasLoot_Data["EnchantingHighRiskTBC"] = {
+ Name = ENCHANTING .. " High Risk";
+ Type = "CraftingNoBF";
+ {
+ Name = "Rare";
+ { 1, "s1968677", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Void Assault", "Dungeon Bosses/Raid Trash" };
+ { 2, "s1968680", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Dread Assault", "Dungeon Bosses/Raid Trash" };
+ { 3, "s1968683", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Twisted Evoker", "Dungeon Bosses/Raid Trash" };
+ { 4, "s1968686", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Twisted Assault", "Dungeon Bosses/Raid Trash" };
+ { 5, "s1968689", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Twisted Channeler", "Dungeon Bosses/Raid Trash" };
+ { 6, "s1968692", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Dread Omen Strikes", "Dungeon Bosses/Raid Trash" };
+ { 7, "s1968695", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Void Flows", "Dungeon Bosses/Raid Trash" };
+ { 8, "s1968698", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Void Blasting", "Dungeon Bosses/Raid Trash" };
+ { 9, "s1968701", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Dread Precision", "Dungeon Bosses/Raid Trash" };
+ { 10, "s1968770", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Twisted Crusader", "Dungeon Bosses/Raid Trash" };
};
{
Name = "Epic";
- { 1, "s979414", "1203309", "=q4=Charged Savory Steak", "=ds=#sr# 300"};
- { 2, "s979416", "1203311", "=q4=Charged Savory Wontons", "=ds=#sr# 300"};
- { 3, "s979418", "1203313", "=q4=Charged Red-Hot Stew", "=ds=#sr# 300"};
- { 4, "s979420", "1203315", "=q4=Charged Blazing Stew", "=ds=#sr# 300"};
- { 5, "s979434", "1203329", "=q4=Charged Hearty Living Soup", "=ds=#sr# 300"};
- { 6, "s979436", "1203331", "=q4=Charged Hearty Air Fried Chops", "=ds=#sr# 300"};
- { 7, "s979438", "1203333", "=q4=Charged Hearty Charred Steak", "=ds=#sr# 300"};
- { 8, "s979440", "1203335", "=q4=Charged Hearty Steamed Wontons", "=ds=#sr# 300"};
- { 9, "s979454", "1203349", "=q4=Charged Mana Charged Roast", "=ds=#sr# 300"};
- { 10, "s979456", "1203351", "=q4=Charged Sizzling Roast", "=ds=#sr# 300"};
- { 11, "s979458", "1203353", "=q4=Charged Wild Roast", "=ds=#sr# 300"};
- { 12, "s979460", "1203355", "=q4=Charged Winter Roast", "=ds=#sr# 300"};
- { 13, "s979462", "1203357", "=q4=Charged Blackened Roast", "=ds=#sr# 300"};
+ { 1, "s1968678", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Void Assault","Dungeon Bosses/Raid Trash" };
+ { 2, "s1968681", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Dread Assault","Dungeon Bosses/Raid Trash" };
+ { 3, "s1968684", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Twisted Evoker","Dungeon Bosses/Raid Trash" };
+ { 4, "s1968687", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Twisted Assault","Dungeon Bosses/Raid Trash" };
+ { 5, "s1968690", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Twisted Channeler","Dungeon Bosses/Raid Trash" };
+ { 6, "s1968693", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Dread Omen Strikes","Dungeon Bosses/Raid Trash" };
+ { 7, "s1968696", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Void Flows", "Dungeon Bosses/Raid Trash" };
+ { 8, "s1968699", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Void Blasting","Dungeon Bosses/Raid Trash" };
+ { 9, "s1968702", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Dread Precision","Dungeon Bosses/Raid Trash" };
+ { 10, "s1968771", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Overpowering Twisted Crusader","Dungeon Bosses/Raid Trash" };
};
-};
\ No newline at end of file
+};
+
+AtlasLoot_Data["TailoringHighRiskTBC"] = {
+ Name = TAILORING .. " High Risk";
+ Type = "CraftingNoBF";
+ {
+ Name = "Rare";
+ { 1, "s979562", "1204061", "=q3=Armored Cloak Lining", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979564", "1204063", "=q3=Chaneller\'s Cloak Lining", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979566", "1204065", "=q3=Energizing Cloak Lining", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979568", "1204067", "=q3=Rager\'s Cloak Lining", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979570", "1204069", "=q3=Steadfast Cloak Lining", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979572", "1204071", "=q3=Shifting Cloak Lining", "Dungeon Bosses/Raid Trash" };
+ };
+ {
+ Name = "Epic";
+ { 1, "s979563", "1204062", "=q4=Fitted Armored Cloak Lining", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979565", "1204064", "=q4=Fitted Chaneller\'s Cloak Lining", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979567", "1204066", "=q4=Fitted Energizing Cloak Lining", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979569", "1204068", "=q4=Fitted Rager\'s Cloak Lining", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979571", "1204070", "=q4=Fitted Steadfast Cloak Lining", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979573", "1204072", "=q4=Fitted Shifting Cloak Lining", "Dungeon Bosses/Raid Trash" };
+ };
+};
+
+AtlasLoot_Data["JewelcraftingHighRiskTBC"] = {
+ Name = JEWELCRAFTING .. " High Risk";
+ Type = "CraftingNoBF";
+ {
+ Name = "Rare";
+ { 1, "s979639", "1204165", "=q3=Deep Gold Twisted Pendant", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979641", "1204167", "=q3=Bloodshadow Twisted Pendant", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979643", "1204169", "=q3=Azureflame Twisted Pendant", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979645", "1204171", "=q3=Shadowgold Dread Pendant", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979647", "1204173", "=q3=Deep Azure Dread Pendant", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979649", "1204175", "=q3=Bloodflame Dread Pendant", "Dungeon Bosses/Raid Trash" };
+ { 7, "s979651", "1204177", "=q3=Living Night Void Pendant", "Dungeon Bosses/Raid Trash" };
+ { 8, "s979653", "1204179", "=q3=Dawnstar Void Pendant", "Dungeon Bosses/Raid Trash" };
+ { 9, "s979655", "1204181", "=q3=Noble Talasite Void Pendant", "Dungeon Bosses/Raid Trash" };
+ };
+ {
+ Name = "Epic";
+ { 1, "s979640", "1204166", "=q4=Engraved Deep Gold Twisted Pendant", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979642", "1204168", "=q4=Engraved Bloodshadow Twisted Pendant", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979644", "1204170", "=q4=Engraved Azureflame Twisted Pendant", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979646", "1204172", "=q4=Engraved Shadowgold Dread Pendant", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979648", "1204174", "=q4=Engraved Deep Azure Dread Pendant", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979650", "1204176", "=q4=Engraved Bloodflame Dread Pendant", "Dungeon Bosses/Raid Trash" };
+ { 7, "s979652", "1204178", "=q4=Engraved Living Night Void Pendant", "Dungeon Bosses/Raid Trash" };
+ { 8, "s979654", "1204180", "=q4=Engraved Dawnstar Void Pendant", "Dungeon Bosses/Raid Trash" };
+ { 9, "s979656", "1204182", "=q4=Engraved Noble Talasite Void Pendant", "Dungeon Bosses/Raid Trash" };
+ };
+};
+
+AtlasLoot_Data["CookingHighRiskTBC"] = {
+ Name = COOKING .. " High Risk";
+ Type = "CraftingNoBF";
+ {
+ Name = "Rare";
+ { 1, "s979384", "1203280", "=q3=Infused Living Soup", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979386", "1203282", "=q3=Infused Charred Steak", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979388", "1203284", "=q3=Infused Steamed Wontons", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979390", "1203286", "=q3=Infused Air Fried Chops", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979392", "1203288", "=q3=Infused Rock\'s Stew (Airsick lowlander flavor text)", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979394", "1203290", "=q3=Infused Clear-Cut Chops", "Dungeon Bosses/Raid Trash" };
+ { 7, "s979396", "1203292", "=q3=Infused Clear-Cut Wontons", "Dungeon Bosses/Raid Trash" };
+ { 8, "s979398", "1203294", "=q3=Infused Clear-Cut Steak", "Dungeon Bosses/Raid Trash" };
+ { 9, "s979463", "1203358", "=q3=Infused Bold Simmered Stew", "Dungeon Bosses/Raid Trash" };
+ { 10, "s979465", "1203360", "=q3=Infused Bold Duck Stew", "Dungeon Bosses/Raid Trash" };
+ { 11, "s979447", "1203338", "=q3=Infused Subtle Chops", "Dungeon Bosses/Raid Trash" };
+ { 12, "s979445", "1203340", "=q3=Infused Subtle Steak", "Dungeon Bosses/Raid Trash" };
+ { 13, "s979447", "1203342", "=q3=Infused Subtle Wontons", "Dungeon Bosses/Raid Trash" };
+ { 14, "s979449", "1203344", "=q3=Infused Subtle Soup", "Dungeon Bosses/Raid Trash" };
+ { 15, "s979451", "1203346", "=q3=Infused Bold Stew", "Dungeon Bosses/Raid Trash" };
+ { 16, "s979400", "1203296", "=q3=Infused Piercing Chops", "Dungeon Bosses/Raid Trash" };
+ { 17, "s979402", "1203298", "=q3=Infused Piercing Steak", "Dungeon Bosses/Raid Trash" };
+ { 18, "s979404", "1203300", "=q3=Infused Seared Wontons", "Dungeon Bosses/Raid Trash" };
+ { 19, "s979406", "1203302", "=q3=Infused Seared Chops", "Dungeon Bosses/Raid Trash" };
+ { 20, "s979421", "1203316", "=q3=Infused Duck Stew", "Dungeon Bosses/Raid Trash" };
+ { 21, "s979423", "1203318", "=q3=Infused Chunky Stew", "Dungeon Bosses/Raid Trash" };
+ { 22, "s979425", "1203320", "=q3=Infused Simmered Stew", "Dungeon Bosses/Raid Trash" };
+ { 23, "s979427", "1203322", "=q3=Infused Wizard Wontons", "Dungeon Bosses/Raid Trash" };
+ { 24, "s979429", "1203324", "=q3=Infused Wizard Soup", "Dungeon Bosses/Raid Trash" };
+ { 25, "s979431", "1203326", "=q3=Infused Heightened Wontons", "Dungeon Bosses/Raid Trash" };
+ { 26, "s979441", "1203336", "=q3=Infused Vibrant Chops", "Dungeon Bosses/Raid Trash" };
+ { 27, "s979408", "1203304", "=q3=Infused Savory Stew", "Dungeon Bosses/Raid Trash" };
+ { 28, "s979410", "1203306", "=q3=Infused Savory Chops", "Dungeon Bosses/Raid Trash" };
+ };
+ {
+ Name = "Rare";
+ { 1, "s979413", "1203308", "=q3=Infused Savory Steak", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979415", "1203310", "=q3=Infused Savory Wontons", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979417", "1203312", "=q3=Infused Red-Hot Stew", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979419", "1203314", "=q3=Infused Blazing Stew", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979433", "1203328", "=q3=Infused Hearty Living Soup", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979435", "1203330", "=q3=Infused Hearty Air Fried Chops", "Dungeon Bosses/Raid Trash" };
+ { 7, "s979437", "1203332", "=q3=Infused Hearty Charred Steak", "Dungeon Bosses/Raid Trash" };
+ { 8, "s979439", "1203334", "=q3=Infused Hearty Steamed Wontons", "Dungeon Bosses/Raid Trash" };
+ { 9, "s979453", "1203348", "=q3=Infused Mana Charged Roast", "Dungeon Bosses/Raid Trash" };
+ { 10, "s979455", "1203350", "=q3=Infused Sizzling Roast", "Dungeon Bosses/Raid Trash" };
+ { 11, "s979457", "1203352", "=q3=Infused Wild Roast", "Dungeon Bosses/Raid Trash" };
+ { 12, "s979459", "1203354", "=q3=Infused Winter Roast", "Dungeon Bosses/Raid Trash" };
+ { 13, "s979461", "1203356", "=q3=Infused Blackened Roast", "Dungeon Bosses/Raid Trash" };
+ };
+ {
+ Name = "Epic";
+ { 1, "s979385", "1203281", "=q4=Charged Living Soup", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979387", "1203283", "=q4=Charged Charred Steak", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979389", "1203285", "=q4=Charged Steamed Wontons", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979391", "1203287", "=q4=Charged Air Fried Chops", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979393", "1203289", "=q4=Charged Rock\'s Stew (Airsick lowlander flavor text)", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979395", "1203291", "=q4=Charged Clear-Cut Chops", "Dungeon Bosses/Raid Trash" };
+ { 7, "s979397", "1203293", "=q4=Charged Clear-Cut Wontons", "Dungeon Bosses/Raid Trash" };
+ { 8, "s979399", "1203295", "=q4=Charged Clear-Cut Steak", "Dungeon Bosses/Raid Trash" };
+ { 9, "s979464", "1203359", "=q4=Charged Bold Simmered Stew", "Dungeon Bosses/Raid Trash" };
+ { 10, "s979466", "1203361", "=q4=Charged Bold Duck Stew", "Dungeon Bosses/Raid Trash" };
+ { 11, "s979444", "1203339", "=q4=Charged Subtle Chops", "Dungeon Bosses/Raid Trash" };
+ { 12, "s979446", "1203341", "=q4=Charged Subtle Steak", "Dungeon Bosses/Raid Trash" };
+ { 13, "s979448", "1203343", "=q4=Charged Subtle Wontons", "Dungeon Bosses/Raid Trash" };
+ { 14, "s979450", "1203345", "=q4=Charged Subtle Soup", "Dungeon Bosses/Raid Trash" };
+ { 15, "s979452", "1203347", "=q4=Charged Bold Stew", "Dungeon Bosses/Raid Trash" };
+ { 16, "s979401", "1203297", "=q4=Charged Piercing Chops", "Dungeon Bosses/Raid Trash" };
+ { 17, "s979403", "1203299", "=q4=Charged Piercing Steak", "Dungeon Bosses/Raid Trash" };
+ { 18, "s979405", "1203301", "=q4=Charged Seared Wontons", "Dungeon Bosses/Raid Trash" };
+ { 19, "s979407", "1203303", "=q4=Charged Seared Chops", "Dungeon Bosses/Raid Trash" };
+ { 20, "s979422", "1203317", "=q4=Charged Duck Stew", "Dungeon Bosses/Raid Trash" };
+ { 21, "s979424", "1203319", "=q4=Charged Chunky Stew", "Dungeon Bosses/Raid Trash" };
+ { 22, "s979426", "1203321", "=q4=Charged Simmered Stew", "Dungeon Bosses/Raid Trash" };
+ { 23, "s979428", "1203323", "=q4=Charged Wizard Wontons", "Dungeon Bosses/Raid Trash" };
+ { 24, "s979430", "1203325", "=q4=Charged Wizard Soup", "Dungeon Bosses/Raid Trash" };
+ { 25, "s979432", "1203327", "=q4=Charged Heightened Wontons", "Dungeon Bosses/Raid Trash" };
+ { 26, "s979442", "1203337", "=q4=Charged Vibrant Chops", "Dungeon Bosses/Raid Trash" };
+ { 27, "s979409", "1203305", "=q4=Charged Savory Stew", "Dungeon Bosses/Raid Trash" };
+ { 28, "s979412", "1203307", "=q4=Charged Savory Chops", "Dungeon Bosses/Raid Trash" };
+ };
+ {
+ Name = "Epic";
+ { 1, "s979414", "1203309", "=q4=Charged Savory Steak", "Dungeon Bosses/Raid Trash" };
+ { 2, "s979416", "1203311", "=q4=Charged Savory Wontons", "Dungeon Bosses/Raid Trash" };
+ { 3, "s979418", "1203313", "=q4=Charged Red-Hot Stew", "Dungeon Bosses/Raid Trash" };
+ { 4, "s979420", "1203315", "=q4=Charged Blazing Stew", "Dungeon Bosses/Raid Trash" };
+ { 5, "s979434", "1203329", "=q4=Charged Hearty Living Soup", "Dungeon Bosses/Raid Trash" };
+ { 6, "s979436", "1203331", "=q4=Charged Hearty Air Fried Chops", "Dungeon Bosses/Raid Trash" };
+ { 7, "s979438", "1203333", "=q4=Charged Hearty Charred Steak", "Dungeon Bosses/Raid Trash" };
+ { 8, "s979440", "1203335", "=q4=Charged Hearty Steamed Wontons", "Dungeon Bosses/Raid Trash" };
+ { 9, "s979454", "1203349", "=q4=Charged Mana Charged Roast", "Dungeon Bosses/Raid Trash" };
+ { 10, "s979456", "1203351", "=q4=Charged Sizzling Roast", "Dungeon Bosses/Raid Trash" };
+ { 11, "s979458", "1203353", "=q4=Charged Wild Roast", "Dungeon Bosses/Raid Trash" };
+ { 12, "s979460", "1203355", "=q4=Charged Winter Roast", "Dungeon Bosses/Raid Trash" };
+ { 13, "s979462", "1203357", "=q4=Charged Blackened Roast", "Dungeon Bosses/Raid Trash" };
+ };
+};
diff --git a/AtlasLoot_Crafting/craftingWRATH.lua b/AtlasLoot_Crafting/craftingWRATH.lua
index 8e70262..53ab798 100644
--- a/AtlasLoot_Crafting/craftingWRATH.lua
+++ b/AtlasLoot_Crafting/craftingWRATH.lua
@@ -89,3806 +89,1682 @@ local MASTER = select(2, GetSpellInfo(28596));
---- Fishing
---- Jewelcrafting
- -----------------------
- --- Tradeskill List ---
- -----------------------
-
- ---------------
- --- Alchemy ---
- ---------------
-
- AtlasLoot_Data["AlchemyBattleElixirWRATH"] = {
- { 1, "s60365", "44330", "=q1=Elixir of Armor Piercing", "=ds="};
- { 2, "s60355", "44327", "=q1=Elixir of Deadly Strikes", "=ds="};
- { 3, "s60357", "44329", "=q1=Elixir of Expertise", "=ds="};
- { 4, "s60366", "44331", "=q1=Elixir of Lightning Speed", "=ds="};
- { 5, "s60354", "44325", "=q1=Elixir of Accuracy", "=ds="};
- { 6, "s53840", "39666", "=q1=Elixir of Mighty Agility", "=ds="..AL["Trainer"]};
- { 7, "s54218", "40073", "=q1=Elixir of Mighty Strength", "=ds="..AL["Trainer"]};
- { 8, "s53848", "40076", "=q1=Guru's Elixir", "=ds="..AL["Trainer"]};
- { 9, "s53842", "40070", "=q1=Spellpower Elixir", "=ds="..AL["Trainer"]};
- { 10, "s53841", "40068", "=q1=WRATH Elixir", "=ds="..AL["Trainer"]};
- Prev = "AlchemyBattleElixirTBC";
- Next = "AlchemyBattleElixirCLASSIC";
- Back = "ALCHEMYMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["AlchemyGuardianElixirWRATH"] = {
- { 1, "s60356", "44328", "=q1=Elixir of Mighty Defense", "=ds="..AL["Discovery"]};
- { 2, "s56519", "40109", "=q1=Elixir of Mighty Mageblood", "=ds="..AL["Discovery"]};
- { 3, "s54220", "40097", "=q1=Elixir of Protection", "=ds="..AL["Discovery"]};
- { 4, "s62410", "8827", "=q1=Elixir of Water Walking", "=ds="..AL["Discovery"]};
- { 5, "s53898", "40078", "=q1=Elixir of Mighty Fortitude", "=ds="..AL["Trainer"]};
- { 6, "s60367", "44332", "=q1=Elixir of Mighty Thoughts", "=ds="..AL["Trainer"]};
- { 7, "s53847", "40072", "=q1=Elixir of Spirit", "=ds="..AL["Trainer"]};
- Prev = "AlchemyGuardianElixirTBC";
- Back = "ALCHEMYMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["AlchemyPotionWRATH"] = {
- { 1, "s54221", "40211", "=q1=Potion of Speed", "=ds="};
- { 2, "s54222", "40212", "=q1=Potion of Wild Magic", "=ds="};
- { 3, "s53904", "40087", "=q1=Powerful Rejuvenation Potion", "=ds="};
- { 4, "s58868", "43570", "=q1=Endless Mana Potion", "=ds="..AL["Trainer"]};
- { 5, "s53837", "33448", "=q1=Runic Mana Potion", "=ds="..AL["Trainer"]};
- { 6, "s58871", "43569", "=q1=Endless Healing Potion", "=ds="..AL["Trainer"]};
- { 7, "s53836", "33447", "=q1=Runic Healing Potion", "=ds="..AL["Trainer"]};
- { 8, "s53936", "40213", "=q1=Mighty Arcane Protection Potion", "=ds="};
- { 9, "s53939", "40214", "=q1=Mighty Fire Protection Potion", "=ds="..AL["Drop"]};
- { 10, "s53937", "40215", "=q1=Mighty Frost Protection Potion", "=ds="..AL["Drop"]};
- { 11, "s53942", "40216", "=q1=Mighty Nature Protection Potion", "=ds="..AL["Drop"]};
- { 12, "s53938", "40217", "=q1=Mighty Shadow Protection Potion", "=ds="};
- { 13, "s53905", "40093", "=q1=Indestructible Potion", "=ds="..AL["Trainer"]};
- { 14, "s53900", "40081", "=q1=Potion of Nightmares", "=ds="..AL["Trainer"]};
- { 15, "s53895", "40077", "=q1=Crazy Alchemist's Potion", "=ds="..AL["Trainer"]};
- { 16, "s53839", "40067", "=q1=Icy Mana Potion", "=ds="..AL["Trainer"]};
- { 17, "s53838", "39671", "=q1=Resurgent Healing Potion", "=ds="..AL["Trainer"]};
- Prev = "AlchemyPotionTBC";
- Next = "AlchemyPotionCLASSIC";
- Back = "ALCHEMYMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["AlchemyFlaskWRATH"] = {
- { 1, "s67025", "47499", "=q3=Flask of the North", "=ds="..AL["Trainer"]};
- { 2, "s53903", "46377", "=q1=Flask of Endless Rage", "=ds="..AL["Trainer"]};
- { 3, "s54213", "46378", "=q1=Flask of Pure Mojo", "=ds="..AL["Trainer"]};
- { 4, "s53902", "46379", "=q1=Flask of Stoneblood", "=ds="..AL["Trainer"]};
- { 5, "s53901", "46376", "=q1=Flask of the Frost Wyrm", "=ds="..AL["Trainer"]};
- { 6, "s62213", "44939", "=q1=Lesser Flask of Resistance", "=ds="..AL["Trainer"]};
- { 7, "s53899", "40079", "=q1=Lesser Flask of Toughness", "=ds="..AL["Trainer"]};
- Prev = "AlchemyFlaskTBC";
- Next = "AlchemyFlaskCLASSIC";
- Back = "ALCHEMYMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["AlchemyTransmuteWRATH"] = {
- { 1, "s66659", "36919", "=q4=Transmute: Cardinal Ruby", "=ds="..AL["Quest Reward"]};
- { 2, "s66658", "36931", "=q4=Transmute: Ametrine", "=ds="..AL["Trainer"]};
- { 3, "s66662", "36928", "=q4=Transmute: Dreadstone", "=ds="..AL["Trainer"]};
- { 4, "s66664", "36934", "=q4=Transmute: Eye of Zul", "=ds="..AL["Trainer"]};
- { 5, "s66660", "36922", "=q4=Transmute: King's Amber", "=ds="..AL["Trainer"]};
- { 6, "s66663", "36925", "=q4=Transmute: Majestic Zircon", "=ds="..AL["Trainer"]};
- { 7, "s54020", "40248", "=q3=Transmute: Eternal Might", "=ds="..AL["Trainer"]};
- { 8, "s57427", "41334", "=q3=Transmute: Earthsiege Diamond", "=ds="..AL["Trainer"]};
- { 9, "s57425", "41266", "=q3=Transmute: Skyflare Diamond", "=ds="..AL["Trainer"]};
- { 13, "s53777", "35624", "=q2=Transmute: Eternal Air to Earth", "=ds="};
- { 14, "s53776", "35622", "=q2=Transmute: Eternal Air to Water", "=ds="};
- { 15, "s53781", "35623", "=q2=Transmute: Eternal Earth to Air", "=ds="};
- { 16, "s53782", "35627", "=q2=Transmute: Eternal Earth to Shadow", "=ds="};
- { 17, "s53775", "35625", "=q2=Transmute: Eternal Fire to Life", "=ds="};
- { 18, "s53774", "35622", "=q2=Transmute: Eternal Fire to Water", "=ds="};
- { 19, "s53773", "36860", "=q2=Transmute: Eternal Life to Fire", "=ds="};
- { 20, "s53771", "35627", "=q2=Transmute: Eternal Life to Shadow", "=ds="};
- { 21, "s53779", "35624", "=q2=Transmute: Eternal Shadow to Earth", "=ds="};
- { 22, "s53780", "35625", "=q2=Transmute: Eternal Shadow to Life", "=ds="};
- { 23, "s53783", "35623", "=q2=Transmute: Eternal Water to Air", "=ds="};
- { 24, "s53784", "36860", "=q2=Transmute: Eternal Water to Fire", "=ds="};
- { 25, "s60350", "41163", "=q2=Transmute: Titanium", "=ds="..AL["Trainer"]};
- Prev = "AlchemyTransmuteTBC";
- Next = "AlchemyTransmuteCLASSIC";
- Back = "ALCHEMYMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["AlchemyMiscWRATH"] = {
- { 1, "s47050", "35751", "=q4=Assassin's Alchemist Stone", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Shattered Sun Offensive"]};
- { 2, "s47046", "35748", "=q4=Guardian's Alchemist Stone", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Shattered Sun Offensive"]};
- { 3, "s47049", "35750", "=q4=Redeemer's Alchemist Stone", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Shattered Sun Offensive"]};
- { 4, "s47048", "35749", "=q4=Sorcerer's Alchemist Stone", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Shattered Sun Offensive"]};
- { 5, "s17632", "13503", "=q4=Alchemist's Stone", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["The Sha'tar"]};
- { 6, "s60403", "44323", "=q3=Indestructible Alchemist Stone", "=ds="..AL["Trainer"]};
- { 7, "s60396", "44322", "=q3=Mercurial Alchemist Stone", "=ds="..AL["Trainer"]};
- { 8, "s60405", "44324", "=q3=Mighty Alchemist Stone", "=ds="..AL["Trainer"]};
- { 10, "s38070", "31080", "=q2=Mercurial Stone", "=ds="..AL["Trainer"]};
- { 11, "s62409", "44958", "=q1=Ethereal Oil", "=ds="..AL["Trainer"]};
- { 12, "s53812", "40195", "=q1=Pygmy Oil", "=ds="..AL["Trainer"]};
- Prev = "AlchemyMiscTBC";
- Next = "AlchemyMiscCLASSIC";
- Back = "ALCHEMYMENU";
- Submenu = "Expansion";
- };
-
- ---------------------
- --- Blacksmithing ---
- ---------------------
-
- AtlasLoot_Data["SmithingArmorWRATH"] = {
- { 1, "s70568", "49907", "=q4=Boots of Kingly Upheaval", "=ds="..AL["Vendor"]..""};
- { 2, "s70566", "49906", "=q4=Hellfrozen Bonegrinders", "=ds="..AL["Vendor"]..""};
- { 3, "s70565", "49903", "=q4=Legplates of Painful Death", "=ds="..AL["Vendor"]..""};
- { 4, "s70567", "49904", "=q4=Pillars of Might", "=ds="..AL["Vendor"]..""};
- { 5, "s70563", "49905", "=q4=Protectors of Life", "=ds="..AL["Vendor"]..""};
- { 6, "s70562", "49902", "=q4=Puresteel Legplates", "=ds="..AL["Vendor"]..""};
- { 7, "s67130", "47592", "=q4=Breastplate of the White Knight", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 8, "s67091", "47591", "=q4=Breastplate of the White Knight", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 9, "s67131", "47571", "=q4=Saronite Swordbreakers", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 10, "s67092", "47570", "=q4=Saronite Swordbreakers", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 11, "s67096", "47574", "=q4=Sunforged Bracers", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 12, "s67135", "47575", "=q4=Sunforged Bracers", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 13, "s67095", "47593", "=q4=Sunforged Breastplate", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 14, "s67134", "47594", "=q4=Sunforged Breastplate", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 15, "s67093", "47589", "=q4=Titanium Razorplate", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 16, "s67132", "47590", "=q4=Titanium Razorplate", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 17, "s67094", "47572", "=q4=Titanium Spikeguards", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 18, "s67133", "47573", "=q4=Titanium Spikeguards", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 19, "s63188", "45559", "=q4=Battlelord's Plate Boots", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 20, "s63187", "45550", "=q4=Belt of the Titans", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 21, "s63191", "45551", "=q4=Indestructible Plate Girdle", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 22, "s63189", "45552", "=q4=Plate Girdle of Righteousness", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 23, "s63192", "45560", "=q4=Spiked Deathdealers", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 24, "s63190", "45561", "=q4=Treads of Destiny", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 25, "s55374", "41388", "=q4=Brilliant Titansteel Helm", "=ds="..AL["Trainer"] };
- { 26, "s55377", "41394", "=q4=Brilliant Titansteel Treads", "=ds="..AL["Trainer"] };
- { 27, "s55372", "41386", "=q4=Spiked Titansteel Helm", "=ds="..AL["Trainer"] };
- { 28, "s55375", "41391", "=q4=Spiked Titansteel Treads", "=ds="..AL["Trainer"] };
- { 29, "s55373", "41387", "=q4=Tempered Titansteel Helm", "=ds="..AL["Trainer"] };
- { 30, "s55376", "41392", "=q4=Tempered Titansteel Treads", "=ds="..AL["Trainer"] };
- Next = "SmithingArmorWRATH2";
- Back = "SMITHINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["SmithingArmorWRATH2"] = {
- { 1, "s56400", "42508", "=q4=Titansteel Shield Wall", "=ds="..AL["Trainer"] };
- { 2, "s61008", "43586", "=q4=Icebane Chestguard", "=ds="..AL["Trainer"] };
- { 3, "s61009", "43587", "=q4=Icebane Girdle", "=ds="..AL["Trainer"] };
- { 4, "s61010", "43588", "=q4=Icebane Treads", "=ds="..AL["Trainer"] };
- { 5, "s55303", "41345", "=q3=Daunting Legplates", "=ds="..AL["Trainer"] };
- { 6, "s55302", "41344", "=q3=Helm of Command", "=ds="..AL["Trainer"] };
- { 7, "s56555", "42725", "=q3=Ornate Saronite Hauberk", "=ds="..AL["Trainer"] };
- { 8, "s56554", "42726", "=q3=Ornate Saronite Legplates", "=ds="..AL["Trainer"] };
- { 9, "s56556", "42728", "=q3=Ornate Saronite Skullshield", "=ds="..AL["Trainer"] };
- { 10, "s55304", "41346", "=q3=Righteous Greaves", "=ds="..AL["Trainer"] };
- { 11, "s55311", "41353", "=q3=Savage Saronite Hauberk", "=ds="..AL["Trainer"] };
- { 12, "s55310", "41347", "=q3=Savage Saronite Legplates", "=ds="..AL["Trainer"] };
- { 13, "s55312", "41350", "=q3=Savage Saronite Skullshield", "=ds="..AL["Trainer"] };
- { 14, "s55301", "41357", "=q3=Daunting Handguards", "=ds="..AL["Trainer"] };
- { 15, "s56553", "42724", "=q3=Ornate Saronite Gauntlets", "=ds="..AL["Trainer"] };
- { 16, "s56550", "42727", "=q3=Ornate Saronite Pauldrons", "=ds="..AL["Trainer"] };
- { 17, "s56551", "42729", "=q3=Ornate Saronite Waistguard", "=ds="..AL["Trainer"] };
- { 18, "s56552", "42730", "=q3=Ornate Saronite Walkers", "=ds="..AL["Trainer"] };
- { 19, "s55300", "41356", "=q3=Righteous Gauntlets", "=ds="..AL["Trainer"] };
- { 20, "s55309", "41349", "=q3=Savage Saronite Gauntlets", "=ds="..AL["Trainer"] };
- { 21, "s55306", "41351", "=q3=Savage Saronite Pauldrons", "=ds="..AL["Trainer"] };
- { 22, "s55307", "41352", "=q3=Savage Saronite Waistguard", "=ds="..AL["Trainer"] };
- { 23, "s55308", "41348", "=q3=Savage Saronite Walkers", "=ds="..AL["Trainer"] };
- { 24, "s56549", "42723", "=q3=Ornate Saronite Bracers", "=ds="..AL["Trainer"] };
- { 25, "s55305", "41354", "=q3=Savage Saronite Bracers", "=ds="..AL["Trainer"] };
- { 26, "s55298", "41355", "=q3=Vengeance Bindings", "=ds="..AL["Trainer"] };
- { 27, "s55058", "41129", "=q3=Brilliant Saronite Breastplate", "=ds="..AL["Trainer"] };
- { 28, "s59441", "43870", "=q3=Brilliant Saronite Helm", "=ds="..AL["Trainer"] };
- { 29, "s55186", "41189", "=q3=Chestplate of Conquest", "=ds="..AL["Trainer"] };
- { 30, "s55187", "41190", "=q3=Legplates of Conquest", "=ds="..AL["Trainer"] };
- Next = "SmithingArmorWRATH3";
- Prev = "SmithingArmorWRATH";
- Back = "SMITHINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["SmithingArmorWRATH3"] = {
- { 1, "s55015", "41114", "=q3=Tempered Saronite Gauntlets", "=ds="..AL["Trainer"] };
- { 2, "s55014", "41113", "=q3=Saronite Bulwark", "=ds="..AL["Trainer"] };
- { 3, "s55017", "41116", "=q3=Tempered Saronite Bracers", "=ds="..AL["Trainer"] };
- { 4, "s55057", "41128", "=q3=Brilliant Saronite Boots", "=ds="..AL["Trainer"] };
- { 5, "s59440", "43865", "=q3=Brilliant Saronite Pauldrons", "=ds="..AL["Trainer"] };
- { 6, "s54555", "40673", "=q3=Tempered Saronite Helm", "=ds="..AL["Trainer"] };
- { 7, "s54556", "40675", "=q3=Tempered Saronite Shoulders", "=ds="..AL["Trainer"] };
- { 8, "s59438", "43864", "=q3=Brilliant Saronite Bracers", "=ds="..AL["Trainer"] };
- { 9, "s55056", "41127", "=q3=Brilliant Saronite Gauntlets", "=ds="..AL["Trainer"] };
- { 10, "s54552", "40671", "=q3=Tempered Saronite Boots", "=ds="..AL["Trainer"] };
- { 11, "s54553", "40672", "=q3=Tempered Saronite Breastplate", "=ds="..AL["Trainer"] };
- { 12, "s59436", "43860", "=q3=Brilliant Saronite Belt", "=ds="..AL["Trainer"] };
- { 13, "s55055", "41126", "=q3=Brilliant Saronite Legplates", "=ds="..AL["Trainer"] };
- { 14, "s54551", "40669", "=q3=Tempered Saronite Belt", "=ds="..AL["Trainer"] };
- { 15, "s54554", "40674", "=q3=Tempered Saronite Legplates", "=ds="..AL["Trainer"] };
- { 16, "s54557", "40670", "=q3=Saronite Defender", "=ds="..AL["Trainer"] };
- { 17, "s55013", "41117", "=q3=Saronite Protector", "=ds="..AL["Trainer"] };
- { 18, "s54949", "40955", "=q2=Horned Cobalt Helm", "=ds="..AL["Trainer"] };
- { 19, "s54948", "40954", "=q2=Spiked Cobalt Bracers", "=ds="..AL["Trainer"] };
- { 20, "s54946", "40953", "=q2=Spiked Cobalt Belt", "=ds="..AL["Trainer"] };
- { 21, "s54947", "40943", "=q2=Spiked Cobalt Legplates", "=ds="..AL["Trainer"] };
- { 22, "s54945", "40952", "=q2=Spiked Cobalt Gauntlets", "=ds="..AL["Trainer"] };
- { 23, "s54941", "40950", "=q2=Spiked Cobalt Shoulders", "=ds="..AL["Trainer"] };
- { 24, "s54918", "40949", "=q2=Spiked Cobalt Boots", "=ds="..AL["Trainer"] };
- { 25, "s54944", "40951", "=q2=Spiked Cobalt Chestpiece", "=ds="..AL["Trainer"] };
- { 26, "s54978", "40956", "=q2=Reinforced Cobalt Shoulders", "=ds="..AL["Drop"]..": "..BabbleZone["Dragonblight"] };
- { 27, "s54979", "40957", "=q2=Reinforced Cobalt Helm", "=ds="..AL["Drop"]..": "..BabbleZone["Grizzly Hills"] };
- { 28, "s54980", "40958", "=q2=Reinforced Cobalt Legplates", "=ds="..AL["Drop"]..": "..BabbleZone["Zul'Drak"] };
- { 29, "s54981", "40959", "=q2=Reinforced Cobalt Chestpiece", "=ds="..AL["Drop"]..": "..BabbleZone["Sholazar Basin"] };
- { 30, "s54917", "40942", "=q2=Spiked Cobalt Helm", "=ds="..AL["Trainer"] };
- Prev = "SmithingArmorWRATH2";
- Next = "SmithingArmorWRATH4";
- Back = "SMITHINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["SmithingArmorWRATH4"] = {
- { 1, "s52570", "39085", "=q2=Cobalt Chestpiece", "=ds="..AL["Trainer"] };
- { 2, "s52571", "39084", "=q2=Cobalt Helm", "=ds="..AL["Trainer"] };
- { 3, "s52567", "39086", "=q2=Cobalt Legplates", "=ds="..AL["Trainer"] };
- { 4, "s55835", "41975", "=q2=Cobalt Gauntlets", "=ds="..AL["Trainer"] };
- { 5, "s55834", "41974", "=q2=Cobalt Bracers", "=ds="..AL["Trainer"] };
- { 6, "s52572", "39083", "=q2=Cobalt Shoulders", "=ds="..AL["Trainer"] };
- { 7, "s54550", "40668", "=q2=Cobalt Triangle Shield", "=ds="..AL["Trainer"] };
- { 8, "s52568", "39087", "=q2=Cobalt Belt", "=ds="..AL["Trainer"] };
- { 9, "s52569", "39088", "=q2=Cobalt Boots", "=ds="..AL["Trainer"] };
- Prev = "SmithingArmorWRATH3";
- Back = "SMITHINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["SmithingWeaponWRATH"] = {
- { 1, "s63182", "45085", "=q4=Titansteel Spellblade", "=ds="..AL["Trainer"] };
- { 2, "s55370", "41383", "=q4=Titansteel Bonecrusher", "=ds="..AL["Trainer"] };
- { 3, "s55369", "41257", "=q4=Titansteel Destroyer", "=ds="..AL["Trainer"] };
- { 4, "s55371", "41384", "=q4=Titansteel Guardian", "=ds="..AL["Trainer"] };
- { 5, "s56234", "42435", "=q4=Titansteel Shanker", "=ds="..AL["Trainer"] };
- { 6, "s55183", "41186", "=q3=Corroded Saronite Edge", "=ds="..AL["Trainer"] };
- { 7, "s55184", "41187", "=q3=Corroded Saronite Woundbringer", "=ds="..AL["Trainer"] };
- { 8, "s55185", "41188", "=q3=Saronite Mindcrusher", "=ds="..AL["Trainer"] };
- { 9, "s56280", "42443", "=q3=Cudgel of Saronite Justice", "=ds="..AL["Trainer"] };
- { 10, "s55182", "41185", "=q3=Furious Saronite Beatstick", "=ds="..AL["Trainer"] };
- { 11, "s59442", "43871", "=q3=Saronite Spellblade", "=ds="..AL["Trainer"] };
- { 12, "s55206", "41245", "=q3=Deadly Saronite Dirk", "=ds="..AL["Trainer"] };
- { 13, "s55181", "41184", "=q3=Saronite Shiv", "=ds="..AL["Trainer"] };
- { 14, "s55179", "41183", "=q3=Saronite Ambusher", "=ds="..AL["Trainer"] };
- { 15, "s55177", "41182", "=q3=Savage Cobalt Slicer", "=ds="..AL["Trainer"] };
- { 16, "s55174", "41181", "=q3=Honed Cobalt Cleaver", "=ds="..AL["Trainer"] };
- { 17, "s55204", "41243", "=q2=Notched Cobalt War Axe", "=ds="..AL["Trainer"] };
- { 18, "s55202", "41241", "=q2=Sure-fire Shuriken", "=ds="..AL["Trainer"] };
- { 19, "s55201", "41240", "=q2=Cobalt Tenderizer", "=ds="..AL["Trainer"] };
- { 20, "s55200", "41239", "=q2=Sturdy Cobalt Quickblade", "=ds="..AL["Trainer"] };
- { 21, "s55203", "41242", "=q2=Forged Cobalt Claymore", "=ds="..AL["Trainer"] };
- Back = "SMITHINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["SmithingEnhancement1"] = {
- { 1, "s55628", "INV_Jewelcrafting_ThoriumSetting", "=ds=Socket Bracer", "=ds="..AL["Trainer"] };
- { 2, "s55641", "INV_GAUNTLETS_61", "=ds=Socket Gloves", "=ds="..AL["Trainer"] };
- { 3, "s55656", "41611", "=q3=Eternal Belt Buckle", "=ds="..AL["Trainer"] };
- { 4, "s62202", "44936", "=q3=Titanium Plating", "=ds="..AL["Vendor"]};
- { 5, "s56357", "42500", "=q2=Titanium Shield Spike", "=ds="..AL["Trainer"] };
- { 6, "s55839", "41976", "=q2=Titanium Weapon Chain", "=ds="..AL["Trainer"] };
- { 7, "s29657", "23530", "=q2=Felsteel Shield Spike", "=ds=#sr# 360"};
- { 8, "s29656", "23529", "=q2=Adamantite Sharpening Stone", "=ds=#sr# 350"};
- { 9, "s34608", "28421", "=q2=Adamantite Weightstone", "=ds=#sr# 350"};
- { 10, "s42688", "33185", "=q2=Adamantite Weapon Chain", "=ds=#sr# 335"};
- { 11, "s22757", "18262", "=q2=Elemental Sharpening Stone", "=ds=#sr# 300"};
- { 12, "s16651", "12645", "=q2=Thorium Shield Spike", "=ds=#sr# 275"};
- { 13, "s9964", "7969", "=q2=Mithril Spurs", "=ds=#sr# 235"};
- { 14, "s9939", "7967", "=q2=Mithril Shield Spike", "=ds=#sr# 215"};
- { 15, "s29729", "23576", "=q1=Greater Ward of Shielding", "=ds=#sr# 375"};
- { 16, "s32285", "25521", "=q1=Greater Rune of Warding", "=ds=#sr# 350"};
- { 17, "s29728", "23575", "=q1=Lesser Ward of Shielding", "=ds=#sr# 340"};
- { 18, "s32284", "23559", "=q1=Lesser Rune of Warding", "=ds=#sr# 325"};
- { 19, "s29654", "23528", "=q1=Fel Sharpening Stone", "=ds=#sr# 300"};
- { 20, "s34607", "28420", "=q1=Fel Weightstone", "=ds=#sr# 300"};
- { 21, "s16641", "12404", "=q1=Dense Sharpening Stone", "=ds=#sr# 250"};
- { 22, "s16640", "12643", "=q1=Dense Weightstone", "=ds=#sr# 250"};
- { 23, "s9918", "7964", "=q1=Solid Sharpening Stone", "=ds=#sr# 200"};
- { 24, "s9921", "7965", "=q1=Solid Weightstone", "=ds=#sr# 200"};
- { 25, "s7224", "6041", "=q1=Steel Weapon Chain", "=ds=#sr# 190"};
- { 26, "s7222", "6043", "=q1=Iron Counterweight", "=ds=#sr# 165"};
- { 27, "s7221", "6042", "=q1=Iron Shield Spike", "=ds=#sr# 150"};
- { 28, "s2674", "2871", "=q1=Heavy Sharpening Stone", "=ds=#sr# 125"};
- { 29, "s3117", "3241", "=q1=Heavy Weightstone", "=ds=#sr# 125"};
- { 30, "s2665", "2863", "=q1=Coarse Sharpening Stone", "=ds=#sr# 65"};
- Next = "SmithingEnhancement2";
- Back = "SMITHINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["SmithingEnhancement2"] = {
- { 1, "s3116", "3240", "=q1=Coarse Weightstone", "=ds=#sr# 65"};
- { 2, "s2660", "2862", "=q1=Rough Sharpening Stone", "=ds=#sr# 1"};
- { 3, "s3115", "3239", "=q1=Rough Weightstone", "=ds=#sr# 1"};
- Prev = "SmithingEnhancement1";
- Back = "SMITHINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["SmithingMisc1"] = {
- { 1, "s59406", "43853", "=q2=Titanium Skeleton Key", "=ds="..AL["Trainer"] };
- { 2, "s59405", "43854", "=q2=Cobalt Skeleton Key", "=ds="..AL["Trainer"] };
- { 3, "s19669", "15872", "=q2=Arcanite Skeleton Key", "=ds=#sr# 275"};
- { 4, "s19668", "15871", "=q2=Truesilver Skeleton Key", "=ds=#sr# 200"};
- { 5, "s19667", "15870", "=q2=Golden Skeleton Key", "=ds=#sr# 150"};
- { 6, "s19666", "15869", "=q2=Silver Skeleton Key", "=ds=#sr# 100"};
- { 7, "s55732", "41745", "=q1=Titanium Rod", "=ds="..AL["Trainer"]};
- { 8, "s32657", "25845", "=q1=Eternium Rod", "=ds=#sr# 360"};
- { 9, "s32656", "25844", "=q1=Adamantite Rod", "=ds=#sr# 350"};
- { 10, "s32655", "25843", "=q1=Fel Iron Rod", "=ds=#sr# 300"};
- { 11, "s20201", "16206", "=q1=Arcanite Rod", "=ds=#sr# 275"};
- { 12, "s16639", "12644", "=q1=Dense Grinding Stone", "=ds=#sr# 250"};
- { 13, "s11454", "9060", "=q1=Inlaid Mithril Cylinder", "=ds=#sr# 200"};
- { 14, "s14380", "11144", "=q1=Truesilver Rod", "=ds=#sr# 200"};
- { 15, "s9920", "7966", "=q1=Solid Grinding Stone", "=ds=#sr# 200"};
- { 16, "s14379", "11128", "=q1=Golden Rod", "=ds=#sr# 150"};
- { 17, "s8768", "7071", "=q1=Iron Buckle", "=ds=#sr# 150"};
- { 18, "s3337", "3486", "=q1=Heavy Grinding Stone", "=ds=#sr# 125"};
- { 19, "s7818", "6338", "=q1=Silver Rod", "=ds=#sr# 100"};
- { 20, "s3326", "3478", "=q1=Coarse Grinding Stone", "=ds=#sr# 75"};
- { 21, "s3320", "3470", "=q1=Rough Grinding Stone", "=ds=#sr# 25"};
- Back = "SMITHINGMENU";
- };
-
- AtlasLoot_Data["Armorsmith1"] = {
- { 1, "s36122", "30069", "=q3=Earthforged Leggings", "=ds=#sr# 260"};
- { 2, "s36124", "30070", "=q3=Windforged Leggings", "=ds=#sr# 260"};
- { 3, "s36129", "30074", "=q3=Heavy Earthforged Breastplate", "=ds=#sr# 330"};
- { 4, "s36130", "30076", "=q3=Stormforged Hauberk", "=ds=#sr# 330"};
- { 5, "s34533", "28483", "=q4=Breastplate of Kings", "=ds=#sr# 350"};
- { 6, "s34529", "23563", "=q4=Nether Chain Shirt", "=ds=#sr# 350"};
- { 7, "s34534", "28484", "=q4=Bulwark of Kings", "=ds=#sr# 375"};
- { 8, "s36257", "28485", "=q4=Bulwark of the Ancient Kings", "=ds=#sr# 375"};
- { 9, "s36256", "23565", "=q4=Embrace of the Twisting Nether", "=ds=#sr# 375"};
- { 10, "s34530", "23564", "=q4=Twisting Nether Chain Shirt", "=ds=#sr# 375"};
- { 11, "s55186", "41189", "=q3=Chestplate of Conquest", "=ds=#sr# 415"};
- { 12, "s55187", "41190", "=q3=Legplates of Conquest", "=ds=#sr# 415"};
- Next = "Weaponsmith1";
- Back = "SMITHINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["Weaponsmith1"] = {
- { 1, "s36125", "30071", "=q3=Light Earthforged Blade", "=ds=#sr# 260"};
- { 2, "s36128", "30073", "=q3=Light Emberforged Hammer", "=ds=#sr# 260"};
- { 3, "s36126", "30072", "=q3=Light Skyforged Axe", "=ds=#sr# 260"};
- { 4, "s55183", "41186", "=q3=Corroded Saronite Edge", "=ds=#sr# 415"};
- { 5, "s55184", "41187", "=q3=Corroded Saronite Woundbringer", "=ds=#sr# 415"};
- { 6, "s55185", "41188", "=q3=Saronite Mindcrusher", "=ds=#sr# 415"};
- Next = "Axesmith1";
- Prev = "Armorsmith1";
- Back = "SMITHINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["Axesmith1"] = {
- { 1, "s36135", "30088", "=q3=Skyforged Great Axe", "=ds=#sr# 330"};
- { 2, "s36134", "30087", "=q3=Stormforged Axe", "=ds=#sr# 330"};
- { 3, "s34543", "28434", "=q4=Lunar Crescent", "=ds=#sr# 350"};
- { 4, "s34541", "28431", "=q4=The Planar Edge", "=ds=#sr# 350"};
- { 5, "s34542", "28432", "=q4=Black Planar Edge", "=ds=#sr# 375"};
- { 6, "s36261", "28436", "=q4=Bloodmoon", "=ds=#sr# 375"};
- { 7, "s34544", "28435", "=q4=Mooncleaver", "=ds=#sr# 375"};
- { 8, "s36260", "28433", "=q4=Wicked Edge of the Planes", "=ds=#sr# 375"};
- Next = "Hammersmith1";
- Prev = "Weaponsmith1";
- Back = "SMITHINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["Hammersmith1"] = {
- { 1, "s36137", "30093", "=q3=Great Earthforged Hammer", "=ds=#sr# 330"};
- { 2, "s36136", "30089", "=q3=Lavaforged Warhammer", "=ds=#sr# 330"};
- { 3, "s34545", "28437", "=q4=Drakefist Hammer", "=ds=#sr# 350"};
- { 4, "s34547", "28440", "=q4=Thunder", "=ds=#sr# 350"};
- { 5, "s34548", "28441", "=q4=Deep Thunder", "=ds=#sr# 375"};
- { 6, "s34546", "28438", "=q4=Dragonmaw", "=ds=#sr# 375"};
- { 7, "s36262", "28439", "=q4=Dragonstrike", "=ds=#sr# 375"};
- { 8, "s36263", "28442", "=q4=Stormherald", "=ds=#sr# 375"};
- Next = "Swordsmith1";
- Prev = "Axesmith1";
- Back = "SMITHINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["Swordsmith1"] = {
- { 1, "s36133", "30086", "=q3=Stoneforged Claymore", "=ds=#sr# 330"};
- { 2, "s36131", "30077", "=q3=Windforged Rapier", "=ds=#sr# 330"};
- { 3, "s34535", "28425", "=q4=Fireguard", "=ds=#sr# 350"};
- { 4, "s34538", "28428", "=q4=Lionheart Blade", "=ds=#sr# 350"};
- { 5, "s36258", "28427", "=q4=Blazefury", "=ds=#sr# 375"};
- { 6, "s34537", "28426", "=q4=Blazeguard", "=ds=#sr# 375"};
- { 7, "s34540", "28429", "=q4=Lionheart Champion", "=ds=#sr# 375"};
- { 8, "s36259", "28430", "=q4=Lionheart Executioner", "=ds=#sr# 375"};
- Prev = "Hammersmith1";
- Back = "SMITHINGMENU";
- Type = "Crafting";
- };
-
- ---------------
- --- Cooking ---
- ---------------
-
- AtlasLoot_Data["Cooking1"] = {
- { 1, "s818", "Spell_Fire_Fire", "=ds=Basic Campfire", "=ds="};
- { 2, "s66037", "44838", "=q1=Slow-Roasted Turkey", "=ds="};
- { 3, "s66034", "44839", "=q1=Candied Sweet Potato", "=ds="};
- { 4, "s66035", "44840", "=q1=Cranberry Chutney", "=ds="};
- { 5, "s66036", "44836", "=q1=Pumpkin Pie", "=ds="};
- { 6, "s66038", "44837", "=q1=Spice Bread Stuffing", "=ds="};
- { 7, "s65454", "46691", "=q1=Bread of the Dead", "=ds="};
- { 8, "s57423", "43015", "=q1=Fish Feast", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 9, "s58527", "43478", "=q1=Gigantic Feast", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 10, "s58528", "43480", "=q1=Small Feast", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 11, "s57441", "42999", "=q1=Blackened Dragonfin", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 12, "s57438", "42997", "=q1=Blackened Worg Steak", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 13, "s64358", "45932", "=q1=Black Jelly", "=ds="..AL["Trainer"]};
- { 14, "s57435", "43004", "=q1=Critter Bites", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 15, "s57439", "42998", "=q1=Cuttlesteak", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 16, "s57442", "43000", "=q1=Dragonfin Filet", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 17, "s45568", "34767", "=q1=Firecracker Salmon", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 18, "s57436", "42995", "=q1=Hearty Rhino", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 19, "s45570", "34769", "=q1=Imperial Manta Steak", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 20, "s45555", "34754", "=q1=Mega Mammoth Meal", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 21, "s45559", "34758", "=q1=Mighty Rhino Dogs", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 22, "s45567", "34766", "=q1=Poached Northern Sculpin", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 23, "s57434", "42994", "=q1=Rhinolicious Wyrmsteak", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 24, "s57437", "42996", "=q1=Snapper Extreme", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 25, "s57440", "43005", "=q1=Spiced Mammoth Treats", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 26, "s45557", "34756", "=q1=Spiced Wyrm Burger", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 27, "s45571", "34768", "=q1=Spicy Blue Nettlefish", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 28, "s57433", "42993", "=q1=Spicy Fried Herring", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 29, "s45556", "34755", "=q1=Tender Shoveltusk Steak", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 30, "s57443", "43001", "=q1=Tracker Snacks", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- Next = "Cooking2";
- Back = "CRAFTINGMENU";
- };
-
- AtlasLoot_Data["Cooking2"] = {
- { 1, "s45558", "34757", "=q1=Very Burnt Worg", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 2, "s62350", "44953", "=q1=Worg Tartare", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 3, "s45554", "34753", "=q1=Great Feast", "=ds="..AL["Trainer"]};
- { 4, "s53056", "39520", "=q1=Kungaloosh", "=ds="..AL["Quest"]..""};
- { 5, "s58523", "43491", "=q1=Bad Clams", "=ds="..AL["Drop"]..""};
- { 6, "s45569", "42942", "=q1=Baked Manta Ray", "=ds="..AL["Trainer"]};
- { 7, "s58065", "43268", "=q1=Dalaran Clam Chowder", "=ds="..AL["Trainer"]};
- { 8, "s42302", "33052", "=q1=Fisherman's Feast", "=ds="..AL["Trainer"]};
- { 9, "s45561", "34760", "=q1=Grilled Bonescale", "=ds="..AL["Trainer"]};
- { 10, "s45563", "34762", "=q1=Grilled Sculpin", "=ds="..AL["Trainer"]};
- { 11, "s58525", "43492", "=q1=Haunted Herring", "=ds="..AL["Drop"]..""};
- { 12, "s42305", "33053", "=q1=Hot Buttered Trout", "=ds="..AL["Trainer"]};
- { 13, "s58521", "43488", "=q1=Last Week's Mammoth", "=ds="..AL["Drop"]..""};
- { 14, "s45549", "34748", "=q1=Mammoth Meal", "=ds="..AL["Trainer"]};
- { 15, "s57421", "34747", "=q1=Northern Stew", "=ds="..AL["Quest"]..""};
- { 16, "s45566", "34765", "=q1=Pickled Fangtooth", "=ds="..AL["Trainer"]};
- { 17, "s45565", "34764", "=q1=Poached Nettlefish", "=ds="..AL["Trainer"]};
- { 18, "s45553", "34752", "=q1=Rhino Dogs", "=ds="..AL["Trainer"]};
- { 19, "s45552", "34751", "=q1=Roasted Worg", "=ds="..AL["Trainer"]};
- { 20, "s45562", "34761", "=q1=Sauteed Goby", "=ds="..AL["Trainer"]};
- { 21, "s45550", "34749", "=q1=Shoveltusk Steak", "=ds="..AL["Trainer"]};
- { 22, "s45560", "34759", "=q1=Smoked Rockfin", "=ds="..AL["Trainer"]};
- { 23, "s45564", "34763", "=q1=Smoked Salmon", "=ds="..AL["Trainer"]};
- { 24, "s33296", "27667", "=q1=Spicy Crawdad", "=ds="..AL["Vendor"]..", "..BabbleZone["Terokkar Forest"]};
- { 25, "s58512", "43490", "=q1=Tasty Cupcake", "=ds="..AL["Drop"]..""};
- { 26, "s45551", "34750", "=q1=Wyrm Delight", "=ds="..AL["Trainer"]};
- { 27, "s38868", "31673", "=q1=Crunchy Serpent", "=ds="..AL["Vendor"]..", "..BabbleZone["Blade's Edge Mountains"]};
- { 28, "s38867", "31672", "=q1=Mok'Nathal Shortribs", "=ds="..AL["Vendor"]..", "..BabbleZone["Blade's Edge Mountains"]};
- { 29, "s33295", "27666", "=q1=Golden Fish Sticks", "=ds="..AL["Vendor"]..", "..BabbleZone["Terokkar Forest"]};
- { 30, "s45022", "34411", "=q1=Hot Apple Cider", "=ds="..AL["Vendor"]..""};
- Prev = "Cooking1";
- Next = "Cooking3";
- Back = "CRAFTINGMENU";
- };
-
- AtlasLoot_Data["Cooking3"] = {
- { 1, "s33287", "27658", "=q1=Roasted Clefthoof", "=ds="..AL["Vendor"]..", "..BabbleZone["Nagrand"]};
- { 2, "s43707", "33825", "=q1=Skullfish Soup", "=ds="..AL["Drop"]..""};
- { 3, "s43765", "33872", "=q1=Spicy Hot Talbuk", "=ds="..AL["Drop"]..""};
- { 4, "s33289", "27660", "=q1=Talbuk Steak", "=ds="..AL["Vendor"]..", "..BabbleZone["Nagrand"]};
- { 5, "s33288", "27659", "=q1=Warp Burger", "=ds="..AL["Vendor"]..", "..BabbleZone["Terokkar Forest"]};
- { 6, "s33293", "27664", "=q1=Grilled Mudfish", "=ds="..AL["Vendor"]..", "..BabbleZone["Nagrand"]};
- { 7, "s33294", "27665", "=q1=Poached Bluefish", "=ds="..AL["Vendor"]..", "..BabbleZone["Nagrand"]};
- { 8, "s42296", "33048", "=q1=Stewed Trout", "=ds="..AL["Trainer"]};
- { 9, "s33286", "27657", "=q1=Blackened Basilisk", "=ds="..AL["Vendor"]..", "..BabbleZone["Terokkar Forest"]};
- { 10, "s33292", "27663", "=q1=Blackened Sporefish", "=ds="..AL["Vendor"]..", "..BabbleZone["Zangarmarsh"]};
- { 11, "s33285", "27656", "=q1=Sporeling Snack", "=ds="..AL["Vendor"]..", "..BabbleZone["Zangarmarsh"]};
- { 12, "s33290", "27661", "=q1=Blackened Trout", "=ds="..AL["Vendor"]..", "..BabbleZone["Zangarmarsh"]};
- { 13, "s43761", "33867", "=q1=Broiled Bloodfin", "=ds="..AL["Drop"]..""};
- { 14, "s33279", "27651", "=q1=Buzzard Bites", "=ds="..AL["Quest"]..""};
- { 15, "s36210", "30155", "=q1=Clam Bar", "=ds="..AL["Vendor"]..", "..BabbleZone["Zangarmarsh"]};
- { 16, "s25659", "21023", "=q1=Dirge's Kickin' Chimaerok Chops", "=ds="..AL["Quest"]..""};
- { 17, "s966455", "100626", "=q1=Azerothian Schmorgus Boards", "=ds="..AL["Vendor"]..""};
- { 18, "s966436", "100609", "=q1=Chilled Lava Eels", "=ds="..AL["Vendor"]..""};
- { 19, "s966435", "100608", "=q1=Chillwind Flank Steaks", "=ds="..AL["Drop"]..""};
- { 20, "s966434", "100607", "=q1=Hippogryph Steaks", "=ds="..AL["Quest"]..""};
- { 21, "s966433", "100606", "=q1=Steamed Makrinni Claws", "=ds="..AL["Quest"]..""};
- { 22, "s966432", "100605", "=q1=Rubbed Ravasaur Ribss", "=ds="..AL["Drop"]..""};
- { 23, "s966431", "100604", "=q1=Hearty Stegodon Stews", "=ds="..AL["Drop"]..""};
- { 24, "s966430", "100603", "=q1=Crispy Pterrordax Wings", "=ds="..AL["Drop"]..""};
- { 25, "s966429", "100602", "=q1=Spicy Dino Jerkys", "=ds="..AL["Drop"]..""};
- { 26, "s966428", "100601", "=q1=Dirge's Nevermelt Ice Creams", "=ds="..AL["Quest"]..""};
- { 27, "s966427", "100599", "=q1=Silithid Snacks", "=ds="..AL["Quest"]..""};
- { 28, "s966426", "100598", "=q1=Hydra Scale Soups", "=ds="..AL["Quest"]..""};
- { 29, "s966425", "100597", "=q1=Ghostly Goulashs", "=ds="..AL["Quest"]..""};
- { 30, "s966398", "100583", "=q1=Seared Cunning Carps", "=ds="..AL["Drop"]..""};
- Prev = "Cooking2";
- Next = "Cooking4";
- Back = "CRAFTINGMENU";
- };
-
- AtlasLoot_Data["Cooking4"] = {
- { 1, "s43772", "33874", "=q1=Kibler's Bits", "=ds="..AL["Drop"]..""};
- { 2, "s33284", "27655", "=q1=Ravager Dog", "=ds="..AL["Vendor"]..", "..BabbleZone["Hellfire Peninsula"]};
- { 3, "s43758", "33866", "=q1=Stormchops", "=ds="..AL["Drop"]..""};
- { 4, "s24801", "20452", "=q1=Smoked Desert Dumplings", "=ds="..AL["Quest"]..""};
- { 5, "s18247", "13935", "=q1=Baked Salmon", "=ds="..AL["Vendor"]..", "..BabbleZone["Feralas"]};
- { 6, "s18245", "13933", "=q1=Lobster Stew", "=ds="..AL["Vendor"]..", "..BabbleZone["Feralas"]};
- { 7, "s18246", "13934", "=q1=Mightfish Steak", "=ds="..AL["Vendor"]..", "..BabbleZone["Feralas"]};
- { 8, "s22761", "18254", "=q1=Runn Tum Tuber Surprise", "=ds="..AL["Drop"]..""};
- { 9, "s46684", "35563", "=q1=Charred Bear Kabobs", "=ds="..AL["Vendor"]..", "..BabbleZone["Felwood"]};
- { 10, "s46688", "35565", "=q1=Juicy Bear Burger", "=ds="..AL["Vendor"]..", "..BabbleZone["Felwood"]};
- { 11, "s18243", "13931", "=q1=Nightfin Soup", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 12, "s18244", "13932", "=q1=Poached Sunscale Salmon", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 13, "s18240", "13928", "=q1=Grilled Squid", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 14, "s18242", "13929", "=q1=Hot Smoked Bass", "=ds="..AL["Vendor"]..", "..BabbleZone["Stranglethorn Vale"]};
- { 15, "s64054", "INV_Misc_Shell_03", "=q1=Clamlette Magnifique", "=ds="..AL["Quest"]..""};
- { 16, "s18239", "13927", "=q1=Cooked Glossy Mightfish", "=ds="..AL["Vendor"]..", "..BabbleZone["Stranglethorn Vale"]};
- { 17, "s18241", "13930", "=q1=Filet of Redgill", "=ds="..AL["Vendor"]..", "..BabbleZone["Stranglethorn Vale"]};
- { 18, "s15933", "12218", "=q1=Monster Omelet", "=ds="..AL["Vendor"]..""};
- { 19, "s15915", "12216", "=q1=Spiced Chili Crab", "=ds="..AL["Vendor"]..""};
- { 20, "s18238", "6887", "=q1=Spotted Yellowtail", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 21, "s22480", "18045", "=q1=Tender Wolf Steak", "=ds="..AL["Vendor"]..""};
- { 22, "s20626", "16766", "=q1=Undermine Clam Chowder", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]};
- { 23, "s15906", "12217", "=q1=Dragonbreath Chili", "=ds="..AL["Vendor"]..""};
- { 24, "s15910", "12215", "=q1=Heavy Kodo Stew", "=ds="..AL["Vendor"]..", "..BabbleZone["Desolace"]};
- { 25, "s21175", "17222", "=q1=Spider Sausage", "=ds="..AL["Trainer"]};
- { 26, "s4094", "4457", "=q1=Barbecued Buzzard Wing", "=ds="};
- { 27, "s15863", "12213", "=q1=Carrion Surprise", "=ds="..AL["Vendor"]..""};
- { 28, "s7213", "6038", "=q1=Giant Clam Scorcho", "=ds="..AL["Vendor"]..", "..BabbleZone["Stranglethorn Vale"]};
- { 29, "s13028", "10841", "=q1=Goldthorn Tea", "=ds="};
- { 30, "s15856", "13851", "=q1=Hot Wolf Ribs", "=ds="..AL["Vendor"]..""};
- Prev = "Cooking3";
- Next = "Cooking5";
- Back = "CRAFTINGMENU";
- };
-
- AtlasLoot_Data["Cooking5"] = {
- { 1, "s15861", "12212", "=q1=Jungle Stew", "=ds="..AL["Vendor"]..""};
- { 2, "s20916", "8364", "=q1=Mithril Head Trout", "=ds="..AL["Vendor"]..""};
- { 3, "s15865", "12214", "=q1=Mystery Stew", "=ds="..AL["Vendor"]..""};
- { 4, "s15855", "12210", "=q1=Roast Raptor", "=ds="..AL["Vendor"]..""};
- { 5, "s7828", "4594", "=q1=Rockscale Cod", "=ds="..AL["Vendor"]..""};
- { 6, "s25954", "21217", "=q1=Sagefish Delight", "=ds="..AL["Vendor"]..""};
- { 7, "s3400", "3729", "=q1=Soothing Turtle Bisque", "=ds="..AL["Quest"]..""};
- { 8, "s24418", "20074", "=q1=Heavy Crocolisk Stew", "=ds="..AL["Vendor"]..", "..BabbleZone["Dustwallow Marsh"]};
- { 9, "s3399", "3728", "=q1=Tasty Lion Steak", "=ds="..AL["Quest"]..""};
- { 10, "s3376", "3665", "=q1=Curiously Tasty Omelet", "=ds="};
- { 11, "s6500", "5527", "=q1=Goblin Deviled Clams", "=ds="..AL["Trainer"]};
- { 12, "s3398", "3727", "=q1=Hot Lion Chops", "=ds="};
- { 13, "s15853", "12209", "=q1=Lean Wolf Steak", "=ds="..AL["Vendor"]..", "..BabbleZone["Desolace"]};
- { 14, "s3373", "3664", "=q1=Crocolisk Gumbo", "=ds="};
- { 15, "s3397", "3726", "=q1=Big Bear Steak", "=ds="};
- { 16, "s3377", "3666", "=q1=Gooey Spider Cake", "=ds="};
- { 17, "s6419", "5480", "=q1=Lean Venison", "=ds="..AL["Vendor"]..""};
- { 18, "s2548", "2685", "=q1=Succulent Pork Ribs", "=ds="};
- { 19, "s7755", "4593", "=q1=Bristle Whisker Catfish", "=ds="..AL["Vendor"]..""};
- { 20, "s45695", "34832", "=q1=Captain Rumsey's Lager", "=ds="..AL["Drop"]..""};
- { 21, "s6418", "5479", "=q1=Crispy Lizard Tail", "=ds="..AL["Vendor"]..""};
- { 22, "s2547", "1082", "=q1=Redridge Goulash", "=ds="};
- { 23, "s2549", "1017", "=q1=Seasoned Wolf Kabob", "=ds="};
- { 24, "s6501", "5526", "=q1=Clam Chowder", "=ds="..AL["Vendor"]..""};
- { 25, "s6417", "5478", "=q1=Dig Rat Stew", "=ds="..AL["Quest"]..""};
- { 26, "s3372", "3663", "=q1=Murloc Fin Soup", "=ds="};
- { 27, "s2545", "2682", "=q1=Cooked Crab Claw", "=ds="};
- { 28, "s8238", "6657", "=q1=Savory Deviate Delight", "=ds="..AL["Drop"]..""};
- { 29, "s3370", "3662", "=q1=Crocolisk Steak", "=ds="};
- { 30, "s8607", "6890", "=q1=Smoked Bear Meat", "=ds="..AL["Vendor"]..""};
- Prev = "Cooking4";
- Next = "Cooking6";
- Back = "CRAFTINGMENU";
- };
-
- AtlasLoot_Data["Cooking6"] = {
- { 1, "s2546", "2687", "=q1=Dry Pork Ribs", "=ds="..AL["Trainer"]};
- { 2, "s25704", "21072", "=q1=Smoked Sagefish", "=ds="..AL["Vendor"]..""};
- { 3, "s2544", "2683", "=q1=Crab Cake", "=ds="..AL["Trainer"]};
- { 4, "s62050", "44837", "=q1=Cornbread Stuffing", "=ds="};
- { 5, "s2543", "733", "=q1=Westfall Stew", "=ds="};
- { 6, "s3371", "3220", "=q1=Blood Sausage", "=ds="};
- { 7, "s28267", "22645", "=q1=Crunchy Spider Surprise", "=ds="};
- { 8, "s9513", "7676", "=q1=Thistle Tea", "=ds="};
- { 9, "s33278", "27636", "=q1=Bat Bites", "=ds="..AL["Vendor"]..""};
- { 10, "s6499", "5525", "=q1=Boiled Clams", "=ds="..AL["Trainer"]};
- { 11, "s2541", "2684", "=q1=Coyote Steak", "=ds="..AL["Trainer"]};
- { 12, "s6415", "5476", "=q1=Fillet of Frenzy", "=ds="..AL["Vendor"]..""};
- { 13, "s2542", "724", "=q1=Goretusk Liver Pie", "=ds="};
- { 14, "s7754", "6316", "=q1=Loch Frenzy Delight", "=ds="..AL["Vendor"]..""};
- { 15, "s7753", "4592", "=q1=Longjaw Mud Snapper", "=ds="..AL["Vendor"]..""};
- { 16, "s7827", "5095", "=q1=Rainbow Fin Albacore", "=ds="..AL["Vendor"]..""};
- { 17, "s62045", "34112", "=q1=Roasted Turkey", "=ds="};
- { 18, "s6416", "5477", "=q1=Strider Stew", "=ds="};
- { 19, "s62044", "1645", "=q1=Tasty Cranberries", "=ds="};
- { 20, "s62051", "44839", "=q1=Candied Yam", "=ds="};
- { 21, "s21144", "17198", "=q1=Egg Nog", "=ds="..AL["Vendor"]..""};
- { 22, "s6414", "5474", "=q1=Roasted Kodo Meat", "=ds="..AL["Vendor"]..""};
- { 23, "s62049", "44840", "=q1=Cranberry Chutney", "=ds="};
- { 24, "s6413", "5473", "=q1=Scorpid Surprise", "=ds="..AL["Vendor"]..""};
- { 25, "s2795", "2888", "=q1=Beer Basted Boar Ribs", "=ds="};
- { 26, "s6412", "5472", "=q1=Kaldorei Spider Kabob", "=ds="..AL["Quest"]..""};
- { 27, "s2539", "2680", "=q1=Spiced Wolf Meat", "=ds="..AL["Trainer"]};
- { 28, "s7751", "6290", "=q1=Brilliant Smallfish", "=ds="..AL["Vendor"]..""};
- { 29, "s2538", "2679", "=q1=Charred Wolf Meat", "=ds="};
- { 30, "s33276", "27635", "=q1=Lynx Steak", "=ds="..AL["Vendor"]..""};
- Prev = "Cooking5";
- Next = "Cooking7";
- Back = "CRAFTINGMENU";
- };
-
- AtlasLoot_Data["Cooking7"] = {
- { 1, "s15935", "12224", "=q1=Crispy Bat Wing", "=ds="..AL["Vendor"]..""};
- { 2, "s43779", "33924", "=q1=Delicious Chocolate Cake", "=ds="..AL["Drop"]..""};
- { 3, "s21143", "17197", "=q1=Gingerbread Cookie", "=ds="..AL["Vendor"]..""};
- { 4, "s8604", "6888", "=q1=Herb Baked Egg", "=ds="};
- { 5, "s2540", "2681", "=q1=Roasted Boar Meat", "=ds="};
- { 6, "s33277", "24105", "=q1=Roasted Moongraze Tenderloin", "=ds="..AL["Quest"]..""};
- { 7, "s7752", "787", "=q1=Slitherskin Mackerel", "=ds="..AL["Vendor"]..""};
- { 8, "s37836", "30816", "=q1=Spice Bread", "=ds="..AL["Trainer"]};
- { 9, "s65454", "46691", "=q1=Bread of the Dead", "=ds="..AL["Vendor"]};
- Prev = "Cooking6";
- Back = "CRAFTINGMENU";
- };
-
- ------------------
- --- Enchanting ---
- ------------------
-
- AtlasLoot_Data["EnchantingBootsWRATH"] = {
- { 1, "s60763", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Assault", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 2, "s47901", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Tuskarr's Vitality", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 3, "s44589", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Superior Agility", "=ds="..AL["Trainer"]};
- { 4, "s44508", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Spirit", "=ds="..AL["Trainer"]};
- { 16, "s44584", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Vitality", "=ds="..AL["Trainer"]};
- { 17, "s60606", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Assault", "=ds="..AL["Trainer"]};
- { 18, "s44528", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Fortitude", "=ds="..AL["Trainer"]};
- { 19, "s60623", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Icewalker", "=ds="..AL["Trainer"]};
- Next = "EnchantingBootsCLASSIC";
- Prev = "EnchantingBootsTBC";
- Back = "ENCHANTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["EnchantingBracerWRATH"] = {
- { 1, "s62256", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Stamina", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 2, "s60767", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Spellpower", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 3, "s44575", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Assault", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 4, "s44593", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Spirit", "=ds="..AL["Trainer"]..""};
- { 5, "s44598", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Expertise", "=ds="..AL["Trainer"]};
- { 6, "s44616", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Stats", "=ds="..AL["Trainer"]};
- { 7, "s44635", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Spellpower", "=ds="..AL["Trainer"]};
- { 8, "s44555", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Exceptional Intellect", "=ds="..AL["Trainer"]};
- { 9, "s60616", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Striking", "=ds="..AL["Trainer"]};
- Prev = "EnchantingBracerTBC";
- Next = "EnchantingBracerCLASSIC";
- Back = "ENCHANTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["EnchantingChestWRATH"] = {
- { 1, "s27958", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Mana", "=ds="..AL["Trainer"]..""};
- { 2, "s44588", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Resilience", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 3, "s60692", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Powerful Stats", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 4, "s47900", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Super Health", "=ds="..AL["Trainer"]};
- { 5, "s44509", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Mana Restoration", "=ds="..AL["Trainer"]};
- { 6, "s47766", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Defense", "=ds="..AL["Trainer"]};
- { 7, "s44492", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Mighty Health", "=ds="..AL["Trainer"]};
- { 8, "s44623", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Super Stats", "=ds="..AL["Trainer"]};
- Prev = "EnchantingChestTBC";
- Next = "EnchantingChestCLASSIC";
- Back = "ENCHANTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["EnchantingCloakWRATH"] = {
- { 1, "s60609", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Speed", "=ds="..AL["Trainer"]..""};
- { 2, "s44631", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Shadow Armor", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 3, "s47899", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Wisdom", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 4, "s44591", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Titanweave", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 5, "s47898", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Speed", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 6, "s47672", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Mighty Armor", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 7, "s60663", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Major Agility", "=ds="..AL["Trainer"]};
- { 8, "s44596", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Arcane Resistance", "=ds="..AL["Drop"]};
- { 9, "s44556", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Fire Resistance", "=ds="..AL["Drop"]};
- { 10, "s44483", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Frost Resistance", "=ds="..AL["Drop"]};
- { 11, "s44494", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Nature Resistance", "=ds="..AL["Drop"]};
- { 12, "s44590", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Shadow Resistance", "=ds="..AL["Drop"]};
- { 13, "s44500", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Agility", "=ds="..AL["Trainer"]};
- { 14, "s44582", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Spell Piercing", "=ds="..AL["Trainer"]};
- Prev = "EnchantingCloakTBC";
- Next = "EnchantingCloakCLASSIC";
- Back = "ENCHANTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["EnchantingGlovesWRATH"] = {
- { 1, "s71692", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Angler", "=ds="..AL["Drop"]..""};
- { 2, "s44625", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Armsman", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 3, "s60668", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Crusher", "=ds="..AL["Trainer"] };
- { 4, "s44529", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Agility", "=ds="..AL["Trainer"]..""};
- { 5, "s44488", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Precision", "=ds="..AL["Trainer"] };
- { 6, "s44484", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Expertise", "=ds="..AL["Trainer"] };
- { 7, "s44513", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Greater Assault", "=ds="..AL["Trainer"] };
- { 8, "s44506", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Gatherer", "=ds="..AL["Trainer"] };
- Prev = "EnchantingGlovesTBC";
- Next = "EnchantingGlovesCLASSIC";
- Back = "ENCHANTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["EnchantingRing1"] = {
- { 2, "s44645", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Assault", "=ds="..AL["Trainer"]};
- { 3, "s44636", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Greater Spellpower", "=ds="..AL["Trainer"]};
- { 4, "s59636", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Stamina", "=ds="..AL["Trainer"]};
- Back = "ENCHANTINGMENU";
- Submenu = "Disable";
- };
-
- AtlasLoot_Data["EnchantingShieldWRATH"] = {
- { 1, "s44489", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Defense", "=ds="..AL["Trainer"]};
- { 2, "s60653", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Greater Intellect", "=ds="..AL["Trainer"]};
- Prev = "EnchantingShieldTBC";
- Next = "EnchantingShieldCLASSIC";
- Back = "ENCHANTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["EnchantingTwoHWeaponWRATH"] = {
- { 1, "s60691", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Massacre", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 2, "s44595", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Scourgebane", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 3, "s44630", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Greater Savagery", "=ds="..AL["Trainer"] };
- Prev = "EnchantingTwoHWeaponTBC";
- Next = "EnchantingTwoHWeaponCLASSIC";
- Back = "ENCHANTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["EnchantingWeaponWRATH"] = {
- { 1, "s64441", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Blade Ward", "=ds=#sr# 450"};
- { 2, "s64579", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Blood Draining", "=ds=#sr# 450"};
- { 3, "s59619", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Accuracy", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 4, "s59621", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Berserking", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 5, "s59625", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Black Magic", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 6, "s44576", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lifeward", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 7, "s60714", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Mighty Spellpower", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 8, "s60707", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Superior Potency", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 9, "s44621", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Giant Slayer", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 10, "s44524", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Icebreaker", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 11, "s44633", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Exceptional Agility", "=ds="..AL["Trainer"] };
- { 12, "s44510", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Exceptional Spirit", "=ds="..AL["Trainer"] };
- { 13, "s44629", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Exceptional Spellpower", "=ds="..AL["Trainer"] };
- { 14, "s60621", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Greater Potency", "=ds="..AL["Trainer"] };
- Prev = "EnchantingWeaponTBC";
- Next = "EnchantingWeaponCLASSIC";
- Back = "ENCHANTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["EnchantingStaff1"] = {
- { 1, "s62948", "Spell_Holy_GreaterHeal", "=ds=Enchant Staff - Greater Spellpower", "=ds="};
- { 2, "s62959", "Spell_Holy_GreaterHeal", "=ds=Enchant Staff - Spellpower", "=ds="};
- Back = "ENCHANTINGMENU";
- Submenu = "Disable";
- };
-
- AtlasLoot_Data["EnchantingMiscWRATH"] = {
- { 1, "s28028", "22459", "=q4=Void Sphere", "=ds=#sr# 350"};
- { 2, "s60619", "44452", "=q3=Runed Titanium Rod", "=ds="..AL["Trainer"]};
- Next = "EnchantingMiscCLASSIC";
- Prev = "EnchantingMiscTBC";
- Back = "ENCHANTINGMENU";
- Submenu = "Expansion";
- };
-
- -------------------
- --- Engineering ---
- -------------------
-
- AtlasLoot_Data["EngineeringAmmo1"] = {
- { 1, "s72953", "52021", "=q4=Iceblade Arrow", "=ds=#p17#"};
- { 2, "s72952", "52020", "=q4=Shatter Rounds", "=ds=#p18#"};
- { 3, "s56475", "41165", "=q1=Saronite Arrow Maker", "=ds=#sr# 415" };
- { 4, "s56474", "41164", "=q1=Ultrasafe Bullet Machine", "=ds=#sr# 410" };
- { 5, "s43676", "20475", "=q1=Adamantite Arrow Maker", "=ds=#sr# 335"};
- { 6, "s30347", "34504", "=q1=Adamantite Shell Machine", "=ds=#sr# 335"};
- { 7, "s30346", "23772", "=q2=Fel Iron Shells", "=ds=#sr# 310"};
- { 8, "s19800", "15997", "=q2=Thorium Shells", "=ds=#sr# 285"};
- { 9, "s12621", "10513", "=q2=Mithril Gyro-Shot", "=ds=#sr# 245"};
- { 10, "s12596", "10512", "=q2=Hi-Impact Mithril Slugs", "=ds=#sr# 210"};
- { 11, "s3947", "8069", "=q1=Crafted Solid Shot", "=ds=#sr# 125"};
- { 12, "s3930", "8068", "=q1=Crafted Heavy Shot", "=ds=#sr# 75"};
- { 13, "s3920", "8067", "=q1=Crafted Light Shot", "=ds=#sr# 1"};
- Back = "ENGINEERINGMENU";
- };
-
- AtlasLoot_Data["EngineeringArmor1"] = {
- { 1, "s56480", "42549", "=q4=Armored Titanium Goggles", "=ds=#sr# 440"};
- { 2, "s56483", "42552", "=q4=Charged Titanium Specs", "=ds=#sr# 440"};
- { 3, "s56487", "42555", "=q4=Electroflux Sight Enhancers", "=ds=#sr# 440"};
- { 4, "s56486", "42554", "=q4=Greensight Gogs", "=ds=#sr# 440"};
- { 5, "s56574", "42551", "=q4=Truesight Ice Blinders", "=ds=#sr# 440"};
- { 6, "s56484", "42553", "=q4=Visage Liquification Goggles", "=ds=#sr# 440"};
- { 7, "s56481", "42550", "=q4=Weakness Spectralizers", "=ds=#sr# 440"};
- { 8, "s62271", "44949", "=q4=Unbreakable Healing Amplifiers", "=ds=#sr# 440"};
- { 9, "s46111", "34847", "=q4=Annihilator Holo-Gogs", "=ds=#sr# 375"};
- { 10, "s30565", "23838", "=q4=Foreman's Enchanted Helmet", "=ds=#sr# 375"};
- { 11, "s30566", "23839", "=q4=Foreman's Reinforced Helmet", "=ds=#sr# 375"};
- { 12, "s30575", "23829", "=q4=Gnomish Battle Goggles", "=ds=#sr# 375"};
- { 13, "s30574", "23828", "=q4=Gnomish Power Goggles", "=ds=#sr# 375"};
- { 14, "s46115", "34357", "=q4=Hard Khorium Goggles", "=ds=#sr# 375"};
- { 15, "s46109", "35182", "=q4=Hyper-Magnified Moon Specs", "=ds=#sr# 375"};
- { 16, "s46107", "35185", "=q4=Justicebringer 3000 Specs", "=ds=#sr# 375"};
- { 17, "s46112", "34355", "=q4=Lightning Etched Specs", "=ds=#sr# 375"};
- { 18, "s46114", "34354", "=q4=Mayhem Projection Goggles", "=ds=#sr# 375"};
- { 19, "s46108", "35181", "=q4=Powerheal 9000 Lens", "=ds=#sr# 375"};
- { 20, "s46110", "35184", "=q4=Primal-Attuned Goggles", "=ds=#sr# 375"};
- { 21, "s46116", "34353", "=q4=Quad Deathblow X44 Goggles", "=ds=#sr# 375"};
- { 22, "s46113", "34356", "=q4=Surestrike Goggles v3.0", "=ds=#sr# 375"};
- { 23, "s46106", "35183", "=q4=Wonderheal XT68 Shades", "=ds=#sr# 375"};
- { 24, "s41317", "32478", "=q4=Deathblow X11 Goggles", "=ds=#sr# 350"};
- { 25, "s41320", "32494", "=q4=Destruction Holo-gogs", "=ds=#sr# 350"};
- { 26, "s40274", "32461", "=q4=Furious Gizmatic Goggles", "=ds=#sr# 350"};
- { 27, "s41315", "32476", "=q4=Gadgetstorm Goggles", "=ds=#sr# 350"};
- { 28, "s41311", "32472", "=q4=Justicebringer 2000 Specs", "=ds=#sr# 350"};
- { 29, "s41316", "32475", "=q4=Living Replicator Specs", "=ds=#sr# 350"};
- { 30, "s41319", "32480", "=q4=Magnified Moon Specs", "=ds=#sr# 350"};
- Next = "EngineeringArmor2";
- Back = "ENGINEERINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["EngineeringArmor2"] = {
- { 1, "s41321", "32495", "=q4=Powerheal 4000 Lens", "=ds=#sr# 350"};
- { 2, "s41314", "32474", "=q4=Surestrike Goggles v2.0", "=ds=#sr# 350"};
- { 3, "s41312", "32473", "=q4=Tankatronic Goggles", "=ds=#sr# 350"};
- { 4, "s41318", "32479", "=q4=Wonderheal XT40 Shades", "=ds=#sr# 350"};
- { 5, "s22797", "18168", "=q4=Force Reactive Disk", "=ds=#sr# 300"};
- { 6, "s56469", "41121", "=q3=Gnomish Lightning Generator", "=ds=#sr# 425" };
- { 7, "s56473", "40895", "=q3=Gnomish X-Ray Specs", "=ds=#sr# 425" };
- { 8, "s61483", "44742", "=q3=Mechanized Snow Goggles", "=ds=#sr# 420"};
- { 9, "s56467", "40865", "=q3=Noise Machine", "=ds=#sr# 420"};
- { 10, "s56466", "40767", "=q3=Sonic Booster", "=ds=#sr# 420"};
- { 11, "s30325", "23763", "=q3=Hyper-Vision Goggles", "=ds=#sr# 360"};
- { 12, "s30556", "23824", "=q3=Rocket Boots Xtreme", "=ds=#sr# 355"};
- { 13, "s46697", "35581", "=q3=Rocket Boots Xtreme Lite", "=ds=#sr# 355"};
- { 14, "s30563", "23836", "=q3=Goblin Rocket Launcher", "=ds=#sr# 350"};
- { 15, "s30570", "23825", "=q3=Nigh-Invulnerability Belt", "=ds=#sr# 350"};
- { 16, "s30318", "23762", "=q3=Ultra-Spectropic Detection Goggles", "=ds=#sr# 350"};
- { 17, "s30316", "23758", "=q3=Cogspinner Goggles", "=ds=#sr# 340"};
- { 18, "s30569", "23835", "=q3=Gnomish Poultryizer", "=ds=#sr# 340"};
- { 19, "s30317", "23761", "=q3=Power Amplification Goggles", "=ds=#sr# 340"};
- { 20, "s19830", "16022", "=q3=Arcanite Dragonling", "=ds=#sr# 300"};
- { 21, "s24356", "19999", "=q3=Bloodvine Goggles", "=ds=#sr# 300"};
- { 22, "s24357", "19998", "=q3=Bloodvine Lens", "=ds=#sr# 300"};
- { 23, "s23082", "18639", "=q3=Ultra-Flash Shadow Reflector", "=ds=#sr# 300"};
- { 24, "s23081", "18638", "=q3=Hyper-Radiant Flame Reflector", "=ds=#sr# 290"};
- { 25, "s23077", "18634", "=q3=Gyrofreeze Ice Reflector", "=ds=#sr# 260"};
- { 26, "s12622", "10504", "=q3=Green Lens", "=ds=#sr# 245"};
- { 27, "s19825", "16008", "=q2=Master Engineer's Goggles", "=ds=#sr# 290"};
- { 28, "s19819", "16009", "=q2=Voice Amplification Modulator", "=ds=#sr# 290"};
- { 29, "s23079", "18637", "=q2=Major Recombobulator", "=ds=#sr# 275"};
- { 30, "s19794", "15999", "=q2=Spellpower Goggles Xtreme Plus", "=ds=#sr# 270"};
- Next = "EngineeringArmor3";
- Prev = "EngineeringArmor1";
- Back = "ENGINEERINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["EngineeringArmor3"] = {
- { 1, "s23486", "18984", "=q2=Dimensional Ripper - Everlook", "=ds=#sr# 260"};
- { 2, "s23489", "18986", "=q2=Ultrasafe Transporter - Gadgetzan", "=ds=#sr# 260"};
- { 3, "s12624", "10576", "=q2=Mithril Mechanical Dragonling", "=ds=#sr# 250"};
- { 4, "s12758", "10588", "=q2=Goblin Rocket Helmet", "=ds=#sr# 245"};
- { 5, "s12907", "10726", "=q2=Gnomish Mind Control Cap", "=ds=#sr# 235"};
- { 6, "s12617", "10506", "=q2=Deepdive Helmet", "=ds=#sr# 230"};
- { 7, "s12618", "10503", "=q2=Rose Colored Goggles", "=ds=#sr# 230"};
- { 8, "s12905", "10724", "=q2=Gnomish Rocket Boots", "=ds=#sr# 225"};
- { 9, "s8895", "7189", "=q2=Goblin Rocket Boots", "=ds=#sr# 225"};
- { 10, "s12616", "10518", "=q2=Parachute Cloak", "=ds=#sr# 225"};
- { 11, "s12615", "10502", "=q2=Spellpower Goggles Xtreme", "=ds=#sr# 225"};
- { 12, "s12607", "10501", "=q2=Catseye Ultra Goggles", "=ds=#sr# 220"};
- { 13, "s12903", "10721", "=q2=Gnomish Harm Prevention Belt", "=ds=#sr# 215"};
- { 14, "s12897", "10545", "=q2=Gnomish Goggles", "=ds=#sr# 210"};
- { 15, "s12594", "10500", "=q2=Fire Goggles", "=ds=#sr# 205"};
- { 16, "s12718", "10543", "=q2=Goblin Construction Helmet", "=ds=#sr# 205"};
- { 17, "s12717", "10542", "=q2=Goblin Mining Helmet", "=ds=#sr# 205"};
- { 18, "s3966", "4393", "=q2=Craftsman's Monocle", "=ds=#sr# 185"};
- { 19, "s12587", "10499", "=q2=Bright-Eye Goggles", "=ds=#sr# 175"};
- { 20, "s3956", "4385", "=q2=Green Tinted Goggles", "=ds=#sr# 150"};
- { 21, "s3952", "4381", "=q2=Minor Recombobulator", "=ds=#sr# 140"};
- { 22, "s9269", "7506", "=q2=Gnomish Universal Remote", "=ds=#sr# 125"};
- { 23, "s3940", "4373", "=q2=Shadow Goggles", "=ds=#sr# 120"};
- { 24, "s3934", "4368", "=q2=Flying Tiger Goggles", "=ds=#sr# 100"};
- { 25, "s12759", "10645", "=q1=Gnomish Death Ray", "=ds=#sr# 240"};
- { 26, "s12908", "10727", "=q1=Goblin Dragon Gun", "=ds=#sr# 240"};
- { 27, "s12906", "10725", "=q1=Gnomish Battle Chicken", "=ds=#sr# 230"};
- { 28, "s12755", "10587", "=q1=Goblin Bomb Dispenser", "=ds=#sr# 230"};
- { 29, "s12899", "10716", "=q1=Gnomish Shrink Ray", "=ds=#sr# 205"};
- { 30, "s3971", "4397", "=q1=Gnomish Cloaking Device", "=ds=#sr# 200"};
- Prev = "EngineeringArmor2";
- Next = "EngineeringArmor4";
- Back = "ENGINEERINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["EngineeringArmor4"] = {
- { 1, "s3969", "4396", "=q1=Mechanical Dragonling", "=ds=#sr# 200"};
- Prev = "EngineeringArmor3";
- Back = "ENGINEERINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["EngineeringExplosives1"] = {
- { 1, "s56514", "42641", "=q1=Global Thermal Sapper Charge", "=ds=#sr# 425"};
- { 2, "s56468", "44951", "=q1=Box of Bombs", "=ds=#sr# 405" };
- { 3, "s56463", "40536", "=q1=Explosive Decoy", "=ds=#sr# 375"};
- { 4, "s56460", "40771", "=q1=Cobalt Frag Bomb", "=ds=#sr# 350"};
- { 5, "s30547", "23819", "=q1=Elemental Seaforium Charge", "=ds=#sr# 350"};
- { 6, "s30560", "23827", "=q1=Super Sapper Charge", "=ds=#sr# 340"};
- { 7, "s39973", "32413", "=q1=Frost Grenades", "=ds=#sr# 335"};
- { 8, "s30311", "23737", "=q1=Adamantite Grenade", "=ds=#sr# 325"};
- { 9, "s30558", "23826", "=q1=The Bigger One", "=ds=#sr# 325"};
- { 10, "s19831", "16040", "=q1=Arcane Bomb", "=ds=#sr# 300"};
- { 11, "s30310", "23736", "=q1=Fel Iron Bomb", "=ds=#sr# 300"};
- { 12, "s19799", "16005", "=q1=Dark Iron Bomb", "=ds=#sr# 285"};
- { 13, "s23080", "18594", "=q1=Powerful Seaforium Charge", "=ds=#sr# 275"};
- { 14, "s19790", "15993", "=q1=Thorium Grenade", "=ds=#sr# 260"};
- { 15, "s23070", "18641", "=q1=Dense Dynamite", "=ds=#sr# 250"};
- { 16, "s12619", "10562", "=q1=Hi-Explosive Bomb", "=ds=#sr# 235"};
- { 17, "s12754", "10586", "=q1=The Big One", "=ds=#sr# 235"};
- { 18, "s12603", "10514", "=q1=Mithril Frag Bomb", "=ds=#sr# 215"};
- { 19, "s12716", "10577", "=q1=Goblin Mortar", "=ds=#sr# 205"};
- { 20, "s12760", "10646", "=q1=Goblin Sapper Charge", "=ds=#sr# 205"};
- { 21, "s13240", "10577", "=q1=The Mortar: Reloaded", "=ds=#sr# 205"};
- { 22, "s23069", "18588", "=q1=EZ-Thro Dynamite II", "=ds=#sr# 200"};
- { 23, "s3972", "4398", "=q1=Large Seaforium Charge", "=ds=#sr# 200"};
- { 24, "s3968", "4395", "=q1=Goblin Land Mine", "=ds=#sr# 195"};
- { 25, "s3967", "4394", "=q1=Big Iron Bomb", "=ds=#sr# 190"};
- { 26, "s3962", "4390", "=q1=Iron Grenade", "=ds=#sr# 175"};
- { 27, "s12586", "10507", "=q1=Solid Dynamite", "=ds=#sr# 175"};
- { 28, "s3960", "4403", "=q1=Portable Bronze Mortar", "=ds=#sr# 165"};
- { 29, "s3950", "4380", "=q1=Big Bronze Bomb", "=ds=#sr# 140"};
- { 30, "s3946", "4378", "=q1=Heavy Dynamite", "=ds=#sr# 125"};
- Next = "EngineeringExplosives2";
- Back = "ENGINEERINGMENU";
- };
-
- AtlasLoot_Data["EngineeringExplosives2"] = {
- { 1, "s3941", "4374", "=q1=Small Bronze Bomb", "=ds=#sr# 120"};
- { 2, "s3937", "4370", "=q1=Large Copper Bomb", "=ds=#sr# 105"};
- { 3, "s8339", "6714", "=q1=EZ-Thro Dynamite", "=ds=#sr# 100"};
- { 4, "s3933", "4367", "=q1=Small Seaforium Charge", "=ds=#sr# 100"};
- { 5, "s3931", "4365", "=q1=Coarse Dynamite", "=ds=#sr# 75"};
- { 6, "s3923", "4360", "=q1=Rough Copper Bomb", "=ds=#sr# 30"};
- { 7, "s3919", "4358", "=q1=Rough Dynamite", "=ds=#sr# 1"};
- Prev = "EngineeringExplosives1";
- Back = "ENGINEERINGMENU";
- };
-
- AtlasLoot_Data["EngineeringItemEnhancements1"] = {
- { 1, "s56478", "41167", "=q3=Heartseeker Scope", "=ds=#sr# 430" };
- { 2, "s56470", "41146", "=q3=Sun Scope", "=ds=#sr# 425" };
- { 3, "s61471", "44739", "=q1=Diamond-cut Refractor Scope", "=ds=#sr# 390" };
- { 4, "s30334", "23766", "=q3=Stabilized Eternium Scope", "=ds=#sr# 375"};
- { 5, "s30332", "23765", "=q3=Khorium Scope", "=ds=#sr# 360"};
- { 6, "s30329", "23764", "=q2=Adamantite Scope", "=ds=#sr# 335"};
- { 7, "s22793", "18283", "=q3=Biznicks 247x128 Accurascope", "=ds=#sr# 300"};
- { 8, "s12620", "10548", "=q1=Sniper Scope", "=ds=#sr# 240"};
- { 9, "s12597", "10546", "=q1=Deadly Scope", "=ds=#sr# 210"};
- { 10, "s3979", "4407", "=q2=Accurate Scope", "=ds=#sr# 180"};
- { 11, "s3978", "4406", "=q1=Standard Scope", "=ds=#sr# 110"};
- { 12, "s3977", "4405", "=q1=Crude Scope", "=ds=#sr# 60"};
- { 16, "s55016", "Trade_Engineering", "=ds=Nitro Boosts", "=ds=#sr# 405"};
- { 17, "s54998", "Trade_Engineering", "=ds=Hand-Mounted Pyro Rocket", "=ds=#sr# 400"};
- { 18, "s54999", "Trade_Engineering", "=ds=Hyperspeed Accelerators", "=ds=#sr# 400"};
- { 19, "s63770", "Trade_Engineering", "=ds=Reticulated Armor Webbing", "=ds=#sr# 400"};
- { 20, "s54736", "Trade_Engineering", "=ds=Personal Electromagnetic Pulse Generator", "=ds=#sr# 390"};
- { 21, "s54793", "Trade_Engineering", "=ds=Belt-Clipped Spynoculars", "=ds=#sr# 380"};
- { 22, "s55002", "Trade_Engineering", "=ds=Flexweave Underlay", "=ds=#sr# 380"};
- { 23, "s63765", "Trade_Engineering", "=ds=Springy Arachnoweave", "=ds=#sr# 380"};
- Back = "ENGINEERINGMENU";
- };
-
- AtlasLoot_Data["EngineeringMisc1"] = {
- { 1, "s68067", "49040", "=q4=Jeeves", "=ds=#sr# 450"};
- { 2, "s60866", "41508", "=q4=Mechano-hog", "=ds=#sr# 450" };
- { 3, "s60867", "44413", "=q4=Mekgineer's Chopper", "=ds=#sr# 450" };
- { 4, "s44157", "34061", "=q4=Turbo-Charged Flying Machine", "=ds=#sr# 375"};
- { 5, "s56472", "40768", "=q3=MOLL-E", "=ds=#sr# 425" };
- { 6, "s67920", "48933", "=q3=Wormhole Generator: Northrend", "=ds=#sr# 415"};
- { 7, "s30349", "23775", "=q3=Titanium Toolbox", "=ds=#sr# 405" };
- { 8, "s44155", "34060", "=q3=Flying Machine", "=ds=#sr# 350"};
- { 9, "s63750", "45631", "=q3=High-powered Flashlight", "=ds="};
- { 10, "s36954", "30542", "=q2=Dimensional Ripper - Area 52", "=ds=#sr# 350"};
- { 11, "s36955", "30544", "=q2=Ultrasafe Transporter - Toshley's Station", "=ds=#sr# 350"};
- { 12, "s30348", "23774", "=q2=Fel Iron Toolbox", "=ds=#sr# 325"};
- { 13, "s30337", "23767", "=q2=Crashin' Thrashin' Robot", "=ds=#sr# 325"};
- { 14, "s23129", "18660", "=q2=World Enlarger", "=ds=#sr# 260"};
- { 15, "s56462", "40772", "=q1=Gnomish Army Knife", "=ds=#sr# 435" };
- { 16, "s56477", "42546", "=q1=Mana Injector Kit", "=ds=#sr# 415" };
- { 17, "s55252", "40769", "=q1=Scrapbot Construction Kit", "=ds=#sr# 415" };
- { 18, "s56476", "37567", "=q1=Healing Injector Kit", "=ds=#sr# 410" };
- { 19, "s67326", "47828", "=q1=Goblin Beam Welder", "=ds=#sr# 400"};
- { 20, "s56461", "40893", "=q1=Bladed Pickaxe", "=ds=#sr# 375" };
- { 21, "s56459", "40892", "=q1=Hammer Pick", "=ds=#sr# 375" };
- { 22, "s44391", "34113", "=q1=Field Repair Bot 110G", "=ds=#sr# 360"};
- { 23, "s30552", "33093", "=q1=Mana Potion Injector", "=ds=#sr# 345"};
- { 24, "s30344", "23771", "=q1=Green Smoke Flare", "=ds=#sr# 335"};
- { 25, "s32814", "25886", "=q1=Purple Smoke Flare", "=ds=#sr# 335"};
- { 26, "s30341", "23768", "=q1=White Smoke Flare", "=ds=#sr# 335"};
- { 27, "s30551", "33092", "=q1=Healing Potion Injector", "=ds=#sr# 330"};
- { 28, "s30568", "23841", "=q1=Gnomish Flame Turret", "=ds=#sr# 325"};
- { 29, "s30548", "23821", "=q1=Zapthrottle Mote Extractor", "=ds=#sr# 305"};
- { 30, "s22704", "18232", "=q1=Field Repair Bot 74A", "=ds=#sr# 300"};
- Next = "EngineeringMisc2";
- Back = "ENGINEERINGMENU";
- };
-
- AtlasLoot_Data["EngineeringMisc2"] = {
- { 1, "s30573", "23832", "=q1=Gnomish Tonk Controller", "=ds=#sr# 295"};
- { 2, "s30561", "23831", "=q1=Goblin Tonk Controller", "=ds=#sr# 295"};
- { 3, "s26443", "21570", "=q1=Firework Cluster Launcher", "=ds=#sr# 275"};
- { 4, "s19814", "16023", "=q1=Masterwork Target Dummy", "=ds=#sr# 275"};
- { 5, "s26426", "21714", "=q1=Large Blue Rocket Cluster", "=ds=#sr# 275"};
- { 6, "s26427", "21716", "=q1=Large Green Rocket Cluster", "=ds=#sr# 275"};
- { 7, "s26428", "21718", "=q1=Large Red Rocket Cluster", "=ds=#sr# 275"};
- { 8, "s23096", "18645", "=q1=Alarm-O-Bot", "=ds=#sr# 265"};
- { 9, "s23078", "18587", "=q1=Goblin Jumper Cables XL", "=ds=#sr# 265"};
- { 10, "s19793", "15996", "=q1=Lifelike Mechanical Toad", "=ds=#sr# 265"};
- { 11, "s19567", "15846", "=q1=Salt Shaker", "=ds=#sr# 250"};
- { 12, "s26011", "21277", "=q1=Tranquil Mechanical Yeti", "=ds=#sr# 250"};
- { 13, "s23507", "19026", "=q1=Snake Burst Firework", "=ds=#sr# 250"};
- { 14, "s26442", "21569", "=q1=Firework Launcher", "=ds=#sr# 225"};
- { 15, "s26423", "21571", "=q1=Blue Rocket Cluster", "=ds=#sr# 225"};
- { 16, "s26424", "21574", "=q1=Green Rocket Cluster", "=ds=#sr# 225"};
- { 17, "s26425", "21576", "=q1=Red Rocket Cluster", "=ds=#sr# 225"};
- { 18, "s12902", "10720", "=q1=Gnomish Net-o-Matic Projector", "=ds=#sr# 210"};
- { 19, "s12715", "10644", "=q1=Goblin Rocket Fuel Recipe", "=ds=#sr# 205"};
- { 20, "s12895", "10713", "=q1=Inlaid Mithril Cylinder Plans", "=ds=#sr# 205"};
- { 21, "s15633", "11826", "=q1=Lil' Smoky", "=ds=#sr# 205"};
- { 22, "s15628", "11825", "=q1=Pet Bombling", "=ds=#sr# 205"};
- { 23, "s15255", "11590", "=q1=Mechanical Repair Kit", "=ds=#sr# 200"};
- { 24, "s21940", "17716", "=q1=Snowmaster 9000", "=ds=#sr# 190"};
- { 25, "s3965", "4392", "=q1=Advanced Target Dummy", "=ds=#sr# 185"};
- { 26, "s8243", "4852", "=q1=Flash Bomb", "=ds=#sr# 185"};
- { 27, "s26420", "21589", "=q1=Large Blue Rocket", "=ds=#sr# 175"};
- { 28, "s26421", "21590", "=q1=Large Green Rocket", "=ds=#sr# 175"};
- { 29, "s26422", "21592", "=q1=Large Red Rocket", "=ds=#sr# 175"};
- { 30, "s3963", "4391", "=q1=Compact Harvest Reaper Kit", "=ds=#sr# 175"};
- Next = "EngineeringMisc3";
- Prev = "EngineeringMisc1";
- Back = "ENGINEERINGMENU";
- };
-
- AtlasLoot_Data["EngineeringMisc3"] = {
- { 1, "s9273", "7148", "=q1=Goblin Jumper Cables", "=ds=#sr# 165"};
- { 2, "s3959", "4388", "=q1=Discombobulator Ray", "=ds=#sr# 160"};
- { 3, "s3957", "4386", "=q1=Ice Deflector", "=ds=#sr# 155"};
- { 4, "s3955", "4384", "=q1=Explosive Sheep", "=ds=#sr# 150"};
- { 5, "s9271", "6533", "=q1=Aquadynamic Fish Attractor", "=ds=#sr# 150"};
- { 6, "s23067", "9312", "=q1=Blue Firework", "=ds=#sr# 150"};
- { 7, "s23068", "9313", "=q1=Green Firework", "=ds=#sr# 150"};
- { 8, "s23066", "9318", "=q1=Red Firework", "=ds=#sr# 150"};
- { 9, "s6458", "5507", "=q1=Ornate Spyglass", "=ds=#sr# 135"};
- { 10, "s26416", "21558", "=q1=Small Blue Rocket", "=ds=#sr# 125"};
- { 11, "s26417", "21559", "=q1=Small Green Rocket", "=ds=#sr# 125"};
- { 12, "s26418", "21557", "=q1=Small Red Rocket", "=ds=#sr# 125"};
- { 13, "s3944", "4376", "=q1=Flame Deflector", "=ds=#sr# 125"};
- { 14, "s8334", "6712", "=q1=Practice Lock", "=ds=#sr# 100"};
- { 15, "s3932", "4366", "=q1=Target Dummy", "=ds=#sr# 85"};
- { 16, "s3928", "4401", "=q1=Mechanical Squirrel", "=ds=#sr# 75"};
- Prev = "EngineeringMisc2";
- Back = "ENGINEERINGMENU";
- };
-
- AtlasLoot_Data["EngineeringReagents1"] = {
- { 1, "s56349", "39681", "=q1=Handful of Cobalt Bolts", "=ds="..AL["Trainer"]..""};
- { 2, "s56471", "39683", "=q1=Froststeel Tube", "=ds=#sr# 390" };
- { 3, "s56464", "39682", "=q1=Overcharged Capacitor", "=ds=#sr# 375"};
- { 4, "s53281", "39690", "=q1=Volatile Blasting Trigger", "=ds="..AL["Trainer"]..""};
- { 5, "s30309", "23787", "=q1=Felsteel Stabilizer", "=ds=#sr# 340"};
- { 6, "s30307", "23785", "=q1=Hardened Adamantite Tube", "=ds=#sr# 340"};
- { 7, "s30308", "23786", "=q1=Khorium Power Core", "=ds=#sr# 340"};
- { 8, "s39971", "32423", "=q1=Icy Blasting Primers", "=ds=#sr# 335"};
- { 9, "s30306", "23784", "=q1=Adamantite Frame", "=ds=#sr# 325"};
- { 10, "s30305", "23783", "=q1=Handful of Fel Iron Bolts", "=ds=#sr# 300"};
- { 11, "s30303", "23781", "=q1=Elemental Blasting Powder", "=ds=#sr# 300"};
- { 12, "s30304", "23782", "=q1=Fel Iron Casing", "=ds=#sr# 300"};
- { 13, "s19815", "16006", "=q1=Delicate Arcanite Converter", "=ds=#sr# 285"};
- { 14, "s19795", "16000", "=q1=Thorium Tube", "=ds=#sr# 275"};
- { 15, "s39895", "7191", "=q1=Fused Wiring", "=ds=#sr# 275"};
- { 16, "s19791", "15994", "=q1=Thorium Widget", "=ds=#sr# 260"};
- { 17, "s23071", "18631", "=q1=Truesilver Transformer", "=ds=#sr# 260"};
- { 18, "s19788", "15992", "=q1=Dense Blasting Powder", "=ds=#sr# 250"};
- { 19, "s12599", "10561", "=q1=Mithril Casing", "=ds=#sr# 215"};
- { 20, "s12591", "10560", "=q1=Unstable Trigger", "=ds=#sr# 200"};
- { 21, "s12589", "10559", "=q1=Mithril Tube", "=ds=#sr# 195"};
- { 22, "s12590", "10498", "=q1=Gyromatic Micro-Adjustor", "=ds=#sr# 175"};
- { 23, "s12585", "10505", "=q1=Solid Blasting Powder", "=ds=#sr# 175"};
- { 24, "s3961", "4389", "=q1=Gyrochronatom", "=ds=#sr# 170"};
- { 25, "s3958", "4387", "=q1=Iron Strut", "=ds=#sr# 160"};
- { 26, "s12584", "10558", "=q1=Gold Power Core", "=ds=#sr# 150"};
- { 27, "s3953", "4382", "=q1=Bronze Framework", "=ds=#sr# 145"};
- { 28, "s3942", "4375", "=q1=Whirring Bronze Gizmo", "=ds=#sr# 125"};
- { 29, "s3945", "4377", "=q1=Heavy Blasting Powder", "=ds=#sr# 125"};
- { 30, "s3938", "4371", "=q1=Bronze Tube", "=ds=#sr# 105"};
- Next = "EngineeringReagents2";
- Back = "ENGINEERINGMENU";
- };
-
- AtlasLoot_Data["EngineeringReagents2"] = {
- { 1, "s3973", "4404", "=q1=Silver Contact", "=ds=#sr# 90"};
- { 2, "s3929", "4364", "=q1=Coarse Blasting Powder", "=ds=#sr# 75"};
- { 3, "s3926", "4363", "=q1=Copper Modulator", "=ds=#sr# 65"};
- { 4, "s3924", "4361", "=q1=Copper Tube", "=ds=#sr# 50"};
- { 5, "s3922", "4359", "=q1=Handful of Copper Bolts", "=ds=#sr# 30"};
- { 6, "s3918", "4357", "=q1=Rough Blasting Powder", "=ds=#sr# 1"};
- Prev = "EngineeringReagents1";
- Back = "ENGINEERINGMENU";
- };
-
- AtlasLoot_Data["EngineeringWeapon1"] = {
- { 1, "s56479", "41168", "=q4=Armor Plated Combat Shotgun", "=ds=#sr# 450" };
- { 2, "s60874", "44504", "=q4=Nesingwary 4000", "=ds=#sr# 450" };
- { 3, "s54353", "39688", "=q3=Mark \"S\" Boomstick", "=ds=#sr# 400" };
- { 4, "s41307", "32756", "=q4=Gyro-balanced Khorium Destroyer", "=ds=#sr# 375"};
- { 5, "s30315", "23748", "=q3=Ornate Khorium Rifle", "=ds=#sr# 375"};
- { 6, "s30314", "23747", "=q3=Felsteel Boomstick", "=ds=#sr# 360"};
- { 7, "s30313", "23746", "=q2=Adamantite Rifle", "=ds=#sr# 350"};
- { 8, "s30312", "23742", "=q2=Fel Iron Musket", "=ds=#sr# 320"};
- { 9, "s22795", "18282", "=q4=Core Marksman Rifle", "=ds=#sr# 300"};
- { 10, "s19833", "16007", "=q3=Flawless Arcanite Rifle", "=ds=#sr# 300"};
- { 11, "s19796", "16004", "=q3=Dark Iron Rifle", "=ds=#sr# 275"};
- { 12, "s19792", "15995", "=q2=Thorium Rifle", "=ds=#sr# 260"};
- { 13, "s12614", "10510", "=q2=Mithril Heavy-bore Rifle", "=ds=#sr# 220"};
- { 14, "s12595", "10508", "=q2=Mithril Blunderbuss", "=ds=#sr# 205"};
- { 15, "s3954", "4383", "=q2=Moonsight Rifle", "=ds=#sr# 145"};
- { 16, "s3949", "4379", "=q2=Silver-plated Shotgun", "=ds=#sr# 130"};
- { 17, "s3939", "4372", "=q2=Lovingly Crafted Boomstick", "=ds=#sr# 120"};
- { 18, "s3936", "4369", "=q2=Deadly Blunderbuss", "=ds=#sr# 105"};
- { 19, "s3925", "4362", "=q2=Rough Boomstick", "=ds=#sr# 50"};
- { 20, "s7430", "6219", "=q1=Arclight Spanner", "=ds=#sr# 50"};
- Back = "ENGINEERINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["Gnomish1"] = {
- { 1, "s72953", "52021", "=q4=Iceblade Arrow", "=ds=#sr# 450"};
- { 2, "s30575", "23829", "=q4=Gnomish Battle Goggles", "=ds=#sr# 375"};
- { 3, "s30574", "23828", "=q4=Gnomish Power Goggles", "=ds=#sr# 375"};
- { 4, "s56473", "40895", "=q3=Gnomish X-Ray Specs", "=ds=#sr# 425" };
- { 5, "s30570", "23825", "=q3=Nigh-Invulnerability Belt", "=ds=#sr# 350"};
- { 6, "s30569", "23835", "=q3=Gnomish Poultryizer", "=ds=#sr# 340"};
- { 7, "s36955", "30544", "=q2=Ultrasafe Transporter - Toshley's Station", "=ds=#sr# 350"};
- { 8, "s23489", "18986", "=q2=Ultrasafe Transporter - Gadgetzan", "=ds=#sr# 260"};
- { 9, "s23129", "18660", "=q2=World Enlarger", "=ds=#sr# 260"};
- { 10, "s12907", "10726", "=q2=Gnomish Mind Control Cap", "=ds=#sr# 235"};
- { 11, "s12905", "10724", "=q2=Gnomish Rocket Boots", "=ds=#sr# 225"};
- { 12, "s12903", "10721", "=q2=Gnomish Harm Prevention Belt", "=ds=#sr# 215"};
- { 13, "s12897", "10545", "=q2=Gnomish Goggles", "=ds=#sr# 210"};
- { 14, "s30568", "23841", "=q1=Gnomish Flame Turret", "=ds=#sr# 325"};
- { 15, "s23096", "18645", "=q1=Alarm-O-Bot", "=ds=#sr# 265"};
- { 16, "s12759", "10645", "=q1=Gnomish Death Ray", "=ds=#sr# 240"};
- { 17, "s12906", "10725", "=q1=Gnomish Battle Chicken", "=ds=#sr# 230"};
- { 18, "s12902", "10720", "=q1=Gnomish Net-o-Matic Projector", "=ds=#sr# 210"};
- { 19, "s12899", "10716", "=q1=Gnomish Shrink Ray", "=ds=#sr# 205"};
- { 20, "s12895", "10713", "=q1=Inlaid Mithril Cylinder Plans", "=ds=#sr# 205"};
- Back = "ENGINEERINGMENU";
- };
-
- AtlasLoot_Data["Goblin1"] = {
- { 1, "s72952", "52020", "=q4=Shatter Rounds", "=ds=#sr# 450"};
- { 2, "s30565", "23838", "=q4=Foreman's Enchanted Helmet", "=ds=#sr# 375"};
- { 3, "s30566", "23839", "=q4=Foreman's Reinforced Helmet", "=ds=#sr# 375"};
- { 4, "s30563", "23836", "=q3=Goblin Rocket Launcher", "=ds=#sr# 350"};
- { 5, "s36954", "30542", "=q2=Dimensional Ripper - Area 52", "=ds=#sr# 350"};
- { 6, "s23486", "18984", "=q2=Dimensional Ripper - Everlook", "=ds=#sr# 260"};
- { 7, "s12758", "10588", "=q2=Goblin Rocket Helmet", "=ds=#sr# 245"};
- { 8, "s8895", "7189", "=q2=Goblin Rocket Boots", "=ds=#sr# 225"};
- { 9, "s12718", "10543", "=q2=Goblin Construction Helmet", "=ds=#sr# 205"};
- { 10, "s12717", "10542", "=q2=Goblin Mining Helmet", "=ds=#sr# 205"};
- { 11, "s56514", "42641", "=q1=Global Thermal Sapper Charge", "=ds=#sr# 425" };
- { 12, "s30560", "23827", "=q1=Super Sapper Charge", "=ds=#sr# 340"};
- { 13, "s30558", "23826", "=q1=The Bigger One", "=ds=#sr# 325"};
- { 14, "s23078", "18587", "=q1=Goblin Jumper Cables XL", "=ds=#sr# 265"};
- { 15, "s12908", "10727", "=q1=Goblin Dragon Gun", "=ds=#sr# 240"};
- { 16, "s12754", "10586", "=q1=The Big One", "=ds=#sr# 235"};
- { 17, "s12755", "10587", "=q1=Goblin Bomb Dispenser", "=ds=#sr# 230"};
- { 18, "s12716", "10577", "=q1=Goblin Mortar", "=ds=#sr# 205"};
- { 19, "s12715", "10644", "=q1=Goblin Rocket Fuel Recipe", "=ds=#sr# 205"};
- { 20, "s12760", "10646", "=q1=Goblin Sapper Charge", "=ds=#sr# 205"};
- { 21, "s13240", "10577", "=q1=The Mortar: Reloaded", "=ds=#sr# 205"};
- Back = "ENGINEERINGMENU";
- };
-
- ---------------------
- --- Jewelcrafting ---
- ---------------------
-
-
- AtlasLoot_Data["JewelRedWRATH"] ={
- { 1, "s66447", "40111", "=q4=Bold Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 2, "s66449", "40114", "=q4=Bright Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 3, "s66448", "40112", "=q4=Delicate Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 4, "s66453", "40116", "=q4=Flashing Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 5, "s66451", "40117", "=q4=Fractured Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 6, "s66450", "40118", "=q4=Precise Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 7, "s66446", "40113", "=q4=Runed Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 8, "s66452", "40115", "=q4=Subtle Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 9, "s53830", "39996", "=q3=Bold Scarlet Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 10, "s53947", "39999", "=q3=Bright Scarlet Ruby", "=ds="..AL["Trainer"] };
- { 11, "s53945", "39997", "=q3=Delicate Scarlet Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 12, "s53949", "40001", "=q3=Flashing Scarlet Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 13, "s53950", "40002", "=q3=Fractured Scarlet Ruby","=ds="..AL["Drop"].." - "..BabbleZone["The Storm Peaks"] };
- { 14, "s53951", "40003", "=q3=Precise Scarlet Ruby", "=ds="..BabbleBoss["Herald Volazj"].." ("..AL["Heroic"]..")" };
- { 15, "s53946", "39998", "=q3=Runed Scarlet Ruby", "=ds="..BabbleFaction["Kirin Tor"]..": "..BabbleFaction["Exalted"] };
- { 16, "s53843", "39907", "=q2=Subtle Bloodstone", "=ds="..AL["Trainer"] };
- { 17, "s53831", "39900", "=q2=Bold Bloodstone", "=ds="..AL["Trainer"] };
- { 18, "s53835", "39906", "=q2=Bright Bloodstone", "=ds="..AL["Trainer"] };
- { 19, "s53832", "39905", "=q2=Delicate Bloodstone", "=ds="..AL["Trainer"] };
- { 20, "s53844", "39908", "=q2=Flashing Bloodstone", "=ds="..AL["Trainer"] };
- { 21, "s53845", "39909", "=q2=Fractured Bloodstone", "=ds="..AL["Trainer"] };
- { 22, "s54017", "39910", "=q2=Precise Bloodstone", "=ds="..AL["Trainer"] };
- { 23, "s53834", "39911", "=q2=Runed Bloodstone", "=ds="..AL["Trainer"] };
- Prev = "JewelRedTBC";
- Next = "JewelRedTBC";
- Back = "JEWELCRAFTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["JewelBlueWRATH"] = {
- { 1, "s66500", "40121", "=q4=Lustrous Majestic Zircon", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 2, "s66497", "40119", "=q4=Solid Majestic Zircon", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 3, "s66498", "40120", "=q4=Sparkling Majestic Zircon", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 4, "s66499", "40122", "=q4=Stormy Majestic Zircon", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 5, "s53954", "40010", "=q3=Lustrous Sky Sapphire", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 6, "s53952", "40008", "=q3=Solid Sky Sapphire", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 7, "s53953", "40009", "=q3=Sparkling Sky Sapphire", "=ds="..AL["Trainer"] };
- { 8, "s53955", "40011", "=q3=Stormy Sky Sapphire", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 9, "s53941", "39927", "=q2=Lustrous Chalcedony", "=ds="..AL["Trainer"] };
- { 10, "s53934", "39919", "=q2=Solid Chalcedony", "=ds="..AL["Trainer"] };
- { 11, "s53940", "39920", "=q2=Sparkling Chalcedony", "=ds="..AL["Trainer"] };
- { 12, "s53943", "39932", "=q2=Stormy Chalcedony", "=ds=1250 #faction#" };
- Prev = "JewelBlueTBC";
- Next = "JewelBlueTBC";
- Back = "JEWELCRAFTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["JewelYellowWRATH"] = {
- { 1, "s66503", "40123", "=q4=Brilliant King's Amber", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 2, "s66505", "40127", "=q4=Mystic King's Amber", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 3, "s66506", "40128", "=q4=Quick King's Amber", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 4, "s66501", "40125", "=q4=Rigid King's Amber", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 5, "s66502", "40124", "=q4=Smooth King's Amber", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 6, "s66504", "40126", "=q4=Thick King's Amber", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 7, "s53956", "40012", "=q3=Brilliant Autumn's Glow", "=ds="..AL["Trainer"] };
- { 8, "s53960", "40016", "=q3=Mystic Autumn's Glow", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 9, "s53961", "40017", "=q3=Quick Autumn's Glow", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 10, "s53958", "40014", "=q3=Rigid Autumn's Glow", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 11, "s53957", "40013", "=q3=Smooth Autumn's Glow", "=ds="..BabbleFaction["The Sons of Hodir"]..": "..BabbleFaction["Exalted"] };
- { 12, "s53959", "40015", "=q3=Thick Autumn's Glow", "=ds="..BabbleBoss["Cyanigosa"].." ("..AL["Heroic"]..")" };
- { 16, "s53852", "39912", "=q2=Brilliant Sun Crystal", "=ds="..AL["Trainer"] };
- { 17, "s53857", "39917", "=q2=Mystic Sun Crystal", "=ds=1250 #faction#" };
- { 18, "s53856", "39918", "=q2=Quick Sun Crystal", "=ds="..AL["Trainer"] };
- { 19, "s53854", "39915", "=q2=Rigid Sun Crystal", "=ds="..AL["Trainer"] };
- { 20, "s53853", "39914", "=q2=Smooth Sun Crystal", "=ds="..AL["Trainer"] };
- { 21, "s53855", "39916", "=q2=Thick Sun Crystal", "=ds="..AL["Trainer"] };
- Prev = "JewelYellowTBC";
- Next = "JewelYellowTBC";
- Back = "JEWELCRAFTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["JewelGreenWRATH"] = {
- { 1, "s66430", "40175", "=q4=Dazzling Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 2, "s66338", "40167", "=q4=Enduring Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 3, "s66442", "40179", "=q4=Energized Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 4, "s66434", "40169", "=q4=Forceful Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 5, "s66440", "40174", "=q4=Intricate Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 6, "s66431", "40165", "=q4=Jagged Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 7, "s66439", "40177", "=q4=Lambent Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 8, "s66435", "40171", "=q4=Misty Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 9, "s66444", "40178", "=q4=Opaque Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 10, "s66441", "40180", "=q4=Radiant Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 11, "s66433", "40170", "=q4=Seer's Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 12, "s66443", "40182", "=q4=Shattered Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 13, "s66437", "40172", "=q4=Shining Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 14, "s66428", "40168", "=q4=Steady Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 15, "s66436", "40176", "=q4=Sundered Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 16, "s66438", "40181", "=q4=Tense Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 17, "s66432", "40164", "=q4=Timeless Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 18, "s66445", "40173", "=q4=Turbid Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 19, "s66429", "40166", "=q4=Vivid Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 20, "s54007", "40094", "=q3=Dazzling Forest Emerald", "=ds="..AL["Trainer"] };
- { 21, "s53998", "40089", "=q3=Enduring Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 22, "s54011", "40105", "=q3=Energized Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 23, "s54001", "40091", "=q3=Forceful Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 24, "s54006", "40104", "=q3=Intricate Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 25, "s53996", "40086", "=q3=Jagged Forest Emerald", "=ds="..BabbleFaction["Frenzyheart Tribe"]..": "..BabbleFaction["Revered"] };
- { 26, "s54009", "40100", "=q3=Lambent Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 27, "s54003", "40095", "=q3=Misty Forest Emerald", "=ds="..AL["Drop"]..""};
- { 28, "s54010", "40103", "=q3=Opaque Forest Emerald", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 29, "s54012", "40098", "=q3=Radiant Forest Emerald", "=ds="..AL["Drop"].." - "..BabbleZone["The Storm Peaks"] };
- { 30, "s54002", "40092", "=q3=Seer's Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- Prev = "JewelGreenTBC";
- Next = "JewelGreen2WRATH";
- Back = "JEWELCRAFTINGMENU";
- Submenu = "Expansion";
- };
- AtlasLoot_Data["JewelGreen2WRATH"] = {
- { 1, "s54014", "40106", "=q3=Shattered Forest Emerald", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 2, "s54004", "40099", "=q3=Shining Forest Emerald", "=ds="..AL["Drop"]..""};
- { 3, "s54000", "40090", "=q3=Steady Forest Emerald", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 4, "s54008", "40096", "=q3=Sundered Forest Emerald", "=ds="..BabbleFaction["The Oracles"]..": "..BabbleFaction["Revered"] };
- { 5, "s54013", "40101", "=q3=Tense Forest Emerald","=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 6, "s53995", "40085", "=q3=Timeless Forest Emerald", "=ds="..BabbleBoss["The Prophet Tharon'ja"].." ("..AL["Heroic"]..")" };
- { 7, "s54005", "40102", "=q3=Turbid Forest Emerald", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 8, "s53997", "40088", "=q3=Vivid Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 9, "s53926", "39984", "=q2=Dazzling Dark Jade", "=ds="..AL["Trainer"] };
- { 10, "s53918", "39976", "=q2=Enduring Dark Jade", "=ds="..AL["Trainer"] };
- { 11, "s53930", "39989", "=q2=Energized Dark Jade", "=ds="..AL["Trainer"] };
- { 12, "s53920", "39978", "=q2=Forceful Dark Jade", "=ds="..AL["Trainer"] };
- { 13, "s53925", "39983", "=q2=Intricate Dark Jade", "=ds="..AL["Trainer"] };
- { 14, "s53916", "39974", "=q2=Jagged Dark Jade", "=ds="..AL["Trainer"] };
- { 15, "s53928", "39986", "=q2=Lambent Dark Jade", "=ds="..AL["Trainer"] };
- { 16, "s53922", "39980", "=q2=Misty Dark Jade", "=ds="..AL["Trainer"] };
- { 17, "s53929", "39988", "=q2=Opaque Dark Jade", "=ds=1250 #faction#" };
- { 18, "s53931", "39990", "=q2=Radiant Dark Jade", "=ds="..AL["Trainer"] };
- { 19, "s53921", "39979", "=q2=Seer's Dark Jade", "=ds="..BabbleFaction["The Kalu'ak"]..": "..BabbleFaction["Friendly"] };
- { 20, "s53933", "39992", "=q2=Shattered Dark Jade", "=ds=1250 #faction#" };
- { 21, "s53923", "39981", "=q2=Shining Dark Jade", "=ds="..AL["Trainer"] };
- { 22, "s53919", "39977", "=q2=Steady Dark Jade", "=ds=1250 #faction#" };
- { 23, "s53927", "39985", "=q2=Sundered Dark Jade", "=ds="..AL["Trainer"] };
- { 24, "s53932", "39991", "=q2=Tense Dark Jade", "=ds=1250 #faction#" };
- { 25, "s53894", "39968", "=q2=Timeless Dark Jade", "=ds="..AL["Trainer"] };
- { 26, "s53924", "39982", "=q2=Turbid Dark Jade", "=ds=1250 #faction#" };
- { 27, "s53917", "39975", "=q2=Vivid Dark Jade", "=ds="..AL["Trainer"] };
- Prev = "JewelGreenWRATH";
- Next = "JewelGreenTBC";
- Back = "JEWELCRAFTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["JewelOrangeWRATH"] = {
- { 1, "s66576", "40162", "=q4=Accurate Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 2, "s66579", "40144", "=q4=Champion's Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 3, "s66568", "40147", "=q4=Deadly Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 4, "s66584", "40150", "=q4=Deft Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 5, "s66571", "40154", "=q4=Durable Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 6, "s66580", "40158", "=q4=Empowered Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 7, "s66572", "40143", "=q4=Etched Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 8, "s66583", "40146", "=q4=Fierce Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 9, "s66578", "40161", "=q4=Glimmering Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 10, "s66575", "40148", "=q4=Glinting Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 11, "s66567", "40142", "=q4=Inscribed Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 12, "s66585", "40149", "=q4=Lucent Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 13, "s66566", "40151", "=q4=Luminous Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 14, "s66569", "40152", "=q4=Potent Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 15, "s66573", "40157", "=q4=Pristine Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 16, "s66574", "40155", "=q4=Reckless Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 17, "s66586", "40163", "=q4=Resolute Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 18, "s66582", "40145", "=q4=Resplendent Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 19, "s66581", "40160", "=q4=Stalwart Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 20, "s66587", "40159", "=q4=Stark Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 21, "s66570", "40153", "=q4=Veiled Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 22, "s66577", "40156", "=q4=Wicked Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- Prev = "JewelOrangeTBC";
- Next = "JewelOrange2WRATH";
- Back = "JEWELCRAFTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["JewelOrange2WRATH"] = {
- { 1, "s53994", "40058", "=q3=Accurate Monarch Topaz", "=ds="..AL["Drop"] };
- { 2, "s53977", "40039", "=q3=Champion's Monarch Topaz", "=ds="..AL["Drop"]..""};
- { 3, "s53979", "40043", "=q3=Deadly Monarch Topaz", "=ds="..BabbleBoss["Keristrasza"].." ("..AL["Heroic"]..")" };
- { 4, "s53982", "40046", "=q3=Deft Monarch Topaz", "=ds="..BabbleBoss["Sjonnir The Ironshaper"].." ("..AL["Heroic"]..")" };
- { 5, "s53986", "40050", "=q3=Durable Monarch Topaz", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 6, "s53990", "40054", "=q3=Empowered Monarch Topaz", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 7, "s53976", "40038", "=q3=Etched Monarch Topaz", "=ds="..AL["Drop"]..""};
- { 8, "s54019", "40041", "=q3=Fierce Monarch Topaz", "=ds="..BabbleBoss["Ingvar the Plunderer"].." ("..AL["Heroic"]..")" };
- { 9, "s53993", "40057", "=q3=Glimmering Monarch Topaz", "=ds="..BabbleFaction["The Wyrmrest Accord"]..": "..BabbleFaction["Exalted"] };
- { 10, "s53980", "40044", "=q3=Glinting Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 11, "s53975", "40037", "=q3=Inscribed Monarch Topaz", "=ds="..AL["Drop"]..""};
- { 12, "s53981", "40045", "=q3=Lucent Monarch Topaz", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 13, "s53983", "40047", "=q3=Luminous Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 14, "s53984", "40048", "=q3=Potent Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 15, "s53989", "40053", "=q3=Pristine Monarch Topaz", "=ds="..AL["Trainer"] };
- { 16, "s53987", "40051", "=q3=Reckless Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 17, "s54023", "40059", "=q3=Resolute Monarch Topaz", "=ds="..AL["Drop"]..""};
- { 18, "s53978", "40040", "=q3=Resplendent Monarch Topaz", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 19, "s53992", "40056", "=q3=Stalwart Monarch Topaz", "=ds="..AL["Drop"]..""};
- { 20, "s53991", "40055", "=q3=Stark Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 21, "s53985", "40049", "=q3=Veiled Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 22, "s53988", "40052", "=q3=Wicked Monarch Topaz", "=ds="..BabbleFaction["Knights of the Ebon Blade"]..": "..BabbleFaction["Revered"] };
- Prev = "JewelOrangeWRATH";
- Next = "JewelOrange3WRATH";
- Back = "JEWELCRAFTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["JewelOrange3WRATH"] = {
- { 1, "s53891", "39965", "=q2=Glimmering Huge Citrine", "=ds="..AL["Trainer"] };
- { 2, "s53892", "39966", "=q2=Accurate Huge Citrine", "=ds="..AL["Trainer"] };
- { 3, "s53874", "39949", "=q2=Champion's Huge Citrine", "=ds="..AL["Trainer"] };
- { 4, "s53877", "39952", "=q2=Deadly Huge Citrine", "=ds="..BabbleFaction["Knights of the Ebon Blade"]..": "..BabbleFaction["Friendly"] };
- { 5, "s53880", "39955", "=q2=Deft Huge Citrine", "=ds="..AL["Trainer"] };
- { 6, "s53884", "39958", "=q2=Durable Huge Citrine", "=ds=1250 #faction#" };
- { 7, "s53888", "39962", "=q2=Empowered Huge Citrine", "=ds=1250 #faction#" };
- { 8, "s53873", "39948", "=q2=Etched Huge Citrine", "=ds="..AL["Trainer"] };
- { 9, "s53876", "39951", "=q2=Fierce Huge Citrine", "=ds="..AL["Trainer"] };
- { 10, "s53878", "39953", "=q2=Glinting Huge Citrine", "=ds="..AL["Trainer"] };
- { 11, "s53872", "39947", "=q2=Inscribed Huge Citrine", "=ds="..AL["Trainer"] };
- { 12, "s53879", "39954", "=q2=Lucent Huge Citrine", "=ds=1250 #faction#" };
- { 13, "s53881", "39946", "=q2=Luminous Huge Citrine", "=ds="..AL["Trainer"] };
- { 14, "s53882", "39956", "=q2=Potent Huge Citrine", "=ds="..AL["Trainer"] };
- { 15, "s53887", "39961", "=q2=Pristine Huge Citrine", "=ds="..AL["Trainer"] };
- { 16, "s53885", "39959", "=q2=Reckless Huge Citrine", "=ds="..BabbleFaction["Frenzyheart Tribe"]..": "..BabbleFaction["Friendly"] };
- { 17, "s53893", "39967", "=q2=Resolute Huge Citrine", "=ds="..AL["Trainer"] };
- { 18, "s53875", "39950", "=q2=Resplendent Huge Citrine", "=ds=1250 #faction#" };
- { 19, "s53890", "39964", "=q2=Stalwart Huge Citrine", "=ds="..AL["Trainer"] };
- { 20, "s53889", "39963", "=q2=Stark Huge Citrine", "=ds="..AL["Trainer"] };
- { 21, "s53883", "39957", "=q2=Veiled Huge Citrine", "=ds="..AL["Trainer"] };
- { 22, "s53886", "39960", "=q2=Wicked Huge Citrine", "=ds="..AL["Trainer"] };
- Prev = "JewelOrange2WRATH";
- Next = "JewelOrangeTBC";
- Back = "JEWELCRAFTINGMENU";
- Submenu = "Expansion";
- };
-
-
- AtlasLoot_Data["JewelPurpleWRATH"] = {
- { 1, "s66553", "40136", "=q4=Balanced Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 2, "s66560", "40139", "=q4=Defender's Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 3, "s66555", "40132", "=q4=Glowing Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 4, "s66561", "40141", "=q4=Guardian's Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 5, "s66564", "40137", "=q4=Infused Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 6, "s66562", "40135", "=q4=Mysterious Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 7, "s66563", "40140", "=q4=Puissant Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 8, "s66556", "40133", "=q4=Purified Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 9, "s66559", "40138", "=q4=Regal Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 10, "s66558", "40134", "=q4=Royal Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 11, "s66557", "40130", "=q4=Shifting Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 12, "s66554", "40129", "=q4=Sovereign Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 13, "s66565", "40131", "=q4=Tenuous Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 27, "s53969", "40029", "=q3=Balanced Twilight Opal", "=ds="..AL["Trainer"] };
- { 28, "s53972", "40032", "=q3=Defender's Twilight Opal", "=ds="..AL["Drop"].." - "..BabbleZone["The Storm Peaks"] };
- { 16, "s53965", "40025", "=q3=Glowing Twilight Opal", "=ds="..BabbleFaction["Knights of the Ebon Blade"]..": "..BabbleFaction["Exalted"] };
- { 17, "s53974", "40034", "=q3=Guardian's Twilight Opal", "=ds="..BabbleFaction["Argent Crusade"]..": "..BabbleFaction["Revered"] };
- { 18, "s53970", "40030", "=q3=Infused Twilight Opal", "=ds="..BabbleBoss["Anub'arak"].." ("..AL["Heroic"]..")" };
- { 19, "s53968", "40028", "=q3=Mysterious Twilight Opal", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 20, "s53973", "40033", "=q3=Puissant Twilight Opal", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 21, "s53966", "40026", "=q3=Purified Twilight Opal", "=ds="..AL["Drop"]..""};
- { 22, "s53971", "40031", "=q3=Regal Twilight Opal", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 23, "s53967", "40027", "=q3=Royal Twilight Opal", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 24, "s53963", "40023", "=q3=Shifting Twilight Opal", "=ds="..AL["Drop"]};
- { 25, "s53962", "40022", "=q3=Sovereign Twilight Opal", "=ds="..AL["Drop"]};
- { 26, "s53964", "40024", "=q3=Tenuous Twilight Opal", "=ds="..AL["Drop"]..""};
- Prev = "JewelPurpleTBC";
- Next = "JewelPurple2WRATH";
- Back = "JEWELCRAFTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["JewelPurple2WRATH"] = {
- { 1, "s53871", "39940", "=q2=Guardian's Shadow Crystal", "=ds="..AL["Trainer"] };
- { 2, "s53867", "39944", "=q2=Infused Shadow Crystal", "=ds="..AL["Trainer"] };
- { 3, "s53865", "39945", "=q2=Mysterious Shadow Crystal", "=ds=1250 #faction#" };
- { 4, "s53870", "39933", "=q2=Puissant Shadow Crystal", "=ds="..AL["Trainer"] };
- { 5, "s53863", "39941", "=q2=Purified Shadow Crystal", "=ds="..AL["Trainer"] };
- { 6, "s53864", "39943", "=q2=Royal Shadow Crystal", "=ds="..AL["Trainer"] };
- { 7, "s53860", "39935", "=q2=Shifting Shadow Crystal", "=ds="..AL["Trainer"] };
- { 8, "s53859", "39934", "=q2=Sovereign Shadow Crystal", "=ds="..AL["Trainer"] };
- { 9, "s53861", "39942", "=q2=Tenuous Shadow Crystal", "=ds="..AL["Trainer"] };
- { 10, "s53868", "39938", "=q2=Regal Shadow Crystal", "=ds="..AL["Trainer"] };
- { 11, "s53866", "39937", "=q2=Balanced Shadow Crystal", "=ds="..AL["Trainer"] };
- { 12, "s53869", "39939", "=q2=Defender's Shadow Crystal", "=ds="..BabbleFaction["The Kalu'ak"]..": "..BabbleFaction["Honored"] };
- { 13, "s53862", "39936", "=q2=Glowing Shadow Crystal", "=ds="..AL["Trainer"] };
- { 14, "s41420", "32833", "=q2=Purified Jaggal Pearl", "=ds=#sr# 325"};
- Prev = "JewelPurpleWRATH";
- Next = "JewelPurpleTBC";
- Back = "JEWELCRAFTINGMENU";
- Submenu = "Expansion";
- };
-
-
- AtlasLoot_Data["JewelMetaWRATH"] = {
- { 1, "s55389", "41285", "=q3=Chaotic Skyflare Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 2, "s55390", "41307", "=q3=Destructive Skyflare Diamond", "=ds="..AL["Drop"]..""};
- { 3, "s55384", "41377", "=q3=Effulgent Skyflare Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 4, "s55392", "41333", "=q3=Ember Skyflare Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 5, "s55393", "41335", "=q3=Enigmatic Skyflare Diamond", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 6, "s55387", "41378", "=q3=Forlorn Skyflare Diamond", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 7, "s55388", "41379", "=q3=Impassive Skyflare Diamond", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" };
- { 8, "s55394", "41339", "=q3=Swift Skyflare Diamond", "=ds="..AL["Trainer"] };
- { 9, "s55395", "41400", "=q3=Thundering Skyflare Diamond", "=ds="..AL["Drop"]..""};
- { 10, "s55386", "41375", "=q3=Tireless Skyflare Diamond", "=ds="..AL["Trainer"] };
- { 16, "s55401", "41380", "=q3=Austere Earthsiege Diamond", "=ds="..BabbleBoss["King Ymiron"] };
- { 17, "s55405", "41389", "=q3=Beaming Earthsiege Diamond", "=ds="..AL["Drop"]..""};
- { 18, "s55397", "41395", "=q3=Bracing Earthsiege Diamond", "=ds="..BabbleBoss["Ley-Guardian Eregos"] };
- { 19, "s55398", "41396", "=q3=Eternal Earthsiege Diamond", "=ds="..BabbleBoss["Loken"] };
- { 20, "s55396", "41401", "=q3=Insightful Earthsiege Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 21, "s55404", "41385", "=q3=Invigorating Earthsiege Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 22, "s55402", "41381", "=q3=Persistant Earthsiege Diamond", "=ds="..AL["Trainer"] };
- { 23, "s55399", "41397", "=q3=Powerful Earthsiege Diamond", "=ds="..AL["Trainer"] };
- { 24, "s55400", "41398", "=q3=Relentless Earthsiege Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 25, "s55403", "41382", "=q3=Trenchant Earthsiege Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- Prev = "JewelMetaTBC";
- Next = "JewelMetaTBC";
- Back = "JEWELCRAFTINGMENU";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["JewelPrismatic1"] = {
- { 1, "s68253", "49110", "=q4=Nightmare Tear", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 2, "s28028", "22459", "=q4=Void Sphere", "=ds="..GetSpellInfo(7411) };
- { 3, "s56531", "42702", "=q3=Enchanted Tear", "=ds="..AL["Trainer"] };
- { 4, "s28027", "22460", "=q3=Prismatic Sphere", "=ds="..GetSpellInfo(7411) };
- { 5, "s56530", "42701", "=q2=Enchanted Pearl", "=ds="..AL["Trainer"] };
- { 6, "s62941", "42701", "=q2=Prismatic Black Diamond", "=ds="..AL["Trainer"] };
- Back = "JEWELCRAFTINGMENU";
- };
-
- AtlasLoot_Data["JewelDragonsEye1"] = {
- { 1, "s56049", "42142", "=q4=Bold Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 2, "s56054", "36766", "=q4=Bright Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 3, "s56074", "42148", "=q4=Brilliant Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 4, "s56052", "42143", "=q4=Delicate Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 5, "s56056", "42152", "=q4=Flashing Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 6, "s56076", "42153", "=q4=Fractured Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 7, "s56077", "42146", "=q4=Lustrous Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 8, "s56079", "42158", "=q4=Mystic Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 9, "s56081", "42154", "=q4=Precise Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 10, "s56083", "42150", "=q4=Quick Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 11, "s56084", "42156", "=q4=Rigid Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 12, "s56053", "42144", "=q4=Runed Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 13, "s56085", "42149", "=q4=Smooth Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 14, "s56086", "36767", "=q4=Solid Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 15, "s56087", "42145", "=q4=Sparkling Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 16, "s56088", "42155", "=q4=Stormy Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 17, "s56055", "42151", "=q4=Subtle Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 18, "s56089", "42157", "=q4=Thick Dragon's Eye", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 20, 42225, "", "=q3=Dragon's Eye", "=ds=#e8#"};
- Back = "JEWELCRAFTINGMENU";
- };
-
- AtlasLoot_Data["JewelTrinket1"] = {
- { 1, "s46777", "35700", "=q4=Figurine - Crimson Serpent", "=ds=#sr# 375"};
- { 2, "s46775", "35693", "=q4=Figurine - Empyrean Tortoise", "=ds=#sr# 375"};
- { 3, "s46776", "35694", "=q4=Figurine - Khorium Boar", "=ds=#sr# 375"};
- { 4, "s46779", "35703", "=q4=Figurine - Seaspray Albatross", "=ds=#sr# 375"};
- { 5, "s46778", "35702", "=q4=Figurine - Shadowsong Panther", "=ds=#sr# 375"};
- { 6, "s56203", "42418", "=q3=Figurine - Emerald Boar", "=ds="..AL["Trainer"] };
- { 7, "s59759", "44063", "=q3=Figurine - Monarch Crab", "=ds="..AL["Trainer"] };
- { 8, "s56199", "42341", "=q3=Figurine - Ruby Hare", "=ds="..AL["Trainer"] };
- { 9, "s56202", "42413", "=q3=Figurine - Sapphire Owl", "=ds="..AL["Trainer"] };
- { 10, "s56201", "42395", "=q3=Figurine - Twilight Serpent", "=ds="..AL["Trainer"] };
- { 11, "s31080", "24125", "=q3=Figurine - Dawnstone Crab", "=ds=#sr# 370"};
- { 12, "s31079", "24124", "=q3=Figurine - Felsteel Boar", "=ds=#sr# 370"};
- { 13, "s31081", "24126", "=q3=Figurine - Living Ruby Serpent", "=ds=#sr# 370"};
- { 14, "s31083", "24128", "=q3=Figurine - Nightseye Panther", "=ds=#sr# 370"};
- { 15, "s31082", "24127", "=q3=Figurine - Talasite Owl", "=ds=#sr# 370"};
- { 16, "s26912", "21784", "=q3=Figurine - Black Diamond Crab", "=ds=#sr# 300"};
- { 17, "s26914", "21789", "=q3=Figurine - Dark Iron Scorpid", "=ds=#sr# 300"};
- { 18, "s26909", "21777", "=q2=Figurine - Emerald Owl", "=ds=#sr# 285"};
- { 19, "s26900", "21769", "=q2=Figurine - Ruby Serpent", "=ds=#sr# 260"};
- { 20, "s26882", "21763", "=q2=Figurine - Truesilver Boar", "=ds=#sr# 235"};
- { 21, "s26881", "21760", "=q2=Figurine - Truesilver Crab", "=ds=#sr# 225"};
- { 22, "s26873", "21756", "=q2=Figurine - Golden Hare", "=ds=#sr# 200"};
- { 23, "s26872", "21748", "=q2=Figurine - Jade Owl", "=ds=#sr# 200"};
- { 24, "s26875", "21758", "=q2=Figurine - Black Pearl Panther", "=ds=#sr# 215"};
- Back = "JEWELCRAFTINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["JewelRing1"] = {
- { 1, "s56497", "42643", "=q4=Titanium Earthguard Ring", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 2, "s56496", "42642", "=q4=Titanium Impact Band", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 3, "s56498", "42644", "=q4=Titanium Spellshock Ring", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 4, "s58954", "43582", "=q4=Titanium Frostguard Ring", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 5, "s38503", "31398", "=q4=The Frozen Eye", "=ds=#sr# 375"};
- { 6, "s38504", "31399", "=q4=The Natural Ward", "=ds=#sr# 375"};
- { 7, "s46124", "34361", "=q4=Hard Khorium Band", "=ds=#sr# 365"};
- { 8, "s46122", "34362", "=q4=Loop of Forged Power", "=ds=#sr# 365"};
- { 9, "s46123", "34363", "=q4=Ring of Flowing Life", "=ds=#sr# 365"};
- { 10, "s64727", "45808", "=q3=Runed Mana Band", "=ds="};
- { 11, "s64728", "45809", "=q3=Scarlet Signet", "=ds="};
- { 12, "s58147", "43250", "=q3=Ring of Earthern Might", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 13, "s58150", "43253", "=q3=Ring of Northern Tears", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 14, "s58148", "43251", "=q3=Ring of Scarlet Shadows", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 15, "s58507", "43498", "=q3=Savage Titanium Band", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 16, "s58492", "43482", "=q3=Savage Titanium Ring", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 17, "s58149", "43252", "=q3=Windfire Band", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 18, "s56197", "42340", "=q3=Dream Signet", "=ds="..AL["Trainer"] };
- { 19, "s58143", "43246", "=q3=Earthshadow Ring", "=ds="..AL["Trainer"] };
- { 20, "s58144", "43247", "=q3=Jade Ring of Slaying", "=ds="..AL["Trainer"] };
- { 21, "s31057", "24086", "=q3=Arcane Khorium Band", "=ds=#sr# 365"};
- { 22, "s31061", "24089", "=q3=Blazing Eternium Band", "=ds=#sr# 365"};
- { 23, "s31056", "24085", "=q3=Khorium Band of Leaves", "=ds=#sr# 360"};
- { 24, "s37855", "30825", "=q3=Ring of Arcane Shielding", "=ds=#sr# 360"};
- { 25, "s31060", "24088", "=q3=Delicate Eternium Ring", "=ds=#sr# 355"};
- { 26, "s31054", "24080", "=q3=Khorium Band of Frost", "=ds=#sr# 355"};
- { 27, "s31055", "24082", "=q3=Khorium Inferno Band", "=ds=#sr# 355"};
- { 28, "s31053", "24079", "=q3=Khorium Band of Shadows", "=ds=#sr# 350"};
- { 29, "s31058", "24087", "=q3=Heavy Felsteel Ring", "=ds=#sr# 345"};
- { 30, "s41415", "32774", "=q3=The Black Pearl", "=ds=#sr# 330"};
- Next = "JewelRing2";
- Back = "JEWELCRAFTINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["JewelRing2"] = {
- { 1, "s41414", "32772", "=q3=Brilliant Pearl Band", "=ds=#sr# 325"};
- { 2, "s26916", "21779", "=q3=Band of Natural Fire", "=ds=#sr# 310"};
- { 3, "s26903", "21768", "=q3=Sapphire Signet", "=ds=#sr# 275"};
- { 4, "s26896", "21753", "=q3=Gem Studded Band", "=ds=#sr# 250"};
- { 5, "s26874", "20964", "=q3=Aquamarine Signet", "=ds=#sr# 210"};
- { 6, "s34959", "29158", "=q3=Truesilver Commander's Ring", "=ds=#sr# 200"};
- { 7, "s34955", "29157", "=q3=Golden Ring of Power", "=ds=#sr# 180"};
- { 8, "s37818", "30804", "=q3=Bronze Band of Force", "=ds=#sr# 65"};
- { 9, "s25305", "20826", "=q3=Heavy Silver Ring", "=ds=#sr# 90"};
- { 10, "s58146", "43249", "=q2=Shadowmight Ring", "=ds="..AL["Trainer"] };
- { 11, "s58145", "43248", "=q2=Stoneguard Band", "=ds="..AL["Trainer"] };
- { 12, "s56193", "42336", "=q2=Bloodstone Band", "=ds="..AL["Trainer"] };
- { 13, "s56194", "42337", "=q2=Sun Rock Ring", "=ds="..AL["Trainer"] };
- { 14, "s31052", "24078", "=q2=Heavy Adamantite Ring", "=ds=#sr# 335"};
- { 15, "s31050", "24076", "=q2=Azure Moonstone Ring", "=ds=#sr# 320"};
- { 16, "s31048", "24074", "=q2=Fel Iron Blood Ring", "=ds=#sr# 310"};
- { 17, "s31049", "24075", "=q2=Golden Draenite Ring", "=ds=#sr# 310"};
- { 18, "s34961", "29160", "=q2=Emerald Lion Ring", "=ds=#sr# 290"};
- { 19, "s26910", "21778", "=q2=Ring of Bitter Shadows", "=ds=#sr# 285"};
- { 20, "s34960", "29159", "=q2=Glowing Thorium Band", "=ds=#sr# 280"};
- { 21, "s26907", "21775", "=q2=Onslaught Ring", "=ds=#sr# 280"};
- { 22, "s36526", "30422", "=q2=Diamond Focus Ring", "=ds=#sr# 265"};
- { 23, "s26902", "21767", "=q2=Simple Opal Ring", "=ds=#sr# 260"};
- { 24, "s26887", "21754", "=q2=The Aquamarine Ward", "=ds=#sr# 245"};
- { 25, "s26885", "21765", "=q2=Truesilver Healing Ring", "=ds=#sr# 240"};
- { 26, "s36525", "30421", "=q2=Red Ring of Destruction", "=ds=#sr# 230"};
- { 27, "s25621", "20961", "=q2=Citrine Ring of Rapid Healing", "=ds=#sr# 180"};
- { 28, "s25620", "20960", "=q2=Engraved Truesilver Ring", "=ds=#sr# 170"};
- { 29, "s25619", "20959", "=q2=The Jade Eye", "=ds=#sr# 170"};
- { 30, "s25617", "20958", "=q2=Blazing Citrine Ring", "=ds=#sr# 150"};
- Prev = "JewelRing1";
- Next = "JewelRing3";
- Back = "JEWELCRAFTINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["JewelRing3"] = {
- { 1, "s25613", "20955", "=q2=Golden Dragon Ring", "=ds=#sr# 135"};
- { 2, "s25323", "20833", "=q2=Wicked Moonstone Ring", "=ds=#sr# 125"};
- { 3, "s36524", "30420", "=q2=Heavy Jade Ring", "=ds=#sr# 105"};
- { 4, "s25318", "20828", "=q2=Ring of Twilight Shadows", "=ds=#sr# 100"};
- { 5, "s25317", "20827", "=q2=Ring of Silver Might", "=ds=#sr# 80"};
- { 6, "s25287", "20823", "=q2=Gloom Band", "=ds=#sr# 70"};
- { 7, "s25284", "20820", "=q2=Simple Pearl Ring", "=ds=#sr# 60"};
- { 8, "s25490", "20907", "=q2=Solid Bronze Ring", "=ds=#sr# 50"};
- { 9, "s25280", "20818", "=q2=Elegant Silver Ring", "=ds=#sr# 50"};
- { 10, "s25283", "20821", "=q2=Inlaid Malachite Ring", "=ds=#sr# 30"};
- { 11, "s32179", "25439", "=q2=Tigerseye Band", "=ds=#sr# 20"};
- { 12, "s26926", "21932", "=q2=Heavy Copper Ring", "=ds=#sr# 5"};
- { 13, "s25493", "20906", "=q2=Braided Copper Ring", "=ds=#sr# 1"};
- { 14, "s26925", "21931", "=q2=Woven Copper Ring", "=ds=#sr# 1"};
- Prev = "JewelRing2";
- Back = "JEWELCRAFTINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["JewelNeck1"] = {
- { 1, "s56500", "42646", "=q4=Titanium Earthguard Chain", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 2, "s56499", "42645", "=q4=Titanium Impact Choker", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 3, "s56501", "42647", "=q4=Titanium Spellshock Necklace", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] };
- { 4, "s46126", "34360", "=q4=Amulet of Flowing Life", "=ds=#sr# 365"};
- { 5, "s46127", "34358", "=q4=Hard Khorium Choker", "=ds=#sr# 365"};
- { 6, "s46125", "34359", "=q4=Pendant of Sunfire", "=ds=#sr# 365"};
- { 7, "s64725", "45812", "=q3=Emerald Choker", "=ds="};
- { 8, "s64726", "45813", "=q3=Sky Sapphire Amulet", "=ds="};
- { 9, "s56196", "42339", "=q3=Blood Sun Necklace", "=ds="..AL["Trainer"] };
- { 10, "s56195", "42338", "=q3=Jade Dagger Pendant", "=ds="..AL["Trainer"] };
- { 11, "s31076", "24121", "=q3=Chain of the Twilight Owl", "=ds=#sr# 365"};
- { 12, "s31072", "24117", "=q3=Embrace of the Dawn", "=ds=#sr# 365"};
- { 13, "s31070", "24114", "=q3=Braided Eternium Chain", "=ds=#sr# 360"};
- { 14, "s31071", "24116", "=q3=Eye of the Night", "=ds=#sr# 360"};
- { 15, "s31062", "24092", "=q3=Pendant of Frozen Flame", "=ds=#sr# 360"};
- { 16, "s31065", "24097", "=q3=Pendant of Shadow's End", "=ds=#sr# 360"};
- { 17, "s31063", "24093", "=q3=Pendant of Thawing", "=ds=#sr# 360"};
- { 18, "s31066", "24098", "=q3=Pendant of the Null Rune", "=ds=#sr# 360"};
- { 19, "s31064", "24095", "=q3=Pendant of Withering", "=ds=#sr# 360"};
- { 20, "s31068", "24110", "=q3=Living Ruby Pendant", "=ds=#sr# 355"};
- { 21, "s31067", "24106", "=q3=Thick Felsteel Necklace", "=ds=#sr# 355"};
- { 22, "s40514", "32508", "=q3=Necklace of the Deep", "=ds=#sr# 340"};
- { 23, "s26915", "21792", "=q3=Necklace of the Diamond Tower", "=ds=#sr# 305"};
- { 24, "s26911", "21791", "=q3=Living Emerald Pendant", "=ds=#sr# 290"};
- { 25, "s26897", "21766", "=q3=Opal Necklace of Impact", "=ds=#sr# 250"};
- { 26, "s63743", "45627", "=q3=Amulet of Truesight", "=ds="};
- { 27, "s58142", "43245", "=q2=Crystal Chalcedony Amulet", "=ds="..AL["Trainer"] };
- { 28, "s58141", "43244", "=q2=Crystal Citrine Necklace", "=ds="..AL["Trainer"] };
- { 29, "s31051", "24077", "=q2=Thick Adamantite Necklace", "=ds=#sr# 335"};
- { 30, "s26908", "21790", "=q2=Sapphire Pendant of Winter Night", "=ds=#sr# 280"};
- Next = "JewelNeck2";
- Back = "JEWELCRAFTINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["JewelNeck2"] = {
- { 1, "s26883", "21764", "=q2=Ruby Pendant of Fire", "=ds=#sr# 235"};
- { 2, "s26876", "21755", "=q2=Aquamarine Pendant of the Warrior", "=ds=#sr# 220"};
- { 3, "s25622", "20967", "=q2=Citrine Pendant of Golden Healing", "=ds=#sr# 190"};
- { 4, "s25618", "20966", "=q2=Jade Pendant of Blasting", "=ds=#sr# 160"};
- { 5, "s25320", "20831", "=q2=Heavy Golden Necklace of Battle", "=ds=#sr# 150"};
- { 6, "s25610", "20950", "=q2=Pendant of the Agate Shield", "=ds=#sr# 120"};
- { 7, "s25339", "20830", "=q2=Amulet of the Moon", "=ds=#sr# 110"};
- { 8, "s25498", "20909", "=q2=Barbaric Iron Collar", "=ds=#sr# 110"};
- { 9, "s38175", "31154", "=q2=Bronze Torc", "=ds=#sr# 80"};
- { 10, "s36523", "30419", "=q2=Brilliant Necklace", "=ds=#sr# 75"};
- { 11, "s26927", "21933", "=q2=Thick Bronze Necklace", "=ds=#sr# 50"};
- { 12, "s26928", "21934", "=q2=Ornate Tigerseye Necklace", "=ds=#sr# 30"};
- { 13, "s32178", "25438", "=q2=Malachite Pendant", "=ds=#sr# 20"};
- Prev = "JewelNeck1";
- Back = "JEWELCRAFTINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["JewelMisc1"] = {
- { 1, "s31078", "24123", "=q4=Circlet of Arcane Might", "=ds=#sr# 370"};
- { 2, "s31077", "24122", "=q4=Coronet of the Verdant Flame", "=ds=#sr# 370"};
- { 3, "s62242", "44943", "=q3=Icy Prism", "=ds="..AL["Trainer"]};
- { 4, "s41418", "32776", "=q3=Crown of the Sea Witch", "=ds=#sr# 365"};
- { 5, "s47280", "35945", "=q3=Brilliant Glass", "=ds=#sr# 350"};
- { 6, "s38068", "31079", "=q3=Mercurial Adamantite", "=ds=#sr# 325"};
- { 7, "s26906", "21774", "=q3=Emerald Crown of Destruction", "=ds=#sr# 275"};
- { 8, "s26878", "20969", "=q3=Ruby Crown of Restoration", "=ds=#sr# 225"};
- { 9, "s25321", "20832", "=q3=Moonsoul Crown", "=ds=#sr# 120"};
- { 10, "s56208", "42421", "=q2=Shadow Jade Focusing Lens", "=ds="..AL["Trainer"] };
- { 11, "s56206", "42420", "=q2=Shadow Crystal Focusing Lens", "=ds="..AL["Trainer"] };
- { 12, "s56205", "41367", "=q2=Dark Jade Focusing Lens", "=ds="..AL["Trainer"] };
- { 13, "s25612", "20954", "=q2=Heavy Iron Knuckles", "=ds=#sr# 125"};
- { 14, "s26880", "21752", "=q1=Thorium Setting", "=ds=#sr# 225"};
- { 15, "s32809", "25883", "=q1=Dense Stone Statue", "=ds=#sr# 225"};
- { 16, "s32808", "25882", "=q1=Solid Stone Statue", "=ds=#sr# 175"};
- { 17, "s25615", "20963", "=q1=Mithril Filigree", "=ds=#sr# 150"};
- { 18, "s32807", "25881", "=q1=Heavy Stone Statue", "=ds=#sr# 110"};
- { 19, "s25278", "20817", "=q1=Bronze Setting", "=ds=#sr# 50"};
- { 20, "s32801", "25880", "=q1=Coarse Stone Statue", "=ds=#sr# 50"};
- { 21, "s25255", "20816", "=q1=Delicate Copper Wire", "=ds=#sr# 1"};
- { 22, "s32259", "25498", "=q1=Rough Stone Statue", "=ds=#sr# 1"};
- Back = "JEWELCRAFTINGMENU";
- };
-
- ----------------------
- --- Leatherworking ---
- ----------------------
-
- AtlasLoot_Data["LeatherLeatherArmorWRATH"] = {
- { 1, "s70556", "49899", "=q4=Bladeborn Leggings", "=ds="..AL["Vendor"]..""};
- { 2, "s70555", "49894", "=q4=Blessed Cenarion Boots", "=ds="..AL["Vendor"]..""};
- { 3, "s70557", "49895", "=q4=Footpads of Impending Death", "=ds="..AL["Vendor"]..""};
- { 4, "s70554", "49898", "=q4=Legwraps of Unleashed Nature", "=ds="..AL["Vendor"]..""};
- { 5, "s67142", "47600", "=q4=Knightbane Carapace", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 6, "s67086", "47599", "=q4=Knightbane Carapace", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 7, "s67084", "47602", "=q4=Lunar Eclipse Chestguard", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 8, "s67140", "47601", "=q4=Lunar Eclipse Chestguard", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 9, "s67087", "47581", "=q4=Bracers of Swift Death", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 10, "s67139", "47582", "=q4=Bracers of Swift Death", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 11, "s67085", "47583", "=q4=Moonshadow Armguards", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 12, "s67141", "47584", "=q4=Moonshadow Armguards", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 13, "s63200", "45556", "=q4=Belt of Arctic Life", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 14, "s63201", "45565", "=q4=Boots of Wintry Endurance", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 15, "s63198", "45555", "=q4=Death-warmed Belt", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 16, "s63199", "45564", "=q4=Footpads of Silence", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 17, "s60760", "43495", "=q4=Earthgiving Legguards", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 18, "s60761", "43502", "=q4=Earthgiving Boots", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 19, "s60758", "43481", "=q4=Trollwoven Spaulders", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 20, "s60759", "43484", "=q4=Trollwoven Girdle", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 21, "s60996", "43590", "=q4=Polar Vest", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 22, "s60997", "43591", "=q4=Polar Cord", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 23, "s60998", "43592", "=q4=Polar Boots", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 24, "s62176", "44930", "=q4=Windripper Boots", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 25, "s62177", "44931", "=q4=Windripper Leggings", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 26, "s60697", "43260", "=q3=Eviscerator's Facemask", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 27, "s60702", "43433", "=q3=Eviscerator's Shoulderpads", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 28, "s60703", "43434", "=q3=Eviscerator's Chestguard", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 29, "s60704", "43435", "=q3=Eviscerator's Bindings", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 30, "s60705", "43436", "=q3=Eviscerator's Gauntlets", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- Next = "LeatherLeatherArmorWRATH2";
- Back = "LEATHERWORKINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["LeatherLeatherArmorWRATH2"] = {
- { 1, "s60706", "43437", "=q3=Eviscerator's Waistguard", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 2, "s60711", "43438", "=q3=Eviscerator's Legguards", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 3, "s60712", "43439", "=q3=Eviscerator's Treads", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 4, "s60715", "43261", "=q3=Overcast Headguard", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 5, "s60716", "43262", "=q3=Overcast Spaulders", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 6, "s60718", "43263", "=q3=Overcast Chestguard", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 7, "s60720", "43264", "=q3=Overcast Bracers", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 8, "s60721", "43265", "=q3=Overcast Handwraps", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 9, "s60723", "43266", "=q3=Overcast Belt", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 10, "s60725", "43271", "=q3=Overcast Leggings", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 11, "s60727", "43273", "=q3=Overcast Boots", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 12, "s60669", "43257", "=q3=Wildscale Breastplate", "=ds="..AL["Trainer"]};
- { 13, "s60660", "42731", "=q3=Leggings of Visceral Strikes", "=ds="..AL["Trainer"]};
- { 14, "s60671", "43258", "=q3=Purehorn Spaulders", "=ds="..AL["Trainer"]};
- { 15, "s60665", "43255", "=q3=Seafoam Gauntlets", "=ds="..AL["Trainer"]};
- { 16, "s60666", "43256", "=q3=Jormscale Footpads", "=ds="..AL["Trainer"]};
- { 17, "s51568", "38590", "=q3=Black Chitinguard Boots", "=ds="..AL["Trainer"]};
- { 18, "s60620", "44442", "=q3=Bugsquashers", "=ds="..AL["Trainer"]};
- { 19, "s51570", "38592", "=q3=Dark Arctic Chestpiece", "=ds="..AL["Trainer"]};
- { 20, "s51569", "38591", "=q3=Dark Arctic Leggings", "=ds="..AL["Trainer"]};
- { 21, "s60613", "44441", "=q3=Dark Iceborne Chestguard", "=ds="..AL["Trainer"]};
- { 22, "s60611", "44440", "=q3=Dark Iceborne Leggings", "=ds="..AL["Trainer"]};
- { 23, "s51572", "38437", "=q2=Arctic Helm", "=ds="..AL["Trainer"]};
- { 24, "s50946", "38402", "=q2=Arctic Shoulderpads", "=ds="..AL["Trainer"]};
- { 25, "s50944", "38400", "=q2=Arctic Chestpiece", "=ds="..AL["Trainer"]};
- { 26, "s51571", "38433", "=q2=Arctic Wristguards", "=ds="..AL["Trainer"]};
- { 27, "s50947", "38403", "=q2=Arctic Gloves", "=ds="..AL["Trainer"]};
- { 28, "s50949", "38405", "=q2=Arctic Belt", "=ds="..AL["Trainer"]};
- { 29, "s50945", "38401", "=q2=Arctic Leggings", "=ds="..AL["Trainer"]};
- { 30, "s50948", "38404", "=q2=Arctic Boots", "=ds="..AL["Trainer"]};
- Prev = "LeatherLeatherArmorWRATH";
- Next = "LeatherLeatherArmorWRATH3";
- Back = "LEATHERWORKINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["LeatherLeatherArmorWRATH3"] = {
- { 1, "s60608", "38438", "=q2=Iceborne Helm", "=ds="..AL["Trainer"]};
- { 2, "s50940", "38411", "=q2=Iceborne Shoulderpads", "=ds="..AL["Trainer"]};
- { 3, "s50938", "38408", "=q2=Iceborne Chestguard", "=ds="..AL["Trainer"]};
- { 4, "s60607", "38434", "=q2=Iceborne Wristguards", "=ds="..AL["Trainer"]};
- { 5, "s50941", "38409", "=q2=Iceborne Gloves", "=ds="..AL["Trainer"]};
- { 6, "s50943", "38406", "=q2=Iceborne Belt", "=ds="..AL["Trainer"]};
- { 7, "s50939", "38410", "=q2=Iceborne Leggings", "=ds="..AL["Trainer"]};
- { 8, "s50942", "38407", "=q2=Iceborne Boots", "=ds="..AL["Trainer"]};
- Prev = "LeatherLeatherArmorWRATH2";
- Back = "LEATHERWORKINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
-
-
- AtlasLoot_Data["LeatherMailArmorWRATH"] = {
- { 1, "s70560", "49901", "=q4=Draconic Bonesplinter Legguards", "=ds="..AL["Vendor"]..""};
- { 2, "s70559", "49896", "=q4=Earthsoul Boots", "=ds="..AL["Vendor"]..""};
- { 3, "s70558", "49900", "=q4=Lightning-Infused Leggings", "=ds="..AL["Vendor"]..""};
- { 4, "s70561", "49897", "=q4=Rock-Steady Treads", "=ds="..AL["Vendor"]..""};
- { 5, "s67138", "47596", "=q4=Crusader's Dragonscale Breastplate", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 6, "s67082", "47595", "=q4=Crusader's Dragonscale Breastplate", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 7, "s67080", "47597", "=q4=Ensorcelled Nerubian Breastplate", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 8, "s67136", "47598", "=q4=Ensorcelled Nerubian Breastplate", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 9, "s67137", "47580", "=q4=Black Chitin Bracers", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 10, "s67081", "47579", "=q4=Black Chitin Bracers", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 11, "s67083", "47576", "=q4=Crusader's Dragonscale Bracers", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 12, "s67143", "47577", "=q4=Crusader's Dragonscale Bracers", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 13, "s63194", "45553", "=q4=Belt of Dragons", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 14, "s63196", "45554", "=q4=Blue Belt of Chaos", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 15, "s63195", "45562", "=q4=Boots of Living Scale", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 16, "s63197", "45563", "=q4=Lightning Grounded Boots", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 17, "s60755", "43459", "=q4=Giantmaim Bracers", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 18, "s60754", "43458", "=q4=Giantmaim Legguards", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 19, "s60756", "43461", "=q4=Revenant's Breastplate", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 20, "s60757", "43469", "=q4=Revenant's Treads", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 21, "s60999", "43593", "=q4=Icy Scale Chestguard", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 22, "s61000", "43594", "=q4=Icy Scale Belt", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 23, "s61002", "43595", "=q4=Icy Scale Boots", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 24, "s60728", "43447", "=q3=Swiftarrow Helm", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 25, "s60729", "43449", "=q3=Swiftarrow Shoulderguards", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 26, "s60730", "43445", "=q3=Swiftarrow Hauberk", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 27, "s60731", "43444", "=q3=Swiftarrow Bracers", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 28, "s60732", "43446", "=q3=Swiftarrow Gauntlets", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 29, "s60734", "43442", "=q3=Swiftarrow Belt", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 30, "s60735", "43448", "=q3=Swiftarrow Leggings", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- Next = "LeatherMailArmorWRATH2";
- Back = "LEATHERWORKINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["LeatherMailArmorWRATH2"] = {
- { 1, "s60737", "43443", "=q3=Swiftarrow Boots", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 2, "s60743", "43455", "=q3=Stormhide Crown", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 3, "s60746", "43457", "=q3=Stormhide Shoulders", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 4, "s60747", "43453", "=q3=Stormhide Hauberk", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 5, "s60748", "43452", "=q3=Stormhide Wristguards", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 6, "s60749", "43454", "=q3=Stormhide Grips", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 7, "s60750", "43450", "=q3=Stormhide Belt", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 8, "s60751", "43456", "=q3=Stormhide Legguards", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 9, "s60752", "43451", "=q3=Stormhide Stompers", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]};
- { 10, "s60649", "43129", "=q3=Razorstrike Breastplate", "=ds="..AL["Trainer"]};
- { 11, "s60655", "43132", "=q3=Nightshock Hood", "=ds="..AL["Trainer"]};
- { 12, "s60651", "43130", "=q3=Virulent Spaulders", "=ds="..AL["Trainer"]};
- { 13, "s60658", "43133", "=q3=Nightshock Girdle", "=ds="..AL["Trainer"]};
- { 14, "s60652", "43131", "=q3=Eaglebane Bracers", "=ds="..AL["Trainer"]};
- { 15, "s60605", "44438", "=q3=Dragonstompers", "=ds="..AL["Trainer"]};
- { 16, "s60630", "44445", "=q3=Scaled Icewalkers", "=ds="..AL["Trainer"]};
- { 17, "s60604", "44437", "=q3=Dark Frostscale Breastplate", "=ds="..AL["Trainer"]};
- { 18, "s60601", "44436", "=q3=Dark Frostscale Leggings", "=ds="..AL["Trainer"]};
- { 19, "s60629", "44444", "=q3=Dark Nerubian Chestpiece", "=ds="..AL["Trainer"]};
- { 20, "s60627", "44443", "=q3=Dark Nerubian Leggings", "=ds="..AL["Trainer"]};
- { 21, "s60600", "38440", "=q2=Frostscale Helm", "=ds="..AL["Trainer"]};
- { 22, "s50952", "38424", "=q2=Frostscale Shoulders", "=ds="..AL["Trainer"]};
- { 23, "s50950", "38414", "=q2=Frostscale Chestguard", "=ds="..AL["Trainer"]};
- { 24, "s60599", "38436", "=q2=Frostscale Bracers", "=ds="..AL["Trainer"]};
- { 25, "s50953", "38415", "=q2=Frostscale Gloves", "=ds="..AL["Trainer"]};
- { 26, "s50955", "38412", "=q2=Frostscale Belt", "=ds="..AL["Trainer"]};
- { 27, "s50951", "38416", "=q2=Frostscale Leggings", "=ds="..AL["Trainer"]};
- { 28, "s50954", "38413", "=q2=Frostscale Boots", "=ds="..AL["Trainer"]};
- { 29, "s60624", "38439", "=q2=Nerubian Helm", "=ds="..AL["Trainer"]};
- { 30, "s50958", "38417", "=q2=Nerubian Shoulders", "=ds="..AL["Trainer"]};
- Prev = "LeatherMailArmorWRATH";
- Next = "LeatherMailArmorWRATH3";
- Back = "LEATHERWORKINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["LeatherMailArmorWRATH3"] = {
- { 1, "s50956", "38420", "=q2=Nerubian Chestguard", "=ds="..AL["Trainer"]};
- { 2, "s60622", "38435", "=q2=Nerubian Bracers", "=ds="..AL["Trainer"]};
- { 3, "s50959", "38421", "=q2=Nerubian Gloves", "=ds="..AL["Trainer"]};
- { 4, "s50961", "38418", "=q2=Nerubian Belt", "=ds="..AL["Trainer"]};
- { 5, "s50957", "38422", "=q2=Nerubian Legguards", "=ds="..AL["Trainer"]};
- { 6, "s50960", "38419", "=q2=Nerubian Boots", "=ds="..AL["Trainer"]};
- Prev = "LeatherMailArmorWRATH2";
- Back = "LEATHERWORKINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["LeatherCloaks1"] = {
- { 1, "s60640", "43565", "=q4=Durable Nerubhide Cape", "=ds="..AL["Trainer"]};
- { 2, "s60637", "43566", "=q4=Ice Striker's Cloak", "=ds="..AL["Trainer"]};
- { 3, "s42546", "33122", "=q4=Cloak of Darkness", "=ds=#sr# 360"};
- { 4, "s22926", "18509", "=q4=Chromatic Cloak", "=ds=#sr# 300"};
- { 5, "s22928", "18511", "=q4=Shifting Cloak", "=ds=#sr# 300"};
- { 6, "s55199", "41238", "=q3=Cloak of Tormented Skies", "=ds="..AL["Trainer"]};
- { 7, "s60631", "38441", "=q3=Cloak of Harsh Winds", "=ds="..AL["Trainer"]};
- { 8, "s19093", "15138", "=q3=Onyxia Scale Cloak", "=ds=#sr# 300"};
- { 9, "s10574", "8215", "=q2=Wild Leather Cloak", "=ds=#sr# 250"};
- { 10, "s10562", "8216", "=q2=Big Voodoo Cloak", "=ds=#sr# 240"};
- { 11, "s7153", "5965", "=q2=Guardian Cloak", "=ds=#sr# 185"};
- { 12, "s9198", "7377", "=q2=Frost Leather Cloak", "=ds=#sr# 180"};
- { 13, "s9070", "7283", "=q2=Black Whelp Cloak", "=ds=#sr# 100"};
- { 14, "s7953", "6466", "=q2=Deviate Scale Cloak", "=ds=#sr# 90"};
- { 15, "s2159", "2308", "=q2=Fine Leather Cloak", "=ds=#sr# 85"};
- { 16, "s3760", "3719", "=q1=Hillman's Cloak", "=ds=#sr# 150"};
- { 17, "s2168", "2316", "=q1=Dark Leather Cloak", "=ds=#sr# 110"};
- { 18, "s2162", "2310", "=q1=Embossed Leather Cloak", "=ds=#sr# 60"};
- Back = "LEATHERWORKINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherItemEnhancement1"] = {
- { 1, "s57683", "Trade_LeatherWorking", "=ds=Fur Lining - Attack Power", "=ds="..AL["Trainer"]};
- { 2, "s57701", "Trade_LeatherWorking", "=ds=Fur Lining - Arcane Resist", "=ds="..AL["Drop"]};
- { 3, "s57692", "Trade_LeatherWorking", "=ds=Fur Lining - Fire Resist", "=ds="..AL["Drop"]};
- { 4, "s57694", "Trade_LeatherWorking", "=ds=Fur Lining - Frost Resist", "=ds="..AL["Drop"]};
- { 5, "s57699", "Trade_LeatherWorking", "=ds=Fur Lining - Nature Resist", "=ds="..AL["Drop"]};
- { 6, "s57696", "Trade_LeatherWorking", "=ds=Fur Lining - Shadow Resist", "=ds="..AL["Drop"]};
- { 7, "s57691", "Trade_LeatherWorking", "=ds=Fur Lining - Spell Power", "=ds="..AL["Trainer"]};
- { 8, "s57690", "Trade_LeatherWorking", "=ds=Fur Lining - Stamina", "=ds="..AL["Trainer"]};
- { 9, "s60583", "Trade_LeatherWorking", "=ds=Jormungar Leg Reinforcements", "=ds="..AL["Trainer"]};
- { 10, "s60584", "Trade_LeatherWorking", "=ds=Nerubian Leg Reinforcements", "=ds="..AL["Trainer"]};
- { 11, "s62448", "44963", "=q4=Earthen Leg Armor", "=ds="..AL["Trainer"]};
- { 12, "s50965", "38373", "=q4=Frosthide Leg Armor", "=ds="..AL["Trainer"]};
- { 13, "s50967", "38374", "=q4=Icescale Leg Armor", "=ds="..AL["Trainer"]};
- { 14, "s35557", "29536", "=q4=Nethercleft Leg Armor", "=ds=#sr# 365"};
- { 15, "s35554", "29535", "=q4=Nethercobra Leg Armor", "=ds=#sr# 365"};
- { 16, "s50964", "38371", "=q3=Jormungar Leg Armor", "=ds="..AL["Trainer"]};
- { 17, "s50966", "38372", "=q3=Nerubian Leg Armor", "=ds="..AL["Trainer"]};
- { 18, "s35555", "29534", "=q3=Clefthide Leg Armor", "=ds=#sr# 335"};
- { 19, "s35549", "29533", "=q3=Cobrahide Leg Armor", "=ds=#sr# 335"};
- { 20, "s22727", "18251", "=q3=Core Armor Kit", "=ds=#sr# 300"};
- { 21, "s50963", "38376", "=q2=Heavy Borean Armor Kit", "=ds="..AL["Trainer"]};
- { 22, "s44770", "34207", "=q2=Glove Reinforcements", "=ds=#sr# 350"};
- { 23, "s35524", "29488", "=q2=Arcane Armor Kit", "=ds=#sr# 340"};
- { 24, "s35521", "29485", "=q2=Flame Armor Kit", "=ds=#sr# 340"};
- { 25, "s35522", "29486", "=q2=Frost Armor Kit", "=ds=#sr# 340"};
- { 26, "s35523", "29487", "=q2=Nature Armor Kit", "=ds=#sr# 340"};
- { 27, "s35520", "29483", "=q2=Shadow Armor Kit", "=ds=#sr# 340"};
- { 28, "s50962", "38375", "=q1=Borean Armor Kit", "=ds="..AL["Trainer"]};
- { 29, "s44970", "34330", "=q1=Heavy Knothide Armor Kit", "=ds=#sr# 350"};
- { 30, "s32458", "25652", "=q1=Magister's Armor Kit", "=ds=#sr# 325"};
- Next = "LeatherItemEnhancement2";
- Back = "LEATHERWORKINGMENU";
- };
-
- AtlasLoot_Data["LeatherItemEnhancement2"] = {
- { 1, "s32457", "25651", "=q1=Vindicator's Armor Kit", "=ds=#sr# 325"};
- { 2, "s32456", "25650", "=q1=Knothide Armor Kit", "=ds=#sr# 300"};
- { 3, "s32482", "25679", "=q1=Comfortable Insoles", "=ds=#sr# 300"};
- { 4, "s19058", "15564", "=q1=Rugged Armor Kit", "=ds=#sr# 250"};
- { 5, "s10487", "8173", "=q1=Thick Armor Kit", "=ds=#sr# 200"};
- { 6, "s3780", "4265", "=q1=Heavy Armor Kit", "=ds=#sr# 150"};
- { 7, "s2165", "2313", "=q1=Medium Armor Kit", "=ds=#sr# 100"};
- { 8, "s2152", "2304", "=q1=Light Armor Kit", "=ds=#sr# 1"};
- Prev = "LeatherItemEnhancement1";
- Back = "LEATHERWORKINGMENU";
- };
-
- AtlasLoot_Data["LeatherQuiversPouches1"] = {
- { 1, "s60645", "44447", "=q3=Dragonscale Ammo Pouch", "=ds="..BabbleFaction["The Kalu'ak"]..": "..BabbleFaction["Honored"]};
- { 2, "s60647", "44448", "=q3=Nerubian Reinforced Quiver", "=ds="..BabbleFaction["Knights of the Ebon Blade"]..": "..BabbleFaction["Honored"]};
- { 3, "s44768", "34106", "=q3=Netherscale Ammo Pouch", "=ds=#sr# 350"};
- { 4, "s44359", "34105", "=q3=Quiver of a Thousand Feathers", "=ds=#sr# 350"};
- { 5, "s44343", "34099", "=q2=Knothide Ammo Pouch", "=ds=#sr# 315"};
- { 6, "s44344", "34100", "=q2=Knothide Quiver", "=ds=#sr# 315"};
- { 7, "s14930", "8217", "=q2=Quickdraw Quiver", "=ds=#sr# 225"};
- { 8, "s14932", "8218", "=q2=Thick Leather Ammo Pouch", "=ds=#sr# 225"};
- { 9, "s9194", "7372", "=q2=Heavy Leather Ammo Pouch", "=ds=#sr# 150"};
- { 10, "s9193", "7371", "=q2=Heavy Quiver", "=ds=#sr# 150"};
- { 11, "s9060", "7278", "=q1=Light Leather Quiver", "=ds=#sr# 30"};
- { 12, "s9062", "7279", "=q1=Small Leather Ammo Pouch", "=ds=#sr# 30"};
- Back = "LEATHERWORKINGMENU";
- };
-
- AtlasLoot_Data["LeatherDrumsBagsMisc1"] = {
- { 1, "s60643", "44446", "=q3=Pack of Endless Pockets", "=ds="..AL["Trainer"]};
- { 2, "s50970", "38399", "=q3=Trapper's Traveling Pack", "=ds="..BabbleFaction["The Kalu'ak"]..": "..BabbleFaction["Revered"]};
- { 3, "s50971", "38347", "=q3=Mammoth Mining Bag", "=ds="..BabbleFaction["The Sons of Hodir"]..": "..BabbleFaction["Honored"]};
- { 4, "s35543", "29529", "=q3=Drums of Battle", "=ds=#sr# 365"};
- { 5, "s45117", "34490", "=q3=Bag of Many Hides", "=ds=#sr# 360"};
- { 6, "s32461", "25653", "=q3=Riding Crop", "=ds=#sr# 350"};
- { 7, "s35538", "29532", "=q2=Drums of Panic", "=ds=#sr# 370"};
- { 8, "s35539", "29531", "=q2=Drums of Restoration", "=ds=#sr# 350"};
- { 9, "s35544", "29530", "=q2=Drums of Speed", "=ds=#sr# 345"};
- { 10, "s35540", "29528", "=q2=Drums of War", "=ds=#sr# 340"};
- { 11, "s35530", "29540", "=q2=Reinforced Mining Bag", "=ds=#sr# 325"};
- { 12, "s45100", "34482", "=q2=Leatherworker's Satchel", "=ds=#sr# 300"};
- { 13, "s22815", "18258", "=q2=Gordok Ogre Suit", "=ds=#sr# 275"};
- { 14, "s69386", "49633", "=q1=Drums of Forgotten Kings", "=ds=#sr# 450" };
- { 15, "s69388", "49634", "=q1=Drums of the Wild", "=ds=#sr# 450" };
- { 16, "s23190", "18662", "=q1=Heavy Leather Ball", "=ds=#sr# 150"};
- { 17, "s5244", "5081", "=q1=Kodo Hide Bag", "=ds=#sr# 40"};
- Back = "LEATHERWORKINGMENU";
- };
-
- AtlasLoot_Data["LeatherLeather1"] = {
- { 1, "s50936", "38425", "=q1=Heavy Borean Leather", "=ds="..AL["Trainer"]};
- { 2, "s64661", "33568", "=q1=Borean Leather", "=ds="..AL["Trainer"]};
- { 3, "s32455", "23793", "=q1=Heavy Knothide Leather", "=ds=#sr# 325"};
- { 4, "s32454", "21887", "=q1=Knothide Leather", "=ds=#sr# 300"};
- { 5, "s22331", "8170", "=q1=Rugged Leather", "=ds=#sr# 250"};
- { 6, "s19047", "15407", "=q1=Cured Rugged Hide", "=ds=#sr# 250"};
- { 7, "s20650", "4304", "=q1=Thick Leather", "=ds=#sr# 200"};
- { 8, "s10482", "8172", "=q1=Cured Thick Hide", "=ds=#sr# 200"};
- { 9, "s20649", "4234", "=q1=Heavy Leather", "=ds=#sr# 150"};
- { 10, "s3818", "4236", "=q1=Cured Heavy Hide", "=ds=#sr# 150"};
- { 11, "s20648", "2319", "=q1=Medium Leather", "=ds=#sr# 100"};
- { 12, "s3817", "4233", "=q1=Cured Medium Hide", "=ds=#sr# 100"};
- { 13, "s3816", "4231", "=q1=Cured Light Hide", "=ds=#sr# 35"};
- { 14, "s2881", "2318", "=q1=Light Leather", "=ds=#sr# 1"};
- Back = "LEATHERWORKINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["Dragonscale1"] = {
- { 1, "s10619", "8347", "=q3=Dragonscale Gauntlets", "=ds=#sr# 225"};
- { 2, "s10650", "8367", "=q3=Dragonscale Breastplate", "=ds=#sr# 255"};
- { 3, "s36076", "29971", "=q3=Dragonstrike Leggings", "=ds=#sr# 260"};
- { 4, "s24655", "20296", "=q3=Green Dragonscale Gauntlets", "=ds=#sr# 280"};
- { 5, "s24654", "20295", "=q3=Blue Dragonscale Leggings", "=ds=#sr# 300"};
- { 6, "s36079", "29975", "=q3=Golden Dragonstrike Breastplate", "=ds=#sr# 330"};
- { 7, "s35576", "29516", "=q4=Ebon Netherscale Belt", "=ds=#sr# 375"};
- { 8, "s35577", "29517", "=q4=Ebon Netherscale Bracers", "=ds=#sr# 375"};
- { 9, "s35575", "29515", "=q4=Ebon Netherscale Breastplate", "=ds=#sr# 375"};
- { 10, "s35582", "29520", "=q4=Netherstrike Belt", "=ds=#sr# 375"};
- { 11, "s35584", "29521", "=q4=Netherstrike Bracers", "=ds=#sr# 375"};
- { 12, "s35580", "29519", "=q4=Netherstrike Breastplate", "=ds=#sr# 375"};
- Next = "Elemental1";
- Back = "LEATHERWORKINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["Elemental1"] = {
- { 1, "s10630", "8346", "=q3=Gauntlets of the Sea", "=ds=#sr# 230"};
- { 2, "s10632", "8348", "=q3=Helm of Fire", "=ds=#sr# 250"};
- { 3, "s36074", "29964", "=q3=Blackstorm Leggings", "=ds=#sr# 260"};
- { 4, "s36077", "29973", "=q3=Primalstorm Breastplate", "=ds=#sr# 330"};
- { 5, "s35590", "29526", "=q4=Primalstrike Belt", "=ds=#sr# 375"};
- { 6, "s35591", "29527", "=q4=Primalstrike Bracers", "=ds=#sr# 375"};
- { 7, "s35589", "29525", "=q4=Primalstrike Vest", "=ds=#sr# 375"};
- Next = "Tribal1";
- Prev = "Dragonscale1";
- Back = "LEATHERWORKINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["Tribal1"] = {
- { 1, "s10621", "8345", "=q3=Wolfshead Helm", "=ds=#sr# 225"};
- { 2, "s10647", "8349", "=q3=Feathered Breastplate", "=ds=#sr# 250"};
- { 3, "s36075", "29970", "=q3=Wildfeather Leggings", "=ds=#sr# 260"};
- { 4, "s36078", "29974", "=q3=Living Crystal Breastplate", "=ds=#sr# 330"};
- { 5, "s35587", "29524", "=q4=Windhawk Belt", "=ds=#sr# 375"};
- { 6, "s35588", "29523", "=q4=Windhawk Bracers", "=ds=#sr# 375"};
- { 7, "s35585", "29522", "=q4=Windhawk Hauberk", "=ds=#sr# 375"};
- Prev = "Elemental1";
- Back = "LEATHERWORKINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["MiningWRATH"] = {
- Name = MINING;
- {
- Name = MINING;
- { 1, "s55208", "37663", "=q2=Smelt Titansteel", "=ds=#sr# 450"};
- { 2, "s55211", "41163", "=q2=Smelt Titanium", "=ds=#sr# 450"};
- { 3, "s49258", "36913", "=q1=Smelt Saronite", "=ds=#sr# 400"};
- { 4, "s49252", "36916", "=q1=Smelt Cobalt", "=ds=#sr# 350"};
+-----------------------
+--- Tradeskill List ---
+-----------------------
+
+---------------
+--- Alchemy ---
+---------------
+
+AtlasLoot_Data["AlchemyWRATH"] = {
+ Name = ALCHEMY;
+ Type = "CraftingNoBF";
+ {
+ Name = AL["Battle Elixirs"];
+ { 1, "s60365", "44330", "=q1=Elixir of Armor Piercing", "=ds=" };
+ { 2, "s60355", "44327", "=q1=Elixir of Deadly Strikes", "=ds=" };
+ { 3, "s60357", "44329", "=q1=Elixir of Expertise", "=ds=" };
+ { 4, "s60366", "44331", "=q1=Elixir of Lightning Speed", "=ds=" };
+ { 5, "s60354", "44325", "=q1=Elixir of Accuracy", "=ds=" };
+ { 6, "s53840", "39666", "=q1=Elixir of Mighty Agility", "=ds=" .. AL["Trainer"] };
+ { 7, "s54218", "40073", "=q1=Elixir of Mighty Strength", "=ds=" .. AL["Trainer"] };
+ { 8, "s53848", "40076", "=q1=Guru's Elixir", "=ds=" .. AL["Trainer"] };
+ { 9, "s53842", "40070", "=q1=Spellpower Elixir", "=ds=" .. AL["Trainer"] };
+ { 10, "s53841", "40068", "=q1=WRATH Elixir", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Guardian Elixirs"];
+ { 1, "s60356", "44328", "=q1=Elixir of Mighty Defense", "=ds=" .. AL["Discovery"] };
+ { 2, "s56519", "40109", "=q1=Elixir of Mighty Mageblood", "=ds=" .. AL["Discovery"] };
+ { 3, "s54220", "40097", "=q1=Elixir of Protection", "=ds=" .. AL["Discovery"] };
+ { 4, "s62410", "8827", "=q1=Elixir of Water Walking", "=ds=" .. AL["Discovery"] };
+ { 5, "s53898", "40078", "=q1=Elixir of Mighty Fortitude", "=ds=" .. AL["Trainer"] };
+ { 6, "s60367", "44332", "=q1=Elixir of Mighty Thoughts", "=ds=" .. AL["Trainer"] };
+ { 7, "s53847", "40072", "=q1=Elixir of Spirit", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Potions"];
+ { 1, "s54221", "40211", "=q1=Potion of Speed", "=ds=" };
+ { 2, "s54222", "40212", "=q1=Potion of Wild Magic", "=ds=" };
+ { 3, "s53904", "40087", "=q1=Powerful Rejuvenation Potion", "=ds=" };
+ { 4, "s58868", "43570", "=q1=Endless Mana Potion", "=ds=" .. AL["Trainer"] };
+ { 5, "s53837", "33448", "=q1=Runic Mana Potion", "=ds=" .. AL["Trainer"] };
+ { 6, "s58871", "43569", "=q1=Endless Healing Potion", "=ds=" .. AL["Trainer"] };
+ { 7, "s53836", "33447", "=q1=Runic Healing Potion", "=ds=" .. AL["Trainer"] };
+ { 8, "s53936", "40213", "=q1=Mighty Arcane Protection Potion", "=ds=" };
+ { 9, "s53939", "40214", "=q1=Mighty Fire Protection Potion", "=ds=" .. AL["Drop"] };
+ { 10, "s53937", "40215", "=q1=Mighty Frost Protection Potion", "=ds=" .. AL["Drop"] };
+ { 11, "s53942", "40216", "=q1=Mighty Nature Protection Potion", "=ds=" .. AL["Drop"] };
+ { 12, "s53938", "40217", "=q1=Mighty Shadow Protection Potion", "=ds=" };
+ { 13, "s53905", "40093", "=q1=Indestructible Potion", "=ds=" .. AL["Trainer"] };
+ { 14, "s53900", "40081", "=q1=Potion of Nightmares", "=ds=" .. AL["Trainer"] };
+ { 15, "s53895", "40077", "=q1=Crazy Alchemist's Potion", "=ds=" .. AL["Trainer"] };
+ { 16, "s53839", "40067", "=q1=Icy Mana Potion", "=ds=" .. AL["Trainer"] };
+ { 17, "s53838", "39671", "=q1=Resurgent Healing Potion", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Flasks"];
+ { 1, "s67025", "47499", "=q3=Flask of the North", "=ds=" .. AL["Trainer"] };
+ { 2, "s53903", "46377", "=q1=Flask of Endless Rage", "=ds=" .. AL["Trainer"] };
+ { 3, "s54213", "46378", "=q1=Flask of Pure Mojo", "=ds=" .. AL["Trainer"] };
+ { 4, "s53902", "46379", "=q1=Flask of Stoneblood", "=ds=" .. AL["Trainer"] };
+ { 5, "s53901", "46376", "=q1=Flask of the Frost Wyrm", "=ds=" .. AL["Trainer"] };
+ { 6, "s62213", "44939", "=q1=Lesser Flask of Resistance", "=ds=" .. AL["Trainer"] };
+ { 7, "s53899", "40079", "=q1=Lesser Flask of Toughness", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Transmutes"];
+ { 1, "s53777", "35624", "=q2=Transmute: Eternal Air to Earth", "=ds=" };
+ { 2, "s53776", "35622", "=q2=Transmute: Eternal Air to Water", "=ds=" };
+ { 3, "s53781", "35623", "=q2=Transmute: Eternal Earth to Air", "=ds=" };
+ { 4, "s53782", "35627", "=q2=Transmute: Eternal Earth to Shadow", "=ds=" };
+ { 5, "s53775", "35625", "=q2=Transmute: Eternal Fire to Life", "=ds=" };
+ { 6, "s53774", "35622", "=q2=Transmute: Eternal Fire to Water", "=ds=" };
+ { 7, "s53773", "36860", "=q2=Transmute: Eternal Life to Fire", "=ds=" };
+ { 8, "s53771", "35627", "=q2=Transmute: Eternal Life to Shadow", "=ds=" };
+ { 9, "s53779", "35624", "=q2=Transmute: Eternal Shadow to Earth", "=ds=" };
+ { 10, "s53780", "35625", "=q2=Transmute: Eternal Shadow to Life", "=ds=" };
+ { 11, "s53783", "35623", "=q2=Transmute: Eternal Water to Air", "=ds=" };
+ { 12, "s53784", "36860", "=q2=Transmute: Eternal Water to Fire", "=ds=" };
+ { 13, "s60350", "41163", "=q2=Transmute: Titanium", "=ds=" .. AL["Trainer"] };
+ { 16, "s66659", "36919", "=q4=Transmute: Cardinal Ruby", "=ds=" .. AL["Quest Reward"] };
+ { 17, "s66658", "36931", "=q4=Transmute: Ametrine", "=ds=" .. AL["Trainer"] };
+ { 18, "s66662", "36928", "=q4=Transmute: Dreadstone", "=ds=" .. AL["Trainer"] };
+ { 19, "s66664", "36934", "=q4=Transmute: Eye of Zul", "=ds=" .. AL["Trainer"] };
+ { 20, "s66660", "36922", "=q4=Transmute: King's Amber", "=ds=" .. AL["Trainer"] };
+ { 21, "s66663", "36925", "=q4=Transmute: Majestic Zircon", "=ds=" .. AL["Trainer"] };
+ { 22, "s54020", "40248", "=q3=Transmute: Eternal Might", "=ds=" .. AL["Trainer"] };
+ { 23, "s57427", "41334", "=q3=Transmute: Earthsiege Diamond", "=ds=" .. AL["Trainer"] };
+ { 24, "s57425", "41266", "=q3=Transmute: Skyflare Diamond", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s47050", "35751", "=q4=Assassin's Alchemist Stone","=ds=" .. BabbleFaction["Exalted"] .. ": " .. BabbleFaction["Shattered Sun Offensive"] };
+ { 2, "s47046", "35748", "=q4=Guardian's Alchemist Stone","=ds=" .. BabbleFaction["Exalted"] .. ": " .. BabbleFaction["Shattered Sun Offensive"] };
+ { 3, "s47049", "35750", "=q4=Redeemer's Alchemist Stone","=ds=" .. BabbleFaction["Exalted"] .. ": " .. BabbleFaction["Shattered Sun Offensive"] };
+ { 4, "s47048", "35749", "=q4=Sorcerer's Alchemist Stone","=ds=" .. BabbleFaction["Exalted"] .. ": " .. BabbleFaction["Shattered Sun Offensive"] };
+ { 5, "s17632", "13503", "=q4=Alchemist's Stone", "=ds=" .. BabbleFaction["Revered"] ..": " .. BabbleFaction["The Sha'tar"] };
+ { 6, "s60403", "44323", "=q3=Indestructible Alchemist Stone", "=ds=" .. AL["Trainer"] };
+ { 7, "s60396", "44322", "=q3=Mercurial Alchemist Stone", "=ds=" .. AL["Trainer"] };
+ { 8, "s60405", "44324", "=q3=Mighty Alchemist Stone", "=ds=" .. AL["Trainer"] };
+ { 10, "s38070", "31080", "=q2=Mercurial Stone", "=ds=" .. AL["Trainer"] };
+ { 11, "s62409", "44958", "=q1=Ethereal Oil", "=ds=" .. AL["Trainer"] };
+ { 12, "s53812", "40195", "=q1=Pygmy Oil", "=ds=" .. AL["Trainer"] };
};
};
- AtlasLoot_Data["FirstAidWRATH"] = {
- Name = FIRSTAID;
- {
- Name = FIRSTAID;
- { 1, "s45546", "34722", "=q1=Heavy Frostweave Bandage", "=ds=#sr# 400"};
- { 2, "s45545", "34721", "=q1=Frostweave Bandage", "=ds=#sr# 375"};
- };
- };
- -----------------
- --- Tailoring ---
- -----------------
-
- AtlasLoot_Data["TailoringArmorCLASSIC"] = {
- { 1, "s22866", "18405", "=q4=Belt of the Archmage", "=ds=#sr# 300"};
- { 2, "s20849", "16979", "=q4=Flarecore Gloves", "=ds=#sr# 300"};
- { 3, "s23667", "19165", "=q4=Flarecore Leggings", "=ds=#sr# 300"};
- { 4, "s20848", "16980", "=q4=Flarecore Mantle", "=ds=#sr# 300"};
- { 5, "s23666", "19156", "=q4=Flarecore Robe", "=ds=#sr# 300"};
- { 6, "s22759", "18263", "=q4=Flarecore Wraps", "=ds=#sr# 300"};
- { 7, "s28208", "22658", "=q4=Glacial Cloak", "=ds=#sr# 300"};
- { 8, "s28205", "22654", "=q4=Glacial Gloves", "=ds=#sr# 300"};
- { 9, "s28207", "22652", "=q4=Glacial Vest", "=ds=#sr# 300"};
- { 10, "s28209", "22655", "=q4=Glacial Wrists", "=ds=#sr# 300"};
- { 11, "s18454", "14146", "=q4=Gloves of Spell Mastery", "=ds=#sr# 300"};
- { 12, "s18457", "14152", "=q4=Robe of the Archmage", "=ds=#sr# 300"};
- { 13, "s18458", "14153", "=q4=Robe of the Void", "=ds=#sr# 300"};
- { 14, "s18456", "14154", "=q4=Truefaith Vestments", "=ds=#sr# 300"};
- { 15, "s23665", "19059", "=q3=Argent Shoulders", "=ds=#sr# 300"};
- { 16, "s24093", "19684", "=q3=Bloodvine Boots", "=ds=#sr# 300"};
- { 17, "s24092", "19683", "=q3=Bloodvine Leggings", "=ds=#sr# 300"};
- { 18, "s24091", "19682", "=q3=Bloodvine Vest", "=ds=#sr# 300"};
- { 19, "s22870", "18413", "=q3=Cloak of Warding", "=ds=#sr# 300"};
- { 20, "s22867", "18407", "=q3=Felcloth Gloves", "=ds=#sr# 300"};
- { 21, "s28210", "22660", "=q3=Gaea's Embrace", "=ds=#sr# 300"};
- { 22, "s22868", "18408", "=q3=Inferno Gloves", "=ds=#sr# 300"};
- { 23, "s23663", "19050", "=q3=Mantle of the Timbermaw", "=ds=#sr# 300"};
- { 24, "s18452", "14140", "=q3=Mooncloth Circlet", "=ds=#sr# 300"};
- { 25, "s22869", "18409", "=q3=Mooncloth Gloves", "=ds=#sr# 300"};
- { 26, "s22902", "18486", "=q3=Mooncloth Robe", "=ds=#sr# 300"};
- { 27, "s18448", "14139", "=q3=Mooncloth Shoulders", "=ds=#sr# 300"};
- { 28, "s18447", "14138", "=q3=Mooncloth Vest", "=ds=#sr# 300"};
- { 29, "s24902", "20539", "=q3=Runed Stygian Belt", "=ds=#sr# 300"};
- { 30, "s24903", "20537", "=q3=Runed Stygian Boots", "=ds=#sr# 300"};
- Next = "TailoringArmorCLASSIC2";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringArmorCLASSIC2"] = {
- { 1, "s24901", "20538", "=q3=Runed Stygian Leggings", "=ds=#sr# 300"};
- { 2, "s28481", "22757", "=q3=Sylvan Crown", "=ds=#sr# 300"};
- { 3, "s28482", "22758", "=q3=Sylvan Shoulders", "=ds=#sr# 300"};
- { 4, "s28480", "22756", "=q3=Sylvan Vest", "=ds=#sr# 300"};
- { 5, "s19435", "15802", "=q3=Mooncloth Boots", "=ds=#sr# 290"};
- { 6, "s23664", "19056", "=q3=Argent Boots", "=ds=#sr# 290"};
- { 7, "s18440", "14137", "=q3=Mooncloth Leggings", "=ds=#sr# 290"};
- { 8, "s23662", "19047", "=q3=Wisdom of the Timbermaw", "=ds=#sr# 290"};
- { 9, "s18436", "14136", "=q3=Robe of Winter Night", "=ds=#sr# 285"};
- { 10, "s18422", "14134", "=q3=Cloak of Fire", "=ds=#sr# 275"};
- { 11, "s12092", "10041", "=q3=Dreamweave Circlet", "=ds=#sr# 250"};
- { 12, "s12067", "10019", "=q3=Dreamweave Gloves", "=ds=#sr# 225"};
- { 13, "s12070", "10021", "=q3=Dreamweave Vest", "=ds=#sr# 225"};
- { 14, "s3862", "4327", "=q3=Icy Cloak", "=ds=#sr# 200"};
- { 15, "s8770", "7054", "=q3=Robe of Power", "=ds=#sr# 190"};
- { 16, "s63742", "45626", "=q3=Spidersilk Drape", "=ds=#sr# 125"};
- { 17, "s3855", "4320", "=q3=Spidersilk Boots", "=ds=#sr# 125"};
- { 18, "s18451", "14106", "=q2=Felcloth Robe", "=ds=#sr# 300"};
- { 19, "s18453", "14112", "=q2=Felcloth Shoulders", "=ds=#sr# 300"};
- { 20, "s18449", "13867", "=q2=Runecloth Shoulders", "=ds=#sr# 300"};
- { 21, "s18446", "14128", "=q2=Wizardweave Robe", "=ds=#sr# 300"};
- { 22, "s18450", "14130", "=q2=Wizardweave Turban", "=ds=#sr# 300"};
- { 23, "s18439", "14104", "=q2=Brightcloth Pants", "=ds=#sr# 290"};
- { 24, "s18442", "14111", "=q2=Felcloth Hood", "=ds=#sr# 290"};
- { 25, "s18441", "14144", "=q2=Ghostweave Pants", "=ds=#sr# 290"};
- { 26, "s18444", "13866", "=q2=Runecloth Headband", "=ds=#sr# 295"};
- { 27, "s18437", "14108", "=q2=Felcloth Boots", "=ds=#sr# 285"};
- { 28, "s18438", "13865", "=q2=Runecloth Pants", "=ds=#sr# 285"};
- { 29, "s18434", "14045", "=q2=Cindercloth Pants", "=ds=#sr# 280"};
- { 30, "s18424", "13871", "=q2=Frostweave Pants", "=ds=#sr# 280"};
- Next = "TailoringArmorCLASSIC3";
- Prev = "TailoringArmorCLASSIC";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringArmorCLASSIC3"] = {
- { 1, "s18423", "13864", "=q2=Runecloth Boots", "=ds=#sr# 280"};
- { 2, "s18420", "14103", "=q2=Brightcloth Cloak", "=ds=#sr# 275"};
- { 3, "s18418", "14044", "=q2=Cindercloth Cloak", "=ds=#sr# 275"};
- { 4, "s18419", "14107", "=q2=Felcloth Pants", "=ds=#sr# 275"};
- { 5, "s18416", "14141", "=q2=Ghostweave Vest", "=ds=#sr# 275"};
- { 6, "s22813", "18258", "=q2=Gordok Ogre Suit", "=ds=#sr# 275"};
- { 7, "s18417", "13863", "=q2=Runecloth Gloves", "=ds=#sr# 275"};
- { 8, "s18421", "14132", "=q2=Wizardweave Leggings", "=ds=#sr# 275"};
- { 9, "s18415", "14101", "=q2=Brightcloth Gloves", "=ds=#sr# 270"};
- { 10, "s18414", "14100", "=q2=Brightcloth Robe", "=ds=#sr# 270"};
- { 11, "s18412", "14043", "=q2=Cindercloth Gloves", "=ds=#sr# 270"};
- { 12, "s18413", "14142", "=q2=Ghostweave Gloves", "=ds=#sr# 270"};
- { 13, "s18411", "13870", "=q2=Frostweave Gloves", "=ds=#sr# 265"};
- { 14, "s18410", "14143", "=q2=Ghostweave Belt", "=ds=#sr# 265"};
- { 15, "s18409", "13860", "=q2=Runecloth Cloak", "=ds=#sr# 265"};
- { 16, "s18408", "14042", "=q2=Cindercloth Vest", "=ds=#sr# 260"};
- { 17, "s18406", "13858", "=q2=Runecloth Robe", "=ds=#sr# 260"};
- { 18, "s18407", "13857", "=q2=Runecloth Tunic", "=ds=#sr# 260"};
- { 19, "s18404", "13868", "=q2=Frostweave Robe", "=ds=#sr# 255"};
- { 20, "s18403", "13869", "=q2=Frostweave Tunic", "=ds=#sr# 255"};
- { 21, "s18402", "13856", "=q2=Runecloth Belt", "=ds=#sr# 255"};
- { 22, "s12088", "10044", "=q2=Cindercloth Boots", "=ds=#sr# 245"};
- { 23, "s12086", "10025", "=q2=Shadoweave Mask", "=ds=#sr# 245"};
- { 24, "s12081", "10030", "=q2=Admiral's Hat", "=ds=#sr# 240"};
- { 25, "s12084", "10033", "=q2=Red Mageweave Headband", "=ds=#sr# 240"};
- { 26, "s12082", "10031", "=q2=Shadoweave Boots", "=ds=#sr# 240"};
- { 27, "s12078", "10029", "=q2=Red Mageweave Shoulders", "=ds=#sr# 235"};
- { 28, "s12076", "10028", "=q2=Shadoweave Shoulders", "=ds=#sr# 235"};
- { 29, "s12073", "10026", "=q2=Black Mageweave Boots", "=ds=#sr# 230"};
- { 30, "s12072", "10024", "=q2=Black Mageweave Headband", "=ds=#sr# 230"};
- Next = "TailoringArmorCLASSIC4";
- Prev = "TailoringArmorCLASSIC2";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringArmorCLASSIC4"] = {
- { 1, "s12074", "10027", "=q2=Black Mageweave Shoulders", "=ds=#sr# 230"};
- { 2, "s12069", "10042", "=q2=Cindercloth Robe", "=ds=#sr# 225"};
- { 3, "s12066", "10018", "=q2=Red Mageweave Gloves", "=ds=#sr# 225"};
- { 4, "s12071", "10023", "=q2=Shadoweave Gloves", "=ds=#sr# 225"};
- { 5, "s12059", "10008", "=q2=White Bandit Mask", "=ds=#sr# 215"};
- { 6, "s12053", "10003", "=q2=Black Mageweave Gloves", "=ds=#sr# 215"};
- { 7, "s12060", "10009", "=q2=Red Mageweave Pants", "=ds=#sr# 215"};
- { 8, "s12056", "10007", "=q2=Red Mageweave Vest", "=ds=#sr# 215"};
- { 9, "s12055", "10004", "=q2=Shadoweave Robe", "=ds=#sr# 215"};
- { 10, "s12050", "10001", "=q2=Black Mageweave Robe", "=ds=#sr# 210"};
- { 11, "s8804", "7064", "=q2=Crimson Silk Gloves", "=ds=#sr# 210"};
- { 12, "s12052", "10002", "=q2=Shadoweave Pants", "=ds=#sr# 210"};
- { 13, "s12049", "9999", "=q2=Black Mageweave Leggings", "=ds=#sr# 205"};
- { 14, "s12048", "9998", "=q2=Black Mageweave Vest", "=ds=#sr# 205"};
- { 15, "s8802", "7063", "=q2=Crimson Silk Robe", "=ds=#sr# 205"};
- { 16, "s3864", "4329", "=q2=Star Belt", "=ds=#sr# 200"};
- { 17, "s8797", "7061", "=q2=Earthen Silk Belt", "=ds=#sr# 195"};
- { 18, "s8795", "7060", "=q2=Azure Shoulders", "=ds=#sr# 190"};
- { 19, "s8793", "7059", "=q2=Crimson Silk Shoulders", "=ds=#sr# 190"};
- { 20, "s3861", "4326", "=q2=Long Silken Cloak", "=ds=#sr# 185"};
- { 21, "s3863", "4328", "=q2=Spider Belt", "=ds=#sr# 180"};
- { 22, "s8789", "7056", "=q2=Crimson Silk Cloak", "=ds=#sr# 180"};
- { 23, "s8774", "7057", "=q2=Green Silken Shoulders", "=ds=#sr# 180"};
- { 24, "s8766", "7052", "=q2=Azure Silk Belt", "=ds=#sr# 175"};
- { 25, "s8786", "7053", "=q2=Azure Silk Cloak", "=ds=#sr# 175"};
- { 26, "s3860", "4325", "=q2=Boots of the Enchanter", "=ds=#sr# 175"};
- { 27, "s8772", "7055", "=q2=Crimson Silk Belt", "=ds=#sr# 175"};
- { 28, "s8764", "7051", "=q2=Earthen Vest", "=ds=#sr# 170"};
- { 29, "s3858", "4323", "=q2=Shadow Hood", "=ds=#sr# 170"};
- { 30, "s3857", "4322", "=q2=Enchanter's Cowl", "=ds=#sr# 165"};
- Next = "TailoringArmorCLASSIC5";
- Prev = "TailoringArmorCLASSIC3";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringArmorCLASSIC5"] = {
- { 1, "s8784", "7065", "=q2=Green Silk Armor", "=ds=#sr# 165"};
- { 2, "s3859", "4324", "=q2=Azure Silk Vest", "=ds=#sr# 150"};
- { 3, "s6692", "5770", "=q2=Robes of Arcana", "=ds=#sr# 150"};
- { 4, "s8782", "7049", "=q2=Truefaith Gloves", "=ds=#sr# 150"};
- { 5, "s3854", "4319", "=q2=Azure Silk Gloves", "=ds=#sr# 145"};
- { 6, "s8780", "7047", "=q2=Hands of Darkness", "=ds=#sr# 145"};
- { 7, "s8758", "7046", "=q2=Azure Silk Pants", "=ds=#sr# 140"};
- { 8, "s3856", "4321", "=q2=Spider Silk Slippers", "=ds=#sr# 140"};
- { 9, "s6690", "5766", "=q2=Lesser Wizard's Robe", "=ds=#sr# 135"};
- { 10, "s3852", "4318", "=q2=Gloves of Meditation", "=ds=#sr# 130"};
- { 11, "s3868", "4331", "=q2=Phoenix Gloves", "=ds=#sr# 125"};
- { 12, "s3851", "4317", "=q2=Phoenix Pants", "=ds=#sr# 125"};
- { 13, "s12047", "10048", "=q2=Colorful Kilt", "=ds=#sr# 120"};
- { 14, "s7643", "6264", "=q2=Greater Adept's Robe", "=ds=#sr# 115"};
- { 15, "s3850", "4316", "=q2=Heavy Woolen Pants", "=ds=#sr# 110"};
- { 16, "s2403", "2585", "=q2=Gray Woolen Robe", "=ds=#sr# 105"};
- { 17, "s7639", "6263", "=q2=Blue Overalls", "=ds=#sr# 100"};
- { 18, "s3844", "4311", "=q2=Heavy Woolen Cloak", "=ds=#sr# 100"};
- { 19, "s3847", "4313", "=q2=Red Woolen Boots", "=ds=#sr# 95"};
- { 20, "s2401", "2583", "=q2=Woolen Boots", "=ds=#sr# 95"};
- { 21, "s6521", "5542", "=q2=Pearl-clasped Cloak", "=ds=#sr# 90"};
- { 22, "s3843", "4310", "=q2=Heavy Woolen Gloves", "=ds=#sr# 85"};
- { 23, "s3845", "4312", "=q2=Soft-soled Linen Boots", "=ds=#sr# 80"};
- { 24, "s2395", "2578", "=q2=Barbaric Linen Vest", "=ds=#sr# 70"};
- { 25, "s7633", "6242", "=q2=Blue Linen Robe", "=ds=#sr# 70"};
- { 26, "s3842", "4309", "=q2=Handstitched Linen Britches", "=ds=#sr# 70"};
- { 27, "s7630", "6240", "=q2=Blue Linen Vest", "=ds=#sr# 55"};
- { 28, "s7629", "6239", "=q2=Red Linen Vest", "=ds=#sr# 55"};
- { 29, "s2389", "2572", "=q2=Red Linen Robe", "=ds=#sr# 40"};
- { 30, "s7623", "6238", "=q2=Brown Linen Robe", "=ds=#sr# 30"};
- Next = "TailoringArmorCLASSIC6";
- Prev = "TailoringArmorCLASSIC4";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringArmorCLASSIC6"] = {
- { 1, "s7624", "6241", "=q2=White Linen Robe", "=ds=#sr# 30"};
- { 2, "s49677", "6836", "=q1=Dress Shoes", "=ds="..AL["Vendor"]..""};
- { 3, "s50644", "38277", "=q1=Haliscan Jacket", "=ds="..AL["Vendor"]..""};
- { 4, "s50647", "38278", "=q1=Haliscan Pantaloons", "=ds="..AL["Vendor"]..""};
- { 5, "s26403", "21154", "=q1=Festival Dress", "=ds=#sr# 250"};
- { 6, "s26407", "21542", "=q1=Festive Red Pant Suit", "=ds=#sr# 250"};
- { 7, "s12093", "10036", "=q1=Tuxedo Jacket", "=ds=#sr# 250"};
- { 8, "s44950", "34087", "=q1=Green Winter Clothes", "=ds=#sr# 250"};
- { 9, "s44958", "34085", "=q1=Red Winter Clothes", "=ds=#sr# 250"};
- { 10, "s12091", "10040", "=q1=White Wedding Dress", "=ds=#sr# 250"};
- { 11, "s12089", "10035", "=q1=Tuxedo Pants", "=ds=#sr# 245"};
- { 12, "s12077", "10053", "=q1=Simple Black Dress", "=ds=#sr# 235"};
- { 13, "s8799", "7062", "=q1=Crimson Silk Pantaloons", "=ds=#sr# 195"};
- { 14, "s8791", "7058", "=q1=Crimson Silk Vest", "=ds=#sr# 185"};
- { 15, "s8762", "7050", "=q1=Silk Headband", "=ds=#sr# 160"};
- { 16, "s8760", "7048", "=q1=Azure Silk Hood", "=ds=#sr# 145"};
- { 17, "s3849", "4315", "=q1=Reinforced Woolen Shoulders", "=ds=#sr# 120"};
- { 18, "s3848", "4314", "=q1=Double-stitched Woolen Shoulders", "=ds=#sr# 110"};
- { 19, "s8467", "6787", "=q1=White Woolen Dress", "=ds=#sr# 110"};
- { 20, "s2399", "2582", "=q1=Green Woolen Vest", "=ds=#sr# 85"};
- { 21, "s12046", "10047", "=q1=Simple Kilt", "=ds=#sr# 75"};
- { 22, "s2402", "2584", "=q1=Woolen Cape", "=ds=#sr# 75"};
- { 23, "s2386", "2569", "=q1=Linen Boots", "=ds=#sr# 65"};
- { 24, "s3841", "4308", "=q1=Green Linen Bracers", "=ds=#sr# 60"};
- { 25, "s2397", "2580", "=q1=Reinforced Linen Cape", "=ds=#sr# 60"};
- { 26, "s8465", "6786", "=q1=Simple Dress", "=ds=#sr# 40"};
- { 27, "s3840", "4307", "=q1=Heavy Linen Gloves", "=ds=#sr# 35"};
- { 28, "s3914", "4343", "=q1=Brown Linen Pants", "=ds=#sr# 30"};
- { 29, "s12045", "10046", "=q1=Simple Linen Boots", "=ds=#sr# 20"};
- { 30, "s8776", "7026", "=q1=Linen Belt", "=ds=#sr# 15"};
- Prev = "TailoringArmorCLASSIC5";
- Next = "TailoringArmorCLASSIC7";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringArmorCLASSIC7"] = {
- { 1, "s2385", "2568", "=q1=Brown Linen Vest", "=ds=#sr# 10"};
- { 2, "s2387", "2570", "=q1=Linen Cloak", "=ds=#sr# 1"};
- { 3, "s12044", "10045", "=q1=Simple Linen Pants", "=ds=#sr# 1"};
- Prev = "TailoringArmorCLASSIC6";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringArmorTBC"] = {
- { 1, "s31456", "24267", "=q4=Battlecast Hood", "=ds=#sr# 375"};
- { 2, "s31453", "24263", "=q4=Battlecast Pants", "=ds=#sr# 375"};
- { 3, "s36315", "30038", "=q4=Belt of Blasting", "=ds=#sr# 375"};
- { 4, "s36316", "30036", "=q4=Belt of the Long Road", "=ds=#sr# 375"};
- { 5, "s36317", "30037", "=q4=Boots of Blasting", "=ds=#sr# 375"};
- { 6, "s36318", "30035", "=q4=Boots of the Long Road", "=ds=#sr# 375"};
- { 7, "s41205", "32586", "=q4=Bracers of Nimble Thought", "=ds=#sr# 375"};
- { 8, "s26758", "21871", "=q4=Frozen Shadoweave Robe", "=ds=#sr# 375"};
- { 9, "s41206", "32587", "=q4=Mantle of Nimble Thought", "=ds=#sr# 375"};
- { 10, "s40060", "32420", "=q4=Night's End", "=ds=#sr# 375"};
- { 11, "s26762", "21875", "=q4=Primal Mooncloth Robe", "=ds=#sr# 375"};
- { 12, "s26781", "21865", "=q4=Soulcloth Vest", "=ds=#sr# 375"};
- { 13, "s40021", "32392", "=q4=Soulguard Bracers", "=ds=#sr# 375"};
- { 14, "s40024", "32390", "=q4=Soulguard Girdle", "=ds=#sr# 375"};
- { 15, "s40023", "32389", "=q4=Soulguard Leggings", "=ds=#sr# 375"};
- { 16, "s40020", "32391", "=q4=Soulguard Slippers", "=ds=#sr# 375"};
- { 17, "s26754", "21848", "=q4=Spellfire Robe", "=ds=#sr# 375"};
- { 18, "s31455", "24266", "=q4=Spellstrike Hood", "=ds=#sr# 375"};
- { 19, "s31452", "24262", "=q4=Spellstrike Pants", "=ds=#sr# 375"};
- { 20, "s41208", "32585", "=q4=Swiftheal Mantle", "=ds=#sr# 375"};
- { 21, "s41207", "32584", "=q4=Swiftheal Wraps", "=ds=#sr# 375"};
- { 22, "s31454", "24264", "=q4=Whitemend Hood", "=ds=#sr# 375"};
- { 23, "s31451", "24261", "=q4=Whitemend Pants", "=ds=#sr# 375"};
- { 24, "s31444", "24257", "=q4=Black Belt of Knowledge", "=ds=#sr# 365"};
- { 25, "s26757", "21870", "=q4=Frozen Shadoweave Boots", "=ds=#sr# 365"};
- { 26, "s31443", "24256", "=q4=Girdle of Ruination", "=ds=#sr# 365"};
- { 27, "s46129", "34367", "=q4=Hands of Eternal Light", "=ds=#sr# 365"};
- { 28, "s31450", "24260", "=q4=Manaweave Cloak", "=ds=#sr# 365"};
- { 29, "s26761", "21874", "=q4=Primal Mooncloth Shoulders", "=ds=#sr# 365"};
- { 30, "s31448", "24258", "=q4=Resolute Cape", "=ds=#sr# 365"};
- Next = "TailoringArmorTBC2";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringArmorTBC2"] = {
- { 1, "s46131", "34365", "=q4=Robe of Eternal Light", "=ds=#sr# 365"};
- { 2, "s26780", "21864", "=q4=Soulcloth Shoulders", "=ds=#sr# 365"};
- { 3, "s26753", "21847", "=q4=Spellfire Gloves", "=ds=#sr# 365"};
- { 4, "s46128", "34366", "=q4=Sunfire Handwraps", "=ds=#sr# 365"};
- { 5, "s46130", "34364", "=q4=Sunfire Robe", "=ds=#sr# 365"};
- { 6, "s31442", "24255", "=q4=Unyielding Girdle", "=ds=#sr# 365"};
- { 7, "s31449", "24259", "=q4=Vengeance Wrap", "=ds=#sr# 365"};
- { 8, "s26756", "21869", "=q4=Frozen Shadoweave Shoulders", "=ds=#sr# 355"};
- { 9, "s26760", "21873", "=q4=Primal Mooncloth Belt", "=ds=#sr# 355"};
- { 10, "s26779", "21863", "=q4=Soulcloth Gloves", "=ds=#sr# 355"};
- { 11, "s26752", "21846", "=q4=Spellfire Belt", "=ds=#sr# 355"};
- { 12, "s26784", "21868", "=q3=Arcanoweave Robe", "=ds=#sr# 370"};
- { 13, "s37884", "30839", "=q3=Flameheart Vest", "=ds=#sr# 370"};
- { 14, "s26783", "21867", "=q3=Arcanoweave Boots", "=ds=#sr# 360"};
- { 15, "s37883", "30838", "=q3=Flameheart Gloves", "=ds=#sr# 360"};
- { 16, "s26777", "21861", "=q3=Imbued Netherweave Robe", "=ds=#sr# 360"};
- { 17, "s26778", "21862", "=q3=Imbued Netherweave Tunic", "=ds=#sr# 360"};
- { 18, "s26782", "21866", "=q3=Arcanoweave Bracers", "=ds=#sr# 350"};
- { 19, "s31437", "24251", "=q3=Blackstrike Bracers", "=ds=#sr# 350"};
- { 20, "s31435", "24250", "=q3=Bracers of Havok", "=ds=#sr# 350"};
- { 21, "s37873", "30831", "=q3=Cloak of Arcane Evasion", "=ds=#sr# 350"};
- { 22, "s31440", "24253", "=q3=Cloak of Eternity", "=ds=#sr# 350"};
- { 23, "s31438", "24252", "=q3=Cloak of the Black Void", "=ds=#sr# 350"};
- { 24, "s37882", "30837", "=q3=Flameheart Bracers", "=ds=#sr# 350"};
- { 25, "s26776", "21860", "=q3=Imbued Netherweave Boots", "=ds=#sr# 350"};
- { 26, "s31434", "24249", "=q3=Unyielding Bracers", "=ds=#sr# 350"};
- { 27, "s31441", "24254", "=q3=White Remedy Cape", "=ds=#sr# 350"};
- { 28, "s26775", "21859", "=q3=Imbued Netherweave Pants", "=ds=#sr# 340"};
- { 29, "s26774", "21855", "=q2=Netherweave Tunic", "=ds=#sr# 345"};
- { 30, "s26773", "21854", "=q2=Netherweave Robe", "=ds=#sr# 340"};
- Prev = "TailoringArmorTBC";
- Next = "TailoringArmorTBC3";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringArmorTBC3"] = {
- { 1, "s26772", "21853", "=q2=Netherweave Boots", "=ds=#sr# 335"};
- { 2, "s26771", "21852", "=q2=Netherweave Pants", "=ds=#sr# 325"};
- { 3, "s26770", "21851", "=q2=Netherweave Gloves", "=ds=#sr# 320"};
- { 4, "s26765", "21850", "=q2=Netherweave Belt", "=ds=#sr# 310"};
- { 5, "s26764", "21849", "=q2=Netherweave Bracers", "=ds=#sr# 310"};
- Prev = "TailoringArmorTBC2";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringArmorWRATH"] = {
- { 1, "s70551", "49890", "=q4=Deathfrost Boots", "=ds="..AL["Vendor"]..""};
- { 2, "s70550", "49891", "=q4=Leggings of Woven Death", "=ds="..AL["Vendor"]..""};
- { 3, "s70552", "49892", "=q4=Lightweave Leggings", "=ds="..AL["Vendor"]..""};
- { 4, "s70553", "49893", "=q4=Sandals of Consecration", "=ds="..AL["Vendor"]..""};
- { 5, "s67066", "47603", "=q4=Merlin's Robe", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 6, "s67146", "47604", "=q4=Merlin's Robe", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 7, "s67064", "47605", "=q4=Royal Moonshroud Robe", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 8, "s67144", "47606", "=q4=Royal Moonshroud Robe", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 9, "s67145", "47586", "=q4=Bejeweled Wizard's Bracers", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 10, "s67079", "47585", "=q4=Bejeweled Wizard's Bracers", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 11, "s67065", "47587", "=q4=Royal Moonshroud Bracers", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 12, "s67147", "47588", "=q4=Royal Moonshroud Bracers", "=ds="..AL["Drop"]..", "..BabbleZone["Trial of the Crusader"]};
- { 13, "s63205", "45558", "=q4=Cord of the White Dawn", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 14, "s63203", "45557", "=q4=Sash of Ancient Power", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 15, "s63206", "45567", "=q4=Savior's Slippers", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 16, "s63204", "45566", "=q4=Spellslinger's Slippers", "=ds="..AL["Drop"]..", "..BabbleZone["Ulduar"]};
- { 17, "s56017", "41610", "=q4=Deathchill Cloak", "=ds="..AL["Achievement"] };
- { 18, "s56016", "41609", "=q4=Wispcloak", "=ds="..AL["Achievement"] };
- { 19, "s56026", "42101", "=q4=Ebonweave Robe", "=ds="..AL["Trainer"] };
- { 20, "s56024", "42100", "=q4=Moonshroud Robe", "=ds="..AL["Trainer"] };
- { 21, "s56028", "42102", "=q4=Spellweave Robe", "=ds="..AL["Trainer"] };
- { 22, "s56027", "42111", "=q4=Ebonweave Gloves", "=ds="..AL["Trainer"] };
- { 23, "s56025", "42103", "=q4=Moonshroud Gloves", "=ds="..AL["Trainer"] };
- { 24, "s56029", "42113", "=q4=Spellweave Gloves", "=ds="..AL["Trainer"] };
- { 25, "s60993", "43583", "=q4=Glacial Robe", "=ds="..AL["Trainer"] };
- { 26, "s60994", "43585", "=q4=Glacial Slippers", "=ds="..AL["Trainer"] };
- { 27, "s60990", "43584", "=q4=Glacial Waistband", "=ds="..AL["Trainer"] };
- { 28, "s56021", "42093", "=q3=Frostmoon Pants", "=ds="..AL["Trainer"] };
- { 29, "s56018", "41984", "=q3=Hat of Wintry Doom", "=ds="..AL["Trainer"] };
- { 30, "s56023", "42096", "=q3=Aurora Slippers", "=ds="..AL["Trainer"] };
- Next = "TailoringArmorWRATH2";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringArmorWRATH2"] = {
- { 1, "s56020", "41986", "=q3=Deep Frozen Cord", "=ds="..AL["Trainer"] };
- { 2, "s59585", "43970", "=q3=Frostsavage Boots", "=ds="..AL["Trainer"] };
- { 3, "s59589", "43971", "=q3=Frostsavage Cowl", "=ds="..AL["Trainer"] };
- { 4, "s59586", "41516", "=q3=Frostsavage Gloves", "=ds="..AL["Trainer"] };
- { 5, "s59588", "43975", "=q3=Frostsavage Leggings", "=ds="..AL["Trainer"] };
- { 6, "s59587", "43972", "=q3=Frostsavage Robe", "=ds="..AL["Trainer"] };
- { 7, "s59584", "43973", "=q3=Frostsavage Shoulders", "=ds="..AL["Trainer"] };
- { 8, "s56022", "42095", "=q3=Light Blessed Mittens", "=ds="..AL["Trainer"] };
- { 9, "s56019", "41985", "=q3=Silky Iceshard Boots", "=ds="..AL["Trainer"] };
- { 10, "s55941", "41554", "=q3=Black Duskweave Robe", "=ds="..AL["Trainer"] };
- { 11, "s55925", "41553", "=q3=Black Duskweave Leggings", "=ds="..AL["Trainer"] };
- { 12, "s55943", "41555", "=q3=Black Duskweave Wristwraps", "=ds="..AL["Trainer"] };
- { 13, "s64730", "45810", "=q3=Cloak of Crimson Snow", "=ds="};
- { 14, "s64729", "45811", "=q3=Frostguard Drape", "=ds="};
- { 15, "s59582", "43969", "=q3=Frostsavage Belt", "=ds="..AL["Trainer"] };
- { 16, "s59583", "43974", "=q3=Frostsavage Bracers", "=ds="..AL["Trainer"] };
- { 17, "s56015", "41608", "=q3=Cloak of Frozen Spirits", "=ds="..AL["Trainer"] };
- { 18, "s56014", "41607", "=q3=Cloak of the Moon", "=ds="..AL["Trainer"] };
- { 19, "s55911", "41525", "=q3=Mystic Frostwoven Robe", "=ds="..AL["Trainer"] };
- { 20, "s55910", "41523", "=q3=Mystic Frostwoven Shoulders", "=ds="..AL["Trainer"] };
- { 21, "s55913", "41528", "=q3=Mystic Frostwoven Wriststraps", "=ds="..AL["Trainer"] };
- { 22, "s55923", "41550", "=q2=Duskweave Shoulders", "=ds="..AL["Trainer"] };
- { 23, "s55924", "41544", "=q2=Duskweave Boots", "=ds="..AL["Trainer"] };
- { 24, "s55921", "41549", "=q2=Duskweave Robe", "=ds="..AL["Trainer"] };
- { 25, "s55922", "41545", "=q2=Duskweave Gloves", "=ds="..AL["Trainer"] };
- { 26, "s55920", "41551", "=q2=Duskweave Wriststraps", "=ds="..AL["Trainer"] };
- { 27, "s55914", "41543", "=q2=Duskweave Belt", "=ds="..AL["Trainer"] };
- { 28, "s55919", "41546", "=q2=Duskweave Cowl", "=ds="..AL["Trainer"] };
- { 29, "s55901", "41548", "=q2=Duskweave Leggings", "=ds="..AL["Trainer"] };
- { 30, "s55907", "41521", "=q2=Frostwoven Cowl", "=ds="..AL["Trainer"] };
- Prev = "TailoringArmorWRATH";
- Next = "TailoringArmorWRATH3";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringArmorWRATH3"] = {
- { 1, "s56030", "41519", "=q2=Frostwoven Leggings", "=ds="..AL["Trainer"] };
- { 2, "s55906", "41520", "=q2=Frostwoven Boots", "=ds="..AL["Trainer"] };
- { 3, "s55908", "41522", "=q2=Frostwoven Belt", "=ds="..AL["Trainer"] };
- { 4, "s55904", "44211", "=q2=Frostwoven Gloves", "=ds="..AL["Trainer"] };
- { 5, "s55903", "41515", "=q2=Frostwoven Robe", "=ds="..AL["Trainer"] };
- { 6, "s55902", "41513", "=q2=Frostwoven Shoulders", "=ds="..AL["Trainer"] };
- { 7, "s56031", "41512", "=q2=Frostwoven Wriststraps", "=ds="..AL["Trainer"] };
- Prev = "TailoringArmorWRATH2";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["TailoringBags1"] = {
- { 1, "s26087", "21342", "=q4=Core Felcloth Bag", "=ds=#sr# 300"};
- { 2, "s56005", "41600", "=q3=Glacial Bag", "=ds="..BabbleFaction["The Sons of Hodir"]..": "..BabbleFaction["Exalted"] };
- { 3, "s56006", "41598", "=q3=Mysterious Bag", "=ds="..BabbleFaction["The Wyrmrest Accord"]..": "..BabbleFaction["Revered"] };
- { 4, "s56004", "41597", "=q3=Abyssal Bag", "=ds="..BabbleFaction["Knights of the Ebon Blade"]..": "..BabbleFaction["Revered"] };
- { 5, "s63924", "45773", "=q3=Emerald Bag", "=ds="};
- { 6, "s26759", "21872", "=q3=Ebon Shadowbag", "=ds=#sr# 375"};
- { 7, "s50194", "38225", "=q3=Mycah's Botanical Bag", "=ds=#sr# 375"};
- { 8, "s26763", "21876", "=q3=Primal Mooncloth Bag", "=ds=#sr# 375"};
- { 9, "s26755", "21858", "=q3=Spellfire Bag", "=ds=#sr# 375"};
- { 10, "s18455", "14156", "=q3=Bottomless Bag", "=ds=#sr# 300"};
- { 11, "s26086", "21341", "=q3=Felcloth Bag", "=ds=#sr# 280"};
- { 12, "s56007", "41599", "=q2=Frostweave Bag", "=ds="..AL["Trainer"] };
- { 13, "s31459", "24270", "=q2=Bag of Jewels", "=ds=#sr# 340"};
- { 14, "s26749", "21843", "=q2=Imbued Netherweave Bag", "=ds=#sr# 340"};
- { 15, "s26746", "21841", "=q2=Netherweave Bag", "=ds=#sr# 315"};
- { 16, "s27660", "22249", "=q2=Big Bag of Enchantment", "=ds=#sr# 300"};
- { 17, "s18445", "14155", "=q2=Mooncloth Bag", "=ds=#sr# 300"};
- { 18, "s27725", "22252", "=q2=Satchel of Cenarius", "=ds=#sr# 300"};
- { 19, "s27659", "22248", "=q2=Enchanted Runecloth Bag", "=ds=#sr# 275"};
- { 20, "s27724", "22251", "=q2=Cenarion Herb Bag", "=ds=#sr# 275"};
- { 21, "s26085", "21340", "=q2=Soul Pouch", "=ds=#sr# 260"};
- { 22, "s27658", "22246", "=q2=Enchanted Mageweave Pouch", "=ds=#sr# 225"};
- { 23, "s18405", "14046", "=q1=Runecloth Bag", "=ds=#sr# 260"};
- { 24, "s12079", "10051", "=q1=Red Mageweave Bag", "=ds=#sr# 235"};
- { 25, "s12065", "10050", "=q1=Mageweave Bag", "=ds=#sr# 225"};
- { 26, "s6695", "5765", "=q1=Black Silk Pack", "=ds=#sr# 185"};
- { 27, "s6693", "5764", "=q1=Green Silk Pack", "=ds=#sr# 175"};
- { 28, "s3813", "4245", "=q1=Small Silk Pack", "=ds=#sr# 150"};
- { 29, "s6688", "5763", "=q1=Red Woolen Bag", "=ds=#sr# 115"};
- { 30, "s3758", "4241", "=q1=Green Woolen Bag", "=ds=#sr# 95"};
- Next = "TailoringBags2";
- Back = "TAILORINGMENU";
- };
-
- AtlasLoot_Data["TailoringBags2"] = {
- { 1, "s3757", "4240", "=q1=Woolen Bag", "=ds=#sr# 80"};
- { 2, "s6686", "5762", "=q1=Red Linen Bag", "=ds=#sr# 70"};
- { 3, "s3755", "4238", "=q1=Linen Bag", "=ds=#sr# 45"};
- Prev = "TailoringBags1";
- Back = "TAILORINGMENU";
- };
-
- AtlasLoot_Data["TailoringMisc1"] = {
- { 1, "s55769", "INV_Misc_Thread_01", "=ds=Darkglow Embroidery", "=ds="..AL["Trainer"] };
- { 2, "s55642", "INV_Misc_Thread_01", "=ds=Lightweave Embroidery", "=ds="..AL["Trainer"] };
- { 3, "s55777", "INV_Misc_Thread_01", "=ds=Swordguard Embroidery", "=ds="..AL["Trainer"] };
- { 4, "s56034", "Spell_Nature_AstralRecalGroup", "=ds=Master's Spellthread", "=ds="..AL["Trainer"] };
- { 5, "s56039", "Spell_Nature_AstralRecalGroup", "=ds=Sanctified Spellthread", "=ds="..AL["Trainer"] };
- { 6, "s56009", "41602", "=q4=Brilliant Spellthread", "=ds="..BabbleFaction["Argent Crusade"]..": "..BabbleFaction["Exalted"] };
- { 7, "s56011", "41604", "=q4=Sapphire Spellthread", "=ds="..BabbleFaction["Kirin Tor"]..": "..BabbleFaction["Exalted"] };
- { 8, "s75597", "54797", "=q4=Frosty Flying Carpet", "=ds=" };
- { 9, "s60971", "44558", "=q4=Magnificent Flying Carpet", "=ds="..AL["Trainer"] };
- { 10, "s31433", "24276", "=q4=Golden Spellthread", "=ds=#sr# 375"};
- { 11, "s31432", "24274", "=q4=Runic Spellthread", "=ds=#sr# 375"};
- { 12, "s56002", "41593", "=q3=Ebonweave", "=ds="..AL["Trainer"] };
- { 13, "s56001", "41594", "=q3=Moonshroud", "=ds="..AL["Trainer"] };
- { 14, "s56003", "41595", "=q3=Spellweave", "=ds="..AL["Trainer"] };
- { 15, "s60969", "44554", "=q3=Flying Carpet", "=ds="..AL["Trainer"] };
- { 16, "s56010", "41603", "=q3=Azure Spellthread", "=ds="..AL["Trainer"] };
- { 17, "s56008", "41601", "=q3=Shining Spellthread", "=ds="..AL["Trainer"] };
- { 18, "s26751", "21845", "=q3=Primal Mooncloth", "=ds=#sr# 350"};
- { 19, "s36686", "24272", "=q3=Shadowcloth", "=ds=#sr# 350"};
- { 20, "s31373", "24271", "=q3=Spellcloth", "=ds=#sr# 350"};
- { 21, "s31430", "24273", "=q3=Mystic Spellthread", "=ds=#sr# 335"};
- { 22, "s31431", "24275", "=q3=Silver Spellthread", "=ds=#sr# 335"};
- { 23, "s55900", "41511", "=q2=Bolt of Imbued Frostweave", "=ds="..AL["Trainer"] };
- { 24, "s26747", "21842", "=q2=Bolt of Imbued Netherweave", "=ds=#sr# 325"};
- { 25, "s55898", "41509", "=q1=Frostweave Net", "=ds="..AL["Trainer"] };
- { 26, "s55899", "41510", "=q1=Bolt of Frostweave", "=ds="..AL["Trainer"] };
- { 27, "s26750", "21844", "=q1=Bolt of Soulcloth", "=ds=#sr# 345"};
- { 28, "s26745", "21840", "=q1=Bolt of Netherweave", "=ds=#sr# 300"};
- { 29, "s31460", "24268", "=q1=Netherweave Net", "=ds=#sr# 300"};
- { 30, "s18401", "14048", "=q1=Bolt of Runecloth", "=ds=#sr# 250"};
- Next = "TailoringMisc2";
- Back = "TAILORINGMENU";
- };
-
- AtlasLoot_Data["TailoringMisc2"] = {
- { 1, "s18560", "14342", "=q1=Mooncloth", "=ds=#sr# 250"};
- { 2, "s3865", "4339", "=q1=Bolt of Mageweave", "=ds=#sr# 175"};
- { 3, "s3839", "4305", "=q1=Bolt of Silk Cloth", "=ds=#sr# 125"};
- { 4, "s2964", "2997", "=q1=Bolt of Woolen Cloth", "=ds=#sr# 75"};
- { 5, "s2963", "2996", "=q1=Bolt of Linen Cloth", "=ds=#sr# 1"};
- Prev = "TailoringMisc1";
- Back = "TAILORINGMENU";
- };
-
- AtlasLoot_Data["TailoringShirts1"] = {
- { 1, "s55994", "41249", "=q1=Blue Lumberjack Shirt", "=ds="..AL["Drop"] };
- { 2, "s55998", "41253", "=q1=Blue Workman's Shirt", "=ds="..AL["Drop"] };
- { 3, "s55996", "41250", "=q1=Green Lumberjack Shirt", "=ds="..AL["Drop"] };
- { 4, "s56000", "41255", "=q1=Green Workman's Shirt", "=ds="..AL["Trainer"] };
- { 5, "s55993", "41248", "=q1=Red Lumberjack Shirt", "=ds="..AL["Drop"] };
- { 6, "s55997", "41252", "=q1=Red Workman's Shirt", "=ds="..AL["Drop"] };
- { 7, "s55999", "41254", "=q1=Rustic Workman's Shirt", "=ds="..AL["Drop"] };
- { 8, "s55995", "41251", "=q1=Yellow Lumberjack Shirt", "=ds="..AL["Trainer"] };
- { 9, "s12085", "10034", "=q1=Tuxedo Shirt", "=ds=#sr# 240"};
- { 10, "s12080", "10055", "=q1=Pink Mageweave Shirt", "=ds=#sr# 235"};
- { 11, "s12075", "10054", "=q1=Lavender Mageweave Shirt", "=ds=#sr# 230"};
- { 12, "s12064", "10052", "=q1=Orange Martial Shirt", "=ds=#sr# 220"};
- { 13, "s12061", "10056", "=q1=Orange Mageweave Shirt", "=ds=#sr# 215"};
- { 14, "s3873", "4336", "=q1=Black Swashbuckler's Shirt", "=ds=#sr# 200"};
- { 15, "s21945", "17723", "=q1=Green Holiday Shirt", "=ds=#sr# 190"};
- { 16, "s3872", "4335", "=q1=Rich Purple Silk Shirt", "=ds=#sr# 185"};
- { 17, "s8489", "6796", "=q1=Red Swashbuckler's Shirt", "=ds=#sr# 175"};
- { 18, "s3871", "4334", "=q1=Formal White Shirt", "=ds=#sr# 170"};
- { 19, "s8483", "6795", "=q1=White Swashbuckler's Shirt", "=ds=#sr# 160"};
- { 20, "s3870", "4333", "=q1=Dark Silk Shirt", "=ds=#sr# 155"};
- { 21, "s3869", "4332", "=q1=Bright Yellow Shirt", "=ds=#sr# 135"};
- { 22, "s7892", "6384", "=q1=Stylish Blue Shirt", "=ds=#sr# 120"};
- { 23, "s7893", "6385", "=q1=Stylish Green Shirt", "=ds=#sr# 120"};
- { 24, "s3866", "4330", "=q1=Stylish Red Shirt", "=ds=#sr# 110"};
- { 25, "s2406", "2587", "=q1=Gray Woolen Shirt", "=ds=#sr# 100"};
- { 26, "s2396", "2579", "=q1=Green Linen Shirt", "=ds=#sr# 70"};
- { 27, "s2394", "2577", "=q1=Blue Linen Shirt", "=ds=#sr# 40"};
- { 28, "s2392", "2575", "=q1=Red Linen Shirt", "=ds=#sr# 40"};
- { 29, "s2393", "2576", "=q1=White Linen Shirt", "=ds=#sr# 1"};
- { 30, "s3915", "4344", "=q1=Brown Linen Shirt", "=ds=#sr# 1"};
- Back = "TAILORINGMENU";
- };
-
- AtlasLoot_Data["Mooncloth1"] = {
- { 1, "s26760", "21873", "=q4=Primal Mooncloth Belt", "=ds=#sr# 355"};
- { 2, "s26761", "21874", "=q4=Primal Mooncloth Shoulders", "=ds=#sr# 365"};
- { 3, "s26762", "21875", "=q4=Primal Mooncloth Robe", "=ds=#sr# 375"};
- Next = "Shadoweave1";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["Shadoweave1"] = {
- { 1, "s26756", "21869", "=q4=Frozen Shadoweave Shoulders", "=ds=#sr# 355"};
- { 2, "s26757", "21870", "=q4=Frozen Shadoweave Boots", "=ds=#sr# 365"};
- { 3, "s26758", "21871", "=q4=Frozen Shadoweave Robe", "=ds=#sr# 375"};
- Next = "Spellfire1";
- Prev = "Mooncloth1";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["Spellfire1"] = {
- { 1, "s26752", "21846", "=q4=Spellfire Belt", "=ds=#sr# 355"};
- { 2, "s26753", "21847", "=q4=Spellfire Gloves", "=ds=#sr# 365"};
- { 3, "s26754", "21848", "=q4=Spellfire Robe", "=ds=#sr# 375"};
- Prev = "Shadoweave1";
- Back = "TAILORINGMENU";
- Type = "Crafting";
- };
-
- -----------------------
- --- Profession Sets ---
- -----------------------
-
- -------------------------------
- --- Blacksmithing Mail Sets ---
- -------------------------------
-
- AtlasLoot_Data["BlacksmithingMailBloodsoulEmbrace"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbm1#", ""};
- { 2, 19691, "", "=q3=Bloodsoul Shoulders", "=ds=#s3#, #a3#"};
- { 3, 19690, "", "=q3=Bloodsoul Breastplate", "=ds=#s5#, #a3#"};
- { 4, 19692, "", "=q3=Bloodsoul Gauntlets", "=ds=#s9#, #a3#"};
- Next = "BlacksmithingMailFelIronChain";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingMailFelIronChain"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbm2#", ""};
- { 2, 23493, "", "=q2=Fel Iron Chain Coif", "=ds=#s1#, #a3#"};
- { 3, 23490, "", "=q2=Fel Iron Chain Tunic", "=ds=#s5#, #a3#"};
- { 4, 23494, "", "=q2=Fel Iron Chain Bracers", "=ds=#s8#, #a3#"};
- { 5, 23491, "", "=q2=Fel Iron Chain Gloves", "=ds=#s9#, #a3#"};
- Prev = "BlacksmithingMailBloodsoulEmbrace";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- --------------------------------
- --- Blacksmithing Plate Sets ---
- --------------------------------
-
- AtlasLoot_Data["BlacksmithingPlateImperialPlate"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp1#", ""};
- { 2, 12427, "", "=q2=Imperial Plate Helm", "=ds=#s1#, #a4#"};
- { 3, 12428, "", "=q2=Imperial Plate Shoulders", "=ds=#s3#, #a4#"};
- { 4, 12422, "", "=q2=Imperial Plate Chest", "=ds=#s5#, #a4#"};
- { 5, 12425, "", "=q2=Imperial Plate Bracers", "=ds=#s8#, #a4#"};
- { 6, 12424, "", "=q2=Imperial Plate Belt", "=ds=#s10#, #a4#"};
- { 7, 12429, "", "=q2=Imperial Plate Leggings", "=ds=#s11#, #a4#"};
- { 8, 12426, "", "=q2=Imperial Plate Boots", "=ds=#s12#, #a4#"};
- Next = "BlacksmithingPlateTheDarksoul";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateTheDarksoul"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp2#", ""};
- { 2, 19695, "", "=q3=Darksoul Shoulders", "=ds=#s3#, #a4#"};
- { 3, 19693, "", "=q3=Darksoul Breastplate", "=ds=#s5#, #a4#"};
- { 4, 19694, "", "=q3=Darksoul Leggings", "=ds=#s11#, #a4#"};
- Prev = "BlacksmithingPlateImperialPlate";
- Next = "BlacksmithingPlateFelIronPlate";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateFelIronPlate"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp3#", ""};
- { 2, 23489, "", "=q2=Fel Iron Breastplate", "=ds=#s5#, #a4#"};
- { 3, 23482, "", "=q2=Fel Iron Plate Gloves", "=ds=#s9#, #a4#"};
- { 4, 23484, "", "=q2=Fel Iron Plate Belt", "=ds=#s10#, #a4#"};
- { 5, 23488, "", "=q2=Fel Iron Plate Pants", "=ds=#s11#, #a4#"};
- { 6, 23487, "", "=q2=Fel Iron Plate Boots", "=ds=#s12#, #a4#"};
- Prev = "BlacksmithingPlateTheDarksoul";
- Next = "BlacksmithingPlateAdamantiteB";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateAdamantiteB"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp4#", ""};
- { 2, 23507, "", "=q3=Adamantite Breastplate", "=ds=#s5#, #a4#"};
- { 3, 23506, "", "=q3=Adamantite Plate Bracers", "=ds=#s8#, #a4#"};
- { 4, 23508, "", "=q3=Adamantite Plate Gloves", "=ds=#s9#, #a4#"};
- Prev = "BlacksmithingPlateFelIronPlate";
- Next = "BlacksmithingPlateFlameG";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateFlameG"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp5#", "=q1=#j11#"};
- { 2, 23516, "", "=q3=Flamebane Helm", "=ds=#s1#, #a4#"};
- { 3, 23513, "", "=q3=Flamebane Breastplate", "=ds=#s5#, #a4#"};
- { 4, 23515, "", "=q3=Flamebane Bracers", "=ds=#s8#, #a4#"};
- { 5, 23514, "", "=q3=Flamebane Gloves", "=ds=#s9#, #a4#"};
- Prev = "BlacksmithingPlateAdamantiteB";
- Next = "BlacksmithingPlateEnchantedAdaman";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateEnchantedAdaman"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp6#", "=q1=#j12#"};
- { 2, 23509, "", "=q3=Enchanted Adamantite Breastplate", "=ds=#s5#, #a4#"};
- { 3, 23510, "", "=q3=Enchanted Adamantite Belt", "=ds=#s10#, #a4#"};
- { 4, 23512, "", "=q3=Enchanted Adamantite Leggings", "=ds=#s11#, #a4#"};
- { 5, 23511, "", "=q3=Enchanted Adamantite Boots", "=ds=#s12#, #a4#"};
- Prev = "BlacksmithingPlateFlameG";
- Next = "BlacksmithingPlateKhoriumWard";
- Back = "CRAFTSET1";
- };
-
- AtlasLoot_Data["BlacksmithingPlateKhoriumWard"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp7#", ""};
- { 2, 23524, "", "=q3=Khorium Belt", "=ds=#s10#, #a4#"};
- { 3, 23523, "", "=q3=Khorium Pants", "=ds=#s11#, #a4#"};
- { 4, 23525, "", "=q3=Khorium Boots", "=ds=#s12#, #a4#"};
- Prev = "BlacksmithingPlateEnchantedAdaman";
- Next = "BlacksmithingPlateFaithFelsteel";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateFaithFelsteel"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp8#", ""};
- { 2, 23519, "", "=q3=Felsteel Helm", "=ds=#s1#, #a4#"};
- { 3, 23517, "", "=q3=Felsteel Gloves", "=ds=#s9#, #a4#"};
- { 4, 23518, "", "=q3=Felsteel Leggings", "=ds=#s11#, #a4#"};
- Prev = "BlacksmithingPlateKhoriumWard";
- Next = "BlacksmithingPlateBurningRage";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateBurningRage"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp9#", ""};
- { 2, 23521, "", "=q3=Ragesteel Helm", "=ds=#s1#, #a4#"};
- { 3, 33173, "", "=q3=Ragesteel Shoulders", "=ds=#s3#, #a4#"};
- { 4, 23522, "", "=q3=Ragesteel Breastplate", "=ds=#s5#, #a4#"};
- { 5, 23520, "", "=q3=Ragesteel Gloves", "=ds=#s9#, #a4#"};
- Prev = "BlacksmithingPlateFaithFelsteel";
- Next = "BlacksmithingPlateOrnateSaroniteBattlegear";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateOrnateSaroniteBattlegear"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp10#", ""};
- { 2, 42728, "", "=q3=Ornate Saronite Skullshield", "=ds=#s1#, #a4#"};
- { 3, 42727, "", "=q3=Ornate Saronite Pauldrons", "=ds=#s3#, #a4#"};
- { 4, 42725, "", "=q3=Ornate Saronite Hauberk", "=ds=#s5#, #a4#"};
- { 5, 42723, "", "=q3=Ornate Saronite Bracers", "=ds=#s8#, #a4#"};
- { 6, 42724, "", "=q3=Ornate Saronite Gauntlets", "=ds=#s9#, #a4#"};
- { 7, 42729, "", "=q3=Ornate Saronite Waistguard", "=ds=#s10#, #a4#"};
- { 8, 42726, "", "=q3=Ornate Saronite Legplates", "=ds=#s11#, #a4#"};
- { 9, 42730, "", "=q3=Ornate Saronite Walkers", "=ds=#s12#, #a4#"};
- Prev = "BlacksmithingPlateBurningRage";
- Next = "BlacksmithingPlateSavageSaroniteBattlegear";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["BlacksmithingPlateSavageSaroniteBattlegear"] = {
- { 1, 0, "INV_Hammer_20", "=q6=#craftbp11#", ""};
- { 2, 41350, "", "=q3=Savage Saronite Skullshield", "=ds=#s1#, #a4#"};
- { 3, 41351, "", "=q3=Savage Saronite Pauldrons", "=ds=#s3#, #a4#"};
- { 4, 41353, "", "=q3=Savage Saronite Hauberk", "=ds=#s5#, #a4#"};
- { 5, 41354, "", "=q3=Savage Saronite Bracers", "=ds=#s8#, #a4#"};
- { 6, 41349, "", "=q3=Savage Saronite Gauntlets", "=ds=#s9#, #a4#"};
- { 7, 41352, "", "=q3=Savage Saronite Waistguard", "=ds=#s10#, #a4#"};
- { 8, 41347, "", "=q3=Savage Saronite Legplates", "=ds=#s11#, #a4#"};
- { 9, 41348, "", "=q3=Savage Saronite Walkers", "=ds=#s12#, #a4#"};
- Prev = "BlacksmithingPlateOrnateSaroniteBattlegear";
- Back = "CRAFTSET1";
- Type = "Crafting";
- };
-
- -----------------------------------
- --- Leatherworking Leather Sets ---
- -----------------------------------
-
- AtlasLoot_Data["LeatherworkingLeatherVolcanicArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl1#", "=q1=#j11#"};
- { 2, 15055, "", "=q2=Volcanic Shoulders", "=ds=#s3#, #a2#"};
- { 3, 15053, "", "=q2=Volcanic Breastplate", "=ds=#s5#, #a2#"};
- { 4, 15054, "", "=q2=Volcanic Leggings", "=ds=#s11#, #a2#"};
- Next = "LeatherworkingLeatherIronfeatherArmor";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherIronfeatherArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl2#", ""};
- { 2, 15067, "", "=q3=Ironfeather Shoulders", "=ds=#s3#, #a2#"};
- { 3, 15066, "", "=q3=Ironfeather Breastplate", "=ds=#s5#, #a2#"};
- Prev = "LeatherworkingLeatherVolcanicArmor";
- Next = "LeatherworkingLeatherStormshroudArmor";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherStormshroudArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl3#", ""};
- { 2, 15058, "", "=q3=Stormshroud Shoulders", "=ds=#s3#, #a2#"};
- { 3, 15056, "", "=q3=Stormshroud Armor", "=ds=#s5#, #a2#"};
- { 4, 21278, "", "=q3=Stormshroud Gloves", "=ds=#s9#, #a2#"};
- { 5, 15057, "", "=q3=Stormshroud Pants", "=ds=#s11#, #a2#"};
- Prev = "LeatherworkingLeatherIronfeatherArmor";
- Next = "LeatherworkingLeatherDevilsaurArmor";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherDevilsaurArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl4#", ""};
- { 2, 15063, "", "=q3=Devilsaur Gauntlets", "=ds=#s9#, #a2#"};
- { 3, 15062, "", "=q3=Devilsaur Leggings", "=ds=#s11#, #a2#"};
- Prev = "LeatherworkingLeatherStormshroudArmor";
- Next = "LeatherworkingLeatherBloodTigerH";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherBloodTigerH"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl5#", ""};
- { 2, 19689, "", "=q3=Blood Tiger Shoulders", "=ds=#s3#, #a2#"};
- { 3, 19688, "", "=q3=Blood Tiger Breastplate", "=ds=#s5#, #a2#"};
- Prev = "LeatherworkingLeatherDevilsaurArmor";
- Next = "LeatherworkingLeatherPrimalBatskin";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherPrimalBatskin"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl6#", ""};
- { 2, 19685, "", "=q3=Primal Batskin Jerkin", "=ds=#s5#, #a2#"};
- { 3, 19687, "", "=q3=Primal Batskin Bracers", "=ds=#s8#, #a2#"};
- { 4, 19686, "", "=q3=Primal Batskin Gloves", "=ds=#s9#, #a2#"};
- Prev = "LeatherworkingLeatherBloodTigerH";
- Next = "LeatherworkingLeatherWildDraenishA";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherWildDraenishA"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl7#", ""};
- { 2, 25676, "", "=q2=Wild Draenish Vest", "=ds=#s5#, #a2#"};
- { 3, 25674, "", "=q2=Wild Draenish Gloves", "=ds=#s9#, #a2#"};
- { 4, 25675, "", "=q2=Wild Draenish Leggings", "=ds=#s11#, #a2#"};
- { 5, 25673, "", "=q2=Wild Draenish Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherPrimalBatskin";
- Next = "LeatherworkingLeatherThickDraenicA";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherThickDraenicA"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl8#", ""};
- { 2, 25671, "", "=q2=Thick Draenic Vest", "=ds=#s5#, #a2#"};
- { 3, 25669, "", "=q2=Thick Draenic Gloves", "=ds=#s9#, #a2#"};
- { 4, 25670, "", "=q2=Thick Draenic Pants", "=ds=#s11#, #a2#"};
- { 5, 25668, "", "=q2=Thick Draenic Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherWildDraenishA";
- Next = "LeatherworkingLeatherFelSkin";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherFelSkin"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl9#", ""};
- { 2, 25685, "", "=q3=Fel Leather Gloves", "=ds=#s9#, #a2#"};
- { 3, 25687, "", "=q3=Fel Leather Leggings", "=ds=#s11#, #a2#"};
- { 4, 25686, "", "=q3=Fel Leather Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherThickDraenicA";
- Next = "LeatherworkingLeatherSClefthoof";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherSClefthoof"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl10#", ""};
- { 2, 25689, "", "=q3=Heavy Clefthoof Vest", "=ds=#s5#, #a2#"};
- { 3, 25690, "", "=q3=Heavy Clefthoof Leggings", "=ds=#s11#, #a2#"};
- { 4, 25691, "", "=q3=Heavy Clefthoof Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherFelSkin";
- Next = "LeatherworkingLeatherPrimalIntent";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherPrimalIntent"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwe1#", "=q1=#p11#"};
- { 2, 29525, "", "=q4=Primalstrike Vest", "=ds=#s5#, #a2#"};
- { 3, 29527, "", "=q4=Primalstrike Bracers", "=ds=#s8#, #a2#"};
- { 4, 29526, "", "=q4=Primalstrike Belt", "=ds=#s10#, #a2#"};
- Prev = "LeatherworkingLeatherSClefthoof";
- Next = "LeatherworkingLeatherWindhawkArmor";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherWindhawkArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwt1#", "=q1=#p10#"};
- { 2, 29522, "", "=q4=Windhawk Hauberk", "=ds=#s5#, #a2#"};
- { 3, 29523, "", "=q4=Windhawk Bracers", "=ds=#s8#, #a2#"};
- { 4, 29524, "", "=q4=Windhawk Belt", "=ds=#s10#, #a2#"};
- Prev = "LeatherworkingLeatherPrimalIntent";
- Next = "LeatherworkingLeatherBoreanEmbrace";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherBoreanEmbrace"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl11#", ""};
- { 2, 38437, "", "=q2=Arctic Helm", "=ds=#s1#, #a2#"};
- { 3, 38402, "", "=q2=Arctic Shoulderpads", "=ds=#s3#, #a2#"};
- { 4, 38400, "", "=q2=Arctic Chestpiece", "=ds=#s5#, #a2#"};
- { 5, 38433, "", "=q2=Arctic Wristguards", "=ds=#s8#, #a2#"};
- { 6, 38403, "", "=q2=Arctic Gloves", "=ds=#s9#, #a2#"};
- { 7, 38405, "", "=q2=Arctic Belt", "=ds=#s10#, #a2#"};
- { 8, 38401, "", "=q2=Arctic Leggings", "=ds=#s11#, #a2#"};
- { 9, 38404, "", "=q2=Arctic Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherWindhawkArmor";
- Next = "LeatherworkingLeatherIceborneEmbrace";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherIceborneEmbrace"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl12#", ""};
- { 2, 38438, "", "=q2=Iceborne Helm", "=ds=#s1#, #a2#"};
- { 3, 38411, "", "=q2=Iceborne Shoulderpads", "=ds=#s3#, #a2#"};
- { 4, 38408, "", "=q2=Iceborne Chestguard", "=ds=#s5#, #a2#"};
- { 5, 38434, "", "=q2=Iceborne Wristguards", "=ds=#s8#, #a2#"};
- { 6, 38409, "", "=q2=Iceborne Gloves", "=ds=#s9#, #a2#"};
- { 7, 38406, "", "=q2=Iceborne Belt", "=ds=#s10#, #a2#"};
- { 8, 38410, "", "=q2=Iceborne Leggings", "=ds=#s11#, #a2#"};
- { 9, 38407, "", "=q2=Iceborne Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherBoreanEmbrace";
- Next = "LeatherworkingLeatherEvisceratorBattlegear";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherEvisceratorBattlegear"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl13#", ""};
- { 2, 43260, "", "=q3=Eviscerator's Facemask", "=ds=#s1#, #a2#"};
- { 3, 43433, "", "=q3=Eviscerator's Shoulderpads", "=ds=#s3#, #a2#"};
- { 4, 43434, "", "=q3=Eviscerator's Chestguard", "=ds=#s5#, #a2#"};
- { 5, 43435, "", "=q3=Eviscerator's Bindings", "=ds=#s8#, #a2#"};
- { 6, 43436, "", "=q3=Eviscerator's Gauntlets", "=ds=#s9#, #a2#"};
- { 7, 43437, "", "=q3=Eviscerator's Waistguard", "=ds=#s10#, #a2#"};
- { 8, 43438, "", "=q3=Eviscerator's Legguards", "=ds=#s11#, #a2#"};
- { 9, 43439, "", "=q3=Eviscerator's Treads", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherIceborneEmbrace";
- Next = "LeatherworkingLeatherOvercasterBattlegear";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingLeatherOvercasterBattlegear"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwl14#", ""};
- { 2, 43261, "", "=q3=Overcast Headguard", "=ds=#s1#, #a2#"};
- { 3, 43262, "", "=q3=Overcast Spaulders", "=ds=#s3#, #a2#"};
- { 4, 43263, "", "=q3=Overcast Chestguard", "=ds=#s5#, #a2#"};
- { 5, 43264, "", "=q3=Overcast Bracers", "=ds=#s8#, #a2#"};
- { 6, 43265, "", "=q3=Overcast Handwraps", "=ds=#s9#, #a2#"};
- { 7, 43266, "", "=q3=Overcast Belt", "=ds=#s10#, #a2#"};
- { 8, 43271, "", "=q3=Overcast Leggings", "=ds=#s11#, #a2#"};
- { 9, 43273, "", "=q3=Overcast Boots", "=ds=#s12#, #a2#"};
- Prev = "LeatherworkingLeatherEvisceratorBattlegear";
- Back = "CRAFTSET2";
- Type = "Crafting";
- };
-
- --------------------------------
- --- Leatherworking Mail Sets ---
- --------------------------------
-
- AtlasLoot_Data["LeatherworkingMailGreenDragonM"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm1#", "=q1=#j13#"};
- { 2, 15045, "", "=q3=Green Dragonscale Breastplate", "=ds=#s5#, #a3#"};
- { 3, 20296, "", "=q3=Green Dragonscale Gauntlets", "=ds=#s9#, #a3#"};
- { 4, 15046, "", "=q3=Green Dragonscale Leggings", "=ds=#s11#, #a3#"};
- Next = "LeatherworkingMailBlueDragonM";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailBlueDragonM"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm2#", "=q1=#j12#"};
- { 2, 15049, "", "=q3=Blue Dragonscale Shoulders", "=ds=#s3#, #a3#"};
- { 3, 15048, "", "=q3=Blue Dragonscale Breastplate", "=ds=#s5#, #a3#"};
- { 4, 20295, "", "=q3=Blue Dragonscale Leggings", "=ds=#s11#, #a3#"};
- Prev = "LeatherworkingMailGreenDragonM";
- Next = "LeatherworkingMailBlackDragonM";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailBlackDragonM"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm3#", "=q1=#j11#"};
- { 2, 15051, "", "=q3=Black Dragonscale Shoulders", "=ds=#s3#, #a3#"};
- { 3, 15050, "", "=q3=Black Dragonscale Breastplate", "=ds=#s5#, #a3#"};
- { 4, 15052, "", "=q3=Black Dragonscale Leggings", "=ds=#s11#, #a3#"};
- { 5, 16984, "", "=q4=Black Dragonscale Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailBlueDragonM";
- Next = "LeatherworkingMailScaledDraenicA";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailScaledDraenicA"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm4#", ""};
- { 2, 25660, "", "=q2=Scaled Draenic Vest", "=ds=#s5#, #a3#"};
- { 3, 25661, "", "=q2=Scaled Draenic Gloves", "=ds=#s9#, #a3#"};
- { 4, 25662, "", "=q2=Scaled Draenic Pants", "=ds=#s11#, #a3#"};
- { 5, 25659, "", "=q2=Scaled Draenic Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailBlackDragonM";
- Next = "LeatherworkingMailFelscaleArmor";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailFelscaleArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm5#", ""};
- { 2, 25657, "", "=q2=Felscale Breastplate", "=ds=#s5#, #a3#"};
- { 3, 25654, "", "=q2=Felscale Gloves", "=ds=#s9#, #a3#"};
- { 4, 25656, "", "=q2=Felscale Pants", "=ds=#s11#, #a3#"};
- { 5, 25655, "", "=q2=Felscale Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailScaledDraenicA";
- Next = "LeatherworkingMailFelstalkerArmor";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailFelstalkerArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm6#", ""};
- { 2, 25696, "", "=q3=Felstalker Breastplate", "=ds=#s5#, #a3#"};
- { 3, 25697, "", "=q3=Felstalker Bracers", "=ds=#s8#, #a3#"};
- { 4, 25695, "", "=q3=Felstalker Belt", "=ds=#s10#, #a3#"};
- Prev = "LeatherworkingMailFelscaleArmor";
- Next = "LeatherworkingMailNetherFury";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailNetherFury"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm7#", ""};
- { 2, 25694, "", "=q3=Netherfury Belt", "=ds=#s10#, #a3#"};
- { 3, 25692, "", "=q3=Netherfury Leggings", "=ds=#s11#, #a3#"};
- { 4, 25693, "", "=q3=Netherfury Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailFelstalkerArmor";
- Next = "LeatherworkingMailNetherscaleArmor";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailNetherscaleArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwd1#", "=q1=#p9#"};
- { 2, 29515, "", "=q4=Ebon Netherscale Breastplate", "=ds=#s5#, #a3#"};
- { 3, 29517, "", "=q4=Ebon Netherscale Bracers", "=ds=#s8#, #a3#"};
- { 4, 29516, "", "=q4=Ebon Netherscale Belt", "=ds=#s10#, #a3#"};
- Prev = "LeatherworkingMailNetherFury";
- Next = "LeatherworkingMailNetherstrikeArmor";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailNetherstrikeArmor"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwd2#", "=q1=#p9#"};
- { 2, 29519, "", "=q4=Netherstrike Breastplate", "=ds=#s5#, #a3#"};
- { 3, 29521, "", "=q4=Netherstrike Bracers", "=ds=#s8#, #a3#"};
- { 4, 29520, "", "=q4=Netherstrike Belt", "=ds=#s10#, #a3#"};
- Prev = "LeatherworkingMailNetherscaleArmor";
- Next = "LeatherworkingMailFrostscaleBinding";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailFrostscaleBinding"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm8#", ""};
- { 2, 38440, "", "=q2=Frostscale Helm", "=ds=#s1#, #a3#"};
- { 3, 38424, "", "=q2=Frostscale Shoulders", "=ds=#s3#, #a3#"};
- { 4, 38414, "", "=q2=Frostscale Chestguard", "=ds=#s5#, #a3#"};
- { 5, 38436, "", "=q2=Frostscale Bracers", "=ds=#s8#, #a3#"};
- { 6, 38415, "", "=q2=Frostscale Gloves", "=ds=#s9#, #a3#"};
- { 7, 38412, "", "=q2=Frostscale Belt", "=ds=#s10#, #a3#"};
- { 8, 38416, "", "=q2=Frostscale Leggings", "=ds=#s11#, #a3#"};
- { 9, 38413, "", "=q2=Frostscale Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailNetherstrikeArmor";
- Next = "LeatherworkingMailNerubianHive";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailNerubianHive"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm9#", ""};
- { 2, 38439, "", "=q2=Nerubian Helm", "=ds=#s1#, #a3#"};
- { 3, 38417, "", "=q2=Nerubian Shoulders", "=ds=#s3#, #a3#"};
- { 4, 38420, "", "=q2=Nerubian Chestguard", "=ds=#s5#, #a3#"};
- { 5, 38435, "", "=q2=Nerubian Bracers", "=ds=#s8#, #a3#"};
- { 6, 38421, "", "=q2=Nerubian Gloves", "=ds=#s9#, #a3#"};
- { 7, 38418, "", "=q2=Nerubian Belt", "=ds=#s10#, #a3#"};
- { 8, 38422, "", "=q2=Nerubian Legguards", "=ds=#s11#, #a3#"};
- { 9, 38419, "", "=q2=Nerubian Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailFrostscaleBinding";
- Next = "LeatherworkingMailStormhideBattlegear";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailStormhideBattlegear"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm10#", ""};
- { 2, 43455, "", "=q3=Stormhide Crown", "=ds=#s1#, #a3#"};
- { 3, 43457, "", "=q3=Stormhide Shoulders", "=ds=#s3#, #a3#"};
- { 4, 43453, "", "=q3=Stormhide Hauberk", "=ds=#s5#, #a3#"};
- { 5, 43452, "", "=q3=Stormhide Wristguards", "=ds=#s8#, #a3#"};
- { 6, 43454, "", "=q3=Stormhide Grips", "=ds=#s9#, #a3#"};
- { 7, 43450, "", "=q3=Stormhide Belt", "=ds=#s10#, #a3#"};
- { 8, 43456, "", "=q3=Stormhide Legguards", "=ds=#s11#, #a3#"};
- { 9, 43451, "", "=q3=Stormhide Stompers", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailNerubianHive";
- Next = "LeatherworkingMailSwiftarrowBattlefear";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["LeatherworkingMailSwiftarrowBattlefear"] = {
- { 1, 0, "INV_Box_01", "=q6=#craftlwm11#", ""};
- { 2, 43447, "", "=q3=Swiftarrow Helm", "=ds=#s1#, #a3#"};
- { 3, 43449, "", "=q3=Swiftarrow Shoulderguards", "=ds=#s3#, #a3#"};
- { 4, 43445, "", "=q3=Swiftarrow Hauberk", "=ds=#s5#, #a3#"};
- { 5, 43444, "", "=q3=Swiftarrow Bracers", "=ds=#s8#, #a3#"};
- { 6, 43446, "", "=q3=Swiftarrow Gauntlets", "=ds=#s9#, #a3#"};
- { 7, 43442, "", "=q3=Swiftarrow Belt", "=ds=#s10#, #a3#"};
- { 8, 43448, "", "=q3=Swiftarrow Leggings", "=ds=#s11#, #a3#"};
- { 9, 43443, "", "=q3=Swiftarrow Boots", "=ds=#s12#, #a3#"};
- Prev = "LeatherworkingMailStormhideBattlegear";
- Back = "CRAFTSET3";
- Type = "Crafting";
- };
-
- ----------------------
- --- Tailoring Sets ---
- ----------------------
-
- AtlasLoot_Data["TailoringBloodvineG"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt1#", ""};
- { 2, 19682, "", "=q3=Bloodvine Vest", "=ds=#s5#, #a1#"};
- { 3, 19683, "", "=q3=Bloodvine Leggings", "=ds=#s11#, #a1#"};
- { 4, 19684, "", "=q3=Bloodvine Boots", "=ds=#s12#, #a1#"};
- Next = "TailoringNeatherVest";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringNeatherVest"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt2#", ""};
- { 2, 21855, "", "=q2=Netherweave Tunic", "=ds=#s5#, #a1#"};
- { 3, 21854, "", "=q2=Netherweave Robe", "=ds=#s5#, #a1#"};
- { 4, 21849, "", "=q2=Netherweave Bracers", "=ds=#s8#, #a1#"};
- { 5, 21851, "", "=q2=Netherweave Gloves", "=ds=#s9#, #a1##"};
- { 6, 21850, "", "=q2=Netherweave Belt", "=ds=#s10#, #a1#"};
- { 7, 21852, "", "=q2=Netherweave Pants", "=ds=#s11#, #a1#"};
- { 8, 21853, "", "=q2=Netherweave Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringBloodvineG";
- Next = "TailoringImbuedNeather";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringImbuedNeather"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt3#", ""};
- { 2, 21862, "", "=q3=Imbued Netherweave Tunic", "=ds=#s5#, #a1#"};
- { 3, 21861, "", "=q3=Imbued Netherweave Robe", "=ds=#s5#, #a1#"};
- { 4, 21859, "", "=q3=Imbued Netherweave Pants", "=ds=#s11#, #a1#"};
- { 5, 21860, "", "=q3=Imbued Netherweave Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringNeatherVest";
- Next = "TailoringArcanoVest";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringArcanoVest"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt4#", "=q1=#j12#"};
- { 2, 21868, "", "=q3=Arcanoweave Robe", "=ds=#s5#, #a1#"};
- { 3, 21866, "", "=q3=Arcanoweave Bracers", "=ds=#s8#, #a1#"};
- { 4, 21867, "", "=q3=Arcanoweave Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringImbuedNeather";
- Next = "TailoringTheUnyielding";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringTheUnyielding"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt5#", ""};
- { 2, 24249, "", "=q3=Unyielding Bracers", "=ds=#s8#, #a1#"};
- { 3, 24255, "", "=q4=Unyielding Girdle", "=ds=#s10#, #a1#"};
- Prev = "TailoringArcanoVest";
- Next = "TailoringWhitemendWis";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringWhitemendWis"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt6#", ""};
- { 2, 24264, "", "=q4=Whitemend Hood", "=ds=#s1#, #a1#"};
- { 3, 24261, "", "=q4=Whitemend Pants", "=ds=#s11#, #a1#"};
- Prev = "TailoringTheUnyielding";
- Next = "TailoringSpellstrikeInfu";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringSpellstrikeInfu"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt7#", ""};
- { 2, 24266, "", "=q4=Spellstrike Hood", "=ds=#s1#, #a1#"};
- { 3, 24262, "", "=q4=Spellstrike Pants", "=ds=#s11#, #a1#"};
- Prev = "TailoringWhitemendWis";
- Next = "TailoringBattlecastG";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringBattlecastG"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt8#", ""};
- { 2, 24267, "", "=q4=Battlecast Hood", "=ds=#s1#, #a1#"};
- { 3, 24263, "", "=q4=Battlecast Pants", "=ds=#s11#, #a1#"};
- Prev = "TailoringSpellstrikeInfu";
- Next = "TailoringSoulclothEm";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringSoulclothEm"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt9#", "=q1=#j12#"};
- { 2, 21864, "", "=q4=Soulcloth Shoulders", "=ds=#s3#, #a1#"};
- { 3, 21865, "", "=q4=Soulcloth Vest", "=ds=#s5#, #a1#"};
- { 4, 21863, "", "=q4=Soulcloth Gloves", "=ds=#s9#, #a1#"};
- Prev = "TailoringBattlecastG";
- Next = "TailoringPrimalMoon";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringPrimalMoon"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#crafttm1#", "=q1=#p19#"};
- { 2, 21874, "", "=q4=Primal Mooncloth Shoulders", "=ds=#s3#, #a1#"};
- { 3, 21875, "", "=q4=Primal Mooncloth Robe", "=ds=#s5#, #a1#"};
- { 4, 21873, "", "=q4=Primal Mooncloth Belt", "=ds=#s10#, #a1#"};
- Prev = "TailoringSoulclothEm";
- Next = "TailoringShadowEmbrace";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringShadowEmbrace"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#crafttsh1#", "=q1=#p20#"};
- { 2, 21869, "", "=q4=Frozen Shadoweave Shoulders", "=ds=#s3#, #a1#"};
- { 3, 21871, "", "=q4=Frozen Shadoweave Vest", "=ds=#s5#, #a1#"};
- { 4, 21870, "", "=q4=Frozen Shadoweave Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringPrimalMoon";
- Next = "TailoringSpellfireWRATH";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringSpellfireWRATH"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#crafttsf1#", "=q1=#p21#"};
- { 2, 21848, "", "=q4=Spellfire Robe", "=ds=#s5#, #a1#"};
- { 3, 21847, "", "=q4=Spellfire Gloves", "=ds=#s9#, #a1#"};
- { 4, 21846, "", "=q4=Spellfire Belt", "=ds=#s10#, #a1#"};
- Prev = "TailoringShadowEmbrace";
- Next = "TailoringFrostwovenPower";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringFrostwovenPower"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt10#", ""};
- { 2, 41521, "", "=q2=Frostwoven Cowl", "=ds=#s1#, #a1#"};
- { 3, 41513, "", "=q2=Frostwoven Shoulders", "=ds=#s3#, #a1#"};
- { 4, 41515, "", "=q2=Frostwoven Robe", "=ds=#s5#, #a1#"};
- { 5, 41512, "", "=q2=Frostwoven Wristwraps", "=ds=#s8#, #a1#"};
- { 6, 44211, "", "=q2=Frostwoven Gloves", "=ds=#s9#, #a1#"};
- { 7, 41522, "", "=q2=Frostwoven Belt", "=ds=#s10#, #a1#"};
- { 8, 41519, "", "=q2=Frostwoven Leggings", "=ds=#s11#, #a1#"};
- { 9, 41520, "", "=q2=Frostwoven Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringSpellfireWRATH";
- Next = "TailoringDuskweaver";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringDuskweaver"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt11#", ""};
- { 2, 41546, "", "=q2=Duskweave Cowl", "=ds=#s1#, #a1#"};
- { 3, 41550, "", "=q2=Duskweave Shoulders", "=ds=#s3#, #a1#"};
- { 4, 41549, "", "=q2=Duskweave Robe", "=ds=#s5#, #a1#"};
- { 5, 41551, "", "=q2=Duskweave Wristwraps", "=ds=#s8#, #a1#"};
- { 6, 41545, "", "=q2=Duskweave Gloves", "=ds=#s9#, #a1#"};
- { 7, 41543, "", "=q2=Duskweave Belt", "=ds=#s10#, #a1#"};
- { 8, 41548, "", "=q2=Duskweave Leggings", "=ds=#s11#, #a1#"};
- { 9, 41544, "", "=q2=Duskweave Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringFrostwovenPower";
- Next = "TailoringFrostsavageBattlegear";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["TailoringFrostsavageBattlegear"] = {
- { 1, 0, "INV_Fabric_Linen_02", "=q6=#craftt12#", ""};
- { 2, 43971, "", "=q3=Frostsavage Cowl", "=ds=#s1#, #a1#"};
- { 3, 43973, "", "=q3=Frostsavage Shoulders", "=ds=#s3#, #a1#"};
- { 4, 43972, "", "=q3=Frostsavage Robe", "=ds=#s5#, #a1#"};
- { 5, 43974, "", "=q3=Frostsavage Bracers", "=ds=#s8#, #a1#"};
- { 6, 41516, "", "=q3=Frostsavage Gloves", "=ds=#s9#, #a1#"};
- { 7, 43969, "", "=q3=Frostsavage Belt", "=ds=#s10#, #a1#"};
- { 8, 43975, "", "=q3=Frostsavage Leggings", "=ds=#s11#, #a1#"};
- { 9, 43970, "", "=q3=Frostsavage Boots", "=ds=#s12#, #a1#"};
- Prev = "TailoringDuskweaver";
- Back = "CRAFTSET4";
- Type = "Crafting";
- };
-
- -------------
- --- Other ---
- -------------
-
- ----------------------------
- --- Crafted Epic Weapons ---
- ----------------------------
-
- AtlasLoot_Data["CraftedWeapons1"] = {
- { 1, 49888, "", "=q4=Shadow's Edge", "=ds=#h2#, #w1#"};
- { 3, 0, "INV_Box_01", "=q6=#p2#", "=q1=#j54#"};
- { 4, 45085, "", "=q4=Titansteel Spellblade", "=ds=#h3#, #w4#"};
- { 5, 42435, "", "=q4=Titansteel Shanker", "=ds=#h1#, #w4#"};
- { 6, 41383, "", "=q4=Titansteel Bonecrusher", "=ds=#h3#, #w6#"};
- { 7, 41384, "", "=q4=Titansteel Guardian", "=ds=#h3#, #w6#"};
- { 8, 41257, "", "=q4=Titansteel Destroyer", "=ds=#h2#, #w6#"};
- { 9, 42508, "", "=q4=Titansteel Shield Wall", "=ds=#w8#"};
- { 11, 0, "INV_Box_01", "=q6=#p5#", "=q1=#j54#"};
- { 12, 41168, "", "=q4=Armor Plated Combat Shotgun", "=ds=#w5#"};
- { 13, 44504, "", "=q4=Nesingwary 4000", "=ds=#w5#"};
- { 16, 0, "INV_Box_01", "=q6=#p2#", "=q1=#j10#"};
- { 17, 23554, "", "=q4=Eternium Runed Blade", "=ds=#h3#, #w4#"};
- { 18, 23555, "", "=q4=Dirge", "=ds=#h1#, #w4#"};
- { 19, 23540, "", "=q4=Felsteel Longblade", "=ds=#h1#, #w10#"};
- { 20, 23541, "", "=q4=Khorium Champion", "=ds=#h2#, #w10#"};
- { 21, 23542, "", "=q4=Fel Edged Battleaxe", "=ds=#h1#, #w1#"};
- { 22, 23543, "", "=q4=Felsteel Reaper", "=ds=#h2#, #w1#"};
- { 23, 23556, "", "=q4=Hand of Eternity", "=ds=#h3#, #w6#"};
- { 24, 23544, "", "=q4=Runic Hammer", "=ds=#h1#, #w6#"};
- { 25, 23546, "", "=q4=Fel Hardened Maul", "=ds=#h2#, #w6#"};
- { 26, 32854, "", "=q4=Hammer of Righteous Might", "=ds=#h2#, #w6#"};
- { 28, 0, "INV_Box_01", "=q6=#p5#", "=q1=#j10#"};
- { 29, 32756, "", "=q4=Gyro-balanced Khorium Destroyer", "=ds=#w5#"};
- Next = "CraftedWeapons2";
- Back = "CRAFTINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["CraftedWeapons2"] = {
- { 1, 0, "INV_Box_01", "=q6=#p2#", "=q1=#j9#"};
- { 2, 19166, "", "=q4=Black Amnesty", "=ds=#h1#, #w4#"};
- { 3, 22383, "", "=q4=Sageblade", "=ds=#h3#, #w10#"};
- { 4, 19168, "", "=q4=Blackguard", "=ds=#h1#, #w10#"};
- { 5, 19169, "", "=q4=Nightfall", "=ds=#h2#, #w1#"};
- { 6, 19170, "", "=q4=Ebon Hand", "=ds=#h1#, #w6#"};
- { 7, 22384, "", "=q4=Persuader", "=ds=#h1#, #w6#"};
- { 8, 17193, "", "=q4=Sulfuron Hammer", "=ds=#h2#, #w6#"};
- { 9, 19167, "", "=q4=Blackfury", "=ds=#w7#"};
- { 10, 22198, "", "=q4=Jagged Obsidian Shield", "=ds=#w8#"};
- { 12, 0, "INV_Box_01", "=q6=#p5#", "=q1=#j9#"};
- { 13, 18282, "", "=q4=Core Marksman Rifle", "=ds=#w5#"};
- { 14, 18168, "", "=q4=Force Reactive Disk", "=ds=#w8#"};
- Prev = "CraftedWeapons1";
- Next = "CraftedWeapons3";
- Back = "CRAFTINGMENU";
- Type = "Crafting";
- };
-
- AtlasLoot_Data["CraftedWeapons3"] = {
- { 1, 0, "INV_Box_01", "=q6=#p15#", ""};
- { 2, 28425, "", "=q4=Fireguard", "=ds=#h1#, #w10#"};
- { 3, 28426, "", "=q4=Blazeguard", "=ds=#h1#, #w10#"};
- { 4, 28427, "", "=q4=Blazefury", "=ds=#h1#, #w10#"};
- { 5, 28428, "", "=q4=Lionheart Blade", "=ds=#h2#, #w10#"};
- { 6, 28429, "", "=q4=Lionheart Champion", "=ds=#h2#, #w10#"};
- { 7, 28430, "", "=q4=Lionheart Executioner", "=ds=#h2#, #w10#"};
- { 9, 0, "INV_Box_01", "=q6=#p14#", ""};
- { 10, 28431, "", "=q4=The Planar Edge", "=ds=#h3#, #w1#"};
- { 11, 28432, "", "=q4=Black Planar Edge", "=ds=#h3#, #w1#"};
- { 12, 28433, "", "=q4=Wicked Edge of the Planes", "=ds=#h3#, #w1#"};
- { 13, 28434, "", "=q4=Lunar Crescent", "=ds=#h2#, #w1#"};
- { 14, 28435, "", "=q4=Mooncleaver", "=ds=#h2#, #w1#"};
- { 15, 28436, "", "=q4=Bloodmoon", "=ds=#h2#, #w1#"};
- { 16, 0, "INV_Box_01", "=q6=#p22#", ""};
- { 17, 28437, "", "=q4=Drakefist Hammer", "=ds=#h3#, #w6#"};
- { 18, 28438, "", "=q4=Dragonmaw", "=ds=#h3#, #w6#"};
- { 19, 28439, "", "=q4=Dragonstrike", "=ds=#h3#, #w6#"};
- { 20, 28440, "", "=q4=Thunder", "=ds=#h2#, #w6#"};
- { 21, 28441, "", "=q4=Deep Thunder", "=ds=#h2#, #w6#"};
- { 22, 28442, "", "=q4=Stormherald", "=ds=#h2#, #w6#"};
- Prev = "CraftedWeapons2";
- Back = "CRAFTINGMENU";
- Type = "Crafting";
- };
-
- --------------------------------
- --- Daily Profession Rewards ---
- --------------------------------
-
- ---------------
- --- Cooking ---
- ---------------
-
- AtlasLoot_Data["CookingDaily1"] = {
- { 1, 33925, "", "=q3=Recipe: Delicious Chocolate Cake", "=ds=#p3# (1)", "", ""};
- { 2, 33871, "", "=q3=Recipe: Stormchops", "=ds=#p3# (300)", "", ""};
- { 3, 33869, "", "=q3=Recipe: Broiled Bloodfin", "=ds=#p3# (300)", "", ""};
- { 4, 33875, "", "=q2=Recipe: Kibler's Bits", "=ds=#p3# (300)", "", ""};
- { 5, 33870, "", "=q2=Recipe: Skullfish Soup", "=ds=#p3# (325)", "", ""};
- { 6, 33873, "", "=q2=Recipe: Spicy Hot Talbuk", "=ds=#p3# (300)", "", ""};
- Next = "CookingDaily2";
- Back = "COOKINGDAILYMENU";
- };
-
- AtlasLoot_Data["CookingDaily2"] = {
- { 1, 43035, "", "=q2=Recipe: Blackened Dragonfin", "=ds=#p3# (400)"};
- { 2, 43032, "", "=q2=Recipe: Blackened Worg Steak", "=ds=#p3# (400)"};
- { 3, 43029, "", "=q2=Recipe: Critter Bites", "=ds=#p3# (400)"};
- { 4, 43033, "", "=q2=Recipe: Cuttlesteak", "=ds=#p3# (400)"};
- { 5, 43036, "", "=q2=Recipe: Dragonfin Filet", "=ds=#p3# (400)"};
- { 6, 43024, "", "=q2=Recipe: Firecracker Salmon", "=ds=#p3# (400)"};
- { 7, 43030, "", "=q2=Recipe: Hearty Rhino", "=ds=#p3# (400)"};
- { 8, 43026, "", "=q2=Recipe: Imperial Manta Steak", "=ds=#p3# (400)"};
- { 9, 43018, "", "=q2=Recipe: Mega Mammoth Meal", "=ds=#p3# (400)"};
- { 10, 43022, "", "=q2=Recipe: Mighty Rhino Dogs", "=ds=#p3# (400)"};
- { 11, 43023, "", "=q2=Recipe: Poached Northern Sculpin", "=ds=#p3# (400)"};
- { 12, 43028, "", "=q2=Recipe: Rhinolicious Wyrmsteak", "=ds=#p3# (400)"};
- { 13, 43031, "", "=q2=Recipe: Snapper Extreme", "=ds=#p3# (400)"};
- { 14, 43034, "", "=q2=Recipe: Spiced Mammoth Treats", "=ds=#p3# (400)"};
- { 15, 43020, "", "=q2=Recipe: Spiced Wyrm Burger", "=ds=#p3# (400)"};
- { 16, 43025, "", "=q2=Recipe: Spicy Blue Nettlefish", "=ds=#p3# (400)"};
- { 17, 43027, "", "=q2=Recipe: Spicy Fried Herring", "=ds=#p3# (400)"};
- { 18, 43019, "", "=q2=Recipe: Tender Shoveltusk Steak", "=ds=#p3# (400)"};
- { 19, 43037, "", "=q2=Recipe: Tracker Snacks", "=ds=#p3# (400)"};
- { 20, 43021, "", "=q2=Recipe: Very Burnt Worg", "=ds=#p3# (400)"};
- { 22, 46349, "", "=q3=Chef's Hat", "=ds=#s1#"};
- { 23, 43007, "", "=q1=Northern Spices", "=ds=#e8#"};
- { 25, 0, "inv_misc_bag_11", "=q6="..AL["Small Spice Bag"], ""};
- { 26, 33925, "", "=q3=Recipe: Delicious Chocolate Cake", "=ds=#p3# (1)", "", ""};
- { 27, 33871, "", "=q3=Recipe: Stormchops", "=ds=#p3# (300)", "", ""};
- { 28, 44228, "", "=q1=Baby Spice", "=ds=", "", ""};
- { 29, 44114, "", "=q1=Old Spices", "=ds=", "", ""};
- Prev = "CookingDaily1";
- Back = "COOKINGDAILYMENU";
- };
-
- ---------------
- --- Fishing ---
- ---------------
-
- AtlasLoot_Data["FishingDaily1"] = {
- { 1, 34837, "", "=q4=The 2 Ring", "=ds=#s13#", "", ""};
- { 2, 33820, "", "=q3=Weather-Beaten Fishing Hat", "=ds=#s1#, #a1#", "", ""};
- { 3, 35350, "", "=q3=Chuck's Bucket", "=ds=#e13#", "", ""};
- { 4, 33818, "", "=q3=Muckbreath's Bucket", "=ds=#e13#", "", ""};
- { 5, 35349, "", "=q3=Snarly's Bucket", "=ds=#e13#", "", ""};
- { 6, 33816, "", "=q3=Toothy's Bucket", "=ds=#e13#", "", ""};
- { 7, 34831, "", "=q3=Eye of the Sea", "=ds=#e7#", "", ""};
- { 8, 34834, "", "=q2=Recipe: Captain Rumsey's Lager", "=ds=#p3# (100)", "", ""};
- { 9, 34836, "", "=q2=Spun Truesilver Fishing Line", "=ds=#p24# #e17#", "", ""};
- { 16, 34827, "", "=q1=Noble's Monocle", "=ds=#s1#", "", ""};
- { 17, 34828, "", "=q1=Antique Silver Cufflinks", "=ds=#s8#", "", ""};
- { 18, 34826, "", "=q1=Gold Wedding Band", "=ds=#s13#", "", ""};
- { 19, 34829, "", "=q1=Ornate Drinking Stein", "=ds=#s15#", "", ""};
- { 20, 34859, "", "=q1=Razor Sharp Fillet Knife", "=ds=#h1#, #w4#", "", ""};
- { 21, 34109, "", "=q1=Weather-Beaten Journal", "=ds=#e10#", "", ""};
- { 22, 8827, "", "=q1=Elixir of Water Walking", "=ds=#e2#", "", ""};
- { 23, 34861, "", "=q1=Sharpened Fish Hook", "=ds=#e24#", "", ""};
- Next = "FishingDaily2";
- Back = "FISHINGDAILYMENU";
- };
-
- AtlasLoot_Data["FishingDaily2"] = {
- { 1, 45862, "", "=q4=Bold Stormjewel", "=ds=#e7#", "", ""};
- { 2, 45882, "", "=q4=Brilliant Stormjewel", "=ds=#e7#", "", ""};
- { 3, 45879, "", "=q4=Delicate Stormjewel", "=ds=#e7#", "", ""};
- { 4, 45987, "", "=q4=Rigid Stormjewel", "=ds=#e7#", "", ""};
- { 5, 45883, "", "=q4=Runed Stormjewel", "=ds=#e7#", "", ""};
- { 6, 45880, "", "=q4=Solid Stormjewel", "=ds=#e7#", "", ""};
- { 7, 45881, "", "=q4=Sparkling Stormjewel", "=ds=#e7#", "", ""};
- { 8, 33820, "", "=q3=Weather-Beaten Fishing Hat", "=ds=#s1#, #a1#", "", ""};
- { 9, 45991, "", "=q3=Bone Fishing Pole", "=ds=#e20#", "", ""};
- { 10, 45992, "", "=q3=Jeweled Fishing Pole", "=ds=#e20#", "", ""};
- { 11, 44983, "", "=q3=Strand Crawler", "=ds=#e13#", "", ""};
- { 12, 36784, "", "=q3=Siren's Tear", "=ds=#e7#", "", ""};
- { 13, 45986, "", "=q3=Titanium Lockbox", "=ds=", "", ""};
- { 14, 34834, "", "=q2=Recipe: Captain Rumsey's Lager", "=ds=#p3# (100)", "", ""};
- { 15, 19971, "", "=q2=High Test Eternium Fishing Line", "=ds=#p24# #e17#", "", ""};
- { 16, 45998, "", "=q1=Battered Jungle Hat", "=ds=#s1#", "", ""};
- { 17, 45861, "", "=q1=Diamond-tipped Cane", "=ds=#h2#", "", ""};
- { 18, 46006, "", "=q1=Glow Worm", "=ds=#e24#", "", ""};
- { 19, 45984, "", "=q1=Unusual Compass", "=ds=", "", ""};
- { 20, 40195, "", "=q1=Pygmy Oil", "=ds=#e2#", "", ""};
- { 21, 8827, "", "=q1=Elixir of Water Walking", "=ds=#e2#", "", ""};
- { 22, 46004, "", "=q1=Sealed Vial of Poison", "=ds=#m2#", "", ""};
- { 23, 48679, "", "=q1=Waterlogged Recipe", "=ds=#m2# #p3# (350)", "", ""};
- Prev = "FishingDaily1";
- Back = "FISHINGDAILYMENU";
- };
-
- ---------------------
- --- Jewelcrafting ---
- ---------------------
-
- AtlasLoot_Data["JewelcraftingDaily1"] = {
- { 1, 46917, "", "=q3=Design: Bold Cardinal Ruby", "=ds=#p12# (450)"};
- { 2, 46919, "", "=q3=Design: Bright Cardinal Ruby", "=ds=#p12# (450)"};
- { 3, 46918, "", "=q3=Design: Delicate Cardinal Ruby", "=ds=#p12# (450)"};
- { 4, 46923, "", "=q3=Design: Flashing Cardinal Ruby", "=ds=#p12# (450)"};
- { 5, 46921, "", "=q3=Design: Fractured Cardinal Ruby", "=ds=#p12# (450)"};
- { 6, 46920, "", "=q3=Design: Precise Cardinal Ruby", "=ds=#p12# (450)"};
- { 7, 46916, "", "=q3=Design: Runed Cardinal Ruby", "=ds=#p12# (450)"};
- { 8, 46922, "", "=q3=Design: Subtle Cardinal Ruby", "=ds=#p12# (450)"};
- { 9, 41576, "", "=q3=Design: Bold Scarlet Ruby", "=ds=#p12# (390)"};
- { 10, 41577, "", "=q3=Design: Delicate Scarlet Ruby", "=ds=#p12# (390)"};
- { 11, 41578, "", "=q3=Design: Flashing Scarlet Ruby", "=ds=#p12# (390)"};
- { 16, 46930, "", "=q3=Design: Brilliant King's Amber", "=ds=#p12# (450)"};
- { 17, 46932, "", "=q3=Design: Mystic King's Amber", "=ds=#p12# (450)"};
- { 18, 46933, "", "=q3=Design: Quick King's Amber", "=ds=#p12# (450)"};
- { 19, 46928, "", "=q3=Design: Rigid King's Amber", "=ds=#p12# (450)"};
- { 20, 46929, "", "=q3=Design: Smooth King's Amber", "=ds=#p12# (450)"};
- { 21, 46931, "", "=q3=Design: Thick King's Amber", "=ds=#p12# (450)"};
- { 22, 41579, "", "=q3=Design: Quick Autumn's Glow", "=ds=#p12# (390)"};
- { 23, 41580, "", "=q3=Design: Rigid Autumn's Glow", "=ds=#p12# (390)"};
- Next = "JewelcraftingDaily2";
- Back = "JEWELCRAFTINGDAILYMENU";
- };
-
- AtlasLoot_Data["JewelcraftingDaily2"] = {
- { 1, 47010, "", "=q3=Design: Accurate Ametrine", "=ds=#p12# (450)"};
- { 2, 47015, "", "=q3=Design: Champion's Ametrine", "=ds=#p12# (450)"};
- { 3, 46949, "", "=q3=Design: Deadly Ametrine", "=ds=#p12# (450)"};
- { 4, 47020, "", "=q3=Design: Deft Ametrine", "=ds=#p12# (450)"};
- { 5, 46952, "", "=q3=Design: Durable Ametrine", "=ds=#p12# (450)"};
- { 6, 47016, "", "=q3=Design: Empowered Ametrine", "=ds=#p12# (450)"};
- { 7, 46953, "", "=q3=Design: Etched Ametrine", "=ds=#p12# (450)"};
- { 8, 47019, "", "=q3=Design: Fierce Ametrine", "=ds=#p12# (450)"};
- { 9, 47012, "", "=q3=Design: Glimmering Ametrine", "=ds=#p12# (450)"};
- { 10, 47008, "", "=q3=Design: Glinting Ametrine", "=ds=#p12# (450)"};
- { 11, 46948, "", "=q3=Design: Inscribed Ametrine", "=ds=#p12# (450)"};
- { 12, 47021, "", "=q3=Design: Lucent Ametrine", "=ds=#p12# (450)"};
- { 13, 46947, "", "=q3=Design: Luminous Ametrine", "=ds=#p12# (450)"};
- { 14, 46950, "", "=q3=Design: Potent Ametrine", "=ds=#p12# (450)"};
- { 15, 46956, "", "=q3=Design: Pristine Ametrine", "=ds=#p12# (450)"};
- { 16, 47007, "", "=q3=Design: Reckless Ametrine", "=ds=#p12# (450)"};
- { 17, 47022, "", "=q3=Design: Resolute Ametrine", "=ds=#p12# (450)"};
- { 18, 47018, "", "=q3=Design: Resplendent Ametrine", "=ds=#p12# (450)"};
- { 19, 47017, "", "=q3=Design: Stalwart Ametrine", "=ds=#p12# (450)"};
- { 20, 47023, "", "=q3=Design: Stark Ametrine", "=ds=#p12# (450)"};
- { 21, 46951, "", "=q3=Design: Veiled Ametrine", "=ds=#p12# (450)"};
- { 22, 47011, "", "=q3=Design: Wicked Ametrine", "=ds=#p12# (450)"};
- { 23, 41582, "", "=q3=Design: Glinting Monarch Topaz", "=ds=#p12# (390)"};
- { 24, 41689, "", "=q3=Design: Luminous Monarch Topaz", "=ds=#p12# (390)"};
- { 25, 41686, "", "=q3=Design: Potent Monarch Topaz", "=ds=#p12# (390)"};
- { 26, 41690, "", "=q3=Design: Reckless Monarch Topaz", "=ds=#p12# (390)"};
- { 27, 41687, "", "=q3=Design: Stark Monarch Topaz", "=ds=#p12# (390)"};
- { 28, 41688, "", "=q3=Design: Veiled Monarch Topaz", "=ds=#p12# (390)"};
- Prev = "JewelcraftingDaily1";
- Next = "JewelcraftingDaily3";
- Back = "JEWELCRAFTINGDAILYMENU";
- };
-
- AtlasLoot_Data["JewelcraftingDaily3"] = {
- { 1, 46900, "", "=q3=Design: Dazzling Eye of Zul", "=ds=#p12# (450)"};
- { 2, 46897, "", "=q3=Design: Enduring Eye of Zul", "=ds=#p12# (450)"};
- { 3, 46912, "", "=q3=Design: Energized Eye of Zul", "=ds=#p12# (450)"};
- { 4, 46904, "", "=q3=Design: Forceful Eye of Zul", "=ds=#p12# (450)"};
- { 5, 46910, "", "=q3=Design: Intricate Eye of Zul", "=ds=#p12# (450)"};
- { 6, 46901, "", "=q3=Design: Jagged Eye of Zul", "=ds=#p12# (450)"};
- { 7, 46909, "", "=q3=Design: Lambent Eye of Zul", "=ds=#p12# (450)"};
- { 8, 46905, "", "=q3=Design: Misty Eye of Zul", "=ds=#p12# (450)"};
- { 9, 46914, "", "=q3=Design: Opaque Eye of Zul", "=ds=#p12# (450)"};
- { 10, 46911, "", "=q3=Design: Radiant Eye of Zul", "=ds=#p12# (450)"};
- { 11, 46903, "", "=q3=Design: Seer's Eye of Zul", "=ds=#p12# (450)"};
- { 12, 46913, "", "=q3=Design: Shattered Eye of Zul", "=ds=#p12# (450)"};
- { 13, 46907, "", "=q3=Design: Shining Eye of Zul", "=ds=#p12# (450)"};
- { 14, 46898, "", "=q3=Design: Steady Eye of Zul", "=ds=#p12# (450)"};
- { 15, 46906, "", "=q3=Design: Sundered Eye of Zul", "=ds=#p12# (450)"};
- { 16, 46908, "", "=q3=Design: Tense Eye of Zul", "=ds=#p12# (450)"};
- { 17, 46902, "", "=q3=Design: Timeless Eye of Zul", "=ds=#p12# (450)"};
- { 18, 46915, "", "=q3=Design: Turbid Eye of Zul", "=ds=#p12# (450)"};
- { 19, 46899, "", "=q3=Design: Vivid Eye of Zul", "=ds=#p12# (450)"};
- { 20, 41697, "", "=q3=Design: Enduring Forest Emerald", "=ds=#p12# (390)"};
- { 21, 41692, "", "=q3=Design: Energized Forest Emerald", "=ds=#p12# (390)"};
- { 22, 41693, "", "=q3=Design: Forceful Forest Emerald", "=ds=#p12# (390)"};
- { 23, 41694, "", "=q3=Design: Intricate Forest Emerald", "=ds=#p12# (390)"};
- { 24, 41696, "", "=q3=Design: Lambent Forest Emerald", "=ds=#p12# (390)"};
- { 25, 41699, "", "=q3=Design: Seer's Forest Emerald", "=ds=#p12# (390)"};
- { 26, 41698, "", "=q3=Design: Vivid Forest Emerald", "=ds=#p12# (390)"};
- Prev = "JewelcraftingDaily2";
- Next = "JewelcraftingDaily4";
- Back = "JEWELCRAFTINGDAILYMENU";
- };
-
- AtlasLoot_Data["JewelcraftingDaily4"] = {
- { 1, 46934, "", "=q3=Design: Balanced Dreadstone", "=ds=#p12# (450)"};
- { 2, 46941, "", "=q3=Design: Defender's Dreadstone", "=ds=#p12# (450)"};
- { 3, 46936, "", "=q3=Design: Glowing Dreadstone", "=ds=#p12# (450)"};
- { 4, 46942, "", "=q3=Design: Guardian's Dreadstone", "=ds=#p12# (450)"};
- { 5, 46945, "", "=q3=Design: Infused Dreadstone", "=ds=#p12# (450)"};
- { 6, 46943, "", "=q3=Design: Mysterious Dreadstone", "=ds=#p12# (450)"};
- { 7, 46944, "", "=q3=Design: Puissant Dreadstone", "=ds=#p12# (450)"};
- { 8, 46937, "", "=q3=Design: Purified Dreadstone", "=ds=#p12# (450)"};
- { 9, 46940, "", "=q3=Design: Regal Dreadstone", "=ds=#p12# (450)"};
- { 10, 46939, "", "=q3=Design: Royal Dreadstone", "=ds=#p12# (450)"};
- { 11, 46938, "", "=q3=Design: Shifting Dreadstone", "=ds=#p12# (450)"};
- { 12, 46935, "", "=q3=Design: Sovereign Dreadstone", "=ds=#p12# (450)"};
- { 13, 46946, "", "=q3=Design: Tenuous Dreadstone", "=ds=#p12# (450)"};
- { 14, 41702, "", "=q3=Design: Puissant Twilight Opal", "=ds=#p12# (390)"};
- { 15, 41703, "", "=q3=Design: Regal Twilight Opal", "=ds=#p12# (390)"};
- { 16, 41701, "", "=q3=Design: Royal Twilight Opal", "=ds=#p12# (390)"};
- Prev = "JewelcraftingDaily3";
- Next = "JewelcraftingDaily5";
- Back = "JEWELCRAFTINGDAILYMENU";
- };
-
- AtlasLoot_Data["JewelcraftingDaily5"] = {
- { 1, 46927, "", "=q3=Design: Lustrous Majestic Zircon", "=ds=#p12# (450)"};
- { 2, 46924, "", "=q3=Design: Solid Majestic Zircon", "=ds=#p12# (450)"};
- { 3, 46925, "", "=q3=Design: Sparkling Majestic Zircon", "=ds=#p12# (450)"};
- { 4, 46926, "", "=q3=Design: Stormy Majestic Zircon", "=ds=#p12# (450)"};
- { 5, 41581, "", "=q3=Design: Lustrous Sky Sapphire", "=ds=#p12# (390)"};
- { 6, 42138, "", "=q3=Design: Solid Sky Sapphire", "=ds=#p12# (390)"};
- { 16, 41704, "", "=q3=Design: Chaotic Skyflare Diamond", "=ds=#p12# (420)"};
- { 17, 41705, "", "=q3=Design: Effulgent Skyflare Diamond", "=ds=#p12# (420)"};
- { 18, 41706, "", "=q3=Design: Ember Skyflare Diamond", "=ds=#p12# (420)"};
- { 19, 41708, "", "=q3=Design: Insightful Earthsiege Diamond", "=ds=#p12# (420)"};
- { 20, 41709, "", "=q3=Design: Invigorating Earthsiege Diamond", "=ds=#p12# (420)"};
- { 21, 41710, "", "=q3=Design: Relentless Earthsiege Diamond", "=ds=#p12# (420)"};
- { 22, 41707, "", "=q3=Design: Revitalizing Skyflare Diamond", "=ds=#p12# (420)"};
- { 23, 41711, "", "=q3=Design: Trenchant Earthsiege Diamond", "=ds=#p12# (420)"};
- Prev = "JewelcraftingDaily4";
- Next = "JewelcraftingDaily6";
- Back = "JEWELCRAFTINGDAILYMENU";
- };
-
- AtlasLoot_Data["JewelcraftingDaily6"] = {
- { 1, 42298, "", "=q3=Design: Bold Dragon's Eye", "=ds=#p12# (370)"};
- { 2, 42299, "", "=q3=Design: Bright Dragon's Eye", "=ds=#p12# (370)"};
- { 3, 42300, "", "=q3=Design: Brilliant Dragon's Eye", "=ds=#p12# (370)"};
- { 4, 42301, "", "=q3=Design: Delicate Dragon's Eye", "=ds=#p12# (370)"};
- { 5, 42302, "", "=q3=Design: Flashing Dragon's Eye", "=ds=#p12# (370)"};
- { 6, 42303, "", "=q3=Design: Fractured Dragon's Eye", "=ds=#p12# (370)"};
- { 7, 42304, "", "=q3=Design: Lustrous Dragon's Eye", "=ds=#p12# (370)"};
- { 8, 42305, "", "=q3=Design: Mystic Dragon's Eye", "=ds=#p12# (370)"};
- { 9, 42306, "", "=q3=Design: Precise Dragon's Eye", "=ds=#p12# (370)"};
- { 10, 42307, "", "=q3=Design: Quick Dragon's Eye", "=ds=#p12# (370)"};
- { 11, 42308, "", "=q3=Design: Rigid Dragon's Eye", "=ds=#p12# (370)"};
- { 12, 42309, "", "=q3=Design: Runed Dragon's Eye", "=ds=#p12# (370)"};
- { 13, 42310, "", "=q3=Design: Smooth Dragon's Eye", "=ds=#p12# (370)"};
- { 14, 42311, "", "=q3=Design: Solid Dragon's Eye", "=ds=#p12# (370)"};
- { 15, 42312, "", "=q3=Design: Sparkling Dragon's Eye", "=ds=#p12# (370)"};
- { 16, 42313, "", "=q3=Design: Stormy Dragon's Eye", "=ds=#p12# (370)"};
- { 17, 42314, "", "=q3=Design: Subtle Dragon's Eye", "=ds=#p12# (370)"};
- { 18, 42315, "", "=q3=Design: Thick Dragon's Eye", "=ds=#p12# (370)"};
- { 20, 42652, "", "=q4=Design: Titanium Earthguard Chain", "=ds=#p12# (420)"};
- { 21, 42649, "", "=q4=Design: Titanium Earthguard Ring", "=ds=#p12# (420)"};
- { 22, 42648, "", "=q4=Design: Titanium Impact Band", "=ds=#p12# (420)"};
- { 23, 42651, "", "=q4=Design: Titanium Impact Choker", "=ds=#p12# (420)"};
- { 24, 42653, "", "=q4=Design: Titanium Spellshock Necklace", "=ds=#p12# (420)"};
- { 25, 42650, "", "=q4=Design: Titanium Spellshock Ring", "=ds=#p12# (420)"};
- Prev = "JewelcraftingDaily5";
- Back = "JEWELCRAFTINGDAILYMENU";
- };
-
+---------------------
+--- Blacksmithing ---
+---------------------
+
+AtlasLoot_Data["SmithingWRATH"] = {
+ Name = BLACKSMITHING;
+ Type = "Crafting";
+ {
+ Name = BabbleInventory["Armor"] .. " - Chest";
+ { 1, "s67130", "47592", "=q4=Breastplate of the White Knight", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 2, "s67091", "47591", "=q4=Breastplate of the White Knight", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 3, "s67095", "47593", "=q4=Sunforged Breastplate", "=ds=" .. AL["Drop"] .. ", " ..BabbleZone["Trial of the Crusader"] };
+ { 4, "s67134", "47594", "=q4=Sunforged Breastplate", "=ds=" .. AL["Drop"] .. ", " ..BabbleZone["Trial of the Crusader"] };
+ { 5, "s67093", "47589", "=q4=Titanium Razorplate", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 6, "s67132", "47590", "=q4=Titanium Razorplate", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 7, "s61008", "43586", "=q4=Icebane Chestguard", "=ds=" .. AL["Trainer"] };
+ { 8, "s56555", "42725", "=q3=Ornate Saronite Hauberk", "=ds=" .. AL["Trainer"] };
+ { 9, "s55311", "41353", "=q3=Savage Saronite Hauberk", "=ds=" .. AL["Trainer"] };
+ { 10, "s55058", "41129", "=q3=Brilliant Saronite Breastplate", "=ds=" .. AL["Trainer"] };
+ { 11, "s54553", "40672", "=q3=Tempered Saronite Breastplate", "=ds=" .. AL["Trainer"] };
+ { 12, "s54944", "40951", "=q2=Spiked Cobalt Chestpiece", "=ds=" .. AL["Trainer"] };
+ { 13, "s54981", "40959", "=q2=Reinforced Cobalt Chestpiece", "=ds=" .. AL["Drop"] .. ": " ..BabbleZone["Sholazar Basin"] };
+ { 14, "s52570", "39085", "=q2=Cobalt Chestpiece", "=ds=" .. AL["Trainer"] };
+ };
+ { Name = BabbleInventory["Armor"] .. " - Feet";
+ { 1, "s70568", "49907", "=q4=Boots of Kingly Upheaval", "=ds=" .. AL["Vendor"] .. "" };
+ { 2, "s70566", "49906", "=q4=Hellfrozen Bonegrinders", "=ds=" .. AL["Vendor"] .. "" };
+ { 3, "s63188", "45559", "=q4=Battlelord's Plate Boots", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 4, "s63192", "45560", "=q4=Spiked Deathdealers", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 5, "s63190", "45561", "=q4=Treads of Destiny", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 6, "s55377", "41394", "=q4=Brilliant Titansteel Treads", "=ds=" .. AL["Trainer"] };
+ { 7, "s55375", "41391", "=q4=Spiked Titansteel Treads", "=ds=" .. AL["Trainer"] };
+ { 8, "s55376", "41392", "=q4=Tempered Titansteel Treads", "=ds=" .. AL["Trainer"] };
+ { 9, "s61010", "43588", "=q4=Icebane Treads", "=ds=" .. AL["Trainer"] };
+ { 10, "s56552", "42730", "=q3=Ornate Saronite Walkers", "=ds=" .. AL["Trainer"] };
+ { 11, "s55308", "41348", "=q3=Savage Saronite Walkers", "=ds=" .. AL["Trainer"] };
+ { 12, "s55057", "41128", "=q3=Brilliant Saronite Boots", "=ds=" .. AL["Trainer"] };
+ { 13, "s54552", "40671", "=q3=Tempered Saronite Boots", "=ds=" .. AL["Trainer"] };
+ { 14, "s54918", "40949", "=q2=Spiked Cobalt Boots", "=ds=" .. AL["Trainer"] };
+ { 15, "s52569", "39088", "=q2=Cobalt Boots", "=ds=" .. AL["Trainer"] };
+ { 16, "s70563", "49905", "=q4=Protectors of Life", "=ds=" .. AL["Vendor"] .. "" };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Hands";
+ { 1, "s55301", "41357", "=q3=Daunting Handguards", "=ds=" .. AL["Trainer"] };
+ { 2, "s56553", "42724", "=q3=Ornate Saronite Gauntlets", "=ds=" .. AL["Trainer"] };
+ { 3, "s55300", "41356", "=q3=Righteous Gauntlets", "=ds=" .. AL["Trainer"] };
+ { 4, "s55309", "41349", "=q3=Savage Saronite Gauntlets", "=ds=" .. AL["Trainer"] };
+ { 5, "s55015", "41114", "=q3=Tempered Saronite Gauntlets", "=ds=" .. AL["Trainer"] };
+ { 6, "s55056", "41127", "=q3=Brilliant Saronite Gauntlets", "=ds=" .. AL["Trainer"] };
+ { 7, "s54945", "40952", "=q2=Spiked Cobalt Gauntlets", "=ds=" .. AL["Trainer"] };
+ { 8, "s55835", "41975", "=q2=Cobalt Gauntlets", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Head";
+ { 1, "s55374", "41388", "=q4=Brilliant Titansteel Helm", "=ds=" .. AL["Trainer"] };
+ { 2, "s55372", "41386", "=q4=Spiked Titansteel Helm", "=ds=" .. AL["Trainer"] };
+ { 3, "s55373", "41387", "=q4=Tempered Titansteel Helm", "=ds=" .. AL["Trainer"] };
+ { 4, "s55302", "41344", "=q3=Helm of Command", "=ds=" .. AL["Trainer"] };
+ { 5, "s56556", "42728", "=q3=Ornate Saronite Skullshield", "=ds=" .. AL["Trainer"] };
+ { 6, "s55312", "41350", "=q3=Savage Saronite Skullshield", "=ds=" .. AL["Trainer"] };
+ { 7, "s59441", "43870", "=q3=Brilliant Saronite Helm", "=ds=" .. AL["Trainer"] };
+ { 8, "s54555", "40673", "=q3=Tempered Saronite Helm", "=ds=" .. AL["Trainer"] };
+ { 9, "s54949", "40955", "=q2=Horned Cobalt Helm", "=ds=" .. AL["Trainer"] };
+ { 10, "s54979", "40957", "=q2=Reinforced Cobalt Helm", "=ds=" .. AL["Drop"] .. ": " .. BabbleZone["Grizzly Hills"] };
+ { 11, "s54917", "40942", "=q2=Spiked Cobalt Helm", "=ds=" .. AL["Trainer"] };
+ { 12, "s52571", "39084", "=q2=Cobalt Helm", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Legs";
+ { 1, "s70565", "49903", "=q4=Legplates of Painful Death", "=ds=" .. AL["Vendor"] .. "" };
+ { 2, "s70567", "49904", "=q4=Pillars of Might", "=ds=" .. AL["Vendor"] .. "" };
+ { 3, "s70562", "49902", "=q4=Puresteel Legplates", "=ds=" .. AL["Vendor"] .. "" };
+ { 4, "s55303", "41345", "=q3=Daunting Legplates", "=ds=" .. AL["Trainer"] };
+ { 5, "s56554", "42726", "=q3=Ornate Saronite Legplates", "=ds=" .. AL["Trainer"] };
+ { 6, "s55304", "41346", "=q3=Righteous Greaves", "=ds=" .. AL["Trainer"] };
+ { 7, "s55310", "41347", "=q3=Savage Saronite Legplates", "=ds=" .. AL["Trainer"] };
+ { 8, "s55187", "41190", "=q3=Legplates of Conquest", "=ds=" .. AL["Trainer"] };
+ { 9, "s55055", "41126", "=q3=Brilliant Saronite Legplates", "=ds=" .. AL["Trainer"] };
+ { 10, "s54554", "40674", "=q3=Tempered Saronite Legplates", "=ds=" .. AL["Trainer"] };
+ { 11, "s54947", "40943", "=q2=Spiked Cobalt Legplates", "=ds=" .. AL["Trainer"] };
+ { 12, "s54980", "40958", "=q2=Reinforced Cobalt Legplates", "=ds=" .. AL["Drop"] .. ": " .. BabbleZone["Zul'Drak"] };
+ { 13, "s52567", "39086", "=q2=Cobalt Legplates", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Shoulder";
+ { 1, "s56550", "42727", "=q3=Ornate Saronite Pauldrons", "=ds=" .. AL["Trainer"] };
+ { 2, "s55306", "41351", "=q3=Savage Saronite Pauldrons", "=ds=" .. AL["Trainer"] };
+ { 3, "s59440", "43865", "=q3=Brilliant Saronite Pauldrons", "=ds=" .. AL["Trainer"] };
+ { 4, "s54556", "40675", "=q3=Tempered Saronite Shoulders", "=ds=" .. AL["Trainer"] };
+ { 5, "s54941", "40950", "=q2=Spiked Cobalt Shoulders", "=ds=" .. AL["Trainer"] };
+ { 6, "s54978", "40956", "=q2=Reinforced Cobalt Shoulders", "=ds=" .. AL["Drop"] .. ": " .. BabbleZone["Dragonblight"] };
+ { 7, "s52572", "39083", "=q2=Cobalt Shoulders", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Waist";
+ { 1, "s63187", "45550", "=q4=Belt of the Titans", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 2, "s63191", "45551", "=q4=Indestructible Plate Girdle", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 3, "s63189", "45552", "=q4=Plate Girdle of Righteousness", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 4, "s61009", "43587", "=q4=Icebane Girdle", "=ds=" .. AL["Trainer"] };
+ { 5, "s56551", "42729", "=q3=Ornate Saronite Waistguard", "=ds=" .. AL["Trainer"] };
+ { 6, "s55307", "41352", "=q3=Savage Saronite Waistguard", "=ds=" .. AL["Trainer"] };
+ { 7, "s59436", "43860", "=q3=Brilliant Saronite Belt", "=ds=" .. AL["Trainer"] };
+ { 8, "s54551", "40669", "=q3=Tempered Saronite Belt", "=ds=" .. AL["Trainer"] };
+ { 9, "s54946", "40953", "=q2=Spiked Cobalt Belt", "=ds=" .. AL["Trainer"] };
+ { 10, "s52568", "39087", "=q2=Cobalt Belt", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = BabbleInventory["Armor"] .. " - Wrist";
+ { 1, "s67131", "47571", "=q4=Saronite Swordbreakers", "=ds=" .. AL["Drop"] .. ", " ..BabbleZone["Trial of the Crusader"] };
+ { 2, "s67092", "47570", "=q4=Saronite Swordbreakers", "=ds=" .. AL["Drop"] .. ", " ..BabbleZone["Trial of the Crusader"] };
+ { 3, "s67096", "47574", "=q4=Sunforged Bracers", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 4, "s67135", "47575", "=q4=Sunforged Bracers", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 5, "s67094", "47572", "=q4=Titanium Spikeguards", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 6, "s67133", "47573", "=q4=Titanium Spikeguards", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 7, "s56549", "42723", "=q3=Ornate Saronite Bracers", "=ds=" .. AL["Trainer"] };
+ { 8, "s55305", "41354", "=q3=Savage Saronite Bracers", "=ds=" .. AL["Trainer"] };
+ { 9, "s55298", "41355", "=q3=Vengeance Bindings", "=ds=" .. AL["Trainer"] };
+ { 10, "s55017", "41116", "=q3=Tempered Saronite Bracers", "=ds=" .. AL["Trainer"] };
+ { 11, "s59438", "43864", "=q3=Brilliant Saronite Bracers", "=ds=" .. AL["Trainer"] };
+ { 12, "s54948", "40954", "=q2=Spiked Cobalt Bracers", "=ds=" .. AL["Trainer"] };
+ { 13, "s55834", "41974", "=q2=Cobalt Bracers", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = "Weapon - OneHanded";
+ { 1, "s63182", "45085", "=q4=Titansteel Spellblade", "=ds=" .. AL["Trainer"] };
+ { 2, "s55370", "41383", "=q4=Titansteel Bonecrusher", "=ds=" .. AL["Trainer"] };
+ { 3, "s55371", "41384", "=q4=Titansteel Guardian", "=ds=" .. AL["Trainer"] };
+ { 4, "s56234", "42435", "=q4=Titansteel Shanker", "=ds=" .. AL["Trainer"] };
+ { 5, "s55183", "41186", "=q3=Corroded Saronite Edge", "=ds=" .. AL["Trainer"] };
+ { 6, "s55184", "41187", "=q3=Corroded Saronite Woundbringer", "=ds=" .. AL["Trainer"] };
+ { 7, "s56280", "42443", "=q3=Cudgel of Saronite Justice", "=ds=" .. AL["Trainer"] };
+ { 8, "s55182", "41185", "=q3=Furious Saronite Beatstick", "=ds=" .. AL["Trainer"] };
+ { 9, "s59442", "43871", "=q3=Saronite Spellblade", "=ds=" .. AL["Trainer"] };
+ { 10, "s55181", "41184", "=q3=Saronite Shiv", "=ds=" .. AL["Trainer"] };
+ { 11, "s55179", "41183", "=q3=Saronite Ambusher", "=ds=" .. AL["Trainer"] };
+ { 12, "s55177", "41182", "=q3=Savage Cobalt Slicer", "=ds=" .. AL["Trainer"] };
+ { 13, "s55204", "41243", "=q2=Notched Cobalt War Axe", "=ds=" .. AL["Trainer"] };
+ { 14, "s55201", "41240", "=q2=Cobalt Tenderizer", "=ds=" .. AL["Trainer"] };
+ { 15, "s55200", "41239", "=q2=Sturdy Cobalt Quickblade", "=ds=" .. AL["Trainer"] };
+
+ };
+ {
+ Name = "Weapon - TwoHanded";
+ { 1, "s55369", "41257", "=q4=Titansteel Destroyer", "=ds=" .. AL["Trainer"] };
+ { 2, "s55185", "41188", "=q3=Saronite Mindcrusher", "=ds=" .. AL["Trainer"] };
+ { 3, "s55174", "41181", "=q3=Honed Cobalt Cleaver", "=ds=" .. AL["Trainer"] };
+ { 4, "s55203", "41242", "=q2=Forged Cobalt Claymore", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = "Weapon - Thrown";
+ { 1, "s55206", "41245", "=q3=Deadly Saronite Dirk", "=ds=" .. AL["Trainer"] };
+ { 2, "s55202", "41241", "=q2=Sure-fire Shuriken", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = "Shield";
+ { 1, "s56400", "42508", "=q4=Titansteel Shield Wall", "=ds=" .. AL["Trainer"] };
+ { 2, "s55014", "41113", "=q3=Saronite Bulwark", "=ds=" .. AL["Trainer"] };
+ { 3, "s54557", "40670", "=q3=Saronite Defender", "=ds=" .. AL["Trainer"] };
+ { 4, "s54550", "40668", "=q2=Cobalt Triangle Shield", "=ds=" .. AL["Trainer"] };
+ { 5, "s55013", "41117", "=q3=Saronite Protector", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Item Enhancements"];
+ { 1, "s55628", "INV_Jewelcrafting_ThoriumSetting", "=ds=Socket Bracer", "=ds=" .. AL["Trainer"] };
+ { 2, "s55641", "INV_GAUNTLETS_61", "=ds=Socket Gloves", "=ds=" .. AL["Trainer"] };
+ { 3, "s55656", "41611", "=q3=Eternal Belt Buckle", "=ds=" .. AL["Trainer"] };
+ { 4, "s62202", "44936", "=q3=Titanium Plating", "=ds=" .. AL["Vendor"] };
+ { 5, "s56357", "42500", "=q2=Titanium Shield Spike", "=ds=" .. AL["Trainer"] };
+ { 6, "s55839", "41976", "=q2=Titanium Weapon Chain", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s59406", "43853", "=q2=Titanium Skeleton Key", "=ds=" .. AL["Trainer"] };
+ { 2, "s59405", "43854", "=q2=Cobalt Skeleton Key", "=ds=" .. AL["Trainer"] };
+ { 3, "s55732", "41745", "=q1=Titanium Rod", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = ARMORSMITH;
+ { 1, "s55186", "41189", "=q3=Chestplate of Conquest", "=ds=" .. AL["Trainer"] };
+ { 2, "s55187", "41190", "=q3=Legplates of Conquest", "=ds=#sr# 415" };
+ { 3, "s55186", "41189", "=q3=Chestplate of Conquest", "=ds=#sr# 415" };
+ { 4, "s34530", "23564", "=q4=Twisting Nether Chain Shirt", "=ds=#sr# 375" };
+ { 5, "s34534", "28484", "=q4=Bulwark of Kings", "=ds=#sr# 375" };
+ { 6, "s36257", "28485", "=q4=Bulwark of the Ancient Kings", "=ds=#sr# 375" };
+ { 7, "s36256", "23565", "=q4=Embrace of the Twisting Nether", "=ds=#sr# 375" };
+ { 8, "s36129", "30074", "=q3=Heavy Earthforged Breastplate", "=ds=#sr# 330" };
+ { 9, "s36130", "30076", "=q3=Stormforged Hauberk", "=ds=#sr# 330" };
+ { 10, "s34533", "28483", "=q4=Breastplate of Kings", "=ds=#sr# 350" };
+ { 11, "s34529", "23563", "=q4=Nether Chain Shirt", "=ds=#sr# 350" };
+ { 12, "s36122", "30069", "=q3=Earthforged Leggings", "=ds=#sr# 260" };
+ { 13, "s36124", "30070", "=q3=Windforged Leggings", "=ds=#sr# 260" };
+
+ };
+ {
+ Name = WEAPONSMITH;
+ Name = "Weapon - Twohanded";
+ { 1, "s36125", "30071", "=q3=Light Earthforged Blade", "=ds=#sr# 260" };
+ { 2, "s36128", "30073", "=q3=Light Emberforged Hammer", "=ds=#sr# 260" };
+ { 3, "s36126", "30072", "=q3=Light Skyforged Axe", "=ds=#sr# 260" };
+ { 4, "s55183", "41186", "=q3=Corroded Saronite Edge", "=ds=#sr# 415" };
+ { 5, "s55184", "41187", "=q3=Corroded Saronite Woundbringer", "=ds=#sr# 415" };
+ { 6, "s55185", "41188", "=q3=Saronite Mindcrusher", "=ds=#sr# 415" };
+ };
+ {
+ Name = AXESMITH;
+ { 1, "s36135", "30088", "=q3=Skyforged Great Axe", "=ds=#sr# 330" };
+ { 2, "s36134", "30087", "=q3=Stormforged Axe", "=ds=#sr# 330" };
+ { 3, "s34543", "28434", "=q4=Lunar Crescent", "=ds=#sr# 350" };
+ { 4, "s34541", "28431", "=q4=The Planar Edge", "=ds=#sr# 350" };
+ { 5, "s34542", "28432", "=q4=Black Planar Edge", "=ds=#sr# 375" };
+ { 6, "s36261", "28436", "=q4=Bloodmoon", "=ds=#sr# 375" };
+ { 7, "s34544", "28435", "=q4=Mooncleaver", "=ds=#sr# 375" };
+ { 8, "s36260", "28433", "=q4=Wicked Edge of the Planes", "=ds=#sr# 375" };
+ };
+ {
+ Name = HAMMERSMITH;
+ { 1, "s36137", "30093", "=q3=Great Earthforged Hammer", "=ds=#sr# 330" };
+ { 2, "s36136", "30089", "=q3=Lavaforged Warhammer", "=ds=#sr# 330" };
+ { 3, "s34545", "28437", "=q4=Drakefist Hammer", "=ds=#sr# 350" };
+ { 4, "s34547", "28440", "=q4=Thunder", "=ds=#sr# 350" };
+ { 5, "s34548", "28441", "=q4=Deep Thunder", "=ds=#sr# 375" };
+ { 6, "s34546", "28438", "=q4=Dragonmaw", "=ds=#sr# 375" };
+ { 7, "s36262", "28439", "=q4=Dragonstrike", "=ds=#sr# 375" };
+ { 8, "s36263", "28442", "=q4=Stormherald", "=ds=#sr# 375" };
+ };
+ {
+ Name = SWORDSMITH;
+ { 1, "s36133", "30086", "=q3=Stoneforged Claymore", "=ds=#sr# 330" };
+ { 2, "s36131", "30077", "=q3=Windforged Rapier", "=ds=#sr# 330" };
+ { 3, "s34535", "28425", "=q4=Fireguard", "=ds=#sr# 350" };
+ { 4, "s34538", "28428", "=q4=Lionheart Blade", "=ds=#sr# 350" };
+ { 5, "s36258", "28427", "=q4=Blazefury", "=ds=#sr# 375" };
+ { 6, "s34537", "28426", "=q4=Blazeguard", "=ds=#sr# 375" };
+ { 7, "s34540", "28429", "=q4=Lionheart Champion", "=ds=#sr# 375" };
+ { 8, "s36259", "28430", "=q4=Lionheart Executioner", "=ds=#sr# 375" };
+ };
+};
+
+---------------
+--- Cooking ---
+---------------
+
+AtlasLoot_Data["CookingWRATH"] = {
+ Name = COOKING;
+ Type = "CraftingNoBF";
+ {
+ Name = COOKING;
+ { 1, "s57423", "43015", "=q1=Fish Feast", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s58527", "43478", "=q1=Gigantic Feast", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s58528", "43480", "=q1=Small Feast", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s57441", "42999", "=q1=Blackened Dragonfin", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s57438", "42997", "=q1=Blackened Worg Steak", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s64358", "45932", "=q1=Black Jelly", "=ds=" .. AL["Trainer"] };
+ { 7, "s57435", "43004", "=q1=Critter Bites", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s57439", "42998", "=q1=Cuttlesteak", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 9, "s57442", "43000", "=q1=Dragonfin Filet", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 10, "s45568", "34767", "=q1=Firecracker Salmon", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 11, "s57436", "42995", "=q1=Hearty Rhino", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 12, "s45570", "34769", "=q1=Imperial Manta Steak", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 13, "s45555", "34754", "=q1=Mega Mammoth Meal", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 14, "s45559", "34758", "=q1=Mighty Rhino Dogs", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 15, "s45567", "34766", "=q1=Poached Northern Sculpin", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 16, "s57434", "42994", "=q1=Rhinolicious Wyrmsteak", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 17, "s57437", "42996", "=q1=Snapper Extreme", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 18, "s57440", "43005", "=q1=Spiced Mammoth Treats", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 19, "s45557", "34756", "=q1=Spiced Wyrm Burger", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 20, "s45571", "34768", "=q1=Spicy Blue Nettlefish", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 21, "s57433", "42993", "=q1=Spicy Fried Herring", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 22, "s45556", "34755", "=q1=Tender Shoveltusk Steak", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 23, "s57443", "43001", "=q1=Tracker Snacks", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 24, "s45558", "34757", "=q1=Very Burnt Worg", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 25, "s62350", "44953", "=q1=Worg Tartare", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 26, "s45554", "34753", "=q1=Great Feast", "=ds=" .. AL["Trainer"] };
+ { 27, "s53056", "39520", "=q1=Kungaloosh", "=ds=" .. AL["Quest"] .. "" };
+ { 28, "s58523", "43491", "=q1=Bad Clams", "=ds=" .. AL["Drop"] .. "" };
+ { 29, "s45569", "42942", "=q1=Baked Manta Ray", "=ds=" .. AL["Trainer"] };
+ { 30, "s58065", "43268", "=q1=Dalaran Clam Chowder", "=ds=" .. AL["Trainer"] };
+ };
+};
+
+------------------
+--- Enchanting ---
+------------------
+
+AtlasLoot_Data["EnchantingWRATH"] = {
+ Name = ENCHANTING;
+ {
+ Name = AL["Enchant Boots"];
+ { 1, "s60763", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Assault","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s47901", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Tuskarr's Vitality","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s44589", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Superior Agility", "=ds=" .. AL["Trainer"] };
+ { 4, "s44508", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Spirit", "=ds=" .. AL["Trainer"] };
+ { 5, "s44584", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Vitality", "=ds=" .. AL["Trainer"] };
+ { 6, "s60606", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Assault", "=ds=" .. AL["Trainer"] };
+ { 7, "s44528", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Fortitude", "=ds=" .. AL["Trainer"] };
+ { 8, "s60623", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Icewalker", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Enchant Bracer"];
+ { 1, "s62256", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Stamina","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s60767", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Spellpower","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s44575", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Assault","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s44593", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Spirit", "=ds=" .. AL["Trainer"] .. "" };
+ { 5, "s44598", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Expertise", "=ds=" .. AL["Trainer"] };
+ { 6, "s44616", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Stats", "=ds=" .. AL["Trainer"] };
+ { 7, "s44635", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Spellpower", "=ds=" .. AL["Trainer"] };
+ { 8, "s44555", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Exceptional Intellect", "=ds=" .. AL["Trainer"] };
+ { 9, "s60616", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Striking", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Enchant Chest"];
+ { 1, "s27958", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Mana", "=ds=" .. AL["Trainer"] .. "" };
+ { 2, "s44588", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Resilience","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s60692", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Powerful Stats","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s47900", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Super Health", "=ds=" .. AL["Trainer"] };
+ { 5, "s44509", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Mana Restoration", "=ds=" .. AL["Trainer"] };
+ { 6, "s47766", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Defense", "=ds=" .. AL["Trainer"] };
+ { 7, "s44492", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Mighty Health", "=ds=" .. AL["Trainer"] };
+ { 8, "s44623", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Super Stats", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Enchant Cloak"];
+ { 1, "s60609", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Speed", "=ds=" .. AL["Trainer"] .. "" };
+ { 2, "s44631", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Shadow Armor","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s47899", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Wisdom","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s44591", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Titanweave","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s47898", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Speed","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s47672", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Mighty Armor","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s60663", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Major Agility", "=ds=" .. AL["Trainer"] };
+ { 8, "s44596", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Arcane Resistance", "=ds=" .. AL["Drop"] };
+ { 9, "s44556", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Fire Resistance", "=ds=" .. AL["Drop"] };
+ { 10, "s44483", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Frost Resistance", "=ds=" .. AL["Drop"] };
+ { 11, "s44494", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Nature Resistance", "=ds=" .. AL["Drop"] };
+ { 12, "s44590", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Shadow Resistance", "=ds=" .. AL["Drop"] };
+ { 13, "s44500", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Agility", "=ds=" .. AL["Trainer"] };
+ { 14, "s44582", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Spell Piercing", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Enchant Gloves"];
+ { 1, "s71692", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Angler", "=ds=" .. AL["Drop"] .. "" };
+ { 2, "s44625", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Armsman","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s60668", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Crusher", "=ds=" .. AL["Trainer"] };
+ { 4, "s44529", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Agility", "=ds=" .. AL["Trainer"] .. "" };
+ { 5, "s44488", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Precision", "=ds=" .. AL["Trainer"] };
+ { 6, "s44484", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Expertise", "=ds=" .. AL["Trainer"] };
+ { 7, "s44513", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Greater Assault", "=ds=" .. AL["Trainer"] };
+ { 8, "s44506", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Gatherer", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Enchant Ring"];
+ { 1, "s44645", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Assault", "=ds=" .. AL["Trainer"] };
+ { 2, "s44636", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Greater Spellpower", "=ds=" .. AL["Trainer"] };
+ { 3, "s59636", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Stamina", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Enchant Shield"];
+ { 1, "s44489", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Defense", "=ds=" .. AL["Trainer"] };
+ { 2, "s60653", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Greater Intellect", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Enchant 2H Weapon"];
+ { 1, "s60691", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Massacre","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s44595", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Scourgebane","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s44630", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Greater Savagery", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Enchant Weapon"];
+ { 1, "s64441", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Blade Ward", "=ds=#sr# 450" };
+ { 2, "s64579", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Blood Draining", "=ds=#sr# 450" };
+ { 3, "s59619", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Accuracy","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s59621", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Berserking","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s59625", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Black Magic","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s44576", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lifeward","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s60714", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Mighty Spellpower","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s60707", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Superior Potency","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 9, "s44621", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Giant Slayer","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 10, "s44524", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Icebreaker","=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 11, "s44633", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Exceptional Agility", "=ds=" .. AL["Trainer"] };
+ { 12, "s44510", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Exceptional Spirit", "=ds=" .. AL["Trainer"] };
+ { 13, "s44629", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Exceptional Spellpower", "=ds=" .. AL["Trainer"] };
+ { 14, "s60621", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Greater Potency", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = "Enchant Staff";
+ { 1, "s62948", "Spell_Holy_GreaterHeal", "=ds=Enchant Staff - Greater Spellpower", "=ds=" };
+ { 2, "s62959", "Spell_Holy_GreaterHeal", "=ds=Enchant Staff - Spellpower", "=ds=" };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s28028", "22459", "=q4=Void Sphere", "=ds=#sr# 350" };
+ { 2, "s60619", "44452", "=q3=Runed Titanium Rod", "=ds=" .. AL["Trainer"] };
+ };
+};
+
+-------------------
+--- Engineering ---
+-------------------
+
+AtlasLoot_Data["EngineeringWRATH"] = {
+ Name = ENGINEERING;
+ Type = "Crafting";
+ {
+ Name = "Ammo";
+ { 1, "s72953", "52021", "=q4=Iceblade Arrow", "=ds=#p17#" };
+ { 2, "s72952", "52020", "=q4=Shatter Rounds", "=ds=#p18#" };
+ { 3, "s56475", "41165", "=q1=Saronite Arrow Maker", "=ds=#sr# 415" };
+ { 4, "s56474", "41164", "=q1=Ultrasafe Bullet Machine", "=ds=#sr# 410" };
+ };
+ {
+ Name = BabbleInventory["Armor"];
+ { 1, "s56480", "42549", "=q4=Armored Titanium Goggles", "=ds=#sr# 440" };
+ { 2, "s56483", "42552", "=q4=Charged Titanium Specs", "=ds=#sr# 440" };
+ { 3, "s56487", "42555", "=q4=Electroflux Sight Enhancers", "=ds=#sr# 440" };
+ { 4, "s56486", "42554", "=q4=Greensight Gogs", "=ds=#sr# 440" };
+ { 5, "s56574", "42551", "=q4=Truesight Ice Blinders", "=ds=#sr# 440" };
+ { 6, "s56484", "42553", "=q4=Visage Liquification Goggles", "=ds=#sr# 440" };
+ { 7, "s56481", "42550", "=q4=Weakness Spectralizers", "=ds=#sr# 440" };
+ { 8, "s62271", "44949", "=q4=Unbreakable Healing Amplifiers", "=ds=#sr# 440" };
+ { 9, "s56469", "41121", "=q3=Gnomish Lightning Generator", "=ds=#sr# 425" };
+ { 10, "s56473", "40895", "=q3=Gnomish X-Ray Specs", "=ds=#sr# 425" };
+ { 11, "s61483", "44742", "=q3=Mechanized Snow Goggles", "=ds=#sr# 420" };
+ { 12, "s56467", "40865", "=q3=Noise Machine", "=ds=#sr# 420" };
+ { 13, "s56466", "40767", "=q3=Sonic Booster", "=ds=#sr# 420" };
+ };
+ {
+ Name = AL["Explosives"];
+ { 1, "s56514", "42641", "=q1=Global Thermal Sapper Charge", "=ds=#sr# 425" };
+ { 2, "s56468", "44951", "=q1=Box of Bombs", "=ds=#sr# 405" };
+ { 3, "s56463", "40536", "=q1=Explosive Decoy", "=ds=#sr# 375" };
+ { 4, "s56460", "40771", "=q1=Cobalt Frag Bomb", "=ds=#sr# 350" };
+ };
+ {
+ Name = AL["Item Enhancements"];
+ { 1, "s56478", "41167", "=q3=Heartseeker Scope", "=ds=#sr# 430" };
+ { 2, "s56470", "41146", "=q3=Sun Scope", "=ds=#sr# 425" };
+ { 3, "s61471", "44739", "=q1=Diamond-cut Refractor Scope", "=ds=#sr# 390" };
+ { 16, "s55016", "Trade_Engineering", "=ds=Nitro Boosts", "=ds=#sr# 405" };
+ { 17, "s54998", "Trade_Engineering", "=ds=Hand-Mounted Pyro Rocket", "=ds=#sr# 400" };
+ { 18, "s54999", "Trade_Engineering", "=ds=Hyperspeed Accelerators", "=ds=#sr# 400" };
+ { 19, "s63770", "Trade_Engineering", "=ds=Reticulated Armor Webbing", "=ds=#sr# 400" };
+ { 20, "s54736", "Trade_Engineering", "=ds=Personal Electromagnetic Pulse Generator", "=ds=#sr# 390" };
+ { 21, "s54793", "Trade_Engineering", "=ds=Belt-Clipped Spynoculars", "=ds=#sr# 380" };
+ { 22, "s55002", "Trade_Engineering", "=ds=Flexweave Underlay", "=ds=#sr# 380" };
+ { 23, "s63765", "Trade_Engineering", "=ds=Springy Arachnoweave", "=ds=#sr# 380" };
+ };
+ {
+ Name = BabbleInventory["Weapon"];
+ { 1, "s56479", "41168", "=q4=Armor Plated Combat Shotgun", "=ds=#sr# 450" };
+ { 2, "s60874", "44504", "=q4=Nesingwary 4000", "=ds=#sr# 450" };
+ { 3, "s54353", "39688", "=q3=Mark \"S\" Boomstick", "=ds=#sr# 400" };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s68067", "49040", "=q4=Jeeves", "=ds=#sr# 450" };
+ { 2, "s60866", "41508", "=q4=Mechano-hog", "=ds=#sr# 450" };
+ { 3, "s60867", "44413", "=q4=Mekgineer's Chopper", "=ds=#sr# 450" };
+ { 4, "s56472", "40768", "=q3=MOLL-E", "=ds=#sr# 425" };
+ { 5, "s67920", "48933", "=q3=Wormhole Generator: Northrend", "=ds=#sr# 415" };
+ { 6, "s30349", "23775", "=q3=Titanium Toolbox", "=ds=#sr# 405" };
+ };
+ {
+ Name = AL["Reagents"];
+ { 1, "s56349", "39681", "=q1=Handful of Cobalt Bolts", "=ds=" .. AL["Trainer"] .. "" };
+ { 2, "s56471", "39683", "=q1=Froststeel Tube", "=ds=#sr# 390" };
+ { 3, "s56464", "39682", "=q1=Overcharged Capacitor", "=ds=#sr# 375" };
+ { 4, "s53281", "39690", "=q1=Volatile Blasting Trigger", "=ds=" .. AL["Trainer"] .. "" };
+ };
+ {
+ Name = GNOMISH;
+ { 1, "s72953", "52021", "=q4=Iceblade Arrow", "=ds=#sr# 450" };
+ { 2, "s30575", "23829", "=q4=Gnomish Battle Goggles", "=ds=#sr# 375" };
+ { 3, "s30574", "23828", "=q4=Gnomish Power Goggles", "=ds=#sr# 375" };
+ { 4, "s56473", "40895", "=q3=Gnomish X-Ray Specs", "=ds=#sr# 425" };
+ { 5, "s30570", "23825", "=q3=Nigh-Invulnerability Belt", "=ds=#sr# 350" };
+ { 6, "s30569", "23835", "=q3=Gnomish Poultryizer", "=ds=#sr# 340" };
+ { 7, "s36955", "30544", "=q2=Ultrasafe Transporter - Toshley's Station", "=ds=#sr# 350" };
+ { 8, "s23489", "18986", "=q2=Ultrasafe Transporter - Gadgetzan", "=ds=#sr# 260" };
+ { 9, "s23129", "18660", "=q2=World Enlarger", "=ds=#sr# 260" };
+ { 10, "s12907", "10726", "=q2=Gnomish Mind Control Cap", "=ds=#sr# 235" };
+ { 11, "s12905", "10724", "=q2=Gnomish Rocket Boots", "=ds=#sr# 225" };
+ { 12, "s12903", "10721", "=q2=Gnomish Harm Prevention Belt", "=ds=#sr# 215" };
+ { 13, "s12897", "10545", "=q2=Gnomish Goggles", "=ds=#sr# 210" };
+ { 14, "s30568", "23841", "=q1=Gnomish Flame Turret", "=ds=#sr# 325" };
+ { 15, "s23096", "18645", "=q1=Alarm-O-Bot", "=ds=#sr# 265" };
+ { 16, "s12759", "10645", "=q1=Gnomish Death Ray", "=ds=#sr# 240" };
+ { 17, "s12906", "10725", "=q1=Gnomish Battle Chicken", "=ds=#sr# 230" };
+ { 18, "s12902", "10720", "=q1=Gnomish Net-o-Matic Projector", "=ds=#sr# 210" };
+ { 19, "s12899", "10716", "=q1=Gnomish Shrink Ray", "=ds=#sr# 205" };
+ { 20, "s12895", "10713", "=q1=Inlaid Mithril Cylinder Plans", "=ds=#sr# 205" };
+ };
+ {
+ Name = GOBLIN;
+ { 1, "s72952", "52020", "=q4=Shatter Rounds", "=ds=#sr# 450" };
+ { 2, "s30565", "23838", "=q4=Foreman's Enchanted Helmet", "=ds=#sr# 375" };
+ { 3, "s30566", "23839", "=q4=Foreman's Reinforced Helmet", "=ds=#sr# 375" };
+ { 4, "s30563", "23836", "=q3=Goblin Rocket Launcher", "=ds=#sr# 350" };
+ { 5, "s36954", "30542", "=q2=Dimensional Ripper - Area 52", "=ds=#sr# 350" };
+ { 6, "s23486", "18984", "=q2=Dimensional Ripper - Everlook", "=ds=#sr# 260" };
+ { 7, "s12758", "10588", "=q2=Goblin Rocket Helmet", "=ds=#sr# 245" };
+ { 8, "s8895", "7189", "=q2=Goblin Rocket Boots", "=ds=#sr# 225" };
+ { 9, "s12718", "10543", "=q2=Goblin Construction Helmet", "=ds=#sr# 205" };
+ { 10, "s12717", "10542", "=q2=Goblin Mining Helmet", "=ds=#sr# 205" };
+ { 11, "s56514", "42641", "=q1=Global Thermal Sapper Charge", "=ds=#sr# 425" };
+ { 12, "s30560", "23827", "=q1=Super Sapper Charge", "=ds=#sr# 340" };
+ { 13, "s30558", "23826", "=q1=The Bigger One", "=ds=#sr# 325" };
+ { 14, "s23078", "18587", "=q1=Goblin Jumper Cables XL", "=ds=#sr# 265" };
+ { 15, "s12908", "10727", "=q1=Goblin Dragon Gun", "=ds=#sr# 240" };
+ { 16, "s12754", "10586", "=q1=The Big One", "=ds=#sr# 235" };
+ { 17, "s12755", "10587", "=q1=Goblin Bomb Dispenser", "=ds=#sr# 230" };
+ { 18, "s12716", "10577", "=q1=Goblin Mortar", "=ds=#sr# 205" };
+ { 19, "s12715", "10644", "=q1=Goblin Rocket Fuel Recipe", "=ds=#sr# 205" };
+ { 20, "s12760", "10646", "=q1=Goblin Sapper Charge", "=ds=#sr# 205" };
+ { 21, "s13240", "10577", "=q1=The Mortar: Reloaded", "=ds=#sr# 205" };
+ };
+};
+
+---------------------
+--- Jewelcrafting ---
+---------------------
+
+
+AtlasLoot_Data["JewelcraftingWRATH"] = {
+ Name = JEWELCRAFTING;
+ Type = "CraftingNoBF";
+ {
+ Name = AL["Red Gems"];
+ { 1, "s66447", "40111", "=q4=Bold Cardinal Ruby", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s66449", "40114", "=q4=Bright Cardinal Ruby", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s66448", "40112", "=q4=Delicate Cardinal Ruby", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s66453", "40116", "=q4=Flashing Cardinal Ruby", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s66451", "40117", "=q4=Fractured Cardinal Ruby", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s66450", "40118", "=q4=Precise Cardinal Ruby", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s66446", "40113", "=q4=Runed Cardinal Ruby", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s66452", "40115", "=q4=Subtle Cardinal Ruby", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 9, "s53830", "39996", "=q3=Bold Scarlet Ruby", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 10, "s53947", "39999", "=q3=Bright Scarlet Ruby", "=ds=" .. AL["Trainer"] };
+ { 11, "s53945", "39997", "=q3=Delicate Scarlet Ruby", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 12, "s53949", "40001", "=q3=Flashing Scarlet Ruby", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 13, "s53950", "40002", "=q3=Fractured Scarlet Ruby", "=ds=" .. AL["Drop"] .. " - " .. BabbleZone["The Storm Peaks"] };
+ { 14, "s53951", "40003", "=q3=Precise Scarlet Ruby", "=ds=" .. BabbleBoss["Herald Volazj"] .. " (" .. AL["Heroic"] ..")" };
+ { 15, "s53946", "39998", "=q3=Runed Scarlet Ruby", "=ds=" .. BabbleFaction["Kirin Tor"] ..": " .. BabbleFaction["Exalted"] };
+ { 16, "s53843", "39907", "=q2=Subtle Bloodstone", "=ds=" .. AL["Trainer"] };
+ { 17, "s53831", "39900", "=q2=Bold Bloodstone", "=ds=" .. AL["Trainer"] };
+ { 18, "s53835", "39906", "=q2=Bright Bloodstone", "=ds=" .. AL["Trainer"] };
+ { 19, "s53832", "39905", "=q2=Delicate Bloodstone", "=ds=" .. AL["Trainer"] };
+ { 20, "s53844", "39908", "=q2=Flashing Bloodstone", "=ds=" .. AL["Trainer"] };
+ { 21, "s53845", "39909", "=q2=Fractured Bloodstone", "=ds=" .. AL["Trainer"] };
+ { 22, "s54017", "39910", "=q2=Precise Bloodstone", "=ds=" .. AL["Trainer"] };
+ { 23, "s53834", "39911", "=q2=Runed Bloodstone", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Blue Gems"];
+ { 1, "s66500", "40121", "=q4=Lustrous Majestic Zircon", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s66497", "40119", "=q4=Solid Majestic Zircon", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s66498", "40120", "=q4=Sparkling Majestic Zircon", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s66499", "40122", "=q4=Stormy Majestic Zircon", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s53954", "40010", "=q3=Lustrous Sky Sapphire", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s53952", "40008", "=q3=Solid Sky Sapphire", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s53953", "40009", "=q3=Sparkling Sky Sapphire", "=ds=" .. AL["Trainer"] };
+ { 8, "s53955", "40011", "=q3=Stormy Sky Sapphire", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 9, "s53941", "39927", "=q2=Lustrous Chalcedony", "=ds=" .. AL["Trainer"] };
+ { 10, "s53934", "39919", "=q2=Solid Chalcedony", "=ds=" .. AL["Trainer"] };
+ { 11, "s53940", "39920", "=q2=Sparkling Chalcedony", "=ds=" .. AL["Trainer"] };
+ { 12, "s53943", "39932", "=q2=Stormy Chalcedony", "=ds=1250 #faction#" };
+ };
+ {
+ Name = AL["Yellow Gems"];
+ { 1, "s66503", "40123", "=q4=Brilliant King's Amber", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s66505", "40127", "=q4=Mystic King's Amber", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s66506", "40128", "=q4=Quick King's Amber", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s66501", "40125", "=q4=Rigid King's Amber", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s66502", "40124", "=q4=Smooth King's Amber", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s66504", "40126", "=q4=Thick King's Amber", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s53956", "40012", "=q3=Brilliant Autumn's Glow", "=ds=" .. AL["Trainer"] };
+ { 8, "s53960", "40016", "=q3=Mystic Autumn's Glow", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 9, "s53961", "40017", "=q3=Quick Autumn's Glow", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 10, "s53958", "40014", "=q3=Rigid Autumn's Glow", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 11, "s53957", "40013", "=q3=Smooth Autumn's Glow","=ds=" .. BabbleFaction["The Sons of Hodir"] .. ": " .. BabbleFaction["Exalted"] };
+ { 12, "s53959", "40015", "=q3=Thick Autumn's Glow", "=ds=" .. BabbleBoss["Cyanigosa"] .. " (" .. AL["Heroic"] .. ")" };
+ { 16, "s53852", "39912", "=q2=Brilliant Sun Crystal", "=ds=" .. AL["Trainer"] };
+ { 17, "s53857", "39917", "=q2=Mystic Sun Crystal", "=ds=1250 #faction#" };
+ { 18, "s53856", "39918", "=q2=Quick Sun Crystal", "=ds=" .. AL["Trainer"] };
+ { 19, "s53854", "39915", "=q2=Rigid Sun Crystal", "=ds=" .. AL["Trainer"] };
+ { 20, "s53853", "39914", "=q2=Smooth Sun Crystal", "=ds=" .. AL["Trainer"] };
+ { 21, "s53855", "39916", "=q2=Thick Sun Crystal", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Green Gems"];
+ { 1, "s66430", "40175", "=q4=Dazzling Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s66338", "40167", "=q4=Enduring Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s66442", "40179", "=q4=Energized Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s66434", "40169", "=q4=Forceful Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s66440", "40174", "=q4=Intricate Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s66431", "40165", "=q4=Jagged Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s66439", "40177", "=q4=Lambent Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s66435", "40171", "=q4=Misty Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 9, "s66444", "40178", "=q4=Opaque Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 10, "s66441", "40180", "=q4=Radiant Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 11, "s66433", "40170", "=q4=Seer's Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 12, "s66443", "40182", "=q4=Shattered Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 13, "s66437", "40172", "=q4=Shining Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 14, "s66428", "40168", "=q4=Steady Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 15, "s66436", "40176", "=q4=Sundered Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 16, "s66438", "40181", "=q4=Tense Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 17, "s66432", "40164", "=q4=Timeless Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 18, "s66445", "40173", "=q4=Turbid Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 19, "s66429", "40166", "=q4=Vivid Eye of Zul", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 20, "s54007", "40094", "=q3=Dazzling Forest Emerald", "=ds=" .. AL["Trainer"] };
+ { 21, "s53998", "40089", "=q3=Enduring Forest Emerald", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 22, "s54011", "40105", "=q3=Energized Forest Emerald", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 23, "s54001", "40091", "=q3=Forceful Forest Emerald", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 24, "s54006", "40104", "=q3=Intricate Forest Emerald", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 25, "s53996", "40086", "=q3=Jagged Forest Emerald","=ds=" .. BabbleFaction["Frenzyheart Tribe"] .. ": " .. BabbleFaction["Revered"] };
+ { 26, "s54009", "40100", "=q3=Lambent Forest Emerald", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 27, "s54003", "40095", "=q3=Misty Forest Emerald", "=ds=" .. AL["Drop"] .. "" };
+ { 28, "s54010", "40103", "=q3=Opaque Forest Emerald", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 29, "s54012", "40098", "=q3=Radiant Forest Emerald", "=ds=" .. AL["Drop"] .. " - " .. BabbleZone["The Storm Peaks"] };
+ { 30, "s54002", "40092", "=q3=Seer's Forest Emerald", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ };
+ {
+ Name = AL["Green Gems"];
+ { 1, "s54014", "40106", "=q3=Shattered Forest Emerald", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 2, "s54004", "40099", "=q3=Shining Forest Emerald", "=ds=" .. AL["Drop"] .. "" };
+ { 3, "s54000", "40090", "=q3=Steady Forest Emerald", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 4, "s54008", "40096", "=q3=Sundered Forest Emerald","=ds=" .. BabbleFaction["The Oracles"] .. ": " .. BabbleFaction["Revered"] };
+ { 5, "s54013", "40101", "=q3=Tense Forest Emerald", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 6, "s53995", "40085", "=q3=Timeless Forest Emerald","=ds=" .. BabbleBoss["The Prophet Tharon'ja"] .. " (" .. AL["Heroic"] .. ")" };
+ { 7, "s54005", "40102", "=q3=Turbid Forest Emerald", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 8, "s53997", "40088", "=q3=Vivid Forest Emerald", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 9, "s53926", "39984", "=q2=Dazzling Dark Jade", "=ds=" .. AL["Trainer"] };
+ { 10, "s53918", "39976", "=q2=Enduring Dark Jade", "=ds=" .. AL["Trainer"] };
+ { 11, "s53930", "39989", "=q2=Energized Dark Jade", "=ds=" .. AL["Trainer"] };
+ { 12, "s53920", "39978", "=q2=Forceful Dark Jade", "=ds=" .. AL["Trainer"] };
+ { 13, "s53925", "39983", "=q2=Intricate Dark Jade", "=ds=" .. AL["Trainer"] };
+ { 14, "s53916", "39974", "=q2=Jagged Dark Jade", "=ds=" .. AL["Trainer"] };
+ { 15, "s53928", "39986", "=q2=Lambent Dark Jade", "=ds=" .. AL["Trainer"] };
+ { 16, "s53922", "39980", "=q2=Misty Dark Jade", "=ds=" .. AL["Trainer"] };
+ { 17, "s53929", "39988", "=q2=Opaque Dark Jade", "=ds=1250 #faction#" };
+ { 18, "s53931", "39990", "=q2=Radiant Dark Jade", "=ds=" .. AL["Trainer"] };
+ { 19, "s53921", "39979", "=q2=Seer's Dark Jade", "=ds=" ..BabbleFaction["The Kalu'ak"] .. ": " .. BabbleFaction["Friendly"] };
+ { 20, "s53933", "39992", "=q2=Shattered Dark Jade", "=ds=1250 #faction#" };
+ { 21, "s53923", "39981", "=q2=Shining Dark Jade", "=ds=" .. AL["Trainer"] };
+ { 22, "s53919", "39977", "=q2=Steady Dark Jade", "=ds=1250 #faction#" };
+ { 23, "s53927", "39985", "=q2=Sundered Dark Jade", "=ds=" .. AL["Trainer"] };
+ { 24, "s53932", "39991", "=q2=Tense Dark Jade", "=ds=1250 #faction#" };
+ { 25, "s53894", "39968", "=q2=Timeless Dark Jade", "=ds=" .. AL["Trainer"] };
+ { 26, "s53924", "39982", "=q2=Turbid Dark Jade", "=ds=1250 #faction#" };
+ { 27, "s53917", "39975", "=q2=Vivid Dark Jade", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Orange Gems"];
+ { 1, "s66576", "40162", "=q4=Accurate Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s66579", "40144", "=q4=Champion's Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s66568", "40147", "=q4=Deadly Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s66584", "40150", "=q4=Deft Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s66571", "40154", "=q4=Durable Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s66580", "40158", "=q4=Empowered Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s66572", "40143", "=q4=Etched Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s66583", "40146", "=q4=Fierce Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 9, "s66578", "40161", "=q4=Glimmering Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 10, "s66575", "40148", "=q4=Glinting Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 11, "s66567", "40142", "=q4=Inscribed Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 12, "s66585", "40149", "=q4=Lucent Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 13, "s66566", "40151", "=q4=Luminous Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 14, "s66569", "40152", "=q4=Potent Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 15, "s66573", "40157", "=q4=Pristine Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 16, "s66574", "40155", "=q4=Reckless Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 17, "s66586", "40163", "=q4=Resolute Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 18, "s66582", "40145", "=q4=Resplendent Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 19, "s66581", "40160", "=q4=Stalwart Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 20, "s66587", "40159", "=q4=Stark Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 21, "s66570", "40153", "=q4=Veiled Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 22, "s66577", "40156", "=q4=Wicked Ametrine", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ };
+ {
+ Name = AL["Orange Gems"];
+ { 1, "s53994", "40058", "=q3=Accurate Monarch Topaz", "=ds=" .. AL["Drop"] };
+ { 2, "s53977", "40039", "=q3=Champion's Monarch Topaz", "=ds=" .. AL["Drop"] .. "" };
+ { 3, "s53979", "40043", "=q3=Deadly Monarch Topaz", "=ds=" .. BabbleBoss["Keristrasza"] .. " (" .. AL["Heroic"] .. ")" };
+ { 4, "s53982", "40046", "=q3=Deft Monarch Topaz", "=ds=" ..BabbleBoss["Sjonnir The Ironshaper"] .. " (" .. AL["Heroic"] .. ")" };
+ { 5, "s53986", "40050", "=q3=Durable Monarch Topaz", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 6, "s53990", "40054", "=q3=Empowered Monarch Topaz", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 7, "s53976", "40038", "=q3=Etched Monarch Topaz", "=ds=" .. AL["Drop"] .. "" };
+ { 8, "s54019", "40041", "=q3=Fierce Monarch Topaz", "=ds=" ..BabbleBoss["Ingvar the Plunderer"] .. " (" .. AL["Heroic"] .. ")" };
+ { 9, "s53993", "40057", "=q3=Glimmering Monarch Topaz","=ds=" .. BabbleFaction["The Wyrmrest Accord"] .. ": " .. BabbleFaction["Exalted"] };
+ { 10, "s53980", "40044", "=q3=Glinting Monarch Topaz", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 11, "s53975", "40037", "=q3=Inscribed Monarch Topaz", "=ds=" .. AL["Drop"] .. "" };
+ { 12, "s53981", "40045", "=q3=Lucent Monarch Topaz", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 13, "s53983", "40047", "=q3=Luminous Monarch Topaz", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 14, "s53984", "40048", "=q3=Potent Monarch Topaz", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 15, "s53989", "40053", "=q3=Pristine Monarch Topaz", "=ds=" .. AL["Trainer"] };
+ { 16, "s53987", "40051", "=q3=Reckless Monarch Topaz", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 17, "s54023", "40059", "=q3=Resolute Monarch Topaz", "=ds=" .. AL["Drop"] .. "" };
+ { 18, "s53978", "40040", "=q3=Resplendent Monarch Topaz", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 19, "s53992", "40056", "=q3=Stalwart Monarch Topaz", "=ds=" .. AL["Drop"] .. "" };
+ { 20, "s53991", "40055", "=q3=Stark Monarch Topaz", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 21, "s53985", "40049", "=q3=Veiled Monarch Topaz", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 22, "s53988", "40052", "=q3=Wicked Monarch Topaz",
+ "=ds=" .. BabbleFaction["Knights of the Ebon Blade"] .. ": " .. BabbleFaction["Revered"] };
+ };
+ {
+ Name = AL["Orange Gems"];
+ { 1, "s53891", "39965", "=q2=Glimmering Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 2, "s53892", "39966", "=q2=Accurate Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 3, "s53874", "39949", "=q2=Champion's Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 4, "s53877", "39952", "=q2=Deadly Huge Citrine","=ds=" .. BabbleFaction["Knights of the Ebon Blade"] .. ": " .. BabbleFaction["Friendly"] };
+ { 5, "s53880", "39955", "=q2=Deft Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 6, "s53884", "39958", "=q2=Durable Huge Citrine", "=ds=1250 #faction#" };
+ { 7, "s53888", "39962", "=q2=Empowered Huge Citrine", "=ds=1250 #faction#" };
+ { 8, "s53873", "39948", "=q2=Etched Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 9, "s53876", "39951", "=q2=Fierce Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 10, "s53878", "39953", "=q2=Glinting Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 11, "s53872", "39947", "=q2=Inscribed Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 12, "s53879", "39954", "=q2=Lucent Huge Citrine", "=ds=1250 #faction#" };
+ { 13, "s53881", "39946", "=q2=Luminous Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 14, "s53882", "39956", "=q2=Potent Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 15, "s53887", "39961", "=q2=Pristine Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 16, "s53885", "39959", "=q2=Reckless Huge Citrine","=ds=" .. BabbleFaction["Frenzyheart Tribe"] .. ": " .. BabbleFaction["Friendly"] };
+ { 17, "s53893", "39967", "=q2=Resolute Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 18, "s53875", "39950", "=q2=Resplendent Huge Citrine", "=ds=1250 #faction#" };
+ { 19, "s53890", "39964", "=q2=Stalwart Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 20, "s53889", "39963", "=q2=Stark Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 21, "s53883", "39957", "=q2=Veiled Huge Citrine", "=ds=" .. AL["Trainer"] };
+ { 22, "s53886", "39960", "=q2=Wicked Huge Citrine", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Purple Gems"];
+ { 1, "s66553", "40136", "=q4=Balanced Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s66560", "40139", "=q4=Defender's Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s66555", "40132", "=q4=Glowing Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s66561", "40141", "=q4=Guardian's Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s66564", "40137", "=q4=Infused Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s66562", "40135", "=q4=Mysterious Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s66563", "40140", "=q4=Puissant Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s66556", "40133", "=q4=Purified Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 9, "s66559", "40138", "=q4=Regal Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 10, "s66558", "40134", "=q4=Royal Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 11, "s66557", "40130", "=q4=Shifting Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 12, "s66554", "40129", "=q4=Sovereign Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 13, "s66565", "40131", "=q4=Tenuous Dreadstone", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 27, "s53969", "40029", "=q3=Balanced Twilight Opal", "=ds=" .. AL["Trainer"] };
+ { 28, "s53972", "40032", "=q3=Defender's Twilight Opal", "=ds=" .. AL["Drop"] .. " - " .. BabbleZone["The Storm Peaks"] };
+ { 16, "s53965", "40025", "=q3=Glowing Twilight Opal","=ds=" .. BabbleFaction["Knights of the Ebon Blade"] .. ": " .. BabbleFaction["Exalted"] };
+ { 17, "s53974", "40034", "=q3=Guardian's Twilight Opal","=ds=" .. BabbleFaction["Argent Crusade"] .. ": " .. BabbleFaction["Revered"] };
+ { 18, "s53970", "40030", "=q3=Infused Twilight Opal", "=ds=" .. BabbleBoss["Anub'arak"] .. " (" .. AL["Heroic"] .. ")" };
+ { 19, "s53968", "40028", "=q3=Mysterious Twilight Opal", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 20, "s53973", "40033", "=q3=Puissant Twilight Opal", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 21, "s53966", "40026", "=q3=Purified Twilight Opal", "=ds=" .. AL["Drop"] .. "" };
+ { 22, "s53971", "40031", "=q3=Regal Twilight Opal", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 23, "s53967", "40027", "=q3=Royal Twilight Opal", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 24, "s53963", "40023", "=q3=Shifting Twilight Opal", "=ds=" .. AL["Drop"] };
+ { 25, "s53962", "40022", "=q3=Sovereign Twilight Opal", "=ds=" .. AL["Drop"] };
+ { 26, "s53964", "40024", "=q3=Tenuous Twilight Opal", "=ds=" .. AL["Drop"] .. "" };
+ };
+ {
+ Name = AL["Purple Gems"];
+ { 1, "s53871", "39940", "=q2=Guardian's Shadow Crystal", "=ds=" .. AL["Trainer"] };
+ { 2, "s53867", "39944", "=q2=Infused Shadow Crystal", "=ds=" .. AL["Trainer"] };
+ { 3, "s53865", "39945", "=q2=Mysterious Shadow Crystal", "=ds=1250 #faction#" };
+ { 4, "s53870", "39933", "=q2=Puissant Shadow Crystal", "=ds=" .. AL["Trainer"] };
+ { 5, "s53863", "39941", "=q2=Purified Shadow Crystal", "=ds=" .. AL["Trainer"] };
+ { 6, "s53864", "39943", "=q2=Royal Shadow Crystal", "=ds=" .. AL["Trainer"] };
+ { 7, "s53860", "39935", "=q2=Shifting Shadow Crystal", "=ds=" .. AL["Trainer"] };
+ { 8, "s53859", "39934", "=q2=Sovereign Shadow Crystal", "=ds=" .. AL["Trainer"] };
+ { 9, "s53861", "39942", "=q2=Tenuous Shadow Crystal", "=ds=" .. AL["Trainer"] };
+ { 10, "s53868", "39938", "=q2=Regal Shadow Crystal", "=ds=" .. AL["Trainer"] };
+ { 11, "s53866", "39937", "=q2=Balanced Shadow Crystal", "=ds=" .. AL["Trainer"] };
+ { 12, "s53869", "39939", "=q2=Defender's Shadow Crystal","=ds=" .. BabbleFaction["The Kalu'ak"] .. ": " .. BabbleFaction["Honored"] };
+ { 13, "s53862", "39936", "=q2=Glowing Shadow Crystal", "=ds=" .. AL["Trainer"] };
+ { 14, "s41420", "32833", "=q2=Purified Jaggal Pearl", "=ds=#sr# 325" };
+ };
+ {
+ Name = AL["Meta Gems"];
+ { 1, "s55389", "41285", "=q3=Chaotic Skyflare Diamond", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s55390", "41307", "=q3=Destructive Skyflare Diamond", "=ds=" .. AL["Drop"] .. "" };
+ { 3, "s55384", "41377", "=q3=Effulgent Skyflare Diamond", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s55392", "41333", "=q3=Ember Skyflare Diamond", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s55393", "41335", "=q3=Enigmatic Skyflare Diamond", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 6, "s55387", "41378", "=q3=Forlorn Skyflare Diamond", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 7, "s55388", "41379", "=q3=Impassive Skyflare Diamond", "=ds=" .. BabbleZone["Wintergrasp"] .. " 12 #wintergrasp#" };
+ { 8, "s55394", "41339", "=q3=Swift Skyflare Diamond", "=ds=" .. AL["Trainer"] };
+ { 9, "s55395", "41400", "=q3=Thundering Skyflare Diamond", "=ds=" .. AL["Drop"] .. "" };
+ { 10, "s55386", "41375", "=q3=Tireless Skyflare Diamond", "=ds=" .. AL["Trainer"] };
+ { 16, "s55401", "41380", "=q3=Austere Earthsiege Diamond", "=ds=" .. BabbleBoss["King Ymiron"] };
+ { 17, "s55405", "41389", "=q3=Beaming Earthsiege Diamond", "=ds=" .. AL["Drop"] .. "" };
+ { 18, "s55397", "41395", "=q3=Bracing Earthsiege Diamond", "=ds=" .. BabbleBoss["Ley-Guardian Eregos"] };
+ { 19, "s55398", "41396", "=q3=Eternal Earthsiege Diamond", "=ds=" .. BabbleBoss["Loken"] };
+ { 20, "s55396", "41401", "=q3=Insightful Earthsiege Diamond", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 21, "s55404", "41385", "=q3=Invigorating Earthsiege Diamond", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 22, "s55402", "41381", "=q3=Persistant Earthsiege Diamond", "=ds=" .. AL["Trainer"] };
+ { 23, "s55399", "41397", "=q3=Powerful Earthsiege Diamond", "=ds=" .. AL["Trainer"] };
+ { 24, "s55400", "41398", "=q3=Relentless Earthsiege Diamond", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 25, "s55403", "41382", "=q3=Trenchant Earthsiege Diamond", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ };
+ {
+ Name = AL["Prismatic Gems"];
+ { 1, "s68253", "49110", "=q4=Nightmare Tear", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s28028", "22459", "=q4=Void Sphere", "=ds=" .. GetSpellInfo(7411) };
+ { 3, "s56531", "42702", "=q3=Enchanted Tear", "=ds=" .. AL["Trainer"] };
+ { 4, "s28027", "22460", "=q3=Prismatic Sphere", "=ds=" .. GetSpellInfo(7411) };
+ { 5, "s56530", "42701", "=q2=Enchanted Pearl", "=ds=" .. AL["Trainer"] };
+ { 6, "s62941", "42701", "=q2=Prismatic Black Diamond", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = "Dragon's Eyes";
+ { 1, "s56049", "42142", "=q4=Bold Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s56054", "36766", "=q4=Bright Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s56074", "42148", "=q4=Brilliant Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s56052", "42143", "=q4=Delicate Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s56056", "42152", "=q4=Flashing Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s56076", "42153", "=q4=Fractured Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s56077", "42146", "=q4=Lustrous Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s56079", "42158", "=q4=Mystic Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 9, "s56081", "42154", "=q4=Precise Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 10, "s56083", "42150", "=q4=Quick Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 11, "s56084", "42156", "=q4=Rigid Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 12, "s56053", "42144", "=q4=Runed Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 13, "s56085", "42149", "=q4=Smooth Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 14, "s56086", "36767", "=q4=Solid Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 15, "s56087", "42145", "=q4=Sparkling Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 16, "s56088", "42155", "=q4=Stormy Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 17, "s56055", "42151", "=q4=Subtle Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 18, "s56089", "42157", "=q4=Thick Dragon's Eye", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 20, 42225, "", "=q3=Dragon's Eye", "=ds=#e8#" };
+ };
+ {
+ Name = AL["Trinkets"];
+ { 1, "s56203", "42418", "=q3=Figurine - Emerald Boar", "=ds=" .. AL["Trainer"] };
+ { 2, "s59759", "44063", "=q3=Figurine - Monarch Crab", "=ds=" .. AL["Trainer"] };
+ { 3, "s56199", "42341", "=q3=Figurine - Ruby Hare", "=ds=" .. AL["Trainer"] };
+ { 4, "s56202", "42413", "=q3=Figurine - Sapphire Owl", "=ds=" .. AL["Trainer"] };
+ { 5, "s56201", "42395", "=q3=Figurine - Twilight Serpent", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Rings"];
+ { 1, "s56497", "42643", "=q4=Titanium Earthguard Ring", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s56496", "42642", "=q4=Titanium Impact Band", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s56498", "42644", "=q4=Titanium Spellshock Ring", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s58954", "43582", "=q4=Titanium Frostguard Ring", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s38503", "31398", "=q4=The Frozen Eye", "=ds=#sr# 375" };
+ { 6, "s38504", "31399", "=q4=The Natural Ward", "=ds=#sr# 375" };
+ { 7, "s46124", "34361", "=q4=Hard Khorium Band", "=ds=#sr# 365" };
+ { 8, "s46122", "34362", "=q4=Loop of Forged Power", "=ds=#sr# 365" };
+ { 9, "s46123", "34363", "=q4=Ring of Flowing Life", "=ds=#sr# 365" };
+ { 10, "s64727", "45808", "=q3=Runed Mana Band", "=ds=" };
+ { 11, "s64728", "45809", "=q3=Scarlet Signet", "=ds=" };
+ { 12, "s58147", "43250", "=q3=Ring of Earthern Might", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 13, "s58150", "43253", "=q3=Ring of Northern Tears", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 14, "s58148", "43251", "=q3=Ring of Scarlet Shadows", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 15, "s58507", "43498", "=q3=Savage Titanium Band", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 16, "s58492", "43482", "=q3=Savage Titanium Ring", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 17, "s58149", "43252", "=q3=Windfire Band", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 18, "s56197", "42340", "=q3=Dream Signet", "=ds=" .. AL["Trainer"] };
+ { 19, "s58143", "43246", "=q3=Earthshadow Ring", "=ds=" .. AL["Trainer"] };
+ { 20, "s58144", "43247", "=q3=Jade Ring of Slaying", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Necks"];
+ { 1, "s56500", "42646", "=q4=Titanium Earthguard Chain", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s56499", "42645", "=q4=Titanium Impact Choker", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s56501", "42647", "=q4=Titanium Spellshock Necklace", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s46126", "34360", "=q4=Amulet of Flowing Life", "=ds=#sr# 365" };
+ { 5, "s46127", "34358", "=q4=Hard Khorium Choker", "=ds=#sr# 365" };
+ { 6, "s46125", "34359", "=q4=Pendant of Sunfire", "=ds=#sr# 365" };
+ { 7, "s64725", "45812", "=q3=Emerald Choker", "=ds=" };
+ { 8, "s64726", "45813", "=q3=Sky Sapphire Amulet", "=ds=" };
+ { 9, "s56196", "42339", "=q3=Blood Sun Necklace", "=ds=" .. AL["Trainer"] };
+ { 10, "s56195", "42338", "=q3=Jade Dagger Pendant", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Miscellaneous"];
+ { 1, "s31078", "24123", "=q4=Circlet of Arcane Might", "=ds=#sr# 370" };
+ { 2, "s31077", "24122", "=q4=Coronet of the Verdant Flame", "=ds=#sr# 370" };
+ { 3, "s62242", "44943", "=q3=Icy Prism", "=ds=" .. AL["Trainer"] };
+ };
+};
+
+
+----------------------
+--- Leatherworking ---
+----------------------
+
+AtlasLoot_Data["LeatherworkingWRATH"] = {
+ Name = LEATHERWORKING;
+ Type = "Crafting";
+ {
+ Name = AL["Leather Armor"] .. " - Back";
+ { 1, "s60640", "43565", "=q4=Durable Nerubhide Cape", "=ds=" .. AL["Trainer"] };
+ { 2, "s60637", "43566", "=q4=Ice Striker's Cloak", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Chest";
+ { 1, "s67142", "47600", "=q4=Knightbane Carapace", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 2, "s67086", "47599", "=q4=Knightbane Carapace", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 3, "s67084", "47602", "=q4=Lunar Eclipse Chestguard", "=ds=" .. AL["Drop"] ..", " .. BabbleZone["Trial of the Crusader"] };
+ { 4, "s67140", "47601", "=q4=Lunar Eclipse Chestguard", "=ds=" .. AL["Drop"] ..", " .. BabbleZone["Trial of the Crusader"] };
+ { 5, "s60996", "43590", "=q4=Polar Vest", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s60703", "43434", "=q3=Eviscerator's Chestguard", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s60718", "43263", "=q3=Overcast Chestguard", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s60669", "43257", "=q3=Wildscale Breastplate", "=ds=" .. AL["Trainer"] };
+ { 9, "s51570", "38592", "=q3=Dark Arctic Chestpiece", "=ds=" .. AL["Trainer"] };
+ { 10, "s60613", "44441", "=q3=Dark Iceborne Chestguard", "=ds=" .. AL["Trainer"] };
+ { 11, "s50944", "38400", "=q2=Arctic Chestpiece", "=ds=" .. AL["Trainer"] };
+ { 12, "s50938", "38408", "=q2=Iceborne Chestguard", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Feet";
+ { 1, "s70555", "49894", "=q4=Blessed Cenarion Boots", "=ds=" .. AL["Vendor"] .. "" };
+ { 2, "s70557", "49895", "=q4=Footpads of Impending Death", "=ds=" .. AL["Vendor"] .. "" };
+ { 3, "s63201", "45565", "=q4=Boots of Wintry Endurance", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 4, "s63199", "45564", "=q4=Footpads of Silence", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 5, "s60761", "43502", "=q4=Earthgiving Boots", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s60998", "43592", "=q4=Polar Boots", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s62176", "44930", "=q4=Windripper Boots", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s60712", "43439", "=q3=Eviscerator's Treads", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 9, "s60727", "43273", "=q3=Overcast Boots", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 10, "s60666", "43256", "=q3=Jormscale Footpads", "=ds=" .. AL["Trainer"] };
+ { 11, "s51568", "38590", "=q3=Black Chitinguard Boots", "=ds=" .. AL["Trainer"] };
+ { 12, "s60620", "44442", "=q3=Bugsquashers", "=ds=" .. AL["Trainer"] };
+ { 13, "s50948", "38404", "=q2=Arctic Boots", "=ds=" .. AL["Trainer"] };
+ { 14, "s50942", "38407", "=q2=Iceborne Boots", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Hands";
+ { 1, "s60705", "43436", "=q3=Eviscerator's Gauntlets", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s60721", "43265", "=q3=Overcast Handwraps", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s60665", "43255", "=q3=Seafoam Gauntlets", "=ds=" .. AL["Trainer"] };
+ { 4, "s50947", "38403", "=q2=Arctic Gloves", "=ds=" .. AL["Trainer"] };
+ { 5, "s50941", "38409", "=q2=Iceborne Gloves", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Head";
+ { 1, "s60697", "43260", "=q3=Eviscerator's Facemask", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s60715", "43261", "=q3=Overcast Headguard", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s51572", "38437", "=q2=Arctic Helm", "=ds=" .. AL["Trainer"] };
+ { 4, "s60608", "38438", "=q2=Iceborne Helm", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Legs";
+ { 1, "s70556", "49899", "=q4=Bladeborn Leggings", "=ds=" .. AL["Vendor"] .. "" };
+ { 2, "s70554", "49898", "=q4=Legwraps of Unleashed Nature", "=ds=" .. AL["Vendor"] .. "" };
+ { 3, "s60760", "43495", "=q4=Earthgiving Legguards", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s62177", "44931", "=q4=Windripper Leggings", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s60711", "43438", "=q3=Eviscerator's Legguards", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s60725", "43271", "=q3=Overcast Leggings", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s60660", "42731", "=q3=Leggings of Visceral Strikes", "=ds=" .. AL["Trainer"] };
+ { 8, "s51569", "38591", "=q3=Dark Arctic Leggings", "=ds=" .. AL["Trainer"] };
+ { 9, "s60611", "44440", "=q3=Dark Iceborne Leggings", "=ds=" .. AL["Trainer"] };
+ { 10, "s50945", "38401", "=q2=Arctic Leggings", "=ds=" .. AL["Trainer"] };
+ { 11, "s50939", "38410", "=q2=Iceborne Leggings", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Shoulder";
+ { 1, "s60758", "43481", "=q4=Trollwoven Spaulders", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s60702", "43433", "=q3=Eviscerator's Shoulderpads", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s60716", "43262", "=q3=Overcast Spaulders", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s60671", "43258", "=q3=Purehorn Spaulders", "=ds=" .. AL["Trainer"] };
+ { 5, "s50946", "38402", "=q2=Arctic Shoulderpads", "=ds=" .. AL["Trainer"] };
+ { 6, "s50940", "38411", "=q2=Iceborne Shoulderpads", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Waist";
+ { 1, "s63200", "45556", "=q4=Belt of Arctic Life", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 2, "s63198", "45555", "=q4=Death-warmed Belt", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 3, "s60759", "43484", "=q4=Trollwoven Girdle", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s60997", "43591", "=q4=Polar Cord", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s60706", "43437", "=q3=Eviscerator's Waistguard", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s60723", "43266", "=q3=Overcast Belt", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s50949", "38405", "=q2=Arctic Belt", "=ds=" .. AL["Trainer"] };
+ { 8, "s50943", "38406", "=q2=Iceborne Belt", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Leather Armor"] .. " - Wrist";
+ { 1, "s67087", "47581", "=q4=Bracers of Swift Death", "=ds=" .. AL["Drop"] .. ", " ..BabbleZone["Trial of the Crusader"] };
+ { 2, "s67139", "47582", "=q4=Bracers of Swift Death", "=ds=" .. AL["Drop"] .. ", " ..BabbleZone["Trial of the Crusader"] };
+ { 3, "s67085", "47583", "=q4=Moonshadow Armguards", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 4, "s67141", "47584", "=q4=Moonshadow Armguards", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 5, "s60704", "43435", "=q3=Eviscerator's Bindings", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s60607", "38434", "=q2=Iceborne Wristguards", "=ds=" .. AL["Trainer"] };
+ { 7, "s60720", "43264", "=q3=Overcast Bracers", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s51571", "38433", "=q2=Arctic Wristguards", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Chest";
+ { 1, "s67138", "47596", "=q4=Crusader's Dragonscale Breastplate","=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 2, "s67082", "47595", "=q4=Crusader's Dragonscale Breastplate","=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 3, "s67080", "47597", "=q4=Ensorcelled Nerubian Breastplate","=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 4, "s67136", "47598", "=q4=Ensorcelled Nerubian Breastplate","=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 5, "s60756", "43461", "=q4=Revenant's Breastplate", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s60999", "43593", "=q4=Icy Scale Chestguard", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s60730", "43445", "=q3=Swiftarrow Hauberk", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s60747", "43453", "=q3=Stormhide Hauberk", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 9, "s60649", "43129", "=q3=Razorstrike Breastplate", "=ds=" .. AL["Trainer"] };
+ { 10, "s60604", "44437", "=q3=Dark Frostscale Breastplate", "=ds=" .. AL["Trainer"] };
+ { 11, "s60629", "44444", "=q3=Dark Nerubian Chestpiece", "=ds=" .. AL["Trainer"] };
+ { 12, "s50950", "38414", "=q2=Frostscale Chestguard", "=ds=" .. AL["Trainer"] };
+ { 13, "s50956", "38420", "=q2=Nerubian Chestguard", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Feet";
+ { 1, "s70559", "49896", "=q4=Earthsoul Boots", "=ds=" .. AL["Vendor"] .. "" };
+ { 2, "s70561", "49897", "=q4=Rock-Steady Treads", "=ds=" .. AL["Vendor"] .. "" };
+ { 3, "s63195", "45562", "=q4=Boots of Living Scale", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 4, "s63197", "45563", "=q4=Lightning Grounded Boots", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 5, "s61002", "43595", "=q4=Icy Scale Boots", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s60737", "43443", "=q3=Swiftarrow Boots", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s60752", "43451", "=q3=Stormhide Stompers", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s60757", "43469", "=q4=Revenant's Treads", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 9, "s60605", "44438", "=q3=Dragonstompers", "=ds=" .. AL["Trainer"] };
+ { 10, "s60630", "44445", "=q3=Scaled Icewalkers", "=ds=" .. AL["Trainer"] };
+ { 11, "s50954", "38413", "=q2=Frostscale Boots", "=ds=" .. AL["Trainer"] };
+ { 12, "s50960", "38419", "=q2=Nerubian Boots", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Hands";
+ { 1, "s60732", "43446", "=q3=Swiftarrow Gauntlets", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s60749", "43454", "=q3=Stormhide Grips", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s50953", "38415", "=q2=Frostscale Gloves", "=ds=" .. AL["Trainer"] };
+ { 4, "s50959", "38421", "=q2=Nerubian Gloves", "=ds=" .. AL["Trainer"] };
+
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Head";
+ { 1, "s60728", "43447", "=q3=Swiftarrow Helm", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s60743", "43455", "=q3=Stormhide Crown", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s60655", "43132", "=q3=Nightshock Hood", "=ds=" .. AL["Trainer"] };
+ { 4, "s60600", "38440", "=q2=Frostscale Helm", "=ds=" .. AL["Trainer"] };
+ { 5, "s60624", "38439", "=q2=Nerubian Helm", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Legs";
+ { 1, "s70560", "49901", "=q4=Draconic Bonesplinter Legguards", "=ds=" .. AL["Vendor"] .. "" };
+ { 2, "s70558", "49900", "=q4=Lightning-Infused Leggings", "=ds=" .. AL["Vendor"] .. "" };
+ { 3, "s60754", "43458", "=q4=Giantmaim Legguards", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s60735", "43448", "=q3=Swiftarrow Leggings", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s60751", "43456", "=q3=Stormhide Legguards", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s60601", "44436", "=q3=Dark Frostscale Leggings", "=ds=" .. AL["Trainer"] };
+ { 7, "s60627", "44443", "=q3=Dark Nerubian Leggings", "=ds=" .. AL["Trainer"] };
+ { 8, "s50951", "38416", "=q2=Frostscale Leggings", "=ds=" .. AL["Trainer"] };
+ { 9, "s50957", "38422", "=q2=Nerubian Legguards", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Shoulder";
+ { 1, "s60729", "43449", "=q3=Swiftarrow Shoulderguards", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 2, "s60746", "43457", "=q3=Stormhide Shoulders", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 3, "s60651", "43130", "=q3=Virulent Spaulders", "=ds=" .. AL["Trainer"] };
+ { 4, "s50952", "38424", "=q2=Frostscale Shoulders", "=ds=" .. AL["Trainer"] };
+ { 5, "s50958", "38417", "=q2=Nerubian Shoulders", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Waist";
+ { 1, "s63194", "45553", "=q4=Belt of Dragons", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 2, "s63196", "45554", "=q4=Blue Belt of Chaos", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 3, "s61000", "43594", "=q4=Icy Scale Belt", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 4, "s60734", "43442", "=q3=Swiftarrow Belt", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 5, "s60750", "43450", "=q3=Stormhide Belt", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s60658", "43133", "=q3=Nightshock Girdle", "=ds=" .. AL["Trainer"] };
+ { 7, "s50955", "38412", "=q2=Frostscale Belt", "=ds=" .. AL["Trainer"] };
+ { 8, "s50961", "38418", "=q2=Nerubian Belt", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Mail Armor"] .. " - Wrist";
+ { 1, "s67137", "47580", "=q4=Black Chitin Bracers", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 2, "s67081", "47579", "=q4=Black Chitin Bracers", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 3, "s67083", "47576", "=q4=Crusader's Dragonscale Bracers","=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 4, "s67143", "47577", "=q4=Crusader's Dragonscale Bracers","=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 5, "s60755", "43459", "=q4=Giantmaim Bracers", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 6, "s60731", "43444", "=q3=Swiftarrow Bracers", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 7, "s60748", "43452", "=q3=Stormhide Wristguards", "=ds=" .. AL["Vendor"] .. ", " .. BabbleZone["Dalaran"] };
+ { 8, "s60652", "43131", "=q3=Eaglebane Bracers", "=ds=" .. AL["Trainer"] };
+ { 9, "s60599", "38436", "=q2=Frostscale Bracers", "=ds=" .. AL["Trainer"] };
+ { 10, "s60622", "38435", "=q2=Nerubian Bracers", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Item Enhancements"];
+ { 1, "s62448", "44963", "=q4=Earthen Leg Armor", "=ds=" .. AL["Trainer"] };
+ { 2, "s50965", "38373", "=q4=Frosthide Leg Armor", "=ds=" .. AL["Trainer"] };
+ { 3, "s50967", "38374", "=q4=Icescale Leg Armor", "=ds=" .. AL["Trainer"] };
+ { 4, "s35557", "29536", "=q4=Nethercleft Leg Armor", "=ds=#sr# 365" };
+ { 5, "s35554", "29535", "=q4=Nethercobra Leg Armor", "=ds=#sr# 365" };
+ { 6, "s50964", "38371", "=q3=Jormungar Leg Armor", "=ds=" .. AL["Trainer"] };
+ { 7, "s50966", "38372", "=q3=Nerubian Leg Armor", "=ds=" .. AL["Trainer"] };
+ { 8, "s35555", "29534", "=q3=Clefthide Leg Armor", "=ds=#sr# 335" };
+ { 9, "s35549", "29533", "=q3=Cobrahide Leg Armor", "=ds=#sr# 335" };
+ { 10, "s22727", "18251", "=q3=Core Armor Kit", "=ds=#sr# 300" };
+ { 11, "s50963", "38376", "=q2=Heavy Borean Armor Kit", "=ds=" .. AL["Trainer"] };
+ { 16, "s57683", "Trade_LeatherWorking", "=ds=Fur Lining - Attack Power", "=ds=" .. AL["Trainer"] };
+ { 17, "s57701", "Trade_LeatherWorking", "=ds=Fur Lining - Arcane Resist", "=ds=" .. AL["Drop"] };
+ { 18, "s57692", "Trade_LeatherWorking", "=ds=Fur Lining - Fire Resist", "=ds=" .. AL["Drop"] };
+ { 19, "s57694", "Trade_LeatherWorking", "=ds=Fur Lining - Frost Resist", "=ds=" .. AL["Drop"] };
+ { 20, "s57699", "Trade_LeatherWorking", "=ds=Fur Lining - Nature Resist", "=ds=" .. AL["Drop"] };
+ { 21, "s57696", "Trade_LeatherWorking", "=ds=Fur Lining - Shadow Resist", "=ds=" .. AL["Drop"] };
+ { 22, "s57691", "Trade_LeatherWorking", "=ds=Fur Lining - Spell Power", "=ds=" .. AL["Trainer"] };
+ { 23, "s57690", "Trade_LeatherWorking", "=ds=Fur Lining - Stamina", "=ds=" .. AL["Trainer"] };
+ { 24, "s60583", "Trade_LeatherWorking", "=ds=Jormungar Leg Reinforcements", "=ds=" .. AL["Trainer"] };
+ { 25, "s60584", "Trade_LeatherWorking", "=ds=Nerubian Leg Reinforcements", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Quivers and Ammo Pouches"];
+ { 1, "s60645", "44447", "=q3=Dragonscale Ammo Pouch","=ds=" .. BabbleFaction["The Kalu'ak"] .. ": " .. BabbleFaction["Honored"] };
+ { 2, "s60647", "44448", "=q3=Nerubian Reinforced Quiver","=ds=" .. BabbleFaction["Knights of the Ebon Blade"] .. ": " .. BabbleFaction["Honored"] };
+ };
+ {
+ Name = AL["Drums, Bags and Misc."];
+ { 1, "s60643", "44446", "=q3=Pack of Endless Pockets", "=ds=" .. AL["Trainer"] };
+ { 2, "s50970", "38399", "=q3=Trapper's Traveling Pack","=ds=" .. BabbleFaction["The Kalu'ak"] .. ": " .. BabbleFaction["Revered"] };
+ { 3, "s50971", "38347", "=q3=Mammoth Mining Bag","=ds=" .. BabbleFaction["The Sons of Hodir"] .. ": " .. BabbleFaction["Honored"] };
+ { 4, "s69386", "49633", "=q1=Drums of Forgotten Kings", "=ds=#sr# 450" };
+ { 5, "s69388", "49634", "=q1=Drums of the Wild", "=ds=#sr# 450" };
+
+ };
+ {
+ Name = BabbleInventory["Leather"];
+ { 1, "s50936", "38425", "=q1=Heavy Borean Leather", "=ds=" .. AL["Trainer"] };
+ { 2, "s64661", "33568", "=q1=Borean Leather", "=ds=" .. AL["Trainer"] };
+ };
+};
+
+
+AtlasLoot_Data["MiningWRATH"] = {
+ Name = MINING;
+ {
+ Name = MINING;
+ { 1, "s55208", "37663", "=q2=Smelt Titansteel", "=ds=#sr# 450" };
+ { 2, "s55211", "41163", "=q2=Smelt Titanium", "=ds=#sr# 450" };
+ { 3, "s49258", "36913", "=q1=Smelt Saronite", "=ds=#sr# 400" };
+ { 4, "s49252", "36916", "=q1=Smelt Cobalt", "=ds=#sr# 350" };
+ };
+};
+
+AtlasLoot_Data["FirstAidWRATH"] = {
+ Name = FIRSTAID;
+ {
+ Name = FIRSTAID;
+ { 1, "s45546", "34722", "=q1=Heavy Frostweave Bandage", "=ds=#sr# 400" };
+ { 2, "s45545", "34721", "=q1=Frostweave Bandage", "=ds=#sr# 375" };
+ };
+};
+-----------------
+--- Tailoring ---
+-----------------
+
+AtlasLoot_Data["TailoringWRATH"] = {
+ Name = TAILORING;
+ Type = "Crafting";
+ {
+ Name = AL["Cloth Armor"] .. " - Back";
+ { 1, "s56017", "41610", "=q4=Deathchill Cloak", "=ds=" .. AL["Achievement"] };
+ { 2, "s56016", "41609", "=q4=Wispcloak", "=ds=" .. AL["Achievement"] };
+ { 3, "s64730", "45810", "=q3=Cloak of Crimson Snow", "=ds=" };
+ { 4, "s64729", "45811", "=q3=Frostguard Drape", "=ds=" };
+ { 5, "s56015", "41608", "=q3=Cloak of Frozen Spirits", "=ds=" .. AL["Trainer"] };
+ { 6, "s56014", "41607", "=q3=Cloak of the Moon", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Chest";
+ { 1, "s67066", "47603", "=q4=Merlin's Robe", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 2, "s67146", "47604", "=q4=Merlin's Robe", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 3, "s67064", "47605", "=q4=Royal Moonshroud Robe", "=ds=" .. AL["Drop"] .. ", " ..BabbleZone["Trial of the Crusader"] };
+ { 4, "s67144", "47606", "=q4=Royal Moonshroud Robe", "=ds=" .. AL["Drop"] .. ", " ..BabbleZone["Trial of the Crusader"] };
+ { 5, "s56026", "42101", "=q4=Ebonweave Robe", "=ds=" .. AL["Trainer"] };
+ { 6, "s56024", "42100", "=q4=Moonshroud Robe", "=ds=" .. AL["Trainer"] };
+ { 7, "s56028", "42102", "=q4=Spellweave Robe", "=ds=" .. AL["Trainer"] };
+ { 8, "s60993", "43583", "=q4=Glacial Robe", "=ds=" .. AL["Trainer"] };
+ { 9, "s59587", "43972", "=q3=Frostsavage Robe", "=ds=" .. AL["Trainer"] };
+ { 10, "s55941", "41554", "=q3=Black Duskweave Robe", "=ds=" .. AL["Trainer"] };
+ { 11, "s55911", "41525", "=q3=Mystic Frostwoven Robe", "=ds=" .. AL["Trainer"] };
+ { 12, "s55921", "41549", "=q2=Duskweave Robe", "=ds=" .. AL["Trainer"] };
+ { 13, "s55903", "41515", "=q2=Frostwoven Robe", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Feet";
+ { 1, "s70551", "49890", "=q4=Deathfrost Boots", "=ds=" .. AL["Vendor"] .. "" };
+ { 2, "s70553", "49893", "=q4=Sandals of Consecration", "=ds=" .. AL["Vendor"] .. "" };
+ { 3, "s63206", "45567", "=q4=Savior's Slippers", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 4, "s63204", "45566", "=q4=Spellslinger's Slippers", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 5, "s60994", "43585", "=q4=Glacial Slippers", "=ds=" .. AL["Trainer"] };
+ { 6, "s56023", "42096", "=q3=Aurora Slippers", "=ds=" .. AL["Trainer"] };
+ { 7, "s59585", "43970", "=q3=Frostsavage Boots", "=ds=" .. AL["Trainer"] };
+ { 8, "s55924", "41544", "=q2=Duskweave Boots", "=ds=" .. AL["Trainer"] };
+ { 9, "s55906", "41520", "=q2=Frostwoven Boots", "=ds=" .. AL["Trainer"] };
+ { 10, "s56019", "41985", "=q3=Silky Iceshard Boots", "=ds=" .. AL["Trainer"] };
+
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Hands";
+ { 1, "s56027", "42111", "=q4=Ebonweave Gloves", "=ds=" .. AL["Trainer"] };
+ { 2, "s56025", "42103", "=q4=Moonshroud Gloves", "=ds=" .. AL["Trainer"] };
+ { 3, "s56029", "42113", "=q4=Spellweave Gloves", "=ds=" .. AL["Trainer"] };
+ { 4, "s59586", "41516", "=q3=Frostsavage Gloves", "=ds=" .. AL["Trainer"] };
+ { 5, "s56022", "42095", "=q3=Light Blessed Mittens", "=ds=" .. AL["Trainer"] };
+ { 6, "s55922", "41545", "=q2=Duskweave Gloves", "=ds=" .. AL["Trainer"] };
+ { 7, "s55904", "44211", "=q2=Frostwoven Gloves", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Head";
+ { 1, "s56018", "41984", "=q3=Hat of Wintry Doom", "=ds=" .. AL["Trainer"] };
+ { 2, "s59589", "43971", "=q3=Frostsavage Cowl", "=ds=" .. AL["Trainer"] };
+ { 3, "s55919", "41546", "=q2=Duskweave Cowl", "=ds=" .. AL["Trainer"] };
+ { 4, "s55907", "41521", "=q2=Frostwoven Cowl", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Legs";
+ { 1, "s70550", "49891", "=q4=Leggings of Woven Death", "=ds=" .. AL["Vendor"] .. "" };
+ { 2, "s70552", "49892", "=q4=Lightweave Leggings", "=ds=" .. AL["Vendor"] .. "" };
+ { 3, "s56021", "42093", "=q3=Frostmoon Pants", "=ds=" .. AL["Trainer"] };
+ { 4, "s59588", "43975", "=q3=Frostsavage Leggings", "=ds=" .. AL["Trainer"] };
+ { 5, "s55925", "41553", "=q3=Black Duskweave Leggings", "=ds=" .. AL["Trainer"] };
+ { 6, "s55901", "41548", "=q2=Duskweave Leggings", "=ds=" .. AL["Trainer"] };
+ { 7, "s56030", "41519", "=q2=Frostwoven Leggings", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Shoulder";
+ { 1, "s59584", "43973", "=q3=Frostsavage Shoulders", "=ds=" .. AL["Trainer"] };
+ { 2, "s55910", "41523", "=q3=Mystic Frostwoven Shoulders", "=ds=" .. AL["Trainer"] };
+ { 3, "s55923", "41550", "=q2=Duskweave Shoulders", "=ds=" .. AL["Trainer"] };
+ { 4, "s55902", "41513", "=q2=Frostwoven Shoulders", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Waist";
+ { 1, "s63205", "45558", "=q4=Cord of the White Dawn", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 2, "s63203", "45557", "=q4=Sash of Ancient Power", "=ds=" .. AL["Drop"] .. ", " .. BabbleZone["Ulduar"] };
+ { 3, "s60990", "43584", "=q4=Glacial Waistband", "=ds=" .. AL["Trainer"] };
+ { 4, "s56020", "41986", "=q3=Deep Frozen Cord", "=ds=" .. AL["Trainer"] };
+ { 5, "s59582", "43969", "=q3=Frostsavage Belt", "=ds=" .. AL["Trainer"] };
+ { 6, "s55914", "41543", "=q2=Duskweave Belt", "=ds=" .. AL["Trainer"] };
+ { 7, "s55908", "41522", "=q2=Frostwoven Belt", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Cloth Armor"] .. " - Wrist";
+ { 1, "s67145", "47586", "=q4=Bejeweled Wizard's Bracers", "=ds=" ..AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 2, "s67079", "47585", "=q4=Bejeweled Wizard's Bracers", "=ds=" ..AL["Drop"] .. ", " .. BabbleZone["Trial of the Crusader"] };
+ { 3, "s67065", "47587", "=q4=Royal Moonshroud Bracers", "=ds=" .. AL["Drop"] ..", " .. BabbleZone["Trial of the Crusader"] };
+ { 4, "s67147", "47588", "=q4=Royal Moonshroud Bracers", "=ds=" .. AL["Drop"] ..", " .. BabbleZone["Trial of the Crusader"] };
+ { 5, "s55943", "41555", "=q3=Black Duskweave Wristwraps", "=ds=" .. AL["Trainer"] };
+ { 6, "s59583", "43974", "=q3=Frostsavage Bracers", "=ds=" .. AL["Trainer"] };
+ { 7, "s55913", "41528", "=q3=Mystic Frostwoven Wriststraps", "=ds=" .. AL["Trainer"] };
+ { 8, "s55920", "41551", "=q2=Duskweave Wriststraps", "=ds=" .. AL["Trainer"] };
+ { 9, "s56031", "41512", "=q2=Frostwoven Wriststraps", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Bags"];
+ { 1, "s56005", "41600", "=q3=Glacial Bag", "=ds=" .. BabbleFaction["The Sons of Hodir"] ..": " .. BabbleFaction["Exalted"] };
+ { 2, "s56006", "41598", "=q3=Mysterious Bag","=ds=" .. BabbleFaction["The Wyrmrest Accord"] .. ": " .. BabbleFaction["Revered"] };
+ { 3, "s56004", "41597", "=q3=Abyssal Bag","=ds=" .. BabbleFaction["Knights of the Ebon Blade"] .. ": " .. BabbleFaction["Revered"] };
+ { 4, "s63924", "45773", "=q3=Emerald Bag", "=ds=" };
+ };
+ {
+ Name = AL["Item Enhancements"];
+ { 1, "s56009", "41602", "=q4=Brilliant Spellthread","=ds=" .. BabbleFaction["Argent Crusade"] .. ": " .. BabbleFaction["Exalted"] };
+ { 2, "s56011", "41604", "=q4=Sapphire Spellthread", "=ds=" ..BabbleFaction["Kirin Tor"] .. ": " .. BabbleFaction["Exalted"] };
+ { 3, "s56010", "41603", "=q3=Azure Spellthread", "=ds=" .. AL["Trainer"] };
+ { 4, "s56008", "41601", "=q3=Shining Spellthread", "=ds=" .. AL["Trainer"] };
+ { 16, "s56034", "Spell_Nature_AstralRecalGroup", "=ds=Master's Spellthread", "=ds=" .. AL["Trainer"] };
+ { 17, "s56039", "Spell_Nature_AstralRecalGroup", "=ds=Sanctified Spellthread", "=ds=" .. AL["Trainer"] };
+ { 19, "s55769", "INV_Misc_Thread_01", "=ds=Darkglow Embroidery", "=ds=" .. AL["Trainer"] };
+ { 20, "s55642", "INV_Misc_Thread_01", "=ds=Lightweave Embroidery", "=ds=" .. AL["Trainer"] };
+ { 21, "s55777", "INV_Misc_Thread_01", "=ds=Swordguard Embroidery", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = "Cloth/" .. AL["Miscellaneous"];
+ { 1, "s56002", "41593", "=q3=Ebonweave", "=ds=" .. AL["Trainer"] };
+ { 2, "s56001", "41594", "=q3=Moonshroud", "=ds=" .. AL["Trainer"] };
+ { 3, "s56003", "41595", "=q3=Spellweave", "=ds=" .. AL["Trainer"] };
+ { 4, "s55900", "41511", "=q2=Bolt of Imbued Frostweave", "=ds=" .. AL["Trainer"] };
+ { 5, "s55899", "41510", "=q1=Bolt of Frostweave", "=ds=" .. AL["Trainer"] };
+ { 7, "s75597", "54797", "=q4=Frosty Flying Carpet", "=ds=" };
+ { 8, "s60971", "44558", "=q4=Magnificent Flying Carpet", "=ds=" .. AL["Trainer"] };
+ { 10, "s55898", "41509", "=q1=Frostweave Net", "=ds=" .. AL["Trainer"] };
+ };
+ {
+ Name = AL["Shirts"];
+ { 1, "s55994", "41249", "=q1=Blue Lumberjack Shirt", "=ds=" .. AL["Drop"] };
+ { 2, "s55998", "41253", "=q1=Blue Workman's Shirt", "=ds=" .. AL["Drop"] };
+ { 3, "s55996", "41250", "=q1=Green Lumberjack Shirt", "=ds=" .. AL["Drop"] };
+ { 4, "s56000", "41255", "=q1=Green Workman's Shirt", "=ds=" .. AL["Trainer"] };
+ { 5, "s55993", "41248", "=q1=Red Lumberjack Shirt", "=ds=" .. AL["Drop"] };
+ { 6, "s55997", "41252", "=q1=Red Workman's Shirt", "=ds=" .. AL["Drop"] };
+ { 7, "s55999", "41254", "=q1=Rustic Workman's Shirt", "=ds=" .. AL["Drop"] };
+ { 8, "s55995", "41251", "=q1=Yellow Lumberjack Shirt", "=ds=" .. AL["Trainer"] };
+ { 9, "s12085", "10034", "=q1=Tuxedo Shirt", "=ds=#sr# 240" };
+ { 10, "s12080", "10055", "=q1=Pink Mageweave Shirt", "=ds=#sr# 235" };
+ { 11, "s12075", "10054", "=q1=Lavender Mageweave Shirt", "=ds=#sr# 230" };
+ { 12, "s12064", "10052", "=q1=Orange Martial Shirt", "=ds=#sr# 220" };
+ { 13, "s12061", "10056", "=q1=Orange Mageweave Shirt", "=ds=#sr# 215" };
+ { 14, "s3873", "4336", "=q1=Black Swashbuckler's Shirt", "=ds=#sr# 200" };
+ { 15, "s21945", "17723", "=q1=Green Holiday Shirt", "=ds=#sr# 190" };
+ { 16, "s3872", "4335", "=q1=Rich Purple Silk Shirt", "=ds=#sr# 185" };
+ { 17, "s8489", "6796", "=q1=Red Swashbuckler's Shirt", "=ds=#sr# 175" };
+ { 18, "s3871", "4334", "=q1=Formal White Shirt", "=ds=#sr# 170" };
+ { 19, "s8483", "6795", "=q1=White Swashbuckler's Shirt", "=ds=#sr# 160" };
+ { 20, "s3870", "4333", "=q1=Dark Silk Shirt", "=ds=#sr# 155" };
+ { 21, "s3869", "4332", "=q1=Bright Yellow Shirt", "=ds=#sr# 135" };
+ { 22, "s7892", "6384", "=q1=Stylish Blue Shirt", "=ds=#sr# 120" };
+ { 23, "s7893", "6385", "=q1=Stylish Green Shirt", "=ds=#sr# 120" };
+ { 24, "s3866", "4330", "=q1=Stylish Red Shirt", "=ds=#sr# 110" };
+ { 25, "s2406", "2587", "=q1=Gray Woolen Shirt", "=ds=#sr# 100" };
+ { 26, "s2396", "2579", "=q1=Green Linen Shirt", "=ds=#sr# 70" };
+ { 27, "s2394", "2577", "=q1=Blue Linen Shirt", "=ds=#sr# 40" };
+ { 28, "s2392", "2575", "=q1=Red Linen Shirt", "=ds=#sr# 40" };
+ { 29, "s2393", "2576", "=q1=White Linen Shirt", "=ds=#sr# 1" };
+ { 30, "s3915", "4344", "=q1=Brown Linen Shirt", "=ds=#sr# 1" };
+ };
+};
+--------------------------------
+--- Daily Profession Rewards ---
+--------------------------------
+
+---------------
+--- Cooking ---
+---------------
+
+AtlasLoot_Data["CookingDaily1"] = {
+ { 1, 33925, "", "=q3=Recipe: Delicious Chocolate Cake", "=ds=#p3# (1)", "", "" };
+ { 2, 33871, "", "=q3=Recipe: Stormchops", "=ds=#p3# (300)", "", "" };
+ { 3, 33869, "", "=q3=Recipe: Broiled Bloodfin", "=ds=#p3# (300)", "", "" };
+ { 4, 33875, "", "=q2=Recipe: Kibler's Bits", "=ds=#p3# (300)", "", "" };
+ { 5, 33870, "", "=q2=Recipe: Skullfish Soup", "=ds=#p3# (325)", "", "" };
+ { 6, 33873, "", "=q2=Recipe: Spicy Hot Talbuk", "=ds=#p3# (300)", "", "" };
+ Next = "CookingDaily2";
+ Back = "COOKINGDAILYMENU";
+};
+
+AtlasLoot_Data["CookingDaily2"] = {
+ { 1, 43035, "", "=q2=Recipe: Blackened Dragonfin", "=ds=#p3# (400)" };
+ { 2, 43032, "", "=q2=Recipe: Blackened Worg Steak", "=ds=#p3# (400)" };
+ { 3, 43029, "", "=q2=Recipe: Critter Bites", "=ds=#p3# (400)" };
+ { 4, 43033, "", "=q2=Recipe: Cuttlesteak", "=ds=#p3# (400)" };
+ { 5, 43036, "", "=q2=Recipe: Dragonfin Filet", "=ds=#p3# (400)" };
+ { 6, 43024, "", "=q2=Recipe: Firecracker Salmon", "=ds=#p3# (400)" };
+ { 7, 43030, "", "=q2=Recipe: Hearty Rhino", "=ds=#p3# (400)" };
+ { 8, 43026, "", "=q2=Recipe: Imperial Manta Steak", "=ds=#p3# (400)" };
+ { 9, 43018, "", "=q2=Recipe: Mega Mammoth Meal", "=ds=#p3# (400)" };
+ { 10, 43022, "", "=q2=Recipe: Mighty Rhino Dogs", "=ds=#p3# (400)" };
+ { 11, 43023, "", "=q2=Recipe: Poached Northern Sculpin", "=ds=#p3# (400)" };
+ { 12, 43028, "", "=q2=Recipe: Rhinolicious Wyrmsteak", "=ds=#p3# (400)" };
+ { 13, 43031, "", "=q2=Recipe: Snapper Extreme", "=ds=#p3# (400)" };
+ { 14, 43034, "", "=q2=Recipe: Spiced Mammoth Treats", "=ds=#p3# (400)" };
+ { 15, 43020, "", "=q2=Recipe: Spiced Wyrm Burger", "=ds=#p3# (400)" };
+ { 16, 43025, "", "=q2=Recipe: Spicy Blue Nettlefish", "=ds=#p3# (400)" };
+ { 17, 43027, "", "=q2=Recipe: Spicy Fried Herring", "=ds=#p3# (400)" };
+ { 18, 43019, "", "=q2=Recipe: Tender Shoveltusk Steak", "=ds=#p3# (400)" };
+ { 19, 43037, "", "=q2=Recipe: Tracker Snacks", "=ds=#p3# (400)" };
+ { 20, 43021, "", "=q2=Recipe: Very Burnt Worg", "=ds=#p3# (400)" };
+ { 22, 46349, "", "=q3=Chef's Hat", "=ds=#s1#" };
+ { 23, 43007, "", "=q1=Northern Spices", "=ds=#e8#" };
+ { 25, 0, "inv_misc_bag_11", "=q6=" .. AL["Small Spice Bag"], "" };
+ { 26, 33925, "", "=q3=Recipe: Delicious Chocolate Cake", "=ds=#p3# (1)", "", "" };
+ { 27, 33871, "", "=q3=Recipe: Stormchops", "=ds=#p3# (300)", "", "" };
+ { 28, 44228, "", "=q1=Baby Spice", "=ds=", "", "" };
+ { 29, 44114, "", "=q1=Old Spices", "=ds=", "", "" };
+ Prev = "CookingDaily1";
+ Back = "COOKINGDAILYMENU";
+};
+
+---------------
+--- Fishing ---
+---------------
+
+AtlasLoot_Data["FishingDaily1"] = {
+ { 1, 34837, "", "=q4=The 2 Ring", "=ds=#s13#", "", "" };
+ { 2, 33820, "", "=q3=Weather-Beaten Fishing Hat", "=ds=#s1#, #a1#", "", "" };
+ { 3, 35350, "", "=q3=Chuck's Bucket", "=ds=#e13#", "", "" };
+ { 4, 33818, "", "=q3=Muckbreath's Bucket", "=ds=#e13#", "", "" };
+ { 5, 35349, "", "=q3=Snarly's Bucket", "=ds=#e13#", "", "" };
+ { 6, 33816, "", "=q3=Toothy's Bucket", "=ds=#e13#", "", "" };
+ { 7, 34831, "", "=q3=Eye of the Sea", "=ds=#e7#", "", "" };
+ { 8, 34834, "", "=q2=Recipe: Captain Rumsey's Lager", "=ds=#p3# (100)", "", "" };
+ { 9, 34836, "", "=q2=Spun Truesilver Fishing Line", "=ds=#p24# #e17#", "", "" };
+ { 16, 34827, "", "=q1=Noble's Monocle", "=ds=#s1#", "", "" };
+ { 17, 34828, "", "=q1=Antique Silver Cufflinks", "=ds=#s8#", "", "" };
+ { 18, 34826, "", "=q1=Gold Wedding Band", "=ds=#s13#", "", "" };
+ { 19, 34829, "", "=q1=Ornate Drinking Stein", "=ds=#s15#", "", "" };
+ { 20, 34859, "", "=q1=Razor Sharp Fillet Knife", "=ds=#h1#, #w4#", "", "" };
+ { 21, 34109, "", "=q1=Weather-Beaten Journal", "=ds=#e10#", "", "" };
+ { 22, 8827, "", "=q1=Elixir of Water Walking", "=ds=#e2#", "", "" };
+ { 23, 34861, "", "=q1=Sharpened Fish Hook", "=ds=#e24#", "", "" };
+ Next = "FishingDaily2";
+ Back = "FISHINGDAILYMENU";
+};
+
+AtlasLoot_Data["FishingDaily2"] = {
+ { 1, 45862, "", "=q4=Bold Stormjewel", "=ds=#e7#", "", "" };
+ { 2, 45882, "", "=q4=Brilliant Stormjewel", "=ds=#e7#", "", "" };
+ { 3, 45879, "", "=q4=Delicate Stormjewel", "=ds=#e7#", "", "" };
+ { 4, 45987, "", "=q4=Rigid Stormjewel", "=ds=#e7#", "", "" };
+ { 5, 45883, "", "=q4=Runed Stormjewel", "=ds=#e7#", "", "" };
+ { 6, 45880, "", "=q4=Solid Stormjewel", "=ds=#e7#", "", "" };
+ { 7, 45881, "", "=q4=Sparkling Stormjewel", "=ds=#e7#", "", "" };
+ { 8, 33820, "", "=q3=Weather-Beaten Fishing Hat", "=ds=#s1#, #a1#", "", "" };
+ { 9, 45991, "", "=q3=Bone Fishing Pole", "=ds=#e20#", "", "" };
+ { 10, 45992, "", "=q3=Jeweled Fishing Pole", "=ds=#e20#", "", "" };
+ { 11, 44983, "", "=q3=Strand Crawler", "=ds=#e13#", "", "" };
+ { 12, 36784, "", "=q3=Siren's Tear", "=ds=#e7#", "", "" };
+ { 13, 45986, "", "=q3=Titanium Lockbox", "=ds=", "", "" };
+ { 14, 34834, "", "=q2=Recipe: Captain Rumsey's Lager", "=ds=#p3# (100)", "", "" };
+ { 15, 19971, "", "=q2=High Test Eternium Fishing Line", "=ds=#p24# #e17#", "", "" };
+ { 16, 45998, "", "=q1=Battered Jungle Hat", "=ds=#s1#", "", "" };
+ { 17, 45861, "", "=q1=Diamond-tipped Cane", "=ds=#h2#", "", "" };
+ { 18, 46006, "", "=q1=Glow Worm", "=ds=#e24#", "", "" };
+ { 19, 45984, "", "=q1=Unusual Compass", "=ds=", "", "" };
+ { 20, 40195, "", "=q1=Pygmy Oil", "=ds=#e2#", "", "" };
+ { 21, 8827, "", "=q1=Elixir of Water Walking", "=ds=#e2#", "", "" };
+ { 22, 46004, "", "=q1=Sealed Vial of Poison", "=ds=#m2#", "", "" };
+ { 23, 48679, "", "=q1=Waterlogged Recipe", "=ds=#m2# #p3# (350)", "", "" };
+ Prev = "FishingDaily1";
+ Back = "FISHINGDAILYMENU";
+};
+
+---------------------
+--- Jewelcrafting ---
+---------------------
+
+AtlasLoot_Data["JewelcraftingDaily1"] = {
+ { 1, 46917, "", "=q3=Design: Bold Cardinal Ruby", "=ds=#p12# (450)" };
+ { 2, 46919, "", "=q3=Design: Bright Cardinal Ruby", "=ds=#p12# (450)" };
+ { 3, 46918, "", "=q3=Design: Delicate Cardinal Ruby", "=ds=#p12# (450)" };
+ { 4, 46923, "", "=q3=Design: Flashing Cardinal Ruby", "=ds=#p12# (450)" };
+ { 5, 46921, "", "=q3=Design: Fractured Cardinal Ruby", "=ds=#p12# (450)" };
+ { 6, 46920, "", "=q3=Design: Precise Cardinal Ruby", "=ds=#p12# (450)" };
+ { 7, 46916, "", "=q3=Design: Runed Cardinal Ruby", "=ds=#p12# (450)" };
+ { 8, 46922, "", "=q3=Design: Subtle Cardinal Ruby", "=ds=#p12# (450)" };
+ { 9, 41576, "", "=q3=Design: Bold Scarlet Ruby", "=ds=#p12# (390)" };
+ { 10, 41577, "", "=q3=Design: Delicate Scarlet Ruby", "=ds=#p12# (390)" };
+ { 11, 41578, "", "=q3=Design: Flashing Scarlet Ruby", "=ds=#p12# (390)" };
+ { 16, 46930, "", "=q3=Design: Brilliant King's Amber", "=ds=#p12# (450)" };
+ { 17, 46932, "", "=q3=Design: Mystic King's Amber", "=ds=#p12# (450)" };
+ { 18, 46933, "", "=q3=Design: Quick King's Amber", "=ds=#p12# (450)" };
+ { 19, 46928, "", "=q3=Design: Rigid King's Amber", "=ds=#p12# (450)" };
+ { 20, 46929, "", "=q3=Design: Smooth King's Amber", "=ds=#p12# (450)" };
+ { 21, 46931, "", "=q3=Design: Thick King's Amber", "=ds=#p12# (450)" };
+ { 22, 41579, "", "=q3=Design: Quick Autumn's Glow", "=ds=#p12# (390)" };
+ { 23, 41580, "", "=q3=Design: Rigid Autumn's Glow", "=ds=#p12# (390)" };
+ Next = "JewelcraftingDaily2";
+ Back = "JEWELCRAFTINGDAILYMENU";
+};
+
+AtlasLoot_Data["JewelcraftingDaily2"] = {
+ { 1, 47010, "", "=q3=Design: Accurate Ametrine", "=ds=#p12# (450)" };
+ { 2, 47015, "", "=q3=Design: Champion's Ametrine", "=ds=#p12# (450)" };
+ { 3, 46949, "", "=q3=Design: Deadly Ametrine", "=ds=#p12# (450)" };
+ { 4, 47020, "", "=q3=Design: Deft Ametrine", "=ds=#p12# (450)" };
+ { 5, 46952, "", "=q3=Design: Durable Ametrine", "=ds=#p12# (450)" };
+ { 6, 47016, "", "=q3=Design: Empowered Ametrine", "=ds=#p12# (450)" };
+ { 7, 46953, "", "=q3=Design: Etched Ametrine", "=ds=#p12# (450)" };
+ { 8, 47019, "", "=q3=Design: Fierce Ametrine", "=ds=#p12# (450)" };
+ { 9, 47012, "", "=q3=Design: Glimmering Ametrine", "=ds=#p12# (450)" };
+ { 10, 47008, "", "=q3=Design: Glinting Ametrine", "=ds=#p12# (450)" };
+ { 11, 46948, "", "=q3=Design: Inscribed Ametrine", "=ds=#p12# (450)" };
+ { 12, 47021, "", "=q3=Design: Lucent Ametrine", "=ds=#p12# (450)" };
+ { 13, 46947, "", "=q3=Design: Luminous Ametrine", "=ds=#p12# (450)" };
+ { 14, 46950, "", "=q3=Design: Potent Ametrine", "=ds=#p12# (450)" };
+ { 15, 46956, "", "=q3=Design: Pristine Ametrine", "=ds=#p12# (450)" };
+ { 16, 47007, "", "=q3=Design: Reckless Ametrine", "=ds=#p12# (450)" };
+ { 17, 47022, "", "=q3=Design: Resolute Ametrine", "=ds=#p12# (450)" };
+ { 18, 47018, "", "=q3=Design: Resplendent Ametrine", "=ds=#p12# (450)" };
+ { 19, 47017, "", "=q3=Design: Stalwart Ametrine", "=ds=#p12# (450)" };
+ { 20, 47023, "", "=q3=Design: Stark Ametrine", "=ds=#p12# (450)" };
+ { 21, 46951, "", "=q3=Design: Veiled Ametrine", "=ds=#p12# (450)" };
+ { 22, 47011, "", "=q3=Design: Wicked Ametrine", "=ds=#p12# (450)" };
+ { 23, 41582, "", "=q3=Design: Glinting Monarch Topaz", "=ds=#p12# (390)" };
+ { 24, 41689, "", "=q3=Design: Luminous Monarch Topaz", "=ds=#p12# (390)" };
+ { 25, 41686, "", "=q3=Design: Potent Monarch Topaz", "=ds=#p12# (390)" };
+ { 26, 41690, "", "=q3=Design: Reckless Monarch Topaz", "=ds=#p12# (390)" };
+ { 27, 41687, "", "=q3=Design: Stark Monarch Topaz", "=ds=#p12# (390)" };
+ { 28, 41688, "", "=q3=Design: Veiled Monarch Topaz", "=ds=#p12# (390)" };
+ Prev = "JewelcraftingDaily1";
+ Next = "JewelcraftingDaily3";
+ Back = "JEWELCRAFTINGDAILYMENU";
+};
+
+AtlasLoot_Data["JewelcraftingDaily3"] = {
+ { 1, 46900, "", "=q3=Design: Dazzling Eye of Zul", "=ds=#p12# (450)" };
+ { 2, 46897, "", "=q3=Design: Enduring Eye of Zul", "=ds=#p12# (450)" };
+ { 3, 46912, "", "=q3=Design: Energized Eye of Zul", "=ds=#p12# (450)" };
+ { 4, 46904, "", "=q3=Design: Forceful Eye of Zul", "=ds=#p12# (450)" };
+ { 5, 46910, "", "=q3=Design: Intricate Eye of Zul", "=ds=#p12# (450)" };
+ { 6, 46901, "", "=q3=Design: Jagged Eye of Zul", "=ds=#p12# (450)" };
+ { 7, 46909, "", "=q3=Design: Lambent Eye of Zul", "=ds=#p12# (450)" };
+ { 8, 46905, "", "=q3=Design: Misty Eye of Zul", "=ds=#p12# (450)" };
+ { 9, 46914, "", "=q3=Design: Opaque Eye of Zul", "=ds=#p12# (450)" };
+ { 10, 46911, "", "=q3=Design: Radiant Eye of Zul", "=ds=#p12# (450)" };
+ { 11, 46903, "", "=q3=Design: Seer's Eye of Zul", "=ds=#p12# (450)" };
+ { 12, 46913, "", "=q3=Design: Shattered Eye of Zul", "=ds=#p12# (450)" };
+ { 13, 46907, "", "=q3=Design: Shining Eye of Zul", "=ds=#p12# (450)" };
+ { 14, 46898, "", "=q3=Design: Steady Eye of Zul", "=ds=#p12# (450)" };
+ { 15, 46906, "", "=q3=Design: Sundered Eye of Zul", "=ds=#p12# (450)" };
+ { 16, 46908, "", "=q3=Design: Tense Eye of Zul", "=ds=#p12# (450)" };
+ { 17, 46902, "", "=q3=Design: Timeless Eye of Zul", "=ds=#p12# (450)" };
+ { 18, 46915, "", "=q3=Design: Turbid Eye of Zul", "=ds=#p12# (450)" };
+ { 19, 46899, "", "=q3=Design: Vivid Eye of Zul", "=ds=#p12# (450)" };
+ { 20, 41697, "", "=q3=Design: Enduring Forest Emerald", "=ds=#p12# (390)" };
+ { 21, 41692, "", "=q3=Design: Energized Forest Emerald", "=ds=#p12# (390)" };
+ { 22, 41693, "", "=q3=Design: Forceful Forest Emerald", "=ds=#p12# (390)" };
+ { 23, 41694, "", "=q3=Design: Intricate Forest Emerald", "=ds=#p12# (390)" };
+ { 24, 41696, "", "=q3=Design: Lambent Forest Emerald", "=ds=#p12# (390)" };
+ { 25, 41699, "", "=q3=Design: Seer's Forest Emerald", "=ds=#p12# (390)" };
+ { 26, 41698, "", "=q3=Design: Vivid Forest Emerald", "=ds=#p12# (390)" };
+ Prev = "JewelcraftingDaily2";
+ Next = "JewelcraftingDaily4";
+ Back = "JEWELCRAFTINGDAILYMENU";
+};
+
+AtlasLoot_Data["JewelcraftingDaily4"] = {
+ { 1, 46934, "", "=q3=Design: Balanced Dreadstone", "=ds=#p12# (450)" };
+ { 2, 46941, "", "=q3=Design: Defender's Dreadstone", "=ds=#p12# (450)" };
+ { 3, 46936, "", "=q3=Design: Glowing Dreadstone", "=ds=#p12# (450)" };
+ { 4, 46942, "", "=q3=Design: Guardian's Dreadstone", "=ds=#p12# (450)" };
+ { 5, 46945, "", "=q3=Design: Infused Dreadstone", "=ds=#p12# (450)" };
+ { 6, 46943, "", "=q3=Design: Mysterious Dreadstone", "=ds=#p12# (450)" };
+ { 7, 46944, "", "=q3=Design: Puissant Dreadstone", "=ds=#p12# (450)" };
+ { 8, 46937, "", "=q3=Design: Purified Dreadstone", "=ds=#p12# (450)" };
+ { 9, 46940, "", "=q3=Design: Regal Dreadstone", "=ds=#p12# (450)" };
+ { 10, 46939, "", "=q3=Design: Royal Dreadstone", "=ds=#p12# (450)" };
+ { 11, 46938, "", "=q3=Design: Shifting Dreadstone", "=ds=#p12# (450)" };
+ { 12, 46935, "", "=q3=Design: Sovereign Dreadstone", "=ds=#p12# (450)" };
+ { 13, 46946, "", "=q3=Design: Tenuous Dreadstone", "=ds=#p12# (450)" };
+ { 14, 41702, "", "=q3=Design: Puissant Twilight Opal", "=ds=#p12# (390)" };
+ { 15, 41703, "", "=q3=Design: Regal Twilight Opal", "=ds=#p12# (390)" };
+ { 16, 41701, "", "=q3=Design: Royal Twilight Opal", "=ds=#p12# (390)" };
+ Prev = "JewelcraftingDaily3";
+ Next = "JewelcraftingDaily5";
+ Back = "JEWELCRAFTINGDAILYMENU";
+};
+
+AtlasLoot_Data["JewelcraftingDaily5"] = {
+ { 1, 46927, "", "=q3=Design: Lustrous Majestic Zircon", "=ds=#p12# (450)" };
+ { 2, 46924, "", "=q3=Design: Solid Majestic Zircon", "=ds=#p12# (450)" };
+ { 3, 46925, "", "=q3=Design: Sparkling Majestic Zircon", "=ds=#p12# (450)" };
+ { 4, 46926, "", "=q3=Design: Stormy Majestic Zircon", "=ds=#p12# (450)" };
+ { 5, 41581, "", "=q3=Design: Lustrous Sky Sapphire", "=ds=#p12# (390)" };
+ { 6, 42138, "", "=q3=Design: Solid Sky Sapphire", "=ds=#p12# (390)" };
+ { 16, 41704, "", "=q3=Design: Chaotic Skyflare Diamond", "=ds=#p12# (420)" };
+ { 17, 41705, "", "=q3=Design: Effulgent Skyflare Diamond", "=ds=#p12# (420)" };
+ { 18, 41706, "", "=q3=Design: Ember Skyflare Diamond", "=ds=#p12# (420)" };
+ { 19, 41708, "", "=q3=Design: Insightful Earthsiege Diamond", "=ds=#p12# (420)" };
+ { 20, 41709, "", "=q3=Design: Invigorating Earthsiege Diamond", "=ds=#p12# (420)" };
+ { 21, 41710, "", "=q3=Design: Relentless Earthsiege Diamond", "=ds=#p12# (420)" };
+ { 22, 41707, "", "=q3=Design: Revitalizing Skyflare Diamond", "=ds=#p12# (420)" };
+ { 23, 41711, "", "=q3=Design: Trenchant Earthsiege Diamond", "=ds=#p12# (420)" };
+ Prev = "JewelcraftingDaily4";
+ Next = "JewelcraftingDaily6";
+ Back = "JEWELCRAFTINGDAILYMENU";
+};
+
+AtlasLoot_Data["JewelcraftingDaily6"] = {
+ { 1, 42298, "", "=q3=Design: Bold Dragon's Eye", "=ds=#p12# (370)" };
+ { 2, 42299, "", "=q3=Design: Bright Dragon's Eye", "=ds=#p12# (370)" };
+ { 3, 42300, "", "=q3=Design: Brilliant Dragon's Eye", "=ds=#p12# (370)" };
+ { 4, 42301, "", "=q3=Design: Delicate Dragon's Eye", "=ds=#p12# (370)" };
+ { 5, 42302, "", "=q3=Design: Flashing Dragon's Eye", "=ds=#p12# (370)" };
+ { 6, 42303, "", "=q3=Design: Fractured Dragon's Eye", "=ds=#p12# (370)" };
+ { 7, 42304, "", "=q3=Design: Lustrous Dragon's Eye", "=ds=#p12# (370)" };
+ { 8, 42305, "", "=q3=Design: Mystic Dragon's Eye", "=ds=#p12# (370)" };
+ { 9, 42306, "", "=q3=Design: Precise Dragon's Eye", "=ds=#p12# (370)" };
+ { 10, 42307, "", "=q3=Design: Quick Dragon's Eye", "=ds=#p12# (370)" };
+ { 11, 42308, "", "=q3=Design: Rigid Dragon's Eye", "=ds=#p12# (370)" };
+ { 12, 42309, "", "=q3=Design: Runed Dragon's Eye", "=ds=#p12# (370)" };
+ { 13, 42310, "", "=q3=Design: Smooth Dragon's Eye", "=ds=#p12# (370)" };
+ { 14, 42311, "", "=q3=Design: Solid Dragon's Eye", "=ds=#p12# (370)" };
+ { 15, 42312, "", "=q3=Design: Sparkling Dragon's Eye", "=ds=#p12# (370)" };
+ { 16, 42313, "", "=q3=Design: Stormy Dragon's Eye", "=ds=#p12# (370)" };
+ { 17, 42314, "", "=q3=Design: Subtle Dragon's Eye", "=ds=#p12# (370)" };
+ { 18, 42315, "", "=q3=Design: Thick Dragon's Eye", "=ds=#p12# (370)" };
+ { 20, 42652, "", "=q4=Design: Titanium Earthguard Chain", "=ds=#p12# (420)" };
+ { 21, 42649, "", "=q4=Design: Titanium Earthguard Ring", "=ds=#p12# (420)" };
+ { 22, 42648, "", "=q4=Design: Titanium Impact Band", "=ds=#p12# (420)" };
+ { 23, 42651, "", "=q4=Design: Titanium Impact Choker", "=ds=#p12# (420)" };
+ { 24, 42653, "", "=q4=Design: Titanium Spellshock Necklace", "=ds=#p12# (420)" };
+ { 25, 42650, "", "=q4=Design: Titanium Spellshock Ring", "=ds=#p12# (420)" };
+ Prev = "JewelcraftingDaily5";
+ Back = "JEWELCRAFTINGDAILYMENU";
+};
diff --git a/AtlasLoot_OriginalWoW/originalwow.lua b/AtlasLoot_OriginalWoW/originalwow.lua
index 606fd56..d236d00 100644
--- a/AtlasLoot_OriginalWoW/originalwow.lua
+++ b/AtlasLoot_OriginalWoW/originalwow.lua
@@ -71,7018 +71,7064 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
---- Classic Kazzak
---- Setis
- ------------------------
- --- Dungeons & Raids ---
- ------------------------
+------------------------
+--- Dungeons & Raids ---
+------------------------
- ------------
- --- Keys ---
- ------------
+------------
+--- Keys ---
+------------
- AtlasLoot_Data["OldKeys"] = {
- Name = "Old Keys";
- {
- Name = "Old Keys";
- { 1, 0, "INV_Box_01", "=q6=#e9#", ""};
- { 2, 7146, "", "=q2=The Scarlet Key", "=ds=#e9#"};
- { 3, 12382, "", "=q2=Key to the City", "=ds=#e9#"};
- { 4, 6893, "", "=q1=Workshop Key", "=ds=#e9#"};
- { 5, 11000, "", "=q1=Shadowforge Key", "=ds=#e9#"};
- { 6, 11140, "", "=q1=Prison Cell Key", "=ds=#e9#"};
- { 7, 18249, "", "=q1=Crescent Key", "=ds=#e9#"};
- { 8, 13704, "", "=q1=Skeleton Key", "=ds=#e9#"};
- { 10, 0, "INV_Box_01", "=q6=#j7#", ""};
- { 11, 22057, "", "=q1=Brazier of Invocation", "=ds=#m27#"};
- { 12, 21986, "", "=q1=Banner of Provocation", "=ds=#m27#"};
- { 16, 0, "INV_Box_01", "=q6=#m20#", ""};
- { 17, 19931, "", "=q3=Gurubashi Mojo Madness", "=ds=#m27#"};
- { 18, 13523, "", "=q1=Blood of Innocents", "=ds=#m27#"};
- { 19, 18746, "", "=q1=Divination Scryer", "=ds=#m27#"};
- { 20, 18663, "", "=q1=J'eevee's Jar", "=ds=#m27#"};
- { 21, 19974, "", "=q1=Mudskunk Lure", "=ds=#m27#"};
- { 22, 7733, "", "=q1=Staff of Prehistoria", "=ds=#m27#"};
- { 23, 10818, "", "=q1=Yeh'kinya's Scroll", "=ds=#m27#"};
- };
- };
-
- -----------------------------------------
- --- Ahn'Qiraj: The Ruins of Ahn'Qiraj ---
- -----------------------------------------
-
- AtlasLoot_Data["RuinsofAQ"] = {
- Name = BabbleZone["Ruins of Ahn'Qiraj"];
- Type = "ClassicRaid";
- Map = "TheRuinsofAhnQiraj";
- {
- Name = BabbleBoss["Kurinnaxx"];
- { 1, 21499, "", "=q4=Vestments of the Shifting Sands", "=ds=#s5#, #a1#", "", "7.34%"};
- { 2, 21498, "", "=q4=Qiraji Sacrificial Dagger", "=ds=#h1#, #w4#", "", "7.53%"};
- { 4, 21500, "", "=q3=Belt of the Inquisition", "=ds=#s10#, #a1#", "", "14.84%"};
- { 5, 21501, "", "=q3=Toughened Silithid Hide Gloves", "=ds=#s9#, #a2#", "", "12.91%"};
- { 6, 21502, "", "=q3=Sand Reaver Wristguards", "=ds=#s8#, #a3#", "", "13.79%"};
- { 7, 21503, "", "=q3=Belt of the Sand Reaver", "=ds=#s10#, #a4#", "", "14.38%"};
- { 9, 22217, "", "=q1=Kurinnaxx's Venom Sac", "=ds=#m3#", "", "100%"};
- { 16, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "30.83%"};
- { 17, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "30.25%"};
- { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "7.98%"};
- { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "7.80%"};
-
- };
- {
- Name = BabbleBoss["General Rajaxx"];
- { 1, 21493, "", "=q4=Boots of the Vanguard", "=ds=#s12#, #a2#", "", "8.13%"};
- { 2, 21492, "", "=q4=Manslayer of the Qiraji", "=ds=#h2#, #w10#", "", "10.04%"};
- { 4, 21496, "", "=q3=Bracers of Qiraji Command", "=ds=#s8#, #a1#", "", "15.79%"};
- { 5, 21494, "", "=q3=Southwind's Grasp", "=ds=#s10#, #a2#", "", "15.13%"};
- { 6, 21497, "", "=q3=Boots of the Qiraji General", "=ds=#s12#, #a3#", "", "15.45%"};
- { 7, 21495, "", "=q3=Legplates of the Qiraji Command", "=ds=#s11#, #a4#", "", "15.47%"};
- { 9, 0, "INV_Box_01", "=q6="..AL["Rajaxx's Captains"], ""};
- { 10, 21810, "", "=q3=Treads of the Wandering Nomad", "=ds=#s12#, #a1#", "", "3.11%"};
- { 11, 21809, "", "=q3=Fury of the Forgotten Swarm", "=ds=#s2#", "", "3.20%"};
- { 12, 21806, "", "=q3=Gavel of Qiraji Authority", "=ds=#h2#, #w6#", "", "3.04%"};
- { 16, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "36.51%"};
- { 17, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "33.97%"};
- { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "8.82%"};
- { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.56%"};
- { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Lieutenant General Andorov"], ""};
- { 22, 22221, "", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# (300)"};
- { 23, 22219, "", "=q1=Plans: Jagged Obsidian Shield", "=ds=#p2# (300)"};
- };
- {
- Name = BabbleBoss["Moam"];
- { 1, 21472, "", "=q4=Dustwind Turban", "=ds=#s1#, #a1#", "", "7.76%"};
- { 2, 21467, "", "=q4=Thick Silithid Chestguard", "=ds=#s5#, #a2#", "", "6.76%"};
- { 3, 21479, "", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "", "7.12%"};
- { 4, 21471, "", "=q4=Talon of Furious Concentration", "=ds=#s15#", "", "7.39%"};
- { 6, 21470, "", "=q3=Cloak of the Savior", "=ds=#s4#", "", "14.23%"};
- { 7, 21468, "", "=q3=Mantle of Maz'Nadir", "=ds=#s3#, #a1#", "", "15.86%"};
- { 8, 21455, "", "=q3=Southwind Helm", "=ds=#s1#, #a2#", "", "14.08%"};
- { 9, 21474, "", "=q3=Chitinous Shoulderguards", "=ds=#s3#, #a2#", "", "15.25%"};
- { 10, 21469, "", "=q3=Gauntlets of Southwind", "=ds=#s9#, #a2#", "", "15.28%"};
- { 11, 21476, "", "=q3=Obsidian Scaled Leggings", "=ds=#s11#, #a3#", "", "6.81%"};
- { 12, 21475, "", "=q3=Legplates of the Destroyer", "=ds=#s11#, #a4#", "", "10.39%"};
- { 13, 21477, "", "=q3=Ring of Fury", "=ds=#s13#", "", "14.42%"};
- { 14, 21473, "", "=q3=Eye of Moam", "=ds=#s14#", "", "14.74%"};
- { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "36.38%"};
- { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "33.16%"};
- { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "7.56%"};
- { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.34%"};
- { 21, 22220, "", "=q3=Plans: Black Grasp of the Destroyer", "=ds=#p2# (300)", "", "4.11%"};
- { 22, 22194, "", "=q4=Black Grasp of the Destroyer", "=ds=#s9#, #a3#"};
- };
- {
- Name = BabbleBoss["Buru the Gorger"];
- { 1, 21487, "", "=q4=Slimy Scaled Gauntlets", "=ds=#s9#, #a3#", "", "2.64%"};
- { 2, 21486, "", "=q4=Gloves of the Swarm", "=ds=#s9#, #a4#", "", "5.22%"};
- { 3, 21485, "", "=q4=Buru's Skull Fragment", "=ds=#w8#", "", "7.88%"};
- { 5, 21489, "", "=q3=Quicksand Waders", "=ds=#s12#, #a1#", "", "15.95%"};
- { 6, 21491, "", "=q3=Scaled Bracers of the Gorger", "=ds=#s8#, #a2#", "", "16.51%"};
- { 7, 21490, "", "=q3=Slime Kickers", "=ds=#s12#, #a4#", "", "15.99%"};
- { 8, 21488, "", "=q3=Fetish of Chitinous Spikes", "=ds=#s14#", "", "17.22%"};
- { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "8.31%"};
- { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "8.98%"};
- { 18, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "9.77%"};
- { 19, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "9.84%"};
- { 20, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "26.98%"};
- { 21, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "25.58%"};
- };
- {
- Name = BabbleBoss["Ayamiss the Hunter"];
- { 1, 21479, "", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "", "6.18%"};
- { 2, 21466, "", "=q4=Stinger of Ayamiss", "=ds=#h3#, #w6#", "", "2.06%"};
- { 3, 21478, "", "=q4=Bow of Taut Sinew", "=ds=#w2#", "", "10.14%"};
- { 5, 21484, "", "=q3=Helm of Regrowth", "=ds=#s1#, #a2#", "", "15.85%"};
- { 6, 21480, "", "=q3=Scaled Silithid Gauntlets", "=ds=#s9#, #a3#", "", "17.10%"};
- { 7, 21482, "", "=q3=Boots of the Fiery Sands", "=ds=#s12#, #a3#", "", "4.92%"};
- { 8, 21481, "", "=q3=Boots of the Desert Protector", "=ds=#s12#, #a4#", "", "11.08%"};
- { 9, 21483, "", "=q3=Ring of the Desert Winds", "=ds=#s13#", "", "16.32%"};
- { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "8.24%"};
- { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "8.21%"};
- { 18, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "8.85%"};
- { 19, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "10.97%"};
- { 20, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "26.98%"};
- { 21, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "27.50%"};
- };
- {
- Name = BabbleBoss["Ossirian the Unscarred"];
- { 1, 21456, "", "=q4=Sandstorm Cloak", "=ds=#s4#", "", "10.89%"};
- { 2, 21464, "", "=q4=Shackles of the Unscarred", "=ds=#s8#, #a1#", "", "12.62%"};
- { 3, 21462, "", "=q4=Gloves of Dark Wisdom", "=ds=#s9#, #a1#", "", "11.89%"};
- { 4, 21461, "", "=q4=Leggings of the Black Blizzard", "=ds=#s11#, #a1#", "", "12.83%"};
- { 5, 21458, "", "=q4=Gauntlets of New Life", "=ds=#s9#, #a2#", "", "13.25%"};
- { 6, 21454, "", "=q4=Runic Stone Shoulders", "=ds=#s3#, #a3#", "", "4.10%"};
- { 7, 21463, "", "=q4=Ossirian's Binding", "=ds=#s10#, #a3#", "", "12.27%"};
- { 8, 21460, "", "=q4=Helm of Domination", "=ds=#s1#, #a4#", "", "12.18%"};
- { 9, 21453, "", "=q4=Mantle of the Horusath", "=ds=#s3#, #a4#", "", "6.96%"};
- { 10, 21457, "", "=q4=Bracers of Brutality", "=ds=#s8#, #a4#", "", "10.74%"};
- { 11, 21715, "", "=q4=Sand Polished Hammer", "=ds=#h1#, #w6#", "", "5.95%"};
- { 12, 21459, "", "=q4=Crossbow of Imminent Doom", "=ds=#w3#", "", "6.12%"};
- { 13, 21452, "", "=q4=Staff of the Ruins", "=ds=#w9#", "", "10.32%"};
- { 16, 21220, "", "=q4=Head of Ossirian the Unscarred", "=ds=#m2#", "", "100%"};
- { 17, 21504, "", "=q4=Charm of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
- { 18, 21507, "", "=q4=Amulet of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
- { 19, 21505, "", "=q4=Choker of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
- { 20, 21506, "", "=q4=Pendant of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
- { 22, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "35.27%"};
- { 23, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "30.69%"};
- { 24, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "9.65%"};
- { 25, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.53%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 20873, "", "=q3=Alabaster Idol", "=ds=#e15#", "", "0.39%"};
- { 2, 20869, "", "=q3=Amber Idol", "=ds=#e15#", "", "0.36%"};
- { 3, 20866, "", "=q3=Azure Idol", "=ds=#e15#", "", "0.48%"};
- { 4, 20870, "", "=q3=Jasper Idol", "=ds=#e15#", "", "0.52%"};
- { 5, 20868, "", "=q3=Lambent Idol", "=ds=#e15#", "", "0.48%"};
- { 6, 20871, "", "=q3=Obsidian Idol", "=ds=#e15#", "", "0.41%"};
- { 7, 20867, "", "=q3=Onyx Idol", "=ds=#e15#", "", "0.36%"};
- { 8, 20872, "", "=q3=Vermillion Idol", "=ds=#e15#", "", "0.31%"};
- { 10, 22202, "", "=q1=Small Obsidian Shard", "=ds=#e8#"};
- { 11, 22203, "", "=q1=Large Obsidian Shard", "=ds=#e8#"};
- { 16, 20864, "", "=q2=Bone Scarab", "=ds=#e15#", "", "0.84%"};
- { 17, 20861, "", "=q2=Bronze Scarab", "=ds=#e15#", "", "0.88%"};
- { 18, 20863, "", "=q2=Clay Scarab", "=ds=#e15#", "", "0.95%"};
- { 19, 20862, "", "=q2=Crystal Scarab", "=ds=#e15#", "", "0.99%"};
- { 20, 20859, "", "=q2=Gold Scarab", "=ds=#e15#", "", "0.96%"};
- { 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%"};
- { 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%"};
- { 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%"};
- { 25, 21761, "", "=q1=Scarab Coffer Key", "=ds=#e9#", "", "7.27%"};
- };
- {
- Name = "AQ Class Books";
- { 1, 21294, "", "=q3=Book of Healing Touch XI", "=q1=#m1# =ds=#c1#", "", "4.12%"};
- { 2, 21296, "", "=q3=Book of Rejuvenation XI", "=q1=#m1# =ds=#c1#", "", "4.20%"};
- { 3, 21295, "", "=q3=Book of Starfire VII", "=q1=#m1# =ds=#c1#", "", "4.00%"};
- { 4, 21306, "", "=q3=Guide: Serpent Sting IX", "=q1=#m1# =ds=#c2#", "", "4.85%"};
- { 5, 21304, "", "=q3=Guide: Multi-Shot V", "=q1=#m1# =ds=#c2#", "", "4.66%"};
- { 6, 21307, "", "=q3=Guide: Aspect of the Hawk VII", "=q1=#m1# =ds=#c2#", "", "4.65%"};
- { 7, 21279, "", "=q3=Tome of Fireball XII", "=q1=#m1# =ds=#c3#", "", "5.15%"};
- { 8, 21214, "", "=q3=Tome of Frostbolt XI", "=q1=#m1# =ds=#c3#", "", "5.10%"};
- { 9, 21280, "", "=q3=Tome of Arcane Missiles VIII", "=q1=#m1# =ds=#c3#", "", "5.03%"};
- { 10, 21288, "", "=q3=Libram: Blessing of Wisdom VI", "=q1=#m1# =ds=#c4#", "", "3.50%"};
- { 11, 21289, "", "=q3=Libram: Blessing of Might VII", "=q1=#m1# =ds=#c4#", "", "3.07%"};
- { 12, 21290, "", "=q3=Libram: Holy Light IX", "=q1=#m1# =ds=#c4#", "", "3.09%"};
- { 13, 21284, "", "=q3=Codex of Greater Heal V", "=q1=#m1# =ds=#c5#", "", "5.15%"};
- { 14, 21287, "", "=q3=Codex of Prayer of Healing V", "=q1=#m1# =ds=#c5#", "", "4.89%"};
- { 15, 21285, "", "=q3=Codex of Renew X", "=q1=#m1# =ds=#c5#", "", "4.91%"};
- { 16, 21300, "", "=q3=Handbook of Backstab IX", "=q1=#m1# =ds=#c6#", "", "4.29%"};
- { 17, 21303, "", "=q3=Handbook of Feint V", "=q1=#m1# =ds=#c6#", "", "4.79%"};
- { 18, 21302, "", "=q3=Handbook of Deadly Poison V", "=q1=#m1# =ds=#c6#", "", "5.47%"};
- { 19, 21291, "", "=q3=Tablet of Healing Wave X", "=q1=#m1# =ds=#c7#", "", "2.05%"};
- { 20, 21292, "", "=q3=Tablet of Strength of Earth Totem V", "=q1=#m1# =ds=#c7#", "", "1.67%"};
- { 21, 21293, "", "=q3=Tablet of Grace of Air Totem III", "=q1=#m1# =ds=#c7#", "", "1.81%"};
- { 22, 21281, "", "=q3=Grimoire of Shadow Bolt X", "=q1=#m1# =ds=#c8#", "", "4.23%"};
- { 23, 21283, "", "=q3=Grimoire of Corruption VII", "=q1=#m1# =ds=#c8#", "", "3.82%"};
- { 24, 21282, "", "=q3=Grimoire of Immolate VIII", "=q1=#m1# =ds=#c8#", "", "4.51%"};
- { 25, 21298, "", "=q3=Manual of Battle Shout VII", "=q1=#m1# =ds=#c9#", "", "4.84%"};
- { 26, 21299, "", "=q3=Manual of Revenge VI", "=q1=#m1# =ds=#c9#", "", "4.78%"};
- { 27, 21297, "", "=q3=Manual of Heroic Strike IX", "=q1=#m1# =ds=#c9#", "", "4.83%"};
- };
- {
- Name = "AQ Enchants";
- { 1, 20728, "", "=q3=Formula: Enchant Gloves - Frost Power", "=ds=#p4# (300)"};
- { 2, 20731, "", "=q3=Formula: Enchant Gloves - Superior Agility", "=ds=#p4# (300)"};
- { 3, 20734, "", "=q3=Formula: Enchant Cloak - Stealth", "=ds=#p4# (300)"};
- { 4, 20729, "", "=q3=Formula: Enchant Gloves - Fire Power", "=ds=#p4# (300)"};
- { 5, 20736, "", "=q3=Formula: Enchant Cloak - Dodge", "=ds=#p4# (300)"};
- { 6, 20730, "", "=q3=Formula: Enchant Gloves - Healing Power", "=ds=#p4# (300)"};
- { 7, 20727, "", "=q3=Formula: Enchant Gloves - Shadow Power", "=ds=#p4# (300)"};
- };
- };
-
- ------------------------------------------
- --- Ahn'Qiraj: The Temple of Ahn'Qiraj ---
- ------------------------------------------
-
- AtlasLoot_Data["TempleofAQ"] = {
- Name = BabbleZone["Temple of Ahn'Qiraj"];
- Type = "ClassicRaid";
- Map = "TheTempleofAhnQiraj";
- {
- Name = BabbleBoss["The Prophet Skeram"];
- { 1, 21701, "", "=q4=Cloak of Concentrated Hatred", "=ds=#s4#", "", "11.81%"};
- { 2, 21708, "", "=q4=Beetle Scaled Wristguards", "=ds=#s8#, #a2#", "", "12.85%"};
- { 3, 21698, "", "=q4=Leggings of Immersion", "=ds=#s11#, #a2#", "", " 10.99%"};
- { 4, 21699, "", "=q4=Barrage Shoulders", "=ds=#s3#, #a3#", "", "11.50%"};
- { 5, 21705, "", "=q4=Boots of the Fallen Prophet", "=ds=#s12#, #a3#", "", "3.33%"};
- { 6, 21814, "", "=q4=Breastplate of Annihilation", "=ds=#s5#, #a4#", "", "11.01%"};
- { 7, 21704, "", "=q4=Boots of the Redeemed Prophecy", "=ds=#s12#, #a4#", "", "7.75%"};
- { 8, 21706, "", "=q4=Boots of the Unwavering Will", "=ds=#s12#, #a4#", "", "12.23%"};
- { 10, 21702, "", "=q4=Amulet of Foul Warding", "=ds=#s2#", "", "12.20%"};
- { 11, 21700, "", "=q4=Pendant of the Qiraji Guardian", "=ds=#s2#", "", "11.57%"};
- { 12, 21707, "", "=q4=Ring of Swarming Thought", "=ds=#s13#", "", "12.57%"};
- { 13, 21703, "", "=q4=Hammer of Ji'zhi", "=ds=#h2#, #w6#", "", "7.14%"};
- { 14, 21128, "", "=q4=Staff of the Qiraji Prophets", "=ds=#w9#", "", " 6.32%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "1.74%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "1.32%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- { 27, 22222, "", "=q3=Plans: Thick Obsidian Breastplate", "=ds=#p2# (300)", "", "5.00%"};
- { 28, 22196, "", "=q4=Thick Obsidian Breastplate", "=ds=#s5#, #a4#"};
- };
- {
- Name = BabbleBoss["The Bug Family"];
- { 1, 21697, "", "=q4=Cape of the Trinity", "=ds=#s4# =q2=#m5#", "", "14%"};
- { 2, 21694, "", "=q4=Ternary Mantle", "=ds=#s3#, #a1# =q2=#m5#", "", "16%"};
- { 3, 21696, "", "=q4=Robes of the Triumvirate", "=ds=#s5#, #a1# =q2=#m5#", "", "13%"};
- { 4, 21693, "", "=q4=Guise of the Devourer", "=ds=#s1#, #a2# =q2=#m5#", "", "16%"};
- { 5, 21692, "", "=q4=Triad Girdle", "=ds=#s10#, #a4# =q2=#m5#", "", "16%"};
- { 6, 21695, "", "=q4=Angelista's Touch", "=ds=#s13# =q2=#m5#", "", "14%"};
- { 8, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3# =q2=#m5#", "", "7%"};
- { 9, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3# =q2=#m5#", "", "7%"};
- { 11, 21680, "", "=q4=Vest of Swift Execution", "=ds=#s5#, #a2# =q2=#n115#", "", "21%"};
- { 12, 21603, "", "=q4=Wand of Qiraji Nobility", "=ds=#w12# =q2=#n115#", "", "25%"};
- { 13, 21681, "", "=q4=Ring of the Devoured", "=ds=#s13# =q2=#n115#", "", "17%"};
- { 14, 21685, "", "=q4=Petrified Scarab", "=ds=#s14# =q2=#n115#", "", "21%"};
- { 16, 21689, "", "=q4=Gloves of Ebru", "=ds=#s9#, #a2# =q2=#n116#", "", "18%"};
- { 17, 21691, "", "=q4=Ooze-ridden Gauntlets", "=ds=#s9#, #a4# =q2=#n116#", "", "20%"};
- { 18, 21688, "", "=q4=Boots of the Fallen Hero", "=ds=#s12#, #a4# =q2=#n116#", "", "18%"};
- { 19, 21690, "", "=q4=Angelista's Charm", "=ds=#s2# =q2=#n116#", "", "20%"};
- { 21, 21686, "", "=q4=Mantle of Phrenic Power", "=ds=#s3#, #a1# =q2=#n117#", "", "13%"};
- { 22, 21682, "", "=q4=Bile-Covered Gauntlets", "=ds=#s9#, #a2# =q2=#n117#", "", "19%"};
- { 23, 21684, "", "=q4=Mantle of the Desert's Fury", "=ds=#s3#, #a3# =q2=#n117#", "", "16%"};
- { 24, 21683, "", "=q4=Mantle of the Desert Crusade", "=ds=#s3#, #a4# =q2=#n117#", "", "14%"};
- { 25, 21687, "", "=q4=Ukko's Ring of Darkness", "=ds=#s13# =q2=#n117#", "", "20%"};
- };
- {
- Name = BabbleBoss["Battleguard Sartura"];
- { 1, 21671, "", "=q4=Robes of the Battleguard", "=ds=#s5#, #a1#", "", "13.30%"};
- { 2, 21676, "", "=q4=Leggings of the Festering Swarm", "=ds=#s11#, #a1#", "", "13.02%"};
- { 3, 21648, "", "=q4=Recomposed Boots", "=ds=#s12#, #a1#", "", "7.64%"};
- { 4, 21669, "", "=q4=Creeping Vine Helm", "=ds=#s1#, #a2#", "", "12.33%"};
- { 5, 21672, "", "=q4=Gloves of Enforcement", "=ds=#s9#, #a2#", "", "11.87%"};
- { 6, 21675, "", "=q4=Thick Qirajihide Belt", "=ds=#s10#, #a2#", "", "13.26%"};
- { 7, 21668, "", "=q4=Scaled Leggings of Qiraji Fury", "=ds=#s11#, #a3#", "", "4.03%"};
- { 8, 21674, "", "=q4=Gauntlets of Steadfast Determination", "=ds=#s9#, #a4#", "", "11.07%"};
- { 9, 21667, "", "=q4=Legplates of Blazing Light", "=ds=#s11#, #a4#", "", "7.44%"};
- { 11, 21678, "", "=q4=Necklace of Purity", "=ds=#s2#", "", "14.21%"};
- { 12, 21670, "", "=q4=Badge of the Swarmguard", "=ds=#s14#", "", "13.22%"};
- { 13, 21666, "", "=q4=Sartura's Might", "=ds=#s15#", "", "6.47%"};
- { 14, 21673, "", "=q4=Silithid Claw", "=ds=#h3#, #w13#", "", "7.16%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.01%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.02%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- };
- {
- Name = BabbleBoss["Fankriss the Unyielding"];
- { 1, 21627, "", "=q4=Cloak of Untold Secrets", "=ds=#s4#", "", "12.51%"};
- { 2, 21663, "", "=q4=Robes of the Guardian Saint", "=ds=#s5#, #a1#", "", "12.95%"};
- { 3, 21665, "", "=q4=Mantle of Wicked Revenge", "=ds=#s3#, #a2#", "", "13.25%"};
- { 4, 21645, "", "=q4=Hive Tunneler's Boots", "=ds=#s12#, #a2#", "", "14.04%"};
- { 5, 21651, "", "=q4=Scaled Sand Reaver Leggings", "=ds=#s11#, #a3#", "", "12.91%"};
- { 6, 21639, "", "=q4=Pauldrons of the Unrelenting", "=ds=#s3#, #a4#", "", "14.78%"};
- { 7, 21652, "", "=q4=Silithid Carapace Chestguard", "=ds=#s5#, #a4#", "", "10.29%"};
- { 9, 21647, "", "=q4=Fetish of the Sand Reaver", "=ds=#s14#", "", "13.82%"};
- { 10, 21664, "", "=q4=Barbed Choker", "=ds=#s2#", "", "12.63%"};
- { 11, 22402, "", "=q4=Libram of Grace", "=ds=#s16#, #w16#", "", "4.21%"};
- { 12, 22396, "", "=q4=Totem of Life", "=ds=#s16#, #w15#", "", "1.69%"};
- { 13, 21650, "", "=q4=Ancient Qiraji Ripper", "=ds=#h1#, #w10#", "", " 7.19%"};
- { 14, 21635, "", "=q4=Barb of the Sand Reaver", "=ds=#w7#", "", "6.61%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.84%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.09%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- };
- {
- Name = BabbleBoss["Viscidus"];
- { 1, 21624, "", "=q4=Gauntlets of Kalimdor", "=ds=#s9#, #a3#", "", "3.90%"};
- { 2, 21626, "", "=q4=Slime-coated Leggings", "=ds=#s11#, #a3#", "", "13.66%"};
- { 3, 21623, "", "=q4=Gauntlets of the Righteous Champion", "=ds=#s9#, #a4#", "", "5.37%"};
- { 5, 21677, "", "=q4=Ring of the Qiraji Fury", "=ds=#s13#", "", "2.93%"};
- { 6, 21625, "", "=q4=Scarab Brooch", "=ds=#s14#", "", "21.46%"};
- { 7, 22399, "", "=q4=Idol of Health", "=ds=#s16#, #w14#", "", "7.32%"};
- { 8, 21622, "", "=q4=Sharpened Silithid Femur", "=ds=#h3#, #w10#", "", "15.12%"};
- { 10, 20932, "", "=q4=Spaulders of the Imperial Guard", "=ds=#tt2.5#", "", "100%", "=LT=T2.5SHOULDER"};
- { 11, 20928, "", "=q4=Bindings of the Lost Nomad","=ds=#tt2.5#", "", "100%", "=LT=T2.5FEET"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "3.19%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "6.86%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- };
- {
- Name = BabbleBoss["Princess Huhuran"];
- { 1, 21619, "", "=q4=Gloves of the Messiah", "=ds=#s9#, #a1#", "", "12.01%"};
- { 2, 21621, "", "=q4=Cloak of the Golden Hive", "=ds=#s4#", "", "12.56%"};
- { 3, 21617, "", "=q4=Wasphide Gauntlets", "=ds=#s9#, #a2#", "", "11.97%"};
- { 4, 21618, "", "=q4=Hive Defiler Wristguards", "=ds=#s8#, #a4#", "", "10.34%"};
- { 6, 21620, "", "=q4=Ring of the Martyr", "=ds=#s13#", "", "12.97%"};
- { 7, 21616, "", "=q4=Huhuran's Stinger", "=ds=#w2#", "", "5.71%"};
- { 9, 20932, "", "=q4=Spaulders of the Imperial Guard", "=ds=#tt2.5#", "", "100%", "=LT=T2.5SHOULDER"};
- { 10, 20928, "", "=q4=Bindings of the Lost Nomad","=ds=#tt2.5#", "", "100%", "=LT=T2.5FEET"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.31%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.11%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- };
- {
- Name = BabbleBoss["The Twin Emperors"];
- { 1, 21600, "", "=q4=Boots of Epiphany", "=ds=#s12#, #a1#", "", "15.77%"};
- { 2, 21602, "", "=q4=Qiraji Execution Bracers", "=ds=#s8#, #a2#", "", "15.95%"};
- { 3, 21599, "", "=q4=Vek'lor's Gloves of Devastation", "=ds=#s9#, #a3#", "", "15.77%"};
- { 4, 21598, "", "=q4=Royal Qiraji Belt", "=ds=#s10#, #a4#", "", "9.84%"};
- { 5, 21597, "", "=q4=Royal Scepter of Vek'lor", "=ds=#s15#", "", "6.99%"};
- { 6, 21601, "", "=q4=Ring of Emperor Vek'lor", "=ds=#s13#", "", "17.27%"};
- { 7, 20735, "", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# (300)", "", "6.62%"};
- { 9, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "6.25%"};
- { 10, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 11, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 12, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 13, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- { 15, 20930, "", "=q4=Diadem of the Desert Prince", "=ds=#tt2.5#", "", "100%", "=LT=T2.5HEAD"};
- { 16, 21604, "", "=q4=Bracelets of Royal Redemption", "=ds=#s8#, #a1#", "", "12.51%"};
- { 17, 21605, "", "=q4=Gloves of the Hidden Temple", "=ds=#s9#, #a2#", "", "15.45%"};
- { 18, 21609, "", "=q4=Regenerating Belt of Vek'nilash", "=ds=#s10#, #a2#", "", "13.35%"};
- { 19, 21607, "", "=q4=Grasp of the Fallen Emperor", "=ds=#s10#, #a3#", "", "2.72%"};
- { 20, 21606, "", "=q4=Belt of the Fallen Emperor", "=ds=#s10#, #a4#", "", "12.22%"};
- { 21, 21679, "", "=q4=Kalimdor's Revenge", "=ds=#h2#, #w10#", "", "9.25%"};
- { 22, 21608, "", "=q4=Amulet of Vek'nilash", "=ds=#s2#", "", "14.25%"};
- { 23, 20726, "", "=q3=Formula: Enchant Gloves - Threat", "=ds=#p4# (300)", "", "6.24%"};
- { 25, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.00%"};
- { 26, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 27, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 28, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- };
- {
- Name = BabbleBoss["Ouro"];
- { 1, 21615, "", "=q4=Don Rigoberto's Lost Hat", "=ds=#s1#, #a1#", "", "28.63%"};
- { 2, 21611, "", "=q4=Burrower Bracers", "=ds=#s8#, #a1#", "", "24.44%"};
- { 3, 23558, "", "=q4=The Burrower's Shell", "=ds=#s14#", "", "2.90%"};
- { 4, 23570, "", "=q4=Jom Gabbar", "=ds=#s14#", "", "2.80%"};
- { 5, 23557, "", "=q4=Larvae of the Great Worm", "=ds=#w5#", "", "3.95%"};
- { 6, 21610, "", "=q4=Wormscale Blocker", "=ds=#w8#", "", "16.54%"};
- { 8, 20931, "", "=q4=Hardened Qiraj Chitin", "=ds=#tt2.5#", "", "100%", "=LT=T2.5LEGS"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.20%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4# =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.10%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4# =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#"};
- };
- {
- Name = BabbleBoss["C'Thun"];
- { 1, 21583, "", "=q4=Cloak of Clarity", "=ds=#s4#", "", "14.45%"};
- { 2, 22731, "", "=q4=Cloak of the Devoured", "=ds=#s4#", "", "16.34%"};
- { 3, 21585, "", "=q4=Dark Storm Gauntlets", "=ds=#s9#, #a1#", "", "13.63%"};
- { 4, 22730, "", "=q4=Eyestalk Waist Cord", "=ds=#s10#, #a1#", "", "10.41%"};
- { 5, 21582, "", "=q4=Grasp of the Old God", "=ds=#s10#, #a1#", "", "15.04%"};
- { 6, 21586, "", "=q4=Belt of Never-ending Agony", "=ds=#s10#, #a2#", "", "11.24%"};
- { 7, 21581, "", "=q4=Gauntlets of Annihilation", "=ds=#s9#, #a4#", "", "12.04%"};
- { 9, 22732, "", "=q4=Mark of C'Thun", "=ds=#s2#", "", "10.62%"};
- { 10, 21596, "", "=q4=Ring of the Godslayer", "=ds=#s13#", "", "11.83%"};
- { 11, 21579, "", "=q4=Vanquished Tentacle of C'Thun", "=ds=#s14#", "", "12.18%"};
- { 12, 21126, "", "=q4=Death's Sting", "=ds=#h1#, #w4#", "", "6.84%"};
- { 13, 21134, "", "=q4=Dark Edge of Insanity", "=ds=#h2#, #w1#", "", "5.93%"};
- { 14, 21839, "", "=q4=Scepter of the False Prophet", "=ds=#h3#, #w6#", "", "4.75%"};
- { 16, 20933, "", "=q4=Husk of the Old God", "=ds=#tt2.5#", "", "100%", "=LT=T2.5CHEST"};
- { 18, 21221, "", "=q4=Eye of C'Thun", "=ds=#m2#", "", "100%"};
- { 19, 21710, "", "=q4=Cloak of the Fallen God", "=q1=#m4#: =ds=#s4#"};
- { 20, 21712, "", "=q4=Amulet of the Fallen God", "=q1=#m4#: =ds=#s2#"};
- { 21, 21709, "", "=q4=Ring of the Fallen God", "=q1=#m4#: =ds=#s13#"};
- { 23, 22734, "", "=q1=Base of Atiesh", "=ds=#m3#"};
- { 24, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#"};
- { 25, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#"};
- { 26, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#"};
- { 27, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 21838, "", "=q4=Garb of Royal Ascension", "=ds=#s5#, #a1#", "", "0.20%"};
- { 2, 21888, "", "=q4=Gloves of the Immortal", "=ds=#s9#, #a1#", "", "0.16%"};
- { 3, 21889, "", "=q4=Gloves of the Redeemed Prophecy", "=ds=#s9#, #a4# =q1=#m1# =ds=#c4#", "", "0.39%"};
- { 4, 21836, "", "=q4=Ritssyn's Ring of Chaos", "=ds=#s13#", "", "0.18%"};
- { 5, 21891, "", "=q4=Shard of the Fallen Star", "=ds=#s14#", "", "0.59%"};
- { 6, 21856, "", "=q4=Neretzek, The Blood Drinker", "=ds=#h2#, #w1#", "", "0.20%"};
- { 7, 21837, "", "=q4=Anubisath Warhammer", "=ds=#h1#, #w6#", "", "0.21%"};
- { 9, 22202, "", "=q1=Small Obsidian Shard", "=ds=#e8#"};
- { 10, 22203, "", "=q1=Large Obsidian Shard", "=ds=#e8#"};
- { 16, 21218, "", "=q3=Blue Qiraji Resonating Crystal", "=ds=#e12#", "", "10.64%"};
- { 17, 21324, "", "=q3=Yellow Qiraji Resonating Crystal", "=ds=#e12#", "", "12.15%"};
- { 18, 21323, "", "=q3=Green Qiraji Resonating Crystal", "=ds=#e12#", "", "11.62%"};
- { 19, 21321, "", "=q3=Red Qiraji Resonating Crystal", "=ds=#e12#", "", "1.39%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 20876, "", "=q3=Idol of Death", "=ds=#e15#", "", "0.26%"};
- { 2, 20879, "", "=q3=Idol of Life", "=ds=#e15#", "", "0.29%"};
- { 3, 20875, "", "=q3=Idol of Night", "=ds=#e15#", "", "0.29%"};
- { 4, 20878, "", "=q3=Idol of Rebirth", "=ds=#e15#", "", "0.28%"};
- { 5, 20881, "", "=q3=Idol of Strife", "=ds=#e15#", "", "0.21%"};
- { 6, 20877, "", "=q3=Idol of the Sage", "=ds=#e15#", "", "0.33%"};
- { 7, 20874, "", "=q3=Idol of the Sun", "=ds=#e15#", "", "0.21%"};
- { 8, 20882, "", "=q3=Idol of War", "=ds=#e15#", "", "0.30%"};
- { 10, 21230, "", "=q1=Ancient Qiraji Artifact", "=ds=#m2#"};
- { 12, 21762, "", "=q1=Greater Scarab Coffer Key", "=ds=#e9#", "", "7.03%"};
- { 16, 20864, "", "=q2=Bone Scarab", "=ds=#e15#", "", "0.84%"};
- { 17, 20861, "", "=q2=Bronze Scarab", "=ds=#e15#", "", "0.88%"};
- { 18, 20863, "", "=q2=Clay Scarab", "=ds=#e15#", "", "0.95%"};
- { 19, 20862, "", "=q2=Crystal Scarab", "=ds=#e15#", "", "0.99%"};
- { 20, 20859, "", "=q2=Gold Scarab", "=ds=#e15#", "", "0.96%"};
- { 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%"};
- { 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%"};
- { 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%"};
- };
- };
-
- AtlasLoot_Data["AQOpening"] = {
- Name = "AQOpening";
- {
- Name = "AQOpening";
- { 1, 21138, "", "=q1=Red Scepter Shard", "=ds=#m3#"};
- { 2, 21530, "", "=q4=Onyx Embedded Leggings", "=ds=#s11#, #a3#"};
- { 3, 21529, "", "=q4=Amulet of Shadow Shielding", "=ds=#s2#"};
- { 5, 21139, "", "=q1=Green Scepter Shard", "=ds=#m3#"};
- { 6, 21532, "", "=q4=Drudge Boots", "=ds=#s12#, #a2#"};
- { 7, 21531, "", "=q4=Drake Tooth Necklace", "=ds=#s2#"};
- { 9, 21137, "", "=q1=Blue Scepter Shard", "=ds=#m3#"};
- { 10, 21517, "", "=q4=Gnomish Turban of Psychic Might", "=ds=#s1#, #a1#"};
- { 11, 21527, "", "=q4=Darkwater Robes", "=ds=#s5#, #a1#"};
- { 12, 21526, "", "=q4=Band of Icy Depths", "=ds=#s13#"};
- { 13, 21025, "", "=q4=Recipe: Dirge's Kickin' Chimaerok Chops", "=ds=#p3# (300)"};
- { 16, 21175, "", "=q1=The Scepter of the Shifting Sands", "=ds=#m3#"};
- { 17, 21176, "", "=q5=Black Qiraji Resonating Crystal", "=ds=#e12#"};
- { 18, 21522, "", "=q4=Shadowsong's Sorrow", "=ds=#h1#, #w4#"};
- { 19, 21523, "", "=q4=Fang of Korialstrasz", "=ds=#h3#, #w4#"};
- { 20, 21520, "", "=q4=Ravencrest's Legacy", "=ds=#h1#, #w10#"};
- { 21, 21521, "", "=q4=Runesword of the Red", "=ds=#h3#, #w10#"};
- };
- };
-
- -------------------------
- --- Blackfathom Deeps ---
- -------------------------
-
- AtlasLoot_Data["BlackfathomDeeps"] = {
- Name = BabbleZone["Blackfathom Deeps"];
- Map = "BlackfathomDeeps";
- {
- Name = BabbleBoss["Ghamoo-ra"];
- { 1, 6908, "", "=q3=Ghamoo-ra's Bind", "=ds=#s10#, #a1#", "", "45.81%"};
- { 2, 6907, "", "=q3=Tortoise Armor", "=ds=#s5#, #a3#", "", "30.59%"};
- };
- {
- Name = BabbleBoss["Lady Sarevess"];
- { 1, 888, "", "=q3=Naga Battle Gloves", "=ds=#s9#, #a2#", "", "33.72%"};
- { 2, 11121, "", "=q3=Darkwater Talwar", "=ds=#h1#, #w10#", "", "33.10%"};
- { 3, 3078, "", "=q3=Naga Heartpiercer", "=ds=#w2#", "", "16.87%"};
- };
- {
- Name = BabbleBoss["Gelihast"];
- { 1, 6906, "", "=q3=Algae Fists", "=ds=#s9#, #a3#", "", "38.24%"};
- { 2, 6905, "", "=q3=Reef Axe", "=ds=#h2#, #w1#", "", "42.29%"};
- { 3, 1470, "", "=q1=Murloc Skin Bag", "=ds=#m12# #e1#", "", "14.13%"};
- };
- {
- Name = BabbleBoss["Baron Aquanis"];
- { 1, 16782, "", "=q2=Strange Water Globe", "=ds=#m2# (#m6#)", "", "90.35%"};
- { 2, 16886, "", "=q3=Outlaw Sabre", "=q1=#m4#: =ds=#h1#, #w10#"};
- { 3, 16887, "", "=q3=Witch's Finger", "=q1=#m4#: =ds=#s15#"};
- };
- {
- Name = BabbleBoss["Twilight Lord Kelris"];
- { 1, 6903, "", "=q3=Gaze Dreamer Pants", "=ds=#s11#, #a1#", "", "31.90%"};
- { 2, 1155, "", "=q3=Rod of the Sleepwalker", "=ds=#w9#", "", "45.59%"};
- { 3, 5881, "", "=q1=Head of Kelris", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Old Serra'kis"];
- { 1, 6901, "", "=q3=Glowing Thresher Cape", "=ds=#s4#", "", "36.14%"};
- { 2, 6902, "", "=q3=Bands of Serra'kis", "=ds=#s8#, #a2#", "", "29.24%"};
- { 3, 6904, "", "=q3=Bite of Serra'kis", "=ds=#h1#, #w4#", "", "15.34%"};
- };
- {
- Name = BabbleBoss["Aku'mai"];
- { 1, 6910, "", "=q3=Leech Pants", "=ds=#s11#, #a1#", "", "29.72%"};
- { 2, 6911, "", "=q3=Moss Cinch", "=ds=#s10#, #a2#", "", "29.01%"};
- { 3, 6909, "", "=q3=Strike of the Hydra", "=ds=#h2#, #w10#", "", "14.46%"};
- { 4, 0, "INV_Box_01", "=q6="..AL["Quest Item"], ""};
- { 5, 5359, "", "=q1=Lorgalis Manuscript", "=ds=#m3#", "", "100%"};
- { 6, 16762, "", "=q1=Fathom Core", "=ds=#m3#", "", "100%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 1486, "", "=q3=Tree Bark Jacket", "=ds=#s5#, #a1#", "", "0.02%"};
- { 2, 3416, "", "=q3=Martyr's Chain", "=ds=#s5#, #a3#", "", "0.01%"};
- { 3, 1491, "", "=q3=Ring of Precision", "=ds=#s13#", "", "0.01%"};
- { 4, 3413, "", "=q3=Doomspike", "=ds=#h1#, #w4#", "", "0.01%"};
- { 5, 2567, "", "=q3=Evocator's Blade", "=ds=#h1#, #w4#", "", "0.02%"};
- { 6, 3417, "", "=q3=Onyx Claymore", "=ds=#h2#, #w10#", "", "0.01%"};
- { 7, 1454, "", "=q3=Axe of the Enforcer", "=ds=#h1#, #w1#", "", "0.01%"};
- { 8, 1481, "", "=q3=Grimclaw", "=ds=#h1#, #w1#", "", "0.01%"};
- { 9, 3414, "", "=q3=Crested Scepter", "=ds=#h1#, #w6#", "", "0.01%"};
- { 10, 3415, "", "=q3=Staff of the Friar", "=ds=#w9#", "", "0.02%"};
- { 11, 2271, "", "=q3=Staff of the Blessed Seer", "=ds=#w9#", "", "0.02%"};
- };
- };
-
- --------------------------------------------
- --- Blackrock Mountain: Blackrock Dephts ---
- --------------------------------------------
-
- AtlasLoot_Data["BlackrockDepths"] = {
- Name = BabbleZone["Blackrock Depths"];
- Type = "ClassicDungeonExt";
- Map = "BlackrockDepths";
- {
- Name = AL["Overmaster Pyron"];
- { 1, 14486, "", "=q3=Pattern: Cloak of Fire", "=ds=#p8# (275)", "", "17.95%"};
- };
- {
- Name = BabbleBoss["Lord Roccor"];
- { 1, 22234, "", "=q3=Mantle of Lost Hope", "=ds=#s3#, #a1#", "", "20.48%"};
- { 2, 11632, "", "=q3=Earthslag Shoulders", "=ds=#s3#, #a4#", "", "19.99%"};
- { 3, 22397, "", "=q3=Idol of Ferocity", "=ds=#s16#, #w14#", "", "19.58%"};
- { 4, 11631, "", "=q3=Stoneshell Guard", "=ds=#w8#", "", "22.06%"};
- { 5, 11630, "", "=q3=Rockshard Pellets", "=ds=#w18#", "", "16.82%"};
- { 16, 11813, "", "=q2=Formula: Smoking Heart of the Mountain", "=ds=#p4# (265)", "", "14.79%"};
- { 17, 11811, "", "=q3=Smoking Heart of the Mountain", "=ds=#s14#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
- };
- {
- Name = BabbleBoss["High Interrogator Gerstahn"];
- { 1, 11626, "", "=q3=Blackveil Cape", "=ds=#s4#", "", "15.98%"};
- { 2, 11624, "", "=q3=Kentic Amice", "=ds=#s3#, #a1#", "", "22.45%"};
- { 3, 22240, "", "=q3=Greaves of Withering Despair", "=ds=#s12#, #a3#", "", "16.81%"};
- { 4, 11625, "", "=q3=Enthralled Sphere", "=ds=#s15#", "", "23.14%"};
- { 6, 11140, "", "=q1=Prison Cell Key", "=ds=#e9#"};
- };
- {
- Name = "Ring of Law";
- { 1, 11677, "", "=q3=Graverot Cape", "=ds=#s4# =q2=#brd1#", "", "23.07%"};
- { 2, 11675, "", "=q3=Shadefiend Boots", "=ds=#s12#, #a2# =q2=#brd1#", "", "25.84%"};
- { 3, 11731, "", "=q3=Savage Gladiator Greaves", "=ds=#s12#, #a3# =q2=#brd1#", "", "15.14%"};
- { 4, 11678, "", "=q3=Carapace of Anub'shiah", "=ds=#s5#, #a4# =q2=#brd1#", "", "15.78%"};
- { 6, 11685, "", "=q3=Splinthide Shoulders", "=ds=#s3#, #a2# =q2=#brd2#", "", "24.49%"};
- { 7, 11686, "", "=q3=Girdle of Beastial Fury", "=ds=#s10#, #a2# =q2=#brd2#", "", "15.85%"};
- { 8, 11679, "", "=q3=Rubicund Armguards", "=ds=#s8#, #a3# =q2=#brd2#", "", "25.13%"};
- { 9, 11730, "", "=q3=Savage Gladiator Grips", "=ds=#s9#, #a3# =q2=#brd2#", "", "14.12%"};
- { 11, 11726, "", "=q4=Savage Gladiator Chain", "=ds=#s5#, #a3# =q2=#brd3#", "", "14.52%"};
- { 12, 22271, "", "=q3=Leggings of Frenzied Magic", "=ds=#s11#, #a2# =q2=#brd3#", "", "23.24%"};
- { 13, 11729, "", "=q3=Savage Gladiator Helm", "=ds=#s1#, #a3# =q2=#brd3#, #brd5#", "", "10.08%"};
- { 14, 11722, "", "=q3=Dregmetal Spaulders", "=ds=#s3#, #a3# =q2=#brd4#", "", "15.07%"};
- { 15, 11703, "", "=q3=Stonewall Girdle", "=ds=#s10#, #a4# =q2=#brd4#", "", "31.45%"};
- { 16, 22270, "", "=q3=Entrenching Boots", "=ds=#s12#, #a4# =q2=#brd4#", "", "11.97%"};
- { 17, 22257, "", "=q3=Bloodclot Band", "=ds=#s13# =q2=#brd3#", "", "26.28%"};
- { 18, 22266, "", "=q3=Flarethorn", "=ds=#h1#, #w4# =q2=#brd3#", "", "17.98%"};
- { 19, 11702, "", "=q3=Grizzle's Skinner", "=ds=#h1#, #w1# =q2=#brd4#", "", "20.62%"};
- { 20, 11610, "", "=q3=Plans: Dark Iron Pulverizer", "=ds=#p2# (265) =q2=#brd4#", "", "69.76%"};
- { 22, 11634, "", "=q3=Silkweb Gloves", "=ds=#s9#, #a1# =q2=#brd5#", "", "24.02%"};
- { 23, 11633, "", "=q3=Spiderfang Carapace", "=ds=#s5#, #a4# =q2=#brd5#", "", "20.61%"};
- { 24, 11635, "", "=q3=Hookfang Shanker", "=ds=#h1#, #w4# =q2=#brd5#", "", "17.26%"};
- { 26, 11662, "", "=q3=Ban'thok Sash", "=ds=#s10#, #a1# =q2=#brd6#", "", "23.77%"};
- { 27, 11665, "", "=q3=Ogreseer Fists", "=ds=#s9#, #a2# =q2=#brd6#", "", "28.16%"};
- { 28, 11728, "", "=q3=Savage Gladiator Leggings", "=ds=#s11#, #a3# =q2=#brd6#", "", "14.95%"};
- { 29, 11824, "", "=q3=Cyclopean Band", "=ds=#s13# =q2=#brd6#", "", "18.37%"};
- };
- {
- Name = AL["Theldren"];
- { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n17#"};
- { 2, 22330, "", "=q3=Shroud of Arcane Mastery", "=ds=#s4#", "", "19.73%"};
- { 3, 22305, "", "=q3=Ironweave Mantle", "=ds=#s3#, #a1#", "", "30.39%"};
- { 4, 22317, "", "=q3=Lefty's Brass Knuckle", "=ds=#h1#, #w13#", "", "26.15%"};
- { 5, 22318, "", "=q3=Malgen's Long Bow", "=ds=#w2#", "", "22.88%"};
- { 7, 22047, "", "=q1=Top Piece of Lord Valthalak's Amulet", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Houndmaster Grebmar"];
- { 1, 11623, "", "=q3=Spritecaster Cape", "=ds=#s4#", "", "32.09%"};
- { 2, 11626, "", "=q3=Blackveil Cape", "=ds=#s4#", "", "0.60%"};
- { 3, 11627, "", "=q3=Fleetfoot Greaves", "=ds=#s12#, #a3#", "", "32.09%"};
- { 4, 11628, "", "=q3=Houndmaster's Bow", "=ds=#w2#", "", "12.14%"};
- { 5, 11629, "", "=q3=Houndmaster's Rifle", "=ds=#w5#", "", "11.18%"};
- };
- {
- Name = "Monument of Franclorn Forgewright";
- { 1, 11000, "", "=q1=Shadowforge Key", "=q1=#m4#: =ds=#e9#"};
- };
- {
- Name = BabbleBoss["Pyromancer Loregrain"];
- { 1, 11747, "", "=q3=Flamestrider Robes", "=ds=#s5#, #a2#", "", "18.10%"};
- { 2, 11749, "", "=q3=Searingscale Leggings", "=ds=#s11#, #a3#", "", "21.29%"};
- { 3, 11750, "", "=q3=Kindling Stave", "=ds=#w9#", "", " 16.19%"};
- { 4, 11748, "", "=q3=Pyric Caduceus", "=ds=#w12#", "", "30.20%"};
- { 6, 11207, "", "=q2=Formula: Enchant Weapon - Fiery Weapon", "=ds=#p4# (265)", "", "13.32%"};
- };
- {
- Name = AL["The Vault"];
- { 1, 0, "INV_Box_01", "=q6=#x3#", ""};
- { 2, 11309, "", "=q1=The Heart of the Mountain", "=ds=#m3#", "", "100%"};
- { 4, 0, "INV_Box_01", "=q6=#x5#", ""};
- { 5, 22256, "", "=q3=Mana Shaping Handwraps", "=ds=#s9#, #a1#", "", "4.49%"};
- { 6, 11929, "", "=q3=Haunting Specter Leggings", "=ds=#s11#, #a1#", "", "21.12%"};
- { 7, 11926, "", "=q3=Deathdealer Breastplate", "=ds=#s5#, #a3#", "", "21.57%"};
- { 8, 22205, "", "=q3=Black Steel Bindings", "=ds=#s8#, #a4#", "", "4.24%"};
- { 9, 22255, "", "=q3=Magma Forged Band", "=ds=#s13#", "", "4.02%"};
- { 10, 11920, "", "=q3=Wraith Scythe", "=ds=#h1#, #w1#", "", "21.12%"};
- { 11, 11923, "", "=q3=The Hammer of Grace", "=ds=#h3#, #w6#", "", "19.84%"};
- { 12, 22254, "", "=q3=Wand of Eternal Light", "=ds=#w12#", "", "3.65%"};
- { 16, 0, "INV_Box_01", "=q6=#x4#", ""};
- { 17, 11752, "", "=q1=Black Blood of the Tormented", "=ds=#m3#", "", "44.48%"};
- { 18, 11751, "", "=q1=Burning Essence", "=ds=#m3#", "", "39.35%"};
- { 19, 11753, "", "=q1=Eye of Kajal", "=ds=#m3#", "", "39.95%"};
- };
- {
- Name = BabbleBoss["Warder Stilgiss"];
- { 1, 11782, "", "=q3=Boreal Mantle", "=ds=#s3#, #a1#", "", "18.38%"};
- { 2, 22241, "", "=q3=Dark Warder's Pauldrons", "=ds=#s3#, #a2#", "", "18.38%"};
- { 3, 11783, "", "=q3=Chillsteel Girdle", "=ds=#s10#, #a3#", "", "20.50%"};
- { 4, 11784, "", "=q3=Arbiter's Blade", "=ds=#h3#, #w10#", "", "21.54%"};
- };
- {
- Name = BabbleBoss["Verek"];
- { 1, 22242, "", "=q3=Verek's Leash", "=ds=#s10#, #a3#", "", "9.78%"};
- { 2, 11755, "", "=q3=Verek's Collar", "=ds=#s2#", "", "9.54%"};
- };
- {
- Name = BabbleBoss["Fineous Darkvire"];
- { 1, 11839, "", "=q3=Chief Architect's Monocle", "=ds=#s1#, #a1#", "", "15.28%"};
- { 2, 11841, "", "=q3=Senior Designer's Pantaloons", "=ds=#s11#, #a1#", "", "21.25%"};
- { 3, 11842, "", "=q3=Lead Surveyor's Mantle", "=ds=#s3#, #a3#", "", "20.83%"};
- { 4, 22223, "", "=q3=Foreman's Head Protector", "=ds=#s1#, #a4#", "", "19.73%"};
- { 6, 11840, "", "=q1=Master Builder's Shirt", "#s6#", "", "3.9%"};
- { 8, 10999, "", "=q1=Ironfel", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Lord Incendius"];
- { 1, 11768, "", "=q3=Incendic Bracers", "=ds=#s8#, #a1#", "", "1.30%"};
- { 2, 11766, "", "=q3=Flameweave Cuffs", "=ds=#s8#, #a1# =q2=#m16#", "", "18.88%"};
- { 3, 11764, "", "=q3=Cinderhide Armsplints", "=ds=#s8#, #a2# =q2=#m16#", "", "18.33%"};
- { 4, 11765, "", "=q3=Pyremail Wristguards", "=ds=#s8#, #a3# =q2=#m16#", "", "18.85%"};
- { 5, 11767, "", "=q3=Emberplate Armguards", "=ds=#s8#, #a4# =q2=#m16#", "", "19.24%"};
- { 6, 19268, "", "=q3=Ace of Elementals", "=ds=#e16#", "", "2.10%"};
- { 8, 21987, "", "=q1=Incendicite of Incendius", "=ds=#m3#"};
- { 9, 11126, "", "=q1=Tablet of Kurniya", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Bael'Gar"];
- { 1, 11807, "", "=q3=Sash of the Burning Heart", "=ds=#s10#, #a1#", "", "13.59%"};
- { 2, 11802, "", "=q3=Lavacrest Leggings", "=ds=#s11#, #a4#", "", "26.75%"};
- { 3, 11805, "", "=q3=Rubidium Hammer", "=ds=#h1#, #w6#", "", "17.02%"};
- { 4, 11803, "", "=q3=Force of Magma", "=ds=#h2#, #w6#", "", "27.47%"};
- };
- {
- Name = BabbleBoss["General Angerforge"];
- { 1, 11821, "", "=q3=Warstrife Leggings", "=ds=#s11#, #a2#", "", "16.41%"};
- { 2, 11820, "", "=q3=Royal Decorated Armor", "=ds=#s5#, #a3#", "", "18.55%"};
- { 3, 11810, "", "=q3=Force of Will", "=ds=#s14#", "", "12.97%"};
- { 4, 11817, "", "=q3=Lord General's Sword", "=ds=#h1#, #w10# ", "", "14.72%"};
- { 5, 11816, "", "=q3=Angerforge's Battle Axe", "=ds=#h2#, #w1#", "", "16.41%"};
- { 7, 11464, "", "=q1=Marshal Windsor's Lost Information", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Golem Lord Argelmach"];
- { 1, 11822, "", "=q3=Omnicast Boots", "=ds=#s12#, #a1#", "", "26.73%"};
- { 2, 11823, "", "=q3=Luminary Kilt", "=ds=#s11#, #a2#", "", "25.73%"};
- { 3, 11669, "", "=q3=Naglering", "=ds=#s13#", "", "22.92%"};
- { 4, 11819, "", "=q3=Second Wind", "=ds=#s14#", "", "5.75%"};
- { 6, 21956, "", "=q2=Design: Dark Iron Scorpid", "=ds=#p12# (300)"};
- { 8, 11268, "", "=q1=Head of Argelmach", "=ds=#m3#"};
- { 9, 11465, "", "=q1=Marshal Windsor's Lost Information", "=ds=#m3#"};
- };
- {
- Name = "The Grim Guzzler";
- { 1, 0, "INV_Box_01", "=q6=#n48#", ""};
- { 2, 11735, "", "=q3=Ragefury Eyepatch", "=ds=#s1#, #a2#", "", "8.11%"};
- { 3, 18043, "", "=q3=Coal Miner Boots", "=ds=#s12#, #a2#", "", "23.87%"};
- { 4, 22275, "", "=q3=Firemoss Boots", "=ds=#s12#, #a2#", "", "23.87%"};
- { 5, 18044, "", "=q3=Hurley's Tankard", "=ds=#h1#, #w6#", "", "31.02%"};
- { 6, 11312, "", "=q1=Lost Thunderbrew Recipe", "=ds=#m3#"};
- { 8, 0, "INV_Box_01", "=q6=#n49#", ""};
- { 9, 22212, "", "=q3=Golem Fitted Pauldrons", "=ds=#s3#, #a3#", "", "26.04%"};
- { 10, 11745, "", "=q3=Fists of Phalanx", "=ds=#s9#, #a4#", "", "29.79%"};
- { 11, 11744, "", "=q3=Bloodfist", "=ds=#h1#, #w13#", "", "28.48%"};
- { 16, 0, "INV_Box_01", "=q6=#n50#", ""};
- { 17, 11612, "", "=q3=Plans: Dark Iron Plate", "=ds=#p2# (285)", "", "22.20%"};
- { 18, 2662, "", "=q2=Ribbly's Quiver", "=ds=#m13# #w19#", "", "17.03%"};
- { 19, 2663, "", "=q2=Ribbly's Bandolier", "=ds=#m13# #w20#", "", "15.73%"};
- { 20, 11742, "", "=q2=Wayfarer's Knapsack", "=ds=#m13# #e1#", "", "25.07%"};
- { 21, 11313, "", "=q1=Ribbly's Head", "=ds=#m3#"};
- { 23, 0, "INV_Box_01", "=q6=#n51#", ""};
- { 24, 12793, "", "=q3=Mixologist's Tunic", "=ds=#s5#, #a2#", "", "24.87%"};
- { 25, 12791, "", "=q3=Barman Shanker", "=ds=#h1#, #w4#", "", "6.97%"};
- { 26, 13483, "", "=q2=Recipe: Transmute Fire to Earth", "=ds=#p1# (275)"};
- { 27, 18653, "", "=q2=Schematic: Goblin Jumper Cables XL", "=ds=#p5# (265)", "", "14.13%"};
- { 28, 15759, "", "=q1=Pattern: Black Dragonscale Breastplate", "=ds=#p7# (290)"};
- { 29, 11602, "", "=q1=Grim Guzzler Key", "=ds=#e9#"};
- { 30, 11325, "", "=q1=Dark Iron Ale Mug", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Ambassador Flamelash"];
- { 1, 11808, "", "=q4=Circle of Flame", "=ds=#s1#, #a1#", "", "0.84%"};
- { 3, 11812, "", "=q3=Cape of the Fire Salamander", "=ds=#s4#", "", "25.25%"};
- { 4, 11814, "", "=q3=Molten Fists", "=ds=#s9#, #a3#", "", "27.88%"};
- { 5, 11832, "", "=q3=Burst of Knowledge", "=ds=#s14#", "", "14.61%"};
- { 6, 11809, "", "=q3=Flame Wrath", "=ds=#w7#", "", "18.69%"};
- { 8, 23320, "", "=q3=Tablet of Flame Shock VI", "=ds=#e10# =q1=#m1# =ds=#c7#"};
- };
- {
- Name = BabbleBoss["Panzor the Invincible"].." ("..AL["Rare"]..")";
- { 1, 22245, "", "=q3=Soot Encrusted Footwear", "=ds=#s12#,#a1#", "", "22.06%"};
- { 2, 11787, "", "=q3=Shalehusk Boots", "=ds=#s12#, #a4#", "", "19.96%"};
- { 3, 11786, "", "=q3=Stone of the Earth", "=ds=#h2#, #w10#", "", "20.38%"};
- { 4, 11785, "", "=q3=Rock Golem Bulwark", "=ds=#w8#", "", "21.22%"};
- };
- {
- Name = "Summoner's Tomb";
- { 1, 0, "INV_Box_01", "=q6=#x2#", ""};
- { 2, 11929, "", "=q3=Haunting Specter Leggings", "=ds=#s11#, #a1#", "", "22.60%"};
- { 3, 11925, "", "=q3=Ghostshroud", "=ds=#s1#, #a2#", "", "21.63%"};
- { 4, 11926, "", "=q3=Deathdealer Breastplate", "=ds=#s5#, #a3#", "", "22.08%"};
- { 5, 11927, "", "=q3=Legplates of the Eternal Guardian", "=ds=#s11#, #a4#", "", "65.45%"};
- { 6, 11922, "", "=q3=Blood-etched Blade", "=ds=#h3#, #w4#", "", "22.05%"};
- { 7, 11920, "", "=q3=Wraith Scythe", "=ds=#h1# #w1#", "", "22.61%"};
- { 8, 11923, "", "=q3=The Hammer of Grace", "=ds=#h3#, #w6#", "", "21.29%"};
- { 9, 11921, "", "=q3=Impervious Giant", "=ds=#h2#, #w6#", "", "22.23%"};
- };
- {
- Name = AL["Shadowforge Flame Keeper"];
- { 1, 0, "INV_Box_01", "=q6=#n44#", ""};
- { 2, 11885, "", "=q1=Shadowforge Torch", "=ds=#m20#"};
- };
- {
- Name = BabbleBoss["Magmus"];
- { 1, 11746, "", "=q3=Golem Skull Helm", "=ds=#s1#, #a4#", "", "20.46%"};
- { 2, 11935, "", "=q3=Magmus Stone", "=ds=#s15#", "", "21.26%"};
- { 3, 22395, "", "=q3=Totem of Rage", "=ds=#s16#, #w15#", "", "10.09%"};
- { 4, 22400, "", "=q3=Libram of Truth", "=ds=#s16#, #w16#", "", "9.75%"};
- { 5, 22208, "", "=q3=Lavastone Hammer", "=ds=#h2#, #w6#", "", "22.79%"};
- };
- {
- Name = BabbleBoss["Emperor Dagran Thaurissan"];
- { 1, 11684, "", "=q4=Ironfoe", "=ds=#h1#, #w6#", "", "0.46%"};
- { 3, 11930, "", "=q3=The Emperor's New Cape", "=ds=#s4#", "", "16.16%"};
- { 4, 11924, "", "=q3=Robes of the Royal Crown", "=ds=#s5#, #a1#", "", "15.18%"};
- { 5, 22204, "", "=q3=Wristguards of Renown", "=ds=#s8#, #a2#", "", "12.92%"};
- { 6, 22207, "", "=q3=Sash of the Grand Hunt", "=ds=#s10#, #a3#", "", "15.12%"};
- { 7, 11933, "", "=q3=Imperial Jewel", "=ds=#s2#", "", "15.99%"};
- { 8, 11934, "", "=q3=Emperor's Seal", "=ds=#s13#", "", "15.41%"};
- { 9, 11815, "", "=q3=Hand of Justice", "=ds=#s14#", "", "10.43%"};
- { 16, 11931, "", "=q3=Dreadforge Retaliator", "=ds=#h2#, #w1#", "", "15.76%"};
- { 17, 11932, "", "=q3=Guiding Stave of Wisdom", "=ds=#w9#", "", "15.01%"};
- { 18, 11928, "", "=q3=Thaurissan's Royal Scepter", "=ds=#s15#", "", " 12.86%"};
- { 20, 12033, "", "=q1=Thaurissan Family Jewels", "=ds=#e7# #e1#", "", "2.2%"};
- };
- {
- Name = BabbleBoss["Princess Moira Bronzebeard"];
- { 1, 12554, "", "=q3=Hands of the Exalted Herald", "=ds=#s9#, #a1#", "", "11.91%"};
- { 2, 12556, "", "=q3=High Priestess Boots", "=ds=#s12#, #a1#", "", "10.26%"};
- { 3, 12557, "", "=q3=Ebonsteel Spaulders", "=ds=#s3#, #a4#", "", "12.11%"};
- { 4, 12553, "", "=q3=Swiftwalker Boots", "=ds=#s12#, #a2#", "", "11.05%"};
- };
- {
- Name = "Blacksmith Plans";
- { 1, 11614, "", "=q2=Plans: Dark Iron Mail", "=ds=#p2# (270)", "", "13.38%"};
- { 2, 11615, "", "=q2=Plans: Dark Iron Shoulders", "=ds=#p2# (280)", "", "7.65%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 12552, "", "=q3=Blisterbane Wrap", "=ds=#s4#", "", "0.01%"};
- { 2, 12551, "", "=q3=Stoneshield Cloak", "=ds=#s4#", "", "0.01%"};
- { 3, 12542, "", "=q3=Funeral Pyre Vestment", "=ds=#s5#, #a1#", "", "0.02%"};
- { 4, 12546, "", "=q3=Aristocratic Cuffs", "=ds=#s8#, #a1#", "", "0.01%"};
- { 5, 12550, "", "=q3=Runed Golem Shackles", "=ds=#s8#, #a2#", "", "0.02%"};
- { 6, 12547, "", "=q3=Mar Alom's Grip", "=ds=#s9#, #a2#", "", "0.01%"};
- { 7, 12549, "", "=q3=Braincage", "=ds=#s1#, #a3#", "", "0.02%"};
- { 8, 12555, "", "=q3=Battlechaser's Greaves", "=ds=#s12#, #a4#", "", "0.01%"};
- { 9, 12531, "", "=q3=Searing Needle", "=ds=#h1#, #w4#", "", "0.02%"};
- { 10, 12535, "", "=q3=Doomforged Straightedge", "=ds=#h1#, #w10#", "", "0.01%"};
- { 11, 12527, "", "=q3=Ribsplitter", "=ds=#h1#, #w1# =q2=#m16#", "", "0.02%"};
- { 12, 12528, "", "=q3=The Judge's Gavel", "=ds=#h2#, #w6#", "", "0.02%"};
- { 13, 12532, "", "=q3=Spire of the Stoneshaper", "=ds=#w9#", "", "0.01%"};
- { 16, 15781, "", "=q3=Pattern: Black Dragonscale Leggings", "=ds=#p7# (300) =q1=#n75#", "", "1.93%"};
- { 17, 15770, "", "=q3=Pattern: Black Dragonscale Shoulders", "=ds=#p7# (300) =q1=#n76#", "", "1.88%"};
- { 18, 16053, "", "=q2=Schematic: Master Engineer's Goggles", "=ds=#p5# (290) =q1=#n77#", "", "0.45%"};
- { 19, 16049, "", "=q2=Schematic: Dark Iron Bomb", "=ds=#p5# (285) =q1=#n78#", "", "1.02%"};
- { 20, 16048, "", "=q2=Schematic: Dark Iron Rifle", "=ds=#p5# (275) =q1=#n79#", "", "0.98%"};
- { 21, 18654, "", "=q2=Schematic: Gnomish Alarm-O-Bot", "=ds=#p5# (265) =q1=#n78#", "", "1.88%"};
- { 22, 18661, "", "=q2=Schematic: World Enlarger", "=ds=#p5# (260) =q1=#n78#", "", "2.00%"};
- { 24, 11754, "", "=q2=Black Diamond", "#e8#", "", "5.0%"};
- { 25, 11078, "", "=q1=Relic Coffer Key", "=ds=#e9#"};
- { 26, 18945, "", "=q1=Dark Iron Residue", "=ds=#m3#"};
- { 27, 11468, "", "=q1=Dark Iron Fanny Pack", "=ds=#m3#"};
- { 28, 11446, "", "=q1=A Crumpled Up Note", "=ds=#m2#"};
- };
- };
-
- -------------------------------------------------
- --- Blackrock Mountain: Lower Blackrock Spire ---
- -------------------------------------------------
-
- AtlasLoot_Data["LowerBlackrock"] = {
- Name = BabbleZone["Lower Blackrock Spire"];
- Type = "ClassicDungeonExt";
- Loadfirst = 3;
- Map = "BlackrockSpireLower";
- {
- Name = AL["Scarshield Quartermaster"];
- { 1, 18987, "", "=q1=Blackhand's Command", "=ds=#m2#", "", "100%"};
- Next = "LBRSQuestItems";
-
- };
- {
- Name = AL["Quest Item"];
- { 1, 12812, "", "=q3=Unfired Plate Gauntlets", "=ds=#m3#", "", "100%"};
- { 2, 12631, "", "=q3=Fiery Plate Gauntlets", "=q1=#m4#: =ds=#s9#, #a4#"};
- { 3, 12699, "", "=q3=Plans: Fiery Plate Gauntlets", "=q1=#m4#: =ds=#p2# (290)"};
- { 5, 12533, "", "=q1=Roughshod Pike", "=ds=#m3#"};
- { 6, 12740, "", "=q1=Fifth Mosh'aru Tablet", "=ds=#m3#"};
- { 7, 12741, "", "=q1=Sixth Mosh'aru Tablet", "=ds=#m3#"};
- { 8, 12345, "", "=q1=Bijou's Belongings", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Spirestone Butcher"].." ("..AL["Rare"]..")";
- { 1, 12608, "", "=q3=Butcher's Apron", "=ds=#s4#", "", "54.31%"};
- { 2, 13286, "", "=q3=Rivenspike", "=ds=#h1#, #w1#", "", "35.78%"};
- };
- {
- Name = BabbleBoss["Highlord Omokk"];
- { 1, 13170, "", "=q3=Skyshroud Leggings", "=ds=#s11#, #a1#", "", "8.52%"};
- { 2, 13169, "", "=q3=Tressermane Leggings", "=ds=#s11#, #a2#", "", "9.52%"};
- { 3, 13168, "", "=q3=Plate of the Shaman King", "=ds=#s5#, #a4#", "", "8.62%"};
- { 4, 13166, "", "=q3=Slamshot Shoulders", "=ds=#s3#, #a4#", "", "7.25%"};
- { 5, 13167, "", "=q3=Fist of Omokk", "=ds=#h2#, #w6#", "", "10.64%"};
- { 7, 12336, "", "=q2=Gemstone of Spirestone", "=ds=#m3#", "", "100%"};
- { 9, 12534, "", "=q1=Omokk's Head", "=ds=#m3#", "", "100%"};
- { 16, 16670, "", "=q3=Boots of Elements", "=ds=#s12#, #a3# (D1, #c7#)", "", "9.35%"};
- };
- {
- Name = BabbleBoss["Spirestone Battle Lord"].." ("..AL["Rare"]..")";
- { 1, 13284, "", "=q3=Swiftdart Battleboots", "=ds=#s12#, #a3#", "", "48.68%"};
- { 2, 13285, "", "=q3=The Blackrock Slicer", "=ds=#h2#, #w1#", "", "34.87%"};
- };
- {
- Name = BabbleBoss["Spirestone Lord Magus"].." ("..AL["Rare"]..")";
- { 1, 13282, "", "=q3=Ogreseer Tower Boots", "=ds=#s12#, #a3#", "", "22.95%"};
- { 2, 13283, "", "=q3=Magus Ring", "=ds=#s13#", "", "38.01%"};
- { 3, 13261, "", "=q3=Globe of D'sak", "=ds=#s15#", "", "18.07%"};
- };
- {
- Name = BabbleBoss["Shadow Hunter Vosh'gajin"];
- { 1, 12626, "", "=q3=Funeral Cuffs", "=ds=#s8#, #a1#", "", "18.74%"};
- { 2, 13257, "", "=q3=Demonic Runed Spaulders", "=ds=#s3#, #a2#", "", "16.84%"};
- { 3, 13255, "", "=q3=Trueaim Gauntlets", "=ds=#s9#, #a3#", "", "18.08%"};
- { 4, 12651, "", "=q3=Blackcrow", "=ds=#w3#", "", "8.56%"};
- { 5, 12653, "", "=q3=Riphook", "=ds=#w2#", "", "7.99%"};
- { 6, 12654, "", "=q3=Doomshot", "=ds=#w17#", "", "23.06%"};
- { 8, 13352, "", "=q1=Vosh'gajin's Snakestone", "=ds=#m3#", "", "100%"};
- { 9, 12821, "", "=q3=Plans: Dawn's Edge", "=q1=#m4#: =ds=#p2# (275)"};
- { 16, 16712, "", "=q3=Shadowcraft Gloves", "=ds=#s9#, #a2# (D1, #c6#)", "", "11.89%"};
- };
- {
- Name = BabbleBoss["War Master Voone"];
- { 1, 22231, "", "=q3=Kayser's Boots of Precision", "=ds=#s12#, #a1#", "", "15.40%"};
- { 2, 13179, "", "=q3=Brazecore Armguards", "=ds=#s8#, #a3#", "", "16.12%"};
- { 3, 13177, "", "=q3=Talisman of Evasion", "=ds=#s2#", "", "15.40%"};
- { 4, 12582, "", "=q3=Keris of Zul'Serak", "=ds=#h1#, #w4#", "", "8.08%"};
- { 5, 28972, "", "=q3=Flightblade Throwing Axe", "=ds=#w11#", "", "79.85%"};
- { 7, 12335, "", "=q2=Gemstone of Smolderthorn", "=ds=#m3#", "", "100%"};
- { 16, 16676, "", "=q3=Beaststalker's Gloves", "=ds=#s9#, #a3# (D1, #c2#)", "", "9.15%"};
- };
- {
- Name = BabbleBoss["Mor Grayhoof"].." ("..AL["Summon"]..")";
- { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n21#"};
- { 2, 22306, "", "=q3=Ironweave Belt", "=ds=#s10#, #a1#", "", "20.28%"};
- { 3, 22325, "", "=q3=Belt of the Trickster", "=ds=#s10#, #a2#", "", "20.28%"};
- { 4, 22319, "", "=q3=Tome of Divine Right", "=ds=#s15#", "", "20.81%"};
- { 5, 22398, "", "=q3=Idol of Rejuvenation", "=ds=#s16#, #w14#", "", "12.87%"};
- { 6, 22322, "", "=q3=The Jaw Breaker", "=ds=#h1#, #w6#", "", "20.28%"};
- { 8, 21984, "", "=q1=Left Piece of Lord Valthalak's Amulet", "=ds=#m3#"};
- { 9, 22046, "", "=q1=Right Piece of Lord Valthalak's Amulet", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Bannok Grimaxe"].." ("..AL["Rare"]..")";
- { 1, 12634, "", "=q3=Chiselbrand Girdle", "=ds=#s10#, #a3#", "", "31.73%"};
- { 2, 12637, "", "=q3=Backusarian Gauntlets", "=ds=#s9#, #a4#", "", "26.44%"};
- { 3, 12621, "", "=q3=Demonfork", "=ds=#h1#, #w1#", "", "27.64%"};
- { 5, 12838, "", "=q3=Plans: Arcanite Reaper", "=ds=#p2# (300)", "", "6.73%"};
- { 6, 12784, "", "=q3=Arcanite Reaper", "=ds=#h2#, #w1#"};
- };
- {
- Name = BabbleBoss["Mother Smolderweb"];
- { 1, 13244, "", "=q3=Gilded Gauntlets", "=ds=#s9#, #a3#", "", "25.06%"};
- { 2, 13213, "", "=q3=Smolderweb's Eye", "=ds=#s14#", "", "24.97%"};
- { 3, 13183, "", "=q3=Venomspitter", "=ds=#h1#, #w6#", "", "12.49%"};
- { 16, 16715, "", "=q3=Wildheart Boots", "=ds=#s12#, #a2# (D1, #c1#)", "", "13.03%"};
- };
- {
- Name = BabbleBoss["Crystal Fang"];
- { 1, 13185, "", "=q3=Sunderseer Mantle", "=ds=#s3#, #a1#", "", "28.10%"};
- { 2, 13184, "", "=q3=Fallbrush Handgrips", "=ds=#s9#, #a2#", "", "35.48%"};
- { 3, 13218, "", "=q3=Fang of the Crystal Spider", "=ds=#h1#, #w4#", "", "17.62%"};
- };
- {
- Name = BabbleBoss["Urok Doomhowl"].." ("..AL["Summon"]..")";
- { 1, 13258, "", "=q3=Slaghide Gauntlets", "=ds=#s9#, #a2#", "", "17.09%"};
- { 2, 22232, "", "=q3=Marksman's Girdle", "=ds=#s10#, #a3#", "", "20.60%"};
- { 3, 13259, "", "=q3=Ribsteel Footguards", "=ds=#s12#, #a4#", "", "25.38%"};
- { 4, 13178, "", "=q3=Rosewine Circle", "=ds=#s13#", "", "21.48%"};
- { 6, 18784, "", "=q3=Top Half of Advanced Armorsmithing: Volume III", "=ds=#m3#", "", "10.30%"};
- { 7, 12725, "", "=q3=Plans: Enchanted Thorium Helm", "=q1=#m4#: =ds=#p2# (300)"};
- { 9, 12712, "", "=q1=Warosh's Mojo", "=ds=#m3#", "", "100%"};
- { 10, 15867, "", "=q2=Prismcharm", "=q1=#m4#: =ds=#s14#"};
- };
- {
- Name = BabbleBoss["Quartermaster Zigris"];
- { 1, 13253, "", "=q3=Hands of Power", "=ds=#s9#, #a1#", "", "14.22%"};
- { 2, 13252, "", "=q3=Cloudrunner Girdle", "=ds=#s10#, #a2#", "", "15.48%"};
- { 4, 12835, "", "=q3=Plans: Annihilator", "=ds=#p2# (300)", "", "8.37%"};
- { 5, 12798, "", "=q3=Annihilator", "=ds=#h1#, #w1#"};
- { 7, 21955, "", "=q2=Design: Black Diamond Crab", "=ds=#p12# (300)"};
- };
- {
- Name = BabbleBoss["Gizrul the Slavener"];
- { 1, 13206, "", "=q3=Wolfshear Leggings", "=ds=#s11#, #a1#", "", "17.46%"};
- { 2, 13208, "", "=q3=Bleak Howler Armguards", "=ds=#s8#, #a2#", "", "18.02%"};
- { 3, 13205, "", "=q3=Rhombeard Protector", "=ds=#w8#", "", "16.93%"};
- { 16, 16718, "", "=q3=Wildheart Spaulders", "=ds=#s3#, #a2# (D1, #c1#)", "", "11.04%"};
- };
- {
- Name = BabbleBoss["Halycon"];
- { 1, 22313, "", "=q3=Ironweave Bracers", "=ds=#s8#, #a1#", "", "18.16%"};
- { 2, 13210, "", "=q3=Pads of the Dread Wolf", "=ds=#s12#, #a2#", "", "9.88%"};
- { 3, 13211, "", "=q3=Slashclaw Bracers", "=ds=#s8#, #a3#", "", "20.32%"};
- { 4, 13212, "", "=q3=Halycon's Spiked Collar", "=ds=#s2#", "", "18.23%"};
- };
- {
- Name = BabbleBoss["Ghok Bashguud"].." ("..AL["Rare"]..")";
- { 1, 13203, "", "=q3=Armswake Cloak", "=ds=#s4#", "", "35.31%"};
- { 2, 13198, "", "=q3=Hurd Smasher", "=ds=#h1#, #w13#", "", "21.15%"};
- { 3, 13204, "", "=q3=Bashguuder", "=ds=#h1#, #w6#", "", "27.09%"};
- };
- {
- Name = BabbleBoss["Overlord Wyrmthalak"];
- { 1, 13143, "", "=q4=Mark of the Dragon Lord", "=ds=#s13#", "", "1.11%"};
- { 3, 13162, "", "=q3=Reiver Claws", "=ds=#s9#, #a4#", "", "12.14%"};
- { 4, 13164, "", "=q3=Heart of the Scale", "=ds=#s14#", "", "0.73%"};
- { 5, 22321, "", "=q3=Heart of Wyrmthalak", "=ds=#s14#", "", "13.87%"};
- { 6, 13163, "", "=q3=Relentless Scythe", "=ds=#h2#, #w10#", "", "14.12%"};
- { 7, 13148, "", "=q3=Chillpike", "=ds=#w7#", "", "0.76%"};
- { 8, 13161, "", "=q3=Trindlehaven Staff", "=ds=#w9#", "", "10.40%"};
- { 10, 12337, "", "=q2=Gemstone of Bloodaxe", "=ds=#m3#", "", "100%"};
- { 16, 16679, "", "=q3=Beaststalker's Mantle", "=ds=#s3#, #a3# (D1, #c2#)", "", "9.89%"};
- };
- {
- Name = BabbleBoss["Burning Felguard"].." ("..AL["Rare"]..", "..AL["Random"]..")";
- { 1, 13181, "", "=q3=Demonskin Gloves", "=ds=#s9#, #a1#", "", "14.47%"};
- { 2, 13182, "", "=q3=Phase Blade", "=ds=#h1#, #w10#", "", "11.63%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 14513, "", "=q4=Pattern: Robe of the Archmage", "=ds=#p8# (300) =q1=#m1# =ds=#c3# =q1=#n71#", "", "10.12%"};
- { 2, 14152, "", "=q4=Robe of the Archmage", "=ds=#s5#, #a1# =q1=#m1# =ds=#c3#"};
- { 4, 13494, "", "=q2=Recipe: Greater Fire Protection Potion", "=ds=#p1# (290) =q1=#n71#/#n72#", "", "1.94%"};
- { 5, 16250, "", "=q2=Formula: Enchant Weapon - Superior Striking", "=ds=#p4# (300) =q1=#n75#", "", "1.04%"};
- { 6, 16244, "", "=q2=Formula: Enchant Gloves - Greater Strength", "=ds=#p4# (295) =q1=#n76#", "", "4.16%"};
- { 7, 15749, "", "=q2=Pattern: Volcanic Breastplate", "=ds=#p7# (285) =q1=#n73#", "", "2.04%"};
- { 8, 15775, "", "=q2=Pattern: Volcanic Shoulders", "=ds=#p7# (300) =q1=#n74#", "", "10.56%"};
- { 10, 12219, "", "=q1=Unadorned Seal of Ascension", "=ds=#m3#"};
- { 11, 21982, "", "=q1=Ogre Warbeads", "=ds=#m3#"};
- };
- };
-
- -------------------------------------------------
- --- Blackrock Mountain: Upper Blackrock Spire ---
- -------------------------------------------------
-
- AtlasLoot_Data["UpperBlackrock"] = {
- Name = BabbleZone["Upper Blackrock Spire"];
- Type = "ClassicDungeonExt";
- Map = "BlackrockSpireUpper";
- {
- Name = BabbleBoss["Pyroguard Emberseer"];
- { 1, 12905, "", "=q3=Wildfire Cape", "=ds=#s4#", "", "15.20%"};
- { 2, 12927, "", "=q3=TruestrikeShoulders", "=ds=#s3#, #a2#", "", "17.47%"};
- { 3, 12929, "", "=q3=Emberfury Talisman", "=ds=#s2#", "", "15.89%"};
- { 4, 12926, "", "=q3=Flaming Band", "=ds=#s13#", "", "18.52%"};
- { 6, 17322, "", "=q1=Eye of the Emberseer", "=ds=#m3#", "", "100%"};
- { 7, 21988, "", "=q1=Ember of Emberseer", "=ds=#m3#"};
- { 16, 16672, "", "=q3=Gauntlets of Elements", "=ds=#s9#, #a3# (D1, #c7#)", "", "14.23%"};
- };
- {
- Name = BabbleBoss["Solakar Flamewreath"];
- { 1, 12609, "", "=q3=Polychromatic Visionwrap", "=ds=#s5#, #a1#", "", "15.82%"};
- { 2, 12589, "", "=q3=Dustfeather Sash", "=ds=#s10#, #a1#", "", "12.84%"};
- { 3, 12603, "", "=q3=Nightbrace Tunic", "=ds=#s5#, #a2#", "", "15.06%"};
- { 4, 12606, "", "=q3=Crystallized Girdle", "=ds=#s10#, #a2#", "", "14.04%"};
- { 6, 18657, "", "=q2=Schematic: Hyper-Radiant Flame Reflector", "=ds=#p5# (290)", "", "7.38%"};
- { 7, 18638, "", "=q3=Hyper-Radiant Flame Reflector", "=ds=#s14#"};
- { 16, 16695, "", "=q3=Devout Mantle", "=ds=#s3#, #a1# (D1, #c5#)", "", "12.84%"};
- };
- {
- Name = AL["Father Flame"];
- { 1, 13371, "", "=q2=Father Flame", "=ds=#s15#", "", "100%"};
- };
- {
- Name = AL["Quest Item"];
- { 1, 12358, "", "=q1=Darkstone Tablet", "=ds=#m3#"};
- { 2, 12352, "", "=q1=Doomrigger's Clasp", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Jed Runewatcher"];
- { 1, 12604, "", "=q3=Starfire Tiara", "=ds=#s1#, #a1#", "", "28.64%"};
- { 2, 12930, "", "=q3=Briarwood Reed", "=ds=#s14#", "", "26.36%"};
- { 3, 12605, "", "=q3=Serpentine Skuller", "=ds=#w12#", "", "32.95%"};
- };
- {
- Name = BabbleBoss["Goraluk Anvilcrack"];
- { 1, 18047, "", "=q3=Flame Walkers", "=ds=#s12#, #a3#", "", "18.05%"};
- { 2, 13502, "", "=q3=Handcrafted Mastersmith Girdle", "=ds=#s10#, #a4#", "", "15.78%"};
- { 3, 13498, "", "=q3=Handcrafted Mastersmith Leggings", "=ds=#s11#, #a4#", "", "20.63%"};
- { 4, 18048, "", "=q3=Mastersmith's Hammer", "=ds=#h3#, #w6#", "", "17.26%"};
- { 6, 12837, "", "=q3=Plans: Masterwork Stormhammer", "=ds=#p2# (300)", "", "4.80%"};
- { 7, 12794, "", "=q3=Masterwork Stormhammer", "=ds=#h1#, #w6#"};
- { 8, 12834, "", "=q3=Plans: Arcanite Champion", "=ds=#p2# (300)", "", "4.75%"};
- { 9, 12790, "", "=q3=Arcanite Champion", "=ds=#h2#, #w10#"};
- { 11, 18779, "", "=q3=Bottom Half of Advanced Armorsmithing: Volume I", "=ds=#m3#", "", "17.08%"};
- { 12, 12727, "", "=q3=Plans: Enchanted Thorium Breastplate", "=q1=#m4#: =ds=#p2# (300)"};
- { 16, 0, "INV_Box_01", "=q6=#x10#", ""};
- { 17, 12806, "", "=q3=Unforged Rune Covered Breastplate", "=ds=#m3#"};
- { 18, 12696, "", "=q3=Plans: Demon Forged Breastplate", "=q1=#m4#: =ds=#p2# (285)"};
- };
- {
- Name = BabbleBoss["Warchief Rend Blackhand"];
- { 1, 12590, "", "=q4=Felstriker", "=ds=#h1#, #w4#", "", "1.06%"};
- { 3, 22247, "", "=q3=Faith Healer's Boots", "=ds=#s12#, #a1#", "", "12.71%"};
- { 4, 18102, "", "=q3=Dragonrider Boots", "=ds=#s12#, #a1#", "", "14.35%"};
- { 5, 12587, "", "=q3=Eye of Rend", "=ds=#s1#, #a2#", "", "14.50%"};
- { 6, 12588, "", "=q3=Bonespike Shoulder", "=ds=#s3#, #a3#", "", "0.85%"};
- { 7, 18104, "", "=q3=Feralsurge Girdle", "=ds=#s10#, #a3#", "", "15.30%"};
- { 8, 12936, "", "=q3=Battleborn Armbraces", "=ds=#s8#, #a4#", "", "16.96%"};
- { 9, 12935, "", "=q3=Warmaster Legguards", "=ds=#s11#, #a4#", "", "15.05%"};
- { 10, 18103, "", "=q3=Band of Rumination", "=ds=#s13#", "", "15.38%"};
- { 16, 16733, "", "=q3=Spaulders of Valor", "=ds=#s3#, #a4# (D1, #c9#)", "", "13.39%"};
- { 18, 12940, "", "=q3=Dal'Rend's Sacred Charge", "=ds=#h3#, #w10#", "", "6.79%"};
- { 19, 12939, "", "=q3=Dal'Rend's Tribal Guardian", "=ds=#h4#, #w10#", "", "7.61%"};
- { 20, 12583, "", "=q3=Blackhand Doomsaw", "=ds=#w7#", "", "7.44%"};
- { 22, 12630, "", "=q1=Head of Rend Blackhand", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Gyth"];
- { 1, 12871, "", "=q4=Chromatic Carapace", "=ds=#m3#", "", "2.64%"};
- { 2, 12945, "", "=q4=Legplates of the Chromatic Defier", "=q1=#m4#: =ds=#s11#, #a3#"};
- { 3, 12903, "", "=q4=Legguards of the Chromatic Defier", "=q1=#m4#: =ds=#s11#, #a3#"};
- { 4, 12895, "", "=q4=Breastplate of the Chromatic Flight", "=q1=#m4#: =ds=#s5#, #a4#"};
- { 6, 22225, "", "=q3=Dragonskin Cowl", "=ds=#s1#, #a1# =q2=#m16#", "", "11.85%"};
- { 7, 12960, "", "=q3=Tribal War Feathers", "=ds=#s1#, #a2# =q2=#m16#", "", "15.24%"};
- { 8, 12953, "", "=q3=Dragoneye Coif", "=ds=#s1#, #a3# =q2=#m16#", "", "15.99%"};
- { 9, 12952, "", "=q3=Gyth's Skull", "=ds=#s1#, #a4# =q2=#m16#", "", "12.43%"};
- { 11, 13522, "", "=q2=Recipe: Flask of Chromatic Resistance", "=ds=#p1# (300)", "", "2.95%"};
- { 16, 16669, "", "=q3=Pauldrons of Elements", "=ds=#s3#, #a3# (D1, #c7#)", "", "14.77%"};
- };
- {
- Name = BabbleBoss["The Beast"];
- { 1, 12731, "", "=q4=Pristine Hide of the Beast", "=ds=#m3#", "", "0.77%"};
- { 2, 12752, "", "=q4=Cap of the Scarlet Savant", "=q1=#m4#: =ds=#s1#, #a1#"};
- { 3, 12757, "", "=q4=Breastplate of Bloodthirst", "=q1=#m4#: =ds=#s5#, #a2#"};
- { 4, 12756, "", "=q4=Leggings of Arcana", "=q1=#m4#: =ds=#s11#, #a2#"};
- { 6, 12967, "", "=q3=Bloodmoon Cloak", "=ds=#s4#", "", "18.30%"};
- { 7, 12968, "", "=q3=Frostweaver Cape", "=ds=#s4#", "", "14.47%"};
- { 8, 12965, "", "=q3=Spiritshroud Leggings", "=ds=#s11#, #a1#", "", "13.16%"};
- { 9, 22311, "", "=q3=Ironweave Boots", "=ds=#s12#, #a1#", "", "12.31%"};
- { 10, 12966, "", "=q3=Blackmist Armguards", "=ds=#s8#, #a2#", "", "16.06%"};
- { 11, 12963, "", "=q3=Blademaster Leggings", "=ds=#s11#, #a2#", "", "12.74%"};
- { 12, 12964, "", "=q3=Tristam Legguards", "=ds=#s11#, #a3#", "", "18.16%"};
- { 13, 12709, "", "=q3=Finkle's Skinner", "=ds=#h1#, #w4#, =q1=#e18#", "", "6.95%"};
- { 14, 12969, "", "=q3=Seeping Willow", "=ds=#h2#, #w6#", "", "11.49%"};
- { 16, 16729, "", "=q3=Lightforge Spaulders", "=ds=#s3#, #a4# (D1, #c4#)", "", "13.62%"};
- { 18, 24101, "", "=q3=Book of Ferocious Bite V", "=ds=#e10# =q1=#m1# =ds=#c1#", "", "1.44%"};
- { 19, 19227, "", "=q3=Ace of Beasts", "=ds=#e16#", "", "4.53%"};
- };
- {
- Name = BabbleBoss["Lord Valthalak"].." ("..AL["Summon"]..")";
- { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n16#"};
- { 2, 22337, "", "=q3=Shroud of Domination", "=ds=#s4#", "", "23.37%"};
- { 3, 22302, "", "=q3=Ironweave Cowl", "=ds=#s1#, #a1#", "", "27.72%"};
- { 4, 22342, "", "=q3=Leggings of Torment", "=ds=#s11#, #a1#", "", "23.10%"};
- { 5, 22343, "", "=q3=Handguards of Savagery", "=ds=#s9#, #a3#", "", "20.11%"};
- { 6, 22340, "", "=q3=Pendant of Celerity", "=ds=#s2#", "", "17.66%"};
- { 7, 22339, "", "=q3=Rune Band of Wizardry", "=ds=#s13#", "", "15.49%"};
- { 8, 22335, "", "=q3=Lord Valthalak's Staff of Command", "=ds=#w9#", "", "14.67%"};
- { 9, 22336, "", "=q3=Draconian Aegis of the Legion", "=ds=#w8#", "", "17.66%"};
- };
- {
- Name = BabbleBoss["General Drakkisath"];
- { 1, 12592, "", "=q4=Blackblade of Shahram", "=ds=#h2#, #w10#", "", "1.08%"};
- { 3, 22269, "", "=q3=Shadow Prowler's Cloak", "=ds=#s4#", "", "10.61%"};
- { 4, 22267, "", "=q3=Spellweaver's Turban", "=ds=#s1#, #a1#", "", "15.50%"};
- { 5, 13142, "", "=q3=Brigam Girdle", "=ds=#s10#, #a4#", "", "16.40%"};
- { 6, 13141, "", "=q3=Tooth of Gnarr", "=ds=#s2#", "", "16.83%"};
- { 7, 13098, "", "=q3=Painweaver Band", "=ds=#s13#", "", "13.51%"};
- { 8, 22268, "", "=q3=Draconic Infused Emblem", "=ds=#s14#", "", "4.13%"};
- { 9, 22253, "", "=q3=Tome of the Lost", "=ds=#s15#", "", "16.05%"};
- { 10, 12602, "", "=q3=Draconian Deflector", "=ds=#w8#", "", "14.52%"};
- { 12, 15730, "", "=q3=Pattern: Red Dragonscale Breastplate", "=ds=#p7# (300)", "", "3.58%"};
- { 13, 15047, "", "=q3=Red Dragonscale Breastplate", "=ds=#s5#, #a3#"};
- { 15, 13519, "", "=q2=Recipe: Flask of the Titans", "=ds=#p1# (300)", "", "1.72%"};
- { 16, 16688, "", "=q3=Magister's Robes", "=ds=#s5#, #a1# (D1, #c3#)", "", "7.24%"};
- { 17, 16700, "", "=q3=Dreadmist Robe", "=ds=#s5#, #a1# (D1, #c8#)", "", "8.04%"};
- { 18, 16690, "", "=q3=Devout Robe", "=ds=#s5#, #a1# (D1, #c5#)", "", "6.20%"};
- { 19, 16706, "", "=q3=Wildheart Vest", "=ds=#s5#, #a2# (D1, #c1#)", "", "7.36%"};
- { 20, 16721, "", "=q3=Shadowcraft Tunic", "=ds=#s5#, #a2# (D1, #c6#)", "", "6.09%"};
- { 21, 16674, "", "=q3=Beaststalker's Tunic", "=ds=#s5#, #a3# (D1, #c2#)", "", "6.81%"};
- { 22, 16666, "", "=q3=Vest of Elements", "=ds=#s5#, #a3# (D1, #c7#)", "", "3.03%"};
- { 23, 16730, "", "=q3=Breastplate of Valor", "=ds=#s5#, #a4# (D1, #c9#)", "", "5.83%"};
- { 24, 16726, "", "=q3=Lightforge Breastplate", "=ds=#s5#, #a4# (D1, #c4#)", "", "3.76%"};
- { 30, 16663, "", "=q1=Blood of the Black Dragon Champion", "=ds=#m3#", "", "100%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 13260, "", "=q3=Wind Dancer Boots", "=ds=#s12#, #a3#", "", "0.01%"};
- { 2, 24102, "", "=q3=Manual of Eviscerate IX", "=ds=#e10# =q1=#m1# =ds=#c6# =q1=#n70#", "", "0.94%"};
- { 4, 16247, "", "=q2=Formula: Enchant 2H Weapon - Superior Impact", "=ds=#p4# (295) =q1=#n69#", "", "1.54%"};
- { 6, 12607, "", "=q3=Brilliant Chromatic Scale", "=ds=#m3#"};
- { 7, 12219, "", "=q1=Unadorned Seal of Ascension", "=ds=#m3#"};
- };
- };
- ---------------------------------------
- --- Blackrock Mountain: Molten Core ---
- ---------------------------------------
-
- AtlasLoot_Data["MoltenCore"] = {
- Name = BabbleZone["Molten Core"];
- Type = "ClassicRaid";
- Map = "MoltenCore";
- {
- Name = BabbleBoss["Lucifron"];
- { 1, 18872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "1.93%"};
- { 2, 19145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "1.84%"};
- { 3, 19146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "1.95%"};
- { 4, 18875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "2.00%"};
- { 5, 18870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "1.09%"};
- { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.15%"};
- { 7, 17109, "", "=q4=Choker of Enlightenment", "=ds=#s2#", "", "12.61%"};
- { 8, 18879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "2.04%"};
- { 9, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "2.23%"};
- { 10, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.23%"};
- { 11, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "1.60%"};
- { 16, 2522362, "", "=q4=Molten Wristgaurds", "=ds=#tt1#", "", "100%", "=LT=T1WRIST"};
- { 18, 17329, "", "=q1=Hand of Lucifron", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Magmadar"];
- { 1, 19136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "4.79%"};
- { 2, 18823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "6.18%"};
- { 3, 18829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "2.10%"};
- { 4, 19144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.86%"};
- { 5, 19143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "5.48%"};
- { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "3.98%"};
- { 7, 18824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "3.22%"};
- { 8, 17065, "", "=q4=Medallion of Steadfast Might", "=ds=#s2#", "", "14.05%"};
- { 9, 18821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "5.79%"};
- { 10, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "5.55%"};
- { 11, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "5.42%"};
- { 12, 18203, "", "=q4=Eskhandar's Right Claw", "=ds=#h3#, #w13#", "", "17.82%"};
- { 13, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "5.68%"};
- { 14, 17073, "", "=q4=Earthshaker", "=ds=#h2#, #w6#", "", "16.75%"};
- { 15, 17069, "", "=q4=Striker's Mark", "=ds=#w2#", "", "16.37%"};
- { 16, 2522359, "", "=q4=Molten Leggaurds", "=ds=#tt1#", "", "100%", "=LT=T1LEGS"};
- };
- {
- Name = BabbleBoss["Gehennas"];
- { 1, 19145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "3.83%"};
- { 2, 18872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "3.37%"};
- { 3, 19146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "3.53%"};
- { 4, 18875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "3.57%"};
- { 5, 18870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "1.77%"};
- { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "3.48%"};
- { 7, 18879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "3.78%"};
- { 8, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "3.78%"};
- { 9, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "3.79%"};
- { 10, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "3.34%"};
- { 16, 2522364, "", "=q4=Molten Girdle", "=ds=#tt1#", "", "100%", "=LT=T1HAND"};
- { 18, 17331, "", "=q1=Hand of Gehennas", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Garr"];
- { 1, 19136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "4.80%"};
- { 2, 18823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "5.23%"};
- { 3, 18829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.68%"};
- { 4, 19144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.48%"};
- { 5, 19143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "3.84%"};
- { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.82%"};
- { 7, 18824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "3.05%"};
- { 8, 18821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "4.48%"};
- { 9, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "4.13%"};
- { 10, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "3.69%"};
- { 11, 17071, "", "=q4=Gutgore Ripper", "=ds=#h1#, #w4#", "", "11.21%"};
- { 12, 18832, "", "=q4=Brutality Blade", "=ds=#h1#, #w10#", "", "13.27%"};
- { 13, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "4.09%"};
- { 14, 17105, "", "=q4=Aurastone Hammer", "=ds=#h3#, #w6#", "", "12.67%"};
- { 15, 17066, "", "=q4=Drillborer Disk", "=ds=#w8#", "", "11.85%"};
- { 16, 2522360, "", "=q4=Molten Headpiece", "=ds=#tt1#", "", "100%", "=LT=T1HEAD"};
- { 18, 18564, "", "=q5=Bindings of the Windseeker", "=ds=#m3#, =q1=#m9#", "", "3.74%"};
- { 19, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"};
- { 21, 17782, "", "=q5=Talisman of Binding Shard", "=ds=#s2#", "", ""};
- { 22, 11879, "", "=q5=Medallion of Binding Shard", "=ds=#s2#", "", ""};
- };
- {
- Name = BabbleBoss["Shazzrah"];
- { 1, 19145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "1.97%"};
- { 2, 18872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "1.84%"};
- { 3, 19146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "1.85%"};
- { 4, 18875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "1.81%"};
- { 5, 18870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "0.78%"};
- { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.22%"};
- { 7, 18879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "1.72%"};
- { 8, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "1.99%"};
- { 9, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.27%"};
- { 10, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "3.32%"};
- { 16, 2522363, "", "=q4=Molten Handgaurds", "=ds=#tt1#", "", "100%", "=LT=T1WAIST"};
- { 18, 17332, "", "=q1=Hand of Shazzrah", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Baron Geddon"];
- { 1, 19136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "2.44%"};
- { 2, 18823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "3.04%"};
- { 3, 18829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.04%"};
- { 4, 19144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.00%"};
- { 5, 19143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "2.61%"};
- { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "1.77%"};
- { 7, 18824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "1.48%"};
- { 8, 17110, "", "=q4=Seal of the Archmagus", "=ds=#s13#", "", "21.93%"};
- { 9, 18821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "2.61%"};
- { 10, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "2.68%"};
- { 11, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "2.59%"};
- { 12, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "2.70%"};
- { 16, 2522361, "", "=q4=Molten Spaulders", "=ds=#tt1#", "", "100%", "=LT=T1SHOULDER"};
- { 18, 18563, "", "=q5=Bindings of the Windseeker", " =ds=#m3#, =q1=#m10#", "", "3.78%"};
- { 19, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"};
- };
- {
- Name = BabbleBoss["Golemagg the Incinerator"];
- { 1, 19136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "2.18%"};
- { 2, 18823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "2.65%"};
- { 3, 18829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.20%"};
- { 4, 19144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.00%"};
- { 5, 19143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "2.17%"};
- { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "1.44%"};
- { 7, 18824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "1.69%"};
- { 8, 18821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "2.26%"};
- { 9, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "2.91%"};
- { 10, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "2.46%"};
- { 11, 17103, "", "=q4=Azuresong Mageblade", "=ds=#h3#, #w10#", "", "17.59%"};
- { 12, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "2.89%"};
- { 13, 18842, "", "=q4=Staff of Dominance", "=ds=#w9#", "", "18.95%"};
- { 14, 17072, "", "=q4=Blastershot Launcher", "=ds=#w5#", "", "17.83%"};
- { 16, 2522350, "", "=q4=Molten Tunic", "=ds=#tt1#", "", "100%", "=LT=T1CHEST"};
- { 18, 17203, "", "=q4=Sulfuron Ingot", "=ds=#m3#", "", "11.98%"};
- { 19, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=q1=#m4#: =ds=#h2#, #w6#"};
- };
- {
- Name = BabbleBoss["Sulfuron Harbinger"];
- { 1, 19145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "2.80%"};
- { 2, 18872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "2.54%"};
- { 3, 19146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "2.70%"};
- { 4, 18875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "2.58%"};
- { 5, 18870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "1.26%"};
- { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.54%"};
- { 7, 18879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "2.32%"};
- { 8, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "2.39%"};
- { 9, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.53%"};
- { 10, 17074, "", "=q4=Shadowstrike", "=ds=#w7#", "", "23.50%"};
- { 11, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "2.26%"};
- { 16, 2522365, "", "=q4=Molten Boots", "=ds=#tt1#", "", "100%", "=LT=T1FEET"};
- { 18, 17330, "", "=q1=Hand of Sulfuron", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Majordomo Executus"];
- { 1, 18811, "", "=q4=Fireproof Cloak", "=ds=#s4#", "", "15.12%"};
- { 2, 18808, "", "=q4=Gloves of the Hypnotic Flame", "=ds=#s9#, #a1#", "", "15.36%"};
- { 3, 18809, "", "=q4=Sash of Whispered Secrets", "=ds=#s10#, #a1#", "", "15.93%"};
- { 4, 19139, "", "=q4=Fireguard Shoulders", "=ds=#s3#, #a2#", "", "15.87%"};
- { 5, 18810, "", "=q4=Wild Growth Spaulders", "=ds=#s3#, #a2#", "", "16.91%"};
- { 6, 18812, "", "=q4=Wristguards of True Flight", "=ds=#s8#, #a3#", "", "18.04%"};
- { 7, 18806, "", "=q4=Core Forged Greaves", "=ds=#s12#, #a4#", "", "16.53%"};
- { 8, 19140, "", "=q4=Cauterizing Band", "=ds=#s13#", "", "15.10%"};
- { 9, 18805, "", "=q4=Core Hound Tooth", "=ds=#h1#, #w4#", "", "16.06%"};
- { 10, 18803, "", "=q4=Finkle's Lava Dredger", "=ds=#h2#, #w6#", "", "12.43%"};
- { 16, 18703, "", "=q4=Ancient Petrified Leaf", "=ds=#m2# =q1=(#c2#)", "", "35.25%"};
- { 17, 18715, "", "=q4=Lok'delar, Stave of the Ancient Keepers", "=q1=#m4#: =ds=#w9#, =q1=#m1# =ds=#c2#"};
- { 18, 18713, "", "=q4=Rhok'delar, Longbow of the Ancient Keepers", "=q1=#m4#: =ds=#w2#, =q1=#m1# =ds=#c2#"};
- { 19, 18714, "", "=q4=Ancient Sinew Wrapped Lamina", "=q1=#m4#: =ds=#w19#, =q1=#m1# =ds=#c2#"};
- { 21, 18646, "", "=q4=The Eye of Divinity", "=ds=#m2# =q1=(#c5#)", "", "28.30%"};
- { 22, 18608, "", "=q4=Benediction", "=q1=#m4#: =ds=#w9#, =q1=#m1# =ds=#c5#"};
- { 23, 18609, "", "=q4=Anathema", "=q1=#m4#: =ds=#w9#, =q1=#m1# =ds=#c5#"};
- };
- {
- Name = BabbleBoss["Ragnaros"];
- { 1, 17102, "", "=q4=Cloak of the Shrouded Mists", "=ds=#s4#", "", "14.31%"};
- { 2, 17107, "", "=q4=Dragon's Blood Cape", "=ds=#s4#", "", "15.32%"};
- { 3, 18817, "", "=q4=Crown of Destruction", "=ds=#s1#, #a3#", "", "16.75%"};
- { 4, 19137, "", "=q4=Onslaught Girdle", "=ds=#s10#, #a4#", "", "13.18%"};
- { 5, 18814, "", "=q4=Choker of the Fire Lord", "=ds=#s2#", "", "16.08%"};
- { 6, 19138, "", "=q4=Band of Sulfuras", "=ds=#s13#", "", "15.64%"};
- { 7, 17063, "", "=q4=Band of Accuria", "=ds=#s13#", "", "14.81%"};
- { 8, 17082, "", "=q4=Shard of the Flame", "=ds=#s14#", "", " 4.65%"};
- { 9, 18815, "", "=q4=Essence of the Pure Flame", "=ds=#s14#", "", "17.80%"};
- { 10, 18816, "", "=q4=Perdition's Blade", "=ds=#h1#, #w4#", "", "15.90%"};
- { 11, 17076, "", "=q4=Bonereaver's Edge", "=ds=#h2#, #w10#", "", "5.12%"};
- { 12, 17104, "", "=q4=Spinal Reaper", "=ds=#h2#, #w1#", "", " 4.63%"};
- { 13, 17106, "", "=q4=Malistar's Defender", "=ds=#w8#", "", "13.88%"};
- { 15, 21110, "", "=q1=Draconic for Dummies", "=ds=#m3#", "", "100%"};
- { 16, 2522459, "", "=q4=Chromatic Leggaurds", "=ds=#tt2#", "", "100%", "=LT=T2LEGS"};
- { 18, 17204, "", "=q5=Eye of Sulfuras", "=ds=#m3#", "", "3.42%"};
- { 19, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=q1=#m4#: =ds=#h2#, #w6#"};
- { 21, 19017, "", "=q1=Essence of the Firelord", "=ds=#m3#", "", "0.46%"};
- { 22, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"};
- { 24, 102107, "", "=q4=Reins of the Magmatic Steed", "=ds=#e12#", [AtlasLoot_Difficulty.MIN_DIF] = AtlasLoot_Difficulty.Heroic};
- };
- {
- Name = "Random Boss Drops";
- { 1, 17010, "", "=q3=Fiery Core", "=ds=#e8#"};
- { 2, 17011, "", "=q3=Lava Core", "=ds=#e8#"};
- { 3, 11382, "", "=q2=Blood of the Mountain", "=ds=#e8#"};
- { 4, 17012, "", "=q1=Core Leather", "=ds=#e8#"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 18264, "", "=q3=Plans: Elemental Sharpening Stone", "=ds=#p2# (300)", "", "1.02%"};
- { 2, 18262, "", "=q2=Elemental Sharpening Stone", "=ds=#e6#"};
- { 4, 18292, "", "=q3=Schematic: Core Marksman Rifle", "=ds=#p5# (300)", "", "0.96%"};
- { 5, 18282, "", "=q4=Core Marksman Rifle", "=ds=#w5#"};
- { 7, 18291, "", "=q3=Schematic: Force Reactive Disk", "=ds=#p5# (300)", "", "0.92%"};
- { 8, 18168, "", "=q4=Force Reactive Disk", "=ds=#w8#"};
- { 10, 18290, "", "=q3=Schematic: Biznicks 247x128 Accurascope", "=ds=#p5# (300)", "", "0.11%"};
- { 11, 18283, "", "=q3=Biznicks 247x128 Accurascope", "=ds=#e11#"};
- { 13, 18259, "", "=q3=Formula: Enchant Weapon - Spell Power", "=ds=#p4# (300)", "", "0.85%"};
- { 16, 18252, "", "=q3=Pattern: Core Armor Kit", "=ds=#p7# (300)", "", "0.85%"};
- { 17, 18251, "", "=q3=Core Armor Kit", "=ds=#e6#"};
- { 19, 18265, "", "=q3=Pattern: Flarecore Wraps", "=ds=#p8# (300)", "", "0.72%"};
- { 20, 18263, "", "=q4=Flarecore Wraps", "=ds=#s8#, #a1#"};
- { 22, 21371, "", "=q3=Pattern: Core Felcloth Bag", "=ds=#p8# (300)", "", "0.33%"};
- { 23, 21342, "", "=q4=Core Felcloth Bag", "=ds=#m11# #e1# =q1=#m1# #c8#"};
- { 25, 18257, "", "=q3=Recipe: Major Rejuvenation Potion", "=ds=#p1# (300)", "", "0.76%"};
- { 26, 18253, "", "=q1=Major Rejuvenation Potion", "=ds=#e2#"};
- { 28, 18260, "", "=q3=Formula: Enchant Weapon - Healing Power", "=ds=#p4# (300)", "", "0.75%"};
- };
- };
-
- ------------------------------------------
- --- Blackrock Mountain: Blackwing Lair ---
- ------------------------------------------
-
- AtlasLoot_Data["BlackwingLair"] = {
- Name = BabbleZone["Blackwing Lair"];
- Type = "ClassicRaid";
- Map = "BlackwingLair";
- {
- Name = BabbleBoss["Razorgore the Untamed"];
- { 1, 19337, "", "=q4=The Black Book", "=ds=#s14#, =q1=#m1# =ds=#c8#", "", "20%"};
- { 2, 19336, "", "=q4=Arcane Infused Gem", "=ds=#s14#, =q1=#m1# =ds=#c2#", "", "20%"};
- { 3, 19344, "", "=q4=Natural Alignment Crystal", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "6.67%"};
- { 5, 19370, "", "=q4=Mantle of the Blackwing Cabal", "=ds=#s3#, #a1#", "", "20%"};
- { 6, 19369, "", "=q4=Gloves of Rapid Evolution", "=ds=#s9#, #a1#", "", "20%"};
- { 7, 19334, "", "=q4=The Untamed Blade", "=ds=#h2#, #w10#", "", "10%"};
- { 8, 19335, "", "=q4=Spineshatter", "=ds=#h1#, #w6#", "", "10%"};
- { 9, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%"};
- { 10, 19357, "", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "", "16.67%"};
- { 11, 19405, "", "=q4=Malfurion's Blessed Bulwark", "=ds=#s5#, #a2#", "", "16.67%"};
- { 16, 2522462, "", "=q4=Chromatic Wristgaurds", "=ds=#tt2#", "", "100%", "=LT=T2WRIST"};
- };
- {
- Name = BabbleBoss["Vaelastrasz the Corrupt"];
- { 1, 19339, "", "=q4=Mind Quickening Gem", "=ds=#s14#, =q1=#m1# =ds=#c3#", "", "20%"};
- { 2, 19340, "", "=q4=Rune of Metamorphosis", "=ds=#s14#, =q1=#m1# =ds=#c1#", "", "20%"};
- { 3, 19372, "", "=q4=Helm of Endless Rage", "=ds=#s1#, #a4#", "", "20%"};
- { 4, 19371, "", "=q4=Pendant of the Fallen Dragon", "=ds=#s2#", "", "20%"};
- { 5, 19346, "", "=q4=Dragonfang Blade", "=ds=#h1#, #w4#", "", "10%"};
- { 6, 19348, "", "=q4=Red Dragonscale Protector", "=ds=#w8#", "", "10%"};
- { 7, 19430, "", "=q4=Shroud of Pure Thought", "=ds=#s4#", "", "16.67%"};
- { 8, 19403, "", "=q4=Band of Forced Concentration", "=ds=#s13#", "", "16.67%"};
- { 9, 19367, "", "=q4=Dragon's Touch", "=ds=#w12#", "", "16.67%"};
- { 16, 2522463, "", "=q4=Chromatic Girdle", "=ds=#tt2#", "", "100%", "=LT=T2WAIST"};
- };
- {
- Name = BabbleBoss["Broodlord Lashlayer"];
- { 1, 19342, "", "=q4=Venomous Totem", "=ds=#s14#, =q1=#m1# =ds=#c6#", "", "20%"};
- { 2, 19341, "", "=q4=Lifegiving Gem", "=ds=#s14#, =q1=#m1# =ds=#c9#", "", "20%"};
- { 3, 19345, "", "=q4=Aegis of Preservation", "=ds=#s14#, =q1=#m1# =ds=#c5#", "", "16.67%"};
- { 4, 19374, "", "=q4=Bracers of Arcane Accuracy", "=ds=#s8#, #a1#", "", "20%"};
- { 5, 19373, "", "=q4=Black Brood Pauldrons", "=ds=#s3#, #a3#", "", "20%"};
- { 6, 19351, "", "=q4=Maladath, Runed Blade of the Black Flight", "=ds=#h1#, #w10#", "", "10%"};
- { 7, 19350, "", "=q4=Heartstriker", "=ds=#w2#", "", "10%"};
- { 8, 19402, "", "=q4=Legguards of the Fallen Crusader", "=ds=#s11#, #a4#", "", "12.5%"};
- { 9, 19365, "", "=q4=Claw of the Black Drake", "=ds=#h3#, #w13#", "", "12.5%"};
- { 10, 14000, "", "=q4=Ring of Trinity Force", "=ds=#h3#, #w13#", "", "12.5%"};
- { 11, 19432, "", "=q4=Circle of Applied Force", "=ds=#s13#", "", "16.67%"};
- { 16, 2522465, "", "=q4=Chromatic Boots", "=ds=#tt2#", "", "100%", "=LT=T2FEET"};
- { 18, 20383, "", "=q1=Head of the Broodlord Lashlayer", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Firemaw"];
- { 1, 19365, "", "=q4=Claw of the Black Drake", "=ds=#h3#, #w13#", "", "12.5%"};
- { 2, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"};
- { 3, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%"};
- { 4, 19343, "", "=q4=Scrolls of Blinding Light", "=ds=#s14#, =q1=#m1# =ds=#c4#", "", "12.5%"};
- { 5, 19344, "", "=q4=Natural Alignment Crystal", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "6.67%"};
- { 6, 19398, "", "=q4=Cloak of Firemaw", "=ds=#s4#", "", "12.5%"};
- { 7, 19400, "", "=q4=Firemaw's Clutch", "=ds=#s10#, #a1#", "", "12.5%"};
- { 8, 19399, "", "=q4=Black Ash Robe", "=ds=#s5#, #a1#", "", "12.5%"};
- { 9, 19396, "", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "", "6.67%"};
- { 10, 19401, "", "=q4=Primalist's Linked Legguards", "=ds=#s11#, #a3#", "", "12.5%"};
- { 11, 19394, "", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "", "6.76%"};
- { 12, 19402, "", "=q4=Legguards of the Fallen Crusader", "=ds=#s11#, #a4#", "", "12.5%"};
- { 13, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%"};
- { 14, 19395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "6.67%"};
- { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=LT=T2HAND"};
- };
- {
- Name = BabbleBoss["Ebonroc"];
- { 1, 19345, "", "=q4=Aegis of Preservation", "=ds=#s14#, =q1=#m1# =ds=#c5#", "", "16.67%"};
- { 2, 19407, "", "=q4=Ebony Flame Gloves", "=ds=#s9#, #a1#", "", "16.67%"};
- { 3, 19405, "", "=q4=Malfurion's Blessed Bulwark", "=ds=#s5#, #a2#", "", "16.67%"};
- { 4, 19396, "", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "", "6.67%"};
- { 5, 19394, "", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "", "6.67%"};
- { 6, 19403, "", "=q4=Band of Forced Concentration", "=ds=#s13#", "", "16.67%"};
- { 7, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%"};
- { 8, 19406, "", "=q4=Drake Fang Talisman", "=ds=#s14#", "", "16.67%"};
- { 9, 19395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "6.67%"};
- { 10, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%"};
- { 11, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"};
- { 12, 19368, "", "=q4=Dragonbreath Hand Cannon", "=ds=#w5#", "", "16.67%"};
- { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=LT=T2HAND"};
- };
- {
- Name = BabbleBoss["Flamegor"];
- { 1, 19430, "", "=q4=Shroud of Pure Thought", "=ds=#s4#", "", "16.67%"};
- { 2, 19396, "", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "", "6.67%"};
- { 3, 19433, "", "=q4=Emberweave Leggings", "=ds=#s11#, #a3#", "", "16.67%"};
- { 4, 19394, "", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "", "6.67%"};
- { 5, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%"};
- { 6, 19432, "", "=q4=Circle of Applied Force", "=ds=#s13#", "", "16.67%"};
- { 7, 19395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "6.67%"};
- { 8, 19431, "", "=q4=Styleen's Impeding Scarab", "=ds=#s14#", "", "16.67%"};
- { 9, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%"};
- { 10, 19357, "", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "", "16.67%"};
- { 11, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"};
- { 12, 19367, "", "=q4=Dragon's Touch", "=ds=#w12#", "", "16.67%"};
- { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=LT=T2HAND"};
- };
- {
- Name = BabbleBoss["Chromaggus"];
- { 1, 19386, "", "=q4=Elementium Threaded Cloak", "=ds=#s4#", "", "20%"};
- { 2, 19388, "", "=q4=Angelista's Grasp", "=ds=#s10#, #a1#", "", "20%"};
- { 3, 19385, "", "=q4=Empowered Leggings", "=ds=#s11#, #a1#", "", "20%"};
- { 4, 19391, "", "=q4=Shimmering Geta", "=ds=#s12#, #a1#", "", "20%"};
- { 5, 19389, "", "=q4=Taut Dragonhide Shoulderpads", "=ds=#s3#, #a2#", "", "20%"};
- { 6, 19390, "", "=q4=Taut Dragonhide Gloves", "=ds=#s9#, #a2#", "", "20%"};
- { 7, 19393, "", "=q4=Primalist's Linked Waistguard", "=ds=#s10#, #a3#", "", "10%"};
- { 8, 19392, "", "=q4=Girdle of the Fallen Crusader", "=ds=#s10#, #a4#", "", "10%"};
- { 9, 19387, "", "=q4=Chromatic Boots", "=ds=#s12#, #a4#", "", "20%"};
- { 11, 19347, "", "=q4=Claw of Chromaggus", "=ds=#h3#, #w4#", "", "10%"};
- { 12, 19352, "", "=q4=Chromatically Tempered Sword", "=ds=#h1#, #w10#", "", "10%"};
- { 13, 19349, "", "=q4=Elementium Reinforced Bulwark", "=ds=#w8#", "", "10%"};
- { 14, 19361, "", "=q4=Ashjre'thul, Crossbow of Smiting", "=ds=#w3#", "", "10%"};
- { 16, 2522461, "", "=q4=Chromatic Spaulders", "=ds=#tt2#", "", "100%", "=LT=T2SHOULDER"};
- };
- {
- Name = BabbleBoss["Nefarian"];
- { 1, 19378, "", "=q4=Cloak of the Brood Lord", "=ds=#s4#", "", "16.67%"};
- { 2, 19375, "", "=q4=Mish'undare, Circlet of the Mind Flayer", "=ds=#s1#, #a1#", "", "16.67%"};
- { 3, 19381, "", "=q4=Boots of the Shadow Flame", "=ds=#s12#, #a2#", "", "16.67%"};
- { 4, 19380, "", "=q4=Therazane's Link", "=ds=#s10#, #a3#", "", "16.67%"};
- { 5, 19377, "", "=q4=Prestor's Talisman of Connivery", "=ds=#s2#", "", "16.67%"};
- { 6, 19376, "", "=q4=Archimtiros' Ring of Reckoning", "=ds=#s13#", "", "16.67%"};
- { 7, 19382, "", "=q4=Pure Elementium Band", "=ds=#s13#", "", "16.67%"};
- { 8, 19379, "", "=q4=Neltharion's Tear", "=ds=#s14#", "", "16.67%"};
- { 9, 19364, "", "=q4=Ashkandi, Greatsword of the Brotherhood", "=ds=#h2#, #w10#", "", "10%"};
- { 10, 19363, "", "=q4=Crul'shorukh, Edge of Chaos", "=ds=#h1#, #w1#", "", "16.67%"};
- { 11, 19360, "", "=q4=Lok'amir il Romathis", "=ds=#h3#, #w6#", "", "16.67%"};
- { 12, 19356, "", "=q4=Staff of the Shadow Flame", "=ds=#w9#", "", "16.67%%"};
- { 13, 14001, "", "=q4=Archimtiros' Ring of Armageddon", "=ds=#s13#", "", "16.67%%"};
- { 16, 2522450, "", "=q4=Chromatic Tunic", "=ds=#tt2#", "", "100%", "=LT=T2CHEST"};
- { 18, 19003, "", "=q4=Head of Nefarian", "=ds=#m2#", "", "100%"};
- { 19, 19383, "", "=q4=Master Dragonslayer's Medallion", "=q1=#m4#: =ds=#s2#"};
- { 20, 19384, "", "=q4=Master Dragonslayer's Ring", "=q1=#m4#: =ds=#s13#"};
- { 21, 19366, "", "=q4=Master Dragonslayer's Orb", "=q1=#m4#: =ds=#s15#"};
- { 23, 21138, "", "=q1=Red Scepter Shard", "=ds=#m3#", "", "100%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 19436, "", "=q4=Cloak of Draconic Might", "=ds=#s4#", "", "2.53%"};
- { 2, 19437, "", "=q4=Boots of Pure Thought", "=ds=#s12#, #a1#", "", "2.33%"};
- { 3, 19438, "", "=q4=Ringo's Blizzard Boots", "=ds=#s12#, #a1#", "", "4.42%"};
- { 4, 19439, "", "=q4=Interlaced Shadow Jerkin", "=ds=#s5#, #a2#", "", "4.62%"};
- { 5, 19434, "", "=q4=Band of Dark Dominion", "=ds=#s13#", "", "1.57%"};
- { 6, 19362, "", "=q4=Doom's Edge", "=ds=#h1#, #w1#", "", "1.67%"};
- { 7, 19354, "", "=q4=Draconic Avenger", "=ds=#h2#, #w1#", "", "5.96%"};
- { 8, 19358, "", "=q4=Draconic Maul", "=ds=#h2#, #w6#", "", "2.30%"};
- { 9, 19435, "", "=q4=Essence Gatherer", "=ds=#w12#", "", "1.61%"};
- { 16, 18562, "", "=q4=Elementium Ore", "=ds=#e8#", "", "4.75%"};
- { 18, 21109, "", "=q1=Draconic for Dummies", "=ds=#m3#"};
- };
- };
-
- ----------------------
- --- Dire Maul East ---
- ----------------------
-
- AtlasLoot_Data["DireMaulEast"] = {
- Name = BabbleZone["Dire Maul"].." East";
- Type = "ClassicDungeonExt";
- Map = "DireMaulEast";
- {
- Name = BabbleBoss["Pusillin"];
- { 1, 18267, "", "=q2=Recipe: Runn Tum Tuber Surprise", "=ds=#p3# (275)", "", "71.55%"};
- { 3, 18261, "", "=q1=Book of Incantations", "=ds=#m3#", "", "100%"};
- { 4, 18249, "", "=q1=Crescent Key", "=ds=#e9#", "", "100%"};
- };
- {
- Name = BabbleBoss["Zevrim Thornhoof"];
- { 1, 18319, "", "=q3=Fervent Helm", "=ds=#s1#, #a3#", "", "7.88%"};
- { 2, 18313, "", "=q3=Helm of Awareness", "=ds=#s1#, #a4#", "", "17.87%"};
- { 3, 18323, "", "=q3=Satyr's Bow", "=ds=#w2#", "", "17.24%"};
- { 5, 18306, "", "=q2=Gloves of Shadowy Mist", "=ds=#s9#, #a1#", "", "21.40%"};
- { 6, 18308, "", "=q2=Clever Hat", "=ds=#s1#, #a2#", "", "23.73%"};
- };
- {
- Name = BabbleBoss["Lethtendris"];
- { 1, 18325, "", "=q3=Felhide Cap", "=ds=#s1#, #a2#", "", "24.67%"};
- { 2, 18311, "", "=q3=Quel'dorei Channeling Rod", "=ds=#w9#", "", "7.30%"};
- { 4, 18302, "", "=q3=Band of Vigor", "=ds=#s13#", "", "29.30%"};
- { 5, 18301, "", "=q3=Lethtendris's Wand", "=ds=#w12#", "", "25.57%"};
- { 7, 18426, "", "=q1=Lethtendris's Web", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Pimgib"];
- { 1, 18354, "", "=q3=Pimgib's Collar", "=ds=#s14#, =q1=#m1# =ds=#c8#", "", "18.68%"};
- };
- {
- Name = BabbleBoss["Hydrospawn"];
- { 1, 18322, "", "=q3=Waterspout Boots", "=ds=#s12#, #a2#", "", "16.42%"};
- { 2, 18317, "", "=q3=Tempest Talisman", "=ds=#s2#", "", "16.44%"};
- { 3, 18324, "", "=q3=Waveslicer", "=ds=#h2#, #w1#", "", "8.46%"};
- { 5, 18307, "", "=q3=Riptide Shoes", "=ds=#s12#, #a1#", "", "21.33%"};
- { 6, 18305, "", "=q3=Breakwater Legguards", "=ds=#s11#, #a4#", "", "22.75%"};
- };
- {
- Name = BabbleBoss["Alzzin the Wildshaper"];
- { 1, 18328, "", "=q3=Shadewood Cloak", "=ds=#s4#", "", "15.36%"};
- { 2, 18327, "", "=q3=Whipvine Cord", "=ds=#s10#, #a1#", "", "16.53%"};
- { 3, 18309, "", "=q3=Gloves of Restoration", "=ds=#s9#, #a2#", "", "14.05%"};
- { 4, 18318, "", "=q3=Merciful Greaves", "=ds=#s12#, #a3#", "", "14.88%"};
- { 5, 18312, "", "=q3=Energized Chestplate", "=ds=#s5#, #a4#", "", "16.08%"};
- { 6, 18326, "", "=q3=Razor Gauntlets", "=ds=#s9#, #a4#", "", "18.62%"};
- { 8, 0, "INV_Box_01", "=q6=#x9#", ""};
- { 9, 18501, "", "=q1=Felvine Shard", "=ds=#m3#"};
- { 16, 18315, "", "=q3=Ring of Demonic Potency", "=ds=#s13#", "", "15.40%"};
- { 17, 18314, "", "=q3=Ring of Demonic Guile", "=ds=#s13#", "", "13.71%"};
- { 18, 18310, "", "=q3=Fiendish Machete", "=ds=#h1#, #w10#", "", "15.39%"};
- { 19, 18321, "", "=q3=Energetic Rod", "=ds=#h3#, #w6#", "", "15.94%"};
- };
- {
- Name = BabbleBoss["Isalien"];
- { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n20#"};
- { 2, 22304, "", "=q3=Ironweave Gloves", "=ds=#s9#, #a1#", "", "16.24%"};
- { 3, 22472, "", "=q3=Boots of Ferocity", "=ds=#s12#, #a2#", "", "12.55%"};
- { 4, 22401, "", "=q3=Libram of Hope", "=ds=#s16#, #w16#", "", "14.76%"};
- { 5, 22345, "", "=q3=Totem of Rebirth", "=ds=#s16#, #w15#", "", "2.95%"};
- { 6, 22315, "", "=q3=Hammer of Revitalization", "=ds=#h3#, #w6#", "", "13.65%"};
- { 7, 22314, "", "=q3=Huntsman's Harpoon", "=ds=#w7#", "", "15.50%"};
- { 17, 21984, "", "=q1=Left Piece of Lord Valthalak's Amulet", "=ds=#m3#"};
- { 18, 22046, "", "=q1=Right Piece of Lord Valthalak's Amulet", "=ds=#m3#"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 18295, "", "=q3=Phasing Boots", "=ds=#s12#, #a1# =q2=#m16#", "", "1.26%"};
- { 2, 18298, "", "=q3=Unbridled Leggings", "=ds=#s11#, #a2#", "", "0.62%"};
- { 3, 18296, "", "=q3=Marksman Bands", "=ds=#s8#, #a3#", "", "0.59%"};
- { 4, 18289, "", "=q3=Barbed Thorn Necklace", "=ds=#s2#", "", "0.87%"};
- };
- {
- Name = "Dire Maul Books";
- { 1, 18364, "", "=q3=The Emerald Dream", "=ds=#e10#, =q1=#m1# =ds=#c1#"};
- { 2, 18361, "", "=q3=The Greatest Race of Hunters", "=ds=#e10#, =q1=#m1# =ds=#c2#"};
- { 3, 18358, "", "=q3=The Arcanist's Cookbook", "=ds=#e10#, =q1=#m1# =ds=#c3#"};
- { 4, 18359, "", "=q3=The Light and How to Swing It", "=ds=#e10#, =q1=#m1# =ds=#c4#"};
- { 5, 18362, "", "=q3=Holy Bologna: What the Light Won't Tell You", "=ds=#e10#, =q1=#m1# =ds=#c5#"};
- { 6, 18356, "", "=q3=Garona: A Study on Stealth and Treachery", "=ds=#e10#, =q1=#m1# =ds=#c6#"};
- { 7, 18363, "", "=q3=Frost Shock and You", "=ds=#e10#, =q1=#m1# =ds=#c7#"};
- { 8, 18360, "", "=q3=Harnessing Shadows", "=ds=#e10#, =q1=#m1# =ds=#c8#"};
- { 9, 18357, "", "=q3=Codex of Defense", "=ds=#e10#, =q1=#m1# =ds=#c9#"};
- { 11, 18333, "", "=q2=Libram of Focus", "=ds=#e10#"};
- { 12, 18334, "", "=q2=Libram of Protection", "=ds=#e10#"};
- { 13, 18332, "", "=q2=Libram of Rapidity", "=ds=#e10#"};
- { 16, 18470, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c1#"};
- { 17, 18473, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c2#"};
- { 18, 18468, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c3#"};
- { 19, 18472, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c4#"};
- { 20, 18469, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c5#"};
- { 21, 18465, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c6#"};
- { 22, 18471, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c7#"};
- { 23, 18467, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c8#"};
- { 24, 18466, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c9#"};
- { 26, 18401, "", "=q4=Foror's Compendium of Dragon Slaying", "=ds=#e10#, =q1=#m1# =ds=#c9#, #c4#"};
- { 27, 18348, "", "=q4=Quel'Serrar", "=ds=#h3#, #w10#, =q1=#m1# =ds=#c9#, #c4#"};
- };
- };
- -----------------------
- --- Dire Maul North ---
- -----------------------
-
- AtlasLoot_Data["DireMaulNorth"] = {
- Name = BabbleZone["Dire Maul"].." North";
- Type = "ClassicDungeonExt";
- Map = "DireMaulNorth";
- {
- Name = BabbleBoss["Guard Mol'dar"];
- { 1, 18496, "", "=q3=Heliotrope Cloak", "=ds=#s4#", "", "4.68%"};
- { 2, 18497, "", "=q3=Sublime Wristguards", "=ds=#s8#, #a1#", "", "4.14%"};
- { 3, 18494, "", "=q3=Denwatcher's Shoulders", "=ds=#s3#, #a3#", "", "4.62%"};
- { 4, 18493, "", "=q3=Bulky Iron Spaulders", "=ds=#s3#, #a4#", "", "3.96%"};
- { 5, 18498, "", "=q3=Hedgecutter", "=ds=#h1#, #w1#", "", "4.94%"};
- { 7, 18268, "", "=q1=Gordok Inner Door Key", "=ds=#e9#", "", "100%"};
- { 16, 18450, "", "=q3=Robe of Combustion", "=ds=#s5#, #a1#", "", "6.57%"};
- { 17, 18451, "", "=q3=Hyena Hide Belt", "=ds=#s10#, #a2#", "", "6.61%"};
- { 18, 18458, "", "=q3=Modest Armguards", "=ds=#s8#, #a3#", "", "7.12%"};
- { 19, 18459, "", "=q3=Gallant's Wristguards", "=ds=#s8#, #a4#", "", "6.09%"};
- { 20, 18464, "", "=q3=Gordok Nose Ring", "=ds=#s13#", "", "6.52%"};
- { 21, 18462, "", "=q3=Jagged Bone Fist", "=ds=#h1#, #w13#", "", "7.54%"};
- { 22, 18463, "", "=q3=Ogre Pocket Knife", "=ds=#h1#, #w10#", "", "7.38%"};
- { 23, 18460, "", "=q3=Unsophisticated Hand Cannon", "=ds=#w5#", "", "5.86%"};
- };
- {
- Name = BabbleBoss["Stomper Kreeg"];
- { 1, 18425, "", "=q3=Kreeg's Mug", "=ds=#s15#", "", "40.24%"};
- { 2, 18269, "", "=q3=Gordok Green Grog", "=ds=#e4#", "", "100%"};
- { 3, 18284, "", "=q3=Kreeg's Stout Beatdown", "=ds=#e4#", "", "100%"};
- };
- {
- Name = BabbleBoss["Guard Fengus"];
- { 1, 18450, "", "=q3=Robe of Combustion", "=ds=#s5#, #a1#", "", "9.76%"};
- { 2, 18451, "", "=q3=Hyena Hide Belt", "=ds=#s10#, #a2#", "", "10.64%"};
- { 3, 18458, "", "=q3=Modest Armguards", "=ds=#s8#, #a3#", "", "11.41%"};
- { 4, 18459, "", "=q3=Gallant's Wristguards", "=ds=#s8#, #a4#", "", "9.60%"};
- { 5, 18464, "", "=q3=Gordok Nose Ring", "=ds=#s13#", "", "11.41%"};
- { 6, 18462, "", "=q3=Jagged Bone Fist", "=ds=#h1#, #w13#", "", "11.79%"};
- { 7, 18463, "", "=q3=Ogre Pocket Knife", "=ds=#h1#, #w10#", "", "11.02%"};
- { 8, 18460, "", "=q3=Unsophisticated Hand Cannon", "=ds=#w5#", "", "9.07%"};
- { 16, 0, "INV_Box_01", "=q6=#x7#", ""};
- { 17, 18266, "", "=q1=Gordok Courtyard Key", "=ds=#e9#", "", "100%"};
- };
- {
- Name = AL["Knot Thimblejack"];
- { 1, 18517, "", "=q4=Pattern: Chromatic Cloak", "=ds=#p7# (300)", "", "0.92%"};
- { 2, 18518, "", "=q4=Pattern: Hide of the Wild", "=ds=#p7# (300)", "", "1.29%"};
- { 3, 18519, "", "=q4=Pattern: Shifting Cloak", "=ds=#p7# (300)", "", "1.14%"};
- { 4, 18414, "", "=q4=Pattern: Belt of the Archmage", "=ds=#p8# (300)", "", "1.00%"};
- { 6, 18418, "", "=q3=Pattern: Cloak of Warding", "=ds=#p8# (300)", "", "9.75%"};
- { 7, 18415, "", "=q3=Pattern: Felcloth Gloves", "=ds=#p8# (300)", "", "9.62%"};
- { 8, 18416, "", "=q3=Pattern: Inferno Gloves", "=ds=#p8# (300)", "", "10.66%"};
- { 9, 18417, "", "=q3=Pattern: Mooncloth Gloves", "=ds=#p8# (300)", "", "10.28%"};
- { 10, 18514, "", "=q3=Pattern: Girdle of Insight", "=ds=#p7# (300)", "", "10.90%"};
- { 11, 18515, "", "=q3=Pattern: Mongoose Boots", "=ds=#p7# (300)", "", "11.18%"};
- { 12, 18516, "", "=q3=Pattern: Swift Flight Bracers", "=ds=#p7# (300)", "", "10.26%"};
- { 14, 0, "INV_Box_01", "=q6=#x6#", ""};
- { 15, 18240, "", "=q2=Ogre Tannin", "=ds=#m3#", "", "100%"};
- { 16, 18509, "", "=q4=Chromatic Cloak", "=ds=#s4#"};
- { 17, 18510, "", "=q4=Hide of the Wild", "=ds=#s4#"};
- { 18, 18511, "", "=q4=Shifting Cloak", "=ds=#s4#"};
- { 19, 18405, "", "=q4=Belt of the Archmage", "=ds=#s10#, #a1#"};
- { 21, 18413, "", "=q3=Cloak of Warding", "=ds=#s4#"};
- { 22, 18407, "", "=q3=Felcloth Gloves", "=ds=#s9#, #a1#"};
- { 23, 18408, "", "=q3=Inferno Gloves", "=ds=#s9#, #a1#"};
- { 24, 18409, "", "=q3=Mooncloth Gloves", "=ds=#s9#, #a1#"};
- { 25, 18504, "", "=q3=Girdle of Insight", "=ds=#s10#, #a2#"};
- { 26, 18506, "", "=q3=Mongoose Boots", "=ds=#s12#, #a2#"};
- { 27, 18508, "", "=q3=Swift Flight Bracers", "=ds=#s8#, #a3#"};
- };
- {
- Name = BabbleBoss["Guard Slip'kik"];
- { 1, 18496, "", "=q3=Heliotrope Cloak", "=ds=#s4#", "", "5.82%"};
- { 2, 18497, "", "=q3=Sublime Wristguards", "=ds=#s8#, #a1#", "", "4.75%"};
- { 3, 18494, "", "=q3=Denwatcher's Shoulders", "=ds=#s3#, #a3#", "", "5.70%"};
- { 4, 18493, "", "=q3=Bulky Iron Spaulders", "=ds=#s3#, #a4#", "", "4.89%"};
- { 5, 18498, "", "=q3=Hedgecutter", "=ds=#h1#, #w1#", "", "6.01%"};
- { 16, 18450, "", "=q3=Robe of Combustion", "=ds=#s5#, #a1#", "", "6.78%"};
- { 17, 18451, "", "=q3=Hyena Hide Belt", "=ds=#s10#, #a2#", "", "7.83%"};
- { 18, 18458, "", "=q3=Modest Armguards", "=ds=#s8#, #a3#", "", "7.63%"};
- { 19, 18459, "", "=q3=Gallant's Wristguards", "=ds=#s8#, #a4#", "", "6.98%"};
- { 20, 18464, "", "=q3=Gordok Nose Ring", "=ds=#s13#", "", "7.36%"};
- { 21, 18462, "", "=q3=Jagged Bone Fist", "=ds=#h1#, #w13#", "", "8.52%"};
- { 22, 18463, "", "=q3=Ogre Pocket Knife", "=ds=#h1#, #w10#", "", "7.74%"};
- { 23, 18460, "", "=q3=Unsophisticated Hand Cannon", "=ds=#w5#", "", "6.66%"};
- };
- {
- Name = BabbleBoss["Captain Kromcrush"];
- { 1, 18507, "", "=q3=Boots of the Full Moon", "=ds=#s12#, #a1#", "", "18.75%"};
- { 2, 18505, "", "=q3=Mugger's Belt", "=ds=#s10#, #a2#", "", "18.06%"};
- { 3, 18503, "", "=q3=Kromcrush's Chestplate", "=ds=#s5#, #a4#", "", "17.48%"};
- { 4, 18502, "", "=q3=Monstrous Glaive", "=ds=#w7#", "", "21.47%"};
- };
- {
- Name = BabbleBoss["Cho'Rush the Observer"];
- { 1, 18490, "", "=q3=Insightful Hood", "=ds=#s1#, #a2#", "", "21.46%"};
- { 2, 18484, "", "=q3=Cho'Rush's Blade", "=ds=#h1#, #w10#", "", "22.46%"};
- { 3, 18485, "", "=q3=Observer's Shield", "=ds=#w8#", "", "22.96%"};
- { 4, 18483, "", "=q3=Mana Channeling Wand", "=ds=#w12#", "", "19.01%"};
- };
- {
- Name = BabbleBoss["King Gordok"];
- { 1, 18526, "", "=q3=Crown of the Ogre King", "=ds=#s1#, #a1#", "", "17.17%"};
- { 2, 18525, "", "=q3=Bracers of Prosperity", "=ds=#s8#, #a2#", "", "19.15%"};
- { 3, 18527, "", "=q3=Harmonious Gauntlets", "=ds=#s9#, #a3#", "", "19.73%"};
- { 4, 18524, "", "=q3=Leggings of Destruction", "=ds=#s11#, #a3#", "", "18.55%"};
- { 5, 18521, "", "=q3=Grimy Metal Boots", "=ds=#s12#, #a4#", "", "17.80%"};
- { 6, 18522, "", "=q3=Band of the Ogre King", "=ds=#s13#", "", "14.96%"};
- { 7, 18523, "", "=q3=Brightly Glowing Stone", "=ds=#s15#", "", "20.21%"};
- { 8, 18520, "", "=q3=Barbarous Blade", "=ds=#h2#, #w10#", "", "16.44%"};
- { 16, 19258, "", "=q3=Ace of Warlords", "=ds=#e16#", "", "1.84%"};
- { 18, 18780, "", "=q3=Top Half of Advanced Armorsmithing: Volume I", "=ds=#m3#", "", "6.00%"};
- { 19, 12727, "", "=q3=Plans: Enchanted Thorium Breastplate", "=q1=#m4#: =ds=#p2# (300)"};
- };
- {
- Name = AL["DM North Tribute Chest"];
- { 1, 18538, "", "=q4=Treant's Bane", "=ds=#h2#, #w1#"};
- { 3, 18495, "", "=q3=Redoubt Cloak", "=ds=#s4#"};
- { 4, 18532, "", "=q3=Mindsurge Robe", "=ds=#s5#, #a1#"};
- { 5, 18528, "", "=q3=Cyclone Spaulders", "=ds=#s3#, #a2#"};
- { 6, 18530, "", "=q3=Ogre Forged Hauberk", "=ds=#s5#, #a3#"};
- { 7, 18533, "", "=q3=Gordok Bracers of Power", "=ds=#s8#, #a4#"};
- { 8, 18529, "", "=q3=Elemental Plate Girdle", "=ds=#s10#, #a4# =q2=#m16#"};
- { 9, 18500, "", "=q3=Tarnished Elven Ring", "=ds=#s13#"};
- { 10, 18537, "", "=q3=Counterattack Lodestone", "=ds=#s14#"};
- { 11, 18531, "", "=q3=Unyielding Maul", "=ds=#h2#, #w6#"};
- { 12, 18534, "", "=q3=Rod of the Ogre Magi", "=ds=#w9#"};
- { 13, 18499, "", "=q3=Barrier Shield", "=ds=#w8#"};
- { 16, 18475, "", "=q2=Oddly Magical Belt", "=ds=#s10#, #a1#"};
- { 17, 18478, "", "=q2=Hyena Hide Jerkin", "=ds=#s5#, #a2#"};
- { 18, 18477, "", "=q2=Shaggy Leggings", "=ds=#s11#, #a2#"};
- { 19, 18476, "", "=q2=Mud Stained Boots", "=ds=#s12#, #a2#"};
- { 20, 18479, "", "=q2=Carrion Scorpid Helm", "=ds=#s1#, #a3#"};
- { 21, 18480, "", "=q2=Scarab Plate Helm", "=ds=#s1#, #a4#"};
- { 22, 18481, "", "=q2=Skullcracking Mace", "=ds=#h2#, #w6#"};
- { 23, 18482, "", "=q2=Ogre Toothpick Shooter", "=ds=#w2#"};
- { 24, 18655, "", "=q2=Schematic: Major Recombobulator", "=ds=#p5# (275)"};
- };
- };
-
- ----------------------
- --- Dire Maul West ---
- ----------------------
-
- AtlasLoot_Data["DireMaulWest"] = {
- Name = BabbleZone["Dire Maul"].." West";
- Type = "ClassicDungeonExt";
- Map = "DireMaulWest";
- {
- Name = BabbleBoss["Tendris Warpwood"];
- { 1, 18390, "", "=q3=Tanglemoss Leggings", "=ds=#s11#, #a2#", "", "22.55%"};
- { 2, 18393, "", "=q3=Warpwood Binding", "=ds=#s10#, #a3#", "", "19.81%"};
- { 4, 18353, "", "=q3=Stoneflower Staff", "=ds=#w9#", "", "23.46%"};
- { 5, 18352, "", "=q3=Petrified Bark Shield", "=ds=#w8#", "", "21.67%"};
- };
- {
- Name = BabbleBoss["Illyanna Ravenoak"];
- { 1, 18386, "", "=q3=Padre's Trousers", "=ds=#s11#, #a1#", "", "18.79%"};
- { 2, 18383, "", "=q3=Force Imbued Gauntlets", "=ds=#s9#, #a4#", "", "20.11%"};
- { 4, 18349, "", "=q3=Gauntlets of Accuracy", "=ds=#s9#, #a3#", "", "23.94%"};
- { 5, 18347, "", "=q3=Well Balanced Axe", "=ds=#h1#, #w1#", "", "22.44%"};
- };
- {
- Name = BabbleBoss["Magister Kalendris"];
- { 1, 18374, "", "=q3=Flamescarred Shoulders", "=ds=#s3#, #a2#", "", "18.11%"};
- { 2, 18397, "", "=q3=Elder Magus Pendant", "=ds=#s2#", "", "17.46%"};
- { 3, 18371, "", "=q3=Mindtap Talisman", "=ds=#s14#", "", "7.45%"};
- { 5, 18350, "", "=q3=Amplifying Cloak", "=ds=#s4#", "", "21.44%"};
- { 6, 18351, "", "=q3=Magically Sealed Bracers", "=ds=#s8#, #a4#", "", "24.36%"};
- { 7, 22309, "", "=q2=Pattern: Big Bag of Enchantment", "=ds=#p8# (300)"};
- };
- {
- Name = BabbleBoss["Tsu'zee"];
- { 1, 18387, "", "=q3=Brightspark Gloves", "=ds=#s9#, #a1#", "", "24.79%"};
- { 3, 18346, "", "=q3=Threadbare Trousers", "=ds=#s11#, #a1#", "", "33.94%"};
- { 4, 18345, "", "=q3=Murmuring Ring", "=ds=#s13#", "", "30.28%"};
- };
- {
- Name = BabbleBoss["Immol'thar"];
- { 1, 18389, "", "=q3=Cloak of the Cosmos", "=ds=#s4#", "", "14.35%"};
- { 2, 18385, "", "=q3=Robe of Everlasting Night", "=ds=#s5#, #a1#", "", "15.33%"};
- { 3, 18377, "", "=q3=Quickdraw Gloves", "=ds=#s9#, #a2#", "", "21.01%"};
- { 4, 18391, "", "=q3=Eyestalk Cord", "=ds=#s10#, #a2#", "", "20.08%"};
- { 5, 18394, "", "=q3=Demon Howl Wristguards", "=ds=#s8#, #a3#", "", "17.51%"};
- { 6, 18379, "", "=q3=Odious Greaves", "=ds=#s12#, #a3#", "", " 19.81%"};
- { 7, 18384, "", "=q3=Bile-etched Spaulders", "=ds=#s3#, #a4#", "", "14.71%"};
- { 16, 18381, "", "=q3=Evil Eye Pendant", "=ds=#s2#", "", "17.78%"};
- { 17, 18370, "", "=q3=Vigilance Charm", "=ds=#s14#", "", "6.30%"};
- { 18, 18372, "", "=q3=Blade of the New Moon", "=ds=#h1#, #w4#", "", "6.99%"};
- };
- {
- Name = BabbleBoss["Lord Hel'nurath"];
- { 1, 18757, "", "=q3=Diabolic Mantle", "=ds=#s3#, #a1#", "", "23.12%"};
- { 2, 18754, "", "=q3=Fel Hardened Bracers", "=ds=#s8#, #a4#", "", "19.24%"};
- { 3, 18756, "", "=q3=Dreadguard's Protector", "=ds=#w8#", "", "19.77%"};
- { 4, 18755, "", "=q3=Xorothian Firestick", "=ds=#w5#", "", "21.92%"};
- };
- {
- Name = BabbleBoss["Prince Tortheldrin"];
- { 1, 18382, "", "=q3=Fluctuating Cloak", "=ds=#s4# =q2=#m16#", "", "21.84%"};
- { 2, 18373, "", "=q3=Chestplate of Tranquility", "=ds=#s5#, #a2#", "", "6.32%"};
- { 3, 18375, "", "=q3=Bracers of the Eclipse", "=ds=#s8#, #a2#", "", "15.62%"};
- { 4, 18378, "", "=q3=Silvermoon Leggings", "=ds=#s11#, #a3#", "", "21.20%"};
- { 5, 18380, "", "=q3=Eldritch Reinforced Legplates", "=ds=#s11#, #a4#", "", "15.87%"};
- { 6, 18395, "", "=q3=Emerald Flame Ring", "=ds=#s13#", "", "14.55%"};
- { 8, 0, "INV_Box_01", "=q6=#x8#", ""};
- { 9, 18336, "", "=q1=Gauntlet of Gordok Might", "=ds=#m3#"};
- { 16, 18392, "", "=q3=Distracting Dagger", "=ds=#h4#, #w4#", "", "14.70%"};
- { 17, 18396, "", "=q3=Mind Carver", "=ds=#h3#, #w10#", "", "14.62%"};
- { 18, 18376, "", "=q3=Timeworn Mace", "=ds=#h1#, #w6#", "", "14.40%"};
- { 19, 18388, "", "=q3=Stoneshatter", "=ds=#w3#", "", "7.72%"};
- };
- {
- Name = AL["Shen'dralar Provisioner"];
- { 1, 18487, "", "=q1=Pattern: Mooncloth Robe", "=ds=#p8# (300)"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 18344, "", "=q3=Stonebark Gauntlets", "=ds=#s9#, #a2#", "", "0.47%"};
- { 2, 18340, "", "=q3=Eidolon Talisman", "=ds=#s2#", "", "0.58%"};
- { 3, 18338, "", "=q3=Wand of Arcane Potency", "=ds=#w12#", "", "0.78%"};
- };
- };
- ------------------
- --- Gnomeregan ---
- ------------------
-
- AtlasLoot_Data["Gnomeregan"] = {
- Name = BabbleZone["Gnomeregan"];
- Map = "Gnomeregan";
- {
- Name = AL["Namdo Bizzfizzle"];
- { 1, 14639, "", "=q1=Schematic: Minor Recombobulator", "=ds=#p5# (140)"};
- };
- {
- Name = BabbleBoss["Techbot"];
- { 1, 9444, "", "=q1=Techbot CPU Shell", "=ds=#w8#", "", "69.3%"};
- { 2, 9277, "", "=q1=Techbot's Memory Core", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Grubbis"];
- { 1, 9445, "", "=q3=Grubbis Paws", "=ds=#s9#, #a3#", "", "9.22%"};
- };
- {
- Name = BabbleBoss["Viscous Fallout"];
- { 1, 9454, "", "=q3=Acidic Walkers", "=ds=#s12#, #a1#", "", "54.02%"};
- { 2, 9453, "", "=q3=Toxic Revenger", "=ds=#h1#, #w4#", "", "19.05%"};
- { 3, 9452, "", "=q3=Hydrocane", "=ds=#w9#", "", "18.25%"};
- };
- {
- Name = BabbleBoss["Electrocutioner 6000"];
- { 1, 9448, "", "=q3=Spidertank Oilrag", "=ds=#s8#, #a1#", "", "28.37%"};
- { 2, 9447, "", "=q3=Electrocutioner Lagnut", "=ds=#s13#", "", "28.44%"};
- { 3, 9446, "", "=q3=Electrocutioner Leg", "=ds=#h1#, #w10#", "", "13.19%"};
- { 4, 6893, "", "=q1=Workshop Key", "=ds=#e9#"};
- };
- {
- Name = BabbleBoss["Crowd Pummeler 9-60"];
- { 1, 9450, "", "=q3=Gnomebot Operating Boots", "=ds=#s12#, #a2#", "", "60.45%"};
- { 2, 9449, "", "=q3=Manual Crowd Pummeler", "=ds=#h2#, #w6#", "", "33.14%"};
- };
- {
- Name = BabbleBoss["Dark Iron Ambassador"];
- { 1, 9455, "", "=q3=Emissary Cuffs", "=ds=#s8#, #a2# =q2=#m16#", "", "33.96%"};
- { 2, 9457, "", "=q3=Royal Diplomatic Scepter", "=ds=#h1#, #w6#", "", "17.79%"};
- { 3, 9456, "", "=q3=Glass Shooter", "=ds=#w5#", "", "38.01%"};
- };
- {
- Name = BabbleBoss["Mekgineer Thermaplugg"];
- { 1, 9492, "", "=q3=Electromagnetic Gigaflux Reactivator", "=ds=#s1#, #a1#", "", "7.65%"};
- { 2, 9461, "", "=q3=Charged Gear", "=ds=#s13# =q2=#m16#", "", "28.49%"};
- { 3, 9459, "", "=q3=Thermaplugg's Left Arm", "=ds=#h2#, #w1#", "", "18.05%"};
- { 4, 9458, "", "=q3=Thermaplugg's Central Core", "=ds=#w8#", "", "28.61%"};
- { 5, 4415, "", "=q3=Schematic: Craftsman's Monocle", "=ds=#p5# (185)", "", ""};
- { 6, 4413, "", "=q2=Schematic: Discombobulator Ray", "=ds=#p5# (160)", "", ""};
- { 7, 4411, "", "=q2=Schematic: Flame Deflector", "=ds=#p5# (125)", "", "0.7%"};
- { 8, 7742, "", "=q1=Schematic: Gnomish Cloaking Device", "=ds=#p5# (200)", "", ""};
- { 9, 9299, "", "=q1=Thermaplugg's Safe Combination", "=ds=#m3#", "", "100%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 9508, "", "=q3=Mechbuilder's Overalls", "=ds=#s5#, #a1#", "", "0.02%"};
- { 2, 9491, "", "=q3=Hotshot Pilot's Gloves", "=ds=#s9#, #a1#", "", "0.01%"};
- { 3, 9509, "", "=q3=Petrolspill Leggings", "=ds=#s11#, #a2#", "", "0.01%"};
- { 4, 9510, "", "=q3=Caverndeep Trudgers", "=ds=#s12#, #a3#", "", "0.01%"};
- { 5, 9490, "", "=q3=Gizmotron Megachopper", "=ds=#h2#, #w10#", "", "0.01%"};
- { 6, 9485, "", "=q3=Vibroblade", "=ds=#h1#, #w1#", "", "0.01%"};
- { 7, 9486, "", "=q3=Supercharger Battle Axe", "=ds=#h2#, #w1#", "", "0.02%"};
- { 8, 9488, "", "=q3=Oscillating Power Hammer", "=ds=#h1#, #w6#", "", "0.02%"};
- { 9, 9487, "", "=q3=Hi-tech Supergun", "=ds=#w5#", "", "0.01%"};
- { 10, 9327, "", "=q2=Security DELTA Data Access Card", "=ds=#m20#", "", "1.41%"};
- { 11, 9326, "", "=q1=Grime-Encrusted Ring", "=ds=#m2#", "", "9.38%"};
- { 12, 9362, "", "=q2=Brilliant Gold Ring", "=q1=#m4#: =ds=#s13#"};
- { 13, 9538, "", "=q3=Talvash's Gold Ring", "=q1=#m4#: =ds=#s13#"};
- };
- };
- ----------------
- --- Maraudon ---
- ----------------
-
- AtlasLoot_Data["Maraudon"] = {
- Name = BabbleZone["Maraudon"];
- Map = "Maraudon";
- {
- Name = BabbleBoss["Noxxion"];
- { 1, 17746, "", "=q3=Noxxion's Shackles", "=ds=#s8#, #a4#", "", "32.50%"};
- { 2, 17744, "", "=q3=Heart of Noxxion", "=ds=#s14#", "", "30.35%"};
- { 3, 17745, "", "=q3=Noxious Shooter", "=ds=#w12#", "", "17.53%"};
- { 4, 17702, "", "=q1=Celebrian Rod", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Razorlash"];
- { 1, 17750, "", "=q3=Chloromesh Girdle", "=ds=#s10#, #a1#", "", "22.93%"};
- { 2, 17748, "", "=q3=Vinerot Sandals", "=ds=#s12#, #a1#", "", "20.60%"};
- { 3, 17749, "", "=q3=Phytoskin Spaulders", "=ds=#s3#, #a2#", "", "22.09%"};
- { 4, 17751, "", "=q3=Brusslehide Leggings", "=ds=#s11#, #a2#", "", "21.65%"};
- };
- {
- Name = BabbleBoss["Lord Vyletongue"];
- { 1, 17755, "", "=q3=Satyrmane Sash", "=ds=#s10#, #a1#", "", "25.71%"};
- { 2, 17754, "", "=q3=Infernal Trickster Leggings", "=ds=#s11#, #a3#", "", "28.09%"};
- { 3, 17752, "", "=q3=Satyr's Lash", "=ds=#h1#, #w4#", "", "23.14%"};
- { 4, 17703, "", "=q1=Celebrian Diamond", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Meshlok the Harvester"];
- { 1, 17741, "", "=q3=Nature's Embrace", "=ds=#s5#, #a1#", "", "30.34%"};
- { 2, 17742, "", "=q3=Fungus Shroud Armor", "=ds=#s5#, #a2#", "", "31.37%"};
- { 3, 17767, "", "=q3=Bloomsprout Headpiece", "=ds=#s1#, #a3#", "", "28.32%"};
- };
- {
- Name = BabbleBoss["Celebras the Cursed"];
- { 1, 17739, "", "=q3=Grovekeeper's Drape", "=ds=#s4#", "", "30.32%"};
- { 2, 17740, "", "=q3=Soothsayer's Headdress", "=ds=#s1#, #a2#", "", "28.59%"};
- { 3, 17738, "", "=q3=Claw of Celebras", "=ds=#h4#, #w13#", "", "28.22%"};
- };
- {
- Name = BabbleBoss["Landslide"];
- { 1, 17736, "", "=q3=Rockgrip Gauntlets", "=ds=#s9#, #a3#", "", "23.09%"};
- { 2, 17734, "", "=q3=Helm of the Mountain", "=ds=#s1#, #a4#", "", "20.87%"};
- { 3, 17737, "", "=q3=Cloud Stone", "=ds=#s15#", "", "19.99%"};
- { 4, 17943, "", "=q3=Fist of Stone", "=ds=#h1#, #w6#", "", "16.58%"};
- };
- {
- Name = BabbleBoss["Tinkerer Gizlock"];
- { 1, 17719, "", "=q3=Inventor's Focal Sword", "=ds=#h1#, #w10#", "", "27.44%"};
- { 2, 17718, "", "=q3=Gizlock's Hypertech Buckler", "=ds=#w8#", "", "30.61%"};
- { 3, 17717, "", "=q3=Megashot Rifle", "=ds=#w5#", "", "27.23%"};
- };
- {
- Name = BabbleBoss["Rotgrip"];
- { 1, 17732, "", "=q3=Rotgrip Mantle", "=ds=#s3#, #a1#", "", "25.73%"};
- { 2, 17728, "", "=q3=Albino Crocscale Boots", "=ds=#s12#, #a2#", "", "26.20%"};
- { 3, 17730, "", "=q3=Gatorbite Axe", "=ds=#h2#, #w1#", "", "19.21%"};
- };
- {
- Name = BabbleBoss["Princess Theradras"];
- { 1, 17780, "", "=q4=Blade of Eternal Darkness", "=ds=#h1#, #w4#", "", "0.20%"};
- { 2, 17715, "", "=q3=Eye of Theradras", "=ds=#s1#, #a1#", "", "13.47%"};
- { 3, 17714, "", "=q3=Bracers of the Stone Princess", "=ds=#s8#, #a3#", "", "20.06%"};
- { 4, 17711, "", "=q3=Elemental Rockridge Leggings", "=ds=#s11#, #a4#", "", "14.96%"};
- { 5, 17707, "", "=q3=Gemshard Heart", "=ds=#s2#", "", "15.30%"};
- { 6, 17713, "", "=q3=Blackstone Ring", "=ds=#s13#", "", "18.92%"};
- { 7, 17710, "", "=q3=Charstone Dirk", "=ds=#h1#, #w4#", "", "14.24%"};
- { 8, 17766, "", "=q3=Princess Theradras' Scepter", "=ds=#h2#, #w6#", "", "16.44%"};
- };
- {
- Name = AL["Quest Item"];
- { 1, 17764, "", "=q1=Gem of the Fourth Khan", "=ds=#m3#", "", "100%"};
- { 2, 17765, "", "=q1=Gem of the Fifth Khan", "=ds=#m3#", "", "100%"};
- };
- };
- ----------------------
- --- Ragefire Chasm ---
- ----------------------
- AtlasLoot_Data["RagefireChasm"] = {
- Name = BabbleZone["Ragefire Chasm"];
- Map = "RagefireChasm";
- {
- Name = BabbleBoss["Taragaman the Hungerer"];
- { 1, 14149, "", "=q3=Subterranean Cape", "=ds=#s4#", "", "31.59%"};
- { 2, 14148, "", "=q3=Crystalline Cuffs", "=ds=#s8#, #a1#", "", "33.91%"};
- { 3, 14145, "", "=q3=Cursed Felblade", "=ds=#h1#, #w10#", "", "15.98%"};
- { 4, 14540, "", "=q1=Taragaman the Hungerer's Heart", "=ds=#m3#", "", "100%"};
- };
- {
- Name = AL["Zelemar the Wrathful"];
- { 1, 24225, "", "=q1=Blood of the Wrathful", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Jergosh the Invoker"];
- { 1, 14150, "", "=q3=Robe of Evocation", "=ds=#s5#, #a1#", "", "36.40%"};
- { 2, 14147, "", "=q3=Cavedweller Bracers", "=ds=#s8#, #a3#", "", "34.35%"};
- { 3, 14151, "", "=q3=Chanting Blade", "=ds=#h1#, #w4#", "", "17.10%"};
- };
- };
-
- ----------------------
- --- Razorfen Downs ---
- ----------------------
-
- AtlasLoot_Data["RazorfenDowns"] = {
- Name = BabbleZone["Razorfen Downs"];
- Map = "RazorfenDowns";
- {
- Name = BabbleBoss["Tuten'kash"];
- { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Tuten'kash"], ""};
- { 2, 10776, "", "=q3=Silky Spider Cape", "=ds=#s4#", "", "28.64%"};
- { 3, 10777, "", "=q3=Arachnid Gloves", "=ds=#s9#, #a2# =q2=#m16#", "", "28.95%"};
- { 4, 10775, "", "=q3=Carapace of Tuten'kash", "=ds=#s5#, #a4#", "", "24.87%"};
- };
- {
- Name = AL["Henry Stern"];
- { 1, 3831, "", "=q2=Recipe: Mighty Troll's Blood Potion", "=ds=#p1# (180)"};
- { 2, "s13028", "10841", "=q1=Goldthorn Tea", "=ds=#p3# (175)"};
- };
- {
- Name = BabbleBoss["Mordresh Fire Eye"];
- { 1, 10771, "", "=q3=Deathmage Sash", "=ds=#s10#, #a1#", "", "27.92%"};
- { 2, 10769, "", "=q3=Glowing Eye of Mordresh", "=ds=#s2#", "", "29.11%"};
- { 3, 10770, "", "=q3=Mordresh's Lifeless Skull", "=ds=#s15#", "", "29.59%"};
- };
- {
- Name = BabbleBoss["Glutton"];
- { 1, 10774, "", "=q3=Fleshhide Shoulders", "=ds=#s3#, #a2#", "", "42.15%"};
- { 2, 10772, "", "=q3=Glutton's Cleaver", "=ds=#h1#, #w1#", "", "44.22%"};
- };
- {
- Name = BabbleBoss["Ragglesnout"];
- { 1, 10768, "", "=q3=Boar Champion's Belt", "=ds=#s10#, #a3#", "", "31.40%"};
- { 2, 10758, "", "=q3=X'caliboar", "=ds=#h2#, #w10#", "", "18.51%"};
- { 3, 10767, "", "=q3=Savage Boar's Guard", "=ds=#w8#", "", "35.14%"};
- };
- {
- Name = BabbleBoss["Amnennar the Coldbringer"];
- { 1, 10762, "", "=q3=Robes of the Lich", "=ds=#s5#, #a1#", "", "29.52%"};
- { 2, 10765, "", "=q3=Bonefingers", "=ds=#s9#, #a2#"};
- { 3, 10764, "", "=q3=Deathchill Armor", "=ds=#s5#, #a3#", "", "24.24%"};
- { 4, 10763, "", "=q3=Icemetal Barbute", "=ds=#s1#, #a4#", "", "28.66%"};
- { 5, 10761, "", "=q3=Coldrage Dagger", "=ds=#h1#, #w4#", "", "13.89%"};
- { 6, 10420, "", "=q1=Skull of the Coldbringer", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Plaguemaw the Rotting"];
- { 1, 10760, "", "=q3=Swine Fists", "=ds=#s9#, #a2#", "", "58.15%"};
- { 2, 10766, "", "=q3=Plaguerot Sprig", "=ds=#w12#, =q1=#m1# =ds=#c3#", "", "29.98%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 10574, "", "=q3=Corpseshroud", "=ds=#s1#, #a1#", "", "0.01%"};
- { 2, 10581, "", "=q3=Death's Head Vestment", "=ds=#s5#, #a1#", "", "0.02%"};
- { 3, 10578, "", "=q3=Thoughtcast Boots", "=ds=#s12#, #a1#", "", "0.01%"};
- { 4, 10583, "", "=q3=Quillward Harness", "=ds=#s5#, #a2#", "", "0.01%"};
- { 5, 10582, "", "=q3=Briar Tredders", "=ds=#s12#, #a2#", "", "0.02%"};
- { 6, 10584, "", "=q3=Stormgale Fists", "=ds=#s9#, #a3#", "", "0.02%"};
- { 7, 10573, "", "=q3=Boneslasher", "=ds=#h2#, #w10#", "", "0.01%"};
- { 8, 10570, "", "=q3=Manslayer", "=ds=#h2#, #w1#", "", "0.01%"};
- { 9, 10571, "", "=q3=Ebony Boneclub", "=ds=#h1#, #w6#", "", "0.01%"};
- { 10, 10567, "", "=q3=Quillshooter", "=ds=#w2#", "", "0.02%"};
- { 11, 10572, "", "=q3=Freezing Shard", "=ds=#w12#, =q1=#m1# =q2=#c3#", "", "0.01%"};
- };
- };
-
- ----------------------
- --- Razorfen Kraul ---
- ----------------------
-
- AtlasLoot_Data["RazorfenKraul"] = {
- Name = BabbleZone["Razorfen Kraul"];
- Map = "RazorfenKraul";
- {
- Name = AL["Roogug"];
- { 1, 6841, "", "=q1=Vial of Phlogiston", "=ds=#m3#"};
- };
- {
- Name = AL["Aggem Thorncurse"];
- { 1, 6681, "", "=q3=Thornspike", "=ds=#h1#, #w4#", "", "57,12%"};
- };
- {
- Name = BabbleBoss["Death Speaker Jargba"];
- { 1, 6685, "", "=q3=Death Speaker Mantle", "=ds=#s3#, #a1#", "", "40.42%"};
- { 2, 6682, "", "=q3=Death Speaker Robes", "=ds=#s5#, #a1#", "", "40.52%"};
- { 3, 2816, "", "=q3=Death Speaker Scepter", "=ds=#h3#, #w6#", "", "7.72%"};
- };
- {
- Name = AL["Razorfen Spearhide"];
- { 1, 6679, "", "=q3=Armor Piercer", "=ds=#w7#", "", "43%"};
- };
- {
- Name = BabbleBoss["Overlord Ramtusk"];
- { 1, 6686, "", "=q3=Tusken Helm", "=ds=#s1#, #a3#", "", "57.14%"};
- { 2, 6687, "", "=q3=Corpsemaker", "=ds=#h2#, #w1#", "", "27.79%"};
- };
- {
- Name = BabbleBoss["Agathelos the Raging"];
- { 1, 6690, "", "=q3=Ferine Leggings", "=ds=#s11#, #a2#", "", "49.21%"};
- { 2, 6691, "", "=q3=Swinetusk Shank", "=ds=#h1#, #w4#", "", "24.85%"};
- };
- {
- Name = BabbleBoss["Blind Hunter"];
- { 1, 6697, "", "=q3=Batwing Mantle", "=ds=#s3#, #a1#", "", "27.65%"};
- { 2, 6695, "", "=q3=Stygian Bone Amulet", "=ds=#s2#", "", "22.24%"};
- { 3, 6696, "", "=q3=Nightstalker Bow", "=ds=#w2#", "", "25.12%"};
- };
- {
- Name = BabbleBoss["Charlga Razorflank"];
- { 1, 6693, "", "=q3=Agamaggan's Clutch", "=ds=#s13#", "", "32.15%"};
- { 2, 6692, "", "=q3=Pronged Reaver", "=ds=#h1#, #w1#", "", "15.43%"};
- { 3, 6694, "", "=q3=Heart of Agamaggan", "=ds=#w8#", "", "30.24%"};
- { 4, 17008, "", "=q1=Small Scroll", "=ds=#m2# (#m6#)"};
- { 5, 5793, "", "=q1=Razorflank's Heart", "=ds=#m3#", "", "100%"};
- { 6, 5792, "", "=q1=Razorflank's Medallion", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Earthcaller Halmgar"];
- { 1, 6688, "", "=q3=Whisperwind Headdress", "=ds=#s1#, #a2#", "", "43.75%"};
- { 2, 6689, "", "=q3=Wind Spirit Staff", "=ds=#w9#", "", "42.66%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 2264, "", "=q3=Mantle of Thieves", "=ds=#s3#, #a2#", "", "0.02%"};
- { 2, 1978, "", "=q3=Wolfclaw Gloves", "=ds=#s9#, #a2#", "", "0.02%"};
- { 3, 1488, "", "=q3=Avenger's Armor", "=ds=#s5#, #a3#", "", "0.01%"};
- { 4, 4438, "", "=q3=Pugilist Bracers", "=ds=#s8#, #a3#", "", "0.01%"};
- { 5, 2039, "", "=q3=Plains Ring", "=ds=#s13#", "", "0.02%"};
- { 6, 776, "", "=q3=Vendetta", "=ds=#h1#, #w4#", "", "0.01%"};
- { 7, 1727, "", "=q3=Sword of Decay", "=ds=#h1#, #w10#", "", "0.02%"};
- { 8, 1975, "", "=q3=Pysan's Old Greatsword", "=ds=#h2#, #w10#", "", "0.02%"};
- { 9, 1976, "", "=q3=Slaghammer", "=ds=#h2#, #w6#", "", "0.02%"};
- { 10, 2549, "", "=q3=Staff of the Shade", "=ds=#w9#", "", "0.02%"};
- };
- };
- -------------------------
- --- Scarlet Monastery ---
- -------------------------
-
- AtlasLoot_Data["Scarlet Monastery"] = {
- Name = BabbleZone["Scarlet Monastery"];
- Map = "SMArmory";
- {
- Name = "Armory";
- { 1, 7719, "", "=q3=Raging Berserker's Helm", "=ds=#s1#, #a3#", "", "30.62%"};
- { 2, 7718, "", "=q3=Herod's Shoulder", "=ds=#s3#, #a3#", "", "30.82%"};
- { 3, 10330, "", "=q3=Scarlet Leggings", "=ds=#s11#, #a3#", "", "12.75%"};
- { 4, 7717, "", "=q3=Ravager", "=ds=#h2#, #w1#", "", "12.86%"};
- { 6, 0, "INV_Box_01", "=q6=#n43#", ""};
- { 7, 23192, "", "=q2=Tabard of the Scarlet Crusade", "=ds=#s7#", "", "0.4%"};
- };
- {
- Name = BabbleZone["Cathedral"];
- { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["High Inquisitor Fairbanks"], ""};
- { 2, 19507, "", "=q3=Inquisitor's Shawl", "=ds=#s3#, #a1#", "", "15.94%"};
- { 3, 19508, "", "=q3=Branded Leather Bracers", "=ds=#s8#, #a2#", "", "16.17%"};
- { 4, 19509, "", "=q3=Dusty Mail Boots", "=ds=#s12#, #a3#", "", "17.24%"};
- { 6, 0, "INV_Box_01", "=q6="..BabbleBoss["Scarlet Commander Mograine"], ""};
- { 7, 7724, "", "=q3=Gauntlets of Divinity", "=ds=#s9#, #a3#", "", "17.49%"};
- { 8, 10330, "", "=q3=Scarlet Leggings", "=ds=#s11#, #a3#", "", "12.95%"};
- { 9, 7723, "", "=q3=Mograine's Might", "=ds=#h2#, #w6#", "", "17.13%"};
- { 10, 7726, "", "=q3=Aegis of the Scarlet Commander", "=ds=#w8#", "", "38.37%"};
- { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["High Inquisitor Whitemane"], ""};
- { 17, 7720, "", "=q3=Whitemane's Chapeau", "=ds=#s1#, #a1#", "", "34.01%"};
- { 18, 7722, "", "=q3=Triune Amulet", "=ds=#s2#", "", "33.23%"};
- { 19, 7721, "", "=q3=Hand of Righteousness", "=ds=#h3#, #w6#", "", "18.32%"};
- { 20, 20976, "", "=q2=Design: Citrine Pendant of Golden Healing", "=ds=#p12# (190)", "", "100%"};
- };
- {
- Name = BabbleZone["Graveyard"];
- { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Interrogator Vishas"], ""};
- { 2, 7683, "", "=q3=Bloody Brass Knuckles", "=ds=#h1#, #w13#", "", "66.1%"};
- { 3, 7682, "", "=q3=Torturing Poker", "=ds=#h1#, #w4#", "", "5.56%"};
- { 5, 0, "INV_Box_01", "=q6="..BabbleBoss["Bloodmage Thalnos"], ""};
- { 6, 7684, "", "=q3=Bloodmage Mantle", "=ds=#s3#, #a1#", "", "48.46%"};
- { 7, 7685, "", "=q3=Orb of the Forgotten Seer", "=ds=#s15#", "", "47.07%"};
- { 9, 0, "INV_Box_01", "=q6="..BabbleBoss["Ironspine"], ""};
- { 10, 7688, "", "=q3=Ironspine's Ribcage", "=ds=#s5#, #a3#", "", "32.91%"};
- { 11, 7686, "", "=q3=Ironspine's Eye", "=ds=#s13#", "", "40.08%"};
- { 12, 7687, "", "=q3=Ironspine's Fist", "=ds=#h1#, #w6#", "", "20.34%"};
- { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Azshir the Sleepless"], ""};
- { 17, 7709, "", "=q3=Blighted Leggings", "=ds=#s11#, #a1#", "", "31.19%"};
- { 18, 7731, "", "=q3=Ghostshard Talisman", "=ds=#s2#", "", "32.71%"};
- { 19, 7708, "", "=q3=Necrotic Wand", "=ds=#w12#", "", "30.72%"};
- { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Fallen Champion"], ""};
- { 22, 7691, "", "=q3=Embalmed Shroud", "=ds=#s1#, #a1#", "", "38.58%"};
- { 23, 7690, "", "=q3=Ebon Vise", "=ds=#s9#, #a2#", "", "37.83%"};
- { 24, 7689, "", "=q3=Morbid Dawn", "=ds=#h2#, #w10#", "", "19.15%"};
- };
- {
- Name = BabbleZone["Library"];
- { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Houndmaster Loksey"], ""};
- { 2, 7756, "", "=q3=Dog Training Gloves", "=ds=#s9#, #a2#", "", "53.66%"};
- { 3, 7710, "", "=q3=Loksey's Training Stick", "=ds=#w9#", "", "13.96%"};
- { 4, 3456, "", "=q3=Dog Whistle", "=ds=#e13#", "", "21.33%"};
- { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Arcanist Doan"], ""};
- { 17, 34227, "", "=q4=Deadman's Hand", "=ds=#s13#", "", ""};
- { 18, 7712, "", "=q3=Mantle of Doan", "=ds=#s3#, #a1#", "", "41.96%"};
- { 19, 7711, "", "=q3=Robe of Doan", "=ds=#s5#, #a1#", "", "42.86%"};
- { 20, 7714, "", "=q3=Hypnotic Blade", "=ds=#h3#, #w4#", "", "39.91%"};
- { 21, 7713, "", "=q3=Illusionary Rod", "=ds=#w9#", "", "38.44%"};
- { 23, 0, "INV_Box_01", "=q6=#x1#", ""};
- { 24, 7146, "", "=q2=The Scarlet Key", "=ds=#e9#"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 7728, "", "=q3=Beguiler Robes", "=ds=#s5#, #a1#", "", "0.01%"};
- { 2, 7755, "", "=q3=Flintrock Shoulders", "=ds=#s3#, #a2#", "", "0.00%"};
- { 3, 7727, "", "=q3=Watchman Pauldrons", "=ds=#s3#, #a2#", "", "0.01%"};
- { 4, 7760, "", "=q3=Warchief Kilt", "=ds=#s11#, #a2#", "", "0.00%"};
- { 5, 7754, "", "=q3=Harbinger Boots", "=ds=#s12#, #a2#", "", "0.01%"};
- { 6, 5819, "", "=q3=Sunblaze Coif", "=ds=#s1#, #a3#", "", "0.01%"};
- { 7, 7759, "", "=q3=Archon Chestpiece", "=ds=#s5#, #a3#", "", "0.00%"};
- { 8, 10328, "", "=q3=Scarlet Chestpiece", "=ds=#s5#, #a3#", "", "0.3%"};
- { 9, 10332, "", "=q3=Scarlet Boots", "=ds=#s12#, #a3#", "", "0.1%"};
- { 10, 2262, "", "=q3=Mark of Kern", "=ds=#s13#", "", "0.01%"};
- { 11, 1992, "", "=q3=Swampchill Fetish", "=ds=#s15#", "", "0.00%"};
- { 13, 10333, "", "=q2=Scarlet Wristguards", "=ds=#s8#, #a3#", "", "1.6%"};
- { 14, 10331, "", "=q2=Scarlet Gauntlets", "=ds=#s9#, #a3#", "", "1.7%"};
- { 15, 10329, "", "=q2=Scarlet Belt", "=ds=#s10#, #a3#", "", "1.6%"};
- { 16, 5756, "", "=q3=Sliverblade", "=ds=#h1#, #w4#", "", "0.01%"};
- { 17, 8225, "", "=q3=Tainted Pierce", "=ds=#h1#, #w10#", "", "0.01%"};
- { 18, 8226, "", "=q3=The Butcher", "=ds=#h1#, #w10#", "", "0.01%"};
- { 19, 7786, "", "=q3=Headsplitter", "=ds=#h1#, #w1#", "", "0.01%"};
- { 20, 7761, "", "=q3=Steelclaw Reaver", "=ds=#h1#, #w1#", "", "0.01%"};
- { 21, 7753, "", "=q3=Bloodspiller", "=ds=#h2#, #w1#", "", "0.01%"};
- { 22, 7752, "", "=q3=Dreamslayer", "=ds=#h1#, #w6#", "", "0.01%"};
- { 23, 7736, "", "=q3=Fight Club", "=ds=#h1#, #w6#", "", "0.00%"};
- { 24, 7730, "", "=q3=Cobalt Crusher", "=ds=#h2#, #w6#", "", "0.01%"};
- { 25, 7758, "", "=q3=Ruthless Shiv", "=ds=#w7#", "", "0.00%"};
- { 26, 7757, "", "=q3=Windweaver Staff", "=ds=#w9#", "", "0.01%"};
- { 27, 7787, "", "=q3=Resplendent Guardian", "=ds=#w8#", "", "0.01%"};
- { 28, 7729, "", "=q3=Chesterfall Musket", "=ds=#w5#", "", "0.01%"};
- };
- };
- -------------------
- --- Scholomance ---
- -------------------
-
- AtlasLoot_Data["Scholomance"] = {
- Name = BabbleZone["Scholomance"];
- Type = "ClassicDungeonExt";
- Loadfirst = 3;
- Map = "Scholomance";
- {
- Name = AL["Quest Item"];
- { 1, 13873, "", "=q1=Viewing Room Key", "=ds=#e9#"};
- { 3, 13471, "", "=q1=The Deed to Brill", "=ds=#m3#"};
- { 4, 13448, "", "=q1=The Deed to Caer Darrow", "=ds=#m3#"};
- { 5, 13450, "", "=q1=The Deed to Southshore", "=ds=#m3#"};
- { 6, 13451, "", "=q1=The Deed to Tarren Mill", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Blood Steward of Kirtonos"];
- { 1, 13523, "", "=q1=Blood of Innocents", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Kirtonos the Herald"];
- { 1, 13956, "", "=q3=Clutch of Andros", "=ds=#s10#, #a1#", "", "15.31%"};
- { 2, 13957, "", "=q3=Gargoyle Slashers", "=ds=#s9#, #a2#", "", "14.40%"};
- { 3, 13969, "", "=q3=Loomguard Armbraces", "=ds=#s8#, #a3#", "", "16.25%"};
- { 4, 13967, "", "=q3=Windreaver Greaves", "=ds=#s12#, #a3#", "", "14.87%"};
- { 5, 13955, "", "=q3=Stoneform Shoulders", "=ds=#s3#, #a4#", "", "14.73%"};
- { 6, 13960, "", "=q3=Heart of the Fiend", "=ds=#s2#", "", "16.36%"};
- { 7, 14024, "", "=q3=Frightalon", "=ds=#h1#, #w4#", "", "15.55%"};
- { 8, 13983, "", "=q3=Gravestone War Axe", "=ds=#h2#, #w1#", "", "12.78%"};
- { 16, 16734, "", "=q3=Boots of Valor", "=ds=#s12#, #a4# (D1, #c9#)", "", "11.12%"};
- };
- {
- Name = BabbleBoss["Jandice Barov"];
- { 1, 18689, "", "=q3=Phantasmal Cloak", "=ds=#s4#", "", "7.52%"};
- { 2, 14543, "", "=q3=Darkshade Gloves", "=ds=#s9#, #a1#", "", "0.26%"};
- { 3, 14545, "", "=q3=Ghostloom Leggings", "=ds=#s11#, #a2#", "", "8.81%"};
- { 4, 14548, "", "=q3=Royal Cap Spaulders", "=ds=#s3#, #a3#", "", "10.06%"};
- { 5, 18690, "", "=q3=Wraithplate Leggings", "=ds=#s11#, #a4#", "", "8.59%"};
- { 6, 14541, "", "=q3=Barovian Family Sword", "=ds=#h2#, #w10#", "", "8.27%"};
- { 7, 22394, "", "=q3=Staff of Metanoia", "=ds=#w9#", "", "8.67%"};
- { 9, 13725, "", "=q1=Krastinov's Bag of Horrors", "=ds=#m3#", "", "100%"};
- { 10, 13523, "", "=q1=Blood of Innocents", "=ds=#m3#", "", "17.8%"};
- { 16, 16701, "", "=q3=Dreadmist Mantle", "=ds=#s3#, #a1# (D1, #c8#)", "", "12.20%"};
- };
- {
- Name = BabbleBoss["Rattlegore"];
- { 1, 14538, "", "=q3=Deadwalker Mantle", "=ds=#s3#, #a1#", "", "11.32%"};
- { 2, 14539, "", "=q3=Bone Ring Helm", "=ds=#s1#, #a2#", "", "10.89%"};
- { 3, 18686, "", "=q3=Bone Golem Shoulders", "=ds=#s3#, #a3#", "", "9.04%"};
- { 4, 14537, "", "=q3=Corpselight Greaves", "=ds=#s12#, #a4#", "", "10.22%"};
- { 5, 14531, "", "=q3=Frightskull Shaft", "=ds=#h2#, #w6#", "", "9.55%"};
- { 6, 14528, "", "=q3=Rattlecage Buckler", "=ds=#w8#", "", "9.16%"};
- { 8, 13873, "", "=q1=Viewing Room Key", "=ds=#e9#", "", "100%"};
- { 16, 16711, "", "=q3=Shadowcraft Boots", "=ds=#s12#, #a2# (D1, #c6#)", "", "14.32%"};
- { 18, 18782, "", "=q3=Top Half of Advanced Armorsmithing: Volume II", "=ds=#m3#", "", "5.71%"};
- { 19, 12726, "", "=q3=Plans: Enchanted Thorium Leggings", "=q1=#m4#: =ds=#p2# (300)"};
- };
- {
- Name = BabbleBoss["Death Knight Darkreaver"];
- { 1, 18760, "", "=q3=Necromantic Band", "=ds=#s13#", "", "24.75%"};
- { 2, 18758, "", "=q3=Specter's Blade", "=ds=#h1#, #w4#", "", "15.72%"};
- { 3, 18759, "", "=q3=Malicious Axe", "=ds=#h2#, #w1#", "", "24.75%"};
- { 4, 18761, "", "=q3=Oblivion's Touch", "=ds=#w12#", "", "17.17%"};
- { 6, 18749, "", "=q1=Charger's Lost Soul", "=ds=#m3#", "", "10.93%"};
- };
- {
- Name = BabbleBoss["Vectus"];
- { 1, 14577, "", "=q3=Skullsmoke Pants", "=ds=#s11#, #a1#", "", "5.24%"};
- { 2, 18691, "", "=q3=Dark Advisor's Pendant", "=ds=#s2#", "", "6.16%"};
- };
- {
- Name = BabbleBoss["Marduk Blackpool"];
- { 1, 18692, "", "=q3=Death Knight Sabatons", "=ds=#s12#, #a4#", "", "6.29%"};
- { 2, 14576, "", "=q3=Ebon Hilt of Marduk", "=ds=#h1#, #w10#", "", "6.55%"};
- };
- {
- Name = BabbleBoss["Ras Frostwhisper"];
- { 1, 13314, "", "=q4=Alanna's Embrace", "=ds=#s5#, #a1#", "", "1.07%"};
- { 3, 14340, "", "=q3=Freezing Lich Robes", "=ds=#s5#, #a1#", "", "12.55%"};
- { 4, 18693, "", "=q3=Shivery Handwraps", "=ds=#s9#, #a1#", "", "12.38%"};
- { 5, 14503, "", "=q3=Death's Clutch", "=ds=#s3#, #a2#", "", "11.73%"};
- { 6, 14502, "", "=q3=Frostbite Girdle", "=ds=#s10#, #a2#", "", "11.20%"};
- { 7, 18694, "", "=q3=Shadowy Mail Greaves", "=ds=#s12#, #a3#", "", "14.63%"};
- { 8, 14522, "", "=q3=Maelstrom Leggings", "=ds=#s11#, #a3#", "", "13.01%"};
- { 9, 14525, "", "=q3=Boneclenched Gauntlets", "=ds=#s9#, #a4#", "", "11.45%"};
- { 10, 18695, "", "=q3=Spellbound Tome", "=ds=#s15#", "", "10.86%"};
- { 11, 13952, "", "=q3=Iceblade Hacker", "=ds=#h1#, #w1#", "", "9.74%"};
- { 12, 14487, "", "=q3=Bonechill Hammer", "=ds=#h1#, #w6#", "", "11.92%"};
- { 13, 18696, "", "=q3=Intricately Runed Shield", "=ds=#w8#", "", "13.04%"};
- { 16, 16689, "", "=q3=Magister's Mantle", "=ds=#s3#, #a1# (D1, #c3#)", "", "11.93%"};
- { 18, 13521, "", "=q2=Recipe: Flask of Supreme Power", "=ds=#p1# (300)", "", "2.92%"};
- { 20, 13626, "", "=q1=Human Head of Ras Frostwhisper", "=ds=#m3#", "", "100%"};
- { 21, 13986, "", "=q3=Crown of Caer Darrow", "=q1=#m4#: =ds=#s1#, #a1#"};
- { 22, 13984, "", "=q3=Darrowspike", "=q1=#m4#: =ds=#h1#, #w4#"};
- { 23, 13982, "", "=q3=Warblade of Caer Darrow", "=q1=#m4#: =ds=#h2#, #w10#"};
- { 24, 14002, "", "=q3=Darrowshire Strongguard", "=q1=#m4#: =ds=#w8#"};
- { 26, 0, "INV_Box_01", "=q6=#x12#", ""};
- { 27, 12736, "", "=q1=Frostwhisper's Embalming Fluid", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Kormok"];
- { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n22#"};
- { 2, 22303, "", "=q3=Ironweave Pants", "=ds=#s11#, #a1#", "", "23.33%"};
- { 3, 22326, "", "=q3=Amalgam's Band", "=ds=#s13#", "", "16.67%"};
- { 4, 22331, "", "=q3=Band of the Steadfast Hero", "=ds=#s13#", "", "15.42%"};
- { 5, 22332, "", "=q3=Blade of Necromancy", "=ds=#h1#, #w10#", "", "25.42%"};
- { 6, 22333, "", "=q3=Hammer of Divine Might", "=ds=#h2#, #w6#", "", "12.50%"};
- { 8, 21984, "", "=q1=Left Piece of Lord Valthalak's Amulet", "=ds=#m3#"};
- { 9, 22046, "", "=q1=Right Piece of Lord Valthalak's Amulet", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Instructor Malicia"];
- { 1, 16710, "", "=q3=Shadowcraft Bracers", "=ds=#s8#, #a2# (D1, #c6#)", "", "3.51%"};
- { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "1.81%"};
- { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "1.12%"};
- { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "1.27%"};
- { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "1.03%"};
- { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "0.88%"};
- { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "0.85%"};
- { 9, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "1.51%"};
- { 10, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "0.82%"};
- { 11, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "0.60%"};
- { 12, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "1.09%"};
- { 13, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "1.00%"};
- { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "0.67%"};
- { 15, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.54%"};
- { 16, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.09%"};
- { 17, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.60%"};
- { 18, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.42%"};
- { 19, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.36%"};
- { 20, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "0.45%"};
- { 21, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "0.45%"};
- { 22, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "0.67%"};
- { 23, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "1.12%"};
- { 24, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "0.57%"};
- { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%"};
- { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#"};
- { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%"};
- { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "1.39%"};
- { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "0.91%"};
- };
- {
- Name = BabbleBoss["Doctor Theolen Krastinov"];
- { 1, 16684, "", "=q3=Magister's Gloves", "=ds=#s9#, #a1# (D1, #c3#)", "", "9.75%"};
- { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "2.81%"};
- { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "1.91%"};
- { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "2.37%"};
- { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "1.82%"};
- { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "2.42%"};
- { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "2.16%"};
- { 9, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "3.14%"};
- { 10, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "2.08%"};
- { 11, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "1.93%"};
- { 12, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "1.43%"};
- { 13, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "1.82%"};
- { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "1.91%"};
- { 15, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.87%"};
- { 16, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.53%"};
- { 17, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.78%"};
- { 18, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.42%"};
- { 19, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.79%"};
- { 20, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "1.61%"};
- { 21, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "1.32%"};
- { 22, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "1.52%"};
- { 23, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "1.64%"};
- { 24, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "1.75%"};
- { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%"};
- { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#"};
- { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%"};
- { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "2.54%"};
- { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "3.21%"};
- { 30, 13523, "", "=q1=Blood of Innocents", "=ds=#m3#", "", "25.7%"};
- };
- {
- Name = BabbleBoss["Lorekeeper Polkelt"];
- { 1, 16705, "", "=q3=Dreadmist Wraps", "=ds=#s9#, #a1# (D1, #c8#)", "", "14.54%"};
- { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "0.53%"};
- { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "0.67%"};
- { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "0.55%"};
- { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "0.47%"};
- { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "0.57%"};
- { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "0.89%"};
- { 9, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "0.57%"};
- { 10, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "0.65%"};
- { 11, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "0.79%"};
- { 12, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "0.83%"};
- { 13, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "0.63%"};
- { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "0.47%"};
- { 15, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.26%"};
- { 16, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.14%"};
- { 17, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.45%"};
- { 18, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.18%"};
- { 19, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.30%"};
- { 20, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "0.49%"};
- { 21, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "0.32%"};
- { 22, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "0.30%"};
- { 23, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "0.30%"};
- { 24, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "0.41%"};
- { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%"};
- { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#"};
- { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%"};
- { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "0.67%"};
- { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "0.49%"};
- };
- {
- Name = BabbleBoss["The Ravenian"];
- { 1, 16716, "", "=q3=Wildheart Belt", "=ds=#s10#, #a2# (D1, #c1#)", "", "2.60%"};
- { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "1.32%"};
- { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "0.76%"};
- { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "1.04%"};
- { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "0.89%"};
- { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "1.32%"};
- { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "1.41%"};
- { 9, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "0.95%"};
- { 10, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "1.52%"};
- { 11, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "0.82%"};
- { 12, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "1.02%"};
- { 13, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "0.95%"};
- { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "0.93%"};
- { 15, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.20%"};
- { 16, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.33%"};
- { 17, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.11%"};
- { 18, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.09%"};
- { 19, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.04%"};
- { 20, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "1.06%"};
- { 21, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "0.91%"};
- { 22, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "0.69%"};
- { 23, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "1.15%"};
- { 24, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "0.89%"};
- { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%"};
- { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#"};
- { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%"};
- { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "1.52%"};
- { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "1.74%"};
- };
- {
- Name = BabbleBoss["Lord Alexei Barov"];
- { 1, 16722, "", "=q3=Lightforge Bracers", "=ds=#s8#, #a4# (D1, #c4#)", "", "3.37%"};
- { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "4.94%"};
- { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "3.39%"};
- { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "5.30%"};
- { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "4.05%"};
- { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "2.86%"};
- { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "2.38%"};
- { 9, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "4.79%"};
- { 10, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "4.55%"};
- { 11, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "2.08%"};
- { 12, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "2.35%"};
- { 13, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "2.83%"};
- { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "2.38%"};
- { 15, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "1.01%"};
- { 16, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.83%"};
- { 17, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.62%"};
- { 18, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "1.13%"};
- { 19, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "1.43%"};
- { 20, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "1.49%"};
- { 21, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "1.73%"};
- { 22, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "1.61%"};
- { 23, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "2.65%"};
- { 24, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "2.20%"};
- { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%"};
- { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#"};
- { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%"};
- { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "4.67%"};
- { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "4.70%"};
- };
- {
- Name = BabbleBoss["Lady Illucia Barov"];
- { 1, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "1.20%"};
- { 2, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "1.07%"};
- { 3, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "1.30%"};
- { 4, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "1.17%"};
- { 5, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "0.94%"};
- { 6, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "0.78%"};
- { 7, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "1.61%"};
- { 8, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "0.94%"};
- { 9, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "1.15%"};
- { 10, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "1.12%"};
- { 11, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "0.94%"};
- { 12, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "0.70%"};
- { 13, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.44%"};
- { 14, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.34%"};
- { 15, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.49%"};
- { 16, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.42%"};
- { 17, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.44%"};
- { 18, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "0.75%"};
- { 19, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "0.70%"};
- { 20, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "0.60%"};
- { 21, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "0.81%"};
- { 22, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "0.83%"};
- { 23, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%"};
- { 24, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#"};
- { 25, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%"};
- { 26, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "1.35%"};
- { 27, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "1.17%"};
- };
- {
- Name = BabbleBoss["Darkmaster Gandling"];
- { 1, 13937, "", "=q4=Headmaster's Charge", "=ds=#w9#", "", "1.11%"};
- { 2, 14514, "", "=q4=Pattern: Robe of the Void", "=ds=#p8# (300) =q1=#m1# =ds=#c8#", "", "6.71%"};
- { 3, 14153, "", "=q4=Robe of the Void", "=ds=#s5#, #a1# =q1=#m1# =ds=#c8#"};
- { 4, 13944, "", "=q3=Tombstone Breastplate", "=ds=#s5#, #a2#", "", "8.96%"};
- { 5, 13398, "", "=q3=Boots of the Shrieker", "=ds=#s12#, #a2#", "", "10.75%"};
- { 7, 13950, "", "=q3=Detention Strap", "=ds=#s10#, #a3#", "", "0.24%"};
- { 8, 13951, "", "=q3=Vigorsteel Vambraces", "=ds=#s8#, #a4#", "", "10.38%"};
- { 9, 22433, "", "=q3=Don Mauricio's Band of Domination", "=ds=#s13#", "", "7.72%"};
- { 10, 13964, "", "=q3=Witchblade", "=ds=#h3#, #w4#", "", "9.82%"};
- { 11, 13953, "", "=q3=Silent Fang", "=ds=#h1#, #w10#", "", "9.68%"};
- { 12, 13938, "", "=q3=Bonecreeper Stylus", "=ds=#w12#", "", "8.80% "};
- { 16, 16698, "", "=q3=Dreadmist Mask", "=ds=#s1#, #a1# (D1, #c8#)", "", "8.78%"};
- { 17, 16686, "", "=q3=Magister's Crown", "=ds=#s1#, #a1# (D1, #c3#)", "", "8.60%"};
- { 18, 16693, "", "=q3=Devout Crown", "=ds=#s1#, #a1# (D1, #c5#)", "", "7.89%"};
- { 19, 16707, "", "=q3=Shadowcraft Cap", "=ds=#s1#, #a2# (D1, #c6#)", "", "6.65%"};
- { 20, 16720, "", "=q3=Wildheart Cowl", "=ds=#s1#, #a2# (D1, #c1#)", "", "7.09%"};
- { 21, 16677, "", "=q3=Beaststalker's Cap", "=ds=#s1#, #a3# (D1, #c2#)", "", "7.00%"};
- { 22, 16667, "", "=q3=Coif of Elements", "=ds=#s1#, #a3# (D1, #c7#)", "", "2.86%"};
- { 23, 16731, "", "=q3=Helm of Valor", "=ds=#s1#, #a4# (D1, #c9#)", "", "6.54%"};
- { 24, 16727, "", "=q3=Lightforge Helm", "=ds=#s1#, #a4# (D1, #c4#)", "", "5.32%"};
- { 26, 19276, "", "=q3=Ace of Portals", "=ds=#e16#", "", "2.20%"};
- { 28, 13501, "", "=q2=Recipe: Major Mana Potion", "=ds=#p1# (295)", "", "8.64%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 18697, "", "=q3=Coldstone Slippers", "=ds=#s12#, #a1#", "", "0.01%"};
- { 2, 18698, "", "=q3=Tattered Leather Hood", "=ds=#s1#, #a2#", "", "0.01%"};
- { 3, 18699, "", "=q3=Icy Tomb Spaulders", "=ds=#s3#, #a2#", "", "0.01%"};
- { 4, 18700, "", "=q3=Malefic Bracers", "=ds=#s8#, #a2#", "", "0.01%"};
- { 5, 14536, "", "=q3=Bonebrace Hauberk", "=ds=#s5#, #a3#", "", "0.01%"};
- { 6, 18702, "", "=q3=Belt of the Ordained", "=ds=#s10#, #a4#", "", "0.01%"};
- { 7, 18701, "", "=q3=Innervating Band", "=ds=#s13#", "", "0.01%"};
- { 9, 16254, "", "=q3=Formula: Enchant Weapon - Lifestealing", "=ds=#p4# (300) =q1=#n66#", "", "0.93%"};
- { 10, 16255, "", "=q2=Formula: Enchant 2H Weapon - Major Spirit", "=ds=#p4# (300) =q1=#n67#", "", "0.88%"};
- { 11, 15773, "", "=q2=Pattern: Wicked Leather Armor", "=ds=#p7# (300) =q1=#n66#", "", "3.03%"};
- { 12, 15776, "", "=q2=Pattern: Runic Leather Armor", "=ds=#p7# (300) =q1=#n68#", "", "1.62%"};
- { 14, 12753, "", "=q2=Skin of Shadow", "=ds=#m3#"};
- { 15, 13920, "", "=q1=Healthy Dragon Scale", "=ds=#m2#"};
- { 16, 16705, "", "=q3=Dreadmist Wraps", "=ds=#s9#, #a1# (D1)", "", "0.03%"};
- { 17, 16684, "", "=q3=Magister's Gloves", "=ds=#s9#, #a1# (D1)", "", "1.27%"};
- { 18, 16685, "", "=q3=Magister's Belt", "=ds=#s8#, #a1# (D1)", "", "0.22%"};
- { 19, 16710, "", "=q3=Shadowcraft Bracers", "=ds=#s8#, #a2# (D1)", "", "1.53%"};
- { 20, 16716, "", "=q3=Wildheart Belt", "=ds=#s8#, #a2# (D1)", "", "1.84%"};
- { 21, 16722, "", "=q3=Lightforge Bracers", "=ds=#s8#, #a4# (D1)", "", "2.72%"};
- };
- };
- -----------------------
- --- Shadowfang Keep ---
- -----------------------
-
- AtlasLoot_Data["ShadowfangKeep"] = {
- Name = BabbleZone["Shadowfang Keep"];
- Map = "ShadowfangKeep";
- {
- Name = BabbleBoss["Deathsworn Captain"];
- { 1, 6642, "", "=q3=Phantom Armor", "=ds=#s5#, #a3#", "", "30.49%"};
- { 2, 6641, "", "=q3=Haunting Blade", "=ds=#h2#, #w10#", "", "58.60%"};
- };
- {
- Name = AL["Rethilgore"];
- { 1, 5254, "", "=q3=Rugged Spaulders", "=ds=#s3#, #a2#", "", "84.73%"};
- };
- {
- Name = AL["Felsteed"];
- { 1, 6341, "", "=q3=Eerie Stable Lantern", "=ds=#s15#", "", "5.48%"};
- { 2, 932, "", "=q1=Fel Steed Saddlebags", "=ds=#m12# #e1#", "", "16.46%"};
- };
- {
- Name = BabbleBoss["Razorclaw the Butcher"];
- { 1, 6226, "", "=q3=Bloody Apron", "=ds=#s5#, #a1#", "", "39.47%"};
- { 2, 6633, "", "=q3=Butcher's Slicer", "=ds=#h1#, #w10#", "", "39.53%"};
- { 3, 1292, "", "=q3=Butcher's Cleaver", "=ds=#h1#, #w1#", "", "8.70%"};
- };
- {
- Name = BabbleBoss["Baron Silverlaine"];
- { 1, 6321, "", "=q3=Silverlaine's Family Seal", "=ds=#s13#", "", "18.91%"};
- { 2, 6323, "", "=q3=Baron's Scepter", "=ds=#h1#, #w6#", "", "37.93%"};
- };
- {
- Name = BabbleBoss["Commander Springvale"];
- { 1, 3191, "", "=q3=Arced War Axe", "=ds=#h2#, #w1#", "", "31.73%"};
- { 2, 6320, "", "=q3=Commander's Crest", "=ds=#w8#", "", "27.71%"};
- };
- {
- Name = BabbleBoss["Odo the Blindwatcher"];
- { 1, 6319, "", "=q3=Girdle of the Blindwatcher", "=ds=#s10#, #a2#", "", "57.15%"};
- { 2, 6318, "", "=q3=Odo's Ley Staff", "=ds=#w9#", "", "29.97%"};
- };
- {
- Name = BabbleBoss["Fenrus the Devourer"];
- { 1, 6340, "", "=q3=Fenrus' Hide", "=ds=#s4#", "", "58.02%"};
- { 2, 3230, "", "=q3=Black Wolf Bracers", "=ds=#s8#, #a2#", "", "14.76%"};
- };
- {
- Name = BabbleBoss["Arugal's Voidwalker"];
- { 1, 5943, "", "=q3=Rift Bracers", "=ds=#s8#, #a3#", "", "3%"};
- };
- {
- Name = BabbleBoss["Wolf Master Nandos"];
- { 1, 6314, "", "=q3=Wolfmaster Cape", "=ds=#s4#", "", "33.25%"};
- { 2, 3748, "", "=q3=Feline Mantle", "=ds=#s3#, #a1#", "", "48.55%"};
- };
- {
- Name = BabbleBoss["Archmage Arugal"];
- { 1, 6324, "", "=q3=Robes of Arugal", "=ds=#s5#, #a1#", "", "30.50%"};
- { 2, 6392, "", "=q3=Belt of Arugal", "=ds=#s10#, #a1#", "", "30.51%"};
- { 3, 6220, "", "=q3=Meteor Shard", "=ds=#h1#, #w4#", "", "15.78%"};
- { 4, 24224, "", "=q1=Crate of Bloodforged Ingots", "=ds=#m3#"};
- { 5, 6895, "", "=q1=Jordan's Smithing Hammer", "=ds=#m3#"};
- { 6, 6283, "", "=q1=The Book of Ur", "=ds=#m3#"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 2292, "", "=q3=Necrology Robes", "=ds=#s5#, #a1#", "", "0.01%"};
- { 2, 1974, "", "=q3=Mindthrust Bracers", "=ds=#s8#, #a1#", "", "0.02%"};
- { 3, 1489, "", "=q3=Gloomshroud Armor", "=ds=#s5#, #a2#", "", "0.01%"};
- { 4, 1935, "", "=q3=Assassin's Blade", "=ds=#h1#, #w4#", "", "0.01%"};
- { 5, 1482, "", "=q3=Shadowfang", "=ds=#h1#, #w10#", "", "0.01%"};
- { 6, 2205, "", "=q3=Duskbringer", "=ds=#h2#, #w10#", "", "0.01%"};
- { 7, 2807, "", "=q3=Guillotine Axe", "=ds=#h1#, #w1#", "", "0.01%"};
- { 8, 1318, "", "=q3=Night Reaver", "=ds=#h2#, #w1#", "", "0.01%"};
- { 9, 1483, "", "=q3=Face Smasher", "=ds=#h1#, #w6#", "", "0.02%"};
- { 10, 3194, "", "=q3=Black Malice", "=ds=#h2#, #w6#", "", "0.02%"};
- { 11, 1484, "", "=q3=Witching Stave", "=ds=#w9#", "", "0.01%"};
- };
- };
-
- ------------------
- --- Stratholme ---
- ------------------
-
- AtlasLoot_Data["Stratholme"] = {
- Name = BabbleZone["Stratholme"];
- Type = "ClassicDungeonExt";
- Map = "Stratholme";
- {
- Name = BabbleBoss["Skul"];
- { 1, 13395, "", "=q3=Skul's Fingerbone Claws", "=ds=#s9#, #a2#", "", "36.52%"};
- { 2, 13394, "", "=q3=Skul's Cold Embrace", "=ds=#s5#, #a4#", "", "24.16%"};
- { 3, 13396, "", "=q3=Skul's Ghastly Touch", "=ds=#w12#", "", "16.85%"};
- };
- {
- Name = "Mailbox Keys";
- { 1, 13304, "", "=q1=Festival Lane Postbox Key", "=ds=#e9#", "", "45.19%"};
- { 2, 13303, "", "=q1=Crusaders' Square Postbox Key", "=ds=#e9#", "", "43.46%"};
- { 3, 13307, "", "=q1=Fras Siabi's Postbox Key", "=ds=#e9#", "", "42.88%"};
- { 4, 13305, "", "=q1=Elders' Square Postbox Key", "=ds=#e9#", "", "36.87%"};
- { 5, 13302, "", "=q1=Market Row Postbox Key", "=ds=#e9#", "", "35.58%"};
- { 6, 13306, "", "=q1=King's Square Postbox Key", "=ds=#e9#", "", "37.69%"};
- };
- {
- Name = BabbleBoss["Fras Siabi"];
- { 1, 13172, "", "=q1=Siabi's Premium Tobacco", "=ds=#m3#", "", "100%"};
- { 2, 13171, "", "=q2=Smokey's Lighter", "=q1=#m4#: =ds=#s14#"};
- };
- {
- Name = "Atiesh ";
- { 1, 22736, "", "=q5=Andonisus, Reaper of Souls", "=q1=#m26#: =ds=#h3#, #w10#", "", "100%"};
- };
- {
- Name = BabbleBoss["Hearthsinger Forresten"];
- { 1, 13378, "", "=q3=Songbird Blouse", "=ds=#s5#, #a2#", "", "15.31%"};
- { 2, 13383, "", "=q3=Woollies of the Prancing Minstrel", "=ds=#s11#, #a3#", "", "18.42%"};
- { 3, 13384, "", "=q3=Rainbow Girdle", "=ds=#s10#, #a4#", "", "19.21%"};
- { 4, 13379, "", "=q3=Piccolo of the Flaming Fire", "=ds=#s14#", "", "15.13%"};
- { 16, 16682, "", "=q3=Magister's Boots", "=ds=#s12#, #a1# (D1, #c3#)", "", "10.86%"};
- };
- {
- Name = BabbleBoss["The Unforgiven"];
- { 1, 13409, "", "=q3=Tearfall Bracers", "=ds=#s8#, #a1#", "", "14.62%"};
- { 2, 13404, "", "=q3=Mask of the Unforgiven", "=ds=#s1#, #a2#", "", "14.96%"};
- { 3, 13405, "", "=q3=Wailing Nightbane Pauldrons", "=ds=#s3#, #a4#", "", "12.10%"};
- { 4, 13408, "", "=q3=Soul Breaker", "=ds=#h1#, #w1#", "", "19.33%"};
- { 16, 16717, "", "=q3=Wildheart Gloves", "=ds=#s9#, #a2# (D1, #c1#)", "", "12.61%"};
- };
- {
- Name = BabbleBoss["Timmy the Cruel"];
- { 1, 13403, "", "=q3=Grimgore Noose", "=ds=#s10#, #a1#", "", "16.48%"};
- { 2, 13402, "", "=q3=Timmy's Galoshes", "=ds=#s12#, #a3#", "", "16.74%"};
- { 3, 13400, "", "=q3=Vambraces of the Sadist", "=ds=#s8#, #a4#", "", "14.02%"};
- { 4, 13401, "", "=q3=The Cruel Hand of Timmy", "=ds=#h1#, #w6#", "", "16.87%"};
- { 16, 16724, "", "=q3=Lightforge Gauntlets", "=ds=#s9#, #a4# (D1, #c4#)", "", "10.42%"};
- };
- {
- Name = AL["Malor's Strongbox"];
- { 1, 0, "INV_Box_01", "=q6=#x13#", ""};
- { 2, 12845, "", "=q1=Medallion of Faith", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Crimson Hammersmith"].." ("..AL["Summon"]..")";
- { 1, 18781, "", "=q3=Bottom Half of Advanced Armorsmithing: Volume II", "=ds=#m3#", "", "41.6%"};
- { 2, 12726, "", "=q3=Plans: Enchanted Thorium Leggings", "=q1=#m4#: =ds=#p2# (300)"};
- { 4, 13351, "", "=q1=Crimson Hammersmith's Apron", "=ds=#m3#", "", "100%"};
- { 5, 12824, "", "=q2=Plans: Enchanted Battlehammer", "=q1=#m4#: =ds=#p2# (280)"};
- };
- {
- Name = "Plans: Serenity";
- { 1, 12827, "", "=q2=Plans: Serenity", "=ds=#p2# (285)", "", "100%"};
- };
- {
- Name = BabbleBoss["Cannon Master Willey"];
- { 1, 22405, "", "=q3=Mantle of the Scarlet Crusade", "=ds=#s3#, #a1#", "", "16.03%"};
- { 2, 22407, "", "=q3=Helm of the New Moon", "=ds=#s1#, #a2#", "", "13.61%"};
- { 3, 18721, "", "=q3=Barrage Girdle", "=ds=#s10#, #a3#", "", "12.39%"};
- { 4, 13381, "", "=q3=Master Cannoneer Boots", "=ds=#s12#, #a4#", "", "12.86%"};
- { 5, 22403, "", "=q3=Diana's Pearl Necklace", "=ds=#s2#", "", "14.27%"};
- { 6, 13382, "", "=q3=Cannonball Runner", "=ds=#s14#", "", "12.28%"};
- { 7, 22404, "", "=q3=Willey's Back Scratcher", "=ds=#h3#, #w13#", "", "6.26%"};
- { 8, 22406, "", "=q3=Redemption", "=ds=#w9#", "", "7.04%"};
- { 9, 13380, "", "=q3=Willey's Portable Howitzer", "=ds=#w5#", "", "10.71%"};
- { 10, 13377, "", "=q3=Miniature Cannon Balls", "=ds=#w18#", "", "66.61%"};
- { 16, 16708, "", "=q3=Shadowcraft Spaulders", "=ds=#s3#, #a2# (D1, #c6#)", "", "10.68%"};
- { 18, 12839, "", "=q3=Plans: Heartseeker", "=ds=#p2# (300)", "", "4.98%"};
- { 19, 12783, "", "=q3=Heartseeker", "=ds=#h1#, #w4#"};
- };
- {
- Name = BabbleBoss["Archivist Galford"];
- { 1, 13386, "", "=q3=Archivist Cape", "=ds=#s4#", "", "18.45%"};
- { 2, 18716, "", "=q3=Ash Covered Boots", "=ds=#s12#, #a2#", "", "16.30%"};
- { 3, 13387, "", "=q3=Foresight Girdle", "=ds=#s10#, #a3#", "", "18.24%"};
- { 4, 13385, "", "=q3=Tome of Knowledge", "=ds=#s15#", "", "9.87%"};
- { 5, 22897, "", "=q3=Tome of Conjure Food VII", "=ds=#e10# =q1=#m1# =ds=#c3#", "", "4.86%"};
- { 7, 12811, "", "=q2=Righteous Orb", "=ds=#e8#", "", "61.3%"};
- { 9, 0, "INV_Box_01", "=q6=#x11#", ""};
- { 10, 14679, "", "=q1=Of Love and Family", "=ds=#m3#"};
- { 16, 16692, "", "=q3=Devout Gloves", "=ds=#s9#, #a1# (D1, #c5#)", "", "12.46%"};
- };
- {
- Name = BabbleBoss["Balnazzar"];
- { 1, 13353, "", "=q4=Book of the Dead", "=ds=#s15#", "", "1.37%"};
- { 2, 14512, "", "=q4=Pattern: Truefaith Vestments", "=ds=#p8# (300)", "", "3.02%"};
- { 3, 14154, "", "=q4=Truefaith Vestments", "=ds=#s5#, #a1# =q1=#m1# =ds=#c5#"};
- { 5, 18720, "", "=q3=Shroud of the Nathrezim", "=ds=#s3#, #a1#", "", "10.54%"};
- { 6, 13369, "", "=q3=Fire Striders", "=ds=#s12#, #a1#", "", "14.84%"};
- { 7, 13358, "", "=q3=Wyrmtongue Shoulders", "=ds=#s3#, #a2#", "", "11.58%"};
- { 8, 13359, "", "=q3=Crown of Tyranny", "=ds=#s1#, #a3#", "", "13.94%"};
- { 9, 18718, "", "=q3=Grand Crusader's Helm", "=ds=#s1#, #a4#", "", "10.16%"};
- { 10, 12103, "", "=q3=Star of Mystaria", "=ds=#s2#", "", "12.48%"};
- { 11, 13360, "", "=q3=Gift of the Elven Magi", "=ds=#h1#, #w4#", "", "13.66%"};
- { 12, 13348, "", "=q3=Demonshear", "=ds=#h2#, #w10#", "", "13.94%"};
- { 13, 18717, "", "=q3=Hammer of the Grand Crusader", "=ds=#h2#, #w6#", "", "11.91%"};
- { 16, 16725, "", "=q3=Lightforge Boots", "=ds=#s12#, #a4# (D1, #c4#)", "", "11.11%"};
- { 18, 13520, "", "=q2=Recipe: Flask of Distilled Wisdom", "=ds=#p1# (300)", "", "1.94%"};
- { 20, 13250, "", "=q1=Head of Balnazzar", "=ds=#m2#"};
- };
- {
- Name = AL["Sothos and Jarien"];
- { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n18#"};
- { 2, 22301, "", "=q3=Ironweave Robe", "=ds=#s5#, #a1#", "", "19.00%"};
- { 3, 22328, "", "=q3=Legplates of Vigilance", "=ds=#s11#, #a4#", "", "21.27%"};
- { 4, 22327, "", "=q3=Amulet of the Redeemed", "=ds=#s2#", "", "14.03%"};
- { 5, 22334, "", "=q3=Band of Mending", "=ds=#s13#", "", "17.19%"};
- { 6, 22329, "", "=q3=Scepter of Interminable Focus", "=ds=#s15#", "", "28.51%"};
- { 8, 21984, "", "=q1=Left Piece of Lord Valthalak's Amulet", "=ds=#m3#"};
- { 9, 22046, "", "=q1=Right Piece of Lord Valthalak's Amulet", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Stonespine"];
- { 1, 13397, "", "=q3=Stoneskin Gargoyle Cape", "=ds=#s4#", "", "23.44%"};
- { 2, 13954, "", "=q3=Verdant Footpads", "=ds=#s12#, #a2#", "", "25.36%"};
- { 3, 13399, "", "=q3=Gargoyle Shredder Talons", "=ds=#h4#, #w13#", "", "26.16%"};
- };
- {
- Name = BabbleBoss["Baroness Anastari"];
- { 1, 18730, "", "=q3=Shadowy Laced Handwraps", "=ds=#s9#, #a1#", "", "13.54%"};
- { 2, 18728, "", "=q3=Anastari Heirloom", "=ds=#s2#", "", "11.92%"};
- { 3, 13534, "", "=q3=Banshee Finger", "=ds=#w12#", "", "13.42%"};
- { 4, 18729, "", "=q3=Screeching Bow", "=ds=#w2#", "", "15.59%"};
- { 6, 13535, "", "=q2=Coldtouch Phantom Wraps", "=ds=#s5#, #a1#", "", "9.84%"};
- { 7, 13537, "", "=q2=Chillhide Bracers", "=ds=#s8#, #a2#", "", "9.71%"};
- { 8, 13538, "", "=q2=Windshrieker Pauldrons", "=ds=#s3#, #a3#", "", "9.75%"};
- { 9, 13539, "", "=q2=Banshee's Touch", "=ds=#s9#, #a4#", "", "8.27%"};
- { 10, 13514, "", "=q2=Wail of the Banshee", "=ds=#m8#", "", "7.73%"};
- { 16, 16704, "", "=q3=Dreadmist Sandals", "=ds=#s12#, #a1# (D1, #c8#)", "", "13.16%"};
- };
- {
- Name = BabbleBoss["Black Guard Swordsmith"].." ("..AL["Summon"]..")";
- { 1, 18783, "", "=q3=Bottom Half of Advanced Armorsmithing: Volume III", "=ds=#m3#", "", "23.5%"};
- { 2, 12725, "", "=q3=Plans: Enchanted Thorium Helm", "=q1=#m4#: =ds=#p2# (300)"};
- { 4, 13350, "", "=q1=Insignia of the Black Guard", "=ds=#m3#", "", "100%"};
- { 5, 12825, "", "=q2=Plans: Blazing Rapier", "=q1=#m4#: =ds=#p2# (280)"};
- };
- {
- Name = "Plans: Corruption";
- { 1, 12830, "", "=q1=Plans: Corruption", "=ds=#p2# (290)", "", "100%"};
- };
- {
- Name = BabbleBoss["Nerub'enkan"];
- { 1, 18740, "", "=q3=Thuzadin Sash", "=ds=#s10#, #a1#", "", "14.72%"};
- { 2, 18739, "", "=q3=Chitinous Plate Legguards", "=ds=#s11#, #a4#", "", "12.19%"};
- { 3, 13529, "", "=q3=Husk of Nerub'enkan", "=ds=#w8#", "", "12.62%"};
- { 4, 18738, "", "=q3=Carapace Spine Crossbow", "=ds=#w3#", "", "14.17%"};
- { 6, 13530, "", "=q2=Fangdrip Runners", "=ds=#s12#, #a1#", "", "8.49%"};
- { 7, 13531, "", "=q2=Crypt Stalker Leggings", "=ds=#s11#, #a2#", "", "10.17%"};
- { 8, 13532, "", "=q2=Darkspinner Claws", "=ds=#s9#, #a3#", "", "9.69%"};
- { 9, 13533, "", "=q2=Acid-etched Pauldrons", "=ds=#s3#, #a4#", "", "8.11%"};
- { 10, 13508, "", "=q2=Eye of Arachnida", "=ds=#m8#", "", "7.39%"};
- { 16, 16675, "", "=q3=Beaststalker's Boots", "=ds=#s12#, #a3# (D1, #c2#)", "", "13.62%"};
- };
- {
- Name = BabbleBoss["Maleki the Pallid"];
- { 1, 18734, "", "=q3=Pale Moon Cloak", "=ds=#s4#", "", "13.42%"};
- { 2, 18735, "", "=q3=Maleki's Footwraps", "=ds=#s12#, #a1#", "", "15.03%"};
- { 3, 13524, "", "=q3=Skull of Burning Shadows", "=ds=#s15#", "", "13.42%"};
- { 4, 18737, "", "=q3=Bone Slicing Hatchet", "=ds=#h1#, #w1#", "", "14.23%"};
- { 6, 13525, "", "=q2=Darkbind Fingers", "=ds=#s9#, #a1#", "", "9.15%"};
- { 7, 13526, "", "=q2=Flamescarred Girdle", "=ds=#s10#, #a2#", "", "9.57%"};
- { 8, 13528, "", "=q2=Twilight Void Bracers", "=ds=#s8#, #a3#", "", "9.49%"};
- { 9, 13527, "", "=q2=Lavawalker Greaves", "=ds=#s12#, #a4#", "", "9.39%"};
- { 10, 13509, "", "=q2=Clutch of Foresight", "=ds=#m8#", "", "6.95%"};
- { 16, 16691, "", "=q3=Devout Sandals", "=ds=#s12#, #a1# (D1, #c5#)", "", "13.64%"};
- { 18, 12833, "", "=q3=Plans: Hammer of the Titans", "=ds=#p2# (300)", "", "5.86%"};
- { 19, 12796, "", "=q3=Hammer of the Titans", "=ds=#h2#, #w6#"};
- };
- {
- Name = BabbleBoss["Magistrate Barthilas"];
- { 1, 13376, "", "=q3=Royal Tribunal Cloak", "=ds=#s4#", "", "12.44%"};
- { 2, 18727, "", "=q3=Crimson Felt Hat", "=ds=#s1#, #a1#", "", "13.82%"};
- { 3, 18726, "", "=q3=Magistrate's Cuffs", "=ds=#s8#, #a2#", "", "12.87%"};
- { 4, 18722, "", "=q3=Death Grips", "=ds=#s9#, #a4#", "", "15.34%"};
- { 5, 23198, "", "=q3=Idol of Brutality", "=ds=#s16#, #w14#", "", "2.37%"};
- { 6, 18725, "", "=q3=Peacemaker", "=ds=#w7#", "", "14.22%"};
- { 8, 12382, "", "=q2=Key to the City", "=ds=#e9#", "", "100%"};
- };
- {
- Name = BabbleBoss["Ramstein the Gorger"];
- { 1, 13374, "", "=q3=Soulstealer Mantle", "=ds=#s3#, #a1#", "", "9.87%"};
- { 2, 18723, "", "=q3=Animated Chain Necklace", "=ds=#s2#", "", "7.54%"};
- { 3, 13373, "", "=q3=Band of Flesh", "=ds=#s13#", "", "8.15%"};
- { 4, 13515, "", "=q3=Ramstein's Lightning Bolts", "=ds=#s14#", "", "8.09%"};
- { 5, 13372, "", "=q3=Slavedriver's Cane", "=ds=#w9#", "", "8.63%"};
- { 6, 13375, "", "=q3=Crest of Retribution", "=ds=#w8#", "", "9.17%"};
- { 16, 16737, "", "=q3=Gauntlets of Valor", "=ds=#s9#, #a4# (D1, #c9#)", "", "9.58%"};
- };
- {
- Name = BabbleBoss["Baron Rivendare"];
- { 1, 13505, "", "=q4=Runeblade of Baron Rivendare", "=ds=#h2#, #w10#", "", "1%"}; ---drop rate according to blue
- { 2, 13335, "", "=q4=Deathcharger's Reins", "=ds=#e12#", "", "0.10%"};
- { 4, 13340, "", "=q3=Cape of the Black Baron", "=ds=#s4#", "", "8.75%"};
- { 5, 22412, "", "=q3=Thuzadin Mantle", "=ds=#s3#, #a1#", "", "4.16%"};
- { 6, 13346, "", "=q3=Robes of the Exalted", "=ds=#s5#, #a1#", "", "11.51%"};
- { 7, 22409, "", "=q3=Tunic of the Crescent Moon", "=ds=#s5#, #a2#", "", "4.59%"};
- { 8, 13344, "", "=q3=Dracorian Gauntlets", "=ds=#s9#, #a3#", "", "10.85%"};
- { 9, 22410, "", "=q3=Gauntlets of Deftness", "=ds=#s9#, #a3#", "", "4.98%"};
- { 10, 22411, "", "=q3=Helm of the Executioner", "=ds=#s1#, #a4#", "", "3.80%"};
- { 11, 13345, "", "=q3=Seal of Rivendare", "=ds=#s13#", "", "9.50%"};
- { 12, 13368, "", "=q3=Bonescraper", "=ds=#h1#, #w4#", "", "4.32%"};
- { 13, 13361, "", "=q3=Skullforge Reaver", "=ds=#h1#, #w10#", "", "4.25%"};
- { 14, 13349, "", "=q3=Scepter of the Unholy", "=ds=#h1#, #w6#", "", "9.30%"};
- { 15, 22408, "", "=q3=Ritssyn's Wand of Bad Mojo", "=ds=#w12#", "", "3.39%"};
- { 16, 16687, "", "=q3=Magister's Leggings", "=ds=#s11#, #a1# (D1, #c3#)", "", "6.79%"};
- { 17, 16699, "", "=q3=Dreadmist Leggings", "=ds=#s11#, #a1# (D1, #c8#)", "", "7.31%"};
- { 18, 16694, "", "=q3=Devout Skirt", "=ds=#s11#, #a1# (D1, #c5#)", "", "7.42%"};
- { 19, 16709, "", "=q3=Shadowcraft Pants", "=ds=#s11#, #a2# (D1, #c6#)", "", "7.76%"};
- { 20, 16719, "", "=q3=Wildheart Kilt", "=ds=#s11#, #a2# (D1, #c1#)", "", "6.58%"};
- { 21, 16668, "", "=q3=Kilt of Elements", "=ds=#s11#, #a3# (D1, #c7#)", "", "3.02%"};
- { 22, 16678, "", "=q3=Beaststalker's Pants", "=ds=#s11#, #a3# (D1, #c2#)", "", "6.16%"};
- { 23, 16732, "", "=q3=Legplates of Valor", "=ds=#s11#, #a4# (D1, #c9#)", "", "5.74%"};
- { 24, 16728, "", "=q3=Lightforge Legplates", "=ds=#s11#, #a4# (D1, #c4#)", "", "4.20%"};
- { 26, 13251, "", "=q1=Head of Baron Rivendare", "=ds=#m3#", "", "100%"};
- { 27, 13246, "", "=q3=Argent Avenger", "=q1=#m4#: =ds=#h1#, #w10#"};
- { 28, 13249, "", "=q3=Argent Crusader", "=q1=#m4#: =ds=#w9#"};
- { 29, 13243, "", "=q3=Argent Defender", "=q1=#m4#: =ds=#w8#"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 18743, "", "=q3=Gracious Cape", "=ds=#s4#", "", "0.01%"};
- { 2, 17061, "", "=q3=Juno's Shadow", "=ds=#s4#", "", "0.01%"};
- { 3, 18745, "", "=q3=Sacred Cloth Leggings", "=ds=#s11#, #a1#", "", "0.01%"};
- { 4, 18744, "", "=q3=Plaguebat Fur Gloves", "=ds=#s9#, #a2#", "", "0.00%"};
- { 5, 18736, "", "=q3=Plaguehound Leggings", "=ds=#s11#, #a2#", "", "0.00%"};
- { 6, 18742, "", "=q3=Stratholme Militia Shoulderguard", "=ds=#s3#, #a3#", "", "0.00%"};
- { 7, 18741, "", "=q3=Morlune's Bracer", "=ds=#s8#, #a4#", "", "0.01%"};
- { 9, 16249, "", "=q2=Formula: Enchant 2H Weapon - Major Intellect", "=ds=#p4# (300) =q1=#n60#", "", "1.19%"};
- { 10, 16248, "", "=q2=Formula: Enchant Weapon - Unholy", "=ds=#p4# (295) =q1=#n61#", "", "0.36%"};
- { 11, 18658, "", "=q2=Schematic: Ultra-Flash Shadow Reflector", "=ds=#p5# (300) =q1=#n62#", "", "1.82%"};
- { 12, 16052, "", "=q2=Schematic: Voice Amplification Modulator", "=ds=#p5# (290) =q1=#n62#", "", "1.99%"};
- { 13, 15777, "", "=q2=Pattern: Runic Leather Shoulders", "=ds=#p7# (300) =q1=#n63#", "", "1.00%"};
- { 14, 15768, "", "=q2=Pattern: Wicked Leather Belt", "=ds=#p7# (300) =q1=#n64#", "", "0.85%"};
- { 15, 14495, "", "=q2=Pattern: Ghostweave Pants", "=ds=#p8# (290) =q1=#n65#", "", "2.13%"};
- { 16, 16697, "", "=q3=Devout Bracers", "=ds=#s8#, #a1# (D1)", "", "1.15%"};
- { 17, 16702, "", "=q3=Dreadmist Belt", "=ds=#s10#, #a1# (D1)", "", "0.90%"};
- { 18, 16685, "", "=q3=Magister's Belt", "=ds=#s10#, #a1# (D1)", "", "0.80%"};
- { 19, 16714, "", "=q3=Wildheart Bracers", "=ds=#s8#, #a2# (D1)", "", "1.49%"};
- { 20, 16681, "", "=q3=Beaststalker's Bindings", "=ds=#s8#, #a3# (D1)", "", "1.64%"};
- { 21, 16671, "", "=q3=Bindings of Elements", "=ds=#s8#, #a3# (D1)", "", "1.90%"};
- { 22, 16736, "", "=q3=Belt of Valor", "=ds=#s10#, #a4# (D1)", "", "2.02%"};
- { 23, 16723, "", "=q3=Lightforge Belt", "=ds=#s10#, #a4# (D1)", "", "1.83%"};
- { 25, 12811, "", "=q2=Righteous Orb", "=ds=#e8#", "", "5.09%"};
- { 26, 12735, "", "=q2=Frayed Abomination Stitching", "=ds=#m3#", "", "17.5%"};
- };
- };
- ---------------------
- --- The Deadmines ---
- ---------------------
-
- AtlasLoot_Data["TheDeadmines"] = {
- Name = BabbleZone["The Deadmines"];
- Map = "TheDeadmines";
- {
- Name = BabbleBoss["Marisa du'Paige"];
- { 1, 3019, "", "=q2=Noble's Robe", "=ds=#s5#, #a1#", "", "22.4%"};
- { 2, 4660, "", "=q2=Walking Boots", "=ds=#s12#, #a1#", "", "71.4%"};
- };
- {
- Name = BabbleBoss["Brainwashed Noble"];
- { 1, 5967, "", "=q2=Girdle of Nobility", "=ds=#s10#, #a1#", "", "70.4%"};
- { 2, 3902, "", "=q2=Staff of Nobles", "=ds=#w9#", "", "23.0%"};
- };
- {
- Name = BabbleBoss["Foreman Thistlenettle"];
- { 1, 1875, "", "=q1=Thistlenettle's Badge", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Rhahk'Zor"];
- { 1, 872, "", "=q3=Rockslicer", "=ds=#h2#, #w1#", "", "3.13%"};
- { 2, 5187, "", "=q3=Rhahk'Zor's Hammer", "=ds=#h2#, #w6#", "", "77.98%"};
- };
- {
- Name = BabbleBoss["Miner Johnson"];
- { 1, 5444, "", "=q3=Miner's Cape", "=ds=#s4#", "", "54.88%"};
- { 2, 5443, "", "=q3=Gold-plated Buckler", "=ds=#w8#", "", "37.21%"};
- };
- {
- Name = BabbleBoss["Sneed's Shredder"];
- { 1, 2169, "", "=q3=Buzzer Blade", "=ds=#h1#, #w4#", "", "70.78%"};
- { 2, 1937, "", "=q3=Buzz Saw", "=ds=#h1#, #w10#", "", "8.75%"};
- { 3, 7365, "", "=q1=Gnoam Sprecklesprocket", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Sneed"];
- { 1, 5195, "", "=q3=Gold-flecked Gloves", "=ds=#s9#, #a1#", "", "62.38%"};
- { 2, 5194, "", "=q3=Taskmaster Axe", "=ds=#h2#, #w1#", "", "26.23%"};
- { 3, 5397, "", "=q1=Defias Gunpowder", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Gilnid"];
- { 1, 5199, "", "=q3=Smelting Pants", "=ds=#s11#, #a2#", "", "51.37%"};
- { 2, 1156, "", "=q3=Lavishly Jeweled Ring", "=ds=#s13#", "", "35.02%"};
- { 3, 0, "INV_Box_01", "=q6=#n7#", ""};
- { 4, 10403, "", "=q3=Blackened Defias Belt", "=ds=#s10#, #a2#", "", "23.26%"};
- { 5, 5200, "", "=q3=Impaling Harpoon", "=ds=#w7#", "", "25.39%"};
- { 6, 5201, "", "=q3=Emberstone Staff", "=ds=#w9#", "", "34.10%"};
- };
- {
- Name = BabbleBoss["Mr. Smite"];
- { 1, 5192, "", "=q3=Thief's Blade", "=ds=#h1#, #w10#", "", "34.96%"};
- { 2, 5196, "", "=q3=Smite's Reaver", "=ds=#h1#, #w1#", "", "33.95%"};
- { 3, 7230, "", "=q3=Smite's Mighty Hammer", "=ds=#h2#, #w6#", "", "17.27%"};
- };
- {
- Name = BabbleBoss["Cookie"];
- { 1, 5197, "", "=q3=Cookie's Tenderizer", "=ds=#h1#, #w6#", "", "49.62%"};
- { 2, 5198, "", "=q3=Cookie's Stirring Rod", "=ds=#w12#", "", "30.90%"};
- { 3, 8490, "", "=q1=Cat Carrier (Siamese)", "=ds=#e13#", "", "12.38%"};
- };
- {
- Name = BabbleBoss["Edwin VanCleef"];
- { 1, 5193, "", "=q3=Cape of the Brotherhood", "=ds=#s4#", "", "21.25%"};
- { 2, 5202, "", "=q3=Corsair's Overshirt", "=ds=#s5#, #a1#", "", "22.86%"};
- { 3, 10399, "", "=q3=Blackened Defias Armor", "=ds=#s5#, #a2#", "", "14.77%"};
- { 4, 5191, "", "=q3=Cruel Barb", "=ds=#h1#, #w10#", "", "14.17%"};
- { 5, 2874, "", "=q1=An Unsent Letter", "=ds=#m2#"};
- { 6, 3637, "", "=q1=Head of VanCleef", "=ds=#m3#"};
- };
- };
-
- --------------------
- --- The Stockade ---
- --------------------
-
- AtlasLoot_Data["TheStockade"] = {
- Name = BabbleZone["The Stockade"];
- Map = "TheStockade";
- {
- Name = BabbleBoss["Targorr the Dread"];
- { 1, 3630, "", "=q1=Head of Targorr", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Kam Deepfury"];
- { 1, 2280, "", "=q3=Kam's Walking Stick", "=ds=#w9#", "", "0.62%"};
- { 2, 3640, "", "=q1=Head of Deepfury", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Bazil Thredd"];
- { 1, 2926, "", "=q1=Head of Bazil Thredd", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Dextren Ward"];
- { 1, 3628, "", "=q1=Hand of Dextren Ward", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Bruegal Ironknuckle"];
- { 1, 3228, "", "=q3=Jimmied Handcuffs", "=ds=#s8#, #a3#", "", "54.73%"};
- { 2, 2942, "", "=q3=Iron Knuckles", "=ds=#h1#, #w13#", "", "18.18%"};
- { 3, 2941, "", "=q3=Prison Shank", "=ds=#h1#, #w4#", "", "16.05%"};
- };
- {
- Name = "Quest Item's";
- { 1, 2909, "", "=q1=Red Wool Bandana", "=ds=#m3#"};
- };
- };
-
- -------------------------
- --- The Sunken Temple ---
- -------------------------
-
- AtlasLoot_Data["SunkenTemple"] = {
- Name = "Sunken Temple";
- Map = "TheSunkenTemple";
- {
- Name = "Spawn of Hakkar";
- { 1, 10802, "", "=q3=Wingveil Cloak", "=ds=#s4#", "", "25.6%"};
- { 2, 10801, "", "=q3=Slitherscale Boots", "=ds=#s12#, #a2#", "", "42.33%"};
- };
- {
- Name = "Troll Minibosses";
- { 1, 10787, "", "=q3=Atal'ai Gloves", "=ds=#s9#, #a1# =q2=#m16#", "", "5.25%"};
- { 2, 10783, "", "=q3=Atal'ai Spaulders", "=ds=#s3#, #a2# =q2=#m16#", "", "3.12%"};
- { 3, 10785, "", "=q3=Atal'ai Leggings", "=ds=#s11#, #a2# =q2=#m16#", "", "4.42%"};
- { 4, 10784, "", "=q3=Atal'ai Breastplate", "=ds=#s5#, #a3# =q2=#m16#", "", "2.12%"};
- { 5, 10786, "", "=q3=Atal'ai Boots", "=ds=#s12#, #a3# =q2=#m16#", "", "6.15%"};
- { 6, 10788, "", "=q3=Atal'ai Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "7.17%"};
- { 8, 20606, "", "=q1=Amber Voodoo Feather", "=ds=#m3# =q2=#st1#, #st6#"};
- { 9, 20607, "", "=q1=Blue Voodoo Feather", "=ds=#m3# =q2=#st2#, #st4#"};
- { 10, 20608, "", "=q1=Green Voodoo Feather", "=ds=#m3# =q2=#st3#, #st5#"};
- };
- {
- Name = BabbleBoss["Atal'alarion"];
- { 1, 10800, "", "=q3=Darkwater Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "31.73%"};
- { 2, 10798, "", "=q3=Atal'alarion's Tusk Ring", "=ds=#s10#, #a4#", "", "30.53%"};
- { 3, 10799, "", "=q3=Headspike", "=ds=#w7#", "", "17.98%"};
- };
- {
- Name = BabbleBoss["Dreamscythe"];
- { 1, 12465, "", "=q3=Nightfall Drape", "=ds=#s4#", "", "4.42%"};
- { 2, 12466, "", "=q3=Dawnspire Cord", "=ds=#s10#, #a1#", "", "4.16%"};
- { 3, 12464, "", "=q3=Bloodfire Talons", "=ds=#s9#, #a2#", "", "4.99%"};
- { 4, 10795, "", "=q3=Drakeclaw Band", "=ds=#s13# =q2=#m16#", "", "3.68%"};
- { 5, 10796, "", "=q3=Drakestone", "=ds=#s15#", "", "4.26%"};
- { 6, 10797, "", "=q3=Firebreather", "=ds=#h1#, #w10#", "", "4.57%"};
- { 7, 12463, "", "=q3=Drakefang Butcher", "=ds=#h2#, #w10#", "", "4.40%"};
- { 8, 12243, "", "=q3=Smoldering Claw", "=ds=#w7#", "", "4.50%"};
- };
- {
- Name = BabbleBoss["Weaver"];
- { 1, 12465, "", "=q3=Nightfall Drape", "=ds=#s4#", "", "4.20%"};
- { 2, 12466, "", "=q3=Dawnspire Cord", "=ds=#s10#, #a1#", "", "3.89%"};
- { 3, 12464, "", "=q3=Bloodfire Talons", "=ds=#s9#, #a2#", "", "4.10%"};
- { 4, 10795, "", "=q3=Drakeclaw Band", "=ds=#s13# =q2=#m16#", "", "4.46%"};
- { 5, 10796, "", "=q3=Drakestone", "=ds=#s15#", "", "4.47%"};
- { 6, 10797, "", "=q3=Firebreather", "=ds=#h1#, #w10#", "", "4.08%"};
- { 7, 12463, "", "=q3=Drakefang Butcher", "=ds=#h2#, #w10#", "", "5.00%"};
- { 8, 12243, "", "=q3=Smoldering Claw", "=ds=#w7#", "", "4.42%"};
- };
- {
- Name = BabbleBoss["Avatar of Hakkar"];
- { 1, 12462, "", "=q4=Embrace of the Wind Serpent", "=ds=#s5#, #a1#", "", "0.15%"};
- { 3, 10843, "", "=q3=Featherskin Cape", "=ds=#s4#", "", "31.12%"};
- { 4, 10842, "", "=q3=Windscale Sarong", "=ds=#s11#, #a2#", "", "33.22%"};
- { 5, 10846, "", "=q3=Bloodshot Greaves", "=ds=#s12#, #a3#", "", "32.44%"};
- { 6, 10845, "", "=q3=Warrior's Embrace", "=ds=#s5#, #a4#", "", "30.44%"};
- { 7, 10838, "", "=q3=Might of Hakkar", "=ds=#h1#, #w6#", "", "16.37%"};
- { 8, 10844, "", "=q3=Spire of Hakkar", "=ds=#w9#", "", "16.02%"};
- { 10, 10663, "", "=q1=Essence of Hakkar", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Jammal'an the Prophet"];
- { 1, 10806, "", "=q3=Vestments of the Atal'ai Prophet", "=ds=#s5#, #a1#", "", "24.13%"};
- { 2, 10808, "", "=q3=Gloves of the Atal'ai Prophet", "=ds=#s9#, #a1#", "", "26.74%"};
- { 3, 10807, "", "=q3=Kilt of the Atal'ai Prophet", "=ds=#s11#, #a1#", "", "23.00%"};
- { 5, 6212, "", "=q1=Head of Jammal'an", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Ogom the Wretched"];
- { 1, 10805, "", "=q3=Eater of the Dead", "=ds=#h1#, #w1#", "", "28.27%"};
- { 2, 10804, "", "=q3=Fist of the Damned", "=ds=#h1#, #w6#", "", "30.03%"};
- { 3, 10803, "", "=q3=Blade of the Wretched", "=ds=#h1#, #w10#", "", "28.21%"};
- };
- {
- Name = BabbleBoss["Morphaz"];
- { 1, 12465, "", "=q3=Nightfall Drape", "=ds=#s4#", "", "4.29%"};
- { 2, 12466, "", "=q3=Dawnspire Cord", "=ds=#s10#, #a1#", "", "4.12%"};
- { 3, 12464, "", "=q3=Bloodfire Talons", "=ds=#s9#, #a2#", "", "4.21%"};
- { 4, 10795, "", "=q3=Drakeclaw Band", "=ds=#s13# =q2=#m16#", "", "4.07%"};
- { 5, 10796, "", "=q3=Drakestone", "=ds=#s15#", "", "4.18%"};
- { 6, 10797, "", "=q3=Firebreather", "=ds=#h1#, #w10#", "", "4.24%"};
- { 7, 12463, "", "=q3=Drakefang Butcher", "=ds=#h2#, #w10#", "", "4.35%"};
- { 8, 12243, "", "=q3=Smoldering Claw", "=ds=#w7#", "", "4.09%"};
- { 10, 20022, "", "=q1=Azure Key", "=ds=#m3#", "", "100%"};
- { 11, 20085, "", "=q1=Arcane Shard", "=ds=#m3#", "", "100%"};
- { 12, 20025, "", "=q1=Blood of Morphaz", "=ds=#m3#", "", "100%"};
- { 13, 20019, "", "=q1=Tooth of Morphaz", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Hazzas"];
- { 1, 12465, "", "=q3=Nightfall Drape", "=ds=#s4#", "", "4.48%"};
- { 2, 12466, "", "=q3=Dawnspire Cord", "=ds=#s10#, #a1#", "", "4.46%"};
- { 3, 12464, "", "=q3=Bloodfire Talons", "=ds=#s9#, #a2#", "", "5.00%"};
- { 4, 10795, "", "=q3=Drakeclaw Band", "=ds=#s13# =q2=#m16#", "", "4.18%"};
- { 5, 10796, "", "=q3=Drakestone", "=ds=#s15#", "", "4.92%"};
- { 6, 10797, "", "=q3=Firebreather", "=ds=#h1#, #w10#", "", "4.50%"};
- { 7, 12463, "", "=q3=Drakefang Butcher", "=ds=#h2#, #w10#", "", "4.58%"};
- { 8, 12243, "", "=q3=Smoldering Claw", "=ds=#w7#", "", "4.56%"};
- };
- {
- Name = BabbleBoss["Shade of Eranikus"];
- { 1, 10847, "", "=q4=Dragon's Call", "=ds=#h1#, #w10#", "", "0.18%"};
- { 3, 10833, "", "=q3=Horns of Eranikus", "=ds=#s1#, #a3#", "", "25.66%"};
- { 4, 10829, "", "=q3=Dragon's Eye", "=ds=#s2#", "", "27.02%"};
- { 5, 10828, "", "=q3=Dire Nail", "=ds=#h1#, #w4#", "", "10.91%"};
- { 6, 10837, "", "=q3=Tooth of Eranikus", "=ds=#h1#, #w1#", "", "10.05%"};
- { 7, 10835, "", "=q3=Crest of Supremacy", "=ds=#w8#", "", "19.17%"};
- { 8, 10836, "", "=q3=Rod of Corrosion", "=ds=#w12#", "", "21.54%"};
- { 10, 10454, "", "=q2=Essence of Eranikus", "=ds=#m2#"};
- { 11, 10455, "", "=q2=Chained Essence of Eranikus", "=q1=#m4#: =ds=#s14#"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 10630, "", "=q3=Soulcatcher Halo", "=ds=#s1#, #a1#", "", "0.01%"};
- { 2, 10629, "", "=q3=Mistwalker Boots", "=ds=#s12#, #a1#", "", "0.01%"};
- { 3, 10632, "", "=q3=Slimescale Bracers", "=ds=#s8#, #a3#", "", "0.01%"};
- { 4, 10631, "", "=q3=Murkwater Gauntlets", "=ds=#s9#, #a3#", "", "0.01%"};
- { 5, 10633, "", "=q3=Silvershell Leggings", "=ds=#s11#, #a3#", "", "0.01%"};
- { 6, 10634, "", "=q3=Mindseye Circle", "=ds=#s13#", "", "0.02%"};
- { 8, 15733, "", "=q3=Pattern: Green Dragonscale Leggings", "=ds=#p7# (270) =q1=#n80#", "", "1.80%"};
- { 9, 16216, "", "=q2=Formula: Enchant Cloak - Greater Resistance", "=ds=#p4# (265) =q1=#n81#", "", "0.75%"};
- { 11, 11318, "", "=q1=Atal'ai Haze", "=ds=#m3#"};
- { 12, 6181, "", "=q1=Fetish of Hakkar", "=ds=#m3#"};
- { 16, 10623, "", "=q3=Winter's Bite", "=ds=#h1#, #w1#", "", "0.01%"};
- { 17, 10625, "", "=q3=Stealthblade", "=ds=#h1#, #w4#", "", "0.01%"};
- { 18, 10628, "", "=q3=Deathblow", "=ds=#h2#, #w10#", "", "0.01%"};
- { 19, 10626, "", "=q3=Ragehammer", "=ds=#h2#, #w6#", "", "0.01%"};
- { 20, 10627, "", "=q3=Bludgeon of the Grinning Dog", "=ds=#w9#", "", "0.02%"};
- { 21, 10624, "", "=q3=Stinging Bow", "=ds=#w2#", "", "0.02%"};
- };
- };
-
- ---------------
- --- Uldaman ---
- ---------------
-
- AtlasLoot_Data["Uldaman"] = {
- Name = BabbleZone["Uldaman"];
- Map = "Uldaman";
- {
- Name = AL["Magregan Deepshadow"];
- { 1, 4635, "", "=q1=Hammertoe's Amulet", "=ds=#m3#", "", "100%"};
- };
- {
- Name = "Tablet of Ryun'eh";
- { 1, 4631, "", "=q1=Tablet of Ryun'eh", "=ds=#m3#"};
- };
- {
- Name = AL["Krom Stoutarm's Chest"];
- { 1, 8027, "", "=q1=Krom Stoutarm's Treasure", "=ds=#m3#"};
- };
- {
- Name = AL["Garrett Family Chest"];
- { 1, 8026, "", "=q1=Garrett Family Treasure", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Digmaster Shovelphlange"];
- { 1, 9375, "", "=q3=Expert Goldminer's Helmet", "=ds=#s1#, #a2#", "", "9.30%"};
- { 2, 9378, "", "=q3=Shovelphlange's Mining Axe", "=ds=#h1#, #w1#", "", "13.50%"};
- { 3, 9382, "", "=q2=Tromping Miner's Boots", "=ds=#s12#, #a2#", "", "70.70%"};
- };
- {
- Name = BabbleBoss["Baelog"];
- { 1, 0, "INV_Box_01", "=q6=#n45#", ""};
- { 2, 9401, "", "=q3=Nordic Longshank", "=ds=#h1#, #w10#", "", "8.89%"};
- { 3, 9400, "", "=q3=Baelog's Shortbow", "=ds=#w2#", "", "46.52%"};
- { 4, 9399, "", "=q2=Precision Arrow", "=ds=#w17#", "", "78.62%"};
- { 6, 0, "INV_Box_01", "=q6=#n46#", ""};
- { 7, 9394, "", "=q3=Horned Viking Helmet", "=ds=#s1#, #a4#", "", "4.05%"};
- { 8, 9398, "", "=q3=Worn Running Boots", "=ds=#s12#, #a2#", "", "45.09%"};
- { 9, 2459, "", "=q1=Swiftness Potion", "=ds=#e2#"};
- { 11, 0, "INV_Box_01", "=q6=#n47#", ""};
- { 12, 9404, "", "=q3=Olaf's All Purpose Shield", "=ds=#w8#", "", "11.33%"};
- { 13, 9403, "", "=q3=Battered Viking Shield", "=ds=#w8#", "", "69.85%"};
- { 14, 1177, "", "=q1=Oil of Olaf", "=ds=#e2#", "", "76.54%"};
- { 16, 0, "INV_Box_01", "=q6=#x14#", ""};
- { 17, 7740, "", "=q1=Gni'kiv Medallion", "=ds=#m3#"};
- { 19, 0, "INV_Box_01", "=q6=#x15#", ""};
- { 20, 7671, "", "=q1=Shattered Necklace Topaz", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Revelosh"];
- { 1, 9390, "", "=q3=Revelosh's Gloves", "=ds=#s9#, #a1# =q2=#m16#", "", "20.08%"};
- { 2, 9389, "", "=q3=Revelosh's Spaulders", "=ds=#s3#, #a2# =q2=#m16#", "", "18.77%"};
- { 3, 9388, "", "=q3=Revelosh's Armguards", "=ds=#s8#, #a3# =q2=#m16#", "", "19.84%"};
- { 4, 9387, "", "=q3=Revelosh's Boots", "=ds=#s12#, #a4# =q2=#m16#", "", "20.53%"};
- { 6, 7741, "", "=q1=The Shaft of Tsol", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Ironaya"];
- { 1, 9407, "", "=q3=Stoneweaver Leggings", "=ds=#s11#, #a1#", "", "31.02%"};
- { 2, 9409, "", "=q3=Ironaya's Bracers", "=ds=#s8#, #a3# =q2=#m16#", "", "32.71%"};
- { 3, 9408, "", "=q3=Ironshod Bludgeon", "=ds=#w9#", "", "17.37%"};
- };
- {
- Name = BabbleBoss["Obsidian Sentinel"];
- { 1, 8053, "", "=q1=Obsidian Power Source", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Ancient Stone Keeper"];
- { 1, 9411, "", "=q3=Rockshard Pauldrons", "=ds=#s3#, #a3#", "", "43.41%"};
- { 2, 9410, "", "=q3=Cragfists", "=ds=#s9#, #a4# =q2=#m16#", "", "41.61%"};
- };
- {
- Name = BabbleBoss["Galgann Firehammer"];
- { 1, 11311, "", "=q3=Emberscale Cape", "=ds=#s4#", "", "36.52%"};
- { 2, 11310, "", "=q3=Flameseer Mantle", "=ds=#s3#, #a1#", "", "17.35%"};
- { 3, 9419, "", "=q3=Galgann's Firehammer", "=ds=#h1#, #w6#", "", "18.10%"};
- { 4, 9412, "", "=q3=Galgann's Fireblaster", "=ds=#w5#", "", "17.10%"};
- };
- {
- Name = "Tablet of Will";
- { 1, 5824, "", "=q1=Tablet of Will", "=ds=#m3#"};
- };
- {
- Name = "Shadowforge Cache";
- { 1, 7669, "", "=q1=Shattered Necklace Ruby", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Grimlok"];
- { 1, 9415, "", "=q3=Grimlok's Tribal Vestments", "=ds=#s5#, #a1#", "", "36.51%"};
- { 2, 9414, "", "=q3=Oilskin Leggings", "=ds=#s11#, #a2#", "", "29.78%"};
- { 3, 9416, "", "=q3=Grimlok's Charge", "=ds=#w7#", "", "15.05%"};
- { 5, 7670, "", "=q1=Shattered Necklace Sapphire", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Archaedas"];
- { 1, 11118, "", "=q3=Archaedic Stone", "=ds=#s13# =q2=#m16#", "", "51.99%"};
- { 2, 9418, "", "=q3=Stoneslayer", "=ds=#h2#, #w10#", "", "10.48%"};
- { 3, 9413, "", "=q3=The Rockpounder", "=ds=#h2#, #w6#", "", "10.94%"};
- { 5, 7672, "", "=q1=Shattered Necklace Power Source", "=ds=#m3#", "", "100%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 9397, "", "=q3=Energy Cloak", "=ds=#s4#", "", "0.01%"};
- { 2, 9431, "", "=q3=Papal Fez", "=ds=#s1#, #a1#", "", "0.01%"};
- { 3, 9429, "", "=q3=Miner's Hat of the Deep", "=ds=#s1#, #a1#", "", "0.01%"};
- { 4, 9420, "", "=q3=Adventurer's Pith Helmet", "=ds=#s1#, #a2#", "", "0.01%"};
- { 5, 9406, "", "=q3=Spirewind Fetter", "=ds=#s5#, #a2#", "", "0.01%"};
- { 6, 9428, "", "=q3=Unearthed Bands", "=ds=#s8#, #a2# =q2=#m16#", "", "0.01%"};
- { 7, 9430, "", "=q3=Spaulders of a Lost Age", "=ds=#s3#, #a3#", "", "0.00%"};
- { 8, 9396, "", "=q3=Legguards of the Vault", "=ds=#s11#, #a3#"};
- { 9, 9432, "", "=q3=Skullplate Bracers", "=ds=#s8#, #a4#", "", "0.01%"};
- { 10, 9393, "", "=q3=Beacon of Hope", "=ds=#s15#", "", "0.01%"};
- { 12, 7666, "", "=q2=Shattered Necklace", "=q1=#m2#"};
- { 13, 7673, "", "=q3=Talvash's Enhancing Necklace", "=q1=#m4#: =ds=#s2#"};
- { 16, 9384, "", "=q3=Stonevault Shiv", "=ds=#h1#, #w4#", "", "0.01%"};
- { 17, 9392, "", "=q3=Annealed Blade", "=ds=#h1#, #w10#", "", "0.01%"};
- { 18, 9424, "", "=q3=Ginn-su Sword", "=ds=#h1#, #w10#", "", "0.01%"};
- { 19, 9465, "", "=q3=Digmaster 5000", "=ds=#h1#, #w1#", "", "0.01%"};
- { 20, 9383, "", "=q3=Obsidian Cleaver", "=ds=#h2#, #w1#", "", "0.01%"};
- { 21, 9425, "", "=q3=Pendulum of Doom", "=ds=#h2#, #w1#", "", "0.01%"};
- { 22, 9386, "", "=q3=Excavator's Brand", "=ds=#h1#, #w6#", "", "0.01%"};
- { 23, 9427, "", "=q3=Stonevault Bonebreaker", "=ds=#h1#, #w6#", "", "0.01%"};
- { 24, 9423, "", "=q3=The Jackhammer", "=ds=#h2#, #w6#", "", "0.01%"};
- { 25, 9391, "", "=q3=The Shoveler", "=ds=#h2#, #w6#, =q2=#c9#", "", "0.01%"};
- { 26, 9381, "", "=q3=Earthen Rod", "=ds=#w12#", "", "0.01%"};
- { 27, 9426, "", "=q3=Monolithic Bow", "=ds=#w2#", "", "0.01%"};
- { 28, 9422, "", "=q3=Shadowforge Bushmaster", "=ds=#w5#", "", "0.01%"};
- };
- };
-
- -----------------------
- --- Wailing Caverns ---
- -----------------------
-
- AtlasLoot_Data["WailingCaverns"] = {
- Name = BabbleZone["Wailing Caverns"];
- Map = "WailingCaverns";
- {
- Name = AL["Kalldan Felmoon"];
- { 1, 6475, "", "=q1=Pattern: Deviate Scale Gloves", "=ds=#p7# (105)"};
- { 2, 6474, "", "=q1=Pattern: Deviate Scale Cloak", "=ds=#p7# (90)"};
- };
- {
- Name = BabbleBoss["Mad Magglish"];
- { 1, 5334, "", "=q1=99-Year-Old Port", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Trigore the Lasher"];
- { 1, 5425, "", "=q3=Runescale Girdle", "=ds=#s8#, #a3#", "", "50%"};
- { 2, 5426, "", "=q3=Serpent's Kiss", "=ds=#h1#, #w1#", "", "35%"};
- };
- {
- Name = BabbleBoss["Boahn"];
- { 1, 5423, "", "=q3=Boahn's Fang", "=ds=#h2#, #w1#", "", "28%"};
- { 2, 5422, "", "=q2=Brambleweed Leggings", "=ds=#s11#, #a2#", "", "64%"};
- };
- {
- Name = BabbleBoss["Lord Cobrahn"];
- { 1, 6465, "", "=q3=Robe of the Moccasin", "=ds=#s5#, #a1#", "", "51.73%"};
- { 2, 10410, "", "=q3=Leggings of the Fang", "=ds=#s11#, #a2#", "", "16.03%"};
- { 3, 6460, "", "=q3=Cobrahn's Grasp", "=ds=#s10#, #a3#", "", "16.20%"};
- };
- {
- Name = BabbleBoss["Lady Anacondra"];
- { 1, 5404, "", "=q3=Serpent's Shoulders", "=ds=#s3#, #a2#", "", "58.61%"};
- { 2, 10412, "", "=q3=Belt of the Fang", "=ds=#s10#, #a2#", "", "8.63%"};
- { 3, 6446, "", "=q3=Snakeskin Bag", "=ds=#m12# #e1#", "", "6.61%"};
- };
- {
- Name = BabbleBoss["Kresh"];
- { 1, 13245, "", "=q3=Kresh's Back", "=ds=#w8#", "", "9.17%"};
- { 2, 6447, "", "=q3=Worn Turtle Shell Shield", "=ds=#w8#", "", "63.66%"};
- };
- {
- Name = BabbleBoss["Lord Pythas"];
- { 1, 6473, "", "=q3=Armor of the Fang", "=ds=#s5#, #a2#", "", "52.06%"};
- { 2, 6472, "", "=q3=Stinging Viper", "=ds=#h1#, #w6#", "", "28.24%"};
- };
- {
- Name = BabbleBoss["Skum"];
- { 1, 6449, "", "=q3=Glowing Lizardscale Cloak", "=ds=#s4#", "", "38.24%"};
- { 2, 6448, "", "=q3=Tail Spike", "=ds=#h1#, #w4#", "", "39.24%"};
- };
- {
- Name = BabbleBoss["Lord Serpentis"];
- { 1, 5970, "", "=q3=Serpent Gloves", "=ds=#s9#, #a1#", "", "20.96%"};
- { 2, 10411, "", "=q3=Footpads of the Fang", "=ds=#s12#, #a2#", "", "19.07%"};
- { 3, 6459, "", "=q3=Savage Trodders", "=ds=#s12#, #a3#", "", "24.39%"};
- { 4, 6469, "", "=q3=Venomstrike", "=ds=#w2#", "", "16.63%"};
- };
- {
- Name = BabbleBoss["Verdan the Everliving"];
- { 1, 6629, "", "=q3=Sporid Cape", "=ds=#s4#", "", "16.65%"};
- { 2, 6631, "", "=q3=Living Root", "=ds=#w9#", "", "34.47%"};
- { 3, 6630, "", "=q3=Seedcloud Buckler", "=ds=#w8#", "", "35.38%"};
- };
- {
- Name = BabbleBoss["Mutanus the Devourer"];
- { 1, 6461, "", "=q3=Slime-encrusted Pads", "=ds=#s3#, #a1#", "", "22.96%"};
- { 2, 6627, "", "=q3=Mutant Scale Breastplate", "=ds=#s5#, #a3#", "", "18.33%"};
- { 3, 6463, "", "=q3=Deep Fathom Ring", "=ds=#s13#", "", "21.99%"};
- { 4, 10441, "", "=q1=Glowing Shard", "=ds=#m2#"};
- };
- {
- Name = BabbleBoss["Deviate Faerie Dragon"];
- { 1, 6632, "", "=q3=Feyscale Cloak", "=ds=#s4#", "", "37.84%"};
- { 2, 5243, "", "=q3=Firebelcher", "=ds=#w12#", "", "39.65%"};
- };
- };
-
- ------------------
- --- Zul'Farrak ---
- ------------------
-
- AtlasLoot_Data["ZulFarrak"] = {
- Name = BabbleZone["Zul'Farrak"];
- Map = "ZulFarrak";
- {
- Name = BabbleBoss["Antu'sul"];
- { 1, 9640, "", "=q3=Vice Grips", "=ds=#s9#, #a4#", "", "31.30%"};
- { 2, 9641, "", "=q3=Lifeblood Amulet", "=ds=#s2#", "", "30.80%"};
- { 3, 9639, "", "=q3=The Hand of Antu'sul", "=ds=#h1#, #w6#", "", "15.47%"};
- { 5, 9379, "", "=q3=Sang'thraze the Deflector", "=ds=#h1#, #w10#", "", "2.10%"};
- { 6, 9372, "", "=q4=Sul'thraze the Lasher", "=ds=#h2#, #w10#"};
- };
- {
- Name = BabbleBoss["Theka the Martyr"];
- { 1, 10660, "", "=q1=First Mosh'aru Tablet", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Witch Doctor Zum'rah"];
- { 1, 18083, "", "=q3=Jumanza Grips", "=ds=#s9#, #a1#", "", "24.97%"};
- { 2, 18082, "", "=q3=Zum'rah's Vexing Cane", "=ds=#w9#", "", "11.98%"};
- };
- {
- Name = BabbleBoss["Nekrum Gutchewer"];
- { 1, 9471, "", "=q1=Nekrum's Medallion", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Shadowpriest Sezz'ziz"];
- { 1, 9470, "", "=q3=Bad Mojo Mask", "=ds=#s1#, #a1#", "", "18.69%"};
- { 2, 9473, "", "=q3=Jinxed Hoodoo Skin", "=ds=#s5#, #a2#", "", "21.12%"};
- { 3, 9474, "", "=q3=Jinxed Hoodoo Kilt", "=ds=#s11#, #a2#", "", "20.95%"};
- { 4, 9475, "", "=q3=Diabolic Skiver", "=ds=#w7#", "", "20.06%"};
- };
- {
- Name = BabbleBoss["Dustwraith"];
- { 1, 12471, "", "=q3=Desertwalker Cane", "=ds=#s15#", "", "17.71%"};
- };
- {
- Name = BabbleBoss["Sergeant Bly"];
- { 1, 8444, "", "=q1=Executioner's Key", "=ds=#e9#"};
- };
- {
- Name = BabbleBoss["Sandfury Executioner"];
- { 1, 8548, "", "=q1=Divino-matic Rod", "=ds=#m3#", "", "100%"};
- };
-
- {
- Name = BabbleBoss["Hydromancer Velratha"];
- { 1, 9234, "", "=q1=Tiara of the Deep", "=ds=#m3#", "", "100%"};
- { 2, 10661, "", "=q1=Second Mosh'aru Tablet", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Gahz'rilla"];
- { 1, 9469, "", "=q3=Gahz'rilla Scale Armor", "=ds=#s5#, #a3#", "", "36.76%"};
- { 2, 9467, "", "=q3=Gahz'rilla Fang", "=ds=#h1#, #w4#", "", "36.83%"};
- { 4, 8707, "", "=q1=Gahz'rilla's Electrified Scale", "=ds=#m3#"};
- };
- {
- Name = BabbleBoss["Chief Ukorz Sandscalp"];
- { 1, 9479, "", "=q3=Embrace of the Lycan", "=ds=#s1#, #a2#", "", "8.97%"};
- { 2, 9476, "", "=q3=Big Bad Pauldrons", "=ds=#s3#, #a4#", "", "28.17%"};
- { 3, 9478, "", "=q3=Ripsaw", "=ds=#h1#, #w1#", "", "19.78%"};
- { 4, 9477, "", "=q3=The Chief's Enforcer", "=ds=#w9#", "", "22.33%"};
- { 6, 11086, "", "=q3=Jang'thraze the Protector", "=ds=#h3#, #w10#", "", "1.72%"};
- { 7, 9372, "", "=q4=Sul'thraze the Lasher", "=ds=#h2# #w10#"};
- };
- {
- Name = BabbleBoss["Zerillis"];
- { 1, 12470, "", "=q3=Sandstalker Ankleguards", "=ds=#s12#, #a2#", "", "15.55%"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 9512, "", "=q3=Blackmetal Cape", "=ds=#s4#", "", "0.02%"};
- { 2, 9484, "", "=q3=Spellshock Leggings", "=ds=#s11#, #a1#", "", "0.01%"};
- { 3, 862, "", "=q3=Runed Ring", "=ds=#s13# =q2=#m16#", "", "0.02%"};
- { 4, 6440, "", "=q3=Brainlash", "=ds=#s13#", "", "0.01%"};
- { 6, 9243, "", "=q2=Shriveled Heart", "=ds=#s2#"};
- { 8, 9523, "", "=q1=Troll Temper", "=ds=#m3#"};
- { 9, 9238, "", "=q1=Uncracked Scarab Shell", "=ds=#m3#"};
- { 16, 5616, "", "=q3=Gutwrencher", "=ds=#h1#, #w4#", "", "0.01%"};
- { 17, 9511, "", "=q3=Bloodletter Scalpel", "=ds=#h1#, #w10#", "", "0.01%"};
- { 18, 9481, "", "=q3=The Minotaur", "=ds=#h2#, #w1#", "", "0.01%"};
- { 19, 9480, "", "=q3=Eyegouger", "=ds=#w7#", "", "0.01%"};
- { 20, 9482, "", "=q3=Witch Doctor's Cane", "=ds=#w9#", "", "0.01%"};
- { 21, 9483, "", "=q3=Flaming Incinerator", "=ds=#w12#", "", "0.01%"};
- { 22, 2040, "", "=q3=Troll Protector", "=ds=#w8#", "", "0.02%"};
- };
- };
-
- -----------------
- --- Zul'Gurub ---
- -----------------
-
- AtlasLoot_Data["ZulGurub"] = {
- Name = BabbleZone["Zul'Gurub"];
- Type = "ClassicRaid";
- Map = "ZulGurub";
- {
- Name = BabbleBoss["High Priestess Jeklik"];
- { 1, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "11.41%"};
- { 2, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "11.02%"};
- { 3, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "10.84%"};
- { 4, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "5.89%"};
- { 5, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "5.80%"};
- { 6, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "5.56%"};
- { 7, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.33%"};
- { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.32%"};
- { 9, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.17%"};
- { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.8%"};
- { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"};
- { 16, 19918, "", "=q4=Jeklik's Crusher", "=ds=#h2#, #w6#", "", "3.96%"};
- { 18, 19928, "", "=q3=Animist's Spaulders", "=ds=#s3#, #a2#", "", "3.39%"};
- { 19, 20262, "", "=q3=Seafury Boots", "=ds=#s12#, #a3#", "", "4.31%"};
- { 20, 20265, "", "=q3=Peacekeeper Boots", "=ds=#s12#, #a4#", "", "6.99%"};
- { 21, 19923, "", "=q3=Jeklik's Opaline Talisman", "=ds=#s2#", "", "12.22%"};
- { 22, 19920, "", "=q3=Primalist's Band", "=ds=#s13#", "", "11.89%"};
- { 23, 19915, "", "=q3=Zulian Defender", "=ds=#w8#", "", " 11.36%"};
- };
- {
- Name = BabbleBoss["High Priest Venoxis"];
- { 1, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "11.01%"};
- { 2, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "10.55%"};
- { 3, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "10.18%"};
- { 4, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "5.93%"};
- { 5, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "5.67%"};
- { 6, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "5.52%"};
- { 7, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.18%"};
- { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.02%"};
- { 9, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.00%"};
- { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "6.0%"};
- { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"};
- { 13, 22216, "", "=q1=Venoxis's Venom Sac", "=ds=#m3#", "", "100%"};
- { 16, 19904, "", "=q4=Runed Bloodstained Hauberk", "=ds=#s5#, #a3#", "", "3.70%"};
- { 17, 19903, "", "=q4=Fang of Venoxis", "=ds=#h3#, #w4#", "", "3.68%"};
- { 19, 19907, "", "=q3=Zulian Tigerhide Cloak", "=ds=#s4#", "", "12.09%"};
- { 20, 19906, "", "=q3=Blooddrenched Footpads", "=ds=#s12#, #a2#", "", "11.36%"};
- { 21, 19905, "", "=q3=Zanzil's Band", "=ds=#s13#", "", "6.99%"};
- { 22, 19900, "", "=q3=Zulian Stone Axe", "=ds=#h2#, #w1#", "", "11.89%"};
- };
- {
- Name = BabbleBoss["High Priestess Mar'li"];
- { 1, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "13.69%"};
- { 2, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "13.69%"};
- { 3, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "13.64%"};
- { 4, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "6.55%"};
- { 5, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "6.49%"};
- { 6, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "6.31%"};
- { 7, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.56%"};
- { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.55%"};
- { 9, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.30%"};
- { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "7.4%"};
- { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"};
- { 16, 20032, "", "=q4=Flowing Ritual Robes", "=ds=#s5#, #a1#", "", "4.46%"};
- { 17, 19927, "", "=q4=Mar'li's Touch", "=ds=#w12#", "", "4.35%"};
- { 19, 19919, "", "=q3=Bloodstained Greaves", "=ds=#s12#, #a3#", "", "11.89%"};
- { 20, 19871, "", "=q3=Talisman of Protection", "=ds=#s2#", "", "11.36%"};
- { 21, 19925, "", "=q3=Band of Jin", "=ds=#s13#", "", " 6.99%"};
- { 22, 19930, "", "=q3=Mar'li's Eye", "=ds=#s14#", "", "12.09%"};
- };
- {
- Name = BabbleBoss["Bloodlord Mandokir"];
- { 1, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "12.94%"};
- { 2, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "12.07%"};
- { 3, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "11.56%"};
- { 4, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "6.65%"};
- { 5, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "6.55%"};
- { 6, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "6.52%"};
- { 7, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "2.98%"};
- { 8, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "2.65%"};
- { 9, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "2.48%"};
- { 11, 22637, "", "=q3=Primal Hakkari Idol", "=ds=#m3#"};
- { 12, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "9.4%"};
- { 16, 19867, "", "=q4=Bloodlord's Defender", "=ds=#h1#, #w10#", "", "5.83%"};
- { 17, 19866, "", "=q4=Warblade of the Hakkari", "=ds=#h4#, #w10#", "", "3.96%"};
- { 18, 19874, "", "=q4=Halberd of Smiting", "=ds=#w7#", "", "6.35%"};
- { 19, 20038, "", "=q4=Mandokir's Sting", "=ds=#w2#", "", "5.96%"};
- { 20, 19872, "", "=q4=Swift Razzashi Raptor", "=ds=#e12#", "", "0.43%"};
- { 22, 19870, "", "=q3=Hakkari Loa Cloak", "=ds=#s4#", "", "12.54%"};
- { 23, 19895, "", "=q3=Bloodtinged Kilt", "=ds=#s11#, #a1#", "", "13.50%"};
- { 24, 19869, "", "=q3=Blooddrenched Grips", "=ds=#s9#, #a2#", "", "12.87%"};
- { 25, 19877, "", "=q3=Animist's Leggings", "=ds=#s11#, #a2#", "", "12.14%"};
- { 26, 19878, "", "=q3=Bloodsoaked Pauldrons", "=ds=#s9#, #a4#", "", "12.31%"};
- { 27, 19873, "", "=q3=Overlord's Crimson Band", "=ds=#s13#", "", "12.28%"};
- { 28, 19893, "", "=q3=Zanzil's Seal", "=ds=#s13#", "", "13.11%"};
- { 29, 19863, "", "=q3=Primalist's Seal", "=ds=#s13#", "", "12.32%"};
- };
- {
- Name = BabbleZone["Zul'Gurub"];
- { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Gri'lek"], ""};
- { 2, 19961, "", "=q3=Gri'lek's Grinder", "=ds=#h1#, #w6#", "", "43.90%"};
- { 3, 19962, "", "=q3=Gri'lek's Carver", "=ds=#h2#, #w1#", "", "41.99%"};
- { 4, 19939, "", "=q2=Gri'lek's Blood", "=ds=#m3#", "", "100%"};
- { 6, 0, "INV_Box_01", "=q6="..BabbleBoss["Hazza'rah"], ""};
- { 7, 19968, "", "=q3=Fiery Retributer", "=ds=#h1#, #w10#", "", "38.37%"};
- { 8, 19967, "", "=q3=Thoughtblighter", "=ds=#w12#", "", "45.49%"};
- { 9, 19942, "", "=q2=Hazza'rah's Dream Thread", "=ds=#m3#", "", "100%"};
- { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Renataki"], ""};
- { 17, 19964, "", "=q3=Renataki's Soul Conduit", "=ds=#h3#, #w10#", "", "40.06%"};
- { 18, 19963, "", "=q3=Pitchfork of Madness", "=ds=#w7#", "", "45.51%"};
- { 19, 19940, "", "=q2=Renataki's Tooth", "=ds=#m3#", "", "100%"};
- { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Wushoolay"], ""};
- { 22, 19965, "", "=q3=Wushoolay's Poker", "=ds=#h3#, #w4#", "", "45.21%"};
- { 23, 19993, "", "=q3=Hoodoo Hunting Bow", "=ds=#w2#", "", "40.96%"};
- { 24, 19941, "", "=q2=Wushoolay's Mane", "=ds=#m3#", "", "100%"};
- };
- {
- Name = BabbleBoss["Gahz'ranka"];
- { 1, 19945, "", "=q4=Foror's Eyepatch", "=ds=#s1#, #a2#", "", "8,82%"};
- { 2, 19944, "", "=q4=Nat Pagle's Fish Terminator", "=ds=#w9#", "", "2.39%"};
- { 4, 19947, "", "=q3=Nat Pagle's Broken Reel", "=ds=#s14#", "", "28.20%"};
- { 5, 19946, "", "=q3=Tigule's Harpoon", "=ds=#w7#", "", "29.22%"};
- { 7, 22739, "", "=q3=Tome of Polymorph: Turtle", "=ds=#e10#, =q1=#m1# =ds=#c3#"};
- };
- {
- Name = BabbleBoss["High Priest Thekal"];
- { 1, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", " 14.95%"};
- { 2, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", " 13.74%"};
- { 3, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", " 12.95%"};
- { 4, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", " 6.60%"};
- { 5, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", " 6.56%"};
- { 6, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", " 6.45%"};
- { 8, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.3%"};
- { 9, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"};
- { 16, 19897, "", "=q4=Betrayer's Boots", "=ds=#s12#, #a1#", "", "5.83%"};
- { 17, 19896, "", "=q4=Thekal's Grasp", "=ds=#h3#, #w13#", "", "4.23%"};
- { 18, 19902, "", "=q4=Swift Zulian Tiger", "=ds=#e12#", "", "0.70%"};
- { 20, 19898, "", "=q3=Seal of Jin", "=ds=#s13#", "", "13.65%"};
- { 21, 19899, "", "=q3=Ritualistic Legguards", "=ds=#s11#, #a1#", "", "13.41%"};
- { 22, 20260, "", "=q3=Seafury Leggings", "=ds=#s11#, #a3#", "", "4.30%"};
- { 23, 20266, "", "=q3=Peacekeeper Leggings", "=ds=#s11#, #a4#", "", "8.69%"};
- { 24, 19901, "", "=q3=Zulian Slicer", "=ds=#h1#, #w10#, =q1=#e18#", "", "13.36%"};
- };
- {
- Name = BabbleBoss["High Priestess Arlokk"];
- { 1, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "15.49%"};
- { 2, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "12.52%"};
- { 3, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "13.17%"};
- { 4, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "6.94%"};
- { 5, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "6.65%"};
- { 6, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "6.21%"};
- { 7, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.75%"};
- { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.60%"};
- { 9, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.41%"};
- { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "5.6%"};
- { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"};
- { 16, 19910, "", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#", "", "3.62%"};
- { 17, 19909, "", "=q4=Will of Arlokk", "=ds=#w9#", "", "5.14%"};
- { 19, 19913, "", "=q3=Bloodsoaked Greaves", "=ds=#s12#, #a4#", "", "13.29%"};
- { 20, 19912, "", "=q3=Overlord's Onyx Band", "=ds=#s13#", "", "13.95%"};
- { 21, 19922, "", "=q3=Arlokk's Hoodoo Stick", "=ds=#s15#", "", "13.66%"};
- { 22, 19914, "", "=q3=Panther Hide Sack", "=ds=#m14# #e1#", "", "14.03%"};
- };
- {
- Name = BabbleBoss["Jin'do the Hexxer"];
- { 1, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "13.56%"};
- { 2, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "13.48%"};
- { 3, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "12.09%"};
- { 4, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "7.30%"};
- { 5, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "6.37%"};
- { 6, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "6.10%"};
- { 7, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "2.85%"};
- { 8, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "2.70%"};
- { 9, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "2.36%"};
- { 11, 22637, "", "=q3=Primal Hakkari Idol", "=ds=#m3#"};
- { 12, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.4%"};
- { 16, 19885, "", "=q4=Jin'do's Evil Eye", "=ds=#s2#", "", "6.82%"};
- { 17, 19891, "", "=q4=Jin'do's Bag of Whammies", "=ds=#s15#", "", "7.70%"};
- { 18, 19890, "", "=q4=Jin'do's Hexxer", "=ds=#h3#, #w6#", "", "8.08%"};
- { 19, 19884, "", "=q4=Jin'do's Judgement", "=ds=#w9#", "", "8.36%"};
- { 21, 19888, "", "=q3=Overlord's Embrace", "=ds=#s4#", "", "12.72%"};
- { 22, 19886, "", "=q3=The Hexxer's Cover", "=ds=#s1#, #a1#", "", "12.11%"};
- { 23, 19929, "", "=q3=Bloodtinged Gloves", "=ds=#s9#, #a1#", "", "11.75%"};
- { 24, 19889, "", "=q3=Blooddrenched Leggings", "=ds=#s11#, #a2#", "", "11.97%"};
- { 25, 19892, "", "=q3=Animist's Boots", "=ds=#s12#, #a2#", "", "12.28%"};
- { 26, 19875, "", "=q3=Bloodstained Coif", "=ds=#s1#, #a3#", "", "13.73%"};
- { 27, 19887, "", "=q3=Bloodstained Legplates", "=ds=#s11#, #a3#", "", "11.11%"};
- { 28, 19894, "", "=q3=Bloodsoaked Gauntlets", "=ds=#s9#, #a4#", "", "12.93%"};
- };
- {
- Name = BabbleBoss["Hakkar"];
- { 1, 19857, "", "=q4=Cloak of Consumption", "=ds=#s4#", "", "11.65%"};
- { 2, 20257, "", "=q4=Seafury Gauntlets", "=ds=#s9#, #a3#", "", "4.11%"};
- { 3, 20264, "", "=q4=Peacekeeper Gauntlets", "=ds=#s9#, #a4#", "", "7.37%"};
- { 4, 19855, "", "=q4=Bloodsoaked Legplates", "=ds=#s11#, #a4#", "", "10.52%"};
- { 5, 19876, "", "=q4=Soul Corrupter's Necklace", "=ds=#s2#", "", "10.11%"};
- { 6, 19856, "", "=q4=The Eye of Hakkar", "=ds=#s2#", "", "12.02%"};
- { 8, 19859, "", "=q4=Fang of the Faceless", "=ds=#h1#, #w4#", "", "7.33%"};
- { 9, 19864, "", "=q4=Bloodcaller", "=ds=#h3#, #w10#", "", "7.69%"};
- { 10, 19865, "", "=q4=Warblade of the Hakkari", "=ds=#h3#, #w10#", "", "3.67%"};
- { 11, 19854, "", "=q4=Zin'rokh, Destroyer of Worlds", "=ds=#h2#, #w10#", "", "6.78%"};
- { 12, 19852, "", "=q4=Ancient Hakkari Manslayer", "=ds=#h1#, #w1#", "", "6.62%"};
- { 13, 19862, "", "=q4=Aegis of the Blood God", "=ds=#w8#", "", "9.99%"};
- { 14, 19853, "", "=q4=Gurubashi Dwarf Destroyer", "=ds=#w5#", "", "6.12%"};
- { 15, 19861, "", "=q4=Touch of Chaos", "=ds=#w12#", "", "7.24%"};
- { 16, 19802, "", "=q4=Heart of Hakkar", "=ds=#m2#", "", "100%"};
- { 17, 19950, "", "=q4=Zandalarian Hero Charm", "=q1=#m4#: =ds=#s14#"};
- { 18, 19949, "", "=q4=Zandalarian Hero Medallion", "=q1=#m4#: =ds=#s14#"};
- { 19, 19948, "", "=q4=Zandalarian Hero Badge", "=q1=#m4#: =ds=#s14#"};
- { 21, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "34.3%"};
- };
- {
- Name = "Muddy Churning Waters";
- { 1, 19975, "", "=q1=Zulian Mudskunk", "=ds=#e21#"};
- };
- {
- Name = "Shared ZG Priest Drops";
- { 1, 22721, "", "=q4=Band of Servitude", "=ds=#s13#"};
- { 2, 22722, "", "=q4=Seal of the Gurubashi Berserker", "=ds=#s13#"};
- { 4, 22711, "", "=q3=Cloak of the Hakkari Worshipers", "=ds=#s4#"};
- { 5, 22712, "", "=q3=Might of the Tribe", "=ds=#s4#"};
- { 6, 22720, "", "=q3=Zulian Headdress", "=ds=#s1#, #a1#"};
- { 7, 22716, "", "=q3=Belt of Untapped Power", "=ds=#s10#, #a1#"};
- { 8, 22718, "", "=q3=Blooddrenched Mask", "=ds=#s1#, #a2#"};
- { 9, 22715, "", "=q3=Gloves of the Tormented", "=ds=#s9#, #a3#"};
- { 10, 22714, "", "=q3=Sacrificial Gauntlets", "=ds=#s9#, #a4#"};
- { 11, 22713, "", "=q3=Zulian Scepter of Rites", "=ds=#h3#, #w6#"};
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 20259, "", "=q3=Shadow Panther Hide Gloves", "=ds=#s9#, #a2#"};
- { 2, 20261, "", "=q3=Shadow Panther Hide Belt", "=ds=#s10#, #a2#"};
- { 3, 20263, "", "=q3=Gurubashi Helm", "=ds=#s1#, #a4#"};
- { 4, 19908, "", "=q3=Sceptre of Smiting", "=ds=#h1#, #w6#"};
- { 5, 19921, "", "=q3=Zulian Hacker", "=ds=#h1#, #w1#"};
- { 6, 20258, "", "=q3=Zulian Ceremonial Staff", "=ds=#w9#"};
- { 7, 19727, "", "=q3=Blood Scythe", "=ds=#e19#", "", "0.02%"};
- { 8, 48126, "", "=q1=Razzashi Hatchling", "=ds=#e13#"};
- { 10, 19726, "", "=q2=Bloodvine", "=ds=#e8#", "", ""};
- { 11, 19774, "", "=q2=Souldarite", "=ds=#e8#", "", ""};
- { 12, 19767, "", "=q1=Primal Bat Leather", "=ds=#e8#", "", ""};
- { 13, 19768, "", "=q1=Primal Tiger Leather", "=ds=#e8#", "", ""};
- { 16, 19821, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c1#", "", "0.01%"};
- { 17, 19816, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c2#", "", "0.01%"};
- { 18, 19818, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c3#", "", "0.01%"};
- { 19, 19815, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c4#", "", "0.01%"};
- { 20, 19820, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c5#", "", "0.01%"};
- { 21, 19814, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c6#", "", "0.01%"};
- { 22, 19817, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c7#", "", "0.01%"};
- { 23, 19819, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c8#", "", "0.01%"};
- { 24, 19813, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c9#", "", "0.01%"};
- };
- {
- Name = "Coin's and Bijou's";
- { 1, 19708, "", "=q3=Blue Hakkari Bijou", "=ds=#e15#", "", "1.48%"};
- { 2, 19713, "", "=q3=Bronze Hakkari Bijou", "=ds=#e15#", "", "1.57%"};
- { 3, 19715, "", "=q3=Gold Hakkari Bijou", "=ds=#e15#", "", "1.63%"};
- { 4, 19711, "", "=q3=Green Hakkari Bijou", "=ds=#e15#", "", "1.67%"};
- { 5, 19710, "", "=q3=Orange Hakkari Bijou", "=ds=#e15#", "", "1.76%"};
- { 6, 19712, "", "=q3=Purple Hakkari Bijou", "=ds=#e15#", "", "1.67%"};
- { 7, 19707, "", "=q3=Red Hakkari Bijou", "=ds=#e15#", "", "1.63%"};
- { 8, 19714, "", "=q3=Silver Hakkari Bijou", "=ds=#e15#", "", "1.59%"};
- { 9, 19709, "", "=q3=Yellow Hakkari Bijou", "=ds=#e15#", "", "1.50%"};
- { 16, 19706, "", "=q2=Bloodscalp Coin", "=ds=#e15#", "", "3.01%"};
- { 17, 19701, "", "=q2=Gurubashi Coin", "=ds=#e15#", "", "3.12%"};
- { 18, 19700, "", "=q2=Hakkari Coin", "=ds=#e15#", "", "3.19%"};
- { 19, 19699, "", "=q2=Razzashi Coin", "=ds=#e15#", "", "3.36%"};
- { 20, 19704, "", "=q2=Sandfury Coin", "=ds=#e15#", "", "3.47%"};
- { 21, 19705, "", "=q2=Skullsplitter Coin", "=ds=#e15#", "", "3.32%"};
- { 22, 19702, "", "=q2=Vilebranch Coin", "=ds=#e15#", "", "3.27%"};
- { 23, 19703, "", "=q2=Witherbark Coin", "=ds=#e15#", "", "3.27%"};
- { 24, 19698, "", "=q2=Zulian Coin", "=ds=#e15#", "", "3.01%"};
- };
- {
- Name = "ZG Enchants";
- { 1, 19790, "", "=q3=Animist's Caress", "=q1=#m1# =ds=#c1#"};
- { 2, 19785, "", "=q3=Falcon's Call", "=q1=#m1# =ds=#c2#"};
- { 3, 19787, "", "=q3=Presence of Sight", "=q1=#m1# =ds=#c3#"};
- { 4, 19783, "", "=q3=Syncretist's Sigil", "=q1=#m1# =ds=#c4#"};
- { 5, 19789, "", "=q3=Prophetic Aura", "=q1=#m1# =ds=#c5#"};
- { 6, 19784, "", "=q3=Death's Embrace", "=q1=#m1# =ds=#c6#"};
- { 7, 19786, "", "=q3=Vodouisant's Vigilant Embrace", "=q1=#m1# =ds=#c7#"};
- { 8, 19788, "", "=q3=Hoodoo Hex", "=q1=#m1# =ds=#c8#"};
- { 9, 19782, "", "=q3=Presence of Might", "=q1=#m1# =ds=#c9#"};
- { 16, 20077, "", "=q3=Zandalar Signet of Might", "=ds=#s3# #e17#"};
- { 17, 20076, "", "=q3=Zandalar Signet of Mojo", "=ds=#s3# #e17#"};
- { 18, 20078, "", "=q3=Zandalar Signet of Serenity", "=ds=#s3# #e17#"};
- { 20, 22635, "", "=q3=Savage Guard", "=ds=#s1#/#s11# #e17#"};
- };
- };
-
- -----------------
- --- Naxxramas ---
- -----------------
-
- AtlasLoot_Data["Naxxramas60"] = {
- Name = BabbleZone["Naxxramas"];
- Type = "ClassicRaid";
- Map = "Naxxramas60";
- {
- Name = BabbleBoss["Patchwerk"];
- { 1, 22960, "", "=q4=Cloak of Suturing", "=ds=#s4#","", "20%" },
- { 2, 22815, "", "=q4=Severance", "=ds=#h2#, #w1#","", "20%" },
- { 3, 22820, "", "=q4=Wand of Fates", "=ds=#w12#","", "20%" },
- { 4, 22818, "", "=q4=The Plague Bearer", "=ds=#w8#","", "20%" },
- { 5, 22961, "", "=q4=Band of Reanimation", "=ds=#s13#","", "20%" },
- { 16, 22354, "", "=q4=Desecrated Pauldrons", "=ds=#tt3#","", "100%", "=LT=T3SHOULDER"};
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Grobbulus"];
- { 1, 22968, "", "=q4=Glacial Mantle", "=ds=#s3#, #a1#", "", "20%" },
- { 2, 22967, "", "=q4=Icy Scale Spaulders", "=ds=#s3#, #a3#", "", "20%" },
- { 3, 22803, "", "=q4=Midnight Haze", "=ds=#h3#, #w4#", "", "20%" },
- { 4, 22988, "", "=q4=The End of Dreams", "=ds=#h3#, #w6#","","20%" },
- { 5, 22810, "", "=q4=Toxin Injector", "=ds=#w5#", "","20%" },
- { 16, 22354, "", "=q4=Desecrated Pauldrons", "=ds=#tt3#","", "100%", "=LT=T3SHOULDER"};
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Gluth"];
- { 1, 22983, "", "=q4=Rime Covered Mantle", "=ds=#s3#, #a1#", "", "20%" },
- { 2, 22813, "", "=q4=Claymore of Unholy Might", "=ds=#h2#, #w10#", "","20%" },
- { 3, 23075, "", "=q4=Death's Bargain", "=ds=#w8#", "","20%" },
- { 4, 22994, "", "=q4=Digested Hand of Power", "=ds=#s15#","","20%"},
- { 5, 22981, "", "=q4=Gluth's Missing Collar", "=ds=#s2#","","20%" },
- { 16, 22354, "", "=q4=Desecrated Pauldrons", "=ds=#tt3#","", "100%", "=LT=T3SHOULDER"};
- { 17, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#","", "8.33%", "=LT=T3WRIST"};
- { 18, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#","", "8.33%", "=LT=T3WAIST"};
- { 19, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#","", "8.33%", "=LT=T3FEET"};
- { 21, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 22, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Thaddius"];
- { 1, 23070, "", "=q4=Leggings of Polarity", "=ds=#s11#, #a1#" ,"", "20%"},
- { 2, 23000, "", "=q4=Plated Abomination Ribcage", "=ds=#s5#, #a4#","", "20%" },
- { 3, 22808, "", "=q4=The Castigator", "=ds=#h1#, #w6#" ,"", "20%"},
- { 4, 22801, "", "=q4=Spire of Twilight", "=ds=#w9#" ,"", "20%"},
- { 5, 23001, "", "=q4=Eye of Diminution", "=ds=#s14#" ,"", "20%"},
- { 16, 22353, "", "=q4=Desecrated Helmet", "=ds=#tt3#" ,"", "100%", "=LT=T3HEAD"};
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Anub'Rekhan"];
- { 1, 22938, "", "=q4=Cryptfiend Silk Cloak", "=ds=#s4#", "","20%" },
- { 2, 22936, "", "=q4=Wristguards of Vengeance", "=ds=#s8#, #a4#","", "20%" },
- { 3, 22937, "", "=q4=Gem of Nerubis", "=ds=#s15#","", "20%" },
- { 4, 22939, "", "=q4=Band of Unanswered Prayers", "=ds=#s13#","", "20%" },
- { 5, 22935, "", "=q4=Touch of Frost", "=ds=#s2#", "", "20%" },
- { 16, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#","", "100%", "=LT=T3WRIST"};
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Grand Widow Faerlina"];
- { 1, 22941, "", "=q4=Polar Shoulder Pads", "=ds=#s3#, #a2#","", "20%" },
- { 2, 22940, "", "=q4=Icebane Pauldrons", "=ds=#s3#, #a4#","", "20%" },
- { 3, 22806, "", "=q4=Widow's Remorse", "=ds=#h1#, #w10#","", "20%" },
- { 4, 22942, "", "=q4=The Widow's Embrace", "=ds=#h3#, #w6#","", "20%" },
- { 5, 22943, "", "=q4=Malice Stone Pendant", "=ds=#s2#","", "20%" },
- { 16, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#" ,"", "100%", "=LT=T3WRIST"};
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Maexxna"];
- { 1, 23220, "", "=q4=Crystal Webbed Robe", "=ds=#s5#, #a1#","", "20%" },
- { 2, 22804, "", "=q4=Maexxna's Fang", "=ds=#h1#, #w4#","", "20%" },
- { 3, 22807, "", "=q4=Wraith Blade", "=ds=#h3#, #w10#","", "20%" },
- { 4, 22947, "", "=q4=Pendant of Forgotten Names", "=ds=#s2#","", "20%" },
- { 5, 22954, "", "=q4=Kiss of the Spider", "=ds=#s14#","", "20%" },
- { 16, 22357, "", "=q4=Desecrated Gauntlets", "=ds=#tt3#","", "100%", "=LT=T3HAND"};
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Instructor Razuvious"];
- { 1, 23017, "", "=q4=Veil of Eclipse", "=ds=#s4#","", "16.67%" },
- { 2, 23219, "", "=q4=Girdle of the Mentor", "=ds=#s10#, #a4#","", "16.67%" },
- { 3, 23014, "", "=q4=Iblis, Blade of the Fallen Seraph", "=ds=#h1#, #w10#","", "16.67%" },
- { 4, 23009, "", "=q4=Wand of the Whispering Dead", "=ds=#w12#","", "16.67%" },
- { 5, 23004, "", "=q4=Idol of Longevity", "=ds=#s16#, #w14#","", "16.67%" },
- { 6, 23018, "", "=q4=Signet of the Fallen Defender", "=ds=#s13#","", "16.67%" },
- { 16, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#" ,"", "100%", "=LT=T3FEET"};
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Gothik the Harvester"];
- { 1, 23032, "", "=q4=Glacial Headdress", "=ds=#s1#, #a1#","", "20%" },
- { 2, 23021, "", "=q4=The Soul Harvester's Bindings", "=ds=#s8#, #a1#","", "20%" },
- { 3, 23020, "", "=q4=Polar Helmet", "=ds=#s1#, #a2#","", "20%" },
- { 4, 23073, "", "=q4=Boots of Displacement", "=ds=#s12#, #a2#","", "20%" },
- { 5, 23023, "", "=q4=Sadist's Collar", "=ds=#s2#","", "20%" },
- { 16, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#" ,"", "100%", "=LT=T3SHOULDER"};
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["The Four Horsemen"];
- { 1, 23071, "", "=q4=Leggings of Apocalypse", "=ds=#s11#, #a2#","", "16.67%" },
- { 2, 22809, "", "=q4=Maul of the Redeemed Crusader", "=ds=#h2#, #w6#","", "16.67%" },
- { 3, 22691, "", "=q4=Corrupted Ashbringer", "=ds=#h2#, #w10#","", "16.67%" },
- { 4, 22811, "", "=q4=Soulstring", "=ds=#w2#","", "20%" },
- { 5, 23025, "", "=q4=Seal of the Damned", "=ds=#s13#","", "16.67%" },
- { 6, 23027, "", "=q4=Warmth of Forgiveness", "=ds=#s14#","", "16.67%" },
- { 16, 22349, "", "=q4=Desecrated Breastplate", "=ds=#tt3#" ,"", "100%", "=LT=T3CHEST"};
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Noth the Plaguebringer"];
- { 1, 23030, "", "=q4=Cloak of the Scourge", "=ds=#s4#","", "14.29%" },
- { 2, 22816, "", "=q4=Hatchet of Sundered Bone", "=ds=#h1#, #w1#","", "14.29%" },
- { 3, 23005, "", "=q4=Totem of Flowing Water", "=ds=#s16#, #w15#","", "14.29%" },
- { 4, 23006, "", "=q4=Libram of Light", "=ds=#s16#, #w16#","", "14.29%" },
- { 5, 23029, "", "=q4=Noth's Frigid Heart", "=ds=#s15#","", "14.29%" },
- { 6, 23031, "", "=q4=Band of the Inevitable", "=ds=#s13#","", "14.29%" },
- { 7, 23028, "", "=q4=Hailstone Band", "=ds=#s13#","", "14.29%" },
- { 16, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#" ,"", "100%", "=LT=T3WAIST"};
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Heigan the Unclean"];
- { 1, 23035, "", "=q4=Preceptor's Hat", "=ds=#s1#, #a1#","", "20%" },
- { 2, 23033, "", "=q4=Icy Scale Coif", "=ds=#s1#, #a3#","", "20%" },
- { 3, 23019, "", "=q4=Icebane Helmet", "=ds=#s1#, #a4#","", "20%" },
- { 4, 23068, "", "=q4=Legplates of Carnage", "=ds=#s11#, #a4#","", "20%" },
- { 5, 23036, "", "=q4=Necklace of Necropsy", "=ds=#s2#","", "20%" },
- { 16, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#" ,"", "100%", "=LT=T3WAIST"};
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Loatheb"];
- { 1, 23039, "", "=q4=The Eye of Nerub", "=ds=#w7#","", "20%" },
- { 2, 22800, "", "=q4=Brimstone Staff", "=ds=#w9#","", "20%" },
- { 3, 23037, "", "=q4=Ring of Spiritual Fervor", "=ds=#s13#","", "20%" },
- { 4, 23038, "", "=q4=Band of Unnatural Forces", "=ds=#s13#" ,"", "20%"},
- { 5, 23042, "", "=q4=Loatheb's Reflection", "=ds=#s14#","", "20%" },
- { 16, 22352, "", "=q4=Desecrated Legplates", "=ds=#tt3#" ,"", "100%", "=LT=T3LEGS"};
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Sapphiron"];
- { 1, 23050, "", "=q4=Cloak of the Necropolis", "=ds=#s4#","","18.18%" },
- { 2, 23045, "", "=q4=Shroud of Dominion", "=ds=#s4#","","18.18%" },
- { 3, 23072, "", "=q4=Fists of the Unrelenting", "=ds=#s9#, #a4#","","18.18%" },
- { 4, 23043, "", "=q4=The Face of Death", "=ds=#w8#","","18.18%" },
- { 5, 23242, "", "=q4=Claw of the Frost Wyrm", "=ds=#h4#, #w13#","","18.18%" },
- { 6, 23049, "", "=q4=Sapphiron's Left Eye", "=ds=#s15#","","18.18%" },
- { 7, 23048, "", "=q4=Sapphiron's Right Eye", "=ds=#s15#","","18.18%" },
- { 8, 23040, "", "=q4=Glyph of Deflection", "=ds=#s14#","","18.18%" },
- { 9, 23047, "", "=q4=Eye of the Dead", "=ds=#s14#" ,"","18.18%" },
- { 10, 23046, "", "=q4=The Restrained Essence of Sapphiron", "=ds=#s14#","","18.18%" },
- { 11, 23041, "", "=q4=Slayer's Crest", "=ds=#s14#","","18.18%" },
- { 12, 19761,"","Fang of the Frost Wyrm","=ds=#h3#, #w13#" },
- { 16, 23545, "", "=q4=Power of the Scourge", "=ds=#s3# #e17#","","50%" },
- { 17, 23547, "", "=q4=Resilience of the Scourge", "=ds=#s3# #e17#","","50%" },
- { 18, 23549, "", "=q4=Fortitude of the Scourge", "=ds=#s3# #e17#","","50%" },
- { 19, 23548, "", "=q4=Might of the Scourge", "=ds=#s3# #e17#" ,"","50%"},
- { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
- { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
- };
- {
- Name = BabbleBoss["Kel'Thuzad"];
- { 1, 22802, "", "=q4=Kingsfall", "=ds=#h1#, #w4#","","18.18%" },
- { 2, 23054, "", "=q4=Gressil, Dawn of Ruin", "=ds=#h1#, #w10#" ,"","18.18%"},
- { 3, 23577, "", "=q4=The Hungering Cold", "=ds=#h1#, #w10#" ,"","18.18%"},
- { 4, 23056, "", "=q4=Hammer of the Twisting Nether", "=ds=#h1#, #w6#","","18.18%" },
- { 5, 22798, "", "=q4=Might of Menethil", "=ds=#h2#, #w6#","","18.18%" },
- { 6, 22799, "", "=q4=Soulseeker", "=ds=#w9#","","18.18%" },
- { 7, 22821, "", "=q4=Doomfinger", "=ds=#w12#" ,"","18.18%"},
- { 8, 22812, "", "=q4=Nerubian Slavemaker", "=ds=#w3#" ,"","18.18%"},
- { 9, 22819, "", "=q4=Shield of Condemnation", "=ds=#w8#" ,"","18.18%"},
- { 10, 23057, "", "=q4=Gem of Trapped Innocents", "=ds=#s2#" ,"","18.18%"},
- { 11, 23053, "", "=q4=Stormrage's Talisman of Seething", "=ds=#s2#","","18.18%" },
- { 13, 691119, "", "=q4=The Phylactery of Kel'Thuzad", "=ds=#m2#","", "100%" },
- { 14, 23207, "", "=q4=Mark of the Champion", "=q1=#m4# =ds=#s14#" },
- { 15, 23206, "", "=q4=Mark of the Champion", "=q1=#m4# =ds=#s14#" },
- { 16, 1510496, "", "=q4=Desecrated Ring", "=ds=#tt3#","", "100%" , "=LT=T3FINGER"};
- { 18, 22733, "", "=q1=Staff Head of Atiesh", "=ds=#m3#" },
- { 19, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#"},
- { 20, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#"},
- { 21, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#"},
- { 22, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#"},
- };
- {
- Name = AL["Trash Mobs"];
- { 1, 23069, "", "=q4=Necro-Knight's Garb", "=ds=#s5#, #a1# =q1=#m1# =ds=#c5#, #c3#, #c8#" },
- { 2, 23226, "", "=q4=Ghoul Skin Tunic", "=ds=#s5#, #a2#" },
- { 3, 23663, "", "=q4=Girdle of Elemental Fury", "=ds=#s10#, #a3#" },
- { 4, 23664, "", "=q4=Pauldrons of Elemental Fury", "=ds=#s3#, #a3# =q1=#m1# =ds=#c7#" },
- { 5, 23665, "", "=q4=Leggings of Elemental Fury", "=ds=#s11#, #a3# =q1=#m1# =ds=#c7#" },
- { 6, 23666, "", "=q4=Belt of the Grand Crusader", "=ds=#s10#, #a4# =q1=#m1# =ds=#c4#" },
- { 7, 23667, "", "=q4=Spaulders of the Grand Crusader", "=ds=#s3#, #a4# =q1=#m1# =ds=#c4#" },
- { 8, 23668, "", "=q4=Leggings of the Grand Crusader", "=ds=#s11#, #a4# =q1=#m1# =ds=#c4#" },
- { 9, 23044, "", "=q4=Harbinger of Doom", "=ds=#h1#, #w4#" },
- { 10, 23221, "", "=q4=Misplaced Servo Arm", "=ds=#h1# #w6#" },
- { 11, 23238, "", "=q4=Stygian Buckler", "=ds=#w8#" },
- { 12, 23237, "", "=q4=Ring of the Eternal Flame", "=ds=#s13#" },
- { 16, 22376, "", "=q3=Wartorn Cloth Scrap", "=ds=#m3#" },
- { 17, 22373, "", "=q3=Wartorn Leather Scrap", "=ds=#m3#" },
- { 18, 22374, "", "=q3=Wartorn Chain Scrap", "=ds=#m3#" },
- { 19, 22375, "", "=q3=Wartorn Plate Scrap", "=ds=#m3#" },
- { 21, 22708, "", "=q1=Fate of Ramaladni", "=ds=#m3#" },
- { 22, 23055, "", "=q1=Word of Thawing", "=ds=#m20#" },
- };
- };
-
- ---------------------
- --- Onyxia's Lair 60 ---
- ---------------------
-
- AtlasLoot_Data["Onyxia60"] = {
- Name = BabbleZone["Onyxia's Lair"];
- Type = "ClassicRaid";
- Map = "Onyxia60";
- {
- Name = BabbleZone["Onyxia's Lair"];
- { 1, 17078, "", "=q4=Sapphiron Drape", "=ds=#s4#","", "28.57%" },
- { 2, 18205, "", "=q4=Eskhandar's Collar", "=ds=#s2#","", "28.57%" },
- { 3, 18813, "", "=q4=Ring of Binding", "=ds=#s13#", "","28.57%" },
- { 4, 17064, "", "=q4=Shard of the Scale", "=ds=#s14#","", "28.57%" },
- { 5, 17067, "", "=q4=Ancient Cornerstone Grimoire", "=ds=#s15#","", "28.57%" },
- { 6, 17075, "", "=q4=Vis'kag the Bloodletter", "=ds=#h1#, #w10#","", "28.57%" },
- { 7, 17068, "", "=q4=Deathbringer","=ds=#h1#, #w1#","", "28.57%" },
- { 9, 18705, "", "=q4=Mature Black Dragon Sinew", "=ds=#m3# =q1=#m1# =ds=#c2#", "","100%" },
- { 10, 18713, "", "=q4=Rhok'delar, Longbow of the Ancient Keepers", "=q1=#m4#: =ds=#w2#, =q1=#m1# =ds=#c2#" },
- { 12, 15410, "","=q3=Scale of Onyxia", "=ds=#e8#" },
- { 13, 17966, "", "=q2=Onyxia Hide Backpack", "=ds=#m14# #e1#","", "100%"},
- { 16, 2522460, "", "=q4=Chromatic Headpiece", "=ds=#tt2#", "", "100%", "=LT=T2HEAD"};
- { 18, 18423, "", "=q4=Head of Onyxia","=ds=#m2#","", "100%" },
- { 19, 18404, "", "=q4=Onyxia Tooth Pendant", "=q1=#m4#: =ds=#s2#" },
- { 20, 18403, "", "=q4=Dragonslayer's Signet", "=q1=#m4#: =ds=#s13#" },
- { 21, 18406, "", "=q4=Onyxia Blood Talisman", "=q1=#m4#: =ds=#s14#" },
- { 23, 49636, "", "=q4=Reins of the Onyxian Drake", "=ds=#e12#", [AtlasLoot_Difficulty.MIN_DIF] = AtlasLoot_Difficulty.Heroic };
- };
- };
-
- --------------------------
- --- Sets & Collections ---
- --------------------------
-
- ------------------------------------
- --- Dungeon 1 and 2 Sets (D1/D2) ---
- ------------------------------------
-
- AtlasLoot_Data["T0"] = {
- Name = "Dungeon Sets";
- Type = "ClassicDungeonExt";
- {
- Name = AL["Druid"];
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#t0s1#", "=ec1=#j6#"};
- { 2, 16720, "", "=q3=Wildheart Cowl", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "7.09%"};
- { 3, 16718, "", "=q3=Wildheart Spaulders", "=ds="..BabbleBoss["Gizrul the Slavener"].." ("..AL["LBRS"]..")", "", "11.04%"};
- { 4, 16706, "", "=q3=Wildheart Vest", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "7.36%"};
- { 5, 16714, "", "=q3=Wildheart Bracers", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.85%"};
- { 6, 16717, "", "=q3=Wildheart Gloves", "=ds="..BabbleBoss["The Unforgiven"].." ("..AL["Strat"]..")", "", "12.61%"};
- { 7, 16716, "", "=q3=Wildheart Belt", "=ds="..AL["Trash Mobs"].." ("..AL["Scholo"]..")", "", "2.60%"};
- { 8, 16719, "", "=q3=Wildheart Kilt", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "6.58%"};
- { 9, 16715, "", "=q3=Wildheart Boots", "=ds="..BabbleBoss["Mother Smolderweb"].." ("..AL["LBRS"]..")", "", "13.03%"};
- { 16, 0, "Spell_Nature_Regeneration", "=q6=#t05s1#", "=ec1=#j7#"};
- { 17, 22109, "", "=q4=Feralheart Cowl", "=ds=#a2#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 18, 22112, "", "=q3=Feralheart Spaulders", "=ds=#a2#, #s3#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 19, 22113, "", "=q4=Feralheart Vest", "=ds=#a2#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 20, 22108, "", "=q3=Feralheart Bracers", "=ds=#a2#, #s8#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 21, 22110, "", "=q4=Feralheart Gloves", "=ds=#a2#, #s9#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 22, 22106, "", "=q3=Feralheart Belt", "=ds=#a2#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 23, 22111, "", "=q3=Feralheart Kilt", "=ds=#a2#, #s11#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 24, 22107, "", "=q4=Feralheart Boots", "=ds=#a2#, #s12#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t0s2#", "=ec1=#j6#"};
- { 2, 16677, "", "=q3=Beaststalker's Cap", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "7.00%"};
- { 3, 16679, "", "=q3=Beaststalker's Mantle", "=ds="..BabbleBoss["Overlord Wyrmthalak"].." ("..AL["LBRS"]..")", "", "9.89%"};
- { 4, 16674, "", "=q3=Beaststalker's Tunic", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "6.81%"};
- { 5, 16681, "", "=q3=Beaststalker's Bindings", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.64%"};
- { 6, 16676, "", "=q3=Beaststalker's Gloves", "=ds="..BabbleBoss["War Master Voone"].." ("..AL["LBRS"]..")", "", "9.15%"};
- { 7, 16680, "", "=q3=Beaststalker's Belt", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.36%"};
- { 8, 16678, "", "=q3=Beaststalker's Pants", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "6.16%"};
- { 9, 16675, "", "=q3=Beaststalker's Boots", "=ds="..BabbleBoss["Nerub'enkan"].." ("..AL["Strat"]..")", "", "13.62%"};
- { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t05s2#", "=ec1=#j7#"};
- { 17, 22013, "", "=q4=Beastmaster's Cap", "=ds=#a3#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 18, 22016, "", "=q3=Beastmaster's Mantle", "=ds=#a3#, #s3#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 19, 22060, "", "=q4=Beastmaster's Tunic", "=ds=#a3#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 20, 22011, "", "=q3=Beastmaster's Bindings", "=ds=#a3#, #s8#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 21, 22015, "", "=q4=Beastmaster's Gloves", "=ds=#a3#, #s9#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 22, 22010, "", "=q3=Beastmaster's Belt", "=ds=#a3#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 23, 22017, "", "=q3=Beastmaster's Pants", "=ds=#a3#, #s11#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 24, 22061, "", "=q4=Beastmaster's Boots", "=ds=#a3#, #s12#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#t0s3#", "=ec1=#j6#"};
- { 2, 16686, "", "=q3=Magister's Crown", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "8.60%"};
- { 3, 16689, "", "=q3=Magister's Mantle", "=ds="..BabbleBoss["Ras Frostwhisper"].." ("..AL["Scholo"]..")", "", "11.93%"};
- { 4, 16688, "", "=q3=Magister's Robes", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "7.24%"};
- { 5, 16683, "", "=q3=Magister's Bindings", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.19%"};
- { 6, 16684, "", "=q3=Magister's Gloves", "=ds="..BabbleBoss["Doctor Theolen Krastinov"].." ("..AL["Scholo"]..")", "", "9.75%"};
- { 7, 16685, "", "=q3=Magister's Belt", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.32%"};
- { 8, 16687, "", "=q3=Magister's Leggings", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "6.79%"};
- { 9, 16682, "", "=q3=Magister's Boots", "=ds="..BabbleBoss["Hearthsinger Forresten"].." ("..AL["Strat"]..")", "", "10.86%"};
- { 16, 0, "Spell_Frost_IceStorm", "=q6=#t05s3#", "=ec1=#j7#"};
- { 17, 22065, "", "=q4=Sorcerer's Crown", "=ds=#a1#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 18, 22068, "", "=q3=Sorcerer's Mantle", "=ds=#a1#, #s3#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 19, 22069, "", "=q4=Sorcerer's Robes", "=ds=#a1#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 20, 22063, "", "=q3=Sorcerer's Bindings", "=ds=#a1#, #s8#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 21, 22066, "", "=q4=Sorcerer's Gloves", "=ds=#a1#, #s9#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 22, 22062, "", "=q3=Sorcerer's Belt", "=ds=#a1#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 23, 22067, "", "=q3=Sorcerer's Leggings", "=ds=#a1#, #s11#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 24, 22064, "", "=q4=Sorcerer's Boots", "=ds=#a1#, #s12#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t0s4#", "=ec1=#j6#"};
- { 2, 16727, "", "=q3=Lightforge Helm", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "5.32%"};
- { 3, 16729, "", "=q3=Lightforge Spaulders", "=ds="..BabbleBoss["The Beast"].." ("..AL["UBRS"]..")", "", "13.62%"};
- { 4, 16726, "", "=q3=Lightforge Breastplate", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "3.76%"};
- { 5, 16722, "", "=q3=Lightforge Bracers", "=ds="..AL["Trash Mobs"].." ("..AL["Scholo"]..")", "", "3.37%"};
- { 6, 16724, "", "=q3=Lightforge Gauntlets", "=ds="..BabbleBoss["Timmy the Cruel"].." ("..AL["Strat"]..")", "", "10.42%"};
- { 7, 16723, "", "=q3=Lightforge Belt", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.93%"};
- { 8, 16728, "", "=q3=Lightforge Legplates", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "4.20%"};
- { 9, 16725, "", "=q3=Lightforge Boots", "=ds="..BabbleBoss["Balnazzar"].." ("..AL["Strat"]..")", "", "11.11%"};
- { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t05s4#", "=ec1=#j7#"};
- { 17, 22091, "", "=q4=Soulforge Helm", "=ds=#a4#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 18, 22093, "", "=q3=Soulforge Spaulders", "=ds=#a4#, #s3#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 19, 22089, "", "=q4=Soulforge Breastplate", "=ds=#a4#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 20, 22088, "", "=q3=Soulforge Bracers", "=ds=#a4#, #s8#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 21, 22090, "", "=q4=Soulforge Gauntlets", "=ds=#a4#, #s9#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 22, 22086, "", "=q3=Soulforge Belt", "=ds=#a4#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 23, 22092, "", "=q3=Soulforge Legplates", "=ds=#a4#, #s11#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 24, 22087, "", "=q4=Soulforge Boots", "=ds=#a4#, #s12#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t0s5#", "=ec1=#j6#"};
- { 2, 16693, "", "=q3=Devout Crown", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "7.89%"};
- { 3, 16695, "", "=q3=Devout Mantle", "=ds="..BabbleBoss["Solakar Flamewreath"].." ("..AL["UBRS"]..")", "", "12.84%"};
- { 4, 16690, "", "=q3=Devout Robe", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "6.20%"};
- { 5, 16697, "", "=q3=Devout Bracers", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.13%"};
- { 6, 16692, "", "=q3=Devout Gloves", "=ds="..BabbleBoss["Archivist Galford"].." ("..AL["Strat"]..")", "", "12.46%"};
- { 7, 16696, "", "=q3=Devout Belt", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "2.07%"};
- { 8, 16694, "", "=q3=Devout Skirt", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "7.42%"};
- { 9, 16691, "", "=q3=Devout Sandals", "=ds="..BabbleBoss["Maleki the Pallid"].." ("..AL["Strat"]..")", "", "13.64%"};
- { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t05s5#", "=ec1=#j7#"};
- { 17, 22080, "", "=q4=Virtuous Crown", "=ds=#a1#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 18, 22082, "", "=q3=Virtuous Mantle", "=ds=#a1#, #s3#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 19, 22083, "", "=q4=Virtuous Robe", "=ds=#a1#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 20, 22079, "", "=q3=Virtuous Bracers", "=ds=#a1#, #s8#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 21, 22081, "", "=q4=Virtuous Gloves", "=ds=#a1#, #s9#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 22, 22078, "", "=q3=Virtuous Belt", "=ds=#a1#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 23, 22085, "", "=q3=Virtuous Skirt", "=ds=#a1#, #s11#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 24, 22084, "", "=q4=Virtuous Sandals", "=ds=#a1#, #s12#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
- { 1, 0, "Ability_BackStab", "=q6=#t0s6#", "=ec1=#j6#"};
- { 2, 16707, "", "=q3=Shadowcraft Cap", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "6.65%"};
- { 3, 16708, "", "=q3=Shadowcraft Spaulders", "=ds="..BabbleBoss["Cannon Master Willey"].." ("..AL["Strat"]..")", "", "10.68%"};
- { 4, 16721, "", "=q3=Shadowcraft Tunic", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "6.09%"};
- { 5, 16710, "", "=q3=Shadowcraft Bracers", "=ds="..AL["Trash Mobs"].." ("..AL["Scholo"]..")", "", "3.51%"};
- { 6, 16712, "", "=q3=Shadowcraft Gloves", "=ds="..BabbleBoss["Shadow Hunter Vosh'gajin"].." ("..AL["LBRS"]..")", "", "11.89%"};
- { 7, 16713, "", "=q3=Shadowcraft Belt", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.05%"};
- { 8, 16709, "", "=q3=Shadowcraft Pants", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "7.76%"};
- { 9, 16711, "", "=q3=Shadowcraft Boots", "=ds="..BabbleBoss["Rattlegore"].." ("..AL["Scholo"]..")", "", "14.32%"};
- { 16, 0, "Ability_BackStab", "=q6=#t05s6#", "=ec1=#j7#"};
- { 17, 22005, "", "=q4=Darkmantle Cap", "=ds=#a2#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 18, 22008, "", "=q3=Darkmantle Spaulders", "=ds=#a2#, #s3#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 19, 22009, "", "=q4=Darkmantle Tunic", "=ds=#a2#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 20, 22004, "", "=q3=Darkmantle Bracers", "=ds=#a2#, #s8#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 21, 22006, "", "=q4=Darkmantle Gloves", "=ds=#a2#, #s9#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 22, 22002, "", "=q3=Darkmantle Belt", "=ds=#a2#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 23, 22007, "", "=q3=Darkmantle Pants", "=ds=#a2#, #s11#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 24, 22003, "", "=q4=Darkmantle Boots", "=ds=#a2#, #s12#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t0s7#", "=ec1=#j6#"};
- { 2, 16667, "", "=q3=Coif of Elements", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "2.86%"};
- { 3, 16669, "", "=q3=Pauldrons of Elements", "=ds="..BabbleBoss["Gyth"].." ("..AL["UBRS"]..")", "", "14.77%"};
- { 4, 16666, "", "=q3=Vest of Elements", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "3.03%"};
- { 5, 16671, "", "=q3=Bindings of Elements", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.59%"};
- { 6, 16672, "", "=q3=Gauntlets of Elements", "=ds="..BabbleBoss["Pyroguard Emberseer"].." ("..AL["UBRS"]..")", "", "14.23%"};
- { 7, 16673, "", "=q3=Cord of Elements", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.06%"};
- { 8, 16668, "", "=q3=Kilt of Elements", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "3.02%"};
- { 9, 16670, "", "=q3=Boots of Elements", "=ds="..BabbleBoss["Highlord Omokk"].." ("..AL["LBRS"]..")", "", "9.35%"};
- { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t05s7#", "=ec1=#j7#"};
- { 17, 22097, "", "=q4=Coif of The Five Thunders", "=ds=#a3#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 18, 22101, "", "=q3=Pauldrons of The Five Thunders", "=ds=#a3#, #s3#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 19, 22102, "", "=q4=Vest of The Five Thunders", "=ds=#a3#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 20, 22095, "", "=q3=Bindings of The Five Thunders", "=ds=#a3#, #s8#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 21, 22099, "", "=q4=Gauntlets of The Five Thunders", "=ds=#a3#, #s9#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 22, 22098, "", "=q3=Cord of The Five Thunders", "=ds=#a3#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 23, 22100, "", "=q3=Kilt of The Five Thunders", "=ds=#a3#, #s11#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 24, 22096, "", "=q4=Boots of The Five Thunders", "=ds=#a3#, #s12#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t0s8#", "=ec1=#j6#"};
- { 2, 16698, "", "=q3=Dreadmist Mask", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "8.78%"};
- { 3, 16701, "", "=q3=Dreadmist Mantle", "=ds="..BabbleBoss["Jandice Barov"].." ("..AL["Scholo"]..")", "", "12.20%"};
- { 4, 16700, "", "=q3=Dreadmist Robe", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "8.04%"};
- { 5, 16703, "", "=q3=Dreadmist Bracers", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.68%"};
- { 6, 16705, "", "=q3=Dreadmist Wraps", "=ds="..BabbleBoss["Lorekeeper Polkelt"].." ("..AL["Scholo"]..")", "", "14.54%"};
- { 7, 16702, "", "=q3=Dreadmist Belt", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.03%"};
- { 8, 16699, "", "=q3=Dreadmist Leggings", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "7.31%"};
- { 9, 16704, "", "=q3=Dreadmist Sandals", "=ds="..BabbleBoss["Baroness Anastari"].." ("..AL["Strat"]..")", "", "13.16%"};
- { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t05s8#", "=ec1=#j7#"};
- { 17, 22074, "", "=q4=Deathmist Mask", "=ds=#a1#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 18, 22073, "", "=q3=Deathmist Mantle", "=ds=#a1#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 19, 22075, "", "=q4=Deathmist Robe", "=ds=#a1#, #s3#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 20, 22071, "", "=q3=Deathmist Bracers", "=ds=#a1#, #s8#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 21, 22077, "", "=q4=Deathmist Wraps", "=ds=#a1#, #s9#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 22, 22070, "", "=q3=Deathmist Belt", "=ds=#a1#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 23, 22072, "", "=q3=Deathmist Leggings", "=ds=#a1#, #s11#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 24, 22076, "", "=q4=Deathmist Sandals", "=ds=#a1#, #s12#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
- { 1, 0, "INV_Shield_05", "=q6=#t0s9#", "=ec1=#j6#"};
- { 2, 16731, "", "=q3=Helm of Valor", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "6.54%"};
- { 3, 16733, "", "=q3=Spaulders of Valor", "=ds="..BabbleBoss["Warchief Rend Blackhand"].." ("..AL["UBRS"]..")", "", "13.39%"};
- { 4, 16730, "", "=q3=Breastplate of Valor", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "5.83%"};
- { 5, 16735, "", "=q3=Bracers of Valor", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.49%"};
- { 6, 16737, "", "=q3=Gauntlets of Valor", "=ds="..BabbleBoss["Ramstein the Gorger"].." ("..AL["Strat"]..")", "", "9.58%"};
- { 7, 16736, "", "=q3=Belt of Valor", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.96%"};
- { 8, 16732, "", "=q3=Legplates of Valor", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "5.74%"};
- { 9, 16734, "", "=q3=Boots of Valor", "=ds="..BabbleBoss["Kirtonos the Herald"].." ("..AL["Scholo"]..")", "", "11.12%"};
- { 16, 0, "INV_Shield_05", "=q6=#t05s9#", "=ec1=#j7#"};
- { 17, 21999, "", "=q4=Helm of Heroism", "=ds=#a4#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 18, 22001, "", "=q3=Spaulders of Heroism", "=ds=#a4#, #s3#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 19, 21997, "", "=q4=Breastplate of Heroism", "=ds=#a4#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 20, 21996, "", "=q3=Bracers of Heroism", "=ds=#a4#, #s8#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 21, 21998, "", "=q4=Gauntlets of Heroism", "=ds=#a4#, #s9#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 22, 21994, "", "=q3=Belt of Heroism", "=ds=#a4#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 23, 22000, "", "=q3=Legplates of Heroism", "=ds=#a4#, #s11#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- { 24, 21995, "", "=q4=Boots of Heroism", "=ds=#a4#, #s12#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal};
- };
- };
-
- -----------------------------
- --- Tier 1/2 Sets (T1/T2) ---
- -----------------------------
-
- AtlasLoot_Data["T1"] = {
- Name = "Tier 1";
- Type = "ClassicRaid";
- {
- Name = AL["Druid"];
- { 1, 16834, "", "=q4=Cenarion Helm", "=ds="..BabbleBoss["Garr"], "", "11.51%"};
- { 2, 16836, "", "=q4=Cenarion Spaulders", "=ds="..BabbleBoss["Baron Geddon"], "", "19.52%"};
- { 3, 16833, "", "=q4=Cenarion Vestments", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.21%"};
- { 4, 16830, "", "=q4=Cenarion Bracers", "=ds="..AL["Trash Mobs"], "", "0.17%"};
- { 5, 16831, "", "=q4=Cenarion Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "19.53%"};
- { 6, 16828, "", "=q4=Cenarion Belt", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 7, 16835, "", "=q4=Cenarion Leggings", "=ds="..BabbleBoss["Magmadar"], "", "12.90%"};
- { 8, 16829, "", "=q4=Cenarion Boots", "=ds="..BabbleBoss["Lucifron"], "", "10.72%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
- { 1, 16846, "", "=q4=Giantstalker's Helmet", "=ds="..BabbleBoss["Garr"], "", "11.57%"};
- { 2, 16848, "", "=q4=Giantstalker's Epaulets", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "19.64%"};
- { 3, 16845, "", "=q4=Giantstalker's Breastplate", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.83%"};
- { 4, 16850, "", "=q4=Giantstalker's Bracers", "=ds="..AL["Trash Mobs"], "", "0.18%"};
- { 5, 16852, "", "=q4=Giantstalker's Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "18.58%"};
- { 6, 16851, "", "=q4=Giantstalker's Belt", "=ds="..AL["Trash Mobs"], "", "0.17%"};
- { 7, 16847, "", "=q4=Giantstalker's Leggings", "=ds="..BabbleBoss["Magmadar"], "", "13.28%"};
- { 8, 16849, "", "=q4=Giantstalker's Boots", "=ds="..BabbleBoss["Gehennas"], "", "14.54%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
- { 1, 16795, "", "=q4=Arcanist Crown", "=ds="..BabbleBoss["Garr"], "", "11.31%"};
- { 2, 16797, "", "=q4=Arcanist Mantle", "=ds="..BabbleBoss["Baron Geddon"], "", "19.92%"};
- { 3, 16798, "", "=q4=Arcanist Robes", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "16.51%"};
- { 4, 16799, "", "=q4=Arcanist Bindings", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 5, 16801, "", "=q4=Arcanist Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "19.59%"};
- { 6, 16802, "", "=q4=Arcanist Belt", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 7, 16796, "", "=q4=Arcanist Leggings", "=ds="..BabbleBoss["Magmadar"], "", "14.57%"};
- { 8, 16800, "", "=q4=Arcanist Boots", "=ds="..BabbleBoss["Lucifron"], "", "12.06%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
- { 1, 16854, "", "=q4=Lawbringer Helm", "=ds="..BabbleBoss["Garr"], "", "7.23%"};
- { 2, 16856, "", "=q4=Lawbringer Spaulders", "=ds="..BabbleBoss["Baron Geddon"], "", "12.62%"};
- { 3, 16853, "", "=q4=Lawbringer Chestguard", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "9.53%"};
- { 4, 16857, "", "=q4=Lawbringer Bracers", "=ds="..AL["Trash Mobs"], "", "0.11%"};
- { 5, 16860, "", "=q4=Lawbringer Gauntlets", "=ds="..BabbleBoss["Gehennas"], "", "11.77%"};
- { 6, 16858, "", "=q4=Lawbringer Belt", "=ds="..AL["Trash Mobs"], "", "0.10%"};
- { 7, 16855, "", "=q4=Lawbringer Legplates", "=ds="..BabbleBoss["Magmadar"], "", "8.54%"};
- { 8, 16859, "", "=q4=Lawbringer Boots", "=ds="..BabbleBoss["Lucifron"], "", "7.20%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
- { 1, 16813, "", "=q4=Circlet of Prophecy", "=ds="..BabbleBoss["Garr"], "", "11.36%"};
- { 2, 16816, "", "=q4=Mantle of Prophecy", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "21.06%"};
- { 3, 16815, "", "=q4=Robes of Prophecy", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.65%"};
- { 4, 16819, "", "=q4=Vambraces of Prophecy", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 5, 16812, "", "=q4=Gloves of Prophecy", "=ds="..BabbleBoss["Gehennas"], "", "18.65%"};
- { 6, 16817, "", "=q4=Girdle of Prophecy", "=ds="..AL["Trash Mobs"], "", "0.18%"};
- { 7, 16814, "", "=q4=Pants of Prophecy", "=ds="..BabbleBoss["Magmadar"], "", "14.33%"};
- { 8, 16811, "", "=q4=Boots of Prophecy", "=ds="..BabbleBoss["Shazzrah"], "", "14.90%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
- { 1, 16821, "", "=q4=Nightslayer Cover", "=ds="..BabbleBoss["Garr"], "", "10.38%"};
- { 2, 16823, "", "=q4=Nightslayer Shoulder Pads", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "20.66%"};
- { 3, 16820, "", "=q4=Nightslayer Chestpiece", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "16.76%"};
- { 4, 16825, "", "=q4=Nightslayer Bracelets", "=ds="..AL["Trash Mobs"], "", "0.17%"};
- { 5, 16826, "", "=q4=Nightslayer Gloves", "=ds="..BabbleBoss["Gehennas"], "", "19.47%"};
- { 6, 16827, "", "=q4=Nightslayer Belt", "=ds="..AL["Trash Mobs"], "", "0.15%"};
- { 7, 16822, "", "=q4=Nightslayer Pants", "=ds="..BabbleBoss["Magmadar"], "", "13.83%"};
- { 8, 16824, "", "=q4=Nightslayer Boots", "=ds="..BabbleBoss["Shazzrah"], "", "15.58%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
- { 1, 16842, "", "=q4=Earthfury Helmet", "=ds="..BabbleBoss["Garr"], "", "3.91%"};
- { 2, 16844, "", "=q4=Earthfury Epaulets", "=ds="..BabbleBoss["Baron Geddon"], "", "7.29%"};
- { 3, 16841, "", "=q4=Earthfury Vestments", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "6.08%"};
- { 4, 16840, "", "=q4=Earthfury Bracers", "=ds="..AL["Trash Mobs"], "", "0.06%"};
- { 5, 16839, "", "=q4=Earthfury Gauntlets", "=ds="..BabbleBoss["Gehennas"], "", "7.38%"};
- { 6, 16838, "", "=q4=Earthfury Belt", "=ds="..AL["Trash Mobs"], "", "0.07%"};
- { 7, 16843, "", "=q4=Earthfury Legguards", "=ds="..BabbleBoss["Magmadar"], "", "4.73%"};
- { 8, 16837, "", "=q4=Earthfury Boots", "=ds="..BabbleBoss["Lucifron"], "", "4.16%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
- { 1, 16808, "", "=q4=Felheart Horns", "=ds="..BabbleBoss["Garr"], "", "10.62%"};
- { 2, 16807, "", "=q4=Felheart Shoulder Pads", "=ds="..BabbleBoss["Baron Geddon"], "", "19.78%"};
- { 3, 16809, "", "=q4=Felheart Robes", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.66%"};
- { 4, 16804, "", "=q4=Felheart Bracers", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 5, 16805, "", "=q4=Felheart Gloves", "=ds="..BabbleBoss["Lucifron"], "", "14.89%"};
- { 6, 16806, "", "=q4=Felheart Belt", "=ds="..AL["Trash Mobs"], "", "0.19%"};
- { 7, 16810, "", "=q4=Felheart Pants", "=ds="..BabbleBoss["Magmadar"], "", "13.75%"};
- { 8, 16803, "", "=q4=Felheart Slippers", "=ds="..BabbleBoss["Shazzrah"], "", "15.28%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - Tank";
- { 1, 16866, "", "=q4=Helm of Might", "=ds="..BabbleBoss["Garr"], "", "11.39%"};
- { 2, 16868, "", "=q4=Pauldrons of Might", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "21.14%"};
- { 3, 16865, "", "=q4=Breastplate of Might", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.28%"};
- { 4, 16861, "", "=q4=Bracers of Might", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 5, 16863, "", "=q4=Gauntlets of Might", "=ds="..BabbleBoss["Lucifron"], "", "16.40%"};
- { 6, 16864, "", "=q4=Belt of Might", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 7, 16867, "", "=q4=Legplates of Might", "=ds="..BabbleBoss["Magmadar"], "", "13.97%"};
- { 8, 16862, "", "=q4=Sabatons of Might", "=ds="..BabbleBoss["Gehennas"], "", "14.48%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - DPS";
- { 1, 10480, "", "=q4=Faceguard of Might", "=ds="..BabbleBoss["Garr"], ""};
- { 2, 10481, "", "=q4=Shoulderpads of Might", "=ds="..BabbleBoss["Sulfuron Harbinger"], ""};
- { 3, 10482, "", "=q4=Chesttplate of Might", "=ds="..BabbleBoss["Golemagg the Incinerator"], ""};
- { 4, 10483, "", "=q4=Wristguards of Might", "=ds="..AL["Trash Mobs"], ""};
- { 5, 10484, "", "=q4=Handguards of Might", "=ds="..BabbleBoss["Lucifron"], ""};
- { 6, 10485, "", "=q4=Girdle of Might", "=ds="..AL["Trash Mobs"], ""};
- { 7, 10486, "", "=q4=Legguards of Might", "=ds="..BabbleBoss["Magmadar"], ""};
- { 8, 10487, "", "=q4=Stompers of Might", "=ds="..BabbleBoss["Gehennas"], ""};
- };
- };
-
- -- T2 Sets
- AtlasLoot_Data["T2"] = {
- Name = "Tier 2";
- Type = "ClassicRaid";
- {
- Name = AL["Druid"];
- { 1, 16900, "", "=q4=Stormrage Cover", "=ds="..BabbleBoss["Nefarian"], "", "13.08%"};
- { 2, 16902, "", "=q4=Stormrage Pauldrons", "=ds="..BabbleBoss["Chromaggus"], "", "14.63%"};
- { 3, 16897, "", "=q4=Stormrage Chestguard", "=ds="..BabbleBoss["Nefarian"], "", "11.89%"};
- { 4, 16904, "", "=q4=Stormrage Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "17.38%"};
- { 5, 16899, "", "=q4=Stormrage Handguards", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.34%"};
- { 6, 16903, "", "=q4=Stormrage Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "16.90%"};
- { 7, 16901, "", "=q4=Stormrage Legguards", "=ds="..BabbleBoss["Ragnaros"], "", "15.49%"};
- { 8, 16898, "", "=q4=Stormrage Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "13.79%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
- { 1, 16939, "", "=q4=Dragonstalker's Helm", "=ds="..BabbleBoss["Nefarian"], "", "13.91%"};
- { 2, 16937, "", "=q4=Dragonstalker's Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "16.20%"};
- { 3, 16942, "", "=q4=Dragonstalker's Breastplate", "=ds="..BabbleBoss["Nefarian"], "", "13.30%"};
- { 4, 16935, "", "=q4=Dragonstalker's Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "19.13%"};
- { 5, 16940, "", "=q4=Dragonstalker's Gauntlets", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.13%"};
- { 6, 16936, "", "=q4=Dragonstalker's Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.17%"};
- { 7, 16938, "", "=q4=Dragonstalker's Legguards", "=ds="..BabbleBoss["Ragnaros"], "", "16.02%"};
- { 8, 16941, "", "=q4=Dragonstalker's Greaves", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "17.78%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
- { 1, 16914, "", "=q4=Netherwind Crown", "=ds="..BabbleBoss["Nefarian"], "", "14.09%"};
- { 2, 16917, "", "=q4=Netherwind Mantle", "=ds="..BabbleBoss["Chromaggus"], "", "18.09%"};
- { 3, 16916, "", "=q4=Netherwind Robes", "=ds="..BabbleBoss["Nefarian"], "", "14.03%"};
- { 4, 16918, "", "=q4=Netherwind Bindings", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.41%"};
- { 5, 16913, "", "=q4=Netherwind Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "7.37%"};
- { 6, 16818, "", "=q4=Netherwind Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "19.94%"};
- { 7, 16915, "", "=q4=Netherwind Pants", "=ds="..BabbleBoss["Ragnaros"], "", "17.37%"};
- { 8, 16912, "", "=q4=Netherwind Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "17.17%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
- { 1, 16955, "", "=q4=Judgement Crown", "=ds="..BabbleBoss["Nefarian"], "", "8.64%"};
- { 2, 16953, "", "=q4=Judgement Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "10.97%"};
- { 3, 16958, "", "=q4=Judgement Breastplate", "=ds="..BabbleBoss["Nefarian"], "", "9.24%"};
- { 4, 16951, "", "=q4=Judgement Bindings", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "13.61%"};
- { 5, 16956, "", "=q4=Judgement Gauntlets", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "3.58%"};
- { 6, 16952, "", "=q4=Judgement Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "12.23%"};
- { 7, 16954, "", "=q4=Judgement Legplates", "=ds="..BabbleBoss["Ragnaros"], "", "10.81%"};
- { 8, 16957, "", "=q4=Judgement Sabatons", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "11.28%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
- { 1, 16921, "", "=q4=Halo of Transcendence", "=ds="..BabbleBoss["Nefarian"], "", "13.39%"};
- { 2, 16924, "", "=q4=Pauldrons of Transcendence", "=ds="..BabbleBoss["Chromaggus"], "", "17.83%"};
- { 3, 16923, "", "=q4=Robes of Transcendence", "=ds="..BabbleBoss["Nefarian"], "", "14.83%"};
- { 4, 16926, "", "=q4=Bindings of Transcendence", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.37%"};
- { 5, 16920, "", "=q4=Handguards of Transcendence", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.01%"};
- { 6, 16925, "", "=q4=Belt of Transcendence", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "18.76%"};
- { 7, 16922, "", "=q4=Leggings of Transcendence", "=ds="..BabbleBoss["Ragnaros"], "", "17.30%"};
- { 8, 16919, "", "=q4=Boots of Transcendence", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "14.61%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
- { 1, 16908, "", "=q4=Bloodfang Hood", "=ds="..BabbleBoss["Nefarian"], "", "13.21%"};
- { 2, 16832, "", "=q4=Bloodfang Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "17.03%"};
- { 3, 16905, "", "=q4=Bloodfang Chestpiece", "=ds="..BabbleBoss["Nefarian"], "", "14.21%"};
- { 4, 16911, "", "=q4=Bloodfang Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.69%"};
- { 5, 16907, "", "=q4=Bloodfang Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.84%"};
- { 6, 16910, "", "=q4=Bloodfang Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "19.69%"};
- { 7, 16909, "", "=q4=Bloodfang Pants", "=ds="..BabbleBoss["Ragnaros"], "", "17.18%"};
- { 8, 16906, "", "=q4=Bloodfang Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "15.66%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
- { 1, 16947, "", "=q4=Helmet of Ten Storms", "=ds="..BabbleBoss["Nefarian"], "", "4.86%"};
- { 2, 16945, "", "=q4=Epaulets of Ten Storms", "=ds="..BabbleBoss["Chromaggus"], "", "6.73%"};
- { 3, 16950, "", "=q4=Breastplate of Ten Storms", "=ds="..BabbleBoss["Nefarian"], "", "5.65%"};
- { 4, 16943, "", "=q4=Bracers of Ten Storms", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "7.54%"};
- { 5, 16948, "", "=q4=Gauntlets of Ten Storms", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "2.13%"};
- { 6, 16944, "", "=q4=Belt of Ten Storms", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "6.93%"};
- { 7, 16946, "", "=q4=Legplates of Ten Storms", "=ds="..BabbleBoss["Ragnaros"], "", "5.97%"};
- { 8, 16949, "", "=q4=Greaves of Ten Storms", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "5.57%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
- { 1, 16929, "", "=q4=Nemesis Skullcap", "=ds="..BabbleBoss["Nefarian"], "", "13.54%"};
- { 2, 16932, "", "=q4=Nemesis Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "16.26%"};
- { 3, 16931, "", "=q4=Nemesis Robes", "=ds="..BabbleBoss["Nefarian"], "", "12.46%"};
- { 4, 16934, "", "=q4=Nemesis Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "18.11%"};
- { 5, 16928, "", "=q4=Nemesis Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.28%"};
- { 6, 16933, "", "=q4=Nemesis Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "18.42%"};
- { 7, 16930, "", "=q4=Nemesis Leggings", "=ds="..BabbleBoss["Ragnaros"], "", "16.87%"};
- { 8, 16927, "", "=q4=Nemesis Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "15.32%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - Tank";
- { 1, 16963, "", "=q4=Helm of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "13.65%"};
- { 2, 16961, "", "=q4=Pauldrons of Wrath", "=ds="..BabbleBoss["Chromaggus"], "", "16.83%"};
- { 3, 16966, "", "=q4=Breastplate of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "15.06%"};
- { 4, 16959, "", "=q4=Bracelets of Wrath", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.29%"};
- { 5, 16964, "", "=q4=Gauntlets of Wrath", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.93%"};
- { 6, 16960, "", "=q4=Waistband of Wrath", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.03%"};
- { 7, 16962, "", "=q4=Legplates of Wrath", "=ds="..BabbleBoss["Ragnaros"], "", "17.23%"};
- { 8, 16965, "", "=q4=Sabatons of Wrath", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "16.84%"};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - DPS";
- { 1, 10904, "", "=q4=Faceguard of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "13.65%"};
- { 2, 10902, "", "=q4=Shoulderpads of Wrath", "=ds="..BabbleBoss["Chromaggus"], "", "16.83%"};
- { 3, 10907, "", "=q4=Chestplate of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "15.06%"};
- { 4, 10900, "", "=q4=Wristguards of Wrath", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.29%"};
- { 5, 10905, "", "=q4=Grippers of Wrath", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.93%"};
- { 6, 10901, "", "=q4=Belt of Wrath", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.03%"};
- { 7, 10903, "", "=q4=Legguards of Wrath", "=ds="..BabbleBoss["Ragnaros"], "", "17.23%"};
- { 8, 10906, "", "=q4=Stompers of Wrath", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "16.84%"};
- };
- };
-
- ------------------------
- --- Tier 3 Sets (T3) ---
- ------------------------
-
- AtlasLoot_Data["T3"] = {
- Name = "Tier 3";
- Type = "ClassicRaid";
- {
- Name = AL["Druid"];
- { 1, 22490, "", "=q4=Dreamwalker Headpiece", "=ds="};
- { 2, 22491, "", "=q4=Dreamwalker Spaulders", "=ds="};
- { 3, 22488, "", "=q4=Dreamwalker Tunic", "=ds="};
- { 4, 22495, "", "=q4=Dreamwalker Wristguards", "=ds="};
- { 5, 22493, "", "=q4=Dreamwalker Handguards", "=ds="};
- { 6, 22494, "", "=q4=Dreamwalker Girdle", "=ds="};
- { 7, 22489, "", "=q4=Dreamwalker Legguards", "=ds="};
- { 8, 22492, "", "=q4=Dreamwalker Boots", "=ds="};
- { 9, 23064, "", "=q4=Ring of the Dreamwalker", "=ds="};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
- { 1, 22438, "", "=q4=Cryptstalker Headpiece", "=ds="};
- { 2, 22439, "", "=q4=Cryptstalker Spaulders", "=ds="};
- { 3, 22436, "", "=q4=Cryptstalker Tunic", "=ds="};
- { 4, 22443, "", "=q4=Cryptstalker Wristguards", "=ds="};
- { 5, 22441, "", "=q4=Cryptstalker Handguards", "=ds="};
- { 6, 22442, "", "=q4=Cryptstalker Girdle", "=ds="};
- { 7, 22437, "", "=q4=Cryptstalker Legguards", "=ds="};
- { 8, 22440, "", "=q4=Cryptstalker Boots", "=ds="};
- { 9, 23067, "", "=q4=Ring of the Cryptstalker", "=ds="};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
- { 1, 22498, "", "=q4=Frostfire Circlet", "=ds="};
- { 2, 22499, "", "=q4=Frostfire Shoulderpads", "=ds="};
- { 3, 22496, "", "=q4=Frostfire Robe", "=ds="};
- { 4, 22503, "", "=q4=Frostfire Bindings", "=ds="};
- { 5, 22501, "", "=q4=Frostfire Gloves", "=ds="};
- { 6, 22502, "", "=q4=Frostfire Belt", "=ds="};
- { 7, 22497, "", "=q4=Frostfire Leggings", "=ds="};
- { 8, 22500, "", "=q4=Frostfire Sandals", "=ds="};
- { 9, 23062, "", "=q4=Frostfire Ring", "=ds="};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
- { 1, 22428, "", "=q4=Redemption Headpiece", "=ds="};
- { 2, 22429, "", "=q4=Redemption Spaulders", "=ds="};
- { 3, 22425, "", "=q4=Redemption Tunic", "=ds="};
- { 4, 22424, "", "=q4=Redemption Wristguards", "=ds="};
- { 5, 22426, "", "=q4=Redemption Handguards", "=ds="};
- { 6, 22431, "", "=q4=Redemption Girdle", "=ds="};
- { 7, 22427, "", "=q4=Redemption Legguards", "=ds="};
- { 8, 22430, "", "=q4=Redemption Boots", "=ds="};
- { 9, 23066, "", "=q4=Ring of Redemption", "=ds="};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
- { 1, 22514, "", "=q4=Circlet of Faith", "=ds="};
- { 2, 22515, "", "=q4=Shoulderpads of Faith", "=ds="};
- { 3, 22512, "", "=q4=Robe of Faith", "=ds="};
- { 4, 22519, "", "=q4=Bindings of Faith", "=ds="};
- { 5, 22517, "", "=q4=Gloves of Faith", "=ds="};
- { 6, 22518, "", "=q4=Belt of Faith", "=ds="};
- { 7, 22513, "", "=q4=Leggings of Faith", "=ds="};
- { 8, 22516, "", "=q4=Sandals of Faith", "=ds="};
- { 9, 23061, "", "=q4=Ring of Faith", "=ds="};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
- { 1, 22478, "", "=q4=Bonescythe Helmet", "=ds="};
- { 2, 22479, "", "=q4=Bonescythe Pauldrons", "=ds="};
- { 3, 22476, "", "=q4=Bonescythe Breastplate", "=ds="};
- { 4, 22483, "", "=q4=Bonescythe Bracers", "=ds="};
- { 5, 22481, "", "=q4=Bonescythe Gauntlets", "=ds="};
- { 6, 22482, "", "=q4=Bonescythe Waistguard", "=ds="};
- { 7, 22477, "", "=q4=Bonescythe Legplates", "=ds="};
- { 8, 22480, "", "=q4=Bonescythe Sabatons", "=ds="};
- { 9, 23060, "", "=q4=Bonescythe Ring", "=ds="};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
- { 1, 22466, "", "=q4=Earthshatter Headpiece", "=ds="};
- { 2, 22467, "", "=q4=Earthshatter Spaulders", "=ds="};
- { 3, 22464, "", "=q4=Earthshatter Tunic", "=ds="};
- { 4, 22471, "", "=q4=Earthshatter Wristguards", "=ds="};
- { 5, 22469, "", "=q4=Earthshatter Handguards", "=ds="};
- { 6, 22470, "", "=q4=Earthshatter Girdle", "=ds="};
- { 7, 22465, "", "=q4=Earthshatter Legguards", "=ds="};
- { 8, 22468, "", "=q4=Earthshatter Boots", "=ds="};
- { 9, 23065, "", "=q4=Ring of the Earthshatterer", "=ds="};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
- { 1, 22506, "", "=q4=Plagueheart Circlet", "=ds="};
- { 2, 22507, "", "=q4=Plagueheart Shoulderpads", "=ds="};
- { 3, 22504, "", "=q4=Plagueheart Robe", "=ds="};
- { 4, 22511, "", "=q4=Plagueheart Bindings", "=ds="};
- { 5, 22509, "", "=q4=Plagueheart Gloves", "=ds="};
- { 6, 22510, "", "=q4=Plagueheart Belt", "=ds="};
- { 7, 22505, "", "=q4=Plagueheart Leggings", "=ds="};
- { 8, 22508, "", "=q4=Plagueheart Sandals", "=ds="};
- { 9, 23063, "", "=q4=Plagueheart Ring", "=ds="};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - Tank";
- { 1, 22418, "", "=q4=Dreadnaught Helmet", "=ds="};
- { 2, 22419, "", "=q4=Dreadnaught Pauldrons", "=ds="};
- { 3, 22416, "", "=q4=Dreadnaught Breastplate", "=ds="};
- { 4, 22423, "", "=q4=Dreadnaught Bracers", "=ds="};
- { 5, 22421, "", "=q4=Dreadnaught Gauntlets", "=ds="};
- { 6, 22422, "", "=q4=Dreadnaught Waistguard", "=ds="};
- { 7, 22417, "", "=q4=Dreadnaught Legplates", "=ds="};
- { 8, 22420, "", "=q4=Dreadnaught Sabatons", "=ds="};
- { 9, 23059, "", "=q4=Ring of the Dreadnaught", "=ds="};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - DPS";
- { 1, 10490, "", "=q4=Dreadborne Helmet", "=ds="};
- { 2, 10491, "", "=q4=Dreadborne Pauldrons", "=ds="};
- { 3, 10488, "", "=q4=Dreadborne Breastplate", "=ds="};
- { 4, 10495, "", "=q4=Dreadborne Bracers", "=ds="};
- { 5, 10493, "", "=q4=Dreadborne Gauntlets", "=ds="};
- { 6, 10494, "", "=q4=Dreadborne Waistguard", "=ds="};
- { 7, 10489, "", "=q4=Dreadborne Legplates", "=ds="};
- { 8, 10492, "", "=q4=Dreadborne Sabatons", "=ds="};
- { 9, 10496, "", "=q4=Dreadborne Ring", "=ds="};
- };
- };
-
- ------------------------
- --- Vanilla WoW Sets ---
- ------------------------
-
- AtlasLoot_Data["ClassicSets"] = {
- Name = AL["Classic Sets"];
- {
- Name = AL["Defias Leather"];
- { 1, 10399, "", "=q3=Blackened Defias Armor", "=ds=#s5#, =q2=#n6#", "", "14.77%"};
- { 2, 10401, "", "=q2=Blackened Defias Gloves", "=ds=#s9#, =q2=#n9#", "", "1.76%"};
- { 3, 10403, "", "=q3=Blackened Defias Belt", "=ds=#s10#, =q2=#n7#", "", "23.26%"};
- { 4, 10400, "", "=q2=Blackened Defias Leggings", "=ds=#s11#, =q2=#n9#", "", "1.64%"};
- { 5, 10402, "", "=q2=Blackened Defias Boots", "=ds=#s12#, =q2=#n8#", "", "1.23%"};
- };
- {
- Name = AL["Embrace of the Viper"];
- { 1, 6473, "", "=q3=Armor of the Fang", "=ds=#s5#, =q2=#n5#", "", "52.05%"};
- { 2, 10413, "", "=q3=Gloves of the Fang", "=ds=#s9#, =q2=#n4#", "", "1.20%"};
- { 3, 10412, "", "=q3=Belt of the Fang", "=ds=#s10#, =q2=#n2#", "", "8.64%"};
- { 4, 10410, "", "=q3=Leggings of the Fang", "=ds=#s11#, =q2=#n1#", "", "16.03%"};
- { 5, 10411, "", "=q3=Footpads of the Fang", "=ds=#s12#, =q2=#n3#", "", "19.08%"};
- };
- {
- Name = AL["Chain of the Scarlet Crusade"];
- { 1, 10328, "", "=q3=Scarlet Chestpiece", "=ds=#s5#, =q2=#n12#", "", "0.3%"};
- { 2, 10333, "", "=q2=Scarlet Wristguards", "=ds=#s8#, =q2=#n15#", "", "1.6%"};
- { 3, 10331, "", "=q2=Scarlet Gauntlets", "=ds=#s9#, =q2=#n13#", "", "1.7%"};
- { 4, 10329, "", "=q2=Scarlet Belt", "=ds=#s10#, =q2=#n10#", "", "1.6%"};
- { 5, 10330, "", "=q3=Scarlet Leggings", "=ds=#s11#, =q2=#n14#", "", "13.2%"};
- { 6, 10332, "", "=q3=Scarlet Boots", "=ds=#s12#, =q2=#n11#", "", "0.1%"};
- };
- {
- Name = AL["The Gladiator"];
- { 1, 11729, "", "=q3=Savage Gladiator Helm", "=ds=#s1#, =q2=#brd3#, #brd5#", "", "10.08%"};
- { 2, 11726, "", "=q4=Savage Gladiator Chain", "=ds=#s5#, =q2=#brd3#", "", "14.52%"};
- { 3, 11730, "", "=q3=Savage Gladiator Grips", "=ds=#s9#, =q2=#brd2#", "", "14.12%"};
- { 4, 11728, "", "=q3=Savage Gladiator Leggings", "=ds=#s11#, =q2=#brd6#", "", "14.95%"};
- { 5, 11731, "", "=q3=Savage Gladiator Greaves", "=ds=#s12#, =q2=#brd1#", "", "15.14%"};
- };
- {
- Name = AL["Ironweave Battlesuit"];
- { 1, 22302, "", "=q3=Ironweave Cowl", "=ds=#s1#, =q2=#n16# (#z9#)", "", "27.72%"};
- { 2, 22305, "", "=q3=Ironweave Mantle", "=ds=#s3#, =q2=#n17# (#z4#)", "", "30.39%"};
- { 3, 22301, "", "=q3=Ironweave Robe", "=ds=#s5#, =q2=#n18# (#z6#)", "", "19.00%"};
- { 4, 22313, "", "=q3=Ironweave Bracers", "=ds=#s8#, =q2=#n19# (#z10#)", "", "18.16%"};
- { 5, 22304, "", "=q3=Ironweave Gloves", "=ds=#s9#, =q2=#n20# (#z13#)", "", "16.24%"};
- { 6, 22306, "", "=q3=Ironweave Belt", "=ds=#s10#, =q2=#n21# (#z10#)", "", "20.28%"};
- { 7, 22303, "", "=q3=Ironweave Pants", "=ds=#s11#, =q2=#n22# (#z5#)", "", "23.33%"};
- { 8, 22311, "", "=q3=Ironweave Boots", "=ds=#s12#, =q2=#n23# (#z9#)", "", "12.31%"};
- };
- {
- Name = AL["The Postmaster"];
- { 1, 13390, "", "=q3=The Postmaster's Band", "=ds=#s1#", "", ""};
- { 2, 13388, "", "=q3=The Postmaster's Tunic", "=ds=#s5#", "", ""};
- { 3, 13389, "", "=q3=The Postmaster's Trousers", "=ds=#s11#", "", ""};
- { 4, 13391, "", "=q3=The Postmaster's Treads", "=ds=#s12#", "", ""};
- { 5, 13392, "", "=q3=The Postmaster's Seal", "=ds=#s13#", "", ""};
- };
- {
- Name = AL["Shard of the Gods"];
- { 1, 17082, "", "=q4=Shard of the Flame", "=ds=#s14#, =q2=#n35# (#z14#)", "", "4.46%"};
- { 2, 17064, "", "=q4=Shard of the Scale", "=ds=#s14#, =q2=#n36# (#z15#)", "", "3.71%"};
- };
- {
- Name = AL["Spirit of Eskhandar"];
- { 1, 18204, "", "=q4=Eskhandar's Pelt", "=ds=#s4#, =q2=#n37#", "", "9.16%"};
- { 2, 18203, "", "=q4=Eskhandar's Right Claw", "=ds=#h3#, #w13#, =q2=#n38# (#z14#)", "", "16.97%"};
- { 3, 18202, "", "=q4=Eskhandar's Left Claw", "=ds=#h4#, #w13#, =q2=#n39#", "", "12.36%"};
- };
- {
- Name = AL["Spider's Kiss"];
- { 1, 13218, "", "=q3=Fang of the Crystal Spider", "=ds=#h1#, #w4#, =q2=#n41#", "", "15.46%"};
- { 2, 13183, "", "=q3=Venomspitter", "=ds=#h1#, #w6#, =q2=#n42#", "", "13.07%"};
- };
- {
- Name = AL["Dal'Rend's Arms"];
- { 1, 12940, "", "=q3=Dal'Rend's Sacred Charge", "=ds=#h3#, #w10#, =q2=#n40#", "", "6.62%"};
- { 2, 12939, "", "=q3=Dal'Rend's Tribal Guardian", "=ds=#h4#, #w10#, =q2=#n40#", "", "7.44%"};
- };
- {
- Name = AL["Necropile Raiment"];
- { 1, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#", "", "1.12%"};
- { 2, 14626, "", "=q3=Necropile Robe", "=ds=#s5#", "", "1.27%"};
- { 3, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#", "", "1.03%"};
- { 4, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#", "", "0.85%"};
- { 5, 14631, "", "=q3=Necropile Boots", "=ds=#s12#", "", "0.88%"};
- };
- {
- Name = AL["Cadaverous Garb"];
- { 1, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#", "", "1.51%"};
- { 2, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#", "", "0.82%"};
- { 3, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#", "", "0.60%"};
- { 4, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#", "", "1.09%"};
- { 5, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#", "", "0.67%"};
- };
- {
- Name = AL["Bloodmail Regalia"];
- { 1, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#", "", "0.54%"};
- { 2, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#", "", "0.09%"};
- { 3, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#", "", "0.60%"};
- { 4, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#", "", "0.42%"};
- { 5, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#", "", "0.36%"};
- };
- {
- Name = AL["Deathbone Guardian"];
- { 1, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#", "", "0.45%"};
- { 2, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#", "", "0.45%"};
- { 3, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#", "", "0.67%"};
- { 4, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#", "", "1.12%"};
- { 5, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#", "", "0.57%"};
- };
- {
- Name = AL["Major Mojo Infusion"];
- { 1, 19898, "", "=q3=Seal of Jin", "=ds=#s13#, =q2=#n28#", "", "8.81%"};
- { 2, 19925, "", "=q3=Band of Jin", "=ds=#s13#, =q2=#n29#", "", "10.36%"};
- };
- {
- Name = AL["Overlord's Resolution"];
- { 1, 19873, "", "=q3=Overlord's Crimson Band", "=ds=#s13#, =q2=#n33#", "", "10.12%"};
- { 2, 19912, "", "=q3=Overlord's Onyx Band", "=ds=#s13#, =q2=#n30#", "", "14.51%"};
- };
- {
- Name = AL["Primal Blessing"];
- { 1, 19896, "", "=q4=Thekal's Grasp", "=ds=#h3#, #w13#, =q2=#n28#", "", "5.20%"};
- { 2, 19910, "", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#, =q2=#n30#", "", "4.54%"};
- };
- {
- Name = AL["Prayer of the Primal"];
- { 1, 19863, "", "=q3=Primalist's Seal", "=ds=#s13#, =q2=#n33#", "", "9.72%"};
- { 2, 19920, "", "=q3=Primalist's Band", "=ds=#s13#, =q2=#n31#", "", "8.95%"};
- };
- {
- Name = AL["Zanzil's Concentration"];
- { 1, 19905, "", "=q3=Zanzil's Band", "=ds=#s13#, =q2=#n32#", "", "9.24%"};
- { 2, 19893, "", "=q3=Zanzil's Seal", "=ds=#s13#, =q2=#n33#", "", "10.12%"};
- };
- {
- Name = AL["The Twin Blades of Hakkari"];
- { 1, 19865, "", "=q4=Warblade of the Hakkari", "=ds=#h3#, #w10#, =q2=#n34#", "", "5.18%"};
- { 2, 19866, "", "=q4=Warblade of the Hakkari", "=ds=#h4#, #w10#, =q2=#n33#", "", "4.55%"};
- };
- };
-
- ---------------
- --- ZG Sets ---
- ---------------
-
- AtlasLoot_Data["ZGSets"] = {
- Name = AL["Zul'Gurub Sets"];
- Type = "ClassicRaid";
- {
- Name = AL["Haruspex's Garb"];
- { 1, 19955, "", "=q4=Wushoolay's Charm of Nature", ""};
- { 2, 19613, "", "=q4=Pristine Enchanted South Seas Kelp", "=ds=#r5#"};
- { 3, 19838, "", "=q4=Zandalar Haruspex's Tunic", "=q4=#zgt9#, =ds=#r4#"};
- { 4, 19839, "", "=q4=Zandalar Haruspex's Belt", "=q4=#zgt4#, =ds=#r3#"};
- { 5, 19840, "", "=q4=Zandalar Haruspex's Bracers", "=q4=#zgt5#, =ds=#r2#"};
- };
- {
- Name = AL["Predator's Armor"];
- { 1, 19953, "", "=q4=Renataki's Charm of Beasts", ""};
- { 2, 19621, "", "=q4=Maelstrom's Wrath", "=ds=#r5#"};
- { 3, 19831, "", "=q4=Zandalar Predator's Mantle", "=q4=#zgt6#, =ds=#r4#"};
- { 4, 19832, "", "=q4=Zandalar Predator's Belt", "=q4=#zgt2#, =ds=#r3#"};
- { 5, 19833, "", "=q4=Zandalar Predator's Bracers", "=q4=#zgt3#, =ds=#r2#"};
- };
- {
- Name = AL["Illusionist's Attire"];
- { 1, 19959, "", "=q4=Hazza'rah's Charm of Magic", ""};
- { 2, 19601, "", "=q4=Jewel of Kajaro", "=ds=#r5#"};
- { 3, 20034, "", "=q4=Zandalar Illusionist's Robe", "=q4=#zgt1#, =ds=#r4#"};
- { 4, 19845, "", "=q4=Zandalar Illusionist's Mantle", "=q4=#zgt2#, =ds=#r3#"};
- { 5, 19846, "", "=q4=Zandalar Illusionist's Wraps", "=q4=#zgt3#, =ds=#r2#"};
- };
- {
- Name = AL["Freethinker's Armor"];
- { 1, 19952, "", "=q4=Gri'lek's Charm of Valor", ""};
- { 2, 19588, "", "=q4=Hero's Brand", "=ds=#r5#"};
- { 3, 19825, "", "=q4=Zandalar Freethinker's Breastplate", "=q4=#zgt9#, =ds=#r4#"};
- { 4, 19826, "", "=q4=Zandalar Freethinker's Belt", "=q4=#zgt2#, =ds=#r3#"};
- { 5, 19827, "", "=q4=Zandalar Freethinker's Armguards", "=q4=#zgt3#, =ds=#r2#"};
- };
- {
- Name = AL["Confessor's Raiment"];
- { 1, 19958, "", "=q4=Hazza'rah's Charm of Healing", ""};
- { 2, 19594, "", "=q4=The All-Seeing Eye of Zuldazar", "=ds=#r5#"};
- { 3, 19841, "", "=q4=Zandalar Confessor's Mantle", "=q4=#zgt6#, =ds=#r4#"};
- { 4, 19842, "", "=q4=Zandalar Confessor's Bindings", "=q4=#zgt4#, =ds=#r3#"};
- { 5, 19843, "", "=q4=Zandalar Confessor's Wraps", "=q4=#zgt5#, =ds=#r2#"};
- };
- {
- Name = AL["Madcap's Outfit"];
- { 1, 19954, "", "=q4=Renataki's Charm of Trickery", ""};
- { 2, 19617, "", "=q4=Zandalarian Shadow Mastery Talisman", "=ds=#r5#"};
- { 3, 19834, "", "=q4=Zandalar Madcap's Tunic", "=q4=#zgt6#, =ds=#r4#"};
- { 4, 19835, "", "=q4=Zandalar Madcap's Mantle", "=q4=#zgt7#, =ds=#r3#"};
- { 5, 19836, "", "=q4=Zandalar Madcap's Bracers", "=q4=#zgt8#, =ds=#r2#"};
- };
- {
- Name = AL["Augur's Regalia"];
- { 1, 19956, "", "=q4=Wushoolay's Charm of Spirits", ""};
- { 2, 19609, "", "=q4=Unmarred Vision of Voodress", "=ds=#r5#"};
- { 3, 19828, "", "=q4=Zandalar Augur's Hauberk", "=q4=#zgt9#, =ds=#r4#"};
- { 4, 19829, "", "=q4=Zandalar Augur's Belt", "=q4=#zgt7#, =ds=#r3#"};
- { 5, 19830, "", "=q4=Zandalar Augur's Bracers", "=q4=#zgt8#, =ds=#r2#"};
- };
- {
- Name = AL["Demoniac's Threads"];
- { 1, 19957, "", "=q4=Hazza'rah's Charm of Destruction", ""};
- { 2, 19605, "", "=q4=Kezan's Unstoppable Taint", "=ds=#r5#"};
- { 3, 20033, "", "=q4=Zandalar Demoniac's Robe", "=q4=#zgt1#, =ds=#r4#"};
- { 4, 19849, "", "=q4=Zandalar Demoniac's Mantle", "=q4=#zgt4#, =ds=#r3#"};
- { 5, 19848, "", "=q4=Zandalar Demoniac's Wraps", "=q4=#zgt5#, =ds=#r2#"};
- };
- {
- Name = AL["Vindicator's Battlegear"];
- { 1, 19951, "", "=q4=Gri'lek's Charm of Might", ""};
- { 2, 19577, "", "=q4=Rage of Mugamba", "=ds=#r5#"};
- { 3, 19822, "", "=q4=Zandalar Vindicator's Breastplate", "=q4=#zgt1#, =ds=#r4#"};
- { 4, 19823, "", "=q4=Zandalar Vindicator's Belt", "=q4=#zgt7#, =ds=#r3#"};
- { 5, 19824, "", "=q4=Zandalar Vindicator's Armguards", "=q4=#zgt8#, =ds=#r2#"};
- };
- };
-
- -----------------
- --- AQ20 Sets ---
- -----------------
-
- AtlasLoot_Data["AQ20Sets"] = {
- Name = AL["AQ20 Class Sets"];
- Type = "ClassicRaid";
- {
- Name = AL["Symbols of Unending Life"];
- { 1, 21407, "", "=q4=Mace of Unending Life", "=q4=#aq20t1#, =ds=#r5#"};
- { 2, 21409, "", "=q4=Cloak of Unending Life", "=q3=#aq20t5#, =ds=#r4#"};
- { 3, 21408, "", "=q4=Band of Unending Life", "=q3=#aq20t3#, =ds=#r3#"};
- };
- {
- Name = AL["Trappings of the Unseen Path"];
- { 1, 21401, "", "=q4=Scythe of the Unseen Path", "=q4=#aq20t6#, =ds=#r5#"};
- { 2, 21403, "", "=q4=Cloak of the Unseen Path", "=q3=#aq20t5#, =ds=#r4#"};
- { 3, 21402, "", "=q4=Signet of the Unseen Path", "=q3=#aq20t4#, =ds=#r3#"};
- };
- {
- Name = AL["Trappings of Vaulted Secrets"];
- { 1, 21413, "", "=q4=Blade of Vaulted Secrets", "=q4=#aq20t1#, =ds=#r5#"};
- { 2, 21415, "", "=q4=Drape of Vaulted Secrets", "=q3=#aq20t2#, =ds=#r4#"};
- { 3, 21414, "", "=q4=Band of Vaulted Secrets", "=q3=#aq20t3#, =ds=#r3#"};
- };
- {
- Name = AL["Battlegear of Eternal Justice"];
- { 1, 21395, "", "=q4=Blade of Eternal Justice", "=q4=#aq20t6#, =ds=#r5#"};
- { 2, 21397, "", "=q4=Cape of Eternal Justice", "=q3=#aq20t5#, =ds=#r4#"};
- { 3, 21396, "", "=q4=Ring of Eternal Justice", "=q3=#aq20t3#, =ds=#r3#"};
- };
- {
- Name = AL["Finery of Infinite Wisdom"];
- { 1, 21410, "", "=q4=Gavel of Infinite Wisdom", "=q4=#aq20t1#, =ds=#r5#"};
- { 2, 21412, "", "=q4=Shroud of Infinite Wisdom", "=q3=#aq20t2#, =ds=#r4#"};
- { 3, 21411, "", "=q4=Ring of Infinite Wisdom", "=q3=#aq20t4#, =ds=#r3#"};
- };
- {
- Name = AL["Emblems of Veiled Shadows"];
- { 1, 21404, "", "=q4=Dagger of Veiled Shadows", "=q4=#aq20t6#, =ds=#r5#"};
- { 2, 21406, "", "=q4=Cloak of Veiled Shadows", "=q3=#aq20t2#, =ds=#r4#"};
- { 3, 21405, "", "=q4=Band of Veiled Shadows", "=q3=#aq20t4#, =ds=#r3#"};
- };
- {
- Name = AL["Gift of the Gathering Storm"];
- { 1, 21398, "", "=q4=Hammer of the Gathering Storm", "=q4=#aq20t6#, =ds=#r5#"};
- { 2, 21400, "", "=q4=Cloak of the Gathering Storm", "=q3=#aq20t5#, =ds=#r4#"};
- { 3, 21399, "", "=q4=Ring of the Gathering Storm", "=q3=#aq20t3#, =ds=#r3#"};
- };
- {
- Name = AL["Implements of Unspoken Names"];
- { 1, 21416, "", "=q4=Kris of Unspoken Names", "=q4=#aq20t1#, =ds=#r5#"};
- { 2, 21418, "", "=q4=Shroud of Unspoken Names", "=q3=#aq20t5#, =ds=#r4#"};
- { 3, 21417, "", "=q4=Ring of Unspoken Names", "=q3=#aq20t4#, =ds=#r3#"};
- };
- {
- Name = AL["Battlegear of Unyielding Strength"];
- { 1, 21392, "", "=q4=Sickle of Unyielding Strength", "=q4=#aq20t6#, =ds=#r5#"};
- { 2, 21394, "", "=q4=Drape of Unyielding Strength", "=q3=#aq20t2#, =ds=#r4#"};
- { 3, 21393, "", "=q4=Signet of Unyielding Strength", "=q3=#aq20t3#=ds=, #r3#"};
- };
- };
-
- -----------------
- --- AQ40 Sets ---
- -----------------
-
- AtlasLoot_Data["T2.5"] = {
- Name = AL["AQ40 Class Sets"].." (Tier 2.5)";
- Type = "ClassicRaid";
- {
- Name = AL["Druid"];
- { 1, 21357, "", "=q4=Genesis Vest", ""};
- { 2, 21353, "", "=q4=Genesis Helm", ""};
- { 3, 21356, "", "=q4=Genesis Trousers", ""};
- { 4, 21354, "", "=q4=Genesis Shoulderpads", ""};
- { 5, 21355, "", "=q4=Genesis Boots", ""};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
- { 1, 21370, "", "=q4=Striker's Hauberk", ""};
- { 2, 21366, "", "=q4=Striker's Diadem", ""};
- { 3, 21368, "", "=q4=Striker's Leggings", ""};
- { 4, 21367, "", "=q4=Striker's Pauldrons", ""};
- { 5, 21365, "", "=q4=Striker's Footguards", ""};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
- { 1, 21343, "", "=q4=Enigma Robes", ""};
- { 2, 21347, "", "=q4=Enigma Circlet", ""};
- { 3, 21346, "", "=q4=Enigma Leggings", ""};
- { 4, 21345, "", "=q4=Enigma Shoulderpads", ""};
- { 5, 21344, "", "=q4=Enigma Boots", ""};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
- { 1, 21389, "", "=q4=Avenger's Breastplate", ""};
- { 2, 21387, "", "=q4=Avenger's Crown", ""};
- { 3, 21390, "", "=q4=Avenger's Legguards", ""};
- { 4, 21391, "", "=q4=Avenger's Pauldrons", ""};
- { 5, 21388, "", "=q4=Avenger's Greaves", ""};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
- { 1, 21351, "", "=q4=Vestments of the Oracle", ""};
- { 2, 21348, "", "=q4=Tiara of the Oracle", ""};
- { 3, 21352, "", "=q4=Trousers of the Oracle", ""};
- { 4, 21350, "", "=q4=Mantle of the Oracle", ""};
- { 5, 21349, "", "=q4=Footwraps of the Oracle", ""};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
- { 1, 21364, "", "=q4=Deathdealer's Vest", ""};
- { 2, 21360, "", "=q4=Deathdealer's Helm", ""};
- { 3, 21362, "", "=q4=Deathdealer's Leggings", ""};
- { 4, 21361, "", "=q4=Deathdealer's Spaulders", ""};
- { 5, 21359, "", "=q4=Deathdealer's Boots", ""};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
- { 1, 21374, "", "=q4=Stormcaller's Hauberk", ""};
- { 2, 21372, "", "=q4=Stormcaller's Diadem", ""};
- { 3, 21375, "", "=q4=Stormcaller's Leggings", ""};
- { 4, 21376, "", "=q4=Stormcaller's Pauldrons", ""};
- { 5, 21373, "", "=q4=Stormcaller's Footguards", ""};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
- { 1, 21334, "", "=q4=Doomcaller's Robes", ""};
- { 2, 21337, "", "=q4=Doomcaller's Circlet", ""};
- { 3, 21336, "", "=q4=Doomcaller's Trousers", ""};
- { 4, 21335, "", "=q4=Doomcaller's Mantle", ""};
- { 5, 21338, "", "=q4=Doomcaller's Footwraps", ""};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - Tank";
- { 1, 21331, "", "=q4=Conqueror's Breastplate", ""};
- { 2, 21329, "", "=q4=Conqueror's Crown", ""};
- { 3, 21332, "", "=q4=Conqueror's Legguards", ""};
- { 4, 21330, "", "=q4=Conqueror's Spaulders", ""};
- { 5, 21333, "", "=q4=Conqueror's Greaves", ""};
- };
- {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - DPS";
- { 1, 10912, "", "=q4=Conqueror's Chestplate", ""};
- { 2, 10910, "", "=q4=Conqueror's Headguard", ""};
- { 3, 10913, "", "=q4=Conqueror's Platelegs", ""};
- { 4, 10911, "", "=q4=Conqueror's Shoulderpads", ""};
- { 5, 10914, "", "=q4=Conqueror's War Stompers", ""};
- };
- };
-
- -----------------------
- --- BoE World Epics ---
- -----------------------
-
- AtlasLoot_Data["WorldEpicsCLASSIC"] = {
- Name = AL["BoE World Epics"];
- Type = "ClassicDungeonExt";
+AtlasLoot_Data["OldKeys"] = {
+ Name = "Old Keys";
{
- Name = AL["Level 30-39"];
- { 1, 867, "", "=q4=Gloves of Holy Might", "=ds=#s9#, #a2#", "", ""};
- { 2, 1981, "", "=q4=Icemail Jerkin", "=ds=#s5#, #a3#", "", ""};
- { 3, 1980, "", "=q4=Underworld Band", "=ds=#s13#", "", ""};
- { 16, 869, "", "=q4=Dazzling Longsword", "=ds=#h1#, #w10#", "", ""};
- { 17, 1982, "", "=q4=Nightblade", "=ds=#h2#, #w10#", "", ""};
- { 18, 870, "", "=q4=Fiery War Axe", "=ds=#h2#, #w1#", "", ""};
- { 19, 868, "", "=q4=Ardent Custodian", "=ds=#h1#, #w6#", "", ""};
- { 20, 873, "", "=q4=Staff of Jordan", "=ds=#w9#", "", ""};
- { 21, 1204, "", "=q4=The Green Tower", "=ds=#w8#", "", ""};
- { 22, 2825, "", "=q4=Bow of Searing Arrows", "=ds=#w2#", "", ""};
- };
- {
- Name = AL["Level 40-49"];
- { 1, 3075, "", "=q4=Eye of Flame", "=ds=#s1#, #a1#", "", ""};
- { 2, 940, "", "=q4=Robes of Insight", "=ds=#s5#, #a1#", "", ""};
- { 3, 14551, "", "=q4=Edgemaster's Handguards", "=ds=#s9#, #a3#", "", ""};
- { 4, 17007, "", "=q4=Stonerender Gauntlets", "=ds=#s9#, #a3#", "", ""};
- { 5, 14549, "", "=q4=Boots of Avoidance", "=ds=#s12#, #a4#", "", ""};
- { 6, 1315, "", "=q4=Lei of Lilies", "=ds=#s2#", "", ""};
- { 7, 942, "", "=q4=Freezing Band", "=ds=#s13#", "", ""};
- { 8, 1447, "", "=q4=Ring of Saviors", "=ds=#s13#", "", ""};
- { 16, 2164, "", "=q4=Gut Ripper", "=ds=#h1#, #w4#", "", ""};
- { 17, 2163, "", "=q4=Shadowblade", "=ds=#h1#, #w4#", "", ""};
- { 18, 809, "", "=q4=Bloodrazor", "=ds=#h1#, #w10#", "", ""};
- { 19, 871, "", "=q4=Flurry Axe", "=ds=#h1#, #w1#", "", ""};
- { 20, 2291, "", "=q4=Kang the Decapitator", "=ds=#h2#, #w1#", "", ""};
- { 21, 810, "", "=q4=Hammer of the Northern Wind", "=ds=#h1#, #w6#", "", ""};
- { 22, 2915, "", "=q4=Taran Icebreaker", "=ds=#h2#, #w6#", "", ""};
- { 23, 812, "", "=q4=Glowing Brightwood Staff", "=ds=#w9#", "", ""};
- { 24, 943, "", "=q4=Warden Staff", "=ds=#w9#", "", ""};
- { 25, 1169, "", "=q4=Blackskull Shield", "=ds=#w8#", "", ""};
- { 26, 1979, "", "=q4=Wall of the Dead", "=ds=#w8#", "", ""};
- { 27, 2824, "", "=q4=Hurricane", "=ds=#w2#", "", ""};
- { 28, 2100, "", "=q4=Precisely Calibrated Boomstick", "=ds=#w5#", "", ""};
- };
- {
- Name = AL["Level 50-60"];
- { 1, 3475, "", "=q4=Cloak of Flames", "=ds=#s4#", "", ""};
- { 2, 14553, "", "=q4=Sash of Mercy", "=ds=#s10#, #a2#", "", ""};
- { 3, 2245, "", "=q4=Helm of Narv", "=ds=#s1#, #a3#", "", ""};
- { 4, 14552, "", "=q4=Stockade Pauldrons", "=ds=#s3#, #a4#", "", ""};
- { 5, 14554, "", "=q4=Cloudkeeper Legplates", "=ds=#s11#, #a4#", "", ""};
- { 6, 1443, "", "=q4=Jeweled Amulet of Cainwyn", "=ds=#s2#", "", ""};
- { 7, 14558, "", "=q4=Lady Maye's Pendant", "=ds=#s2#", "", ""};
- { 8, 2246, "", "=q4=Myrmidon's Signet", "=ds=#s13#", "", ""};
- { 9, 833, "", "=q4=Lifestone", "=ds=#s14#", "", ""};
- { 10, 14557, "", "=q4=The Lion Horn of Stormwind", "=ds=#s14#", "", ""};
- { 16, 14555, "", "=q4=Alcor's Sunrazor", "=ds=#h1#, #w4#", "", ""};
- { 17, 2244, "", "=q4=Krol Blade", "=ds=#h1#, #w10#", "", ""};
- { 18, 1728, "", "=q4=Teebu's Blazing Longsword", "=ds=#h1#, #w10#", "", ""};
- { 19, 2801, "", "=q4=Blade of Hanna", "=ds=#h2#, #w10#", "", ""};
- { 20, 647, "", "=q4=Destiny", "=ds=#h2#, #w10#", "", ""};
- { 21, 811, "", "=q4=Axe of the Deep Woods", "=ds=#h1#, #w1#", "", ""};
- { 22, 1263, "", "=q4=Brain Hacker", "=ds=#h2#, #w1#", "", ""};
- { 23, 2243, "", "=q4=Hand of Edward the Odd", "=ds=#h1#, #w6#", "", ""};
- { 24, 944, "", "=q4=Elemental Mage Staff", "=ds=#w9#", "", ""};
- { 25, 1168, "", "=q4=Skullflame Shield", "=ds=#w8#", "", ""};
- { 26, 2099, "", "=q4=Dwarven Hand Cannon", "=ds=#w5#", "", ""};
+ Name = "Old Keys";
+ { 1, 0, "INV_Box_01", "=q6=#e9#", "" };
+ { 2, 7146, "", "=q2=The Scarlet Key", "=ds=#e9#" };
+ { 3, 12382, "", "=q2=Key to the City", "=ds=#e9#" };
+ { 4, 6893, "", "=q1=Workshop Key", "=ds=#e9#" };
+ { 5, 11000, "", "=q1=Shadowforge Key", "=ds=#e9#" };
+ { 6, 11140, "", "=q1=Prison Cell Key", "=ds=#e9#" };
+ { 7, 18249, "", "=q1=Crescent Key", "=ds=#e9#" };
+ { 8, 13704, "", "=q1=Skeleton Key", "=ds=#e9#" };
+ { 10, 0, "INV_Box_01", "=q6=#j7#", "" };
+ { 11, 22057, "", "=q1=Brazier of Invocation", "=ds=#m27#" };
+ { 12, 21986, "", "=q1=Banner of Provocation", "=ds=#m27#" };
+ { 16, 0, "INV_Box_01", "=q6=#m20#", "" };
+ { 17, 19931, "", "=q3=Gurubashi Mojo Madness", "=ds=#m27#" };
+ { 18, 13523, "", "=q1=Blood of Innocents", "=ds=#m27#" };
+ { 19, 18746, "", "=q1=Divination Scryer", "=ds=#m27#" };
+ { 20, 18663, "", "=q1=J'eevee's Jar", "=ds=#m27#" };
+ { 21, 19974, "", "=q1=Mudskunk Lure", "=ds=#m27#" };
+ { 22, 7733, "", "=q1=Staff of Prehistoria", "=ds=#m27#" };
+ { 23, 10818, "", "=q1=Yeh'kinya's Scroll", "=ds=#m27#" };
};
};
- -----------
- --- PvP ---
- -----------
+-----------------------------------------
+--- Ahn'Qiraj: The Ruins of Ahn'Qiraj ---
+-----------------------------------------
- ----------------------
- --- Alterac Valley ---
- ----------------------
+AtlasLoot_Data["RuinsofAQ"] = {
+ Name = BabbleZone["Ruins of Ahn'Qiraj"];
+ Type = "ClassicRaid";
+ Map = "TheRuinsofAhnQiraj";
+ {
+ Name = BabbleBoss["Kurinnaxx"];
+ { 1, 21499, "", "=q4=Vestments of the Shifting Sands", "=ds=#s5#, #a1#", "", "7.34%" };
+ { 2, 21498, "", "=q4=Qiraji Sacrificial Dagger", "=ds=#h1#, #w4#", "", "7.53%" };
+ { 4, 21500, "", "=q3=Belt of the Inquisition", "=ds=#s10#, #a1#", "", "14.84%" };
+ { 5, 21501, "", "=q3=Toughened Silithid Hide Gloves", "=ds=#s9#, #a2#", "", "12.91%" };
+ { 6, 21502, "", "=q3=Sand Reaver Wristguards", "=ds=#s8#, #a3#", "", "13.79%" };
+ { 7, 21503, "", "=q3=Belt of the Sand Reaver", "=ds=#s10#, #a4#", "", "14.38%" };
+ { 9, 22217, "", "=q1=Kurinnaxx's Venom Sac", "=ds=#m3#", "", "100%" };
+ { 16, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "30.83%" };
+ { 17, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "30.25%" };
+ { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "7.98%" };
+ { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "7.80%" };
- AtlasLoot_Data["AVMisc"] = {
- Name = BabbleZone["Alterac Valley"];
- {
- Name = AL["Misc. Rewards"];
- { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "=q5=#b1#"};
- { 2, 19030, "", "=q4=Stormpike Battle Charger", "=ds=#e12#", "50000 #alliance#"};
- { 3, 19045, "", "=q3=Stormpike Battle Standard", "=ds=#e14#", "15000 #alliance#"};
- { 4, 19032, "", "=q1=Stormpike Battle Tabard", "=ds=#s7#", "15000 #alliance#"};
- { 6, 19316, "", "=q2=Ice Threaded Arrow", "=ds=#w17#", "60 #silver# 1 #faction#"};
- { 7, 17348, "", "=q1=Major Healing Draught", "=ds=#e2#", "10 #silver# 8 #faction#"};
- { 8, 17349, "", "=q1=Superior Healing Draught", "=ds=#e2#", "5 #silver# 1 #faction#"};
- { 9, 19301, "", "=q1=Alterac Manna Biscuit", "=ds=#e3#", "70 #silver#"};
- { 10, 19307, "", "=q1=Alterac Heavy Runecloth Bandage", "=ds=#e5#", "80 #silver#"};
- { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", "=q5=#b2#"};
- { 17, 19029, "", "=q4=Horn of the Frostwolf Howler", "=ds=#e12#", "50000 #horde#"};
- { 18, 19046, "", "=q3=Frostwolf Battle Standard", "=ds=#e14#", "15000 #horde#"};
- { 19, 19031, "", "=q1=Frostwolf Battle Tabard", "=ds=#s7#", "15000 #horde#"};
- { 21, 19317, "", "=q2=Ice Threaded Bullet", "=ds=#w18#", "60 #silver# 1 #faction#"};
- { 22, 17351, "", "=q1=Major Mana Draught", "=ds=#e2#", "10 #silver# 8 #faction#"};
- { 23, 17352, "", "=q1=Superior Mana Draught", "=ds=#e2#", "5 #silver# 1 #faction#"};
- { 24, 19318, "", "=q1=Bottled Alterac Spring Water", "=ds=#e4#", "50 #silver#"};
- };
- {
- Name = "Alliance";
- { 2, 19086, "", "=q3=Stormpike Sage's Cloak", "=ds=#s4#", "1600 #alliance#"};
- { 3, 19084, "", "=q3=Stormpike Soldier's Cloak", "=ds=#s4#", "1600 #alliance#"};
- { 4, 19094, "", "=q3=Stormpike Cloth Girdle", "=ds=#s10#, #a1#", "3000 #alliance#"};
- { 5, 19093, "", "=q3=Stormpike Leather Girdle", "=ds=#s10#, #a2#", "3000 #alliance#"};
- { 6, 19092, "", "=q3=Stormpike Mail Girdle", "=ds=#s10#, #a3#", "3000 #alliance#"};
- { 7, 19091, "", "=q3=Stormpike Plate Girdle", "=ds=#s10#, #a4#", "3000 #alliance#"};
- { 8, 19098, "", "=q3=Stormpike Sage's Pendant", "=ds=#s2#", "1600 #alliance#"};
- { 9, 19097, "", "=q3=Stormpike Soldier's Pendant", "=ds=#s2#", "1600 #alliance#"};
- { 10, 19100, "", "=q3=Electrified Dagger", "=ds=#h1#, #w4#", "2400 #alliance#"};
- { 11, 19104, "", "=q3=Stormstrike Hammer", "=ds=#h1#, #w6#", "2400 #alliance#"};
- { 12, 19102, "", "=q3=Crackling Staff", "=ds=#w9#", "3000 #alliance#"};
- { 13, 19320, "", "=q3=Gnoll Skin Bandolier", "=ds=#w20#", "1600 #alliance#"};
- { 14, 19319, "", "=q3=Harpy Hide Quiver", "=ds=#w19#", "1600 #alliance#"};
- { 17, 19325, "", "=q4=Don Julio's Band", "=ds=#s13#", "5000 #faction#"};
- { 18, 21563, "", "=q4=Don Rodrigo's Band", "=ds=#s13#", "5000 #faction#"};
- { 19, 19312, "", "=q4=Lei of the Lifegiver", "=ds=#s15#", "5000 #faction#"};
- { 20, 19315, "", "=q4=Therazane's Touch", "=ds=#s15#", "5000 #faction#"};
- { 21, 19308, "", "=q4=Tome of Arcane Domination", "=ds=#s15#", "5000 #faction#"};
- { 22, 19309, "", "=q4=Tome of Shadow Force", "=ds=#s15#", "5000 #faction#"};
- { 23, 19311, "", "=q4=Tome of Fiery Arcana", "=ds=#s15#", "5000 #faction#"};
- { 24, 19310, "", "=q4=Tome of the Ice Lord", "=ds=#s15#", "5000 #faction#"};
- { 25, 19324, "", "=q4=The Lobotomizer", "=ds=#h1#, #w4#", "5000 #faction#"};
- { 26, 19321, "", "=q4=The Immovable Object", "=ds=#w8#", "5000 #faction#"};
- { 27, 19323, "", "=q4=The Unstoppable Force", "=ds=#h2#, #w6#", "5000 #faction#"};
- };
- {
- Name = "Horde";
- { 2, 19085, "", "=q3=Frostwolf Advisor's Cloak", "=ds=#s4#", "1600 #horde#"};
- { 3, 19083, "", "=q3=Frostwolf Legionnaire's Cloak", "=ds=#s4#", "1600 #horde#"};
- { 4, 19090, "", "=q3=Frostwolf Cloth Belt", "=ds=#s10#, #a1#", "3000 #horde#"};
- { 5, 19089, "", "=q3=Frostwolf Leather Belt", "=ds=#s10#, #a2#", "3000 #horde#"};
- { 6, 19088, "", "=q3=Frostwolf Mail Belt", "=ds=#s10#, #a3#", "3000 #horde#"};
- { 7, 19087, "", "=q3=Frostwolf Plate Belt", "=ds=#s10#, #a4#", "3000 #horde#"};
- { 8, 19096, "", "=q3=Frostwolf Advisor's Pendant", "=ds=#s2#", "1600 #horde#"};
- { 9, 19095, "", "=q3=Frostwolf Legionnaire's Pendant", "=ds=#s2#", "1600 #horde#"};
- { 10, 19099, "", "=q3=Glacial Blade", "=ds=#h1#, #w4#", "2400 #horde#"};
- { 11, 19103, "", "=q3=Frostbite", "=ds=#h1#, #w6#", "2400 #horde#"};
- { 12, 19101, "", "=q3=Whiteout Staff", "=ds=#w9#", "3000 #horde#"};
- { 13, 19320, "", "=q3=Gnoll Skin Bandolier", "=ds=#w20#", "1600 #horde#"};
- { 14, 19319, "", "=q3=Harpy Hide Quiver", "=ds=#w19#", "1600 #horde#"};
- { 17, 19325, "", "=q4=Don Julio's Band", "=ds=#s13#", "5000 #faction#"};
- { 18, 21563, "", "=q4=Don Rodrigo's Band", "=ds=#s13#", "5000 #faction#"};
- { 19, 19312, "", "=q4=Lei of the Lifegiver", "=ds=#s15#", "5000 #faction#"};
- { 20, 19315, "", "=q4=Therazane's Touch", "=ds=#s15#", "5000 #faction#"};
- { 21, 19308, "", "=q4=Tome of Arcane Domination", "=ds=#s15#", "5000 #faction#"};
- { 22, 19309, "", "=q4=Tome of Shadow Force", "=ds=#s15#", "5000 #faction#"};
- { 23, 19311, "", "=q4=Tome of Fiery Arcana", "=ds=#s15#", "5000 #faction#"};
- { 24, 19310, "", "=q4=Tome of the Ice Lord", "=ds=#s15#", "5000 #faction#"};
- { 25, 19324, "", "=q4=The Lobotomizer", "=ds=#h1#, #w4#", "5000 #faction#"};
- { 26, 19321, "", "=q4=The Immovable Object", "=ds=#w8#", "5000 #faction#"};
- { 27, 19323, "", "=q4=The Unstoppable Force", "=ds=#h2#, #w6#", "5000 #faction#"};
- };
+ };
+ {
+ Name = BabbleBoss["General Rajaxx"];
+ { 1, 21493, "", "=q4=Boots of the Vanguard", "=ds=#s12#, #a2#", "", "8.13%" };
+ { 2, 21492, "", "=q4=Manslayer of the Qiraji", "=ds=#h2#, #w10#", "", "10.04%" };
+ { 4, 21496, "", "=q3=Bracers of Qiraji Command", "=ds=#s8#, #a1#", "", "15.79%" };
+ { 5, 21494, "", "=q3=Southwind's Grasp", "=ds=#s10#, #a2#", "", "15.13%" };
+ { 6, 21497, "", "=q3=Boots of the Qiraji General", "=ds=#s12#, #a3#", "", "15.45%" };
+ { 7, 21495, "", "=q3=Legplates of the Qiraji Command", "=ds=#s11#, #a4#", "", "15.47%" };
+ { 9, 0, "INV_Box_01", "=q6=" .. AL["Rajaxx's Captains"], "" };
+ { 10, 21810, "", "=q3=Treads of the Wandering Nomad", "=ds=#s12#, #a1#", "", "3.11%" };
+ { 11, 21809, "", "=q3=Fury of the Forgotten Swarm", "=ds=#s2#", "", "3.20%" };
+ { 12, 21806, "", "=q3=Gavel of Qiraji Authority", "=ds=#h2#, #w6#", "", "3.04%" };
+ { 16, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "36.51%" };
+ { 17, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "33.97%" };
+ { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "8.82%" };
+ { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.56%" };
+ { 21, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Lieutenant General Andorov"], "" };
+ { 22, 22221, "", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# (300)" };
+ { 23, 22219, "", "=q1=Plans: Jagged Obsidian Shield", "=ds=#p2# (300)" };
+ };
+ {
+ Name = BabbleBoss["Moam"];
+ { 1, 21472, "", "=q4=Dustwind Turban", "=ds=#s1#, #a1#", "", "7.76%" };
+ { 2, 21467, "", "=q4=Thick Silithid Chestguard", "=ds=#s5#, #a2#", "", "6.76%" };
+ { 3, 21479, "", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "", "7.12%" };
+ { 4, 21471, "", "=q4=Talon of Furious Concentration", "=ds=#s15#", "", "7.39%" };
+ { 6, 21470, "", "=q3=Cloak of the Savior", "=ds=#s4#", "", "14.23%" };
+ { 7, 21468, "", "=q3=Mantle of Maz'Nadir", "=ds=#s3#, #a1#", "", "15.86%" };
+ { 8, 21455, "", "=q3=Southwind Helm", "=ds=#s1#, #a2#", "", "14.08%" };
+ { 9, 21474, "", "=q3=Chitinous Shoulderguards", "=ds=#s3#, #a2#", "", "15.25%" };
+ { 10, 21469, "", "=q3=Gauntlets of Southwind", "=ds=#s9#, #a2#", "", "1" };
+ { 11, 21476, "", "=q3=Obsidian Scaled Leggings", "=ds=#s11#, #a3#", "", "6.81%" };
+ { 12, 21475, "", "=q3=Legplates of the Destroyer", "=ds=#s11#, #a4#", "", "10.39%" };
+ { 13, 21477, "", "=q3=Ring of Fury", "=ds=#s13#", "", "14.42%" };
+ { 14, 21473, "", "=q3=Eye of Moam", "=ds=#s14#", "", "14.74%" };
+ { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "36.38%" };
+ { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "33.16%" };
+ { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "7.56%" };
+ { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.34%" };
+ { 21, 22220, "", "=q3=Plans: Black Grasp of the Destroyer", "=ds=#p2# (300)", "", "4.11%" };
+ { 22, 22194, "", "=q4=Black Grasp of the Destroyer", "=ds=#s9#, #a3#" };
+ };
+ {
+ Name = BabbleBoss["Buru the Gorger"];
+ { 1, 21487, "", "=q4=Slimy Scaled Gauntlets", "=ds=#s9#, #a3#", "", "2.64%" };
+ { 2, 21486, "", "=q4=Gloves of the Swarm", "=ds=#s9#, #a4#", "", "5.22%" };
+ { 3, 21485, "", "=q4=Buru's Skull Fragment", "=ds=#w8#", "", "7.88%" };
+ { 5, 21489, "", "=q3=Quicksand Waders", "=ds=#s12#, #a1#", "", "15.95%" };
+ { 6, 21491, "", "=q3=Scaled Bracers of the Gorger", "=ds=#s8#, #a2#", "", "16.51%" };
+ { 7, 21490, "", "=q3=Slime Kickers", "=ds=#s12#, #a4#", "", "15.99%" };
+ { 8, 21488, "", "=q3=Fetish of Chitinous Spikes", "=ds=#s14#", "", "17.22%" };
+ { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "8.31%" };
+ { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "8.98%" };
+ { 18, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "9.77%" };
+ { 19, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "9.84%" };
+ { 20, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "26.98%" };
+ { 21, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "25.58%" };
+ };
+ {
+ Name = BabbleBoss["Ayamiss the Hunter"];
+ { 1, 21479, "", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "", "6.18%" };
+ { 2, 21466, "", "=q4=Stinger of Ayamiss", "=ds=#h3#, #w6#", "", "2.06%" };
+ { 3, 21478, "", "=q4=Bow of Taut Sinew", "=ds=#w2#", "", "10.14%" };
+ { 5, 21484, "", "=q3=Helm of Regrowth", "=ds=#s1#, #a2#", "", "15.85%" };
+ { 6, 21480, "", "=q3=Scaled Silithid Gauntlets", "=ds=#s9#, #a3#", "", "17.10%" };
+ { 7, 21482, "", "=q3=Boots of the Fiery Sands", "=ds=#s12#, #a3#", "", "4.92%" };
+ { 8, 21481, "", "=q3=Boots of the Desert Protector", "=ds=#s12#, #a4#", "", "11.08%" };
+ { 9, 21483, "", "=q3=Ring of the Desert Winds", "=ds=#s13#", "", "16.32%" };
+ { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "8.24%" };
+ { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "8.21%" };
+ { 18, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "8.85%" };
+ { 19, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "10.97%" };
+ { 20, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "26.98%" };
+ { 21, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "27.50%" };
+ };
+ {
+ Name = BabbleBoss["Ossirian the Unscarred"];
+ { 1, 21456, "", "=q4=Sandstorm Cloak", "=ds=#s4#", "", "10.89%" };
+ { 2, 21464, "", "=q4=Shackles of the Unscarred", "=ds=#s8#, #a1#", "", "12.62%" };
+ { 3, 21462, "", "=q4=Gloves of Dark Wisdom", "=ds=#s9#, #a1#", "", "11.89%" };
+ { 4, 21461, "", "=q4=Leggings of the Black Blizzard", "=ds=#s11#, #a1#", "", "12.83%" };
+ { 5, 21458, "", "=q4=Gauntlets of New Life", "=ds=#s9#, #a2#", "", "13.25%" };
+ { 6, 21454, "", "=q4=Runic Stone Shoulders", "=ds=#s3#, #a3#", "", "4.10%" };
+ { 7, 21463, "", "=q4=Ossirian's Binding", "=ds=#s10#, #a3#", "", "12.27%" };
+ { 8, 21460, "", "=q4=Helm of Domination", "=ds=#s1#, #a4#", "", "12.18%" };
+ { 9, 21453, "", "=q4=Mantle of the Horusath", "=ds=#s3#, #a4#", "", "6.96%" };
+ { 10, 21457, "", "=q4=Bracers of Brutality", "=ds=#s8#, #a4#", "", "10.74%" };
+ { 11, 21715, "", "=q4=Sand Polished Hammer", "=ds=#h1#, #w6#", "", "5.95%" };
+ { 12, 21459, "", "=q4=Crossbow of Imminent Doom", "=ds=#w3#", "", "6.12%" };
+ { 13, 21452, "", "=q4=Staff of the Ruins", "=ds=#w9#", "", "10.32%" };
+ { 16, 21220, "", "=q4=Head of Ossirian the Unscarred", "=ds=#m2#", "", "100%" };
+ { 17, 21504, "", "=q4=Charm of the Shifting Sands", "=q1=#m4#: =ds=#s2#" };
+ { 18, 21507, "", "=q4=Amulet of the Shifting Sands", "=q1=#m4#: =ds=#s2#" };
+ { 19, 21505, "", "=q4=Choker of the Shifting Sands", "=q1=#m4#: =ds=#s2#" };
+ { 20, 21506, "", "=q4=Pendant of the Shifting Sands", "=q1=#m4#: =ds=#s2#" };
+ { 22, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "35.27%" };
+ { 23, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "30.69%" };
+ { 24, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "9.65%" };
+ { 25, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.53%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 20873, "", "=q3=Alabaster Idol", "=ds=#e15#", "", "0.39%" };
+ { 2, 20869, "", "=q3=Amber Idol", "=ds=#e15#", "", "0.36%" };
+ { 3, 20866, "", "=q3=Azure Idol", "=ds=#e15#", "", "0.48%" };
+ { 4, 20870, "", "=q3=Jasper Idol", "=ds=#e15#", "", "0.52%" };
+ { 5, 20868, "", "=q3=Lambent Idol", "=ds=#e15#", "", "0.48%" };
+ { 6, 20871, "", "=q3=Obsidian Idol", "=ds=#e15#", "", "0.41%" };
+ { 7, 20867, "", "=q3=Onyx Idol", "=ds=#e15#", "", "0.36%" };
+ { 8, 20872, "", "=q3=Vermillion Idol", "=ds=#e15#", "", "0.31%" };
+ { 10, 22202, "", "=q1=Small Obsidian Shard", "=ds=#e8#" };
+ { 11, 22203, "", "=q1=Large Obsidian Shard", "=ds=#e8#" };
+ { 16, 20864, "", "=q2=Bone Scarab", "=ds=#e15#", "", "0.84%" };
+ { 17, 20861, "", "=q2=Bronze Scarab", "=ds=#e15#", "", "0.88%" };
+ { 18, 20863, "", "=q2=Clay Scarab", "=ds=#e15#", "", "0.95%" };
+ { 19, 20862, "", "=q2=Crystal Scarab", "=ds=#e15#", "", "0.99%" };
+ { 20, 20859, "", "=q2=Gold Scarab", "=ds=#e15#", "", "0.96%" };
+ { 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%" };
+ { 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%" };
+ { 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%" };
+ { 25, 21761, "", "=q1=Scarab Coffer Key", "=ds=#e9#", "", "7.27%" };
+ };
+ {
+ Name = "AQ Class Books";
+ { 1, 21294, "", "=q3=Book of Healing Touch XI", "=q1=#m1# =ds=#c1#", "", "4.12%" };
+ { 2, 21296, "", "=q3=Book of Rejuvenation XI", "=q1=#m1# =ds=#c1#", "", "4.20%" };
+ { 3, 21295, "", "=q3=Book of Starfire VII", "=q1=#m1# =ds=#c1#", "", "4.00%" };
+ { 4, 21306, "", "=q3=Guide: Serpent Sting IX", "=q1=#m1# =ds=#c2#", "", "4.85%" };
+ { 5, 21304, "", "=q3=Guide: Multi-Shot V", "=q1=#m1# =ds=#c2#", "", "4.66%" };
+ { 6, 21307, "", "=q3=Guide: Aspect of the Hawk VII", "=q1=#m1# =ds=#c2#", "", "4.65%" };
+ { 7, 21279, "", "=q3=Tome of Fireball XII", "=q1=#m1# =ds=#c3#", "", "5.15%" };
+ { 8, 21214, "", "=q3=Tome of Frostbolt XI", "=q1=#m1# =ds=#c3#", "", "5.10%" };
+ { 9, 21280, "", "=q3=Tome of Arcane Missiles VIII", "=q1=#m1# =ds=#c3#", "", "5.03%" };
+ { 10, 21288, "", "=q3=Libram: Blessing of Wisdom VI", "=q1=#m1# =ds=#c4#", "", "3.50%" };
+ { 11, 21289, "", "=q3=Libram: Blessing of Might VII", "=q1=#m1# =ds=#c4#", "", "3.07%" };
+ { 12, 21290, "", "=q3=Libram: Holy Light IX", "=q1=#m1# =ds=#c4#", "", "3.09%" };
+ { 13, 21284, "", "=q3=Codex of Greater Heal V", "=q1=#m1# =ds=#c5#", "", "5.15%" };
+ { 14, 21287, "", "=q3=Codex of Prayer of Healing V", "=q1=#m1# =ds=#c5#", "", "4.89%" };
+ { 15, 21285, "", "=q3=Codex of Renew X", "=q1=#m1# =ds=#c5#", "", "4.91%" };
+ { 16, 21300, "", "=q3=Handbook of Backstab IX", "=q1=#m1# =ds=#c6#", "", "4.29%" };
+ { 17, 21303, "", "=q3=Handbook of Feint V", "=q1=#m1# =ds=#c6#", "", "4.79%" };
+ { 18, 21302, "", "=q3=Handbook of Deadly Poison V", "=q1=#m1# =ds=#c6#", "", "5.47%" };
+ { 19, 21291, "", "=q3=Tablet of Healing Wave X", "=q1=#m1# =ds=#c7#", "", "2.05%" };
+ { 20, 21292, "", "=q3=Tablet of Strength of Earth Totem V", "=q1=#m1# =ds=#c7#", "", "1.67%" };
+ { 21, 21293, "", "=q3=Tablet of Grace of Air Totem III", "=q1=#m1# =ds=#c7#", "", "1.81%" };
+ { 22, 21281, "", "=q3=Grimoire of Shadow Bolt X", "=q1=#m1# =ds=#c8#", "", "4.23%" };
+ { 23, 21283, "", "=q3=Grimoire of Corruption VII", "=q1=#m1# =ds=#c8#", "", "3.82%" };
+ { 24, 21282, "", "=q3=Grimoire of Immolate VIII", "=q1=#m1# =ds=#c8#", "", "4.51%" };
+ { 25, 21298, "", "=q3=Manual of Battle Shout VII", "=q1=#m1# =ds=#c9#", "", "4.84%" };
+ { 26, 21299, "", "=q3=Manual of Revenge VI", "=q1=#m1# =ds=#c9#", "", "4.78%" };
+ { 27, 21297, "", "=q3=Manual of Heroic Strike IX", "=q1=#m1# =ds=#c9#", "", "4.83%" };
+ };
+ {
+ Name = "AQ Enchants";
+ { 1, 20728, "", "=q3=Formula: Enchant Gloves - Frost Power", "=ds=#p4# (300)" };
+ { 2, 20731, "", "=q3=Formula: Enchant Gloves - Superior Agility", "=ds=#p4# (300)" };
+ { 3, 20734, "", "=q3=Formula: Enchant Cloak - Stealth", "=ds=#p4# (300)" };
+ { 4, 20729, "", "=q3=Formula: Enchant Gloves - Fire Power", "=ds=#p4# (300)" };
+ { 5, 20736, "", "=q3=Formula: Enchant Cloak - Dodge", "=ds=#p4# (300)" };
+ { 6, 20730, "", "=q3=Formula: Enchant Gloves - Healing Power", "=ds=#p4# (300)" };
+ { 7, 20727, "", "=q3=Formula: Enchant Gloves - Shadow Power", "=ds=#p4# (300)" };
+ };
+};
+
+------------------------------------------
+--- Ahn'Qiraj: The Temple of Ahn'Qiraj ---
+------------------------------------------
+
+AtlasLoot_Data["TempleofAQ"] = {
+ Name = BabbleZone["Temple of Ahn'Qiraj"];
+ Type = "ClassicRaid";
+ Map = "TheTempleofAhnQiraj";
+ {
+ Name = BabbleBoss["The Prophet Skeram"];
+ { 1, 21701, "", "=q4=Cloak of Concentrated Hatred", "=ds=#s4#", "", "11.81%" };
+ { 2, 21708, "", "=q4=Beetle Scaled Wristguards", "=ds=#s8#, #a2#", "", "12.85%" };
+ { 3, 21698, "", "=q4=Leggings of Immersion", "=ds=#s11#, #a2#", "", " 10.99%" };
+ { 4, 21699, "", "=q4=Barrage Shoulders", "=ds=#s3#, #a3#", "", "11.50%" };
+ { 5, 21705, "", "=q4=Boots of the Fallen Prophet", "=ds=#s12#, #a3#", "", "3.33%" };
+ { 6, 21814, "", "=q4=Breastplate of Annihilation", "=ds=#s5#, #a4#", "", "11.01%" };
+ { 7, 21704, "", "=q4=Boots of the Redeemed Prophecy", "=ds=#s12#, #a4#", "", "7.75%" };
+ { 8, 21706, "", "=q4=Boots of the Unwavering Will", "=ds=#s12#, #a4#", "", "12.23%" };
+ { 10, 21702, "", "=q4=Amulet of Foul Warding", "=ds=#s2#", "", "12.20%" };
+ { 11, 21700, "", "=q4=Pendant of the Qiraji Guardian", "=ds=#s2#", "", "11.57%" };
+ { 12, 21707, "", "=q4=Ring of Swarming Thought", "=ds=#s13#", "", "12.57%" };
+ { 13, 21703, "", "=q4=Hammer of Ji'zhi", "=ds=#h2#, #w6#", "", "7.14%" };
+ { 14, 21128, "", "=q4=Staff of the Qiraji Prophets", "=ds=#w9#", "", " 6.32%" };
+ { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "1.74%" };
+ { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#" };
+ { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#" };
+ { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#" };
+ { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "1.32%" };
+ { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#" };
+ { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#" };
+ { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#" };
+ { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#" };
+ { 27, 22222, "", "=q3=Plans: Thick Obsidian Breastplate", "=ds=#p2# (300)", "", "5.00%" };
+ { 28, 22196, "", "=q4=Thick Obsidian Breastplate", "=ds=#s5#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["The Bug Family"];
+ { 1, 21697, "", "=q4=Cape of the Trinity", "=ds=#s4# =q2=#m5#", "", "14%" };
+ { 2, 21694, "", "=q4=Ternary Mantle", "=ds=#s3#, #a1# =q2=#m5#", "", "16%" };
+ { 3, 21696, "", "=q4=Robes of the Triumvirate", "=ds=#s5#, #a1# =q2=#m5#", "", "13%" };
+ { 4, 21693, "", "=q4=Guise of the Devourer", "=ds=#s1#, #a2# =q2=#m5#", "", "16%" };
+ { 5, 21692, "", "=q4=Triad Girdle", "=ds=#s10#, #a4# =q2=#m5#", "", "16%" };
+ { 6, 21695, "", "=q4=Angelista's Touch", "=ds=#s13# =q2=#m5#", "", "14%" };
+ { 8, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3# =q2=#m5#", "", "7%" };
+ { 9, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3# =q2=#m5#", "", "7%" };
+ { 11, 21680, "", "=q4=Vest of Swift Execution", "=ds=#s5#, #a2# =q2=#n115#", "", "21%" };
+ { 12, 21603, "", "=q4=Wand of Qiraji Nobility", "=ds=#w12# =q2=#n115#", "", "25%" };
+ { 13, 21681, "", "=q4=Ring of the Devoured", "=ds=#s13# =q2=#n115#", "", "17%" };
+ { 14, 21685, "", "=q4=Petrified Scarab", "=ds=#s14# =q2=#n115#", "", "21%" };
+ { 16, 21689, "", "=q4=Gloves of Ebru", "=ds=#s9#, #a2# =q2=#n116#", "", "18%" };
+ { 17, 21691, "", "=q4=Ooze-ridden Gauntlets", "=ds=#s9#, #a4# =q2=#n116#", "", "20%" };
+ { 18, 21688, "", "=q4=Boots of the Fallen Hero", "=ds=#s12#, #a4# =q2=#n116#", "", "18%" };
+ { 19, 21690, "", "=q4=Angelista's Charm", "=ds=#s2# =q2=#n116#", "", "20%" };
+ { 21, 21686, "", "=q4=Mantle of Phrenic Power", "=ds=#s3#, #a1# =q2=#n117#", "", "13%" };
+ { 22, 21682, "", "=q4=Bile-Covered Gauntlets", "=ds=#s9#, #a2# =q2=#n117#", "", "19%" };
+ { 23, 21684, "", "=q4=Mantle of the Desert's Fury", "=ds=#s3#, #a3# =q2=#n117#", "", "16%" };
+ { 24, 21683, "", "=q4=Mantle of the Desert Crusade", "=ds=#s3#, #a4# =q2=#n117#", "", "14%" };
+ { 25, 21687, "", "=q4=Ukko's Ring of Darkness", "=ds=#s13# =q2=#n117#", "", "20%" };
+ };
+ {
+ Name = BabbleBoss["Battleguard Sartura"];
+ { 1, 21671, "", "=q4=Robes of the Battleguard", "=ds=#s5#, #a1#", "", "13.30%" };
+ { 2, 21676, "", "=q4=Leggings of the Festering Swarm", "=ds=#s11#, #a1#", "", "13.02%" };
+ { 3, 21648, "", "=q4=Recomposed Boots", "=ds=#s12#, #a1#", "", "7.64%" };
+ { 4, 21669, "", "=q4=Creeping Vine Helm", "=ds=#s1#, #a2#", "", "12.33%" };
+ { 5, 21672, "", "=q4=Gloves of Enforcement", "=ds=#s9#, #a2#", "", "11.87%" };
+ { 6, 21675, "", "=q4=Thick Qirajihide Belt", "=ds=#s10#, #a2#", "", "13.26%" };
+ { 7, 21668, "", "=q4=Scaled Leggings of Qiraji Fury", "=ds=#s11#, #a3#", "", "4.03%" };
+ { 8, 21674, "", "=q4=Gauntlets of Steadfast Determination", "=ds=#s9#, #a4#", "", "11.07%" };
+ { 9, 21667, "", "=q4=Legplates of Blazing Light", "=ds=#s11#, #a4#", "", "7.44%" };
+ { 11, 21678, "", "=q4=Necklace of Purity", "=ds=#s2#", "", "" };
+ { 12, 21670, "", "=q4=Badge of the Swarmguard", "=ds=#s14#", "", "13.22%" };
+ { 13, 21666, "", "=q4=Sartura's Might", "=ds=#s15#", "", "6.47%" };
+ { 14, 21673, "", "=q4=Silithid Claw", "=ds=#h3#, #w13#", "", "7.16%" };
+ { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.01%" };
+ { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#" };
+ { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#" };
+ { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#" };
+ { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.02%" };
+ { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#" };
+ { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#" };
+ { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#" };
+ { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#" };
+ };
+ {
+ Name = BabbleBoss["Fankriss the Unyielding"];
+ { 1, 21627, "", "=q4=Cloak of Untold Secrets", "=ds=#s4#", "", "12.51%" };
+ { 2, 21663, "", "=q4=Robes of the Guardian Saint", "=ds=#s5#, #a1#", "", "12.95%" };
+ { 3, 21665, "", "=q4=Mantle of Wicked Revenge", "=ds=#s3#, #a2#", "", "13.25%" };
+ { 4, 21645, "", "=q4=Hive Tunneler's Boots", "=ds=#s12#, #a2#", "", "14.04%" };
+ { 5, 21651, "", "=q4=Scaled Sand Reaver Leggings", "=ds=#s11#, #a3#", "", "12.91%" };
+ { 6, 21639, "", "=q4=Pauldrons of the Unrelenting", "=ds=#s3#, #a4#", "", "14.78%" };
+ { 7, 21652, "", "=q4=Silithid Carapace Chestguard", "=ds=#s5#, #a4#", "", "10.29%" };
+ { 9, 21647, "", "=q4=Fetish of the Sand Reaver", "=ds=#s14#", "", "13.82%" };
+ { 10, 21664, "", "=q4=Barbed Choker", "=ds=#s2#", "", "12.63%" };
+ { 11, 22402, "", "=q4=Libram of Grace", "=ds=#s16#, #w16#", "", "4.21%" };
+ { 12, 22396, "", "=q4=Totem of Life", "=ds=#s16#, #w15#", "", "1.69%" };
+ { 13, 21650, "", "=q4=Ancient Qiraji Ripper", "=ds=#h1#, #w10#", "", " 7.19%" };
+ { 14, 21635, "", "=q4=Barb of the Sand Reaver", "=ds=#w7#", "", "6.61%" };
+ { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.84%" };
+ { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#" };
+ { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#" };
+ { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#" };
+ { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.09%" };
+ { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#" };
+ { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#" };
+ { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#" };
+ { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#" };
+ };
+ {
+ Name = BabbleBoss["Viscidus"];
+ { 1, 21624, "", "=q4=Gauntlets of Kalimdor", "=ds=#s9#, #a3#", "", "3.90%" };
+ { 2, 21626, "", "=q4=Slime-coated Leggings", "=ds=#s11#, #a3#", "", "13.66%" };
+ { 3, 21623, "", "=q4=Gauntlets of the Righteous Champion", "=ds=#s9#, #a4#", "", "5.37%" };
+ { 5, 21677, "", "=q4=Ring of the Qiraji Fury", "=ds=#s13#", "", "2.93%" };
+ { 6, 21625, "", "=q4=Scarab Brooch", "=ds=#s14#", "", "21.46%" };
+ { 7, 22399, "", "=q4=Idol of Health", "=ds=#s16#, #w14#", "", "7.32%" };
+ { 8, 21622, "", "=q4=Sharpened Silithid Femur", "=ds=#h3#, #w10#", "", "15.12%" };
+ { 10, 20932, "", "=q4=Spaulders of the Imperial Guard", "=ds=#tt2.5#", "", "100%", "=TT=T2.5SHOULDER" };
+ { 11, 20928, "", "=q4=Bindings of the Lost Nomad", "=ds=#tt2.5#", "", "100%", "=TT=T2.5FEET" };
+ { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "3.19%" };
+ { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#" };
+ { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#" };
+ { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#" };
+ { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "6.86%" };
+ { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#" };
+ { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#" };
+ { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#" };
+ { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#" };
+ };
+ {
+ Name = BabbleBoss["Princess Huhuran"];
+ { 1, 21619, "", "=q4=Gloves of the Messiah", "=ds=#s9#, #a1#", "", "12.01%" };
+ { 2, 21621, "", "=q4=Cloak of the Golden Hive", "=ds=#s4#", "", "12.56%" };
+ { 3, 21617, "", "=q4=Wasphide Gauntlets", "=ds=#s9#, #a2#", "", "11.97%" };
+ { 4, 21618, "", "=q4=Hive Defiler Wristguards", "=ds=#s8#, #a4#", "", "10.34%" };
+ { 6, 21620, "", "=q4=Ring of the Martyr", "=ds=#s13#", "", "12.97%" };
+ { 7, 21616, "", "=q4=Huhuran's Stinger", "=ds=#w2#", "", "5.71%" };
+ { 9, 20932, "", "=q4=Spaulders of the Imperial Guard", "=ds=#tt2.5#", "", "100%", "=TT=T2.5SHOULDER" };
+ { 10, 20928, "", "=q4=Bindings of the Lost Nomad", "=ds=#tt2.5#", "", "100%", "=TT=T2.5FEET" };
+ { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.31%" };
+ { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#" };
+ { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#" };
+ { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#" };
+ { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.11%" };
+ { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#" };
+ { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#" };
+ { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#" };
+ { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#" };
+ };
+ {
+ Name = BabbleBoss["The Twin Emperors"];
+ { 1, 21600, "", "=q4=Boots of Epiphany", "=ds=#s12#, #a1#", "", "15.77%" };
+ { 2, 21602, "", "=q4=Qiraji Execution Bracers", "=ds=#s8#, #a2#", "", "15.95%" };
+ { 3, 21599, "", "=q4=Vek'lor's Gloves of Devastation", "=ds=#s9#, #a3#", "", "15.77%" };
+ { 4, 21598, "", "=q4=Royal Qiraji Belt", "=ds=#s10#, #a4#", "", "9.84%" };
+ { 5, 21597, "", "=q4=Royal Scepter of Vek'lor", "=ds=#s15#", "", "6.99%" };
+ { 6, 21601, "", "=q4=Ring of Emperor Vek'lor", "=ds=#s13#", "", "17.27%" };
+ { 7, 20735, "", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# (300)", "", "6.62%" };
+ { 9, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "6.25%" };
+ { 10, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#" };
+ { 11, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#" };
+ { 12, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#" };
+ { 13, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#" };
+ { 15, 20930, "", "=q4=Diadem of the Desert Prince", "=ds=#tt2.5#", "", "100%", "=TT=T2.5HEAD" };
+ { 16, 21604, "", "=q4=Bracelets of Royal Redemption", "=ds=#s8#, #a1#", "", "12.51%" };
+ { 17, 21605, "", "=q4=Gloves of the Hidden Temple", "=ds=#s9#, #a2#", "", "15.45%" };
+ { 18, 21609, "", "=q4=Regenerating Belt of Vek'nilash", "=ds=#s10#, #a2#", "", "13.35%" };
+ { 19, 21607, "", "=q4=Grasp of the Fallen Emperor", "=ds=#s10#, #a3#", "", "2.72%" };
+ { 20, 21606, "", "=q4=Belt of the Fallen Emperor", "=ds=#s10#, #a4#", "", "12.22%" };
+ { 21, 21679, "", "=q4=Kalimdor's Revenge", "=ds=#h2#, #w10#", "", "9.25%" };
+ { 22, 21608, "", "=q4=Amulet of Vek'nilash", "=ds=#s2#", "", "14.25%" };
+ { 23, 20726, "", "=q3=Formula: Enchant Gloves - Threat", "=ds=#p4# (300)", "", "6.24%" };
+ { 25, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.00%" };
+ { 26, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#" };
+ { 27, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#" };
+ { 28, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#" };
+ };
+ {
+ Name = BabbleBoss["Ouro"];
+ { 1, 21615, "", "=q4=Don Rigoberto's Lost Hat", "=ds=#s1#, #a1#", "", "28.63%" };
+ { 2, 21611, "", "=q4=Burrower Bracers", "=ds=#s8#, #a1#", "", "24.44%" };
+ { 3, 23558, "", "=q4=The Burrower's Shell", "=ds=#s14#", "", "2.90%" };
+ { 4, 23570, "", "=q4=Jom Gabbar", "=ds=#s14#", "", "2.80%" };
+ { 5, 23557, "", "=q4=Larvae of the Great Worm", "=ds=#w5#", "", "3.95%" };
+ { 6, 21610, "", "=q4=Wormscale Blocker", "=ds=#w8#", "", "16.54%" };
+ { 8, 20931, "", "=q4=Hardened Qiraj Chitin", "=ds=#tt2.5#", "", "100%", "=TT=T2.5LEGS" };
+ { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.20%" };
+ { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#" };
+ { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#" };
+ { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4# =ds=#h1#, #w6#" };
+ { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.10%" };
+ { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4# =ds=#h1#, #w1#" };
+ { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#" };
+ { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#" };
+ { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#" };
+ };
+ {
+ Name = BabbleBoss["C'Thun"];
+ { 1, 21583, "", "=q4=Cloak of Clarity", "=ds=#s4#", "", "14.45%" };
+ { 2, 22731, "", "=q4=Cloak of the Devoured", "=ds=#s4#", "", "16.34%" };
+ { 3, 21585, "", "=q4=Dark Storm Gauntlets", "=ds=#s9#, #a1#", "", "13.63%" };
+ { 4, 22730, "", "=q4=Eyestalk Waist Cord", "=ds=#s10#, #a1#", "", "10.41%" };
+ { 5, 21582, "", "=q4=Grasp of the Old God", "=ds=#s10#, #a1#", "", "15.04%" };
+ { 6, 21586, "", "=q4=Belt of Never-ending Agony", "=ds=#s10#, #a2#", "", "11.24%" };
+ { 7, 21581, "", "=q4=Gauntlets of Annihilation", "=ds=#s9#, #a4#", "", "12.04%" };
+ { 9, 22732, "", "=q4=Mark of C'Thun", "=ds=#s2#", "", "10.62%" };
+ { 10, 21596, "", "=q4=Ring of the Godslayer", "=ds=#s13#", "", "11.83%" };
+ { 11, 21579, "", "=q4=Vanquished Tentacle of C'Thun", "=ds=#s14#", "", "12.18%" };
+ { 12, 21126, "", "=q4=Death's Sting", "=ds=#h1#, #w4#", "", "" };
+ { 13, 21134, "", "=q4=Dark Edge of Insanity", "=ds=#h2#, #w1#", "", "" };
+ { 14, 21839, "", "=q4=Scepter of the False Prophet", "=ds=#h3#, #w6#", "", "4.75%" };
+ { 16, 20933, "", "=q4=Husk of the Old God", "=ds=#tt2.5#", "", "100%", "=TT=T2.5CHEST" };
+ { 18, 21221, "", "=q4=Eye of C'Thun", "=ds=#m2#", "", "100%" };
+ { 19, 21710, "", "=q4=Cloak of the Fallen God", "=q1=#m4#: =ds=#s4#" };
+ { 20, 21712, "", "=q4=Amulet of the Fallen God", "=q1=#m4#: =ds=#s2#" };
+ { 21, 21709, "", "=q4=Ring of the Fallen God", "=q1=#m4#: =ds=#s13#" };
+ { 23, 22734, "", "=q1=Base of Atiesh", "=ds=#m3#" };
+ { 24, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#" };
+ { 25, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#" };
+ { 26, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#" };
+ { 27, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 21838, "", "=q4=Garb of Royal Ascension", "=ds=#s5#, #a1#", "", "0.20%" };
+ { 2, 21888, "", "=q4=Gloves of the Immortal", "=ds=#s9#, #a1#", "", "0.16%" };
+ { 3, 21889, "", "=q4=Gloves of the Redeemed Prophecy", "=ds=#s9#, #a4# =q1=#m1# =ds=#c4#", "", "0.39%" };
+ { 4, 21836, "", "=q4=Ritssyn's Ring of Chaos", "=ds=#s13#", "", "0.18%" };
+ { 5, 21891, "", "=q4=Shard of the Fallen Star", "=ds=#s14#", "", "0.59%" };
+ { 6, 21856, "", "=q4=Neretzek, The Blood Drinker", "=ds=#h2#, #w1#", "", "0.20%" };
+ { 7, 21837, "", "=q4=Anubisath Warhammer", "=ds=#h1#, #w6#", "", "0.21%" };
+ { 9, 22202, "", "=q1=Small Obsidian Shard", "=ds=#e8#" };
+ { 10, 22203, "", "=q1=Large Obsidian Shard", "=ds=#e8#" };
+ { 16, 21218, "", "=q3=Blue Qiraji Resonating Crystal", "=ds=#e12#", "", "10.64%" };
+ { 17, 21324, "", "=q3=Yellow Qiraji Resonating Crystal", "=ds=#e12#", "", "12.15%" };
+ { 18, 21323, "", "=q3=Green Qiraji Resonating Crystal", "=ds=#e12#", "", "11.62%" };
+ { 19, 21321, "", "=q3=Red Qiraji Resonating Crystal", "=ds=#e12#", "", "1.39%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 20876, "", "=q3=Idol of Death", "=ds=#e15#", "", "0.26%" };
+ { 2, 20879, "", "=q3=Idol of Life", "=ds=#e15#", "", "0.29%" };
+ { 3, 20875, "", "=q3=Idol of Night", "=ds=#e15#", "", "0.29%" };
+ { 4, 20878, "", "=q3=Idol of Rebirth", "=ds=#e15#", "", "0.28%" };
+ { 5, 20881, "", "=q3=Idol of Strife", "=ds=#e15#", "", "0.21%" };
+ { 6, 20877, "", "=q3=Idol of the Sage", "=ds=#e15#", "", "0.33%" };
+ { 7, 20874, "", "=q3=Idol of the Sun", "=ds=#e15#", "", "0.21%" };
+ { 8, 20882, "", "=q3=Idol of War", "=ds=#e15#", "", "0.30%" };
+ { 10, 21230, "", "=q1=Ancient Qiraji Artifact", "=ds=#m2#" };
+ { 12, 21762, "", "=q1=Greater Scarab Coffer Key", "=ds=#e9#", "", "7.03%" };
+ { 16, 20864, "", "=q2=Bone Scarab", "=ds=#e15#", "", "0.84%" };
+ { 17, 20861, "", "=q2=Bronze Scarab", "=ds=#e15#", "", "0.88%" };
+ { 18, 20863, "", "=q2=Clay Scarab", "=ds=#e15#", "", "0.95%" };
+ { 19, 20862, "", "=q2=Crystal Scarab", "=ds=#e15#", "", "0.99%" };
+ { 20, 20859, "", "=q2=Gold Scarab", "=ds=#e15#", "", "0.96%" };
+ { 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%" };
+ { 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%" };
+ { 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%" };
+ };
+};
+
+AtlasLoot_Data["AQOpening"] = {
+ Name = "AQOpening";
+ {
+ Name = "AQOpening";
+ { 1, 21138, "", "=q1=Red Scepter Shard", "=ds=#m3#" };
+ { 2, 21530, "", "=q4=Onyx Embedded Leggings", "=ds=#s11#, #a3#" };
+ { 3, 21529, "", "=q4=Amulet of Shadow Shielding", "=ds=#s2#" };
+ { 5, 21139, "", "=q1=Green Scepter Shard", "=ds=#m3#" };
+ { 6, 21532, "", "=q4=Drudge Boots", "=ds=#s12#, #a2#" };
+ { 7, 21531, "", "=q4=Drake Tooth Necklace", "=ds=#s2#" };
+ { 9, 21137, "", "=q1=Blue Scepter Shard", "=ds=#m3#" };
+ { 10, 21517, "", "=q4=Gnomish Turban of Psychic Might", "=ds=#s1#, #a1#" };
+ { 11, 21527, "", "=q4=Darkwater Robes", "=ds=#s5#, #a1#" };
+ { 12, 21526, "", "=q4=Band of Icy Depths", "=ds=#s13#" };
+ { 13, 21025, "", "=q4=Recipe: Dirge's Kickin' Chimaerok Chops", "=ds=#p3# (300)" };
+ { 16, 21175, "", "=q1=The Scepter of the Shifting Sands", "=ds=#m3#" };
+ { 17, 21176, "", "=q5=Black Qiraji Resonating Crystal", "=ds=#e12#" };
+ { 18, 21522, "", "=q4=Shadowsong's Sorrow", "=ds=#h1#, #w4#" };
+ { 19, 21523, "", "=q4=Fang of Korialstrasz", "=ds=#h3#, #w4#" };
+ { 20, 21520, "", "=q4=Ravencrest's Legacy", "=ds=#h1#, #w10#" };
+ { 21, 21521, "", "=q4=Runesword of the Red", "=ds=#h3#, #w10#" };
+ };
+};
+
+-------------------------
+--- Blackfathom Deeps ---
+-------------------------
+
+AtlasLoot_Data["BlackfathomDeeps"] = {
+ Name = BabbleZone["Blackfathom Deeps"];
+ Map = "BlackfathomDeeps";
+ {
+ Name = BabbleBoss["Ghamoo-ra"];
+ { 1, 6908, "", "=q3=Ghamoo-ra's Bind", "=ds=#s10#, #a1#", "", "45.81%" };
+ { 2, 6907, "", "=q3=Tortoise Armor", "=ds=#s5#, #a3#", "", "30.59%" };
+ };
+ {
+ Name = BabbleBoss["Lady Sarevess"];
+ { 1, 888, "", "=q3=Naga Battle Gloves", "=ds=#s9#, #a2#", "", "33.72%" };
+ { 2, 11121, "", "=q3=Darkwater Talwar", "=ds=#h1#, #w10#", "", "33.10%" };
+ { 3, 3078, "", "=q3=Naga Heartpiercer", "=ds=#w2#", "", "16.87%" };
+ };
+ {
+ Name = BabbleBoss["Gelihast"];
+ { 1, 6906, "", "=q3=Algae Fists", "=ds=#s9#, #a3#", "", "38.24%" };
+ { 2, 6905, "", "=q3=Reef Axe", "=ds=#h2#, #w1#", "", "42.29%" };
+ { 3, 1470, "", "=q1=Murloc Skin Bag", "=ds=#m12# #e1#", "", "14.13%" };
+ };
+ {
+ Name = BabbleBoss["Baron Aquanis"];
+ { 1, 16782, "", "=q2=Strange Water Globe", "=ds=#m2# (#m6#)", "", "90.35%" };
+ { 2, 16886, "", "=q3=Outlaw Sabre", "=q1=#m4#: =ds=#h1#, #w10#" };
+ { 3, 16887, "", "=q3=Witch's Finger", "=q1=#m4#: =ds=#s15#" };
+ };
+ {
+ Name = BabbleBoss["Twilight Lord Kelris"];
+ { 1, 6903, "", "=q3=Gaze Dreamer Pants", "=ds=#s11#, #a1#", "", "31.90%" };
+ { 2, 1155, "", "=q3=Rod of the Sleepwalker", "=ds=#w9#", "", "45.59%" };
+ { 3, 5881, "", "=q1=Head of Kelris", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Old Serra'kis"];
+ { 1, 6901, "", "=q3=Glowing Thresher Cape", "=ds=#s4#", "", "36.14%" };
+ { 2, 6902, "", "=q3=Bands of Serra'kis", "=ds=#s8#, #a2#", "", "29.24%" };
+ { 3, 6904, "", "=q3=Bite of Serra'kis", "=ds=#h1#, #w4#", "", "15.34%" };
+ };
+ {
+ Name = BabbleBoss["Aku'mai"];
+ { 1, 6910, "", "=q3=Leech Pants", "=ds=#s11#, #a1#", "", "29.72%" };
+ { 2, 6911, "", "=q3=Moss Cinch", "=ds=#s10#, #a2#", "", "29.01%" };
+ { 3, 6909, "", "=q3=Strike of the Hydra", "=ds=#h2#, #w10#", "", "14.46%" };
+ { 4, 0, "INV_Box_01", "=q6=" .. AL["Quest Item"], "" };
+ { 5, 5359, "", "=q1=Lorgalis Manuscript", "=ds=#m3#", "", "100%" };
+ { 6, 16762, "", "=q1=Fathom Core", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 1486, "", "=q3=Tree Bark Jacket", "=ds=#s5#, #a1#", "", "0.02%" };
+ { 2, 3416, "", "=q3=Martyr's Chain", "=ds=#s5#, #a3#", "", "0.01%" };
+ { 3, 1491, "", "=q3=Ring of Precision", "=ds=#s13#", "", "0.01%" };
+ { 4, 3413, "", "=q3=Doomspike", "=ds=#h1#, #w4#", "", "0.01%" };
+ { 5, 2567, "", "=q3=Evocator's Blade", "=ds=#h1#, #w4#", "", "0.02%" };
+ { 6, 3417, "", "=q3=Onyx Claymore", "=ds=#h2#, #w10#", "", "0.01%" };
+ { 7, 1454, "", "=q3=Axe of the Enforcer", "=ds=#h1#, #w1#", "", "0.01%" };
+ { 8, 1481, "", "=q3=Grimclaw", "=ds=#h1#, #w1#", "", "0.01%" };
+ { 9, 3414, "", "=q3=Crested Scepter", "=ds=#h1#, #w6#", "", "0.01%" };
+ { 10, 3415, "", "=q3=Staff of the Friar", "=ds=#w9#", "", "0.02%" };
+ { 11, 2271, "", "=q3=Staff of the Blessed Seer", "=ds=#w9#", "", "0.02%" };
+ };
+};
+
+--------------------------------------------
+--- Blackrock Mountain: Blackrock Dephts ---
+--------------------------------------------
+
+AtlasLoot_Data["BlackrockDepths"] = {
+ Name = BabbleZone["Blackrock Depths"];
+ Type = "ClassicDungeonExt";
+ Map = "BlackrockDepths";
+ {
+ Name = AL["Overmaster Pyron"];
+ { 1, 14486, "", "=q3=Pattern: Cloak of Fire", "=ds=#p8# (275)", "", "17.95%" };
+ };
+ {
+ Name = BabbleBoss["Lord Roccor"];
+ { 1, 22234, "", "=q3=Mantle of Lost Hope", "=ds=#s3#, #a1#", "", "20.48%" };
+ { 2, 11632, "", "=q3=Earthslag Shoulders", "=ds=#s3#, #a4#", "", "19.99%" };
+ { 3, 22397, "", "=q3=Idol of Ferocity", "=ds=#s16#, #w14#", "", "19.58%" };
+ { 4, 11631, "", "=q3=Stoneshell Guard", "=ds=#w8#", "", "22.06%" };
+ { 5, 11630, "", "=q3=Rockshard Pellets", "=ds=#w18#", "", "16.82%" };
+ { 16, 11813, "", "=q2=Formula: Smoking Heart of the Mountain", "=ds=#p4# (265)", "", "14.79%" };
+ { 17, 11811, "", "=q3=Smoking Heart of the Mountain", "=ds=#s14#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ };
+ {
+ Name = BabbleBoss["High Interrogator Gerstahn"];
+ { 1, 11626, "", "=q3=Blackveil Cape", "=ds=#s4#", "", "15.98%" };
+ { 2, 11624, "", "=q3=Kentic Amice", "=ds=#s3#, #a1#", "", "22.45%" };
+ { 3, 22240, "", "=q3=Greaves of Withering Despair", "=ds=#s12#, #a3#", "", "16.81%" };
+ { 4, 11625, "", "=q3=Enthralled Sphere", "=ds=#s15#", "", "23.14%" };
+ { 6, 11140, "", "=q1=Prison Cell Key", "=ds=#e9#" };
+ };
+ {
+ Name = "Ring of Law";
+ { 1, 11677, "", "=q3=Graverot Cape", "=ds=#s4# =q2=#brd1#", "", "23.07%" };
+ { 2, 11675, "", "=q3=Shadefiend Boots", "=ds=#s12#, #a2# =q2=#brd1#", "", "25.84%" };
+ { 3, 11731, "", "=q3=Savage Gladiator Greaves", "=ds=#s12#, #a3# =q2=#brd1#", "", "15.14%" };
+ { 4, 11678, "", "=q3=Carapace of Anub'shiah", "=ds=#s5#, #a4# =q2=#brd1#", "", "15.78%" };
+ { 6, 11685, "", "=q3=Splinthide Shoulders", "=ds=#s3#, #a2# =q2=#brd2#", "", "24.49%" };
+ { 7, 11686, "", "=q3=Girdle of Beastial Fury", "=ds=#s10#, #a2# =q2=#brd2#", "", "15.85%" };
+ { 8, 11679, "", "=q3=Rubicund Armguards", "=ds=#s8#, #a3# =q2=#brd2#", "", "25.13%" };
+ { 9, 11730, "", "=q3=Savage Gladiator Grips", "=ds=#s9#, #a3# =q2=#brd2#", "", "14.12%" };
+ { 11, 11726, "", "=q4=Savage Gladiator Chain", "=ds=#s5#, #a3# =q2=#brd3#", "", "14.52%" };
+ { 12, 22271, "", "=q3=Leggings of Frenzied Magic", "=ds=#s11#, #a2# =q2=#brd3#", "", "23.24%" };
+ { 13, 11729, "", "=q3=Savage Gladiator Helm", "=ds=#s1#, #a3# =q2=#brd3#, #brd5#", "", "10.08%" };
+ { 14, 11722, "", "=q3=Dregmetal Spaulders", "=ds=#s3#, #a3# =q2=#brd4#", "", "15.07%" };
+ { 15, 11703, "", "=q3=Stonewall Girdle", "=ds=#s10#, #a4# =q2=#brd4#", "", "31.45%" };
+ { 16, 22270, "", "=q3=Entrenching Boots", "=ds=#s12#, #a4# =q2=#brd4#", "", "11.97%" };
+ { 17, 22257, "", "=q3=Bloodclot Band", "=ds=#s13# =q2=#brd3#", "", "26.28%" };
+ { 18, 22266, "", "=q3=Flarethorn", "=ds=#h1#, #w4# =q2=#brd3#", "", "17.98%" };
+ { 19, 11702, "", "=q3=Grizzle's Skinner", "=ds=#h1#, #w1# =q2=#brd4#", "", "20.62%" };
+ { 20, 11610, "", "=q3=Plans: Dark Iron Pulverizer", "=ds=#p2# (265) =q2=#brd4#", "", "69.76%" };
+ { 22, 11634, "", "=q3=Silkweb Gloves", "=ds=#s9#, #a1# =q2=#brd5#", "", "24.02%" };
+ { 23, 11633, "", "=q3=Spiderfang Carapace", "=ds=#s5#, #a4# =q2=#brd5#", "", "20.61%" };
+ { 24, 11635, "", "=q3=Hookfang Shanker", "=ds=#h1#, #w4# =q2=#brd5#", "", "17.26%" };
+ { 26, 11662, "", "=q3=Ban'thok Sash", "=ds=#s10#, #a1# =q2=#brd6#", "", "23.77%" };
+ { 27, 11665, "", "=q3=Ogreseer Fists", "=ds=#s9#, #a2# =q2=#brd6#", "", "28.16%" };
+ { 28, 11728, "", "=q3=Savage Gladiator Leggings", "=ds=#s11#, #a3# =q2=#brd6#", "", "14.95%" };
+ { 29, 11824, "", "=q3=Cyclopean Band", "=ds=#s13# =q2=#brd6#", "", "18.37%" };
+ };
+ {
+ Name = AL["Theldren"];
+ { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n17#" };
+ { 2, 22330, "", "=q3=Shroud of Arcane Mastery", "=ds=#s4#", "", "19.73%" };
+ { 3, 22305, "", "=q3=Ironweave Mantle", "=ds=#s3#, #a1#", "", "30.39%" };
+ { 4, 22317, "", "=q3=Lefty's Brass Knuckle", "=ds=#h1#, #w13#", "", "26.15%" };
+ { 5, 22318, "", "=q3=Malgen's Long Bow", "=ds=#w2#", "", "22.88%" };
+ { 7, 22047, "", "=q1=Top Piece of Lord Valthalak's Amulet", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Houndmaster Grebmar"];
+ { 1, 11623, "", "=q3=Spritecaster Cape", "=ds=#s4#", "", "32.09%" };
+ { 2, 11626, "", "=q3=Blackveil Cape", "=ds=#s4#", "", "0.60%" };
+ { 3, 11627, "", "=q3=Fleetfoot Greaves", "=ds=#s12#, #a3#", "", "32.09%" };
+ { 4, 11628, "", "=q3=Houndmaster's Bow", "=ds=#w2#", "", "12.14%" };
+ { 5, 11629, "", "=q3=Houndmaster's Rifle", "=ds=#w5#", "", "11.18%" };
+ };
+ {
+ Name = "Monument of Franclorn Forgewright";
+ { 1, 11000, "", "=q1=Shadowforge Key", "=q1=#m4#: =ds=#e9#" };
+ };
+ {
+ Name = BabbleBoss["Pyromancer Loregrain"];
+ { 1, 11747, "", "=q3=Flamestrider Robes", "=ds=#s5#, #a2#", "", "18.10%" };
+ { 2, 11749, "", "=q3=Searingscale Leggings", "=ds=#s11#, #a3#", "", "21.29%" };
+ { 3, 11750, "", "=q3=Kindling Stave", "=ds=#w9#", "", " 16.19%" };
+ { 4, 11748, "", "=q3=Pyric Caduceus", "=ds=#w12#", "", "30.20%" };
+ { 6, 11207, "", "=q2=Formula: Enchant Weapon - Fiery Weapon", "=ds=#p4# (265)", "", "13.32%" };
+ };
+ {
+ Name = AL["The Vault"];
+ { 1, 0, "INV_Box_01", "=q6=#x3#", "" };
+ { 2, 11309, "", "=q1=The Heart of the Mountain", "=ds=#m3#", "", "100%" };
+ { 4, 0, "INV_Box_01", "=q6=#x5#", "" };
+ { 5, 22256, "", "=q3=Mana Shaping Handwraps", "=ds=#s9#, #a1#", "", "4.49%" };
+ { 6, 11929, "", "=q3=Haunting Specter Leggings", "=ds=#s11#, #a1#", "", "21.12%" };
+ { 7, 11926, "", "=q3=Deathdealer Breastplate", "=ds=#s5#, #a3#", "", "21.57%" };
+ { 8, 22205, "", "=q3=Black Steel Bindings", "=ds=#s8#, #a4#", "", "4.24%" };
+ { 9, 22255, "", "=q3=Magma Forged Band", "=ds=#s13#", "", "4.02%" };
+ { 10, 11920, "", "=q3=Wraith Scythe", "=ds=#h1#, #w1#", "", "21.12%" };
+ { 11, 11923, "", "=q3=The Hammer of Grace", "=ds=#h3#, #w6#", "", "19.84%" };
+ { 12, 22254, "", "=q3=Wand of Eternal Light", "=ds=#w12#", "", "3.65%" };
+ { 16, 0, "INV_Box_01", "=q6=#x4#", "" };
+ { 17, 11752, "", "=q1=Black Blood of the Tormented", "=ds=#m3#", "", "44.48%" };
+ { 18, 11751, "", "=q1=Burning Essence", "=ds=#m3#", "", "39.35%" };
+ { 19, 11753, "", "=q1=Eye of Kajal", "=ds=#m3#", "", "39.95%" };
+ };
+ {
+ Name = BabbleBoss["Warder Stilgiss"];
+ { 1, 11782, "", "=q3=Boreal Mantle", "=ds=#s3#, #a1#", "", "18.38%" };
+ { 2, 22241, "", "=q3=Dark Warder's Pauldrons", "=ds=#s3#, #a2#", "", "18.38%" };
+ { 3, 11783, "", "=q3=Chillsteel Girdle", "=ds=#s10#, #a3#", "", "20.50%" };
+ { 4, 11784, "", "=q3=Arbiter's Blade", "=ds=#h3#, #w10#", "", "21.54%" };
+ };
+ {
+ Name = BabbleBoss["Verek"];
+ { 1, 22242, "", "=q3=Verek's Leash", "=ds=#s10#, #a3#", "", "9.78%" };
+ { 2, 11755, "", "=q3=Verek's Collar", "=ds=#s2#", "", "9.54%" };
+ };
+ {
+ Name = BabbleBoss["Fineous Darkvire"];
+ { 1, 11839, "", "=q3=Chief Architect's Monocle", "=ds=#s1#, #a1#", "", "1" };
+ { 2, 11841, "", "=q3=Senior Designer's Pantaloons", "=ds=#s11#, #a1#", "", "21.25%" };
+ { 3, 11842, "", "=q3=Lead Surveyor's Mantle", "=ds=#s3#, #a3#", "", "20.83%" };
+ { 4, 22223, "", "=q3=Foreman's Head Protector", "=ds=#s1#, #a4#", "", "19.73%" };
+ { 6, 11840, "", "=q1=Master Builder's Shirt", "#s6#", "", "3.9%" };
+ { 8, 10999, "", "=q1=Ironfel", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Lord Incendius"];
+ { 1, 11768, "", "=q3=Incendic Bracers", "=ds=#s8#, #a1#", "", "1.30%" };
+ { 2, 11766, "", "=q3=Flameweave Cuffs", "=ds=#s8#, #a1# =q2=#m16#", "", "18.88%" };
+ { 3, 11764, "", "=q3=Cinderhide Armsplints", "=ds=#s8#, #a2# =q2=#m16#", "", "18.33%" };
+ { 4, 11765, "", "=q3=Pyremail Wristguards", "=ds=#s8#, #a3# =q2=#m16#", "", "18.85%" };
+ { 5, 11767, "", "=q3=Emberplate Armguards", "=ds=#s8#, #a4# =q2=#m16#", "", "19.24%" };
+ { 6, 19268, "", "=q3=Ace of Elementals", "=ds=#e16#", "", "2.10%" };
+ { 8, 21987, "", "=q1=Incendicite of Incendius", "=ds=#m3#" };
+ { 9, 11126, "", "=q1=Tablet of Kurniya", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Bael'Gar"];
+ { 1, 11807, "", "=q3=Sash of the Burning Heart", "=ds=#s10#, #a1#", "", "13.59%" };
+ { 2, 11802, "", "=q3=Lavacrest Leggings", "=ds=#s11#, #a4#", "", "26.75%" };
+ { 3, 11805, "", "=q3=Rubidium Hammer", "=ds=#h1#, #w6#", "", "17.02%" };
+ { 4, 11803, "", "=q3=Force of Magma", "=ds=#h2#, #w6#", "", "27.47%" };
+ };
+ {
+ Name = BabbleBoss["General Angerforge"];
+ { 1, 11821, "", "=q3=Warstrife Leggings", "=ds=#s11#, #a2#", "", "16.41%" };
+ { 2, 11820, "", "=q3=Royal Decorated Armor", "=ds=#s5#, #a3#", "", "18.55%" };
+ { 3, 11810, "", "=q3=Force of Will", "=ds=#s14#", "", "12.97%" };
+ { 4, 11817, "", "=q3=Lord General's Sword", "=ds=#h1#, #w10# ", "", "14.72%" };
+ { 5, 11816, "", "=q3=Angerforge's Battle Axe", "=ds=#h2#, #w1#", "", "16.41%" };
+ { 7, 11464, "", "=q1=Marshal Windsor's Lost Information", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Golem Lord Argelmach"];
+ { 1, 11822, "", "=q3=Omnicast Boots", "=ds=#s12#, #a1#", "", "2" };
+ { 2, 11823, "", "=q3=Luminary Kilt", "=ds=#s11#, #a2#", "", "25.73%" };
+ { 3, 11669, "", "=q3=Naglering", "=ds=#s13#", "", "22.92%" };
+ { 4, 11819, "", "=q3=Second Wind", "=ds=#s14#", "", "5.75%" };
+ { 6, 21956, "", "=q2=Design: Dark Iron Scorpid", "=ds=#p12# (300)" };
+ { 8, 11268, "", "=q1=Head of Argelmach", "=ds=#m3#" };
+ { 9, 11465, "", "=q1=Marshal Windsor's Lost Information", "=ds=#m3#" };
+ };
+ {
+ Name = "The Grim Guzzler";
+ { 1, 0, "INV_Box_01", "=q6=#n48#", "" };
+ { 2, 11735, "", "=q3=Ragefury Eyepatch", "=ds=#s1#, #a2#", "", "8.11%" };
+ { 3, 18043, "", "=q3=Coal Miner Boots", "=ds=#s12#, #a2#", "", "23.87%" };
+ { 4, 22275, "", "=q3=Firemoss Boots", "=ds=#s12#, #a2#", "", "23.87%" };
+ { 5, 18044, "", "=q3=Hurley's Tankard", "=ds=#h1#, #w6#", "", "31.02%" };
+ { 6, 11312, "", "=q1=Lost Thunderbrew Recipe", "=ds=#m3#" };
+ { 8, 0, "INV_Box_01", "=q6=#n49#", "" };
+ { 9, 22212, "", "=q3=Golem Fitted Pauldrons", "=ds=#s3#, #a3#", "", "26.04%" };
+ { 10, 11745, "", "=q3=Fists of Phalanx", "=ds=#s9#, #a4#", "", "29.79%" };
+ { 11, 11744, "", "=q3=Bloodfist", "=ds=#h1#, #w13#", "", "28.48%" };
+ { 16, 0, "INV_Box_01", "=q6=#n50#", "" };
+ { 17, 11612, "", "=q3=Plans: Dark Iron Plate", "=ds=#p2# (285)", "", "22.20%" };
+ { 18, 2662, "", "=q2=Ribbly's Quiver", "=ds=#m13# #w19#", "", "" };
+ { 19, 2663, "", "=q2=Ribbly's Bandolier", "=ds=#m13# #w20#", "", "15.73%" };
+ { 20, 11742, "", "=q2=Wayfarer's Knapsack", "=ds=#m13# #e1#", "", "25.07%" };
+ { 21, 11313, "", "=q1=Ribbly's Head", "=ds=#m3#" };
+ { 23, 0, "INV_Box_01", "=q6=#n51#", "" };
+ { 24, 12793, "", "=q3=Mixologist's Tunic", "=ds=#s5#, #a2#", "", "24.87%" };
+ { 25, 12791, "", "=q3=Barman Shanker", "=ds=#h1#, #w4#", "", "6.97%" };
+ { 26, 13483, "", "=q2=Recipe: Transmute Fire to Earth", "=ds=#p1# (275)" };
+ { 27, 18653, "", "=q2=Schematic: Goblin Jumper Cables XL", "=ds=#p5# (265)", "", "14.13%" };
+ { 28, 15759, "", "=q1=Pattern: Black Dragonscale Breastplate", "=ds=#p7# (290)" };
+ { 29, 11602, "", "=q1=Grim Guzzler Key", "=ds=#e9#" };
+ { 30, 11325, "", "=q1=Dark Iron Ale Mug", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Ambassador Flamelash"];
+ { 1, 11808, "", "=q4=Circle of Flame", "=ds=#s1#, #a1#", "", "0.84%" };
+ { 3, 11812, "", "=q3=Cape of the Fire Salamander", "=ds=#s4#", "", "25.25%" };
+ { 4, 11814, "", "=q3=Molten Fists", "=ds=#s9#, #a3#", "", "27.88%" };
+ { 5, 11832, "", "=q3=Burst of Knowledge", "=ds=#s14#", "", "14.61%" };
+ { 6, 11809, "", "=q3=Flame Wrath", "=ds=#w7#", "", "18.69%" };
+ { 8, 23320, "", "=q3=Tablet of Flame Shock VI", "=ds=#e10# =q1=#m1# =ds=#c7#" };
+ };
+ {
+ Name = BabbleBoss["Panzor the Invincible"] .. " (" .. AL["Rare"] .. ")";
+ { 1, 22245, "", "=q3=Soot Encrusted Footwear", "=ds=#s12#,#a1#", "", "22.06%" };
+ { 2, 11787, "", "=q3=Shalehusk Boots", "=ds=#s12#, #a4#", "", "19.96%" };
+ { 3, 11786, "", "=q3=Stone of the Earth", "=ds=#h2#, #w10#", "", "20.38%" };
+ { 4, 11785, "", "=q3=Rock Golem Bulwark", "=ds=#w8#", "", "21.22%" };
+ };
+ {
+ Name = "Summoner's Tomb";
+ { 1, 0, "INV_Box_01", "=q6=#x2#", "" };
+ { 2, 11929, "", "=q3=Haunting Specter Leggings", "=ds=#s11#, #a1#", "", "22.60%" };
+ { 3, 11925, "", "=q3=Ghostshroud", "=ds=#s1#, #a2#", "", "21.63%" };
+ { 4, 11926, "", "=q3=Deathdealer Breastplate", "=ds=#s5#, #a3#", "", "22.08%" };
+ { 5, 11927, "", "=q3=Legplates of the Eternal Guardian", "=ds=#s11#, #a4#", "", "65.45%" };
+ { 6, 11922, "", "=q3=Blood-etched Blade", "=ds=#h3#, #w4#", "", "22.05%" };
+ { 7, 11920, "", "=q3=Wraith Scythe", "=ds=#h1# #w1#", "", "22.61%" };
+ { 8, 11923, "", "=q3=The Hammer of Grace", "=ds=#h3#, #w6#", "", "21.29%" };
+ { 9, 11921, "", "=q3=Impervious Giant", "=ds=#h2#, #w6#", "", "22.23%" };
+ };
+ {
+ Name = AL["Shadowforge Flame Keeper"];
+ { 1, 0, "INV_Box_01", "=q6=#n44#", "" };
+ { 2, 11885, "", "=q1=Shadowforge Torch", "=ds=#m20#" };
+ };
+ {
+ Name = BabbleBoss["Magmus"];
+ { 1, 11746, "", "=q3=Golem Skull Helm", "=ds=#s1#, #a4#", "", "20.46%" };
+ { 2, 11935, "", "=q3=Magmus Stone", "=ds=#s15#", "", "21.26%" };
+ { 3, 22395, "", "=q3=Totem of Rage", "=ds=#s16#, #w15#", "", "10.09%" };
+ { 4, 22400, "", "=q3=Libram of Truth", "=ds=#s16#, #w16#", "", "9.75%" };
+ { 5, 22208, "", "=q3=Lavastone Hammer", "=ds=#h2#, #w6#", "", "22.79%" };
+ };
+ {
+ Name = BabbleBoss["Emperor Dagran Thaurissan"];
+ { 1, 11684, "", "=q4=Ironfoe", "=ds=#h1#, #w6#", "", "0.46%" };
+ { 3, 11930, "", "=q3=The Emperor's New Cape", "=ds=#s4#", "", "16.16%" };
+ { 4, 11924, "", "=q3=Robes of the Royal Crown", "=ds=#s5#, #a1#", "", "15.18%" };
+ { 5, 22204, "", "=q3=Wristguards of Renown", "=ds=#s8#, #a2#", "", "12.92%" };
+ { 6, 22207, "", "=q3=Sash of the Grand Hunt", "=ds=#s10#, #a3#", "", "15.12%" };
+ { 7, 11933, "", "=q3=Imperial Jewel", "=ds=#s2#", "", "15.99%" };
+ { 8, 11934, "", "=q3=Emperor's Seal", "=ds=#s13#", "", "15.41%" };
+ { 9, 11815, "", "=q3=Hand of Justice", "=ds=#s14#", "", "10.43%" };
+ { 16, 11931, "", "=q3=Dreadforge Retaliator", "=ds=#h2#, #w1#", "", "15.76%" };
+ { 17, 11932, "", "=q3=Guiding Stave of Wisdom", "=ds=#w9#", "", "15.01%" };
+ { 18, 11928, "", "=q3=Thaurissan's Royal Scepter", "=ds=#s15#", "", " 12.86%" };
+ { 20, 12033, "", "=q1=Thaurissan Family Jewels", "=ds=#e7# #e1#", "", "2.2%" };
+ };
+ {
+ Name = BabbleBoss["Princess Moira Bronzebeard"];
+ { 1, 12554, "", "=q3=Hands of the Exalted Herald", "=ds=#s9#, #a1#", "", "11.91%" };
+ { 2, 12556, "", "=q3=High Priestess Boots", "=ds=#s12#, #a1#", "", "10.26%" };
+ { 3, 12557, "", "=q3=Ebonsteel Spaulders", "=ds=#s3#, #a4#", "", "12.11%" };
+ { 4, 12553, "", "=q3=Swiftwalker Boots", "=ds=#s12#, #a2#", "", "11.05%" };
+ };
+ {
+ Name = "Blacksmith Plans";
+ { 1, 11614, "", "=q2=Plans: Dark Iron Mail", "=ds=#p2# (270)", "", "13.38%" };
+ { 2, 11615, "", "=q2=Plans: Dark Iron Shoulders", "=ds=#p2# (280)", "", "7.65%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 12552, "", "=q3=Blisterbane Wrap", "=ds=#s4#", "", "0.01%" };
+ { 2, 12551, "", "=q3=Stoneshield Cloak", "=ds=#s4#", "", "0.01%" };
+ { 3, 12542, "", "=q3=Funeral Pyre Vestment", "=ds=#s5#, #a1#", "", "0.02%" };
+ { 4, 12546, "", "=q3=Aristocratic Cuffs", "=ds=#s8#, #a1#", "", "0.01%" };
+ { 5, 12550, "", "=q3=Runed Golem Shackles", "=ds=#s8#, #a2#", "", "0.02%" };
+ { 6, 12547, "", "=q3=Mar Alom's Grip", "=ds=#s9#, #a2#", "", "0.01%" };
+ { 7, 12549, "", "=q3=Braincage", "=ds=#s1#, #a3#", "", "0.02%" };
+ { 8, 12555, "", "=q3=Battlechaser's Greaves", "=ds=#s12#, #a4#", "", "0.01%" };
+ { 9, 12531, "", "=q3=Searing Needle", "=ds=#h1#, #w4#", "", "0.02%" };
+ { 10, 12535, "", "=q3=Doomforged Straightedge", "=ds=#h1#, #w10#", "", "0.01%" };
+ { 11, 12527, "", "=q3=Ribsplitter", "=ds=#h1#, #w1# =q2=#m16#", "", "0.02%" };
+ { 12, 12528, "", "=q3=The Judge's Gavel", "=ds=#h2#, #w6#", "", "0.02%" };
+ { 13, 12532, "", "=q3=Spire of the Stoneshaper", "=ds=#w9#", "", "0.01%" };
+ { 16, 15781, "", "=q3=Pattern: Black Dragonscale Leggings", "=ds=#p7# (300) =q1=#n75#", "", "1.93%" };
+ { 17, 15770, "", "=q3=Pattern: Black Dragonscale Shoulders", "=ds=#p7# (300) =q1=#n76#", "", "1.88%" };
+ { 18, 16053, "", "=q2=Schematic: Master Engineer's Goggles", "=ds=#p5# (290) =q1=#n77#", "", "0.45%" };
+ { 19, 16049, "", "=q2=Schematic: Dark Iron Bomb", "=ds=#p5# (285) =q1=#n78#", "", "1.02%" };
+ { 20, 16048, "", "=q2=Schematic: Dark Iron Rifle", "=ds=#p5# (275) =q1=#n79#", "", "0.98%" };
+ { 21, 18654, "", "=q2=Schematic: Gnomish Alarm-O-Bot", "=ds=#p5# (265) =q1=#n78#", "", "1.88%" };
+ { 22, 18661, "", "=q2=Schematic: World Enlarger", "=ds=#p5# (260) =q1=#n78#", "", "2.00%" };
+ { 24, 11754, "", "=q2=Black Diamond", "#e8#", "", "5.0%" };
+ { 25, 11078, "", "=q1=Relic Coffer Key", "=ds=#e9#" };
+ { 26, 18945, "", "=q1=Dark Iron Residue", "=ds=#m3#" };
+ { 27, 11468, "", "=q1=Dark Iron Fanny Pack", "=ds=#m3#" };
+ { 28, 11446, "", "=q1=A Crumpled Up Note", "=ds=#m2#" };
+ };
+};
+
+-------------------------------------------------
+--- Blackrock Mountain: Lower Blackrock Spire ---
+-------------------------------------------------
+
+AtlasLoot_Data["LowerBlackrock"] = {
+ Name = BabbleZone["Lower Blackrock Spire"];
+ Type = "ClassicDungeonExt";
+ Loadfirst = 3;
+ Map = "BlackrockSpireLower";
+ {
+ Name = AL["Scarshield Quartermaster"];
+ { 1, 18987, "", "=q1=Blackhand's Command", "=ds=#m2#", "", "100%" };
+ Next = "LBRSQuestItems";
+
+ };
+ {
+ Name = AL["Quest Item"];
+ { 1, 12812, "", "=q3=Unfired Plate Gauntlets", "=ds=#m3#", "", "100%" };
+ { 2, 12631, "", "=q3=Fiery Plate Gauntlets", "=q1=#m4#: =ds=#s9#, #a4#" };
+ { 3, 12699, "", "=q3=Plans: Fiery Plate Gauntlets", "=q1=#m4#: =ds=#p2# (290)" };
+ { 5, 12533, "", "=q1=Roughshod Pike", "=ds=#m3#" };
+ { 6, 12740, "", "=q1=Fifth Mosh'aru Tablet", "=ds=#m3#" };
+ { 7, 12741, "", "=q1=Sixth Mosh'aru Tablet", "=ds=#m3#" };
+ { 8, 12345, "", "=q1=Bijou's Belongings", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Spirestone Butcher"] .. " (" .. AL["Rare"] .. ")";
+ { 1, 12608, "", "=q3=Butcher's Apron", "=ds=#s4#", "", "54.31%" };
+ { 2, 13286, "", "=q3=Rivenspike", "=ds=#h1#, #w1#", "", "35.78%" };
+ };
+ {
+ Name = BabbleBoss["Highlord Omokk"];
+ { 1, 13170, "", "=q3=Skyshroud Leggings", "=ds=#s11#, #a1#", "", "8.52%" };
+ { 2, 13169, "", "=q3=Tressermane Leggings", "=ds=#s11#, #a2#", "", "9.52%" };
+ { 3, 13168, "", "=q3=Plate of the Shaman King", "=ds=#s5#, #a4#", "", "8.62%" };
+ { 4, 13166, "", "=q3=Slamshot Shoulders", "=ds=#s3#, #a4#", "", "7.25%" };
+ { 5, 13167, "", "=q3=Fist of Omokk", "=ds=#h2#, #w6#", "", "10.64%" };
+ { 7, 12336, "", "=q2=Gemstone of Spirestone", "=ds=#m3#", "", "100%" };
+ { 9, 12534, "", "=q1=Omokk's Head", "=ds=#m3#", "", "100%" };
+ { 16, 16670, "", "=q3=Boots of Elements", "=ds=#s12#, #a3# (D1, #c7#)", "", "9.35%" };
+ };
+ {
+ Name = BabbleBoss["Spirestone Battle Lord"] .. " (" .. AL["Rare"] .. ")";
+ { 1, 13284, "", "=q3=Swiftdart Battleboots", "=ds=#s12#, #a3#", "", "48.68%" };
+ { 2, 13285, "", "=q3=The Blackrock Slicer", "=ds=#h2#, #w1#", "", "34.87%" };
+ };
+ {
+ Name = BabbleBoss["Spirestone Lord Magus"] .. " (" .. AL["Rare"] .. ")";
+ { 1, 13282, "", "=q3=Ogreseer Tower Boots", "=ds=#s12#, #a3#", "", "22.95%" };
+ { 2, 13283, "", "=q3=Magus Ring", "=ds=#s13#", "", "38.01%" };
+ { 3, 13261, "", "=q3=Globe of D'sak", "=ds=#s15#", "", "18.07%" };
+ };
+ {
+ Name = BabbleBoss["Shadow Hunter Vosh'gajin"];
+ { 1, 12626, "", "=q3=Funeral Cuffs", "=ds=#s8#, #a1#", "", "18.74%" };
+ { 2, 13257, "", "=q3=Demonic Runed Spaulders", "=ds=#s3#, #a2#", "", "" };
+ { 3, 13255, "", "=q3=Trueaim Gauntlets", "=ds=#s9#, #a3#", "", "18.08%" };
+ { 4, 12651, "", "=q3=Blackcrow", "=ds=#w3#", "", "8.56%" };
+ { 5, 12653, "", "=q3=Riphook", "=ds=#w2#", "", "7.99%" };
+ { 6, 12654, "", "=q3=Doomshot", "=ds=#w17#", "", "23.06%" };
+ { 8, 13352, "", "=q1=Vosh'gajin's Snakestone", "=ds=#m3#", "", "100%" };
+ { 9, 12821, "", "=q3=Plans: Dawn's Edge", "=q1=#m4#: =ds=#p2# (275)" };
+ { 16, 16712, "", "=q3=Shadowcraft Gloves", "=ds=#s9#, #a2# (D1, #c6#)", "", "11.89%" };
+ };
+ {
+ Name = BabbleBoss["War Master Voone"];
+ { 1, 22231, "", "=q3=Kayser's Boots of Precision", "=ds=#s12#, #a1#", "", "15.40%" };
+ { 2, 13179, "", "=q3=Brazecore Armguards", "=ds=#s8#, #a3#", "", "16.12%" };
+ { 3, 13177, "", "=q3=Talisman of Evasion", "=ds=#s2#", "", "15.40%" };
+ { 4, 12582, "", "=q3=Keris of Zul'Serak", "=ds=#h1#, #w4#", "", "8.08%" };
+ { 5, 28972, "", "=q3=Flightblade Throwing Axe", "=ds=#w11#", "", "79.85%" };
+ { 7, 12335, "", "=q2=Gemstone of Smolderthorn", "=ds=#m3#", "", "100%" };
+ { 16, 16676, "", "=q3=Beaststalker's Gloves", "=ds=#s9#, #a3# (D1, #c2#)", "", "9.15%" };
+ };
+ {
+ Name = BabbleBoss["Mor Grayhoof"] .. " (" .. AL["Summon"] .. ")";
+ { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n21#" };
+ { 2, 22306, "", "=q3=Ironweave Belt", "=ds=#s10#, #a1#", "", "20.28%" };
+ { 3, 22325, "", "=q3=Belt of the Trickster", "=ds=#s10#, #a2#", "", "20.28%" };
+ { 4, 22319, "", "=q3=Tome of Divine Right", "=ds=#s15#", "", "20.81%" };
+ { 5, 22398, "", "=q3=Idol of Rejuvenation", "=ds=#s16#, #w14#", "", "12.87%" };
+ { 6, 22322, "", "=q3=The Jaw Breaker", "=ds=#h1#, #w6#", "", "20.28%" };
+ { 8, 21984, "", "=q1=Left Piece of Lord Valthalak's Amulet", "=ds=#m3#" };
+ { 9, 22046, "", "=q1=Right Piece of Lord Valthalak's Amulet", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Bannok Grimaxe"] .. " (" .. AL["Rare"] .. ")";
+ { 1, 12634, "", "=q3=Chiselbrand Girdle", "=ds=#s10#, #a3#", "", "31.73%" };
+ { 2, 12637, "", "=q3=Backusarian Gauntlets", "=ds=#s9#, #a4#", "", "26.44%" };
+ { 3, 12621, "", "=q3=Demonfork", "=ds=#h1#, #w1#", "", "27.64%" };
+ { 5, 12838, "", "=q3=Plans: Arcanite Reaper", "=ds=#p2# (300)", "", "" };
+ { 6, 12784, "", "=q3=Arcanite Reaper", "=ds=#h2#, #w1#" };
+ };
+ {
+ Name = BabbleBoss["Mother Smolderweb"];
+ { 1, 13244, "", "=q3=Gilded Gauntlets", "=ds=#s9#, #a3#", "", "25.06%" };
+ { 2, 13213, "", "=q3=Smolderweb's Eye", "=ds=#s14#", "", "24.97%" };
+ { 3, 13183, "", "=q3=Venomspitter", "=ds=#h1#, #w6#", "", "12.49%" };
+ { 16, 16715, "", "=q3=Wildheart Boots", "=ds=#s12#, #a2# (D1, #c1#)", "", "13.03%" };
+ };
+ {
+ Name = BabbleBoss["Crystal Fang"];
+ { 1, 13185, "", "=q3=Sunderseer Mantle", "=ds=#s3#, #a1#", "", "28.10%" };
+ { 2, 13184, "", "=q3=Fallbrush Handgrips", "=ds=#s9#, #a2#", "", "35.48%" };
+ { 3, 13218, "", "=q3=Fang of the Crystal Spider", "=ds=#h1#, #w4#", "", "17.62%" };
+ };
+ {
+ Name = BabbleBoss["Urok Doomhowl"] .. " (" .. AL["Summon"] .. ")";
+ { 1, 13258, "", "=q3=Slaghide Gauntlets", "=ds=#s9#, #a2#", "", "17.09%" };
+ { 2, 22232, "", "=q3=Marksman's Girdle", "=ds=#s10#, #a3#", "", "20.60%" };
+ { 3, 13259, "", "=q3=Ribsteel Footguards", "=ds=#s12#, #a4#", "", "25.38%" };
+ { 4, 13178, "", "=q3=Rosewine Circle", "=ds=#s13#", "", "21.48%" };
+ { 6, 18784, "", "=q3=Top Half of Advanced Armorsmithing: Volume III", "=ds=#m3#", "", "10.30%" };
+ { 7, 12725, "", "=q3=Plans: Enchanted Thorium Helm", "=q1=#m4#: =ds=#p2# (300)" };
+ { 9, 12712, "", "=q1=Warosh's Mojo", "=ds=#m3#", "", "100%" };
+ { 10, 15867, "", "=q2=Prismcharm", "=q1=#m4#: =ds=#s14#" };
+ };
+ {
+ Name = BabbleBoss["Quartermaster Zigris"];
+ { 1, 13253, "", "=q3=Hands of Power", "=ds=#s9#, #a1#", "", "14.22%" };
+ { 2, 13252, "", "=q3=Cloudrunner Girdle", "=ds=#s10#, #a2#", "", "15.48%" };
+ { 4, 12835, "", "=q3=Plans: Annihilator", "=ds=#p2# (300)", "", "8.37%" };
+ { 5, 12798, "", "=q3=Annihilator", "=ds=#h1#, #w1#" };
+ { 7, 21955, "", "=q2=Design: Black Diamond Crab", "=ds=#p12# (300)" };
+ };
+ {
+ Name = BabbleBoss["Gizrul the Slavener"];
+ { 1, 13206, "", "=q3=Wolfshear Leggings", "=ds=#s11#, #a1#", "", "17.46%" };
+ { 2, 13208, "", "=q3=Bleak Howler Armguards", "=ds=#s8#, #a2#", "", "18.02%" };
+ { 3, 13205, "", "=q3=Rhombeard Protector", "=ds=#w8#", "", "1" };
+ { 16, 16718, "", "=q3=Wildheart Spaulders", "=ds=#s3#, #a2# (D1, #c1#)", "", "11.04%" };
+ };
+ {
+ Name = BabbleBoss["Halycon"];
+ { 1, 22313, "", "=q3=Ironweave Bracers", "=ds=#s8#, #a1#", "", "18.16%" };
+ { 2, 13210, "", "=q3=Pads of the Dread Wolf", "=ds=#s12#, #a2#", "", "9.88%" };
+ { 3, 13211, "", "=q3=Slashclaw Bracers", "=ds=#s8#, #a3#", "", "20.32%" };
+ { 4, 13212, "", "=q3=Halycon's Spiked Collar", "=ds=#s2#", "", "18.23%" };
+ };
+ {
+ Name = BabbleBoss["Ghok Bashguud"] .. " (" .. AL["Rare"] .. ")";
+ { 1, 13203, "", "=q3=Armswake Cloak", "=ds=#s4#", "", "35.31%" };
+ { 2, 13198, "", "=q3=Hurd Smasher", "=ds=#h1#, #w13#", "", "21.15%" };
+ { 3, 13204, "", "=q3=Bashguuder", "=ds=#h1#, #w6#", "", "27.09%" };
+ };
+ {
+ Name = BabbleBoss["Overlord Wyrmthalak"];
+ { 1, 13143, "", "=q4=Mark of the Dragon Lord", "=ds=#s13#", "", "1.11%" };
+ { 3, 13162, "", "=q3=Reiver Claws", "=ds=#s9#, #a4#", "", "12.14%" };
+ { 4, 13164, "", "=q3=Heart of the Scale", "=ds=#s14#", "", "0.73%" };
+ { 5, 22321, "", "=q3=Heart of Wyrmthalak", "=ds=#s14#", "", "13.87%" };
+ { 6, 13163, "", "=q3=Relentless Scythe", "=ds=#h2#, #w10#", "", "14.12%" };
+ { 7, 13148, "", "=q3=Chillpike", "=ds=#w7#", "", "0.76%" };
+ { 8, 13161, "", "=q3=Trindlehaven Staff", "=ds=#w9#", "", "10.40%" };
+ { 10, 12337, "", "=q2=Gemstone of Bloodaxe", "=ds=#m3#", "", "100%" };
+ { 16, 16679, "", "=q3=Beaststalker's Mantle", "=ds=#s3#, #a3# (D1, #c2#)", "", "9.89%" };
+ };
+ {
+ Name = BabbleBoss["Burning Felguard"] .. " (" .. AL["Rare"] .. ", " .. AL["Random"] .. ")";
+ { 1, 13181, "", "=q3=Demonskin Gloves", "=ds=#s9#, #a1#", "", "14.47%" };
+ { 2, 13182, "", "=q3=Phase Blade", "=ds=#h1#, #w10#", "", "11.63%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 14513, "", "=q4=Pattern: Robe of the Archmage", "=ds=#p8# (300) =q1=#m1# =ds=#c3# =q1=#n71#", "", "10.12%" };
+ { 2, 14152, "", "=q4=Robe of the Archmage", "=ds=#s5#, #a1# =q1=#m1# =ds=#c3#" };
+ { 4, 13494, "", "=q2=Recipe: Greater Fire Protection Potion", "=ds=#p1# (290) =q1=#n71#/#n72#", "", "1.94%" };
+ { 5, 16250, "", "=q2=Formula: Enchant Weapon - Superior Striking", "=ds=#p4# (300) =q1=#n75#", "", "1.04%" };
+ { 6, 16244, "", "=q2=Formula: Enchant Gloves - Greater Strength", "=ds=#p4# (295) =q1=#n76#", "", "4.16%" };
+ { 7, 15749, "", "=q2=Pattern: Volcanic Breastplate", "=ds=#p7# (285) =q1=#n73#", "", "2.04%" };
+ { 8, 15775, "", "=q2=Pattern: Volcanic Shoulders", "=ds=#p7# (300) =q1=#n74#", "", "10.56%" };
+ { 10, 12219, "", "=q1=Unadorned Seal of Ascension", "=ds=#m3#" };
+ { 11, 21982, "", "=q1=Ogre Warbeads", "=ds=#m3#" };
+ };
+};
+
+-------------------------------------------------
+--- Blackrock Mountain: Upper Blackrock Spire ---
+-------------------------------------------------
+
+AtlasLoot_Data["UpperBlackrock"] = {
+ Name = BabbleZone["Upper Blackrock Spire"];
+ Type = "ClassicDungeonExt";
+ Map = "BlackrockSpireUpper";
+ {
+ Name = BabbleBoss["Pyroguard Emberseer"];
+ { 1, 12905, "", "=q3=Wildfire Cape", "=ds=#s4#", "", "15.20%" };
+ { 2, 12927, "", "=q3=TruestrikeShoulders", "=ds=#s3#, #a2#", "", "17.47%" };
+ { 3, 12929, "", "=q3=Emberfury Talisman", "=ds=#s2#", "", "15.89%" };
+ { 4, 12926, "", "=q3=Flaming Band", "=ds=#s13#", "", "18.52%" };
+ { 6, 17322, "", "=q1=Eye of the Emberseer", "=ds=#m3#", "", "100%" };
+ { 7, 21988, "", "=q1=Ember of Emberseer", "=ds=#m3#" };
+ { 16, 16672, "", "=q3=Gauntlets of Elements", "=ds=#s9#, #a3# (D1, #c7#)", "", "14.23%" };
+ };
+ {
+ Name = BabbleBoss["Solakar Flamewreath"];
+ { 1, 12609, "", "=q3=Polychromatic Visionwrap", "=ds=#s5#, #a1#", "", "15.82%" };
+ { 2, 12589, "", "=q3=Dustfeather Sash", "=ds=#s10#, #a1#", "", "12.84%" };
+ { 3, 12603, "", "=q3=Nightbrace Tunic", "=ds=#s5#, #a2#", "", "" };
+ { 4, 12606, "", "=q3=Crystallized Girdle", "=ds=#s10#, #a2#", "", "14.04%" };
+ { 6, 18657, "", "=q2=Schematic: Hyper-Radiant Flame Reflector", "=ds=#p5# (290)", "", "7.38%" };
+ { 7, 18638, "", "=q3=Hyper-Radiant Flame Reflector", "=ds=#s14#" };
+ { 16, 16695, "", "=q3=Devout Mantle", "=ds=#s3#, #a1# (D1, #c5#)", "", "12.84%" };
+ };
+ {
+ Name = AL["Father Flame"];
+ { 1, 13371, "", "=q2=Father Flame", "=ds=#s15#", "", "100%" };
+ };
+ {
+ Name = AL["Quest Item"];
+ { 1, 12358, "", "=q1=Darkstone Tablet", "=ds=#m3#" };
+ { 2, 12352, "", "=q1=Doomrigger's Clasp", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Jed Runewatcher"];
+ { 1, 12604, "", "=q3=Starfire Tiara", "=ds=#s1#, #a1#", "", "28.64%" };
+ { 2, 12930, "", "=q3=Briarwood Reed", "=ds=#s14#", "", "26.36%" };
+ { 3, 12605, "", "=q3=Serpentine Skuller", "=ds=#w12#", "", "32.95%" };
+ };
+ {
+ Name = BabbleBoss["Goraluk Anvilcrack"];
+ { 1, 18047, "", "=q3=Flame Walkers", "=ds=#s12#, #a3#", "", "18.05%" };
+ { 2, 13502, "", "=q3=Handcrafted Mastersmith Girdle", "=ds=#s10#, #a4#", "", "15.78%" };
+ { 3, 13498, "", "=q3=Handcrafted Mastersmith Leggings", "=ds=#s11#, #a4#", "", "20.63%" };
+ { 4, 18048, "", "=q3=Mastersmith's Hammer", "=ds=#h3#, #w6#", "", "17.26%" };
+ { 6, 12837, "", "=q3=Plans: Masterwork Stormhammer", "=ds=#p2# (300)", "", "4.80%" };
+ { 7, 12794, "", "=q3=Masterwork Stormhammer", "=ds=#h1#, #w6#" };
+ { 8, 12834, "", "=q3=Plans: Arcanite Champion", "=ds=#p2# (300)", "", "4.75%" };
+ { 9, 12790, "", "=q3=Arcanite Champion", "=ds=#h2#, #w10#" };
+ { 11, 18779, "", "=q3=Bottom Half of Advanced Armorsmithing: Volume I", "=ds=#m3#", "", "17.08%" };
+ { 12, 12727, "", "=q3=Plans: Enchanted Thorium Breastplate", "=q1=#m4#: =ds=#p2# (300)" };
+ { 16, 0, "INV_Box_01", "=q6=#x10#", "" };
+ { 17, 12806, "", "=q3=Unforged Rune Covered Breastplate", "=ds=#m3#" };
+ { 18, 12696, "", "=q3=Plans: Demon Forged Breastplate", "=q1=#m4#: =ds=#p2# (285)" };
+ };
+ {
+ Name = BabbleBoss["Warchief Rend Blackhand"];
+ { 1, 12590, "", "=q4=Felstriker", "=ds=#h1#, #w4#", "", "1.06%" };
+ { 3, 22247, "", "=q3=Faith Healer's Boots", "=ds=#s12#, #a1#", "", "12.71%" };
+ { 4, 18102, "", "=q3=Dragonrider Boots", "=ds=#s12#, #a1#", "", "14.35%" };
+ { 5, 12587, "", "=q3=Eye of Rend", "=ds=#s1#, #a2#", "", "14.50%" };
+ { 6, 12588, "", "=q3=Bonespike Shoulder", "=ds=#s3#, #a3#", "", "0.85%" };
+ { 7, 18104, "", "=q3=Feralsurge Girdle", "=ds=#s10#, #a3#", "", "15.30%" };
+ { 8, 12936, "", "=q3=Battleborn Armbraces", "=ds=#s8#, #a4#", "", "16.96%" };
+ { 9, 12935, "", "=q3=Warmaster Legguards", "=ds=#s11#, #a4#", "", "15.05%" };
+ { 10, 18103, "", "=q3=Band of Rumination", "=ds=#s13#", "", "15.38%" };
+ { 16, 16733, "", "=q3=Spaulders of Valor", "=ds=#s3#, #a4# (D1, #c9#)", "", "13.39%" };
+ { 18, 12940, "", "=q3=Dal'Rend's Sacred Charge", "=ds=#h3#, #w10#", "", "6.79%" };
+ { 19, 12939, "", "=q3=Dal'Rend's Tribal Guardian", "=ds=#h4#, #w10#", "", "7.61%" };
+ { 20, 12583, "", "=q3=Blackhand Doomsaw", "=ds=#w7#", "", "7.44%" };
+ { 22, 12630, "", "=q1=Head of Rend Blackhand", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Gyth"];
+ { 1, 12871, "", "=q4=Chromatic Carapace", "=ds=#m3#", "", "2.64%" };
+ { 2, 12945, "", "=q4=Legplates of the Chromatic Defier", "=q1=#m4#: =ds=#s11#, #a3#" };
+ { 3, 12903, "", "=q4=Legguards of the Chromatic Defier", "=q1=#m4#: =ds=#s11#, #a3#" };
+ { 4, 12895, "", "=q4=Breastplate of the Chromatic Flight", "=q1=#m4#: =ds=#s5#, #a4#" };
+ { 6, 22225, "", "=q3=Dragonskin Cowl", "=ds=#s1#, #a1# =q2=#m16#", "", "11.85%" };
+ { 7, 12960, "", "=q3=Tribal War Feathers", "=ds=#s1#, #a2# =q2=#m16#", "", "15.24%" };
+ { 8, 12953, "", "=q3=Dragoneye Coif", "=ds=#s1#, #a3# =q2=#m16#", "", "15.99%" };
+ { 9, 12952, "", "=q3=Gyth's Skull", "=ds=#s1#, #a4# =q2=#m16#", "", "12.43%" };
+ { 11, 13522, "", "=q2=Recipe: Flask of Chromatic Resistance", "=ds=#p1# (300)", "", "2.95%" };
+ { 16, 16669, "", "=q3=Pauldrons of Elements", "=ds=#s3#, #a3# (D1, #c7#)", "", "14.77%" };
+ };
+ {
+ Name = BabbleBoss["The Beast"];
+ { 1, 12731, "", "=q4=Pristine Hide of the Beast", "=ds=#m3#", "", "0.77%" };
+ { 2, 12752, "", "=q4=Cap of the Scarlet Savant", "=q1=#m4#: =ds=#s1#, #a1#" };
+ { 3, 12757, "", "=q4=Breastplate of Bloodthirst", "=q1=#m4#: =ds=#s5#, #a2#" };
+ { 4, 12756, "", "=q4=Leggings of Arcana", "=q1=#m4#: =ds=#s11#, #a2#" };
+ { 6, 12967, "", "=q3=Bloodmoon Cloak", "=ds=#s4#", "", "18.30%" };
+ { 7, 12968, "", "=q3=Frostweaver Cape", "=ds=#s4#", "", "14.47%" };
+ { 8, 12965, "", "=q3=Spiritshroud Leggings", "=ds=#s11#, #a1#", "", "13.16%" };
+ { 9, 22311, "", "=q3=Ironweave Boots", "=ds=#s12#, #a1#", "", "12.31%" };
+ { 10, 12966, "", "=q3=Blackmist Armguards", "=ds=#s8#, #a2#", "", "16.06%" };
+ { 11, 12963, "", "=q3=Blademaster Leggings", "=ds=#s11#, #a2#", "", "12.74%" };
+ { 12, 12964, "", "=q3=Tristam Legguards", "=ds=#s11#, #a3#", "", "18.16%" };
+ { 13, 12709, "", "=q3=Finkle's Skinner", "=ds=#h1#, #w4#, =q1=#e18#", "", "6.95%" };
+ { 14, 12969, "", "=q3=Seeping Willow", "=ds=#h2#, #w6#", "", "11.49%" };
+ { 16, 16729, "", "=q3=Lightforge Spaulders", "=ds=#s3#, #a4# (D1, #c4#)", "", "13.62%" };
+ { 18, 24101, "", "=q3=Book of Ferocious Bite V", "=ds=#e10# =q1=#m1# =ds=#c1#", "", "1.44%" };
+ { 19, 19227, "", "=q3=Ace of Beasts", "=ds=#e16#", "", "4.53%" };
+ };
+ {
+ Name = BabbleBoss["Lord Valthalak"] .. " (" .. AL["Summon"] .. ")";
+ { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n16#" };
+ { 2, 22337, "", "=q3=Shroud of Domination", "=ds=#s4#", "", "23.37%" };
+ { 3, 22302, "", "=q3=Ironweave Cowl", "=ds=#s1#, #a1#", "", "27.72%" };
+ { 4, 22342, "", "=q3=Leggings of Torment", "=ds=#s11#, #a1#", "", "23.10%" };
+ { 5, 22343, "", "=q3=Handguards of Savagery", "=ds=#s9#, #a3#", "", "20.11%" };
+ { 6, 22340, "", "=q3=Pendant of Celerity", "=ds=#s2#", "", "17.66%" };
+ { 7, 22339, "", "=q3=Rune Band of Wizardry", "=ds=#s13#", "", "15.49%" };
+ { 8, 22335, "", "=q3=Lord Valthalak's Staff of Command", "=ds=#w9#", "", "14.67%" };
+ { 9, 22336, "", "=q3=Draconian Aegis of the Legion", "=ds=#w8#", "", "17.66%" };
+ };
+ {
+ Name = BabbleBoss["General Drakkisath"];
+ { 1, 12592, "", "=q4=Blackblade of Shahram", "=ds=#h2#, #w10#", "", "1.08%" };
+ { 3, 22269, "", "=q3=Shadow Prowler's Cloak", "=ds=#s4#", "", "10.61%" };
+ { 4, 22267, "", "=q3=Spellweaver's Turban", "=ds=#s1#, #a1#", "", "15.50%" };
+ { 5, 13142, "", "=q3=Brigam Girdle", "=ds=#s10#, #a4#", "", "16.40%" };
+ { 6, 13141, "", "=q3=Tooth of Gnarr", "=ds=#s2#", "", "" };
+ { 7, 13098, "", "=q3=Painweaver Band", "=ds=#s13#", "", "13.51%" };
+ { 8, 22268, "", "=q3=Draconic Infused Emblem", "=ds=#s14#", "", "4.13%" };
+ { 9, 22253, "", "=q3=Tome of the Lost", "=ds=#s15#", "", "16.05%" };
+ { 10, 12602, "", "=q3=Draconian Deflector", "=ds=#w8#", "", "14.52%" };
+ { 12, 15730, "", "=q3=Pattern: Red Dragonscale Breastplate", "=ds=#p7# (300)", "", "3.58%" };
+ { 13, 15047, "", "=q3=Red Dragonscale Breastplate", "=ds=#s5#, #a3#" };
+ { 15, 13519, "", "=q2=Recipe: Flask of the Titans", "=ds=#p1# (300)", "", "1.72%" };
+ { 16, 16688, "", "=q3=Magister's Robes", "=ds=#s5#, #a1# (D1, #c3#)", "", "7.24%" };
+ { 17, 16700, "", "=q3=Dreadmist Robe", "=ds=#s5#, #a1# (D1, #c8#)", "", "8.04%" };
+ { 18, 16690, "", "=q3=Devout Robe", "=ds=#s5#, #a1# (D1, #c5#)", "", "6.20%" };
+ { 19, 16706, "", "=q3=Wildheart Vest", "=ds=#s5#, #a2# (D1, #c1#)", "", "7.36%" };
+ { 20, 16721, "", "=q3=Shadowcraft Tunic", "=ds=#s5#, #a2# (D1, #c6#)", "", "6.09%" };
+ { 21, 16674, "", "=q3=Beaststalker's Tunic", "=ds=#s5#, #a3# (D1, #c2#)", "", "6.81%" };
+ { 22, 16666, "", "=q3=Vest of Elements", "=ds=#s5#, #a3# (D1, #c7#)", "", "3.03%" };
+ { 23, 16730, "", "=q3=Breastplate of Valor", "=ds=#s5#, #a4# (D1, #c9#)", "", "5.83%" };
+ { 24, 16726, "", "=q3=Lightforge Breastplate", "=ds=#s5#, #a4# (D1, #c4#)", "", "3.76%" };
+ { 30, 16663, "", "=q1=Blood of the Black Dragon Champion", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 13260, "", "=q3=Wind Dancer Boots", "=ds=#s12#, #a3#", "", "0.01%" };
+ { 2, 24102, "", "=q3=Manual of Eviscerate IX", "=ds=#e10# =q1=#m1# =ds=#c6# =q1=#n70#", "", "0.94%" };
+ { 4, 16247, "", "=q2=Formula: Enchant 2H Weapon - Superior Impact", "=ds=#p4# (295) =q1=#n69#", "", "1.54%" };
+ { 6, 12607, "", "=q3=Brilliant Chromatic Scale", "=ds=#m3#" };
+ { 7, 12219, "", "=q1=Unadorned Seal of Ascension", "=ds=#m3#" };
+ };
+};
+---------------------------------------
+--- Blackrock Mountain: Molten Core ---
+---------------------------------------
+
+AtlasLoot_Data["MoltenCore"] = {
+ Name = BabbleZone["Molten Core"];
+ Type = "ClassicRaid";
+ Map = "MoltenCore";
+ {
+ Name = BabbleBoss["Lucifron"];
+ { 1, 18872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "1.93%" };
+ { 2, 19145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "1.84%" };
+ { 3, 19146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "1.95%" };
+ { 4, 18875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "2.00%" };
+ { 5, 18870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "1.09%" };
+ { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.15%" };
+ { 7, 17109, "", "=q4=Choker of Enlightenment", "=ds=#s2#", "", "12.61%" };
+ { 8, 18879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "2.04%" };
+ { 9, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "2.23%" };
+ { 10, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.23%" };
+ { 11, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "1.60%" };
+ { 16, 2522362, "", "=q4=Molten Wristgaurds", "=ds=#tt1#", "", "100%", "=TT=T1WRIST" };
+ { 18, 17329, "", "=q1=Hand of Lucifron", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Magmadar"];
+ { 1, 19136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "4.79%" };
+ { 2, 18823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "6.18%" };
+ { 3, 18829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "2.10%" };
+ { 4, 19144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.86%" };
+ { 5, 19143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "5.48%" };
+ { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "3.98%" };
+ { 7, 18824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "3.22%" };
+ { 8, 17065, "", "=q4=Medallion of Steadfast Might", "=ds=#s2#", "", "14.05%" };
+ { 9, 18821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "5.79%" };
+ { 10, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "5.55%" };
+ { 11, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "5.42%" };
+ { 12, 18203, "", "=q4=Eskhandar's Right Claw", "=ds=#h3#, #w13#", "", "17.82%" };
+ { 13, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "5.68%" };
+ { 14, 17073, "", "=q4=Earthshaker", "=ds=#h2#, #w6#", "", "16.75%" };
+ { 15, 17069, "", "=q4=Striker's Mark", "=ds=#w2#", "", "16.37%" };
+ { 16, 2522359, "", "=q4=Molten Leggaurds", "=ds=#tt1#", "", "100%", "=TT=T1LEGS" };
+ };
+ {
+ Name = BabbleBoss["Gehennas"];
+ { 1, 19145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "3.83%" };
+ { 2, 18872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "3.37%" };
+ { 3, 19146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "3.53%" };
+ { 4, 18875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "3.57%" };
+ { 5, 18870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "1.77%" };
+ { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "3.48%" };
+ { 7, 18879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "3.78%" };
+ { 8, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "3.78%" };
+ { 9, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "3.79%" };
+ { 10, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "3.34%" };
+ { 16, 2522364, "", "=q4=Molten Girdle", "=ds=#tt1#", "", "100%", "=TT=T1HAND" };
+ { 18, 17331, "", "=q1=Hand of Gehennas", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Garr"];
+ { 1, 19136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "4.80%" };
+ { 2, 18823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "5.23%" };
+ { 3, 18829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.68%" };
+ { 4, 19144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.48%" };
+ { 5, 19143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "3.84%" };
+ { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.82%" };
+ { 7, 18824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "3.05%" };
+ { 8, 18821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "4.48%" };
+ { 9, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "4.13%" };
+ { 10, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "3.69%" };
+ { 11, 17071, "", "=q4=Gutgore Ripper", "=ds=#h1#, #w4#", "", "11.21%" };
+ { 12, 18832, "", "=q4=Brutality Blade", "=ds=#h1#, #w10#", "", "13.27%" };
+ { 13, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "4.09%" };
+ { 14, 17105, "", "=q4=Aurastone Hammer", "=ds=#h3#, #w6#", "", "12.67%" };
+ { 15, 17066, "", "=q4=Drillborer Disk", "=ds=#w8#", "", "11.85%" };
+ { 16, 2522360, "", "=q4=Molten Headpiece", "=ds=#tt1#", "", "100%", "=TT=T1HEAD" };
+ { 18, 18564, "", "=q5=Bindings of the Windseeker", "=ds=#m3#, =q1=#m9#", "", "3.74%" };
+ { 19, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#" };
+ { 21, 17782, "", "=q5=Talisman of Binding Shard", "=ds=#s2#", "", "" };
+ { 22, 11879, "", "=q5=Medallion of Binding Shard", "=ds=#s2#", "", "" };
+ };
+ {
+ Name = BabbleBoss["Shazzrah"];
+ { 1, 19145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "1.97%" };
+ { 2, 18872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "1.84%" };
+ { 3, 19146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "1.85%" };
+ { 4, 18875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "1.81%" };
+ { 5, 18870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "0.78%" };
+ { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.22%" };
+ { 7, 18879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "1.72%" };
+ { 8, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "1.99%" };
+ { 9, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.27%" };
+ { 10, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "3.32%" };
+ { 16, 2522363, "", "=q4=Molten Handgaurds", "=ds=#tt1#", "", "100%", "=TT=T1WAIST" };
+ { 18, 17332, "", "=q1=Hand of Shazzrah", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Baron Geddon"];
+ { 1, 19136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "2.44%" };
+ { 2, 18823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "3.04%" };
+ { 3, 18829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.04%" };
+ { 4, 19144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.00%" };
+ { 5, 19143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "2.61%" };
+ { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "1.77%" };
+ { 7, 18824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "1.48%" };
+ { 8, 17110, "", "=q4=Seal of the Archmagus", "=ds=#s13#", "", "21.93%" };
+ { 9, 18821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "2.61%" };
+ { 10, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "2.68%" };
+ { 11, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "2.59%" };
+ { 12, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "2.70%" };
+ { 16, 2522361, "", "=q4=Molten Spaulders", "=ds=#tt1#", "", "100%", "=TT=T1SHOULDER" };
+ { 18, 18563, "", "=q5=Bindings of the Windseeker", " =ds=#m3#, =q1=#m10#", "", "3.78%" };
+ { 19, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#" };
+ };
+ {
+ Name = BabbleBoss["Golemagg the Incinerator"];
+ { 1, 19136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "2.18%" };
+ { 2, 18823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "2.65%" };
+ { 3, 18829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.20%" };
+ { 4, 19144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.00%" };
+ { 5, 19143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "2.17%" };
+ { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "1.44%" };
+ { 7, 18824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "1.69%" };
+ { 8, 18821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "2.26%" };
+ { 9, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "2.91%" };
+ { 10, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "2.46%" };
+ { 11, 17103, "", "=q4=Azuresong Mageblade", "=ds=#h3#, #w10#", "", "17.59%" };
+ { 12, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "2.89%" };
+ { 13, 18842, "", "=q4=Staff of Dominance", "=ds=#w9#", "", "18.95%" };
+ { 14, 17072, "", "=q4=Blastershot Launcher", "=ds=#w5#", "", "17.83%" };
+ { 16, 2522350, "", "=q4=Molten Tunic", "=ds=#tt1#", "", "100%", "=TT=T1CHEST" };
+ { 18, 17203, "", "=q4=Sulfuron Ingot", "=ds=#m3#", "", "11.98%" };
+ { 19, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=q1=#m4#: =ds=#h2#, #w6#" };
+ };
+ {
+ Name = BabbleBoss["Sulfuron Harbinger"];
+ { 1, 19145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "2.80%" };
+ { 2, 18872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "2.54%" };
+ { 3, 19146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "2.70%" };
+ { 4, 18875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "2.58%" };
+ { 5, 18870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "1.26%" };
+ { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.54%" };
+ { 7, 18879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "2.32%" };
+ { 8, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "2.39%" };
+ { 9, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.53%" };
+ { 10, 17074, "", "=q4=Shadowstrike", "=ds=#w7#", "", "23.50%" };
+ { 11, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "2.26%" };
+ { 16, 2522365, "", "=q4=Molten Boots", "=ds=#tt1#", "", "100%", "=TT=T1FEET" };
+ { 18, 17330, "", "=q1=Hand of Sulfuron", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Majordomo Executus"];
+ { 1, 18811, "", "=q4=Fireproof Cloak", "=ds=#s4#", "", "15.12%" };
+ { 2, 18808, "", "=q4=Gloves of the Hypnotic Flame", "=ds=#s9#, #a1#", "", "15.36%" };
+ { 3, 18809, "", "=q4=Sash of Whispered Secrets", "=ds=#s10#, #a1#", "", "1" };
+ { 4, 19139, "", "=q4=Fireguard Shoulders", "=ds=#s3#, #a2#", "", "15.87%" };
+ { 5, 18810, "", "=q4=Wild Growth Spaulders", "=ds=#s3#, #a2#", "", "16.91%" };
+ { 6, 18812, "", "=q4=Wristguards of True Flight", "=ds=#s8#, #a3#", "", "18.04%" };
+ { 7, 18806, "", "=q4=Core Forged Greaves", "=ds=#s12#, #a4#", "", "16.53%" };
+ { 8, 19140, "", "=q4=Cauterizing Band", "=ds=#s13#", "", "15.10%" };
+ { 9, 18805, "", "=q4=Core Hound Tooth", "=ds=#h1#, #w4#", "", "16.06%" };
+ { 10, 18803, "", "=q4=Finkle's Lava Dredger", "=ds=#h2#, #w6#", "", "12.43%" };
+ { 16, 18715, "", "=q4=Lok'delar, Stave of the Ancient Keepers", "=ds=#w9#" };
+ { 17, 18713, "", "=q4=Rhok'delar, Longbow of the Ancient Keepers", "=ds=#w2#" };
+ { 19, 18608, "", "=q4=Benediction", "=ds=#w9#" };
+ { 20, 18609, "", "=q4=Anathema", "=ds=#w9#" };
+ };
+ {
+ Name = BabbleBoss["Ragnaros"];
+ { 1, 17102, "", "=q4=Cloak of the Shrouded Mists", "=ds=#s4#", "", "14.31%" };
+ { 2, 17107, "", "=q4=Dragon's Blood Cape", "=ds=#s4#", "", "" };
+ { 3, 18817, "", "=q4=Crown of Destruction", "=ds=#s1#, #a3#", "", "16.75%" };
+ { 4, 19137, "", "=q4=Onslaught Girdle", "=ds=#s10#, #a4#", "", "13.18%" };
+ { 5, 18814, "", "=q4=Choker of the Fire Lord", "=ds=#s2#", "", "16.08%" };
+ { 6, 19138, "", "=q4=Band of Sulfuras", "=ds=#s13#", "", "15.64%" };
+ { 7, 17063, "", "=q4=Band of Accuria", "=ds=#s13#", "", "14.81%" };
+ { 8, 17082, "", "=q4=Shard of the Flame", "=ds=#s14#", "", " 4.65%" };
+ { 9, 18815, "", "=q4=Essence of the Pure Flame", "=ds=#s14#", "", "17.80%" };
+ { 10, 18816, "", "=q4=Perdition's Blade", "=ds=#h1#, #w4#", "", "15.90%" };
+ { 11, 17076, "", "=q4=Bonereaver's Edge", "=ds=#h2#, #w10#", "", "5.12%" };
+ { 12, 17104, "", "=q4=Spinal Reaper", "=ds=#h2#, #w1#", "", " 4.63%" };
+ { 13, 17106, "", "=q4=Malistar's Defender", "=ds=#w8#", "", "13.88%" };
+ { 14, 17083, "", "=q4=Blade of Dragon Bone", "=ds=#h3#, #w10#", "", "13.88%" };
+ { 16, 2522459, "", "=q4=Chromatic Leggaurds", "=ds=#tt2#", "", "100%", "=TT=T2LEGS" };
+ { 18, 21110, "", "=q1=Draconic for Dummies", "=ds=#m3#", "", "100%" };
+ { 20, 17204, "", "=q5=Eye of Sulfuras", "=ds=#m3#", "", "3.42%" };
+ { 21, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=q1=#m4#: =ds=#h2#, #w6#" };
+ { 23, 19017, "", "=q1=Essence of the Firelord", "=ds=#m3#", "", "0.46%" };
+ { 24, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#" };
+ { 25, 102107, "", "=q4=Reins of the Magmatic Steed", "=ds=#e12#", [AtlasLoot_Difficulty.MIN_DIF] = AtlasLoot_Difficulty.Heroic };
+ };
+ {
+ Name = "Random Boss Drops";
+ { 1, 17010, "", "=q3=Fiery Core", "=ds=#e8#" };
+ { 2, 17011, "", "=q3=Lava Core", "=ds=#e8#" };
+ { 3, 11382, "", "=q2=Blood of the Mountain", "=ds=#e8#" };
+ { 4, 17012, "", "=q1=Core Leather", "=ds=#e8#" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 18264, "", "=q3=Plans: Elemental Sharpening Stone", "=ds=#p2# (300)", "", "1.02%" };
+ { 2, 18262, "", "=q2=Elemental Sharpening Stone", "=ds=#e6#" };
+ { 4, 18292, "", "=q3=Schematic: Core Marksman Rifle", "=ds=#p5# (300)", "", "0.96%" };
+ { 5, 18282, "", "=q4=Core Marksman Rifle", "=ds=#w5#" };
+ { 7, 18291, "", "=q3=Schematic: Force Reactive Disk", "=ds=#p5# (300)", "", "0.92%" };
+ { 8, 18168, "", "=q4=Force Reactive Disk", "=ds=#w8#" };
+ { 10, 18290, "", "=q3=Schematic: Biznicks 247x128 Accurascope", "=ds=#p5# (300)", "", "0.11%" };
+ { 11, 18283, "", "=q3=Biznicks 247x128 Accurascope", "=ds=#e11#" };
+ { 13, 18259, "", "=q3=Formula: Enchant Weapon - Spell Power", "=ds=#p4# (300)", "", "0.85%" };
+ { 16, 18252, "", "=q3=Pattern: Core Armor Kit", "=ds=#p7# (300)", "", "0.85%" };
+ { 17, 18251, "", "=q3=Core Armor Kit", "=ds=#e6#" };
+ { 19, 18265, "", "=q3=Pattern: Flarecore Wraps", "=ds=#p8# (300)", "", "0.72%" };
+ { 20, 18263, "", "=q4=Flarecore Wraps", "=ds=#s8#, #a1#" };
+ { 22, 21371, "", "=q3=Pattern: Core Felcloth Bag", "=ds=#p8# (300)", "", "0.33%" };
+ { 23, 21342, "", "=q4=Core Felcloth Bag", "=ds=#m11# #e1# =q1=#m1# #c8#" };
+ { 25, 18257, "", "=q3=Recipe: Major Rejuvenation Potion", "=ds=#p1# (300)", "", "0.76%" };
+ { 26, 18253, "", "=q1=Major Rejuvenation Potion", "=ds=#e2#" };
+ { 28, 18260, "", "=q3=Formula: Enchant Weapon - Healing Power", "=ds=#p4# (300)", "", "0.75%" };
+ };
+};
+
+------------------------------------------
+--- Blackrock Mountain: Blackwing Lair ---
+------------------------------------------
+
+AtlasLoot_Data["BlackwingLair"] = {
+ Name = BabbleZone["Blackwing Lair"];
+ Type = "ClassicRaid";
+ Map = "BlackwingLair";
+ {
+ Name = BabbleBoss["Razorgore the Untamed"];
+ { 1, 19337, "", "=q4=The Black Book", "=ds=#s14#, =q1=#m1# =ds=#c8#", "", "20%" };
+ { 2, 19336, "", "=q4=Arcane Infused Gem", "=ds=#s14#, =q1=#m1# =ds=#c2#", "", "20%" };
+ { 3, 19344, "", "=q4=Natural Alignment Crystal", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "6.67%" };
+ { 5, 19370, "", "=q4=Mantle of the Blackwing Cabal", "=ds=#s3#, #a1#", "", "20%" };
+ { 6, 19369, "", "=q4=Gloves of Rapid Evolution", "=ds=#s9#, #a1#", "", "20%" };
+ { 7, 19334, "", "=q4=The Untamed Blade", "=ds=#h2#, #w10#", "", "10%" };
+ { 8, 19335, "", "=q4=Spineshatter", "=ds=#h1#, #w6#", "", "10%" };
+ { 9, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%" };
+ { 10, 19357, "", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "", "16.67%" };
+ { 11, 19405, "", "=q4=Malfurion's Blessed Bulwark", "=ds=#s5#, #a2#", "", "16.67%" };
+ { 16, 2522462, "", "=q4=Chromatic Wristgaurds", "=ds=#tt2#", "", "100%", "=TT=T2WRIST" };
+ };
+ {
+ Name = BabbleBoss["Vaelastrasz the Corrupt"];
+ { 1, 19339, "", "=q4=Mind Quickening Gem", "=ds=#s14#, =q1=#m1# =ds=#c3#", "", "20%" };
+ { 2, 19340, "", "=q4=Rune of Metamorphosis", "=ds=#s14#, =q1=#m1# =ds=#c1#", "", "20%" };
+ { 3, 19372, "", "=q4=Helm of Endless Rage", "=ds=#s1#, #a4#", "", "20%" };
+ { 4, 19371, "", "=q4=Pendant of the Fallen Dragon", "=ds=#s2#", "", "20%" };
+ { 5, 19346, "", "=q4=Dragonfang Blade", "=ds=#h1#, #w4#", "", "10%" };
+ { 6, 19348, "", "=q4=Red Dragonscale Protector", "=ds=#w8#", "", "10%" };
+ { 7, 19430, "", "=q4=Shroud of Pure Thought", "=ds=#s4#", "", "16.67%" };
+ { 8, 19403, "", "=q4=Band of Forced Concentration", "=ds=#s13#", "", "16.67%" };
+ { 9, 19367, "", "=q4=Dragon's Touch", "=ds=#w12#", "", "16.67%" };
+ { 16, 2522463, "", "=q4=Chromatic Girdle", "=ds=#tt2#", "", "100%", "=TT=T2WAIST" };
+ };
+ {
+ Name = BabbleBoss["Broodlord Lashlayer"];
+ { 1, 19342, "", "=q4=Venomous Totem", "=ds=#s14#, =q1=#m1# =ds=#c6#", "", "20%" };
+ { 2, 19341, "", "=q4=Lifegiving Gem", "=ds=#s14#, =q1=#m1# =ds=#c9#", "", "20%" };
+ { 3, 19345, "", "=q4=Aegis of Preservation", "=ds=#s14#, =q1=#m1# =ds=#c5#", "", "16.67%" };
+ { 4, 19374, "", "=q4=Bracers of Arcane Accuracy", "=ds=#s8#, #a1#", "", "20%" };
+ { 5, 19373, "", "=q4=Black Brood Pauldrons", "=ds=#s3#, #a3#", "", "20%" };
+ { 6, 19351, "", "=q4=Maladath, Runed Blade of the Black Flight", "=ds=#h1#, #w10#", "", "10%" };
+ { 7, 19350, "", "=q4=Heartstriker", "=ds=#w2#", "", "10%" };
+ { 8, 19402, "", "=q4=Legguards of the Fallen Crusader", "=ds=#s11#, #a4#", "", "12.5%" };
+ { 9, 19365, "", "=q4=Claw of the Black Drake", "=ds=#h3#, #w13#", "", "12.5%" };
+ { 10, 14000, "", "=q4=Ring of Trinity Force", "=ds=#h3#, #w13#", "", "12.5%" };
+ { 11, 19432, "", "=q4=Circle of Applied Force", "=ds=#s13#", "", "16.67%" };
+ { 16, 2522465, "", "=q4=Chromatic Boots", "=ds=#tt2#", "", "100%", "=TT=T2FEET" };
+ { 18, 20383, "", "=q1=Head of the Broodlord Lashlayer", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Firemaw"];
+ { 1, 19365, "", "=q4=Claw of the Black Drake", "=ds=#h3#, #w13#", "", "12.5%" };
+ { 2, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%" };
+ { 3, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%" };
+ { 4, 19343, "", "=q4=Scrolls of Blinding Light", "=ds=#s14#, =q1=#m1# =ds=#c4#", "", "12.5%" };
+ { 5, 19344, "", "=q4=Natural Alignment Crystal", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "6.67%" };
+ { 6, 19398, "", "=q4=Cloak of Firemaw", "=ds=#s4#", "", "12.5%" };
+ { 7, 19400, "", "=q4=Firemaw's Clutch", "=ds=#s10#, #a1#", "", "12.5%" };
+ { 8, 19399, "", "=q4=Black Ash Robe", "=ds=#s5#, #a1#", "", "12.5%" };
+ { 9, 19396, "", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "", "6.67%" };
+ { 10, 19401, "", "=q4=Primalist's Linked Legguards", "=ds=#s11#, #a3#", "", "12.5%" };
+ { 11, 19394, "", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "", "6.76%" };
+ { 12, 19402, "", "=q4=Legguards of the Fallen Crusader", "=ds=#s11#, #a4#", "", "12.5%" };
+ { 13, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%" };
+ { 14, 19395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "6.67%" };
+ { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=TT=T2HAND" };
+ };
+ {
+ Name = BabbleBoss["Ebonroc"];
+ { 1, 19345, "", "=q4=Aegis of Preservation", "=ds=#s14#, =q1=#m1# =ds=#c5#", "", "16.67%" };
+ { 2, 19407, "", "=q4=Ebony Flame Gloves", "=ds=#s9#, #a1#", "", "16.67%" };
+ { 3, 19405, "", "=q4=Malfurion's Blessed Bulwark", "=ds=#s5#, #a2#", "", "16.67%" };
+ { 4, 19396, "", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "", "6.67%" };
+ { 5, 19394, "", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "", "6.67%" };
+ { 6, 19403, "", "=q4=Band of Forced Concentration", "=ds=#s13#", "", "16.67%" };
+ { 7, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%" };
+ { 8, 19406, "", "=q4=Drake Fang Talisman", "=ds=#s14#", "", "16.67%" };
+ { 9, 19395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "6.67%" };
+ { 10, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%" };
+ { 11, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%" };
+ { 12, 19368, "", "=q4=Dragonbreath Hand Cannon", "=ds=#w5#", "", "16.67%" };
+ { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=TT=T2HAND" };
+ };
+ {
+ Name = BabbleBoss["Flamegor"];
+ { 1, 19430, "", "=q4=Shroud of Pure Thought", "=ds=#s4#", "", "16.67%" };
+ { 2, 19396, "", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "", "6.67%" };
+ { 3, 19433, "", "=q4=Emberweave Leggings", "=ds=#s11#, #a3#", "", "16.67%" };
+ { 4, 19394, "", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "", "6.67%" };
+ { 5, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%" };
+ { 6, 19432, "", "=q4=Circle of Applied Force", "=ds=#s13#", "", "16.67%" };
+ { 7, 19395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "6.67%" };
+ { 8, 19431, "", "=q4=Styleen's Impeding Scarab", "=ds=#s14#", "", "16.67%" };
+ { 9, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%" };
+ { 10, 19357, "", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "", "16.67%" };
+ { 11, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%" };
+ { 12, 19367, "", "=q4=Dragon's Touch", "=ds=#w12#", "", "16.67%" };
+ { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=TT=T2HAND" };
+ };
+ {
+ Name = BabbleBoss["Chromaggus"];
+ { 1, 19386, "", "=q4=Elementium Threaded Cloak", "=ds=#s4#", "", "20%" };
+ { 2, 19388, "", "=q4=Angelista's Grasp", "=ds=#s10#, #a1#", "", "20%" };
+ { 3, 19385, "", "=q4=Empowered Leggings", "=ds=#s11#, #a1#", "", "20%" };
+ { 4, 19391, "", "=q4=Shimmering Geta", "=ds=#s12#, #a1#", "", "20%" };
+ { 5, 19389, "", "=q4=Taut Dragonhide Shoulderpads", "=ds=#s3#, #a2#", "", "20%" };
+ { 6, 19390, "", "=q4=Taut Dragonhide Gloves", "=ds=#s9#, #a2#", "", "20%" };
+ { 7, 19393, "", "=q4=Primalist's Linked Waistguard", "=ds=#s10#, #a3#", "", "10%" };
+ { 8, 19392, "", "=q4=Girdle of the Fallen Crusader", "=ds=#s10#, #a4#", "", "10%" };
+ { 9, 19387, "", "=q4=Chromatic Boots", "=ds=#s12#, #a4#", "", "20%" };
+ { 11, 19347, "", "=q4=Claw of Chromaggus", "=ds=#h3#, #w4#", "", "10%" };
+ { 12, 19352, "", "=q4=Chromatically Tempered Sword", "=ds=#h1#, #w10#", "", "10%" };
+ { 13, 19349, "", "=q4=Elementium Reinforced Bulwark", "=ds=#w8#", "", "10%" };
+ { 14, 19361, "", "=q4=Ashjre'thul, Crossbow of Smiting", "=ds=#w3#", "", "10%" };
+ { 16, 2522461, "", "=q4=Chromatic Spaulders", "=ds=#tt2#", "", "100%", "=TT=T2SHOULDER" };
+ };
+ {
+ Name = BabbleBoss["Nefarian"];
+ { 1, 19378, "", "=q4=Cloak of the Brood Lord", "=ds=#s4#", "", "16.67%" };
+ { 2, 19375, "", "=q4=Mish'undare, Circlet of the Mind Flayer", "=ds=#s1#, #a1#", "", "16.67%" };
+ { 3, 19381, "", "=q4=Boots of the Shadow Flame", "=ds=#s12#, #a2#", "", "16.67%" };
+ { 4, 19380, "", "=q4=Therazane's Link", "=ds=#s10#, #a3#", "", "16.67%" };
+ { 5, 19377, "", "=q4=Prestor's Talisman of Connivery", "=ds=#s2#", "", "16.67%" };
+ { 6, 19376, "", "=q4=Archimtiros' Ring of Reckoning", "=ds=#s13#", "", "16.67%" };
+ { 7, 19382, "", "=q4=Pure Elementium Band", "=ds=#s13#", "", "16.67%" };
+ { 8, 19379, "", "=q4=Neltharion's Tear", "=ds=#s14#", "", "16.67%" };
+ { 9, 19364, "", "=q4=Ashkandi, Greatsword of the Brotherhood", "=ds=#h2#, #w10#", "", "10%" };
+ { 10, 19363, "", "=q4=Crul'shorukh, Edge of Chaos", "=ds=#h1#, #w1#", "", "16.67%" };
+ { 11, 19360, "", "=q4=Lok'amir il Romathis", "=ds=#h3#, #w6#", "", "16.67%" };
+ { 12, 19356, "", "=q4=Staff of the Shadow Flame", "=ds=#w9#", "", "16.67%%" };
+ { 13, 14001, "", "=q4=Archimtiros' Ring of Armageddon", "=ds=#s13#", "", "16.67%%" };
+ { 16, 2522450, "", "=q4=Chromatic Tunic", "=ds=#tt2#", "", "100%", "=TT=T2CHEST" };
+ { 18, 19003, "", "=q4=Head of Nefarian", "=ds=#m2#", "", "100%" };
+ { 19, 19383, "", "=q4=Master Dragonslayer's Medallion", "=q1=#m4#: =ds=#s2#" };
+ { 20, 19384, "", "=q4=Master Dragonslayer's Ring", "=q1=#m4#: =ds=#s13#" };
+ { 21, 19366, "", "=q4=Master Dragonslayer's Orb", "=q1=#m4#: =ds=#s15#" };
+ { 23, 21138, "", "=q1=Red Scepter Shard", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 19436, "", "=q4=Cloak of Draconic Might", "=ds=#s4#", "", "2.53%" };
+ { 2, 19437, "", "=q4=Boots of Pure Thought", "=ds=#s12#, #a1#", "", "2.33%" };
+ { 3, 19438, "", "=q4=Ringo's Blizzard Boots", "=ds=#s12#, #a1#", "", "4.42%" };
+ { 4, 19439, "", "=q4=Interlaced Shadow Jerkin", "=ds=#s5#, #a2#", "", "4.62%" };
+ { 5, 19434, "", "=q4=Band of Dark Dominion", "=ds=#s13#", "", "1.57%" };
+ { 6, 19362, "", "=q4=Doom's Edge", "=ds=#h1#, #w1#", "", "1.67%" };
+ { 7, 19354, "", "=q4=Draconic Avenger", "=ds=#h2#, #w1#", "", "5.96%" };
+ { 8, 19358, "", "=q4=Draconic Maul", "=ds=#h2#, #w6#", "", "2.30%" };
+ { 9, 19435, "", "=q4=Essence Gatherer", "=ds=#w12#", "", "1.61%" };
+ { 16, 18562, "", "=q4=Elementium Ore", "=ds=#e8#", "", "4.75%" };
+ { 18, 21109, "", "=q1=Draconic for Dummies", "=ds=#m3#" };
+ };
+};
+
+----------------------
+--- Dire Maul East ---
+----------------------
+
+AtlasLoot_Data["DireMaulEast"] = {
+ Name = BabbleZone["Dire Maul"] .. " East";
+ Type = "ClassicDungeonExt";
+ Map = "DireMaulEast";
+ {
+ Name = BabbleBoss["Pusillin"];
+ { 1, 18267, "", "=q2=Recipe: Runn Tum Tuber Surprise", "=ds=#p3# (275)", "", "71.55%" };
+ { 3, 18261, "", "=q1=Book of Incantations", "=ds=#m3#", "", "100%" };
+ { 4, 18249, "", "=q1=Crescent Key", "=ds=#e9#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Zevrim Thornhoof"];
+ { 1, 18319, "", "=q3=Fervent Helm", "=ds=#s1#, #a3#", "", "7.88%" };
+ { 2, 18313, "", "=q3=Helm of Awareness", "=ds=#s1#, #a4#", "", "17.87%" };
+ { 3, 18323, "", "=q3=Satyr's Bow", "=ds=#w2#", "", "17.24%" };
+ { 5, 18306, "", "=q2=Gloves of Shadowy Mist", "=ds=#s9#, #a1#", "", "21.40%" };
+ { 6, 18308, "", "=q2=Clever Hat", "=ds=#s1#, #a2#", "", "23.73%" };
+ };
+ {
+ Name = BabbleBoss["Lethtendris"];
+ { 1, 18325, "", "=q3=Felhide Cap", "=ds=#s1#, #a2#", "", "24.67%" };
+ { 2, 18311, "", "=q3=Quel'dorei Channeling Rod", "=ds=#w9#", "", "7.30%" };
+ { 4, 18302, "", "=q3=Band of Vigor", "=ds=#s13#", "", "29.30%" };
+ { 5, 18301, "", "=q3=Lethtendris's Wand", "=ds=#w12#", "", "2" };
+ { 7, 18426, "", "=q1=Lethtendris's Web", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Pimgib"];
+ { 1, 18354, "", "=q3=Pimgib's Collar", "=ds=#s14#, =q1=#m1# =ds=#c8#", "", "18.68%" };
+ };
+ {
+ Name = BabbleBoss["Hydrospawn"];
+ { 1, 18322, "", "=q3=Waterspout Boots", "=ds=#s12#, #a2#", "", "16.42%" };
+ { 2, 18317, "", "=q3=Tempest Talisman", "=ds=#s2#", "", "16.44%" };
+ { 3, 18324, "", "=q3=Waveslicer", "=ds=#h2#, #w1#", "", "8.46%" };
+ { 5, 18307, "", "=q3=Riptide Shoes", "=ds=#s12#, #a1#", "", "21.33%" };
+ { 6, 18305, "", "=q3=Breakwater Legguards", "=ds=#s11#, #a4#", "", "22.75%" };
+ };
+ {
+ Name = BabbleBoss["Alzzin the Wildshaper"];
+ { 1, 18328, "", "=q3=Shadewood Cloak", "=ds=#s4#", "", "15.36%" };
+ { 2, 18327, "", "=q3=Whipvine Cord", "=ds=#s10#, #a1#", "", "16.53%" };
+ { 3, 18309, "", "=q3=Gloves of Restoration", "=ds=#s9#, #a2#", "", "14.05%" };
+ { 4, 18318, "", "=q3=Merciful Greaves", "=ds=#s12#, #a3#", "", "14.88%" };
+ { 5, 18312, "", "=q3=Energized Chestplate", "=ds=#s5#, #a4#", "", "16.08%" };
+ { 6, 18326, "", "=q3=Razor Gauntlets", "=ds=#s9#, #a4#", "", "18.62%" };
+ { 8, 0, "INV_Box_01", "=q6=#x9#", "" };
+ { 9, 18501, "", "=q1=Felvine Shard", "=ds=#m3#" };
+ { 16, 18315, "", "=q3=Ring of Demonic Potency", "=ds=#s13#", "", "15.40%" };
+ { 17, 18314, "", "=q3=Ring of Demonic Guile", "=ds=#s13#", "", "13.71%" };
+ { 18, 18310, "", "=q3=Fiendish Machete", "=ds=#h1#, #w10#", "", "15.39%" };
+ { 19, 18321, "", "=q3=Energetic Rod", "=ds=#h3#, #w6#", "", "15.94%" };
+ };
+ {
+ Name = BabbleBoss["Isalien"];
+ { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n20#" };
+ { 2, 22304, "", "=q3=Ironweave Gloves", "=ds=#s9#, #a1#", "", "16.24%" };
+ { 3, 22472, "", "=q3=Boots of Ferocity", "=ds=#s12#, #a2#", "", "12.55%" };
+ { 4, 22401, "", "=q3=Libram of Hope", "=ds=#s16#, #w16#", "", "14.76%" };
+ { 5, 22345, "", "=q3=Totem of Rebirth", "=ds=#s16#, #w15#", "", "2.95%" };
+ { 6, 22315, "", "=q3=Hammer of Revitalization", "=ds=#h3#, #w6#", "", "" };
+ { 7, 22314, "", "=q3=Huntsman's Harpoon", "=ds=#w7#", "", "15.50%" };
+ { 17, 21984, "", "=q1=Left Piece of Lord Valthalak's Amulet", "=ds=#m3#" };
+ { 18, 22046, "", "=q1=Right Piece of Lord Valthalak's Amulet", "=ds=#m3#" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 18295, "", "=q3=Phasing Boots", "=ds=#s12#, #a1# =q2=#m16#", "", "1.26%" };
+ { 2, 18298, "", "=q3=Unbridled Leggings", "=ds=#s11#, #a2#", "", "0.62%" };
+ { 3, 18296, "", "=q3=Marksman Bands", "=ds=#s8#, #a3#", "", "0.59%" };
+ { 4, 18289, "", "=q3=Barbed Thorn Necklace", "=ds=#s2#", "", "0.87%" };
+ };
+ {
+ Name = "Dire Maul Books";
+ { 1, 18364, "", "=q3=The Emerald Dream", "=ds=#e10#, =q1=#m1# =ds=#c1#" };
+ { 2, 18361, "", "=q3=The Greatest Race of Hunters", "=ds=#e10#, =q1=#m1# =ds=#c2#" };
+ { 3, 18358, "", "=q3=The Arcanist's Cookbook", "=ds=#e10#, =q1=#m1# =ds=#c3#" };
+ { 4, 18359, "", "=q3=The Light and How to Swing It", "=ds=#e10#, =q1=#m1# =ds=#c4#" };
+ { 5, 18362, "", "=q3=Holy Bologna: What the Light Won't Tell You", "=ds=#e10#, =q1=#m1# =ds=#c5#" };
+ { 6, 18356, "", "=q3=Garona: A Study on Stealth and Treachery", "=ds=#e10#, =q1=#m1# =ds=#c6#" };
+ { 7, 18363, "", "=q3=Frost Shock and You", "=ds=#e10#, =q1=#m1# =ds=#c7#" };
+ { 8, 18360, "", "=q3=Harnessing Shadows", "=ds=#e10#, =q1=#m1# =ds=#c8#" };
+ { 9, 18357, "", "=q3=Codex of Defense", "=ds=#e10#, =q1=#m1# =ds=#c9#" };
+ { 11, 18333, "", "=q2=Libram of Focus", "=ds=#e10#" };
+ { 12, 18334, "", "=q2=Libram of Protection", "=ds=#e10#" };
+ { 13, 18332, "", "=q2=Libram of Rapidity", "=ds=#e10#" };
+ { 16, 18470, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c1#" };
+ { 17, 18473, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c2#" };
+ { 18, 18468, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c3#" };
+ { 19, 18472, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c4#" };
+ { 20, 18469, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c5#" };
+ { 21, 18465, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c6#" };
+ { 22, 18471, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c7#" };
+ { 23, 18467, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c8#" };
+ { 24, 18466, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c9#" };
+ { 26, 18401, "", "=q4=Foror's Compendium of Dragon Slaying", "=ds=#e10#, =q1=#m1# =ds=#c9#, #c4#" };
+ { 27, 18348, "", "=q4=Quel'Serrar", "=ds=#h3#, #w10#, =q1=#m1# =ds=#c9#, #c4#" };
+ };
+};
+-----------------------
+--- Dire Maul North ---
+-----------------------
+
+AtlasLoot_Data["DireMaulNorth"] = {
+ Name = BabbleZone["Dire Maul"] .. " North";
+ Type = "ClassicDungeonExt";
+ Map = "DireMaulNorth";
+ {
+ Name = BabbleBoss["Guard Mol'dar"];
+ { 1, 18496, "", "=q3=Heliotrope Cloak", "=ds=#s4#", "", "4.68%" };
+ { 2, 18497, "", "=q3=Sublime Wristguards", "=ds=#s8#, #a1#", "", "4.14%" };
+ { 3, 18494, "", "=q3=Denwatcher's Shoulders", "=ds=#s3#, #a3#", "", "4.62%" };
+ { 4, 18493, "", "=q3=Bulky Iron Spaulders", "=ds=#s3#, #a4#", "", "3.96%" };
+ { 5, 18498, "", "=q3=Hedgecutter", "=ds=#h1#, #w1#", "", "4.94%" };
+ { 7, 18268, "", "=q1=Gordok Inner Door Key", "=ds=#e9#", "", "100%" };
+ { 16, 18450, "", "=q3=Robe of Combustion", "=ds=#s5#, #a1#", "", "6.57%" };
+ { 17, 18451, "", "=q3=Hyena Hide Belt", "=ds=#s10#, #a2#", "", "6.61%" };
+ { 18, 18458, "", "=q3=Modest Armguards", "=ds=#s8#, #a3#", "", "7.12%" };
+ { 19, 18459, "", "=q3=Gallant's Wristguards", "=ds=#s8#, #a4#", "", "6.09%" };
+ { 20, 18464, "", "=q3=Gordok Nose Ring", "=ds=#s13#", "", "6.52%" };
+ { 21, 18462, "", "=q3=Jagged Bone Fist", "=ds=#h1#, #w13#", "", "" };
+ { 22, 18463, "", "=q3=Ogre Pocket Knife", "=ds=#h1#, #w10#", "", "7.38%" };
+ { 23, 18460, "", "=q3=Unsophisticated Hand Cannon", "=ds=#w5#", "", "5.86%" };
+ };
+ {
+ Name = BabbleBoss["Stomper Kreeg"];
+ { 1, 18425, "", "=q3=Kreeg's Mug", "=ds=#s15#", "", "40.24%" };
+ { 2, 18269, "", "=q3=Gordok Green Grog", "=ds=#e4#", "", "100%" };
+ { 3, 18284, "", "=q3=Kreeg's Stout Beatdown", "=ds=#e4#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Guard Fengus"];
+ { 1, 18450, "", "=q3=Robe of Combustion", "=ds=#s5#, #a1#", "", "9.76%" };
+ { 2, 18451, "", "=q3=Hyena Hide Belt", "=ds=#s10#, #a2#", "", "10.64%" };
+ { 3, 18458, "", "=q3=Modest Armguards", "=ds=#s8#, #a3#", "", "11.41%" };
+ { 4, 18459, "", "=q3=Gallant's Wristguards", "=ds=#s8#, #a4#", "", "9.60%" };
+ { 5, 18464, "", "=q3=Gordok Nose Ring", "=ds=#s13#", "", "11.41%" };
+ { 6, 18462, "", "=q3=Jagged Bone Fist", "=ds=#h1#, #w13#", "", "11.79%" };
+ { 7, 18463, "", "=q3=Ogre Pocket Knife", "=ds=#h1#, #w10#", "", "11.02%" };
+ { 8, 18460, "", "=q3=Unsophisticated Hand Cannon", "=ds=#w5#", "", "9.07%" };
+ { 16, 0, "INV_Box_01", "=q6=#x7#", "" };
+ { 17, 18266, "", "=q1=Gordok Courtyard Key", "=ds=#e9#", "", "100%" };
+ };
+ {
+ Name = AL["Knot Thimblejack"];
+ { 1, 18517, "", "=q4=Pattern: Chromatic Cloak", "=ds=#p7# (300)", "", "0.92%" };
+ { 2, 18518, "", "=q4=Pattern: Hide of the Wild", "=ds=#p7# (300)", "", "1.29%" };
+ { 3, 18519, "", "=q4=Pattern: Shifting Cloak", "=ds=#p7# (300)", "", "1.14%" };
+ { 4, 18414, "", "=q4=Pattern: Belt of the Archmage", "=ds=#p8# (300)", "", "1.00%" };
+ { 6, 18418, "", "=q3=Pattern: Cloak of Warding", "=ds=#p8# (300)", "", "9.75%" };
+ { 7, 18415, "", "=q3=Pattern: Felcloth Gloves", "=ds=#p8# (300)", "", "9.62%" };
+ { 8, 18416, "", "=q3=Pattern: Inferno Gloves", "=ds=#p8# (300)", "", "10.66%" };
+ { 9, 18417, "", "=q3=Pattern: Mooncloth Gloves", "=ds=#p8# (300)", "", "10.28%" };
+ { 10, 18514, "", "=q3=Pattern: Girdle of Insight", "=ds=#p7# (300)", "", "10.90%" };
+ { 11, 18515, "", "=q3=Pattern: Mongoose Boots", "=ds=#p7# (300)", "", "11.18%" };
+ { 12, 18516, "", "=q3=Pattern: Swift Flight Bracers", "=ds=#p7# (300)", "", "10.26%" };
+ { 14, 0, "INV_Box_01", "=q6=#x6#", "" };
+ { 15, 18240, "", "=q2=Ogre Tannin", "=ds=#m3#", "", "100%" };
+ { 16, 18509, "", "=q4=Chromatic Cloak", "=ds=#s4#" };
+ { 17, 18510, "", "=q4=Hide of the Wild", "=ds=#s4#" };
+ { 18, 18511, "", "=q4=Shifting Cloak", "=ds=#s4#" };
+ { 19, 18405, "", "=q4=Belt of the Archmage", "=ds=#s10#, #a1#" };
+ { 21, 18413, "", "=q3=Cloak of Warding", "=ds=#s4#" };
+ { 22, 18407, "", "=q3=Felcloth Gloves", "=ds=#s9#, #a1#" };
+ { 23, 18408, "", "=q3=Inferno Gloves", "=ds=#s9#, #a1#" };
+ { 24, 18409, "", "=q3=Mooncloth Gloves", "=ds=#s9#, #a1#" };
+ { 25, 18504, "", "=q3=Girdle of Insight", "=ds=#s10#, #a2#" };
+ { 26, 18506, "", "=q3=Mongoose Boots", "=ds=#s12#, #a2#" };
+ { 27, 18508, "", "=q3=Swift Flight Bracers", "=ds=#s8#, #a3#" };
+ };
+ {
+ Name = BabbleBoss["Guard Slip'kik"];
+ { 1, 18496, "", "=q3=Heliotrope Cloak", "=ds=#s4#", "", "5.82%" };
+ { 2, 18497, "", "=q3=Sublime Wristguards", "=ds=#s8#, #a1#", "", "4.75%" };
+ { 3, 18494, "", "=q3=Denwatcher's Shoulders", "=ds=#s3#, #a3#", "", "5.70%" };
+ { 4, 18493, "", "=q3=Bulky Iron Spaulders", "=ds=#s3#, #a4#", "", "4.89%" };
+ { 5, 18498, "", "=q3=Hedgecutter", "=ds=#h1#, #w1#", "", "6.01%" };
+ { 16, 18450, "", "=q3=Robe of Combustion", "=ds=#s5#, #a1#", "", "6.78%" };
+ { 17, 18451, "", "=q3=Hyena Hide Belt", "=ds=#s10#, #a2#", "", "7.83%" };
+ { 18, 18458, "", "=q3=Modest Armguards", "=ds=#s8#, #a3#", "", "7.63%" };
+ { 19, 18459, "", "=q3=Gallant's Wristguards", "=ds=#s8#, #a4#", "", "6.98%" };
+ { 20, 18464, "", "=q3=Gordok Nose Ring", "=ds=#s13#", "", "7.36%" };
+ { 21, 18462, "", "=q3=Jagged Bone Fist", "=ds=#h1#, #w13#", "", "8.52%" };
+ { 22, 18463, "", "=q3=Ogre Pocket Knife", "=ds=#h1#, #w10#", "", "7.74%" };
+ { 23, 18460, "", "=q3=Unsophisticated Hand Cannon", "=ds=#w5#", "", "6.66%" };
+ };
+ {
+ Name = BabbleBoss["Captain Kromcrush"];
+ { 1, 18507, "", "=q3=Boots of the Full Moon", "=ds=#s12#, #a1#", "", "18.75%" };
+ { 2, 18505, "", "=q3=Mugger's Belt", "=ds=#s10#, #a2#", "", "18.06%" };
+ { 3, 18503, "", "=q3=Kromcrush's Chestplate", "=ds=#s5#, #a4#", "", "17.48%" };
+ { 4, 18502, "", "=q3=Monstrous Glaive", "=ds=#w7#", "", "21.47%" };
+ };
+ {
+ Name = BabbleBoss["Cho'Rush the Observer"];
+ { 1, 18490, "", "=q3=Insightful Hood", "=ds=#s1#, #a2#", "", "21.46%" };
+ { 2, 18484, "", "=q3=Cho'Rush's Blade", "=ds=#h1#, #w10#", "", "22.46%" };
+ { 3, 18485, "", "=q3=Observer's Shield", "=ds=#w8#", "", "22.96%" };
+ { 4, 18483, "", "=q3=Mana Channeling Wand", "=ds=#w12#", "", "19.01%" };
+ };
+ {
+ Name = BabbleBoss["King Gordok"];
+ { 1, 18526, "", "=q3=Crown of the Ogre King", "=ds=#s1#, #a1#", "", "17.17%" };
+ { 2, 18525, "", "=q3=Bracers of Prosperity", "=ds=#s8#, #a2#", "", "19.15%" };
+ { 3, 18527, "", "=q3=Harmonious Gauntlets", "=ds=#s9#, #a3#", "", "19.73%" };
+ { 4, 18524, "", "=q3=Leggings of Destruction", "=ds=#s11#, #a3#", "", "18.55%" };
+ { 5, 18521, "", "=q3=Grimy Metal Boots", "=ds=#s12#, #a4#", "", "17.80%" };
+ { 6, 18522, "", "=q3=Band of the Ogre King", "=ds=#s13#", "", "14.96%" };
+ { 7, 18523, "", "=q3=Brightly Glowing Stone", "=ds=#s15#", "", "20.21%" };
+ { 8, 18520, "", "=q3=Barbarous Blade", "=ds=#h2#, #w10#", "", "16.44%" };
+ { 16, 19258, "", "=q3=Ace of Warlords", "=ds=#e16#", "", "1.84%" };
+ { 18, 18780, "", "=q3=Top Half of Advanced Armorsmithing: Volume I", "=ds=#m3#", "", "6.00%" };
+ { 19, 12727, "", "=q3=Plans: Enchanted Thorium Breastplate", "=q1=#m4#: =ds=#p2# (300)" };
+ };
+ {
+ Name = AL["DM North Tribute Chest"];
+ { 1, 18538, "", "=q4=Treant's Bane", "=ds=#h2#, #w1#" };
+ { 3, 18495, "", "=q3=Redoubt Cloak", "=ds=#s4#" };
+ { 4, 18532, "", "=q3=Mindsurge Robe", "=ds=#s5#, #a1#" };
+ { 5, 18528, "", "=q3=Cyclone Spaulders", "=ds=#s3#, #a2#" };
+ { 6, 18530, "", "=q3=Ogre Forged Hauberk", "=ds=#s5#, #a3#" };
+ { 7, 18533, "", "=q3=Gordok Bracers of Power", "=ds=#s8#, #a4#" };
+ { 8, 18529, "", "=q3=Elemental Plate Girdle", "=ds=#s10#, #a4# =q2=#m16#" };
+ { 9, 18500, "", "=q3=Tarnished Elven Ring", "=ds=#s13#" };
+ { 10, 18537, "", "=q3=Counterattack Lodestone", "=ds=#s14#" };
+ { 11, 18531, "", "=q3=Unyielding Maul", "=ds=#h2#, #w6#" };
+ { 12, 18534, "", "=q3=Rod of the Ogre Magi", "=ds=#w9#" };
+ { 13, 18499, "", "=q3=Barrier Shield", "=ds=#w8#" };
+ { 16, 18475, "", "=q2=Oddly Magical Belt", "=ds=#s10#, #a1#" };
+ { 17, 18478, "", "=q2=Hyena Hide Jerkin", "=ds=#s5#, #a2#" };
+ { 18, 18477, "", "=q2=Shaggy Leggings", "=ds=#s11#, #a2#" };
+ { 19, 18476, "", "=q2=Mud Stained Boots", "=ds=#s12#, #a2#" };
+ { 20, 18479, "", "=q2=Carrion Scorpid Helm", "=ds=#s1#, #a3#" };
+ { 21, 18480, "", "=q2=Scarab Plate Helm", "=ds=#s1#, #a4#" };
+ { 22, 18481, "", "=q2=Skullcracking Mace", "=ds=#h2#, #w6#" };
+ { 23, 18482, "", "=q2=Ogre Toothpick Shooter", "=ds=#w2#" };
+ { 24, 18655, "", "=q2=Schematic: Major Recombobulator", "=ds=#p5# (275)" };
+ };
+};
+
+----------------------
+--- Dire Maul West ---
+----------------------
+
+AtlasLoot_Data["DireMaulWest"] = {
+ Name = BabbleZone["Dire Maul"] .. " West";
+ Type = "ClassicDungeonExt";
+ Map = "DireMaulWest";
+ {
+ Name = BabbleBoss["Tendris Warpwood"];
+ { 1, 18390, "", "=q3=Tanglemoss Leggings", "=ds=#s11#, #a2#", "", "22.55%" };
+ { 2, 18393, "", "=q3=Warpwood Binding", "=ds=#s10#, #a3#", "", "19.81%" };
+ { 4, 18353, "", "=q3=Stoneflower Staff", "=ds=#w9#", "", "23.46%" };
+ { 5, 18352, "", "=q3=Petrified Bark Shield", "=ds=#w8#", "", "21.67%" };
+ };
+ {
+ Name = BabbleBoss["Illyanna Ravenoak"];
+ { 1, 18386, "", "=q3=Padre's Trousers", "=ds=#s11#, #a1#", "", "18.79%" };
+ { 2, 18383, "", "=q3=Force Imbued Gauntlets", "=ds=#s9#, #a4#", "", "20.11%" };
+ { 4, 18349, "", "=q3=Gauntlets of Accuracy", "=ds=#s9#, #a3#", "", "23.94%" };
+ { 5, 18347, "", "=q3=Well Balanced Axe", "=ds=#h1#, #w1#", "", "22.44%" };
+ };
+ {
+ Name = BabbleBoss["Magister Kalendris"];
+ { 1, 18374, "", "=q3=Flamescarred Shoulders", "=ds=#s3#, #a2#", "", "" };
+ { 2, 18397, "", "=q3=Elder Magus Pendant", "=ds=#s2#", "", "17.46%" };
+ { 3, 18371, "", "=q3=Mindtap Talisman", "=ds=#s14#", "", "7.45%" };
+ { 5, 18350, "", "=q3=Amplifying Cloak", "=ds=#s4#", "", "21.44%" };
+ { 6, 18351, "", "=q3=Magically Sealed Bracers", "=ds=#s8#, #a4#", "", "24.36%" };
+ { 7, 22309, "", "=q2=Pattern: Big Bag of Enchantment", "=ds=#p8# (300)" };
+ };
+ {
+ Name = BabbleBoss["Tsu'zee"];
+ { 1, 18387, "", "=q3=Brightspark Gloves", "=ds=#s9#, #a1#", "", "24.79%" };
+ { 3, 18346, "", "=q3=Threadbare Trousers", "=ds=#s11#, #a1#", "", "33.94%" };
+ { 4, 18345, "", "=q3=Murmuring Ring", "=ds=#s13#", "", "30.28%" };
+ };
+ {
+ Name = BabbleBoss["Immol'thar"];
+ { 1, 18389, "", "=q3=Cloak of the Cosmos", "=ds=#s4#", "", "14.35%" };
+ { 2, 18385, "", "=q3=Robe of Everlasting Night", "=ds=#s5#, #a1#", "", "15.33%" };
+ { 3, 18377, "", "=q3=Quickdraw Gloves", "=ds=#s9#, #a2#", "", "21.01%" };
+ { 4, 18391, "", "=q3=Eyestalk Cord", "=ds=#s10#, #a2#", "", "20.08%" };
+ { 5, 18394, "", "=q3=Demon Howl Wristguards", "=ds=#s8#, #a3#", "", "17.51%" };
+ { 6, 18379, "", "=q3=Odious Greaves", "=ds=#s12#, #a3#", "", " 19.81%" };
+ { 7, 18384, "", "=q3=Bile-etched Spaulders", "=ds=#s3#, #a4#", "", "14.71%" };
+ { 16, 18381, "", "=q3=Evil Eye Pendant", "=ds=#s2#", "", "17.78%" };
+ { 17, 18370, "", "=q3=Vigilance Charm", "=ds=#s14#", "", "6.30%" };
+ { 18, 18372, "", "=q3=Blade of the New Moon", "=ds=#h1#, #w4#", "", "6.99%" };
+ };
+ {
+ Name = BabbleBoss["Lord Hel'nurath"];
+ { 1, 18757, "", "=q3=Diabolic Mantle", "=ds=#s3#, #a1#", "", "23.12%" };
+ { 2, 18754, "", "=q3=Fel Hardened Bracers", "=ds=#s8#, #a4#", "", "19.24%" };
+ { 3, 18756, "", "=q3=Dreadguard's Protector", "=ds=#w8#", "", "19.77%" };
+ { 4, 18755, "", "=q3=Xorothian Firestick", "=ds=#w5#", "", "21.92%" };
+ };
+ {
+ Name = BabbleBoss["Prince Tortheldrin"];
+ { 1, 18382, "", "=q3=Fluctuating Cloak", "=ds=#s4# =q2=#m16#", "", "21.84%" };
+ { 2, 18373, "", "=q3=Chestplate of Tranquility", "=ds=#s5#, #a2#", "", "6.32%" };
+ { 3, 18375, "", "=q3=Bracers of the Eclipse", "=ds=#s8#, #a2#", "", "15.62%" };
+ { 4, 18378, "", "=q3=Silvermoon Leggings", "=ds=#s11#, #a3#", "", "21.20%" };
+ { 5, 18380, "", "=q3=Eldritch Reinforced Legplates", "=ds=#s11#, #a4#", "", "15.87%" };
+ { 6, 18395, "", "=q3=Emerald Flame Ring", "=ds=#s13#", "", "14.55%" };
+ { 8, 0, "INV_Box_01", "=q6=#x8#", "" };
+ { 9, 18336, "", "=q1=Gauntlet of Gordok Might", "=ds=#m3#" };
+ { 16, 18392, "", "=q3=Distracting Dagger", "=ds=#h4#, #w4#", "", "14.70%" };
+ { 17, 18396, "", "=q3=Mind Carver", "=ds=#h3#, #w10#", "", "14.62%" };
+ { 18, 18376, "", "=q3=Timeworn Mace", "=ds=#h1#, #w6#", "", "14.40%" };
+ { 19, 18388, "", "=q3=Stoneshatter", "=ds=#w3#", "", "7.72%" };
+ };
+ {
+ Name = AL["Shen'dralar Provisioner"];
+ { 1, 18487, "", "=q1=Pattern: Mooncloth Robe", "=ds=#p8# (300)" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 18344, "", "=q3=Stonebark Gauntlets", "=ds=#s9#, #a2#", "", "0.47%" };
+ { 2, 18340, "", "=q3=Eidolon Talisman", "=ds=#s2#", "", "0.58%" };
+ { 3, 18338, "", "=q3=Wand of Arcane Potency", "=ds=#w12#", "", "0.78%" };
+ };
+};
+------------------
+--- Gnomeregan ---
+------------------
+
+AtlasLoot_Data["Gnomeregan"] = {
+ Name = BabbleZone["Gnomeregan"];
+ Map = "Gnomeregan";
+ {
+ Name = AL["Namdo Bizzfizzle"];
+ { 1, 14639, "", "=q1=Schematic: Minor Recombobulator", "=ds=#p5# (140)" };
+ };
+ {
+ Name = BabbleBoss["Techbot"];
+ { 1, 9444, "", "=q1=Techbot CPU Shell", "=ds=#w8#", "", "69.3%" };
+ { 2, 9277, "", "=q1=Techbot's Memory Core", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Grubbis"];
+ { 1, 9445, "", "=q3=Grubbis Paws", "=ds=#s9#, #a3#", "", "9.22%" };
+ };
+ {
+ Name = BabbleBoss["Viscous Fallout"];
+ { 1, 9454, "", "=q3=Acidic Walkers", "=ds=#s12#, #a1#", "", "54.02%" };
+ { 2, 9453, "", "=q3=Toxic Revenger", "=ds=#h1#, #w4#", "", "19.05%" };
+ { 3, 9452, "", "=q3=Hydrocane", "=ds=#w9#", "", "18.25%" };
+ };
+ {
+ Name = BabbleBoss["Electrocutioner 6000"];
+ { 1, 9448, "", "=q3=Spidertank Oilrag", "=ds=#s8#, #a1#", "", "28.37%" };
+ { 2, 9447, "", "=q3=Electrocutioner Lagnut", "=ds=#s13#", "", "28.44%" };
+ { 3, 9446, "", "=q3=Electrocutioner Leg", "=ds=#h1#, #w10#", "", "13.19%" };
+ { 4, 6893, "", "=q1=Workshop Key", "=ds=#e9#" };
+ };
+ {
+ Name = BabbleBoss["Crowd Pummeler 9-60"];
+ { 1, 9450, "", "=q3=Gnomebot Operating Boots", "=ds=#s12#, #a2#", "", "60.45%" };
+ { 2, 9449, "", "=q3=Manual Crowd Pummeler", "=ds=#h2#, #w6#", "", "33.14%" };
+ };
+ {
+ Name = BabbleBoss["Dark Iron Ambassador"];
+ { 1, 9455, "", "=q3=Emissary Cuffs", "=ds=#s8#, #a2# =q2=#m16#", "", "33.96%" };
+ { 2, 9457, "", "=q3=Royal Diplomatic Scepter", "=ds=#h1#, #w6#", "", "17.79%" };
+ { 3, 9456, "", "=q3=Glass Shooter", "=ds=#w5#", "", "38.01%" };
+ };
+ {
+ Name = BabbleBoss["Mekgineer Thermaplugg"];
+ { 1, 9492, "", "=q3=Electromagnetic Gigaflux Reactivator", "=ds=#s1#, #a1#", "", "7.65%" };
+ { 2, 9461, "", "=q3=Charged Gear", "=ds=#s13# =q2=#m16#", "", "28.49%" };
+ { 3, 9459, "", "=q3=Thermaplugg's Left Arm", "=ds=#h2#, #w1#", "", "18.05%" };
+ { 4, 9458, "", "=q3=Thermaplugg's Central Core", "=ds=#w8#", "", "28.61%" };
+ { 5, 4415, "", "=q3=Schematic: Craftsman's Monocle", "=ds=#p5# (185)", "", "" };
+ { 6, 4413, "", "=q2=Schematic: Discombobulator Ray", "=ds=#p5# (160)", "", "" };
+ { 7, 4411, "", "=q2=Schematic: Flame Deflector", "=ds=#p5# (125)", "", "0.7%" };
+ { 8, 7742, "", "=q1=Schematic: Gnomish Cloaking Device", "=ds=#p5# (200)", "", "" };
+ { 9, 9299, "", "=q1=Thermaplugg's Safe Combination", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 9508, "", "=q3=Mechbuilder's Overalls", "=ds=#s5#, #a1#", "", "0.02%" };
+ { 2, 9491, "", "=q3=Hotshot Pilot's Gloves", "=ds=#s9#, #a1#", "", "0.01%" };
+ { 3, 9509, "", "=q3=Petrolspill Leggings", "=ds=#s11#, #a2#", "", "0.01%" };
+ { 4, 9510, "", "=q3=Caverndeep Trudgers", "=ds=#s12#, #a3#", "", "0.01%" };
+ { 5, 9490, "", "=q3=Gizmotron Megachopper", "=ds=#h2#, #w10#", "", "0.01%" };
+ { 6, 9485, "", "=q3=Vibroblade", "=ds=#h1#, #w1#", "", "0.01%" };
+ { 7, 9486, "", "=q3=Supercharger Battle Axe", "=ds=#h2#, #w1#", "", "0.02%" };
+ { 8, 9488, "", "=q3=Oscillating Power Hammer", "=ds=#h1#, #w6#", "", "0.02%" };
+ { 9, 9487, "", "=q3=Hi-tech Supergun", "=ds=#w5#", "", "0.01%" };
+ { 10, 9327, "", "=q2=Security DELTA Data Access Card", "=ds=#m20#", "", "1.41%" };
+ { 11, 9326, "", "=q1=Grime-Encrusted Ring", "=ds=#m2#", "", "9.38%" };
+ { 12, 9362, "", "=q2=Brilliant Gold Ring", "=q1=#m4#: =ds=#s13#" };
+ { 13, 9538, "", "=q3=Talvash's Gold Ring", "=q1=#m4#: =ds=#s13#" };
+ };
+};
+----------------
+--- Maraudon ---
+----------------
+
+AtlasLoot_Data["Maraudon"] = {
+ Name = BabbleZone["Maraudon"];
+ Map = "Maraudon";
+ {
+ Name = BabbleBoss["Noxxion"];
+ { 1, 17746, "", "=q3=Noxxion's Shackles", "=ds=#s8#, #a4#", "", "32.50%" };
+ { 2, 17744, "", "=q3=Heart of Noxxion", "=ds=#s14#", "", "30.35%" };
+ { 3, 17745, "", "=q3=Noxious Shooter", "=ds=#w12#", "", "17.53%" };
+ { 4, 17702, "", "=q1=Celebrian Rod", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Razorlash"];
+ { 1, 17750, "", "=q3=Chloromesh Girdle", "=ds=#s10#, #a1#", "", "22.93%" };
+ { 2, 17748, "", "=q3=Vinerot Sandals", "=ds=#s12#, #a1#", "", "20.60%" };
+ { 3, 17749, "", "=q3=Phytoskin Spaulders", "=ds=#s3#, #a2#", "", "22.09%" };
+ { 4, 17751, "", "=q3=Brusslehide Leggings", "=ds=#s11#, #a2#", "", "21.65%" };
+ };
+ {
+ Name = BabbleBoss["Lord Vyletongue"];
+ { 1, 17755, "", "=q3=Satyrmane Sash", "=ds=#s10#, #a1#", "", "25.71%" };
+ { 2, 17754, "", "=q3=Infernal Trickster Leggings", "=ds=#s11#, #a3#", "", "28.09%" };
+ { 3, 17752, "", "=q3=Satyr's Lash", "=ds=#h1#, #w4#", "", "23.14%" };
+ { 4, 17703, "", "=q1=Celebrian Diamond", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Meshlok the Harvester"];
+ { 1, 17741, "", "=q3=Nature's Embrace", "=ds=#s5#, #a1#", "", "30.34%" };
+ { 2, 17742, "", "=q3=Fungus Shroud Armor", "=ds=#s5#, #a2#", "", "31.37%" };
+ { 3, 17767, "", "=q3=Bloomsprout Headpiece", "=ds=#s1#, #a3#", "", "28.32%" };
+ };
+ {
+ Name = BabbleBoss["Celebras the Cursed"];
+ { 1, 17739, "", "=q3=Grovekeeper's Drape", "=ds=#s4#", "", "30.32%" };
+ { 2, 17740, "", "=q3=Soothsayer's Headdress", "=ds=#s1#, #a2#", "", "28.59%" };
+ { 3, 17738, "", "=q3=Claw of Celebras", "=ds=#h4#, #w13#", "", "28.22%" };
+ };
+ {
+ Name = BabbleBoss["Landslide"];
+ { 1, 17736, "", "=q3=Rockgrip Gauntlets", "=ds=#s9#, #a3#", "", "23.09%" };
+ { 2, 17734, "", "=q3=Helm of the Mountain", "=ds=#s1#, #a4#", "", "20.87%" };
+ { 3, 17737, "", "=q3=Cloud Stone", "=ds=#s15#", "", "19.99%" };
+ { 4, 17943, "", "=q3=Fist of Stone", "=ds=#h1#, #w6#", "", "16.58%" };
+ };
+ {
+ Name = BabbleBoss["Tinkerer Gizlock"];
+ { 1, 17719, "", "=q3=Inventor's Focal Sword", "=ds=#h1#, #w10#", "", "27.44%" };
+ { 2, 17718, "", "=q3=Gizlock's Hypertech Buckler", "=ds=#w8#", "", "30.61%" };
+ { 3, 17717, "", "=q3=Megashot Rifle", "=ds=#w5#", "", "27.23%" };
+ };
+ {
+ Name = BabbleBoss["Rotgrip"];
+ { 1, 17732, "", "=q3=Rotgrip Mantle", "=ds=#s3#, #a1#", "", "25.73%" };
+ { 2, 17728, "", "=q3=Albino Crocscale Boots", "=ds=#s12#, #a2#", "", "26.20%" };
+ { 3, 17730, "", "=q3=Gatorbite Axe", "=ds=#h2#, #w1#", "", "19.21%" };
+ };
+ {
+ Name = BabbleBoss["Princess Theradras"];
+ { 1, 17780, "", "=q4=Blade of Eternal Darkness", "=ds=#h1#, #w4#", "", "0.20%" };
+ { 2, 17715, "", "=q3=Eye of Theradras", "=ds=#s1#, #a1#", "", "13.47%" };
+ { 3, 17714, "", "=q3=Bracers of the Stone Princess", "=ds=#s8#, #a3#", "", "20.06%" };
+ { 4, 17711, "", "=q3=Elemental Rockridge Leggings", "=ds=#s11#, #a4#", "", "14.96%" };
+ { 5, 17707, "", "=q3=Gemshard Heart", "=ds=#s2#", "", "15.30%" };
+ { 6, 17713, "", "=q3=Blackstone Ring", "=ds=#s13#", "", "18.92%" };
+ { 7, 17710, "", "=q3=Charstone Dirk", "=ds=#h1#, #w4#", "", "14.24%" };
+ { 8, 17766, "", "=q3=Princess Theradras' Scepter", "=ds=#h2#, #w6#", "", "16.44%" };
+ };
+ {
+ Name = AL["Quest Item"];
+ { 1, 17764, "", "=q1=Gem of the Fourth Khan", "=ds=#m3#", "", "100%" };
+ { 2, 17765, "", "=q1=Gem of the Fifth Khan", "=ds=#m3#", "", "100%" };
+ };
+};
+----------------------
+--- Ragefire Chasm ---
+----------------------
+AtlasLoot_Data["RagefireChasm"] = {
+ Name = BabbleZone["Ragefire Chasm"];
+ Map = "RagefireChasm";
+ {
+ Name = BabbleBoss["Taragaman the Hungerer"];
+ { 1, 14149, "", "=q3=Subterranean Cape", "=ds=#s4#", "", "31.59%" };
+ { 2, 14148, "", "=q3=Crystalline Cuffs", "=ds=#s8#, #a1#", "", "33.91%" };
+ { 3, 14145, "", "=q3=Cursed Felblade", "=ds=#h1#, #w10#", "", "15.98%" };
+ { 4, 14540, "", "=q1=Taragaman the Hungerer's Heart", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = AL["Zelemar the Wrathful"];
+ { 1, 24225, "", "=q1=Blood of the Wrathful", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Jergosh the Invoker"];
+ { 1, 14150, "", "=q3=Robe of Evocation", "=ds=#s5#, #a1#", "", "36.40%" };
+ { 2, 14147, "", "=q3=Cavedweller Bracers", "=ds=#s8#, #a3#", "", "34.35%" };
+ { 3, 14151, "", "=q3=Chanting Blade", "=ds=#h1#, #w4#", "", "17.10%" };
+ };
+};
+
+----------------------
+--- Razorfen Downs ---
+----------------------
+
+AtlasLoot_Data["RazorfenDowns"] = {
+ Name = BabbleZone["Razorfen Downs"];
+ Map = "RazorfenDowns";
+ {
+ Name = BabbleBoss["Tuten'kash"];
+ { 1, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Tuten'kash"], "" };
+ { 2, 10776, "", "=q3=Silky Spider Cape", "=ds=#s4#", "", "28.64%" };
+ { 3, 10777, "", "=q3=Arachnid Gloves", "=ds=#s9#, #a2# =q2=#m16#", "", "28.95%" };
+ { 4, 10775, "", "=q3=Carapace of Tuten'kash", "=ds=#s5#, #a4#", "", "24.87%" };
+ };
+ {
+ Name = AL["Henry Stern"];
+ { 1, 3831, "", "=q2=Recipe: Mighty Troll's Blood Potion", "=ds=#p1# (180)" };
+ { 2, "s13028", "10841", "=q1=Goldthorn Tea", "=ds=#p3# (175)" };
+ };
+ {
+ Name = BabbleBoss["Mordresh Fire Eye"];
+ { 1, 10771, "", "=q3=Deathmage Sash", "=ds=#s10#, #a1#", "", "27.92%" };
+ { 2, 10769, "", "=q3=Glowing Eye of Mordresh", "=ds=#s2#", "", "29.11%" };
+ { 3, 10770, "", "=q3=Mordresh's Lifeless Skull", "=ds=#s15#", "", "29.59%" };
+ };
+ {
+ Name = BabbleBoss["Glutton"];
+ { 1, 10774, "", "=q3=Fleshhide Shoulders", "=ds=#s3#, #a2#", "", "42.15%" };
+ { 2, 10772, "", "=q3=Glutton's Cleaver", "=ds=#h1#, #w1#", "", "44.22%" };
+ };
+ {
+ Name = BabbleBoss["Ragglesnout"];
+ { 1, 10768, "", "=q3=Boar Champion's Belt", "=ds=#s10#, #a3#", "", "31.40%" };
+ { 2, 10758, "", "=q3=X'caliboar", "=ds=#h2#, #w10#", "", "18.51%" };
+ { 3, 10767, "", "=q3=Savage Boar's Guard", "=ds=#w8#", "", "35.14%" };
+ };
+ {
+ Name = BabbleBoss["Amnennar the Coldbringer"];
+ { 1, 10762, "", "=q3=Robes of the Lich", "=ds=#s5#, #a1#", "", "29.52%" };
+ { 2, 10765, "", "=q3=Bonefingers", "=ds=#s9#, #a2#" };
+ { 3, 10764, "", "=q3=Deathchill Armor", "=ds=#s5#, #a3#", "", "24.24%" };
+ { 4, 10763, "", "=q3=Icemetal Barbute", "=ds=#s1#, #a4#", "", "28.66%" };
+ { 5, 10761, "", "=q3=Coldrage Dagger", "=ds=#h1#, #w4#", "", "13.89%" };
+ { 6, 10420, "", "=q1=Skull of the Coldbringer", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Plaguemaw the Rotting"];
+ { 1, 10760, "", "=q3=Swine Fists", "=ds=#s9#, #a2#", "", "58.15%" };
+ { 2, 10766, "", "=q3=Plaguerot Sprig", "=ds=#w12#, =q1=#m1# =ds=#c3#", "", "29.98%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 10574, "", "=q3=Corpseshroud", "=ds=#s1#, #a1#", "", "0.01%" };
+ { 2, 10581, "", "=q3=Death's Head Vestment", "=ds=#s5#, #a1#", "", "0.02%" };
+ { 3, 10578, "", "=q3=Thoughtcast Boots", "=ds=#s12#, #a1#", "", "0.01%" };
+ { 4, 10583, "", "=q3=Quillward Harness", "=ds=#s5#, #a2#", "", "0.01%" };
+ { 5, 10582, "", "=q3=Briar Tredders", "=ds=#s12#, #a2#", "", "0.02%" };
+ { 6, 10584, "", "=q3=Stormgale Fists", "=ds=#s9#, #a3#", "", "0.02%" };
+ { 7, 10573, "", "=q3=Boneslasher", "=ds=#h2#, #w10#", "", "0.01%" };
+ { 8, 10570, "", "=q3=Manslayer", "=ds=#h2#, #w1#", "", "0.01%" };
+ { 9, 10571, "", "=q3=Ebony Boneclub", "=ds=#h1#, #w6#", "", "0.01%" };
+ { 10, 10567, "", "=q3=Quillshooter", "=ds=#w2#", "", "0.02%" };
+ { 11, 10572, "", "=q3=Freezing Shard", "=ds=#w12#, =q1=#m1# =q2=#c3#", "", "0.01%" };
+ };
+};
+
+----------------------
+--- Razorfen Kraul ---
+----------------------
+
+AtlasLoot_Data["RazorfenKraul"] = {
+ Name = BabbleZone["Razorfen Kraul"];
+ Map = "RazorfenKraul";
+ {
+ Name = AL["Roogug"];
+ { 1, 6841, "", "=q1=Vial of Phlogiston", "=ds=#m3#" };
+ };
+ {
+ Name = AL["Aggem Thorncurse"];
+ { 1, 6681, "", "=q3=Thornspike", "=ds=#h1#, #w4#", "", "57,12%" };
+ };
+ {
+ Name = BabbleBoss["Death Speaker Jargba"];
+ { 1, 6685, "", "=q3=Death Speaker Mantle", "=ds=#s3#, #a1#", "", "40.42%" };
+ { 2, 6682, "", "=q3=Death Speaker Robes", "=ds=#s5#, #a1#", "", "40.52%" };
+ { 3, 2816, "", "=q3=Death Speaker Scepter", "=ds=#h3#, #w6#", "", "7.72%" };
+ };
+ {
+ Name = AL["Razorfen Spearhide"];
+ { 1, 6679, "", "=q3=Armor Piercer", "=ds=#w7#", "", "43%" };
+ };
+ {
+ Name = BabbleBoss["Overlord Ramtusk"];
+ { 1, 6686, "", "=q3=Tusken Helm", "=ds=#s1#, #a3#", "", "57.14%" };
+ { 2, 6687, "", "=q3=Corpsemaker", "=ds=#h2#, #w1#", "", "27.79%" };
+ };
+ {
+ Name = BabbleBoss["Agathelos the Raging"];
+ { 1, 6690, "", "=q3=Ferine Leggings", "=ds=#s11#, #a2#", "", "49.21%" };
+ { 2, 6691, "", "=q3=Swinetusk Shank", "=ds=#h1#, #w4#", "", "24.85%" };
+ };
+ {
+ Name = BabbleBoss["Blind Hunter"];
+ { 1, 6697, "", "=q3=Batwing Mantle", "=ds=#s3#, #a1#", "", "27.65%" };
+ { 2, 6695, "", "=q3=Stygian Bone Amulet", "=ds=#s2#", "", "22.24%" };
+ { 3, 6696, "", "=q3=Nightstalker Bow", "=ds=#w2#", "", "25.12%" };
+ };
+ {
+ Name = BabbleBoss["Charlga Razorflank"];
+ { 1, 6693, "", "=q3=Agamaggan's Clutch", "=ds=#s13#", "", "32.15%" };
+ { 2, 6692, "", "=q3=Pronged Reaver", "=ds=#h1#, #w1#", "", "15.43%" };
+ { 3, 6694, "", "=q3=Heart of Agamaggan", "=ds=#w8#", "", "30.24%" };
+ { 4, 17008, "", "=q1=Small Scroll", "=ds=#m2# (#m6#)" };
+ { 5, 5793, "", "=q1=Razorflank's Heart", "=ds=#m3#", "", "100%" };
+ { 6, 5792, "", "=q1=Razorflank's Medallion", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Earthcaller Halmgar"];
+ { 1, 6688, "", "=q3=Whisperwind Headdress", "=ds=#s1#, #a2#", "", "43.75%" };
+ { 2, 6689, "", "=q3=Wind Spirit Staff", "=ds=#w9#", "", "42.66%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 2264, "", "=q3=Mantle of Thieves", "=ds=#s3#, #a2#", "", "0.02%" };
+ { 2, 1978, "", "=q3=Wolfclaw Gloves", "=ds=#s9#, #a2#", "", "0.02%" };
+ { 3, 1488, "", "=q3=Avenger's Armor", "=ds=#s5#, #a3#", "", "0.01%" };
+ { 4, 4438, "", "=q3=Pugilist Bracers", "=ds=#s8#, #a3#", "", "0.01%" };
+ { 5, 2039, "", "=q3=Plains Ring", "=ds=#s13#", "", "0.02%" };
+ { 6, 776, "", "=q3=Vendetta", "=ds=#h1#, #w4#", "", "0.01%" };
+ { 7, 1727, "", "=q3=Sword of Decay", "=ds=#h1#, #w10#", "", "0.02%" };
+ { 8, 1975, "", "=q3=Pysan's Old Greatsword", "=ds=#h2#, #w10#", "", "0.02%" };
+ { 9, 1976, "", "=q3=Slaghammer", "=ds=#h2#, #w6#", "", "0.02%" };
+ { 10, 2549, "", "=q3=Staff of the Shade", "=ds=#w9#", "", "0.02%" };
+ };
+};
+-------------------------
+--- Scarlet Monastery ---
+-------------------------
+
+AtlasLoot_Data["Scarlet Monastery"] = {
+ Name = BabbleZone["Scarlet Monastery"];
+ Map = "SMArmory";
+ {
+ Name = "Armory";
+ { 1, 7719, "", "=q3=Raging Berserker's Helm", "=ds=#s1#, #a3#", "", "30.62%" };
+ { 2, 7718, "", "=q3=Herod's Shoulder", "=ds=#s3#, #a3#", "", "30.82%" };
+ { 3, 10330, "", "=q3=Scarlet Leggings", "=ds=#s11#, #a3#", "", "12.75%" };
+ { 4, 7717, "", "=q3=Ravager", "=ds=#h2#, #w1#", "", "12.86%" };
+ { 6, 0, "INV_Box_01", "=q6=#n43#", "" };
+ { 7, 23192, "", "=q2=Tabard of the Scarlet Crusade", "=ds=#s7#", "", "0.4%" };
+ };
+ {
+ Name = BabbleZone["Cathedral"];
+ { 1, 0, "INV_Box_01", "=q6=" .. BabbleBoss["High Inquisitor Fairbanks"], "" };
+ { 2, 19507, "", "=q3=Inquisitor's Shawl", "=ds=#s3#, #a1#", "", "15.94%" };
+ { 3, 19508, "", "=q3=Branded Leather Bracers", "=ds=#s8#, #a2#", "", "16.17%" };
+ { 4, 19509, "", "=q3=Dusty Mail Boots", "=ds=#s12#, #a3#", "", "17.24%" };
+ { 6, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Scarlet Commander Mograine"], "" };
+ { 7, 7724, "", "=q3=Gauntlets of Divinity", "=ds=#s9#, #a3#", "", "17.49%" };
+ { 8, 10330, "", "=q3=Scarlet Leggings", "=ds=#s11#, #a3#", "", "12.95%" };
+ { 9, 7723, "", "=q3=Mograine's Might", "=ds=#h2#, #w6#", "", "17.13%" };
+ { 10, 7726, "", "=q3=Aegis of the Scarlet Commander", "=ds=#w8#", "", "38.37%" };
+ { 16, 0, "INV_Box_01", "=q6=" .. BabbleBoss["High Inquisitor Whitemane"], "" };
+ { 17, 7720, "", "=q3=Whitemane's Chapeau", "=ds=#s1#, #a1#", "", "34.01%" };
+ { 18, 7722, "", "=q3=Triune Amulet", "=ds=#s2#", "", "33.23%" };
+ { 19, 7721, "", "=q3=Hand of Righteousness", "=ds=#h3#, #w6#", "", "18.32%" };
+ { 20, 20976, "", "=q2=Design: Citrine Pendant of Golden Healing", "=ds=#p12# (190)", "", "100%" };
+ };
+ {
+ Name = BabbleZone["Graveyard"];
+ { 1, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Interrogator Vishas"], "" };
+ { 2, 7683, "", "=q3=Bloody Brass Knuckles", "=ds=#h1#, #w13#", "", "66.1%" };
+ { 3, 7682, "", "=q3=Torturing Poker", "=ds=#h1#, #w4#", "", "5.56%" };
+ { 5, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Bloodmage Thalnos"], "" };
+ { 6, 7684, "", "=q3=Bloodmage Mantle", "=ds=#s3#, #a1#", "", "48.46%" };
+ { 7, 7685, "", "=q3=Orb of the Forgotten Seer", "=ds=#s15#", "", "47.07%" };
+ { 9, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Ironspine"], "" };
+ { 10, 7688, "", "=q3=Ironspine's Ribcage", "=ds=#s5#, #a3#", "", "32.91%" };
+ { 11, 7686, "", "=q3=Ironspine's Eye", "=ds=#s13#", "", "40.08%" };
+ { 12, 7687, "", "=q3=Ironspine's Fist", "=ds=#h1#, #w6#", "", "20.34%" };
+ { 16, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Azshir the Sleepless"], "" };
+ { 17, 7709, "", "=q3=Blighted Leggings", "=ds=#s11#, #a1#", "", "31.19%" };
+ { 18, 7731, "", "=q3=Ghostshard Talisman", "=ds=#s2#", "", "32.71%" };
+ { 19, 7708, "", "=q3=Necrotic Wand", "=ds=#w12#", "", "30.72%" };
+ { 21, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Fallen Champion"], "" };
+ { 22, 7691, "", "=q3=Embalmed Shroud", "=ds=#s1#, #a1#", "", "38.58%" };
+ { 23, 7690, "", "=q3=Ebon Vise", "=ds=#s9#, #a2#", "", "37.83%" };
+ { 24, 7689, "", "=q3=Morbid Dawn", "=ds=#h2#, #w10#", "", "19.15%" };
+ };
+ {
+ Name = BabbleZone["Library"];
+ { 1, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Houndmaster Loksey"], "" };
+ { 2, 7756, "", "=q3=Dog Training Gloves", "=ds=#s9#, #a2#", "", "53.66%" };
+ { 3, 7710, "", "=q3=Loksey's Training Stick", "=ds=#w9#", "", "13.96%" };
+ { 4, 3456, "", "=q3=Dog Whistle", "=ds=#e13#", "", "21.33%" };
+ { 16, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Arcanist Doan"], "" };
+ { 17, 34227, "", "=q4=Deadman's Hand", "=ds=#s13#", "", "" };
+ { 18, 7712, "", "=q3=Mantle of Doan", "=ds=#s3#, #a1#", "", "41.96%" };
+ { 19, 7711, "", "=q3=Robe of Doan", "=ds=#s5#, #a1#", "", "42.86%" };
+ { 20, 7714, "", "=q3=Hypnotic Blade", "=ds=#h3#, #w4#", "", "39.91%" };
+ { 21, 7713, "", "=q3=Illusionary Rod", "=ds=#w9#", "", "38.44%" };
+ { 23, 0, "INV_Box_01", "=q6=#x1#", "" };
+ { 24, 7146, "", "=q2=The Scarlet Key", "=ds=#e9#" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 7728, "", "=q3=Beguiler Robes", "=ds=#s5#, #a1#", "", "0.01%" };
+ { 2, 7755, "", "=q3=Flintrock Shoulders", "=ds=#s3#, #a2#", "", "0.00%" };
+ { 3, 7727, "", "=q3=Watchman Pauldrons", "=ds=#s3#, #a2#", "", "0.01%" };
+ { 4, 7760, "", "=q3=Warchief Kilt", "=ds=#s11#, #a2#", "", "0.00%" };
+ { 5, 7754, "", "=q3=Harbinger Boots", "=ds=#s12#, #a2#", "", "0.01%" };
+ { 6, 5819, "", "=q3=Sunblaze Coif", "=ds=#s1#, #a3#", "", "0.01%" };
+ { 7, 7759, "", "=q3=Archon Chestpiece", "=ds=#s5#, #a3#", "", "0.00%" };
+ { 8, 10328, "", "=q3=Scarlet Chestpiece", "=ds=#s5#, #a3#", "", "0.3%" };
+ { 9, 10332, "", "=q3=Scarlet Boots", "=ds=#s12#, #a3#", "", "0.1%" };
+ { 10, 2262, "", "=q3=Mark of Kern", "=ds=#s13#", "", "0.01%" };
+ { 11, 1992, "", "=q3=Swampchill Fetish", "=ds=#s15#", "", "0.00%" };
+ { 13, 10333, "", "=q2=Scarlet Wristguards", "=ds=#s8#, #a3#", "", "1.6%" };
+ { 14, 10331, "", "=q2=Scarlet Gauntlets", "=ds=#s9#, #a3#", "", "1.7%" };
+ { 15, 10329, "", "=q2=Scarlet Belt", "=ds=#s10#, #a3#", "", "1.6%" };
+ { 16, 5756, "", "=q3=Sliverblade", "=ds=#h1#, #w4#", "", "0.01%" };
+ { 17, 8225, "", "=q3=Tainted Pierce", "=ds=#h1#, #w10#", "", "0.01%" };
+ { 18, 8226, "", "=q3=The Butcher", "=ds=#h1#, #w10#", "", "0.01%" };
+ { 19, 7786, "", "=q3=Headsplitter", "=ds=#h1#, #w1#", "", "0.01%" };
+ { 20, 7761, "", "=q3=Steelclaw Reaver", "=ds=#h1#, #w1#", "", "0.01%" };
+ { 21, 7753, "", "=q3=Bloodspiller", "=ds=#h2#, #w1#", "", "0.01%" };
+ { 22, 7752, "", "=q3=Dreamslayer", "=ds=#h1#, #w6#", "", "0.01%" };
+ { 23, 7736, "", "=q3=Fight Club", "=ds=#h1#, #w6#", "", "0.00%" };
+ { 24, 7730, "", "=q3=Cobalt Crusher", "=ds=#h2#, #w6#", "", "0.01%" };
+ { 25, 7758, "", "=q3=Ruthless Shiv", "=ds=#w7#", "", "0.00%" };
+ { 26, 7757, "", "=q3=Windweaver Staff", "=ds=#w9#", "", "0.01%" };
+ { 27, 7787, "", "=q3=Resplendent Guardian", "=ds=#w8#", "", "0.01%" };
+ { 28, 7729, "", "=q3=Chesterfall Musket", "=ds=#w5#", "", "0.01%" };
+ };
+};
+-------------------
+--- Scholomance ---
+-------------------
+
+AtlasLoot_Data["Scholomance"] = {
+ Name = BabbleZone["Scholomance"];
+ Type = "ClassicDungeonExt";
+ Loadfirst = 3;
+ Map = "Scholomance";
+ {
+ Name = AL["Quest Item"];
+ { 1, 13873, "", "=q1=Viewing Room Key", "=ds=#e9#" };
+ { 3, 13471, "", "=q1=The Deed to Brill", "=ds=#m3#" };
+ { 4, 13448, "", "=q1=The Deed to Caer Darrow", "=ds=#m3#" };
+ { 5, 13450, "", "=q1=The Deed to Southshore", "=ds=#m3#" };
+ { 6, 13451, "", "=q1=The Deed to Tarren Mill", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Blood Steward of Kirtonos"];
+ { 1, 13523, "", "=q1=Blood of Innocents", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Kirtonos the Herald"];
+ { 1, 13956, "", "=q3=Clutch of Andros", "=ds=#s10#, #a1#", "", "15.31%" };
+ { 2, 13957, "", "=q3=Gargoyle Slashers", "=ds=#s9#, #a2#", "", "14.40%" };
+ { 3, 13969, "", "=q3=Loomguard Armbraces", "=ds=#s8#, #a3#", "", "16.25%" };
+ { 4, 13967, "", "=q3=Windreaver Greaves", "=ds=#s12#, #a3#", "", "14.87%" };
+ { 5, 13955, "", "=q3=Stoneform Shoulders", "=ds=#s3#, #a4#", "", "14.73%" };
+ { 6, 13960, "", "=q3=Heart of the Fiend", "=ds=#s2#", "", "16.36%" };
+ { 7, 14024, "", "=q3=Frightalon", "=ds=#h1#, #w4#", "", "15.55%" };
+ { 8, 13983, "", "=q3=Gravestone War Axe", "=ds=#h2#, #w1#", "", "12.78%" };
+ { 16, 16734, "", "=q3=Boots of Valor", "=ds=#s12#, #a4# (D1, #c9#)", "", "11.12%" };
+ };
+ {
+ Name = BabbleBoss["Jandice Barov"];
+ { 1, 18689, "", "=q3=Phantasmal Cloak", "=ds=#s4#", "", "7.52%" };
+ { 2, 14543, "", "=q3=Darkshade Gloves", "=ds=#s9#, #a1#", "", "0.26%" };
+ { 3, 14545, "", "=q3=Ghostloom Leggings", "=ds=#s11#, #a2#", "", "8.81%" };
+ { 4, 14548, "", "=q3=Royal Cap Spaulders", "=ds=#s3#, #a3#", "", "10.06%" };
+ { 5, 18690, "", "=q3=Wraithplate Leggings", "=ds=#s11#, #a4#", "", "8.59%" };
+ { 6, 14541, "", "=q3=Barovian Family Sword", "=ds=#h2#, #w10#", "", "8.27%" };
+ { 7, 22394, "", "=q3=Staff of Metanoia", "=ds=#w9#", "", "8.67%" };
+ { 9, 13725, "", "=q1=Krastinov's Bag of Horrors", "=ds=#m3#", "", "100%" };
+ { 10, 13523, "", "=q1=Blood of Innocents", "=ds=#m3#", "", "17.8%" };
+ { 16, 16701, "", "=q3=Dreadmist Mantle", "=ds=#s3#, #a1# (D1, #c8#)", "", "12.20%" };
+ };
+ {
+ Name = BabbleBoss["Rattlegore"];
+ { 1, 14538, "", "=q3=Deadwalker Mantle", "=ds=#s3#, #a1#", "", "11.32%" };
+ { 2, 14539, "", "=q3=Bone Ring Helm", "=ds=#s1#, #a2#", "", "10.89%" };
+ { 3, 18686, "", "=q3=Bone Golem Shoulders", "=ds=#s3#, #a3#", "", "9.04%" };
+ { 4, 14537, "", "=q3=Corpselight Greaves", "=ds=#s12#, #a4#", "", "10.22%" };
+ { 5, 14531, "", "=q3=Frightskull Shaft", "=ds=#h2#, #w6#", "", "9.55%" };
+ { 6, 14528, "", "=q3=Rattlecage Buckler", "=ds=#w8#", "", "9.16%" };
+ { 8, 13873, "", "=q1=Viewing Room Key", "=ds=#e9#", "", "100%" };
+ { 16, 16711, "", "=q3=Shadowcraft Boots", "=ds=#s12#, #a2# (D1, #c6#)", "", "14.32%" };
+ { 18, 18782, "", "=q3=Top Half of Advanced Armorsmithing: Volume II", "=ds=#m3#", "", "5.71%" };
+ { 19, 12726, "", "=q3=Plans: Enchanted Thorium Leggings", "=q1=#m4#: =ds=#p2# (300)" };
+ };
+ {
+ Name = BabbleBoss["Death Knight Darkreaver"];
+ { 1, 18760, "", "=q3=Necromantic Band", "=ds=#s13#", "", "24.75%" };
+ { 2, 18758, "", "=q3=Specter's Blade", "=ds=#h1#, #w4#", "", "15.72%" };
+ { 3, 18759, "", "=q3=Malicious Axe", "=ds=#h2#, #w1#", "", "24.75%" };
+ { 4, 18761, "", "=q3=Oblivion's Touch", "=ds=#w12#", "", "17.17%" };
+ { 6, 18749, "", "=q1=Charger's Lost Soul", "=ds=#m3#", "", "10.93%" };
+ };
+ {
+ Name = BabbleBoss["Vectus"];
+ { 1, 14577, "", "=q3=Skullsmoke Pants", "=ds=#s11#, #a1#", "", "5.24%" };
+ { 2, 18691, "", "=q3=Dark Advisor's Pendant", "=ds=#s2#", "", "6.16%" };
+ };
+ {
+ Name = BabbleBoss["Marduk Blackpool"];
+ { 1, 18692, "", "=q3=Death Knight Sabatons", "=ds=#s12#, #a4#", "", "6.29%" };
+ { 2, 14576, "", "=q3=Ebon Hilt of Marduk", "=ds=#h1#, #w10#", "", "6.55%" };
+ };
+ {
+ Name = BabbleBoss["Ras Frostwhisper"];
+ { 1, 13314, "", "=q4=Alanna's Embrace", "=ds=#s5#, #a1#", "", "1.07%" };
+ { 3, 14340, "", "=q3=Freezing Lich Robes", "=ds=#s5#, #a1#", "", "12.55%" };
+ { 4, 18693, "", "=q3=Shivery Handwraps", "=ds=#s9#, #a1#", "", "12.38%" };
+ { 5, 14503, "", "=q3=Death's Clutch", "=ds=#s3#, #a2#", "", "11.73%" };
+ { 6, 14502, "", "=q3=Frostbite Girdle", "=ds=#s10#, #a2#", "", "11.20%" };
+ { 7, 18694, "", "=q3=Shadowy Mail Greaves", "=ds=#s12#, #a3#", "", "14.63%" };
+ { 8, 14522, "", "=q3=Maelstrom Leggings", "=ds=#s11#, #a3#", "", "13.01%" };
+ { 9, 14525, "", "=q3=Boneclenched Gauntlets", "=ds=#s9#, #a4#", "", "11.45%" };
+ { 10, 18695, "", "=q3=Spellbound Tome", "=ds=#s15#", "", "10.86%" };
+ { 11, 13952, "", "=q3=Iceblade Hacker", "=ds=#h1#, #w1#", "", "9.74%" };
+ { 12, 14487, "", "=q3=Bonechill Hammer", "=ds=#h1#, #w6#", "", "11.92%" };
+ { 13, 18696, "", "=q3=Intricately Runed Shield", "=ds=#w8#", "", "13.04%" };
+ { 16, 16689, "", "=q3=Magister's Mantle", "=ds=#s3#, #a1# (D1, #c3#)", "", "11.93%" };
+ { 18, 13521, "", "=q2=Recipe: Flask of Supreme Power", "=ds=#p1# (300)", "", "2.92%" };
+ { 20, 13626, "", "=q1=Human Head of Ras Frostwhisper", "=ds=#m3#", "", "100%" };
+ { 21, 13986, "", "=q3=Crown of Caer Darrow", "=q1=#m4#: =ds=#s1#, #a1#" };
+ { 22, 13984, "", "=q3=Darrowspike", "=q1=#m4#: =ds=#h1#, #w4#" };
+ { 23, 13982, "", "=q3=Warblade of Caer Darrow", "=q1=#m4#: =ds=#h2#, #w10#" };
+ { 24, 14002, "", "=q3=Darrowshire Strongguard", "=q1=#m4#: =ds=#w8#" };
+ { 26, 0, "INV_Box_01", "=q6=#x12#", "" };
+ { 27, 12736, "", "=q1=Frostwhisper's Embalming Fluid", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Kormok"];
+ { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n22#" };
+ { 2, 22303, "", "=q3=Ironweave Pants", "=ds=#s11#, #a1#", "", "23.33%" };
+ { 3, 22326, "", "=q3=Amalgam's Band", "=ds=#s13#", "", "16.67%" };
+ { 4, 22331, "", "=q3=Band of the Steadfast Hero", "=ds=#s13#", "", "15.42%" };
+ { 5, 22332, "", "=q3=Blade of Necromancy", "=ds=#h1#, #w10#", "", "25.42%" };
+ { 6, 22333, "", "=q3=Hammer of Divine Might", "=ds=#h2#, #w6#", "", "12.50%" };
+ { 8, 21984, "", "=q1=Left Piece of Lord Valthalak's Amulet", "=ds=#m3#" };
+ { 9, 22046, "", "=q1=Right Piece of Lord Valthalak's Amulet", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Instructor Malicia"];
+ { 1, 16710, "", "=q3=Shadowcraft Bracers", "=ds=#s8#, #a2# (D1, #c6#)", "", "3.51%" };
+ { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "1.81%" };
+ { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "1.12%" };
+ { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "1.27%" };
+ { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "1.03%" };
+ { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "0.88%" };
+ { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "0.85%" };
+ { 9, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "1.51%" };
+ { 10, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "0.82%" };
+ { 11, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "0.60%" };
+ { 12, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "1.09%" };
+ { 13, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "1.00%" };
+ { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "0.67%" };
+ { 15, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.54%" };
+ { 16, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.09%" };
+ { 17, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.60%" };
+ { 18, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.42%" };
+ { 19, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.36%" };
+ { 20, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "0.45%" };
+ { 21, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "0.45%" };
+ { 22, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "0.67%" };
+ { 23, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "1.12%" };
+ { 24, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "0.57%" };
+ { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%" };
+ { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#" };
+ { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%" };
+ { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "1.39%" };
+ { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "0.91%" };
+ };
+ {
+ Name = BabbleBoss["Doctor Theolen Krastinov"];
+ { 1, 16684, "", "=q3=Magister's Gloves", "=ds=#s9#, #a1# (D1, #c3#)", "", "9.75%" };
+ { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "2.81%" };
+ { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "1.91%" };
+ { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "2.37%" };
+ { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "1.82%" };
+ { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "2.42%" };
+ { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "2.16%" };
+ { 9, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "3.14%" };
+ { 10, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "2.08%" };
+ { 11, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "1.93%" };
+ { 12, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "1.43%" };
+ { 13, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "1.82%" };
+ { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "1.91%" };
+ { 15, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.87%" };
+ { 16, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.53%" };
+ { 17, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.78%" };
+ { 18, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.42%" };
+ { 19, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.79%" };
+ { 20, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "1.61%" };
+ { 21, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "1.32%" };
+ { 22, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "1.52%" };
+ { 23, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "1.64%" };
+ { 24, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "1.75%" };
+ { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%" };
+ { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#" };
+ { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%" };
+ { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "2.54%" };
+ { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "3.21%" };
+ { 30, 13523, "", "=q1=Blood of Innocents", "=ds=#m3#", "", "25.7%" };
+ };
+ {
+ Name = BabbleBoss["Lorekeeper Polkelt"];
+ { 1, 16705, "", "=q3=Dreadmist Wraps", "=ds=#s9#, #a1# (D1, #c8#)", "", "14.54%" };
+ { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "0.53%" };
+ { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "0.67%" };
+ { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "0.55%" };
+ { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "0.47%" };
+ { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "0.57%" };
+ { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "0.89%" };
+ { 9, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "0.57%" };
+ { 10, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "0.65%" };
+ { 11, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "0.79%" };
+ { 12, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "0.83%" };
+ { 13, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "0.63%" };
+ { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "0.47%" };
+ { 15, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.26%" };
+ { 16, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.14%" };
+ { 17, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.45%" };
+ { 18, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.18%" };
+ { 19, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.30%" };
+ { 20, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "0.49%" };
+ { 21, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "0.32%" };
+ { 22, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "0.30%" };
+ { 23, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "0.30%" };
+ { 24, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "0.41%" };
+ { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%" };
+ { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#" };
+ { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%" };
+ { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "0.67%" };
+ { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "0.49%" };
+ };
+ {
+ Name = BabbleBoss["The Ravenian"];
+ { 1, 16716, "", "=q3=Wildheart Belt", "=ds=#s10#, #a2# (D1, #c1#)", "", "2.60%" };
+ { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "1.32%" };
+ { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "0.76%" };
+ { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "1.04%" };
+ { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "0.89%" };
+ { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "1.32%" };
+ { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "1.41%" };
+ { 9, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "0.95%" };
+ { 10, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "1.52%" };
+ { 11, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "0.82%" };
+ { 12, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "1.02%" };
+ { 13, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "0.95%" };
+ { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "0.93%" };
+ { 15, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.20%" };
+ { 16, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.33%" };
+ { 17, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.11%" };
+ { 18, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.09%" };
+ { 19, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.04%" };
+ { 20, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "1.06%" };
+ { 21, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "0.91%" };
+ { 22, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "0.69%" };
+ { 23, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "1.15%" };
+ { 24, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "0.89%" };
+ { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%" };
+ { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#" };
+ { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%" };
+ { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "1.52%" };
+ { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "1.74%" };
+ };
+ {
+ Name = BabbleBoss["Lord Alexei Barov"];
+ { 1, 16722, "", "=q3=Lightforge Bracers", "=ds=#s8#, #a4# (D1, #c4#)", "", "3.37%" };
+ { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "4.94%" };
+ { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "3.39%" };
+ { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "5.30%" };
+ { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "4.05%" };
+ { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "2.86%" };
+ { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "2.38%" };
+ { 9, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "4.79%" };
+ { 10, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "4.55%" };
+ { 11, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "2.08%" };
+ { 12, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "2.35%" };
+ { 13, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "2.83%" };
+ { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "2.38%" };
+ { 15, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "1.01%" };
+ { 16, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.83%" };
+ { 17, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.62%" };
+ { 18, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "1.13%" };
+ { 19, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "1.43%" };
+ { 20, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "1.49%" };
+ { 21, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "1.73%" };
+ { 22, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "1.61%" };
+ { 23, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "2.65%" };
+ { 24, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "2.20%" };
+ { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%" };
+ { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#" };
+ { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%" };
+ { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "4.67%" };
+ { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "4.70%" };
+ };
+ {
+ Name = BabbleBoss["Lady Illucia Barov"];
+ { 1, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "1.20%" };
+ { 2, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "1.07%" };
+ { 3, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "1.30%" };
+ { 4, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "1.17%" };
+ { 5, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "0.94%" };
+ { 6, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "0.78%" };
+ { 7, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "1.61%" };
+ { 8, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "0.94%" };
+ { 9, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "1.15%" };
+ { 10, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "1.12%" };
+ { 11, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "0.94%" };
+ { 12, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "0.70%" };
+ { 13, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.44%" };
+ { 14, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.34%" };
+ { 15, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.49%" };
+ { 16, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.42%" };
+ { 17, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.44%" };
+ { 18, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "0.75%" };
+ { 19, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "0.70%" };
+ { 20, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "0.60%" };
+ { 21, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "0.81%" };
+ { 22, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "0.83%" };
+ { 23, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%" };
+ { 24, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#" };
+ { 25, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%" };
+ { 26, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "1.35%" };
+ { 27, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "1.17%" };
+ };
+ {
+ Name = BabbleBoss["Darkmaster Gandling"];
+ { 1, 13937, "", "=q4=Headmaster's Charge", "=ds=#w9#", "", "1.11%" };
+ { 2, 14514, "", "=q4=Pattern: Robe of the Void", "=ds=#p8# (300) =q1=#m1# =ds=#c8#", "", "6.71%" };
+ { 3, 14153, "", "=q4=Robe of the Void", "=ds=#s5#, #a1# =q1=#m1# =ds=#c8#" };
+ { 4, 13944, "", "=q3=Tombstone Breastplate", "=ds=#s5#, #a2#", "", "8.96%" };
+ { 5, 13398, "", "=q3=Boots of the Shrieker", "=ds=#s12#, #a2#", "", "10.75%" };
+ { 7, 13950, "", "=q3=Detention Strap", "=ds=#s10#, #a3#", "", "0.24%" };
+ { 8, 13951, "", "=q3=Vigorsteel Vambraces", "=ds=#s8#, #a4#", "", "10.38%" };
+ { 9, 22433, "", "=q3=Don Mauricio's Band of Domination", "=ds=#s13#", "", "7.72%" };
+ { 10, 13964, "", "=q3=Witchblade", "=ds=#h3#, #w4#", "", "9.82%" };
+ { 11, 13953, "", "=q3=Silent Fang", "=ds=#h1#, #w10#", "", "9.68%" };
+ { 12, 13938, "", "=q3=Bonecreeper Stylus", "=ds=#w12#", "", "8.80% " };
+ { 16, 16698, "", "=q3=Dreadmist Mask", "=ds=#s1#, #a1# (D1, #c8#)", "", "8.78%" };
+ { 17, 16686, "", "=q3=Magister's Crown", "=ds=#s1#, #a1# (D1, #c3#)", "", "8.60%" };
+ { 18, 16693, "", "=q3=Devout Crown", "=ds=#s1#, #a1# (D1, #c5#)", "", "7.89%" };
+ { 19, 16707, "", "=q3=Shadowcraft Cap", "=ds=#s1#, #a2# (D1, #c6#)", "", "6.65%" };
+ { 20, 16720, "", "=q3=Wildheart Cowl", "=ds=#s1#, #a2# (D1, #c1#)", "", "7.09%" };
+ { 21, 16677, "", "=q3=Beaststalker's Cap", "=ds=#s1#, #a3# (D1, #c2#)", "", "7.00%" };
+ { 22, 16667, "", "=q3=Coif of Elements", "=ds=#s1#, #a3# (D1, #c7#)", "", "2.86%" };
+ { 23, 16731, "", "=q3=Helm of Valor", "=ds=#s1#, #a4# (D1, #c9#)", "", "6.54%" };
+ { 24, 16727, "", "=q3=Lightforge Helm", "=ds=#s1#, #a4# (D1, #c4#)", "", "5.32%" };
+ { 26, 19276, "", "=q3=Ace of Portals", "=ds=#e16#", "", "2.20%" };
+ { 28, 13501, "", "=q2=Recipe: Major Mana Potion", "=ds=#p1# (295)", "", "8.64%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 18697, "", "=q3=Coldstone Slippers", "=ds=#s12#, #a1#", "", "0.01%" };
+ { 2, 18698, "", "=q3=Tattered Leather Hood", "=ds=#s1#, #a2#", "", "0.01%" };
+ { 3, 18699, "", "=q3=Icy Tomb Spaulders", "=ds=#s3#, #a2#", "", "0.01%" };
+ { 4, 18700, "", "=q3=Malefic Bracers", "=ds=#s8#, #a2#", "", "0.01%" };
+ { 5, 14536, "", "=q3=Bonebrace Hauberk", "=ds=#s5#, #a3#", "", "0.01%" };
+ { 6, 18702, "", "=q3=Belt of the Ordained", "=ds=#s10#, #a4#", "", "0.01%" };
+ { 7, 18701, "", "=q3=Innervating Band", "=ds=#s13#", "", "0.01%" };
+ { 9, 16254, "", "=q3=Formula: Enchant Weapon - Lifestealing", "=ds=#p4# (300) =q1=#n66#", "", "0.93%" };
+ { 10, 16255, "", "=q2=Formula: Enchant 2H Weapon - Major Spirit", "=ds=#p4# (300) =q1=#n67#", "", "0.88%" };
+ { 11, 15773, "", "=q2=Pattern: Wicked Leather Armor", "=ds=#p7# (300) =q1=#n66#", "", "3.03%" };
+ { 12, 15776, "", "=q2=Pattern: Runic Leather Armor", "=ds=#p7# (300) =q1=#n68#", "", "1.62%" };
+ { 14, 12753, "", "=q2=Skin of Shadow", "=ds=#m3#" };
+ { 15, 13920, "", "=q1=Healthy Dragon Scale", "=ds=#m2#" };
+ { 16, 16705, "", "=q3=Dreadmist Wraps", "=ds=#s9#, #a1# (D1)", "", "0.03%" };
+ { 17, 16684, "", "=q3=Magister's Gloves", "=ds=#s9#, #a1# (D1)", "", "1.27%" };
+ { 18, 16685, "", "=q3=Magister's Belt", "=ds=#s8#, #a1# (D1)", "", "0.22%" };
+ { 19, 16710, "", "=q3=Shadowcraft Bracers", "=ds=#s8#, #a2# (D1)", "", "1.53%" };
+ { 20, 16716, "", "=q3=Wildheart Belt", "=ds=#s8#, #a2# (D1)", "", "1.84%" };
+ { 21, 16722, "", "=q3=Lightforge Bracers", "=ds=#s8#, #a4# (D1)", "", "2.72%" };
+ };
+};
+-----------------------
+--- Shadowfang Keep ---
+-----------------------
+
+AtlasLoot_Data["ShadowfangKeep"] = {
+ Name = BabbleZone["Shadowfang Keep"];
+ Map = "ShadowfangKeep";
+ {
+ Name = BabbleBoss["Deathsworn Captain"];
+ { 1, 6642, "", "=q3=Phantom Armor", "=ds=#s5#, #a3#", "", "30.49%" };
+ { 2, 6641, "", "=q3=Haunting Blade", "=ds=#h2#, #w10#", "", "58.60%" };
+ };
+ {
+ Name = AL["Rethilgore"];
+ { 1, 5254, "", "=q3=Rugged Spaulders", "=ds=#s3#, #a2#", "", "84.73%" };
+ };
+ {
+ Name = AL["Felsteed"];
+ { 1, 6341, "", "=q3=Eerie Stable Lantern", "=ds=#s15#", "", "5.48%" };
+ { 2, 932, "", "=q1=Fel Steed Saddlebags", "=ds=#m12# #e1#", "", "16.46%" };
+ };
+ {
+ Name = BabbleBoss["Razorclaw the Butcher"];
+ { 1, 6226, "", "=q3=Bloody Apron", "=ds=#s5#, #a1#", "", "39.47%" };
+ { 2, 6633, "", "=q3=Butcher's Slicer", "=ds=#h1#, #w10#", "", "39.53%" };
+ { 3, 1292, "", "=q3=Butcher's Cleaver", "=ds=#h1#, #w1#", "", "8.70%" };
+ };
+ {
+ Name = BabbleBoss["Baron Silverlaine"];
+ { 1, 6321, "", "=q3=Silverlaine's Family Seal", "=ds=#s13#", "", "18.91%" };
+ { 2, 6323, "", "=q3=Baron's Scepter", "=ds=#h1#, #w6#", "", "37.93%" };
+ };
+ {
+ Name = BabbleBoss["Commander Springvale"];
+ { 1, 3191, "", "=q3=Arced War Axe", "=ds=#h2#, #w1#", "", "31.73%" };
+ { 2, 6320, "", "=q3=Commander's Crest", "=ds=#w8#", "", "27.71%" };
+ };
+ {
+ Name = BabbleBoss["Odo the Blindwatcher"];
+ { 1, 6319, "", "=q3=Girdle of the Blindwatcher", "=ds=#s10#, #a2#", "", "57.15%" };
+ { 2, 6318, "", "=q3=Odo's Ley Staff", "=ds=#w9#", "", "29.97%" };
+ };
+ {
+ Name = BabbleBoss["Fenrus the Devourer"];
+ { 1, 6340, "", "=q3=Fenrus' Hide", "=ds=#s4#", "", "58.02%" };
+ { 2, 3230, "", "=q3=Black Wolf Bracers", "=ds=#s8#, #a2#", "", "14.76%" };
+ };
+ {
+ Name = BabbleBoss["Arugal's Voidwalker"];
+ { 1, 5943, "", "=q3=Rift Bracers", "=ds=#s8#, #a3#", "", "3%" };
+ };
+ {
+ Name = BabbleBoss["Wolf Master Nandos"];
+ { 1, 6314, "", "=q3=Wolfmaster Cape", "=ds=#s4#", "", "33.25%" };
+ { 2, 3748, "", "=q3=Feline Mantle", "=ds=#s3#, #a1#", "", "48.55%" };
+ };
+ {
+ Name = BabbleBoss["Archmage Arugal"];
+ { 1, 6324, "", "=q3=Robes of Arugal", "=ds=#s5#, #a1#", "", "30.50%" };
+ { 2, 6392, "", "=q3=Belt of Arugal", "=ds=#s10#, #a1#", "", "30.51%" };
+ { 3, 6220, "", "=q3=Meteor Shard", "=ds=#h1#, #w4#", "", "15.78%" };
+ { 4, 24224, "", "=q1=Crate of Bloodforged Ingots", "=ds=#m3#" };
+ { 5, 6895, "", "=q1=Jordan's Smithing Hammer", "=ds=#m3#" };
+ { 6, 6283, "", "=q1=The Book of Ur", "=ds=#m3#" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 2292, "", "=q3=Necrology Robes", "=ds=#s5#, #a1#", "", "0.01%" };
+ { 2, 1974, "", "=q3=Mindthrust Bracers", "=ds=#s8#, #a1#", "", "0.02%" };
+ { 3, 1489, "", "=q3=Gloomshroud Armor", "=ds=#s5#, #a2#", "", "0.01%" };
+ { 4, 1935, "", "=q3=Assassin's Blade", "=ds=#h1#, #w4#", "", "0.01%" };
+ { 5, 1482, "", "=q3=Shadowfang", "=ds=#h1#, #w10#", "", "0.01%" };
+ { 6, 2205, "", "=q3=Duskbringer", "=ds=#h2#, #w10#", "", "0.01%" };
+ { 7, 2807, "", "=q3=Guillotine Axe", "=ds=#h1#, #w1#", "", "0.01%" };
+ { 8, 1318, "", "=q3=Night Reaver", "=ds=#h2#, #w1#", "", "0.01%" };
+ { 9, 1483, "", "=q3=Face Smasher", "=ds=#h1#, #w6#", "", "0.02%" };
+ { 10, 3194, "", "=q3=Black Malice", "=ds=#h2#, #w6#", "", "0.02%" };
+ { 11, 1484, "", "=q3=Witching Stave", "=ds=#w9#", "", "0.01%" };
+ };
+};
+
+------------------
+--- Stratholme ---
+------------------
+
+AtlasLoot_Data["Stratholme"] = {
+ Name = BabbleZone["Stratholme"];
+ Type = "ClassicDungeonExt";
+ Map = "Stratholme";
+ {
+ Name = BabbleBoss["Skul"];
+ { 1, 13395, "", "=q3=Skul's Fingerbone Claws", "=ds=#s9#, #a2#", "", "36.52%" };
+ { 2, 13394, "", "=q3=Skul's Cold Embrace", "=ds=#s5#, #a4#", "", "24.16%" };
+ { 3, 13396, "", "=q3=Skul's Ghastly Touch", "=ds=#w12#", "", "16.85%" };
+ };
+ {
+ Name = "Mailbox Keys";
+ { 1, 13304, "", "=q1=Festival Lane Postbox Key", "=ds=#e9#", "", "45.19%" };
+ { 2, 13303, "", "=q1=Crusaders' Square Postbox Key", "=ds=#e9#", "", "43.46%" };
+ { 3, 13307, "", "=q1=Fras Siabi's Postbox Key", "=ds=#e9#", "", "42.88%" };
+ { 4, 13305, "", "=q1=Elders' Square Postbox Key", "=ds=#e9#", "", "36.87%" };
+ { 5, 13302, "", "=q1=Market Row Postbox Key", "=ds=#e9#", "", "35.58%" };
+ { 6, 13306, "", "=q1=King's Square Postbox Key", "=ds=#e9#", "", "37.69%" };
+ };
+ {
+ Name = BabbleBoss["Fras Siabi"];
+ { 1, 13172, "", "=q1=Siabi's Premium Tobacco", "=ds=#m3#", "", "100%" };
+ { 2, 13171, "", "=q2=Smokey's Lighter", "=q1=#m4#: =ds=#s14#" };
+ };
+ {
+ Name = "Atiesh ";
+ { 1, 22736, "", "=q5=Andonisus, Reaper of Souls", "=q1=#m26#: =ds=#h3#, #w10#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Hearthsinger Forresten"];
+ { 1, 13378, "", "=q3=Songbird Blouse", "=ds=#s5#, #a2#", "", "15.31%" };
+ { 2, 13383, "", "=q3=Woollies of the Prancing Minstrel", "=ds=#s11#, #a3#", "", "" };
+ { 3, 13384, "", "=q3=Rainbow Girdle", "=ds=#s10#, #a4#", "", "19.21%" };
+ { 4, 13379, "", "=q3=Piccolo of the Flaming Fire", "=ds=#s14#", "", "15.13%" };
+ { 16, 16682, "", "=q3=Magister's Boots", "=ds=#s12#, #a1# (D1, #c3#)", "", "10.86%" };
+ };
+ {
+ Name = BabbleBoss["The Unforgiven"];
+ { 1, 13409, "", "=q3=Tearfall Bracers", "=ds=#s8#, #a1#", "", "14.62%" };
+ { 2, 13404, "", "=q3=Mask of the Unforgiven", "=ds=#s1#, #a2#", "", "14.96%" };
+ { 3, 13405, "", "=q3=Wailing Nightbane Pauldrons", "=ds=#s3#, #a4#", "", "12.10%" };
+ { 4, 13408, "", "=q3=Soul Breaker", "=ds=#h1#, #w1#", "", "19.33%" };
+ { 16, 16717, "", "=q3=Wildheart Gloves", "=ds=#s9#, #a2# (D1, #c1#)", "", "12.61%" };
+ };
+ {
+ Name = BabbleBoss["Timmy the Cruel"];
+ { 1, 13403, "", "=q3=Grimgore Noose", "=ds=#s10#, #a1#", "", "16.48%" };
+ { 2, 13402, "", "=q3=Timmy's Galoshes", "=ds=#s12#, #a3#", "", "16.74%" };
+ { 3, 13400, "", "=q3=Vambraces of the Sadist", "=ds=#s8#, #a4#", "", "14.02%" };
+ { 4, 13401, "", "=q3=The Cruel Hand of Timmy", "=ds=#h1#, #w6#", "", "16.87%" };
+ { 16, 16724, "", "=q3=Lightforge Gauntlets", "=ds=#s9#, #a4# (D1, #c4#)", "", "10.42%" };
+ };
+ {
+ Name = AL["Malor's Strongbox"];
+ { 1, 0, "INV_Box_01", "=q6=#x13#", "" };
+ { 2, 12845, "", "=q1=Medallion of Faith", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Crimson Hammersmith"] .. " (" .. AL["Summon"] .. ")";
+ { 1, 18781, "", "=q3=Bottom Half of Advanced Armorsmithing: Volume II", "=ds=#m3#", "", "41.6%" };
+ { 2, 12726, "", "=q3=Plans: Enchanted Thorium Leggings", "=q1=#m4#: =ds=#p2# (300)" };
+ { 4, 13351, "", "=q1=Crimson Hammersmith's Apron", "=ds=#m3#", "", "100%" };
+ { 5, 12824, "", "=q2=Plans: Enchanted Battlehammer", "=q1=#m4#: =ds=#p2# (280)" };
+ };
+ {
+ Name = "Plans: Serenity";
+ { 1, 12827, "", "=q2=Plans: Serenity", "=ds=#p2# (285)", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Cannon Master Willey"];
+ { 1, 22405, "", "=q3=Mantle of the Scarlet Crusade", "=ds=#s3#, #a1#", "", "16.03%" };
+ { 2, 22407, "", "=q3=Helm of the New Moon", "=ds=#s1#, #a2#", "", "13.61%" };
+ { 3, 18721, "", "=q3=Barrage Girdle", "=ds=#s10#, #a3#", "", "12.39%" };
+ { 4, 13381, "", "=q3=Master Cannoneer Boots", "=ds=#s12#, #a4#", "", "12.86%" };
+ { 5, 22403, "", "=q3=Diana's Pearl Necklace", "=ds=#s2#", "", "14.27%" };
+ { 6, 13382, "", "=q3=Cannonball Runner", "=ds=#s14#", "", "12.28%" };
+ { 7, 22404, "", "=q3=Willey's Back Scratcher", "=ds=#h3#, #w13#", "", "6.26%" };
+ { 8, 22406, "", "=q3=Redemption", "=ds=#w9#", "", "7.04%" };
+ { 9, 13380, "", "=q3=Willey's Portable Howitzer", "=ds=#w5#", "", "10.71%" };
+ { 10, 13377, "", "=q3=Miniature Cannon Balls", "=ds=#w18#", "", "66.61%" };
+ { 16, 16708, "", "=q3=Shadowcraft Spaulders", "=ds=#s3#, #a2# (D1, #c6#)", "", "10.68%" };
+ { 18, 12839, "", "=q3=Plans: Heartseeker", "=ds=#p2# (300)", "", "4.98%" };
+ { 19, 12783, "", "=q3=Heartseeker", "=ds=#h1#, #w4#" };
+ };
+ {
+ Name = BabbleBoss["Archivist Galford"];
+ { 1, 13386, "", "=q3=Archivist Cape", "=ds=#s4#", "", "18.45%" };
+ { 2, 18716, "", "=q3=Ash Covered Boots", "=ds=#s12#, #a2#", "", "16.30%" };
+ { 3, 13387, "", "=q3=Foresight Girdle", "=ds=#s10#, #a3#", "", "18.24%" };
+ { 4, 13385, "", "=q3=Tome of Knowledge", "=ds=#s15#", "", "9.87%" };
+ { 5, 22897, "", "=q3=Tome of Conjure Food VII", "=ds=#e10# =q1=#m1# =ds=#c3#", "", "" };
+ { 7, 12811, "", "=q2=Righteous Orb", "=ds=#e8#", "", "61.3%" };
+ { 9, 0, "INV_Box_01", "=q6=#x11#", "" };
+ { 10, 14679, "", "=q1=Of Love and Family", "=ds=#m3#" };
+ { 16, 16692, "", "=q3=Devout Gloves", "=ds=#s9#, #a1# (D1, #c5#)", "", "" };
+ };
+ {
+ Name = BabbleBoss["Balnazzar"];
+ { 1, 13353, "", "=q4=Book of the Dead", "=ds=#s15#", "", "1.37%" };
+ { 2, 14512, "", "=q4=Pattern: Truefaith Vestments", "=ds=#p8# (300)", "", "3.02%" };
+ { 3, 14154, "", "=q4=Truefaith Vestments", "=ds=#s5#, #a1# =q1=#m1# =ds=#c5#" };
+ { 5, 18720, "", "=q3=Shroud of the Nathrezim", "=ds=#s3#, #a1#", "", "10.54%" };
+ { 6, 13369, "", "=q3=Fire Striders", "=ds=#s12#, #a1#", "", "14.84%" };
+ { 7, 13358, "", "=q3=Wyrmtongue Shoulders", "=ds=#s3#, #a2#", "", "11.58%" };
+ { 8, 13359, "", "=q3=Crown of Tyranny", "=ds=#s1#, #a3#", "", "13.94%" };
+ { 9, 18718, "", "=q3=Grand Crusader's Helm", "=ds=#s1#, #a4#", "", "10.16%" };
+ { 10, 12103, "", "=q3=Star of Mystaria", "=ds=#s2#", "", "12.48%" };
+ { 11, 13360, "", "=q3=Gift of the Elven Magi", "=ds=#h1#, #w4#", "", "13.66%" };
+ { 12, 13348, "", "=q3=Demonshear", "=ds=#h2#, #w10#", "", "13.94%" };
+ { 13, 18717, "", "=q3=Hammer of the Grand Crusader", "=ds=#h2#, #w6#", "", "11.91%" };
+ { 16, 16725, "", "=q3=Lightforge Boots", "=ds=#s12#, #a4# (D1, #c4#)", "", "11.11%" };
+ { 18, 13520, "", "=q2=Recipe: Flask of Distilled Wisdom", "=ds=#p1# (300)", "", "1.94%" };
+ { 20, 13250, "", "=q1=Head of Balnazzar", "=ds=#m2#" };
+ };
+ {
+ Name = AL["Sothos and Jarien"];
+ { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n18#" };
+ { 2, 22301, "", "=q3=Ironweave Robe", "=ds=#s5#, #a1#", "", "19.00%" };
+ { 3, 22328, "", "=q3=Legplates of Vigilance", "=ds=#s11#, #a4#", "", "21.27%" };
+ { 4, 22327, "", "=q3=Amulet of the Redeemed", "=ds=#s2#", "", "14.03%" };
+ { 5, 22334, "", "=q3=Band of Mending", "=ds=#s13#", "", "17.19%" };
+ { 6, 22329, "", "=q3=Scepter of Interminable Focus", "=ds=#s15#", "", "28.51%" };
+ { 8, 21984, "", "=q1=Left Piece of Lord Valthalak's Amulet", "=ds=#m3#" };
+ { 9, 22046, "", "=q1=Right Piece of Lord Valthalak's Amulet", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Stonespine"];
+ { 1, 13397, "", "=q3=Stoneskin Gargoyle Cape", "=ds=#s4#", "", "23.44%" };
+ { 2, 13954, "", "=q3=Verdant Footpads", "=ds=#s12#, #a2#", "", "25.36%" };
+ { 3, 13399, "", "=q3=Gargoyle Shredder Talons", "=ds=#h4#, #w13#", "", "26.16%" };
+ };
+ {
+ Name = BabbleBoss["Baroness Anastari"];
+ { 1, 18730, "", "=q3=Shadowy Laced Handwraps", "=ds=#s9#, #a1#", "", "" };
+ { 2, 18728, "", "=q3=Anastari Heirloom", "=ds=#s2#", "", "11.92%" };
+ { 3, 13534, "", "=q3=Banshee Finger", "=ds=#w12#", "", "13.42%" };
+ { 4, 18729, "", "=q3=Screeching Bow", "=ds=#w2#", "", "15.59%" };
+ { 6, 13535, "", "=q2=Coldtouch Phantom Wraps", "=ds=#s5#, #a1#", "", "9.84%" };
+ { 7, 13537, "", "=q2=Chillhide Bracers", "=ds=#s8#, #a2#", "", "9.71%" };
+ { 8, 13538, "", "=q2=Windshrieker Pauldrons", "=ds=#s3#, #a3#", "", "9.75%" };
+ { 9, 13539, "", "=q2=Banshee's Touch", "=ds=#s9#, #a4#", "", "8.27%" };
+ { 10, 13514, "", "=q2=Wail of the Banshee", "=ds=#m8#", "", "7.73%" };
+ { 16, 16704, "", "=q3=Dreadmist Sandals", "=ds=#s12#, #a1# (D1, #c8#)", "", "13.16%" };
+ };
+ {
+ Name = BabbleBoss["Black Guard Swordsmith"] .. " (" .. AL["Summon"] .. ")";
+ { 1, 18783, "", "=q3=Bottom Half of Advanced Armorsmithing: Volume III", "=ds=#m3#", "", "23.5%" };
+ { 2, 12725, "", "=q3=Plans: Enchanted Thorium Helm", "=q1=#m4#: =ds=#p2# (300)" };
+ { 4, 13350, "", "=q1=Insignia of the Black Guard", "=ds=#m3#", "", "100%" };
+ { 5, 12825, "", "=q2=Plans: Blazing Rapier", "=q1=#m4#: =ds=#p2# (280)" };
+ };
+ {
+ Name = "Plans: Corruption";
+ { 1, 12830, "", "=q1=Plans: Corruption", "=ds=#p2# (290)", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Nerub'enkan"];
+ { 1, 18740, "", "=q3=Thuzadin Sash", "=ds=#s10#, #a1#", "", "14.72%" };
+ { 2, 18739, "", "=q3=Chitinous Plate Legguards", "=ds=#s11#, #a4#", "", "12.19%" };
+ { 3, 13529, "", "=q3=Husk of Nerub'enkan", "=ds=#w8#", "", "12.62%" };
+ { 4, 18738, "", "=q3=Carapace Spine Crossbow", "=ds=#w3#", "", "14.17%" };
+ { 6, 13530, "", "=q2=Fangdrip Runners", "=ds=#s12#, #a1#", "", "8.49%" };
+ { 7, 13531, "", "=q2=Crypt Stalker Leggings", "=ds=#s11#, #a2#", "", "10.17%" };
+ { 8, 13532, "", "=q2=Darkspinner Claws", "=ds=#s9#, #a3#", "", "9.69%" };
+ { 9, 13533, "", "=q2=Acid-etched Pauldrons", "=ds=#s3#, #a4#", "", "8.11%" };
+ { 10, 13508, "", "=q2=Eye of Arachnida", "=ds=#m8#", "", "7.39%" };
+ { 16, 16675, "", "=q3=Beaststalker's Boots", "=ds=#s12#, #a3# (D1, #c2#)", "", "13.62%" };
+ };
+ {
+ Name = BabbleBoss["Maleki the Pallid"];
+ { 1, 18734, "", "=q3=Pale Moon Cloak", "=ds=#s4#", "", "13.42%" };
+ { 2, 18735, "", "=q3=Maleki's Footwraps", "=ds=#s12#, #a1#", "", "15.03%" };
+ { 3, 13524, "", "=q3=Skull of Burning Shadows", "=ds=#s15#", "", "13.42%" };
+ { 4, 18737, "", "=q3=Bone Slicing Hatchet", "=ds=#h1#, #w1#", "", "14.23%" };
+ { 6, 13525, "", "=q2=Darkbind Fingers", "=ds=#s9#, #a1#", "", "9.15%" };
+ { 7, 13526, "", "=q2=Flamescarred Girdle", "=ds=#s10#, #a2#", "", "9.57%" };
+ { 8, 13528, "", "=q2=Twilight Void Bracers", "=ds=#s8#, #a3#", "", "9.49%" };
+ { 9, 13527, "", "=q2=Lavawalker Greaves", "=ds=#s12#, #a4#", "", "9.39%" };
+ { 10, 13509, "", "=q2=Clutch of Foresight", "=ds=#m8#", "", "6.95%" };
+ { 16, 16691, "", "=q3=Devout Sandals", "=ds=#s12#, #a1# (D1, #c5#)", "", "13.64%" };
+ { 18, 12833, "", "=q3=Plans: Hammer of the Titans", "=ds=#p2# (300)", "", "5.86%" };
+ { 19, 12796, "", "=q3=Hammer of the Titans", "=ds=#h2#, #w6#" };
+ };
+ {
+ Name = BabbleBoss["Magistrate Barthilas"];
+ { 1, 13376, "", "=q3=Royal Tribunal Cloak", "=ds=#s4#", "", "12.44%" };
+ { 2, 18727, "", "=q3=Crimson Felt Hat", "=ds=#s1#, #a1#", "", "13.82%" };
+ { 3, 18726, "", "=q3=Magistrate's Cuffs", "=ds=#s8#, #a2#", "", "12.87%" };
+ { 4, 18722, "", "=q3=Death Grips", "=ds=#s9#, #a4#", "", "15.34%" };
+ { 5, 23198, "", "=q3=Idol of Brutality", "=ds=#s16#, #w14#", "", "2.37%" };
+ { 6, 18725, "", "=q3=Peacemaker", "=ds=#w7#", "", "14.22%" };
+ { 8, 12382, "", "=q2=Key to the City", "=ds=#e9#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Ramstein the Gorger"];
+ { 1, 13374, "", "=q3=Soulstealer Mantle", "=ds=#s3#, #a1#", "", "9.87%" };
+ { 2, 18723, "", "=q3=Animated Chain Necklace", "=ds=#s2#", "", "" };
+ { 3, 13373, "", "=q3=Band of Flesh", "=ds=#s13#", "", "8.15%" };
+ { 4, 13515, "", "=q3=Ramstein's Lightning Bolts", "=ds=#s14#", "", "8.09%" };
+ { 5, 13372, "", "=q3=Slavedriver's Cane", "=ds=#w9#", "", "8.63%" };
+ { 6, 13375, "", "=q3=Crest of Retribution", "=ds=#w8#", "", "9.17%" };
+ { 16, 16737, "", "=q3=Gauntlets of Valor", "=ds=#s9#, #a4# (D1, #c9#)", "", "9.58%" };
+ };
+ {
+ Name = BabbleBoss["Baron Rivendare"];
+ { 1, 13505, "", "=q4=Runeblade of Baron Rivendare", "=ds=#h2#, #w10#", "", "1%" }; ---drop rate according to blue
+ { 2, 13335, "", "=q4=Deathcharger's Reins", "=ds=#e12#", "", "0.10%" };
+ { 4, 13340, "", "=q3=Cape of the Black Baron", "=ds=#s4#", "", "8.75%" };
+ { 5, 22412, "", "=q3=Thuzadin Mantle", "=ds=#s3#, #a1#", "", "4.16%" };
+ { 6, 13346, "", "=q3=Robes of the Exalted", "=ds=#s5#, #a1#", "", "11.51%" };
+ { 7, 22409, "", "=q3=Tunic of the Crescent Moon", "=ds=#s5#, #a2#", "", "4.59%" };
+ { 8, 13344, "", "=q3=Dracorian Gauntlets", "=ds=#s9#, #a3#", "", "10.85%" };
+ { 9, 22410, "", "=q3=Gauntlets of Deftness", "=ds=#s9#, #a3#", "", "4.98%" };
+ { 10, 22411, "", "=q3=Helm of the Executioner", "=ds=#s1#, #a4#", "", "3.80%" };
+ { 11, 13345, "", "=q3=Seal of Rivendare", "=ds=#s13#", "", "9.50%" };
+ { 12, 13368, "", "=q3=Bonescraper", "=ds=#h1#, #w4#", "", "4.32%" };
+ { 13, 13361, "", "=q3=Skullforge Reaver", "=ds=#h1#, #w10#", "", "4.25%" };
+ { 14, 13349, "", "=q3=Scepter of the Unholy", "=ds=#h1#, #w6#", "", "9.30%" };
+ { 15, 22408, "", "=q3=Ritssyn's Wand of Bad Mojo", "=ds=#w12#", "", "3.39%" };
+ { 16, 16687, "", "=q3=Magister's Leggings", "=ds=#s11#, #a1# (D1, #c3#)", "", "6.79%" };
+ { 17, 16699, "", "=q3=Dreadmist Leggings", "=ds=#s11#, #a1# (D1, #c8#)", "", "7.31%" };
+ { 18, 16694, "", "=q3=Devout Skirt", "=ds=#s11#, #a1# (D1, #c5#)", "", "7.42%" };
+ { 19, 16709, "", "=q3=Shadowcraft Pants", "=ds=#s11#, #a2# (D1, #c6#)", "", "7.76%" };
+ { 20, 16719, "", "=q3=Wildheart Kilt", "=ds=#s11#, #a2# (D1, #c1#)", "", "6.58%" };
+ { 21, 16668, "", "=q3=Kilt of Elements", "=ds=#s11#, #a3# (D1, #c7#)", "", "3.02%" };
+ { 22, 16678, "", "=q3=Beaststalker's Pants", "=ds=#s11#, #a3# (D1, #c2#)", "", "6.16%" };
+ { 23, 16732, "", "=q3=Legplates of Valor", "=ds=#s11#, #a4# (D1, #c9#)", "", "5.74%" };
+ { 24, 16728, "", "=q3=Lightforge Legplates", "=ds=#s11#, #a4# (D1, #c4#)", "", "4.20%" };
+ { 26, 13251, "", "=q1=Head of Baron Rivendare", "=ds=#m3#", "", "100%" };
+ { 27, 13246, "", "=q3=Argent Avenger", "=q1=#m4#: =ds=#h1#, #w10#" };
+ { 28, 13249, "", "=q3=Argent Crusader", "=q1=#m4#: =ds=#w9#" };
+ { 29, 13243, "", "=q3=Argent Defender", "=q1=#m4#: =ds=#w8#" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 18743, "", "=q3=Gracious Cape", "=ds=#s4#", "", "0.01%" };
+ { 2, 17061, "", "=q3=Juno's Shadow", "=ds=#s4#", "", "0.01%" };
+ { 3, 18745, "", "=q3=Sacred Cloth Leggings", "=ds=#s11#, #a1#", "", "0.01%" };
+ { 4, 18744, "", "=q3=Plaguebat Fur Gloves", "=ds=#s9#, #a2#", "", "0.00%" };
+ { 5, 18736, "", "=q3=Plaguehound Leggings", "=ds=#s11#, #a2#", "", "0.00%" };
+ { 6, 18742, "", "=q3=Stratholme Militia Shoulderguard", "=ds=#s3#, #a3#", "", "0.00%" };
+ { 7, 18741, "", "=q3=Morlune's Bracer", "=ds=#s8#, #a4#", "", "0.01%" };
+ { 9, 16249, "", "=q2=Formula: Enchant 2H Weapon - Major Intellect", "=ds=#p4# (300) =q1=#n60#", "", "1.19%" };
+ { 10, 16248, "", "=q2=Formula: Enchant Weapon - Unholy", "=ds=#p4# (295) =q1=#n61#", "", "0.36%" };
+ { 11, 18658, "", "=q2=Schematic: Ultra-Flash Shadow Reflector", "=ds=#p5# (300) =q1=#n62#", "", "1.82%" };
+ { 12, 16052, "", "=q2=Schematic: Voice Amplification Modulator", "=ds=#p5# (290) =q1=#n62#", "", "1.99%" };
+ { 13, 15777, "", "=q2=Pattern: Runic Leather Shoulders", "=ds=#p7# (300) =q1=#n63#", "", "1.00%" };
+ { 14, 15768, "", "=q2=Pattern: Wicked Leather Belt", "=ds=#p7# (300) =q1=#n64#", "", "0.85%" };
+ { 15, 14495, "", "=q2=Pattern: Ghostweave Pants", "=ds=#p8# (290) =q1=#n65#", "", "" };
+ { 16, 16697, "", "=q3=Devout Bracers", "=ds=#s8#, #a1# (D1)", "", "1.15%" };
+ { 17, 16702, "", "=q3=Dreadmist Belt", "=ds=#s10#, #a1# (D1)", "", "0.90%" };
+ { 18, 16685, "", "=q3=Magister's Belt", "=ds=#s10#, #a1# (D1)", "", "0.80%" };
+ { 19, 16714, "", "=q3=Wildheart Bracers", "=ds=#s8#, #a2# (D1)", "", "1.49%" };
+ { 20, 16681, "", "=q3=Beaststalker's Bindings", "=ds=#s8#, #a3# (D1)", "", "1.64%" };
+ { 21, 16671, "", "=q3=Bindings of Elements", "=ds=#s8#, #a3# (D1)", "", "1.90%" };
+ { 22, 16736, "", "=q3=Belt of Valor", "=ds=#s10#, #a4# (D1)", "", "2.02%" };
+ { 23, 16723, "", "=q3=Lightforge Belt", "=ds=#s10#, #a4# (D1)", "", "1.83%" };
+ { 25, 12811, "", "=q2=Righteous Orb", "=ds=#e8#", "", "5.09%" };
+ { 26, 12735, "", "=q2=Frayed Abomination Stitching", "=ds=#m3#", "", "17.5%" };
+ };
+};
+---------------------
+--- The Deadmines ---
+---------------------
+
+AtlasLoot_Data["TheDeadmines"] = {
+ Name = BabbleZone["The Deadmines"];
+ Map = "TheDeadmines";
+ {
+ Name = BabbleBoss["Marisa du'Paige"];
+ { 1, 3019, "", "=q2=Noble's Robe", "=ds=#s5#, #a1#", "", "22.4%" };
+ { 2, 4660, "", "=q2=Walking Boots", "=ds=#s12#, #a1#", "", "71.4%" };
+ };
+ {
+ Name = BabbleBoss["Brainwashed Noble"];
+ { 1, 5967, "", "=q2=Girdle of Nobility", "=ds=#s10#, #a1#", "", "70.4%" };
+ { 2, 3902, "", "=q2=Staff of Nobles", "=ds=#w9#", "", "23.0%" };
+ };
+ {
+ Name = BabbleBoss["Foreman Thistlenettle"];
+ { 1, 1875, "", "=q1=Thistlenettle's Badge", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Rhahk'Zor"];
+ { 1, 872, "", "=q3=Rockslicer", "=ds=#h2#, #w1#", "", "3.13%" };
+ { 2, 5187, "", "=q3=Rhahk'Zor's Hammer", "=ds=#h2#, #w6#", "", "77.98%" };
+ };
+ {
+ Name = BabbleBoss["Miner Johnson"];
+ { 1, 5444, "", "=q3=Miner's Cape", "=ds=#s4#", "", "54.88%" };
+ { 2, 5443, "", "=q3=Gold-plated Buckler", "=ds=#w8#", "", "37.21%" };
+ };
+ {
+ Name = BabbleBoss["Sneed's Shredder"];
+ { 1, 2169, "", "=q3=Buzzer Blade", "=ds=#h1#, #w4#", "", "70.78%" };
+ { 2, 1937, "", "=q3=Buzz Saw", "=ds=#h1#, #w10#", "", "8.75%" };
+ { 3, 7365, "", "=q1=Gnoam Sprecklesprocket", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Sneed"];
+ { 1, 5195, "", "=q3=Gold-flecked Gloves", "=ds=#s9#, #a1#", "", "62.38%" };
+ { 2, 5194, "", "=q3=Taskmaster Axe", "=ds=#h2#, #w1#", "", "26.23%" };
+ { 3, 5397, "", "=q1=Defias Gunpowder", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Gilnid"];
+ { 1, 5199, "", "=q3=Smelting Pants", "=ds=#s11#, #a2#", "", "51.37%" };
+ { 2, 1156, "", "=q3=Lavishly Jeweled Ring", "=ds=#s13#", "", "35.02%" };
+ { 3, 0, "INV_Box_01", "=q6=#n7#", "" };
+ { 4, 10403, "", "=q3=Blackened Defias Belt", "=ds=#s10#, #a2#", "", "23.26%" };
+ { 5, 5200, "", "=q3=Impaling Harpoon", "=ds=#w7#", "", "25.39%" };
+ { 6, 5201, "", "=q3=Emberstone Staff", "=ds=#w9#", "", "34.10%" };
+ };
+ {
+ Name = BabbleBoss["Mr. Smite"];
+ { 1, 5192, "", "=q3=Thief's Blade", "=ds=#h1#, #w10#", "", "34.96%" };
+ { 2, 5196, "", "=q3=Smite's Reaver", "=ds=#h1#, #w1#", "", "33.95%" };
+ { 3, 7230, "", "=q3=Smite's Mighty Hammer", "=ds=#h2#, #w6#", "", "17.27%" };
+ };
+ {
+ Name = BabbleBoss["Cookie"];
+ { 1, 5197, "", "=q3=Cookie's Tenderizer", "=ds=#h1#, #w6#", "", "49.62%" };
+ { 2, 5198, "", "=q3=Cookie's Stirring Rod", "=ds=#w12#", "", "30.90%" };
+ { 3, 8490, "", "=q1=Cat Carrier (Siamese)", "=ds=#e13#", "", "12.38%" };
+ };
+ {
+ Name = BabbleBoss["Edwin VanCleef"];
+ { 1, 5193, "", "=q3=Cape of the Brotherhood", "=ds=#s4#", "", "21.25%" };
+ { 2, 5202, "", "=q3=Corsair's Overshirt", "=ds=#s5#, #a1#", "", "22.86%" };
+ { 3, 10399, "", "=q3=Blackened Defias Armor", "=ds=#s5#, #a2#", "", "14.77%" };
+ { 4, 5191, "", "=q3=Cruel Barb", "=ds=#h1#, #w10#", "", "14.17%" };
+ { 5, 2874, "", "=q1=An Unsent Letter", "=ds=#m2#" };
+ { 6, 3637, "", "=q1=Head of VanCleef", "=ds=#m3#" };
+ };
+};
+
+--------------------
+--- The Stockade ---
+--------------------
+
+AtlasLoot_Data["TheStockade"] = {
+ Name = BabbleZone["The Stockade"];
+ Map = "TheStockade";
+ {
+ Name = BabbleBoss["Targorr the Dread"];
+ { 1, 3630, "", "=q1=Head of Targorr", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Kam Deepfury"];
+ { 1, 2280, "", "=q3=Kam's Walking Stick", "=ds=#w9#", "", "0.62%" };
+ { 2, 3640, "", "=q1=Head of Deepfury", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Bazil Thredd"];
+ { 1, 2926, "", "=q1=Head of Bazil Thredd", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Dextren Ward"];
+ { 1, 3628, "", "=q1=Hand of Dextren Ward", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Bruegal Ironknuckle"];
+ { 1, 3228, "", "=q3=Jimmied Handcuffs", "=ds=#s8#, #a3#", "", "54.73%" };
+ { 2, 2942, "", "=q3=Iron Knuckles", "=ds=#h1#, #w13#", "", "18.18%" };
+ { 3, 2941, "", "=q3=Prison Shank", "=ds=#h1#, #w4#", "", "16.05%" };
+ };
+ {
+ Name = "Quest Item's";
+ { 1, 2909, "", "=q1=Red Wool Bandana", "=ds=#m3#" };
+ };
+};
+
+-------------------------
+--- The Sunken Temple ---
+-------------------------
+
+AtlasLoot_Data["SunkenTemple"] = {
+ Name = "Sunken Temple";
+ Map = "TheSunkenTemple";
+ {
+ Name = "Spawn of Hakkar";
+ { 1, 10802, "", "=q3=Wingveil Cloak", "=ds=#s4#", "", "25.6%" };
+ { 2, 10801, "", "=q3=Slitherscale Boots", "=ds=#s12#, #a2#", "", "42.33%" };
+ };
+ {
+ Name = "Troll Minibosses";
+ { 1, 10787, "", "=q3=Atal'ai Gloves", "=ds=#s9#, #a1# =q2=#m16#", "", "5.25%" };
+ { 2, 10783, "", "=q3=Atal'ai Spaulders", "=ds=#s3#, #a2# =q2=#m16#", "", "3.12%" };
+ { 3, 10785, "", "=q3=Atal'ai Leggings", "=ds=#s11#, #a2# =q2=#m16#", "", "4.42%" };
+ { 4, 10784, "", "=q3=Atal'ai Breastplate", "=ds=#s5#, #a3# =q2=#m16#", "", "2.12%" };
+ { 5, 10786, "", "=q3=Atal'ai Boots", "=ds=#s12#, #a3# =q2=#m16#", "", "6.15%" };
+ { 6, 10788, "", "=q3=Atal'ai Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "7.17%" };
+ { 8, 20606, "", "=q1=Amber Voodoo Feather", "=ds=#m3# =q2=#st1#, #st6#" };
+ { 9, 20607, "", "=q1=Blue Voodoo Feather", "=ds=#m3# =q2=#st2#, #st4#" };
+ { 10, 20608, "", "=q1=Green Voodoo Feather", "=ds=#m3# =q2=#st3#, #st5#" };
+ };
+ {
+ Name = BabbleBoss["Atal'alarion"];
+ { 1, 10800, "", "=q3=Darkwater Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "31.73%" };
+ { 2, 10798, "", "=q3=Atal'alarion's Tusk Ring", "=ds=#s10#, #a4#", "", "30.53%" };
+ { 3, 10799, "", "=q3=Headspike", "=ds=#w7#", "", "17.98%" };
+ };
+ {
+ Name = BabbleBoss["Dreamscythe"];
+ { 1, 12465, "", "=q3=Nightfall Drape", "=ds=#s4#", "", "4.42%" };
+ { 2, 12466, "", "=q3=Dawnspire Cord", "=ds=#s10#, #a1#", "", "4.16%" };
+ { 3, 12464, "", "=q3=Bloodfire Talons", "=ds=#s9#, #a2#", "", "4.99%" };
+ { 4, 10795, "", "=q3=Drakeclaw Band", "=ds=#s13# =q2=#m16#", "", "3.68%" };
+ { 5, 10796, "", "=q3=Drakestone", "=ds=#s15#", "", "4.26%" };
+ { 6, 10797, "", "=q3=Firebreather", "=ds=#h1#, #w10#", "", "4.57%" };
+ { 7, 12463, "", "=q3=Drakefang Butcher", "=ds=#h2#, #w10#", "", "4.40%" };
+ { 8, 12243, "", "=q3=Smoldering Claw", "=ds=#w7#", "", "4.50%" };
+ };
+ {
+ Name = BabbleBoss["Weaver"];
+ { 1, 12465, "", "=q3=Nightfall Drape", "=ds=#s4#", "", "4.20%" };
+ { 2, 12466, "", "=q3=Dawnspire Cord", "=ds=#s10#, #a1#", "", "3.89%" };
+ { 3, 12464, "", "=q3=Bloodfire Talons", "=ds=#s9#, #a2#", "", "4.10%" };
+ { 4, 10795, "", "=q3=Drakeclaw Band", "=ds=#s13# =q2=#m16#", "", "4.46%" };
+ { 5, 10796, "", "=q3=Drakestone", "=ds=#s15#", "", "4.47%" };
+ { 6, 10797, "", "=q3=Firebreather", "=ds=#h1#, #w10#", "", "4.08%" };
+ { 7, 12463, "", "=q3=Drakefang Butcher", "=ds=#h2#, #w10#", "", "5.00%" };
+ { 8, 12243, "", "=q3=Smoldering Claw", "=ds=#w7#", "", "4.42%" };
+ };
+ {
+ Name = BabbleBoss["Avatar of Hakkar"];
+ { 1, 12462, "", "=q4=Embrace of the Wind Serpent", "=ds=#s5#, #a1#", "", "0.15%" };
+ { 3, 10843, "", "=q3=Featherskin Cape", "=ds=#s4#", "", "31.12%" };
+ { 4, 10842, "", "=q3=Windscale Sarong", "=ds=#s11#, #a2#", "", "33.22%" };
+ { 5, 10846, "", "=q3=Bloodshot Greaves", "=ds=#s12#, #a3#", "", "32.44%" };
+ { 6, 10845, "", "=q3=Warrior's Embrace", "=ds=#s5#, #a4#", "", "30.44%" };
+ { 7, 10838, "", "=q3=Might of Hakkar", "=ds=#h1#, #w6#", "", "16.37%" };
+ { 8, 10844, "", "=q3=Spire of Hakkar", "=ds=#w9#", "", "16.02%" };
+ { 10, 10663, "", "=q1=Essence of Hakkar", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Jammal'an the Prophet"];
+ { 1, 10806, "", "=q3=Vestments of the Atal'ai Prophet", "=ds=#s5#, #a1#", "", "24.13%" };
+ { 2, 10808, "", "=q3=Gloves of the Atal'ai Prophet", "=ds=#s9#, #a1#", "", "26.74%" };
+ { 3, 10807, "", "=q3=Kilt of the Atal'ai Prophet", "=ds=#s11#, #a1#", "", "23.00%" };
+ { 5, 6212, "", "=q1=Head of Jammal'an", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Ogom the Wretched"];
+ { 1, 10805, "", "=q3=Eater of the Dead", "=ds=#h1#, #w1#", "", "28.27%" };
+ { 2, 10804, "", "=q3=Fist of the Damned", "=ds=#h1#, #w6#", "", "30.03%" };
+ { 3, 10803, "", "=q3=Blade of the Wretched", "=ds=#h1#, #w10#", "", "28.21%" };
+ };
+ {
+ Name = BabbleBoss["Morphaz"];
+ { 1, 12465, "", "=q3=Nightfall Drape", "=ds=#s4#", "", "4.29%" };
+ { 2, 12466, "", "=q3=Dawnspire Cord", "=ds=#s10#, #a1#", "", "4.12%" };
+ { 3, 12464, "", "=q3=Bloodfire Talons", "=ds=#s9#, #a2#", "", "4.21%" };
+ { 4, 10795, "", "=q3=Drakeclaw Band", "=ds=#s13# =q2=#m16#", "", "4.07%" };
+ { 5, 10796, "", "=q3=Drakestone", "=ds=#s15#", "", "4.18%" };
+ { 6, 10797, "", "=q3=Firebreather", "=ds=#h1#, #w10#", "", "4.24%" };
+ { 7, 12463, "", "=q3=Drakefang Butcher", "=ds=#h2#, #w10#", "", "4.35%" };
+ { 8, 12243, "", "=q3=Smoldering Claw", "=ds=#w7#", "", "4.09%" };
+ { 10, 20022, "", "=q1=Azure Key", "=ds=#m3#", "", "100%" };
+ { 11, 20085, "", "=q1=Arcane Shard", "=ds=#m3#", "", "100%" };
+ { 12, 20025, "", "=q1=Blood of Morphaz", "=ds=#m3#", "", "100%" };
+ { 13, 20019, "", "=q1=Tooth of Morphaz", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Hazzas"];
+ { 1, 12465, "", "=q3=Nightfall Drape", "=ds=#s4#", "", "4.48%" };
+ { 2, 12466, "", "=q3=Dawnspire Cord", "=ds=#s10#, #a1#", "", "4.46%" };
+ { 3, 12464, "", "=q3=Bloodfire Talons", "=ds=#s9#, #a2#", "", "5.00%" };
+ { 4, 10795, "", "=q3=Drakeclaw Band", "=ds=#s13# =q2=#m16#", "", "4.18%" };
+ { 5, 10796, "", "=q3=Drakestone", "=ds=#s15#", "", "4.92%" };
+ { 6, 10797, "", "=q3=Firebreather", "=ds=#h1#, #w10#", "", "4.50%" };
+ { 7, 12463, "", "=q3=Drakefang Butcher", "=ds=#h2#, #w10#", "", "4.58%" };
+ { 8, 12243, "", "=q3=Smoldering Claw", "=ds=#w7#", "", "4.56%" };
+ };
+ {
+ Name = BabbleBoss["Shade of Eranikus"];
+ { 1, 10847, "", "=q4=Dragon's Call", "=ds=#h1#, #w10#", "", "0.18%" };
+ { 3, 10833, "", "=q3=Horns of Eranikus", "=ds=#s1#, #a3#", "", "25.66%" };
+ { 4, 10829, "", "=q3=Dragon's Eye", "=ds=#s2#", "", "27.02%" };
+ { 5, 10828, "", "=q3=Dire Nail", "=ds=#h1#, #w4#", "", "10.91%" };
+ { 6, 10837, "", "=q3=Tooth of Eranikus", "=ds=#h1#, #w1#", "", "10.05%" };
+ { 7, 10835, "", "=q3=Crest of Supremacy", "=ds=#w8#", "", "19.17%" };
+ { 8, 10836, "", "=q3=Rod of Corrosion", "=ds=#w12#", "", "21.54%" };
+ { 10, 10454, "", "=q2=Essence of Eranikus", "=ds=#m2#" };
+ { 11, 10455, "", "=q2=Chained Essence of Eranikus", "=q1=#m4#: =ds=#s14#" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 10630, "", "=q3=Soulcatcher Halo", "=ds=#s1#, #a1#", "", "0.01%" };
+ { 2, 10629, "", "=q3=Mistwalker Boots", "=ds=#s12#, #a1#", "", "0.01%" };
+ { 3, 10632, "", "=q3=Slimescale Bracers", "=ds=#s8#, #a3#", "", "0.01%" };
+ { 4, 10631, "", "=q3=Murkwater Gauntlets", "=ds=#s9#, #a3#", "", "0.01%" };
+ { 5, 10633, "", "=q3=Silvershell Leggings", "=ds=#s11#, #a3#", "", "0.01%" };
+ { 6, 10634, "", "=q3=Mindseye Circle", "=ds=#s13#", "", "0.02%" };
+ { 8, 15733, "", "=q3=Pattern: Green Dragonscale Leggings", "=ds=#p7# (270) =q1=#n80#", "", "1.80%" };
+ { 9, 16216, "", "=q2=Formula: Enchant Cloak - Greater Resistance", "=ds=#p4# (265) =q1=#n81#", "", "0.75%" };
+ { 11, 11318, "", "=q1=Atal'ai Haze", "=ds=#m3#" };
+ { 12, 6181, "", "=q1=Fetish of Hakkar", "=ds=#m3#" };
+ { 16, 10623, "", "=q3=Winter's Bite", "=ds=#h1#, #w1#", "", "0.01%" };
+ { 17, 10625, "", "=q3=Stealthblade", "=ds=#h1#, #w4#", "", "0.01%" };
+ { 18, 10628, "", "=q3=Deathblow", "=ds=#h2#, #w10#", "", "0.01%" };
+ { 19, 10626, "", "=q3=Ragehammer", "=ds=#h2#, #w6#", "", "0.01%" };
+ { 20, 10627, "", "=q3=Bludgeon of the Grinning Dog", "=ds=#w9#", "", "0.02%" };
+ { 21, 10624, "", "=q3=Stinging Bow", "=ds=#w2#", "", "0.02%" };
+ };
+};
+
+---------------
+--- Uldaman ---
+---------------
+
+AtlasLoot_Data["Uldaman"] = {
+ Name = BabbleZone["Uldaman"];
+ Map = "Uldaman";
+ {
+ Name = AL["Magregan Deepshadow"];
+ { 1, 4635, "", "=q1=Hammertoe's Amulet", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = "Tablet of Ryun'eh";
+ { 1, 4631, "", "=q1=Tablet of Ryun'eh", "=ds=#m3#" };
+ };
+ {
+ Name = AL["Krom Stoutarm's Chest"];
+ { 1, 8027, "", "=q1=Krom Stoutarm's Treasure", "=ds=#m3#" };
+ };
+ {
+ Name = AL["Garrett Family Chest"];
+ { 1, 8026, "", "=q1=Garrett Family Treasure", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Digmaster Shovelphlange"];
+ { 1, 9375, "", "=q3=Expert Goldminer's Helmet", "=ds=#s1#, #a2#", "", "9.30%" };
+ { 2, 9378, "", "=q3=Shovelphlange's Mining Axe", "=ds=#h1#, #w1#", "", "13.50%" };
+ { 3, 9382, "", "=q2=Tromping Miner's Boots", "=ds=#s12#, #a2#", "", "70.70%" };
+ };
+ {
+ Name = BabbleBoss["Baelog"];
+ { 1, 0, "INV_Box_01", "=q6=#n45#", "" };
+ { 2, 9401, "", "=q3=Nordic Longshank", "=ds=#h1#, #w10#", "", "8.89%" };
+ { 3, 9400, "", "=q3=Baelog's Shortbow", "=ds=#w2#", "", "46.52%" };
+ { 4, 9399, "", "=q2=Precision Arrow", "=ds=#w17#", "", "78.62%" };
+ { 6, 0, "INV_Box_01", "=q6=#n46#", "" };
+ { 7, 9394, "", "=q3=Horned Viking Helmet", "=ds=#s1#, #a4#", "", "4.05%" };
+ { 8, 9398, "", "=q3=Worn Running Boots", "=ds=#s12#, #a2#", "", "45.09%" };
+ { 9, 2459, "", "=q1=Swiftness Potion", "=ds=#e2#" };
+ { 11, 0, "INV_Box_01", "=q6=#n47#", "" };
+ { 12, 9404, "", "=q3=Olaf's All Purpose Shield", "=ds=#w8#", "", "11.33%" };
+ { 13, 9403, "", "=q3=Battered Viking Shield", "=ds=#w8#", "", "69.85%" };
+ { 14, 1177, "", "=q1=Oil of Olaf", "=ds=#e2#", "", "76.54%" };
+ { 16, 0, "INV_Box_01", "=q6=#x14#", "" };
+ { 17, 7740, "", "=q1=Gni'kiv Medallion", "=ds=#m3#" };
+ { 19, 0, "INV_Box_01", "=q6=#x15#", "" };
+ { 20, 7671, "", "=q1=Shattered Necklace Topaz", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Revelosh"];
+ { 1, 9390, "", "=q3=Revelosh's Gloves", "=ds=#s9#, #a1# =q2=#m16#", "", "20.08%" };
+ { 2, 9389, "", "=q3=Revelosh's Spaulders", "=ds=#s3#, #a2# =q2=#m16#", "", "18.77%" };
+ { 3, 9388, "", "=q3=Revelosh's Armguards", "=ds=#s8#, #a3# =q2=#m16#", "", "19.84%" };
+ { 4, 9387, "", "=q3=Revelosh's Boots", "=ds=#s12#, #a4# =q2=#m16#", "", "20.53%" };
+ { 6, 7741, "", "=q1=The Shaft of Tsol", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Ironaya"];
+ { 1, 9407, "", "=q3=Stoneweaver Leggings", "=ds=#s11#, #a1#", "", "31.02%" };
+ { 2, 9409, "", "=q3=Ironaya's Bracers", "=ds=#s8#, #a3# =q2=#m16#", "", "32.71%" };
+ { 3, 9408, "", "=q3=Ironshod Bludgeon", "=ds=#w9#", "", "1" };
+ };
+ {
+ Name = BabbleBoss["Obsidian Sentinel"];
+ { 1, 8053, "", "=q1=Obsidian Power Source", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Ancient Stone Keeper"];
+ { 1, 9411, "", "=q3=Rockshard Pauldrons", "=ds=#s3#, #a3#", "", "43.41%" };
+ { 2, 9410, "", "=q3=Cragfists", "=ds=#s9#, #a4# =q2=#m16#", "", "41.61%" };
+ };
+ {
+ Name = BabbleBoss["Galgann Firehammer"];
+ { 1, 11311, "", "=q3=Emberscale Cape", "=ds=#s4#", "", "36.52%" };
+ { 2, 11310, "", "=q3=Flameseer Mantle", "=ds=#s3#, #a1#", "", "17.35%" };
+ { 3, 9419, "", "=q3=Galgann's Firehammer", "=ds=#h1#, #w6#", "", "18.10%" };
+ { 4, 9412, "", "=q3=Galgann's Fireblaster", "=ds=#w5#", "", "17.10%" };
+ };
+ {
+ Name = "Tablet of Will";
+ { 1, 5824, "", "=q1=Tablet of Will", "=ds=#m3#" };
+ };
+ {
+ Name = "Shadowforge Cache";
+ { 1, 7669, "", "=q1=Shattered Necklace Ruby", "=ds=#m3#" };
+ };
+ {
+ Name = BabbleBoss["Grimlok"];
+ { 1, 9415, "", "=q3=Grimlok's Tribal Vestments", "=ds=#s5#, #a1#", "", "36.51%" };
+ { 2, 9414, "", "=q3=Oilskin Leggings", "=ds=#s11#, #a2#", "", "29.78%" };
+ { 3, 9416, "", "=q3=Grimlok's Charge", "=ds=#w7#", "", "15.05%" };
+ { 5, 7670, "", "=q1=Shattered Necklace Sapphire", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Archaedas"];
+ { 1, 11118, "", "=q3=Archaedic Stone", "=ds=#s13# =q2=#m16#", "", "51.99%" };
+ { 2, 9418, "", "=q3=Stoneslayer", "=ds=#h2#, #w10#", "", "10.48%" };
+ { 3, 9413, "", "=q3=The Rockpounder", "=ds=#h2#, #w6#", "", "10.94%" };
+ { 5, 7672, "", "=q1=Shattered Necklace Power Source", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 9397, "", "=q3=Energy Cloak", "=ds=#s4#", "", "0.01%" };
+ { 2, 9431, "", "=q3=Papal Fez", "=ds=#s1#, #a1#", "", "0.01%" };
+ { 3, 9429, "", "=q3=Miner's Hat of the Deep", "=ds=#s1#, #a1#", "", "0.01%" };
+ { 4, 9420, "", "=q3=Adventurer's Pith Helmet", "=ds=#s1#, #a2#", "", "0.01%" };
+ { 5, 9406, "", "=q3=Spirewind Fetter", "=ds=#s5#, #a2#", "", "0.01%" };
+ { 6, 9428, "", "=q3=Unearthed Bands", "=ds=#s8#, #a2# =q2=#m16#", "", "0.01%" };
+ { 7, 9430, "", "=q3=Spaulders of a Lost Age", "=ds=#s3#, #a3#", "", "0.00%" };
+ { 8, 9396, "", "=q3=Legguards of the Vault", "=ds=#s11#, #a3#" };
+ { 9, 9432, "", "=q3=Skullplate Bracers", "=ds=#s8#, #a4#", "", "0.01%" };
+ { 10, 9393, "", "=q3=Beacon of Hope", "=ds=#s15#", "", "0.01%" };
+ { 12, 7666, "", "=q2=Shattered Necklace", "=q1=#m2#" };
+ { 13, 7673, "", "=q3=Talvash's Enhancing Necklace", "=q1=#m4#: =ds=#s2#" };
+ { 16, 9384, "", "=q3=Stonevault Shiv", "=ds=#h1#, #w4#", "", "0.01%" };
+ { 17, 9392, "", "=q3=Annealed Blade", "=ds=#h1#, #w10#", "", "0.01%" };
+ { 18, 9424, "", "=q3=Ginn-su Sword", "=ds=#h1#, #w10#", "", "0.01%" };
+ { 19, 9465, "", "=q3=Digmaster 5000", "=ds=#h1#, #w1#", "", "0.01%" };
+ { 20, 9383, "", "=q3=Obsidian Cleaver", "=ds=#h2#, #w1#", "", "0.01%" };
+ { 21, 9425, "", "=q3=Pendulum of Doom", "=ds=#h2#, #w1#", "", "0.01%" };
+ { 22, 9386, "", "=q3=Excavator's Brand", "=ds=#h1#, #w6#", "", "0.01%" };
+ { 23, 9427, "", "=q3=Stonevault Bonebreaker", "=ds=#h1#, #w6#", "", "0.01%" };
+ { 24, 9423, "", "=q3=The Jackhammer", "=ds=#h2#, #w6#", "", "0.01%" };
+ { 25, 9391, "", "=q3=The Shoveler", "=ds=#h2#, #w6#, =q2=#c9#", "", "0.01%" };
+ { 26, 9381, "", "=q3=Earthen Rod", "=ds=#w12#", "", "0.01%" };
+ { 27, 9426, "", "=q3=Monolithic Bow", "=ds=#w2#", "", "0.01%" };
+ { 28, 9422, "", "=q3=Shadowforge Bushmaster", "=ds=#w5#", "", "0.01%" };
+ };
+};
+
+-----------------------
+--- Wailing Caverns ---
+-----------------------
+
+AtlasLoot_Data["WailingCaverns"] = {
+ Name = BabbleZone["Wailing Caverns"];
+ Map = "WailingCaverns";
+ {
+ Name = AL["Kalldan Felmoon"];
+ { 1, 6475, "", "=q1=Pattern: Deviate Scale Gloves", "=ds=#p7# (105)" };
+ { 2, 6474, "", "=q1=Pattern: Deviate Scale Cloak", "=ds=#p7# (90)" };
+ };
+ {
+ Name = BabbleBoss["Mad Magglish"];
+ { 1, 5334, "", "=q1=99-Year-Old Port", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Trigore the Lasher"];
+ { 1, 5425, "", "=q3=Runescale Girdle", "=ds=#s8#, #a3#", "", "50%" };
+ { 2, 5426, "", "=q3=Serpent's Kiss", "=ds=#h1#, #w1#", "", "35%" };
+ };
+ {
+ Name = BabbleBoss["Boahn"];
+ { 1, 5423, "", "=q3=Boahn's Fang", "=ds=#h2#, #w1#", "", "28%" };
+ { 2, 5422, "", "=q2=Brambleweed Leggings", "=ds=#s11#, #a2#", "", "64%" };
+ };
+ {
+ Name = BabbleBoss["Lord Cobrahn"];
+ { 1, 6465, "", "=q3=Robe of the Moccasin", "=ds=#s5#, #a1#", "", "51.73%" };
+ { 2, 10410, "", "=q3=Leggings of the Fang", "=ds=#s11#, #a2#", "", "16.03%" };
+ { 3, 6460, "", "=q3=Cobrahn's Grasp", "=ds=#s10#, #a3#", "", "16.20%" };
+ };
+ {
+ Name = BabbleBoss["Lady Anacondra"];
+ { 1, 5404, "", "=q3=Serpent's Shoulders", "=ds=#s3#, #a2#", "", "58.61%" };
+ { 2, 10412, "", "=q3=Belt of the Fang", "=ds=#s10#, #a2#", "", "8.63%" };
+ { 3, 6446, "", "=q3=Snakeskin Bag", "=ds=#m12# #e1#", "", "6.61%" };
+ };
+ {
+ Name = BabbleBoss["Kresh"];
+ { 1, 13245, "", "=q3=Kresh's Back", "=ds=#w8#", "", "9.17%" };
+ { 2, 6447, "", "=q3=Worn Turtle Shell Shield", "=ds=#w8#", "", "63.66%" };
+ };
+ {
+ Name = BabbleBoss["Lord Pythas"];
+ { 1, 6473, "", "=q3=Armor of the Fang", "=ds=#s5#, #a2#", "", "52.06%" };
+ { 2, 6472, "", "=q3=Stinging Viper", "=ds=#h1#, #w6#", "", "28.24%" };
+ };
+ {
+ Name = BabbleBoss["Skum"];
+ { 1, 6449, "", "=q3=Glowing Lizardscale Cloak", "=ds=#s4#", "", "38.24%" };
+ { 2, 6448, "", "=q3=Tail Spike", "=ds=#h1#, #w4#", "", "39.24%" };
+ };
+ {
+ Name = BabbleBoss["Lord Serpentis"];
+ { 1, 5970, "", "=q3=Serpent Gloves", "=ds=#s9#, #a1#", "", "20.96%" };
+ { 2, 10411, "", "=q3=Footpads of the Fang", "=ds=#s12#, #a2#", "", "19.07%" };
+ { 3, 6459, "", "=q3=Savage Trodders", "=ds=#s12#, #a3#", "", "24.39%" };
+ { 4, 6469, "", "=q3=Venomstrike", "=ds=#w2#", "", "16.63%" };
+ };
+ {
+ Name = BabbleBoss["Verdan the Everliving"];
+ { 1, 6629, "", "=q3=Sporid Cape", "=ds=#s4#", "", "16.65%" };
+ { 2, 6631, "", "=q3=Living Root", "=ds=#w9#", "", "34.47%" };
+ { 3, 6630, "", "=q3=Seedcloud Buckler", "=ds=#w8#", "", "35.38%" };
+ };
+ {
+ Name = BabbleBoss["Mutanus the Devourer"];
+ { 1, 6461, "", "=q3=Slime-encrusted Pads", "=ds=#s3#, #a1#", "", "22.96%" };
+ { 2, 6627, "", "=q3=Mutant Scale Breastplate", "=ds=#s5#, #a3#", "", "18.33%" };
+ { 3, 6463, "", "=q3=Deep Fathom Ring", "=ds=#s13#", "", "21.99%" };
+ { 4, 10441, "", "=q1=Glowing Shard", "=ds=#m2#" };
+ };
+ {
+ Name = BabbleBoss["Deviate Faerie Dragon"];
+ { 1, 6632, "", "=q3=Feyscale Cloak", "=ds=#s4#", "", "37.84%" };
+ { 2, 5243, "", "=q3=Firebelcher", "=ds=#w12#", "", "39.65%" };
+ };
+};
+
+------------------
+--- Zul'Farrak ---
+------------------
+
+AtlasLoot_Data["ZulFarrak"] = {
+ Name = BabbleZone["Zul'Farrak"];
+ Map = "ZulFarrak";
+ {
+ Name = BabbleBoss["Antu'sul"];
+ { 1, 9640, "", "=q3=Vice Grips", "=ds=#s9#, #a4#", "", "31.30%" };
+ { 2, 9641, "", "=q3=Lifeblood Amulet", "=ds=#s2#", "", "30.80%" };
+ { 3, 9639, "", "=q3=The Hand of Antu'sul", "=ds=#h1#, #w6#", "", "15.47%" };
+ { 5, 9379, "", "=q3=Sang'thraze the Deflector", "=ds=#h1#, #w10#", "", "2.10%" };
+ { 6, 9372, "", "=q4=Sul'thraze the Lasher", "=ds=#h2#, #w10#" };
+ };
+ {
+ Name = BabbleBoss["Theka the Martyr"];
+ { 1, 10660, "", "=q1=First Mosh'aru Tablet", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Witch Doctor Zum'rah"];
+ { 1, 18083, "", "=q3=Jumanza Grips", "=ds=#s9#, #a1#", "", "24.97%" };
+ { 2, 18082, "", "=q3=Zum'rah's Vexing Cane", "=ds=#w9#", "", "11.98%" };
+ };
+ {
+ Name = BabbleBoss["Nekrum Gutchewer"];
+ { 1, 9471, "", "=q1=Nekrum's Medallion", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Shadowpriest Sezz'ziz"];
+ { 1, 9470, "", "=q3=Bad Mojo Mask", "=ds=#s1#, #a1#", "", "18.69%" };
+ { 2, 9473, "", "=q3=Jinxed Hoodoo Skin", "=ds=#s5#, #a2#", "", "21.12%" };
+ { 3, 9474, "", "=q3=Jinxed Hoodoo Kilt", "=ds=#s11#, #a2#", "", "20.95%" };
+ { 4, 9475, "", "=q3=Diabolic Skiver", "=ds=#w7#", "", "20.06%" };
+ };
+ {
+ Name = BabbleBoss["Dustwraith"];
+ { 1, 12471, "", "=q3=Desertwalker Cane", "=ds=#s15#", "", "17.71%" };
+ };
+ {
+ Name = BabbleBoss["Sergeant Bly"];
+ { 1, 8444, "", "=q1=Executioner's Key", "=ds=#e9#" };
+ };
+ {
+ Name = BabbleBoss["Sandfury Executioner"];
+ { 1, 8548, "", "=q1=Divino-matic Rod", "=ds=#m3#", "", "100%" };
};
- --------------------
- --- Arathi Basin ---
- --------------------
-
- AtlasLoot_Data["AB_A"] = {
- Name = BabbleZone["Arathi Basin"].." (Alliance)";
- {
- Name = AL["Misc. Rewards"];
- { 1, 17349, "", "=q1=Superior Healing Draught", "=ds=", "5 #silver# 1 #alliance#", ""};
- { 2, 17352, "", "=q1=Superior Mana Draught", "=ds=", "5 #silver# 1 #alliance#", ""};
- { 3, 20225, "", "=q1=Highlander's Enriched Ration", "=ds=", "18 #silver#", ""};
- { 4, 20227, "", "=q1=Highlander's Iron Ration", "=ds=", "13,5 #silver#", ""};
- { 5, 20226, "", "=q1=Highlander's Field Ration", "=ds=", "9 #silver#", ""};
- { 6, 20243, "", "=q1=Highlander's Runecloth Bandage", "=ds=", "18 #silver#", ""};
- { 7, 20237, "", "=q1=Highlander's Mageweave Bandage", "=ds=", "13,5 #silver#", ""};
- { 8, 20244, "", "=q1=Highlander's Silk Bandage", "=ds=", "9 #silver#", ""};
- { 9, 21119, "", "=q3=Talisman of Arathor", "=ds=", "300 #alliance#", ""};
- { 10, 21118, "", "=q3=Talisman of Arathor", "=ds=", "300 #alliance#", ""};
- { 11, 21117, "", "=q3=Talisman of Arathor", "=ds=", "400 #alliance#", ""};
- { 12, 20071, "", "=q3=Talisman of Arathor", "=ds=", "3000 #alliance#", ""};
- };
- {
- Name = AL["Level 60 Rewards"];
- { 1, 20073, "", "=q4=Cloak of the Honor Guard", "=ds=", "5000 #alliance#", ""};
- { 2, 20070, "", "=q4=Sageclaw", "=ds=", "9000 #alliance#", ""};
- { 3, 20069, "", "=q4=Ironbark Staff", "=ds=", "16000 #alliance#", ""};
- };
- {
- Name = AL["Level 40-49 Rewards"];
- { 1, 20097, "", "=q3=Highlander's Cloth Girdle", "=ds=", "400 #alliance#", ""};
- { 2, 20094, "", "=q3=Highlander's Cloth Boots", "=ds=", "400 #alliance#", ""};
- { 3, 20115, "", "=q3=Highlander's Leather Girdle", "=ds=", "400 #alliance#", ""};
- { 4, 20103, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "400 #alliance#", ""};
- { 5, 20112, "", "=q3=Highlander's Leather Boots", "=ds=", "400 #alliance#", ""};
- { 6, 20100, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "400 #alliance#", ""};
- { 7, 20089, "", "=q3=Highlander's Chain Girdle", "=ds=", "300 #alliance#", ""};
- { 8, 20088, "", "=q3=Highlander's Chain Girdle", "=ds=", "400 #alliance#", ""};
- { 9, 20119, "", "=q3=Highlander's Mail Girdle", "=ds=", "300 #alliance#", ""};
- { 10, 20118, "", "=q3=Highlander's Mail Girdle", "=ds=", "400 #alliance#", ""};
- { 11, 20092, "", "=q3=Highlander's Chain Greaves", "=ds=", "300 #alliance#", ""};
- { 12, 20091, "", "=q3=Highlander's Chain Greaves", "=ds=", "400 #alliance#", ""};
- { 13, 20122, "", "=q3=Highlander's Mail Greaves", "=ds=", "300 #alliance#", ""};
- { 14, 20121, "", "=q3=Highlander's Mail Greaves", "=ds=", "400 #alliance#", ""};
- { 15, 20107, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "300 #alliance#", ""};
- { 16, 20106, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "400 #alliance#", ""};
- { 17, 20125, "", "=q3=Highlander's Plate Girdle", "=ds=", "300 #alliance#", ""};
- { 18, 20124, "", "=q3=Highlander's Plate Girdle", "=ds=", "400 #alliance#", ""};
- { 19, 20110, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "300 #alliance#", ""};
- { 20, 20109, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "400 #alliance#", ""};
- { 21, 20128, "", "=q3=Highlander's Plate Greaves", "=ds=", "300 #alliance#", ""};
- { 22, 20127, "", "=q3=Highlander's Plate Greaves", "=ds=", "400 #alliance#", ""};
- };
- {
- Name = AL["Level 30-39 Rewards"];
- { 1, 20098, "", "=q3=Highlander's Cloth Girdle", "=ds=", "300 #alliance#", ""};
- { 2, 20095, "", "=q3=Highlander's Cloth Boots", "=ds=", "300 #alliance#", ""};
- { 3, 20116, "", "=q3=Highlander's Leather Girdle", "=ds=", "300 #alliance#", ""};
- { 4, 20104, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "300 #alliance#", ""};
- { 5, 20113, "", "=q3=Highlander's Leather Boots", "=ds=", "300 #alliance#", ""};
- { 6, 20101, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "300 #alliance#", ""};
- };
- {
- Name = AL["Level 20-29 Rewards"];
- { 1, 20099, "", "=q3=Highlander's Cloth Girdle", "=ds=", "300 #alliance#", ""};
- { 2, 20096, "", "=q3=Highlander's Cloth Boots", "=ds=", "300 #alliance#", ""};
- { 3, 20117, "", "=q3=Highlander's Leather Girdle", "=ds=", "300 #alliance#", ""};
- { 4, 20105, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "300 #alliance#", ""};
- { 5, 20120, "", "=q3=Highlander's Mail Girdle", "=ds=", "300 #alliance#", ""};
- { 6, 20090, "", "=q3=Highlander's Padded Girdle", "=ds=", "300 #alliance#", ""};
- { 7, 20114, "", "=q3=Highlander's Leather Boots", "=ds=", "300 #alliance#", ""};
- { 8, 20102, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "300 #alliance#", ""};
- { 9, 20123, "", "=q3=Highlander's Mail Greaves", "=ds=", "300 #alliance#", ""};
- { 10, 20093, "", "=q3=Highlander's Padded Greaves", "=ds=", "300 #alliance#", ""};
- { 11, 20108, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "300 #alliance#", ""};
- { 12, 20126, "", "=q3=Highlander's Mail Girdle", "=ds=", "300 #alliance#", ""};
- { 13, 20111, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "300 #alliance#", ""};
- { 14, 20129, "", "=q3=Highlander's Mail Greaves", "=ds=", "300 #alliance#", ""};
- };
- {
- Name = AL["The Highlander's Intent"];
- { 1, 20061, "", "=q4=Highlander's Epaulets", "=ds=", "9000 #alliance#", ""};
- { 2, 20047, "", "=q3=Highlander's Cloth Girdle", "=ds=", "3000 #alliance#", ""};
- { 3, 20054, "", "=q3=Highlander's Cloth Boots", "=ds=", "3000 #alliance#", ""};
- };
- {
- Name = AL["The Highlander's Purpose"];
- { 1, 20059, "", "=q4=Highlander's Leather Shoulders", "=ds=", "9000 #alliance#", ""};
- { 2, 20045, "", "=q3=Highlander's Leather Girdle", "=ds=", "3000 #alliance#", ""};
- { 3, 20052, "", "=q3=Highlander's Leather Boots", "=ds=", "3000 #alliance#", ""};
- };
- {
- Name = AL["The Highlander's Will"];
- { 1, 20060, "", "=q4=Highlander's Lizardhide Shoulders", "=ds=", "9000 #alliance#", ""};
- { 2, 20046, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "3000 #alliance#", ""};
- { 3, 20053, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "3000 #alliance#", ""};
- };
- {
- Name = AL["The Highlander's Determination"];
- { 1, 20055, "", "=q4=Highlander's Chain Pauldrons", "=ds=", "9000 #alliance#", ""};
- { 2, 20043, "", "=q3=Highlander's Chain Girdle", "=ds=", "3000 #alliance#", ""};
- { 3, 20050, "", "=q3=Highlander's Chain Greaves", "=ds=", "3000 #alliance#", ""};
- };
- {
- Name = AL["The Highlander's Fortitude"];
- { 1, 20056, "", "=q4=Highlander's Mail Pauldrons", "=ds=", "9000 #alliance#", ""};
- { 2, 20044, "", "=q3=Highlander's Mail Girdle", "=ds=", "3000 #alliance#", ""};
- { 3, 20051, "", "=q3=Highlander's Mail Greaves", "=ds=", "3000 #alliance#", ""};
- };
- {
- Name = AL["The Highlander's Resolution"];
- { 1, 20057, "", "=q4=Highlander's Plate Spaulders", "=ds=", "9000 #alliance#", ""};
- { 2, 20041, "", "=q3=Highlander's Plate Girdle", "=ds=", "3000 #alliance#", ""};
- { 3, 20048, "", "=q3=Highlander's Plate Greaves", "=ds=", "3000 #alliance#", ""};
- };
- {
- Name = AL["The Highlander's Resolve"];
- { 1, 20058, "", "=q4=Highlander's Lamellar Spaulders", "=ds=", "9000 #alliance#", ""};
- { 2, 20042, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "3000 #alliance#", ""};
- { 3, 20049, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "3000 #alliance#", ""};
- };
+ {
+ Name = BabbleBoss["Hydromancer Velratha"];
+ { 1, 9234, "", "=q1=Tiara of the Deep", "=ds=#m3#", "", "100%" };
+ { 2, 10661, "", "=q1=Second Mosh'aru Tablet", "=ds=#m3#", "", "100%" };
};
-
- AtlasLoot_Data["AB_H"] = {
- Name = BabbleZone["Arathi Basin"].." (Horde)";
- {
- Name = AL["Misc. Rewards"];
- { 1, 17349, "", "=q1=Superior Healing Draught", "=ds=", "5 #silver# 5 #horde#", ""};
- { 2, 17352, "", "=q1=Superior Mana Draught", "=ds=", "5 #silver# 5 #horde#", ""};
- { 3, 20222, "", "=q1=Defiler's Enriched Ration", "=ds=", "18 #silver#", ""};
- { 4, 20224, "", "=q1=Defiler's Iron Ration", "=ds=", "15 #silver#", ""};
- { 5, 20223, "", "=q1=Defiler's Field Ration", "=ds=", "9 #silver#", ""};
- { 6, 20234, "", "=q1=Defiler's Runecloth Bandage", "=ds=", "18 #silver#", ""};
- { 7, 20232, "", "=q1=Defiler's Mageweave Bandage", "=ds=", "15 #silver#", ""};
- { 8, 20235, "", "=q1=Defiler's Silk Bandage", "=ds=", "9 #silver#", ""};
- { 9, 21116, "", "=q3=Defiler's Talisman", "=ds=", "300 #horde#", ""};
- { 10, 21120, "", "=q3=Defiler's Talisman", "=ds=", "300 #horde#", ""};
- { 11, 21115, "", "=q3=Defiler's Talisman", "=ds=", "400 #horde#", ""};
- { 12, 20072, "", "=q3=Defiler's Talisman", "=ds=", "3000 #horde#", ""};
- };
- {
- Name = AL["Level 60 Rewards"];
- { 1, 20068, "", "=q4=Deathguard's Cloak", "=ds=", "5000 #horde#", ""};
- { 2, 20214, "", "=q4=Mindfang", "=ds=", "9000 #horde#", ""};
- { 3, 20220, "", "=q4=Ironbark Staff", "=ds=", "16000 #horde#", ""};
- };
- {
- Name = AL["Level 40-49 Rewards"];
- { 1, 20165, "", "=q3=Defiler's Cloth Girdle", "=ds=", "400 #horde#", ""};
- { 2, 20160, "", "=q3=Defiler's Cloth Boots", "=ds=", "400 #horde#", ""};
- { 3, 20193, "", "=q3=Defiler's Leather Girdle", "=ds=", "400 #horde#", ""};
- { 4, 20174, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "400 #horde#", ""};
- { 5, 20189, "", "=q3=Defiler's Leather Boots", "=ds=", "400 #horde#", ""};
- { 6, 20170, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "400 #horde#", ""};
- { 7, 20153, "", "=q3=Defiler's Chain Girdle", "=ds=", "300 #horde#", ""};
- { 8, 20151, "", "=q3=Defiler's Chain Girdle", "=ds=", "400 #horde#", ""};
- { 9, 20198, "", "=q3=Defiler's Mail Girdle", "=ds=", "300 #horde#", ""};
- { 10, 20196, "", "=q3=Defiler's Mail Girdle", "=ds=", "400 #horde#", ""};
- { 11, 20156, "", "=q3=Defiler's Chain Greaves", "=ds=", "300 #horde#", ""};
- { 12, 20155, "", "=q3=Defiler's Chain Greaves", "=ds=", "400 #horde#", ""};
- { 13, 20200, "", "=q3=Defiler's Mail Greaves", "=ds=", "300 #horde#", ""};
- { 14, 20202, "", "=q3=Defiler's Mail Greaves", "=ds=", "400 #horde#", ""};
- { 15, 20180, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "300 #horde#", ""};
- { 16, 20179, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "400 #horde#", ""};
- { 17, 20206, "", "=q3=Defiler's Plate Girdle", "=ds=", "300 #horde#", ""};
- { 18, 20205, "", "=q3=Defiler's Plate Girdle", "=ds=", "400 #horde#", ""};
- { 19, 20183, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "300 #horde#", ""};
- { 20, 20185, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "400 #horde#", ""};
- { 21, 20209, "", "=q3=Defiler's Plate Greaves", "=ds=", "300 #horde#", ""};
- { 22, 20211, "", "=q3=Defiler's Plate Greaves", "=ds=", "400 #horde#", ""};
- };
- {
- Name = AL["Level 30-39 Rewards"];
- { 1, 20166, "", "=q3=Defiler's Cloth Girdle", "=ds=", "300 #horde#", ""};
- { 2, 20161, "", "=q3=Defiler's Cloth Boots", "=ds=", "300 #horde#", ""};
- { 3, 20192, "", "=q3=Defiler's Leather Girdle", "=ds=", "300 #horde#", ""};
- { 4, 20173, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "300 #horde#", ""};
- { 5, 20187, "", "=q3=Defiler's Leather Boots", "=ds=", "300 #horde#", ""};
- { 6, 20168, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "300 #horde#", ""};
- };
- {
- Name = AL["Level 20-29 Rewards"];
- { 1, 20164, "", "=q3=Defiler's Cloth Girdle", "=ds=", "300 #horde#", ""};
- { 2, 20162, "", "=q3=Defiler's Cloth Boots", "=ds=", "300 #horde#", ""};
- { 3, 20191, "", "=q3=Defiler's Leather Girdle", "=ds=", "300 #horde#", ""};
- { 4, 20172, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "300 #horde#", ""};
- { 5, 20152, "", "=q3=Defiler's Chain Girdle", "=ds=", "300 #horde#", ""};
- { 6, 20197, "", "=q3=Defiler's Padded Girdle", "=ds=", "300 #horde#", ""};
- { 7, 20188, "", "=q3=Defiler's Leather Boots", "=ds=", "300 #horde#", ""};
- { 8, 20169, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "300 #horde#", ""};
- { 9, 20201, "", "=q3=Defiler's Mail Greaves", "=ds=", "300 #horde#", ""};
- { 0, 20157, "", "=q3=Defiler's Chain Greaves", "=ds=", "300 #horde#", ""};
- { 10, 20178, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "300 #horde#", ""};
- { 11, 20207, "", "=q3=Defiler's Mail Girdle", "=ds=", "300 #horde#", ""};
- { 12, 20182, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "300 #horde#", ""};
- { 13, 20210, "", "=q3=Defiler's Mail Greaves", "=ds=", "300 #horde#", ""};
- };
- {
- Name = AL["The Defiler's Intent"];
- { 1, 20176, "", "=q4=Defiler's Epaulets", "=ds=", "9000 #horde#", ""};
- { 2, 20163, "", "=q3=Defiler's Cloth Girdle", "=ds=", "3000 #horde#", ""};
- { 3, 20159, "", "=q3=Defiler's Cloth Boots", "=ds=", "3000 #horde#", ""};
- };
- {
- Name = AL["The Defiler's Purpose"];
- { 1, 20194, "", "=q4=Defiler's Leather Shoulders", "=ds=", "9000 #horde#", ""};
- { 2, 20190, "", "=q3=Defiler's Leather Girdle", "=ds=", "3000 #horde#", ""};
- { 3, 20186, "", "=q3=Defiler's Leather Boots", "=ds=", "3000 #horde#", ""};
- };
- {
- Name = AL["The Defiler's Will"];
- { 1, 20175, "", "=q4=Defiler's Lizardhide Shoulders", "=ds=", "9000 #horde#", ""};
- { 2, 20171, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "3000 #horde#", ""};
- { 3, 20167, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "3000 #horde#", ""};
- };
- {
- Name = AL["The Defiler's Determination"];
- { 1, 20158, "", "=q3=Defiler's Chain Pauldrons", "=ds=", "9000 #horde#", ""};
- { 2, 20150, "", "=q3=Defiler's Chain Girdle", "=ds=", "3000 #horde#", ""};
- { 3, 20154, "", "=q3=Defiler's Chain Greaves", "=ds=", "3000 #horde#", ""};
- };
- {
- Name = AL["The Defiler's Fortitude"];
- { 1, 20203, "", "=q4=Defiler's Mail Pauldrons", "=ds=", "9000 #horde#", ""};
- { 2, 20195, "", "=q3=Defiler's Mail Girdle", "=ds=", "3000 #horde#", ""};
- { 3, 20199, "", "=q3=Defiler's Mail Greaves", "=ds=", "3000 #horde#", ""};
- };
- {
- Name = AL["The Defiler's Resolution"];
- { 1, 20212, "", "=q4=Defiler's Plate Spaulders", "=ds=", "9000 #horde#", ""};
- { 2, 20204, "", "=q3=Defiler's Plate Girdle", "=ds=", "3000 #horde#", ""};
- { 3, 20208, "", "=q3=Defiler's Plate Greaves", "=ds=", "3000 #horde#", ""};
- };
- {
- Name = AL["The Defiler's Resolve"];
- { 1, 20184, "", "=q4=Defiler's Lamellar Spaulders", "=ds=", "9000 #horde#", ""};
- { 2, 20177, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "3000 #horde#", ""};
- { 3, 20181, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "3000 #horde#", ""};
- };
+ {
+ Name = BabbleBoss["Gahz'rilla"];
+ { 1, 9469, "", "=q3=Gahz'rilla Scale Armor", "=ds=#s5#, #a3#", "", "36.76%" };
+ { 2, 9467, "", "=q3=Gahz'rilla Fang", "=ds=#h1#, #w4#", "", "36.83%" };
+ { 4, 8707, "", "=q1=Gahz'rilla's Electrified Scale", "=ds=#m3#" };
};
-
- ---------------------
- --- Warsong Gulch ---
- ---------------------
-
- AtlasLoot_Data["WSG_A"] = {
- Name = BabbleZone["Warsong Gulch"].." (Alliance)";
- {
- Name = AL["Misc. Rewards"];
- { 1, 19506, "", "=q1=Silverwing Battle Tabard", "=ds=", "12000 #faction#", ""};
- { 2, 17348, "", "=q1=Major Healing Draught", "=ds=", "10 #silver# 2 #faction#", ""};
- { 3, 17349, "", "=q1=Superior Healing Draught", "=ds=", "5 #silver# 5 #faction#", ""};
- { 4, 19060, "", "=q1=Warsong Gulch Enriched Ration", "=ds=", "20 #silver#", ""};
- { 5, 19062, "", "=q1=Warsong Gulch Field Ration", "=ds=", "10 #silver#", ""};
- { 6, 19067, "", "=q1=Warsong Gulch Mageweave Bandage", "=ds=", "15 #silver#", ""};
- };
- {
- Name = AL["Accessories"];
- { 1, 20428, "", "=q3=Caretaker's Cape", "=ds=", "100 #alliance#", ""};
- { 2, 19533, "", "=q3=Caretaker's Cape", "=ds=", "100 #alliance#", ""};
- { 3, 19532, "", "=q3=Caretaker's Cape", "=ds=", "300 #alliance#", ""};
- { 4, 19531, "", "=q3=Caretaker's Cape", "=ds=", "300 #alliance#", ""};
- { 5, 19530, "", "=q3=Caretaker's Cape", "=ds=", "1600 #alliance#", ""};
- { 7, 20444, "", "=q3=Sentinel's Medallion", "=ds=", "100 #alliance#", ""};
- { 8, 19541, "", "=q3=Sentinel's Medallion", "=ds=", "100 #alliance#", ""};
- { 9, 19540, "", "=q3=Sentinel's Medallion", "=ds=", "300 #alliance#", ""};
- { 10, 19539, "", "=q3=Sentinel's Medallion", "=ds=", "300 #alliance#", ""};
- { 11, 19538, "", "=q3=Sentinel's Medallion", "=ds=", "1600 #alliance#", ""};
- { 13, 21568, "", "=q3=Rune of Duty", "=ds=", "300 #alliance#", ""};
- { 14, 21567, "", "=q3=Rune of Duty", "=ds=", "300 #alliance#", ""};
- { 16, 20431, "", "=q3=Lorekeeper's Ring", "=ds=", "100 #alliance#", ""};
- { 17, 19525, "", "=q3=Lorekeeper's Ring", "=ds=", "100 #alliance#", ""};
- { 18, 19524, "", "=q3=Lorekeeper's Ring", "=ds=", "300 #alliance#", ""};
- { 19, 19523, "", "=q3=Lorekeeper's Ring", "=ds=", "300 #alliance#", ""};
- { 20, 19522, "", "=q3=Lorekeeper's Ring", "=ds=", "1600 #alliance#", ""};
- { 22, 20439, "", "=q3=Protector's Band", "=ds=", "100 #alliance#", ""};
- { 23, 19517, "", "=q3=Protector's Band", "=ds=", "100 #alliance#", ""};
- { 24, 19515, "", "=q3=Protector's Band", "=ds=", "300 #alliance#", ""};
- { 25, 19516, "", "=q3=Protector's Band", "=ds=", "300 #alliance#", ""};
- { 26, 19514, "", "=q3=Protector's Band", "=ds=", "1600 #alliance#", ""};
- { 28, 21566, "", "=q3=Rune of Perfection", "=ds=", "300 #alliance#", ""};
- { 29, 21565, "", "=q3=Rune of Perfection", "=ds=", "300 #alliance#", ""};
- };
- {
- Name = AL["Weapons"];
- { 1, 20443, "", "=q3=Sentinel's Blade", "=ds=", "300 #alliance#", ""};
- { 2, 19549, "", "=q3=Sentinel's Blade", "=ds=", "400 #alliance#", ""};
- { 3, 19548, "", "=q3=Sentinel's Blade", "=ds=", "500 #alliance#", ""};
- { 4, 19547, "", "=q3=Sentinel's Blade", "=ds=", "700 #alliance#", ""};
- { 5, 19546, "", "=q3=Sentinel's Blade", "=ds=", "6000 #alliance#", ""};
- { 7, 20440, "", "=q3=Protector's Sword", "=ds=", "300 #alliance#", ""};
- { 8, 19557, "", "=q3=Protector's Sword", "=ds=", "400 #alliance#", ""};
- { 9, 19556, "", "=q3=Protector's Sword", "=ds=", "500 #alliance#", ""};
- { 10, 19555, "", "=q3=Protector's Sword", "=ds=", "700 #alliance#", ""};
- { 11, 19554, "", "=q3=Protector's Sword", "=ds=", "6000 #alliance#", ""};
- { 16, 20434, "", "=q3=Lorekeeper's Staff", "=ds=", "500 #alliance#", ""};
- { 17, 19573, "", "=q3=Lorekeeper's Staff", "=ds=", "700 #alliance#", ""};
- { 18, 19572, "", "=q3=Lorekeeper's Staff", "=ds=", "1000 #alliance#", ""};
- { 19, 19571, "", "=q3=Lorekeeper's Staff", "=ds=", "5000 #alliance#", ""};
- { 20, 19570, "", "=q3=Lorekeeper's Staff", "=ds=", "15000 #alliance#", ""};
- { 22, 20438, "", "=q3=Outrunner's Bow", "=ds=", "300 #alliance#", ""};
- { 23, 19565, "", "=q3=Outrunner's Bow", "=ds=", "400 #alliance#", ""};
- { 24, 19564, "", "=q3=Outrunner's Bow", "=ds=", "500 #alliance#", ""};
- { 25, 19563, "", "=q3=Outrunner's Bow", "=ds=", "700 #alliance#", ""};
- { 26, 19562, "", "=q3=Outrunner's Bow", "=ds=", "6000 #alliance#", ""};
- };
- {
- Name = BabbleInventory["Armor"];
- { 1, 19597, "", "=q4=Dryad's Wrist Bindings", "=ds=", "500 #alliance#", ""};
- { 2, 19596, "", "=q4=Dryad's Wrist Bindings", "=ds=", "700 #alliance#", ""};
- { 3, 19595, "", "=q4=Dryad's Wrist Bindings", "=ds=", "5000 #alliance#", ""};
- { 5, 19590, "", "=q4=Forest Stalker's Bracers", "=ds=", "500 #alliance#", ""};
- { 6, 19589, "", "=q4=Forest Stalker's Bracers", "=ds=", "700 #alliance#", ""};
- { 7, 19587, "", "=q4=Forest Stalker's Bracers", "=ds=", "5000 #alliance#", ""};
- { 9, 19584, "", "=q4=Windtalker's Wristguards", "=ds=", "500 #alliance#", ""};
- { 10, 19583, "", "=q4=Windtalker's Wristguards", "=ds=", "700 #alliance#", ""};
- { 11, 19582, "", "=q4=Windtalker's Wristguards", "=ds=", "5000 #alliance#", ""};
- { 13, 19581, "", "=q4=Berserker Bracers", "=ds=", "500 #alliance#", ""};
- { 14, 19580, "", "=q4=Berserker Bracers", "=ds=", "700 #alliance#", ""};
- { 15, 19578, "", "=q4=Berserker Bracers", "=ds=", "5000 #alliance#", ""};
- { 16, 22752, "", "=q4=Sentinel's Silk Leggings", "=ds=", "9000 #alliance#", ""};
- { 18, 22749, "", "=q4=Sentinel's Leather Pants", "=ds=", "9000 #alliance#", ""};
- { 19, 22750, "", "=q4=Sentinel's Lizardhide Pants", "=ds=", "9000 #alliance#", ""};
- { 21, 22748, "", "=q4=Sentinel's Chain Leggings", "=ds=", "9000 #alliance#", ""};
- { 22, 30497, "", "=q4=Sentinel's Mail Leggings", "=ds=", "9000 #alliance#", ""};
- { 24, 22753, "", "=q4=Sentinel's Lamellar Legguards", "=ds=", "9000 #alliance#", ""};
- { 25, 22672, "", "=q4=Sentinel's Plate Legguards", "=ds=", "9000 #alliance#", ""};
- };
+ {
+ Name = BabbleBoss["Chief Ukorz Sandscalp"];
+ { 1, 9479, "", "=q3=Embrace of the Lycan", "=ds=#s1#, #a2#", "", "8.97%" };
+ { 2, 9476, "", "=q3=Big Bad Pauldrons", "=ds=#s3#, #a4#", "", "28.17%" };
+ { 3, 9478, "", "=q3=Ripsaw", "=ds=#h1#, #w1#", "", "19.78%" };
+ { 4, 9477, "", "=q3=The Chief's Enforcer", "=ds=#w9#", "", "22.33%" };
+ { 6, 11086, "", "=q3=Jang'thraze the Protector", "=ds=#h3#, #w10#", "", "1.72%" };
+ { 7, 9372, "", "=q4=Sul'thraze the Lasher", "=ds=#h2# #w10#" };
};
-
- AtlasLoot_Data["WSG_H"] = {
- Name = BabbleZone["Warsong Gulch"].." (Horde)";
- {
- Name = AL["Misc. Rewards"];
- { 1, 19505, "", "=q1=Warsong Battle Tabard", "=ds=", "12000 #faction#", ""};
- { 2, 17351, "", "=q1=Major Mana Draught", "=ds=", "10 #silver# 2 #faction#", ""};
- { 3, 17352, "", "=q1=Superior Mana Draught", "=ds=", "5 #silver# 5 #faction#", ""};
- { 4, 19061, "", "=q1=Warsong Gulch Iron Ration", "=ds=", "15 #silver#", ""};
- { 5, 19066, "", "=q1=Warsong Gulch Runecloth Bandage", "=ds=", "20 #silver#", ""};
- { 6, 19068, "", "=q1=Warsong Gulch Silk Bandage", "=ds=", "10 #silver#", ""};
- };
- {
- Name = AL["Accessories"];
- { 1, 20427, "", "=q3=Battle Healer's Cloak", "=ds=", "100 #horde#", ""};
- { 2, 19529, "", "=q3=Battle Healer's Cloak", "=ds=", "100 #horde#", ""};
- { 3, 19528, "", "=q3=Battle Healer's Cloak", "=ds=", "300 #horde#", ""};
- { 4, 19527, "", "=q3=Battle Healer's Cloak", "=ds=", "300 #horde#", ""};
- { 5, 19526, "", "=q3=Battle Healer's Cloak", "=ds=", "1600 #horde#", ""};
- { 7, 20442, "", "=q3=Scout's Medallion", "=ds=", "100 #horde#", ""};
- { 8, 19537, "", "=q3=Scout's Medallion", "=ds=", "100 #horde#", ""};
- { 9, 19536, "", "=q3=Scout's Medallion", "=ds=", "300 #horde#", ""};
- { 10, 19535, "", "=q3=Scout's Medallion", "=ds=", "300 #horde#", ""};
- { 11, 19534, "", "=q3=Scout's Medallion", "=ds=", "1600 #horde#", ""};
- { 13, 21568, "", "=q3=Rune of Duty", "=ds=", "300 #horde#", ""};
- { 14, 21567, "", "=q3=Rune of Duty", "=ds=", "300 #horde#", ""};
- { 16, 20426, "", "=q3=Advisor's Ring", "=ds=", "100 #horde#", ""};
- { 17, 19521, "", "=q3=Advisor's Ring", "=ds=", "100 #horde#", ""};
- { 18, 19520, "", "=q3=Advisor's Ring", "=ds=", "300 #horde#", ""};
- { 19, 19519, "", "=q3=Advisor's Ring", "=ds=", "300 #horde#", ""};
- { 20, 19518, "", "=q3=Advisor's Ring", "=ds=", "1600 #horde#", ""};
- { 22, 20429, "", "=q3=Legionnaire's Band", "=ds=", "100 #horde#", ""};
- { 23, 19513, "", "=q3=Legionnaire's Band", "=ds=", "100 #horde#", ""};
- { 24, 19512, "", "=q3=Legionnaire's Band", "=ds=", "300 #horde#", ""};
- { 25, 19511, "", "=q3=Legionnaire's Band", "=ds=", "300 #horde#", ""};
- { 26, 19510, "", "=q3=Legionnaire's Band", "=ds=", "1600 #horde#", ""};
- { 28, 21566, "", "=q3=Rune of Perfection", "=ds=", "300 #horde#", ""};
- { 29, 21565, "", "=q3=Rune of Perfection", "=ds=", "300 #horde#", ""};
- };
- {
- Name = AL["Weapons"];
- { 1, 20441, "", "=q3=Scout's Blade", "=ds=", "300 #horde#", ""};
- { 2, 19545, "", "=q3=Scout's Blade", "=ds=", "400 #horde#", ""};
- { 3, 19544, "", "=q3=Scout's Blade", "=ds=", "500 #horde#", ""};
- { 4, 19543, "", "=q3=Scout's Blade", "=ds=", "700 #horde#", ""};
- { 5, 19542, "", "=q3=Scout's Blade", "=ds=", "6000 #horde#", ""};
- { 7, 20430, "", "=q3=Legionnaire's Sword", "=ds=", "300 #horde#", ""};
- { 8, 19553, "", "=q3=Legionnaire's Sword", "=ds=", "400 #horde#", ""};
- { 9, 19552, "", "=q3=Legionnaire's Sword", "=ds=", "500 #horde#", ""};
- { 10, 19551, "", "=q3=Legionnaire's Sword", "=ds=", "700 #horde#", ""};
- { 11, 19550, "", "=q3=Legionnaire's Sword", "=ds=", "6000 #horde#", ""};
- { 16, 20425, "", "=q3=Advisor's Gnarled Staff", "=ds=", "500 #horde#", ""};
- { 17, 19569, "", "=q3=Advisor's Gnarled Staff", "=ds=", "700 #horde#", ""};
- { 18, 19568, "", "=q3=Advisor's Gnarled Staff", "=ds=", "1000 #horde#", ""};
- { 19, 19567, "", "=q3=Advisor's Gnarled Staff", "=ds=", "5000 #horde#", ""};
- { 20, 19566, "", "=q3=Advisor's Gnarled Staff", "=ds=", "15000 #horde#", ""};
- { 22, 20437, "", "=q3=Outrider's Bow", "=ds=", "300 #horde#", ""};
- { 23, 19561, "", "=q3=Outrider's Bow", "=ds=", "400 #horde#", ""};
- { 24, 19560, "", "=q3=Outrider's Bow", "=ds=", "500 #horde#", ""};
- { 25, 19559, "", "=q3=Outrider's Bow", "=ds=", "700 #horde#", ""};
- { 26, 19558, "", "=q3=Outrider's Bow", "=ds=", "6000 #horde#", ""};
- };
- {
- Name = BabbleInventory["Armor"];
- { 1, 19597, "", "=q4=Dryad's Wrist Bindings", "=ds=", "500 #horde#", ""};
- { 2, 19596, "", "=q4=Dryad's Wrist Bindings", "=ds=", "700 #horde#", ""};
- { 3, 19595, "", "=q4=Dryad's Wrist Bindings", "=ds=", "5000 #horde#", ""};
- { 5, 19590, "", "=q4=Forest Stalker's Bracers", "=ds=", "500 #horde#", ""};
- { 6, 19589, "", "=q4=Forest Stalker's Bracers", "=ds=", "700 #horde#", ""};
- { 7, 19587, "", "=q4=Forest Stalker's Bracers", "=ds=", "5000 #horde#", ""};
- { 9, 19584, "", "=q4=Windtalker's Wristguards", "=ds=", "500 #horde#", ""};
- { 10, 19583, "", "=q4=Windtalker's Wristguards", "=ds=", "700 #horde#", ""};
- { 11, 19582, "", "=q4=Windtalker's Wristguards", "=ds=", "5000 #horde#", ""};
- { 13, 19581, "", "=q4=Berserker Bracers", "=ds=", "500 #horde#", ""};
- { 14, 19580, "", "=q4=Berserker Bracers", "=ds=", "700 #horde#", ""};
- { 15, 19578, "", "=q4=Berserker Bracers", "=ds=", "5000 #horde#", ""};
- { 16, 22747, "", "=q4=Outrider's Silk Leggings", "=ds=", "9000 #horde#", ""};
- { 18, 22740, "", "=q4=Outrider's Leather Pants", "=ds=", "9000 #horde#", ""};
- { 19, 22741, "", "=q4=Outrider's Lizardhide Pants", "=ds=", "9000 #horde#", ""};
- { 21, 22673, "", "=q4=Outrider's Chain Leggings", "=ds=", "9000 #horde#", ""};
- { 22, 22676, "", "=q4=Outrider's Mail Leggings", "=ds=", "9000 #horde#", ""};
- { 24, 30498, "", "=q4=Outrider's Lamellar Legguards", "=ds=", "9000 #horde#", ""};
- { 25, 22651, "", "=q4=Outrider's Plate Legguards", "=ds=", "9000 #horde#", ""};
- };
+ {
+ Name = BabbleBoss["Zerillis"];
+ { 1, 12470, "", "=q3=Sandstalker Ankleguards", "=ds=#s12#, #a2#", "", "15.55%" };
};
-
- ---------------------------------------
- --- PvP Level 60 Rare and Epic Sets ---
- ---------------------------------------
- AtlasLoot_Data["PVPDruid"] = {
- Name = AL["Druid"];
- {
- Name = AL["Rare Set"].." (Alliance)";
- { 1, 16424, "", "=q3=Lieutenant Commander's Dragonhide Headguard, =ds=", "9435 #alliance#", ""};
- { 2, 16423, "", "=q3=Lieutenant Commander's Dragonhide Shoulders, =ds=", "6885 #alliance#", ""};
- { 3, 16421, "", "=q3=Knight-Captain's Dragonhide Chestpiece, =ds=", "9435 #alliance#", ""};
- { 4, 16397, "", "=q3=Knight-Lieutenant's Dragonhide Grips, =ds=", "5000 #alliance#", ""};
- { 5, 16422, "", "=q3=Knight-Captain's Dragonhide Leggings, =ds=", "9435 #alliance#", ""};
- { 6, 16393, "", "=q3=Knight-Lieutenant's Dragonhide Treads, =ds=", "5000 #alliance#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Alliance)";
- { 1, 23308, "", "=q3=Lieutenant Commander's Dragonhide Headguard", "=ds=", "24000 #alliance#", ""};
- { 2, 23309, "", "=q3=Lieutenant Commander's Dragonhide Shoulders", "=ds=", "14000 #alliance#", ""};
- { 3, 23294, "", "=q3=Knight-Captain's Dragonhide Chestpiece", "=ds=", "24000 #alliance#", ""};
- { 4, 23280, "", "=q3=Knight-Lieutenant's Dragonhide Grips", "=ds=", "14000 #alliance#", ""};
- { 5, 23295, "", "=q3=Knight-Captain's Dragonhide Leggings", "=ds=", "24000 #alliance#", ""};
- { 6, 23281, "", "=q3=Knight-Lieutenant's Dragonhide Treads", "=ds=", "14000 #alliance#", ""};
- };
- {
- Name = AL["Epic Set"].." (Alliance)";
- { 1, 16451, "", "=q4=Field Marshal's Dragonhide Helmet", "=ds=", "68200 #alliance#", ""};
- { 2, 16449, "", "=q4=Field Marshal's Dragonhide Spaulders", "=ds=", "52200 #alliance#", ""};
- { 3, 16452, "", "=q4=Field Marshal's Dragonhide Breastplate", "=ds=", "68200 #alliance#", ""};
- { 4, 16448, "", "=q4=Marshal's Dragonhide Gauntlets", "=ds=", "52200 #alliance#", ""};
- { 5, 16450, "", "=q4=Marshal's Dragonhide Legguards", "=ds=", "68200 #alliance#", ""};
- { 6, 16459, "", "=q4=Marshal's Dragonhide Boots", "=ds=", "52200 #alliance#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Alliance)";
- { 1, 6116550, "", "=q4=Grand Marshal's Chain Helm, =ds=", "2370 #arena# #horde#", ""};
- { 2, 6116551, "", "=q4=Grand Marshal's Chain Spaulders, =ds=", "1930 #arena# #horde#", ""};
- { 3, 6116549, "", "=q4=Grand Marshal's Chain Breastplate, =ds=", "2370 #arena# #horde#", ""};
- { 4, 6116555, "", "=q4=Grand Marshal's Chain Grips, =ds=", "1430 #arena# #horde#", ""};
- { 5, 6116552, "", "=q4=Grand Marshal's Chain Legguards, =ds=", "2370 #arena# #horde#", ""};
- { 6, 6116554, "", "=q4=Grand Marshal's Chain Boots, =ds=", "1430 #arena# #horde#", ""};
- };
- {
- Name = AL["Rare Set"].." (Horde)";
- { 1, 16503, "", "=q3=Champion's Dragonhide Headguard, =ds=", "9435 #horde#", ""};
- { 2, 16501, "", "=q3=Champion's Dragonhide Shoulders, =ds=", "6885 #horde#", ""};
- { 3, 16504, "", "=q3=Legionnaire's Dragonhide Chestpiece, =ds=", "9435 #horde#", ""};
- { 4, 16496, "", "=q3=Blood Guard's Dragonhide Grips, =ds=", "5000 #horde#", ""};
- { 5, 16502, "", "=q3=Legionnaire's Dragonhide Leggings, =ds=", "9435 #horde#", ""};
- { 6, 16494, "", "=q3=Blood Guard's Dragonhide Treads, =ds=", "5000 #horde#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Horde)";
- { 1, 23253, "", "=q3=Champion's Dragonhide Headguard", "=ds=", "24000 #horde#", ""};
- { 2, 23254, "", "=q3=Champion's Dragonhide Shoulders", "=ds=", "14000 #horde#", ""};
- { 3, 22877, "", "=q3=Legionnaire's Dragonhide Chestpiece", "=ds=", "24000 #horde#", ""};
- { 4, 22863, "", "=q3=Blood Guard's Dragonhide Grips", "=ds=", "14000 #horde#", ""};
- { 5, 22878, "", "=q3=Legionnaire's Dragonhide Leggings", "=ds=", "24000 #horde#", ""};
- { 6, 22852, "", "=q3=Blood Guard's Dragonhide Treads", "=ds=", "14000 #horde#", ""};
- };
- {
- Name = AL["Epic Set"].." (Horde)";
- { 1, 16550, "", "=q4=Warlord's Dragonhide Helmet", "=ds=", "68200 #horde#", ""};
- { 2, 16551, "", "=q4=Warlord's Dragonhide Epaulets", "=ds=", "52200 #horde#", ""};
- { 3, 16549, "", "=q4=Warlord's Dragonhide Hauberk", "=ds=", "68200 #horde#", ""};
- { 4, 16555, "", "=q4=General's Dragonhide Gloves", "=ds=", "52200 #horde#", ""};
- { 5, 16552, "", "=q4=General's Dragonhide Leggings", "=ds=", "68200 #horde#", ""};
- { 6, 16554, "", "=q4=General's Dragonhide Boots", "=ds=", "52200 #horde#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Horde)";
- { 1, 6116451, "", "=q4=High Warlord's Dragonhide Helmet, =ds=", "2370 #arena# #alliance#", ""};
- { 2, 6116449, "", "=q4=High Warlord's Dragonhide Epaulets, =ds=", "1930 #arena# #alliance#", ""};
- { 3, 6116452, "", "=q4=High Warlord's Dragonhide Hauberk, =ds=", "2370 #arena# #alliance#", ""};
- { 4, 6116448, "", "=q4=High High Warlord's Dragonhide Gloves, =ds=", "1430 #arena# #alliance#", ""};
- { 5, 6116450, "", "=q4=High High Warlord's Dragonhide Leggings, =ds=", "2370 #arena# #alliance#", ""};
- { 6, 6116459, "", "=q4=High High Warlord's Dragonhide Boots, =ds=", "1430 #arena# #alliance#", ""};
- };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 9512, "", "=q3=Blackmetal Cape", "=ds=#s4#", "", "0.02%" };
+ { 2, 9484, "", "=q3=Spellshock Leggings", "=ds=#s11#, #a1#", "", "0.01%" };
+ { 3, 862, "", "=q3=Runed Ring", "=ds=#s13# =q2=#m16#", "", "0.02%" };
+ { 4, 6440, "", "=q3=Brainlash", "=ds=#s13#", "", "0.01%" };
+ { 6, 9243, "", "=q2=Shriveled Heart", "=ds=#s2#" };
+ { 8, 9523, "", "=q1=Troll Temper", "=ds=#m3#" };
+ { 9, 9238, "", "=q1=Uncracked Scarab Shell", "=ds=#m3#" };
+ { 16, 5616, "", "=q3=Gutwrencher", "=ds=#h1#, #w4#", "", "0.01%" };
+ { 17, 9511, "", "=q3=Bloodletter Scalpel", "=ds=#h1#, #w10#", "", "0.01%" };
+ { 18, 9481, "", "=q3=The Minotaur", "=ds=#h2#, #w1#", "", "0.01%" };
+ { 19, 9480, "", "=q3=Eyegouger", "=ds=#w7#", "", "0.01%" };
+ { 20, 9482, "", "=q3=Witch Doctor's Cane", "=ds=#w9#", "", "0.01%" };
+ { 21, 9483, "", "=q3=Flaming Incinerator", "=ds=#w12#", "", "0.01%" };
+ { 22, 2040, "", "=q3=Troll Protector", "=ds=#w8#", "", "0.02%" };
};
+};
+-----------------
+--- Zul'Gurub ---
+-----------------
+AtlasLoot_Data["ZulGurub"] = {
+ Name = BabbleZone["Zul'Gurub"];
+ Type = "ClassicRaid";
+ Map = "ZulGurub";
+ {
+ Name = BabbleBoss["High Priestess Jeklik"];
+ { 1, 19918, "", "=q4=Jeklik's Crusher", "=ds=#h2#, #w6#", "", "3.96%" };
+ { 2, 19928, "", "=q3=Animist's Spaulders", "=ds=#s3#, #a2#", "", "3.39%" };
+ { 3, 20262, "", "=q3=Seafury Boots", "=ds=#s12#, #a3#", "", "4.31%" };
+ { 4, 20265, "", "=q3=Peacekeeper Boots", "=ds=#s12#, #a4#", "", "6.99%" };
+ { 5, 19923, "", "=q3=Jeklik's Opaline Talisman", "=ds=#s2#", "", "12.22%" };
+ { 6, 19920, "", "=q3=Primalist's Band", "=ds=#s13#", "", "11.89%" };
+ { 7, 19915, "", "=q3=Zulian Defender", "=ds=#w8#", "", " 11.36%" };
+ { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1" };
+ { 18, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.8%" };
+ { 19, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["High Priest Venoxis"];
+ { 1, 19904, "", "=q4=Runed Bloodstained Hauberk", "=ds=#s5#, #a3#", "", "3.70%" };
+ { 2, 19903, "", "=q4=Fang of Venoxis", "=ds=#h3#, #w4#", "", "3.68%" };
+ { 4, 19907, "", "=q3=Zulian Tigerhide Cloak", "=ds=#s4#", "", "12.09%" };
+ { 5, 19906, "", "=q3=Blooddrenched Footpads", "=ds=#s12#, #a2#", "", "11.36%" };
+ { 6, 19905, "", "=q3=Zanzil's Band", "=ds=#s13#", "", "6.99%" };
+ { 7, 19900, "", "=q3=Zulian Stone Axe", "=ds=#h2#, #w1#", "", "11.89%" };
+ { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1" };
+ { 18, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "6.0%" };
+ { 19, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%" };
+ { 21, 22216, "", "=q1=Venoxis's Venom Sac", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["High Priestess Mar'li"];
+ { 1, 20032, "", "=q4=Flowing Ritual Robes", "=ds=#s5#, #a1#", "", "4.46%" };
+ { 2, 19927, "", "=q4=Mar'li's Touch", "=ds=#w12#", "", "4.35%" };
+ { 3, 19919, "", "=q3=Bloodstained Greaves", "=ds=#s12#, #a3#", "", "11.89%" };
+ { 4, 19871, "", "=q3=Talisman of Protection", "=ds=#s2#", "", "11.36%" };
+ { 5, 19925, "", "=q3=Band of Jin", "=ds=#s13#", "", " 6.99%" };
+ { 6, 19930, "", "=q3=Mar'li's Eye", "=ds=#s14#", "", "12.09%" };
+ { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1" };
+ { 18, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "7.4%" };
+ { 19, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Bloodlord Mandokir"];
+ { 1, 19867, "", "=q4=Bloodlord's Defender", "=ds=#h1#, #w10#", "", "5.83%" };
+ { 2, 19866, "", "=q4=Warblade of the Hakkari", "=ds=#h4#, #w10#", "", "3.96%" };
+ { 3, 19874, "", "=q4=Halberd of Smiting", "=ds=#w7#", "", "6.35%" };
+ { 4, 20038, "", "=q4=Mandokir's Sting", "=ds=#w2#", "", "5.96%" };
+ { 5, 19872, "", "=q4=Swift Razzashi Raptor", "=ds=#e12#", "", "0.43%" };
+ { 7, 19870, "", "=q3=Hakkari Loa Cloak", "=ds=#s4#", "", "12.54%" };
+ { 8, 19895, "", "=q3=Bloodtinged Kilt", "=ds=#s11#, #a1#", "", "13.50%" };
+ { 9, 19869, "", "=q3=Blooddrenched Grips", "=ds=#s9#, #a2#", "", "12.87%" };
+ { 10, 19877, "", "=q3=Animist's Leggings", "=ds=#s11#, #a2#", "", "12.14%" };
+ { 11, 19878, "", "=q3=Bloodsoaked Pauldrons", "=ds=#s9#, #a4#", "", "12.31%" };
+ { 12, 19873, "", "=q3=Overlord's Crimson Band", "=ds=#s13#", "", "12.28%" };
+ { 13, 19893, "", "=q3=Zanzil's Seal", "=ds=#s13#", "", "13.11%" };
+ { 14, 19863, "", "=q3=Primalist's Seal", "=ds=#s13#", "", "12.32%" };
+ { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1" };
+ { 18, 22637, "", "=q3=Primal Hakkari Idol", "=ds=#m3#" };
+ { 19, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "9.4%" };
+ };
+ {
+ Name = BabbleZone["Zul'Gurub"];
+ { 1, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Gri'lek"], "" };
+ { 2, 19961, "", "=q3=Gri'lek's Grinder", "=ds=#h1#, #w6#", "", "43.90%" };
+ { 3, 19962, "", "=q3=Gri'lek's Carver", "=ds=#h2#, #w1#", "", "41.99%" };
+ { 4, 19939, "", "=q2=Gri'lek's Blood", "=ds=#m3#", "", "100%" };
+ { 6, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Hazza'rah"], "" };
+ { 7, 19968, "", "=q3=Fiery Retributer", "=ds=#h1#, #w10#", "", "38.37%" };
+ { 8, 19967, "", "=q3=Thoughtblighter", "=ds=#w12#", "", "45.49%" };
+ { 9, 19942, "", "=q2=Hazza'rah's Dream Thread", "=ds=#m3#", "", "100%" };
+ { 16, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Renataki"], "" };
+ { 17, 19964, "", "=q3=Renataki's Soul Conduit", "=ds=#h3#, #w10#", "", "40.06%" };
+ { 18, 19963, "", "=q3=Pitchfork of Madness", "=ds=#w7#", "", "45.51%" };
+ { 19, 19940, "", "=q2=Renataki's Tooth", "=ds=#m3#", "", "100%" };
+ { 21, 0, "INV_Box_01", "=q6=" .. BabbleBoss["Wushoolay"], "" };
+ { 22, 19965, "", "=q3=Wushoolay's Poker", "=ds=#h3#, #w4#", "", "45.21%" };
+ { 23, 19993, "", "=q3=Hoodoo Hunting Bow", "=ds=#w2#", "", "40.96%" };
+ { 24, 19941, "", "=q2=Wushoolay's Mane", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Gahz'ranka"];
+ { 1, 19945, "", "=q4=Foror's Eyepatch", "=ds=#s1#, #a2#", "", "8,82%" };
+ { 2, 19944, "", "=q4=Nat Pagle's Fish Terminator", "=ds=#w9#", "", "2.39%" };
+ { 4, 19947, "", "=q3=Nat Pagle's Broken Reel", "=ds=#s14#", "", "28.20%" };
+ { 5, 19946, "", "=q3=Tigule's Harpoon", "=ds=#w7#", "", "29.22%" };
+ { 7, 22739, "", "=q3=Tome of Polymorph: Turtle", "=ds=#e10#, =q1=#m1# =ds=#c3#" };
+ };
+ {
+ Name = BabbleBoss["High Priest Thekal"];
+ { 1, 19897, "", "=q4=Betrayer's Boots", "=ds=#s12#, #a1#", "", "5.83%" };
+ { 2, 19896, "", "=q4=Thekal's Grasp", "=ds=#h3#, #w13#", "", "4.23%" };
+ { 3, 19902, "", "=q4=Swift Zulian Tiger", "=ds=#e12#", "", "0.70%" };
+ { 5, 19898, "", "=q3=Seal of Jin", "=ds=#s13#", "", "" };
+ { 6, 19899, "", "=q3=Ritualistic Legguards", "=ds=#s11#, #a1#", "", "13.41%" };
+ { 7, 20260, "", "=q3=Seafury Leggings", "=ds=#s11#, #a3#", "", "4.30%" };
+ { 8, 20266, "", "=q3=Peacekeeper Leggings", "=ds=#s11#, #a4#", "", "8.69%" };
+ { 9, 19901, "", "=q3=Zulian Slicer", "=ds=#h1#, #w10#, =q1=#e18#", "", "13.36%" };
+ { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1" };
+ { 18, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.3%" };
+ { 19, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["High Priestess Arlokk"];
+ { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1" };
+ { 18, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "5.6%" };
+ { 19, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%" };
+ { 1, 19910, "", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#", "", "3.62%" };
+ { 2, 19909, "", "=q4=Will of Arlokk", "=ds=#w9#", "", "5.14%" };
+ { 4, 19913, "", "=q3=Bloodsoaked Greaves", "=ds=#s12#, #a4#", "", "13.29%" };
+ { 5, 19912, "", "=q3=Overlord's Onyx Band", "=ds=#s13#", "", "13.95%" };
+ { 6, 19922, "", "=q3=Arlokk's Hoodoo Stick", "=ds=#s15#", "", "13.66%" };
+ { 7, 19914, "", "=q3=Panther Hide Sack", "=ds=#m14# #e1#", "", "14.03%" };
+ };
+ {
+ Name = BabbleBoss["Jin'do the Hexxer"];
+ { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1" };
+ { 18, 22637, "", "=q3=Primal Hakkari Idol", "=ds=#m3#" };
+ { 19, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.4%" };
+ { 1, 19885, "", "=q4=Jin'do's Evil Eye", "=ds=#s2#", "", "6.82%" };
+ { 2, 19891, "", "=q4=Jin'do's Bag of Whammies", "=ds=#s15#", "", "7.70%" };
+ { 3, 19890, "", "=q4=Jin'do's Hexxer", "=ds=#h3#, #w6#", "", "8.08%" };
+ { 4, 19884, "", "=q4=Jin'do's Judgement", "=ds=#w9#", "", "8.36%" };
+ { 6, 19888, "", "=q3=Overlord's Embrace", "=ds=#s4#", "", "12.72%" };
+ { 7, 19886, "", "=q3=The Hexxer's Cover", "=ds=#s1#, #a1#", "", "12.11%" };
+ { 8, 19929, "", "=q3=Bloodtinged Gloves", "=ds=#s9#, #a1#", "", "11.75%" };
+ { 9, 19889, "", "=q3=Blooddrenched Leggings", "=ds=#s11#, #a2#", "", "11.97%" };
+ { 10, 19892, "", "=q3=Animist's Boots", "=ds=#s12#, #a2#", "", "12.28%" };
+ { 11, 19875, "", "=q3=Bloodstained Coif", "=ds=#s1#, #a3#", "", "13.73%" };
+ { 12, 19887, "", "=q3=Bloodstained Legplates", "=ds=#s11#, #a3#", "", "11.11%" };
+ { 13, 19894, "", "=q3=Bloodsoaked Gauntlets", "=ds=#s9#, #a4#", "", "12.93%" };
+ };
+ {
+ Name = BabbleBoss["Hakkar"];
+ { 1, 19857, "", "=q4=Cloak of Consumption", "=ds=#s4#", "", "11.65%" };
+ { 2, 20257, "", "=q4=Seafury Gauntlets", "=ds=#s9#, #a3#", "", "4.11%" };
+ { 3, 20264, "", "=q4=Peacekeeper Gauntlets", "=ds=#s9#, #a4#", "", "" };
+ { 4, 19855, "", "=q4=Bloodsoaked Legplates", "=ds=#s11#, #a4#", "", "10.52%" };
+ { 5, 19876, "", "=q4=Soul Corrupter's Necklace", "=ds=#s2#", "", "10.11%" };
+ { 6, 19856, "", "=q4=The Eye of Hakkar", "=ds=#s2#", "", "12.02%" };
+ { 8, 19859, "", "=q4=Fang of the Faceless", "=ds=#h1#, #w4#", "", "7.33%" };
+ { 9, 19864, "", "=q4=Bloodcaller", "=ds=#h3#, #w10#", "", "7.69%" };
+ { 10, 19865, "", "=q4=Warblade of the Hakkari", "=ds=#h3#, #w10#", "", "3.67%" };
+ { 11, 19854, "", "=q4=Zin'rokh, Destroyer of Worlds", "=ds=#h2#, #w10#", "", "6.78%" };
+ { 12, 19852, "", "=q4=Ancient Hakkari Manslayer", "=ds=#h1#, #w1#", "", "6.62%" };
+ { 13, 19862, "", "=q4=Aegis of the Blood God", "=ds=#w8#", "", "9.99%" };
+ { 14, 19853, "", "=q4=Gurubashi Dwarf Destroyer", "=ds=#w5#", "", "6.12%" };
+ { 15, 19861, "", "=q4=Touch of Chaos", "=ds=#w12#", "", "7.24%" };
+ { 16, 19802, "", "=q4=Heart of Hakkar", "=ds=#m2#", "", "100%" };
+ { 17, 19950, "", "=q4=Zandalarian Hero Charm", "=q1=#m4#: =ds=#s14#" };
+ { 18, 19949, "", "=q4=Zandalarian Hero Medallion", "=q1=#m4#: =ds=#s14#" };
+ { 19, 19948, "", "=q4=Zandalarian Hero Badge", "=q1=#m4#: =ds=#s14#" };
+ { 21, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "34.3%" };
+ };
+ {
+ Name = "Muddy Churning Waters";
+ { 1, 19975, "", "=q1=Zulian Mudskunk", "=ds=#e21#" };
+ };
+ {
+ Name = "Shared ZG Priest Drops";
+ { 1, 22721, "", "=q4=Band of Servitude", "=ds=#s13#" };
+ { 2, 22722, "", "=q4=Seal of the Gurubashi Berserker", "=ds=#s13#" };
+ { 4, 22711, "", "=q3=Cloak of the Hakkari Worshipers", "=ds=#s4#" };
+ { 5, 22712, "", "=q3=Might of the Tribe", "=ds=#s4#" };
+ { 6, 22720, "", "=q3=Zulian Headdress", "=ds=#s1#, #a1#" };
+ { 7, 22716, "", "=q3=Belt of Untapped Power", "=ds=#s10#, #a1#" };
+ { 8, 22718, "", "=q3=Blooddrenched Mask", "=ds=#s1#, #a2#" };
+ { 9, 22715, "", "=q3=Gloves of the Tormented", "=ds=#s9#, #a3#" };
+ { 10, 22714, "", "=q3=Sacrificial Gauntlets", "=ds=#s9#, #a4#" };
+ { 11, 22713, "", "=q3=Zulian Scepter of Rites", "=ds=#h3#, #w6#" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 20259, "", "=q3=Shadow Panther Hide Gloves", "=ds=#s9#, #a2#" };
+ { 2, 20261, "", "=q3=Shadow Panther Hide Belt", "=ds=#s10#, #a2#" };
+ { 3, 20263, "", "=q3=Gurubashi Helm", "=ds=#s1#, #a4#" };
+ { 4, 19908, "", "=q3=Sceptre of Smiting", "=ds=#h1#, #w6#" };
+ { 5, 19921, "", "=q3=Zulian Hacker", "=ds=#h1#, #w1#" };
+ { 6, 20258, "", "=q3=Zulian Ceremonial Staff", "=ds=#w9#" };
+ { 7, 19727, "", "=q3=Blood Scythe", "=ds=#e19#", "", "0.02%" };
+ { 8, 48126, "", "=q1=Razzashi Hatchling", "=ds=#e13#" };
+ { 10, 19726, "", "=q2=Bloodvine", "=ds=#e8#", "", "" };
+ { 11, 19774, "", "=q2=Souldarite", "=ds=#e8#", "", "" };
+ { 12, 19767, "", "=q1=Primal Bat Leather", "=ds=#e8#", "", "" };
+ { 13, 19768, "", "=q1=Primal Tiger Leather", "=ds=#e8#", "", "" };
+ { 16, 19821, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c1#", "", "0.01%" };
+ { 17, 19816, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c2#", "", "0.01%" };
+ { 18, 19818, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c3#", "", "0.01%" };
+ { 19, 19815, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c4#", "", "0.01%" };
+ { 20, 19820, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c5#", "", "0.01%" };
+ { 21, 19814, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c6#", "", "0.01%" };
+ { 22, 19817, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c7#", "", "0.01%" };
+ { 23, 19819, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c8#", "", "0.01%" };
+ { 24, 19813, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c9#", "", "0.01%" };
+ };
+ {
+ Name = "Coin's and Bijou's";
+ { 1, 19708, "", "=q3=Blue Hakkari Bijou", "=ds=#e15#", "", "1.48%" };
+ { 2, 19713, "", "=q3=Bronze Hakkari Bijou", "=ds=#e15#", "", "1.57%" };
+ { 3, 19715, "", "=q3=Gold Hakkari Bijou", "=ds=#e15#", "", "1.63%" };
+ { 4, 19711, "", "=q3=Green Hakkari Bijou", "=ds=#e15#", "", "1.67%" };
+ { 5, 19710, "", "=q3=Orange Hakkari Bijou", "=ds=#e15#", "", "1.76%" };
+ { 6, 19712, "", "=q3=Purple Hakkari Bijou", "=ds=#e15#", "", "1.67%" };
+ { 7, 19707, "", "=q3=Red Hakkari Bijou", "=ds=#e15#", "", "1.63%" };
+ { 8, 19714, "", "=q3=Silver Hakkari Bijou", "=ds=#e15#", "", "1.59%" };
+ { 9, 19709, "", "=q3=Yellow Hakkari Bijou", "=ds=#e15#", "", "1.50%" };
+ { 16, 19706, "", "=q2=Bloodscalp Coin", "=ds=#e15#", "", "3.01%" };
+ { 17, 19701, "", "=q2=Gurubashi Coin", "=ds=#e15#", "", "3.12%" };
+ { 18, 19700, "", "=q2=Hakkari Coin", "=ds=#e15#", "", "3.19%" };
+ { 19, 19699, "", "=q2=Razzashi Coin", "=ds=#e15#", "", "3.36%" };
+ { 20, 19704, "", "=q2=Sandfury Coin", "=ds=#e15#", "", "3.47%" };
+ { 21, 19705, "", "=q2=Skullsplitter Coin", "=ds=#e15#", "", "3.32%" };
+ { 22, 19702, "", "=q2=Vilebranch Coin", "=ds=#e15#", "", "3.27%" };
+ { 23, 19703, "", "=q2=Witherbark Coin", "=ds=#e15#", "", "3.27%" };
+ { 24, 19698, "", "=q2=Zulian Coin", "=ds=#e15#", "", "3.01%" };
+ };
+ {
+ Name = "ZG Enchants";
+ { 1, 19790, "", "=q3=Animist's Caress", "=q1=#m1# =ds=#c1#" };
+ { 2, 19785, "", "=q3=Falcon's Call", "=q1=#m1# =ds=#c2#" };
+ { 3, 19787, "", "=q3=Presence of Sight", "=q1=#m1# =ds=#c3#" };
+ { 4, 19783, "", "=q3=Syncretist's Sigil", "=q1=#m1# =ds=#c4#" };
+ { 5, 19789, "", "=q3=Prophetic Aura", "=q1=#m1# =ds=#c5#" };
+ { 6, 19784, "", "=q3=Death's Embrace", "=q1=#m1# =ds=#c6#" };
+ { 7, 19786, "", "=q3=Vodouisant's Vigilant Embrace", "=q1=#m1# =ds=#c7#" };
+ { 8, 19788, "", "=q3=Hoodoo Hex", "=q1=#m1# =ds=#c8#" };
+ { 9, 19782, "", "=q3=Presence of Might", "=q1=#m1# =ds=#c9#" };
+ { 16, 20077, "", "=q3=Zandalar Signet of Might", "=ds=#s3# #e17#" };
+ { 17, 20076, "", "=q3=Zandalar Signet of Mojo", "=ds=#s3# #e17#" };
+ { 18, 20078, "", "=q3=Zandalar Signet of Serenity", "=ds=#s3# #e17#" };
+ { 20, 22635, "", "=q3=Savage Guard", "=ds=#s1#/#s11# #e17#" };
+ };
+};
- AtlasLoot_Data["PVPHunter"] = {
+-----------------
+--- Naxxramas ---
+-----------------
+
+AtlasLoot_Data["Naxxramas60"] = {
+ Name = BabbleZone["Naxxramas"];
+ Type = "ClassicRaid";
+ Map = "Naxxramas60";
+ {
+ Name = BabbleBoss["Patchwerk"];
+ { 1, 22960, "", "=q4=Cloak of Suturing", "=ds=#s4#", "", "20%" },
+ { 2, 22815, "", "=q4=Severance", "=ds=#h2#, #w1#", "", "20%" },
+ { 3, 22820, "", "=q4=Wand of Fates", "=ds=#w12#", "", "20%" },
+ { 4, 22818, "", "=q4=The Plague Bearer", "=ds=#w8#", "", "20%" },
+ { 5, 22961, "", "=q4=Band of Reanimation", "=ds=#s13#", "", "20%" },
+ { 16, 22354, "", "=q4=Desecrated Pauldrons", "=ds=#tt3#", "", "100%", "=TT=T3SHOULDER" };
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Grobbulus"];
+ { 1, 22968, "", "=q4=Glacial Mantle", "=ds=#s3#, #a1#", "", "20%" },
+ { 2, 22967, "", "=q4=Icy Scale Spaulders", "=ds=#s3#, #a3#", "", "20%" },
+ { 3, 22803, "", "=q4=Midnight Haze", "=ds=#h3#, #w4#", "", "20%" },
+ { 4, 22988, "", "=q4=The End of Dreams", "=ds=#h3#, #w6#", "", "20%" },
+ { 5, 22810, "", "=q4=Toxin Injector", "=ds=#w5#", "", "20%" },
+ { 16, 22354, "", "=q4=Desecrated Pauldrons", "=ds=#tt3#", "", "100%", "=TT=T3SHOULDER" };
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Gluth"];
+ { 1, 22983, "", "=q4=Rime Covered Mantle", "=ds=#s3#, #a1#", "", "20%" },
+ { 2, 22813, "", "=q4=Claymore of Unholy Might", "=ds=#h2#, #w10#", "", "20%" },
+ { 3, 23075, "", "=q4=Death's Bargain", "=ds=#w8#", "", "20%" },
+ { 4, 22994, "", "=q4=Digested Hand of Power", "=ds=#s15#", "", "20%" },
+ { 5, 22981, "", "=q4=Gluth's Missing Collar", "=ds=#s2#", "", "20%" },
+ { 16, 22354, "", "=q4=Desecrated Pauldrons", "=ds=#tt3#", "", "100%", "=TT=T3SHOULDER" };
+ { 17, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#", "", "8.33%", "=TT=T3WRIST" };
+ { 18, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#", "", "8.33%", "=TT=T3WAIST" };
+ { 19, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#", "", "8.33%", "=TT=T3FEET" };
+ { 21, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 22, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Thaddius"];
+ { 1, 23070, "", "=q4=Leggings of Polarity", "=ds=#s11#, #a1#", "", "20%" },
+ { 2, 23000, "", "=q4=Plated Abomination Ribcage", "=ds=#s5#, #a4#", "", "20%" },
+ { 3, 22808, "", "=q4=The Castigator", "=ds=#h1#, #w6#", "", "20%" },
+ { 4, 22801, "", "=q4=Spire of Twilight", "=ds=#w9#", "", "20%" },
+ { 5, 23001, "", "=q4=Eye of Diminution", "=ds=#s14#", "", "20%" },
+ { 16, 22353, "", "=q4=Desecrated Helmet", "=ds=#tt3#", "", "100%", "=TT=T3HEAD" };
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Anub'Rekhan"];
+ { 1, 22938, "", "=q4=Cryptfiend Silk Cloak", "=ds=#s4#", "", "20%" },
+ { 2, 22936, "", "=q4=Wristguards of Vengeance", "=ds=#s8#, #a4#", "", "20%" },
+ { 3, 22937, "", "=q4=Gem of Nerubis", "=ds=#s15#", "", "20%" },
+ { 4, 22939, "", "=q4=Band of Unanswered Prayers", "=ds=#s13#", "", "20%" },
+ { 5, 22935, "", "=q4=Touch of Frost", "=ds=#s2#", "", "20%" },
+ { 16, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#", "", "100%", "=TT=T3WRIST" };
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Grand Widow Faerlina"];
+ { 1, 22941, "", "=q4=Polar Shoulder Pads", "=ds=#s3#, #a2#", "", "20%" },
+ { 2, 22940, "", "=q4=Icebane Pauldrons", "=ds=#s3#, #a4#", "", "20%" },
+ { 3, 22806, "", "=q4=Widow's Remorse", "=ds=#h1#, #w10#", "", "20%" },
+ { 4, 22942, "", "=q4=The Widow's Embrace", "=ds=#h3#, #w6#", "", "20%" },
+ { 5, 22943, "", "=q4=Malice Stone Pendant", "=ds=#s2#", "", "20%" },
+ { 16, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#", "", "100%", "=TT=T3WRIST" };
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Maexxna"];
+ { 1, 23220, "", "=q4=Crystal Webbed Robe", "=ds=#s5#, #a1#", "", "20%" },
+ { 2, 22804, "", "=q4=Maexxna's Fang", "=ds=#h1#, #w4#", "", "20%" },
+ { 3, 22807, "", "=q4=Wraith Blade", "=ds=#h3#, #w10#", "", "20%" },
+ { 4, 22947, "", "=q4=Pendant of Forgotten Names", "=ds=#s2#", "", "20%" },
+ { 5, 22954, "", "=q4=Kiss of the Spider", "=ds=#s14#", "", "20%" },
+ { 16, 22357, "", "=q4=Desecrated Gauntlets", "=ds=#tt3#", "", "100%", "=TT=T3HAND" };
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Instructor Razuvious"];
+ { 1, 23017, "", "=q4=Veil of Eclipse", "=ds=#s4#", "", "16.67%" },
+ { 2, 23219, "", "=q4=Girdle of the Mentor", "=ds=#s10#, #a4#", "", "16.67%" },
+ { 3, 23014, "", "=q4=Iblis, Blade of the Fallen Seraph", "=ds=#h1#, #w10#", "", "16.67%" },
+ { 4, 23009, "", "=q4=Wand of the Whispering Dead", "=ds=#w12#", "", "16.67%" },
+ { 5, 23004, "", "=q4=Idol of Longevity", "=ds=#s16#, #w14#", "", "16.67%" },
+ { 6, 23018, "", "=q4=Signet of the Fallen Defender", "=ds=#s13#", "", "16.67%" },
+ { 16, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#", "", "100%", "=TT=T3FEET" };
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Gothik the Harvester"];
+ { 1, 23032, "", "=q4=Glacial Headdress", "=ds=#s1#, #a1#", "", "20%" },
+ { 2, 23021, "", "=q4=The Soul Harvester's Bindings", "=ds=#s8#, #a1#", "", "20%" },
+ { 3, 23020, "", "=q4=Polar Helmet", "=ds=#s1#, #a2#", "", "20%" },
+ { 4, 23073, "", "=q4=Boots of Displacement", "=ds=#s12#, #a2#", "", "20%" },
+ { 5, 23023, "", "=q4=Sadist's Collar", "=ds=#s2#", "", "20%" },
+ { 16, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#", "", "100%", "=TT=T3SHOULDER" };
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["The Four Horsemen"];
+ { 1, 23071, "", "=q4=Leggings of Apocalypse", "=ds=#s11#, #a2#", "", "16.67%" },
+ { 2, 22809, "", "=q4=Maul of the Redeemed Crusader", "=ds=#h2#, #w6#", "", "16.67%" },
+ { 3, 22691, "", "=q4=Corrupted Ashbringer", "=ds=#h2#, #w10#", "", "16.67%" },
+ { 4, 22811, "", "=q4=Soulstring", "=ds=#w2#", "", "20%" },
+ { 5, 23025, "", "=q4=Seal of the Damned", "=ds=#s13#", "", "16.67%" },
+ { 6, 23027, "", "=q4=Warmth of Forgiveness", "=ds=#s14#", "", "16.67%" },
+ { 16, 22349, "", "=q4=Desecrated Breastplate", "=ds=#tt3#", "", "100%", "=TT=T3CHEST" };
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Noth the Plaguebringer"];
+ { 1, 23030, "", "=q4=Cloak of the Scourge", "=ds=#s4#", "", "14.29%" },
+ { 2, 22816, "", "=q4=Hatchet of Sundered Bone", "=ds=#h1#, #w1#", "", "14.29%" },
+ { 3, 23005, "", "=q4=Totem of Flowing Water", "=ds=#s16#, #w15#", "", "14.29%" },
+ { 4, 23006, "", "=q4=Libram of Light", "=ds=#s16#, #w16#", "", "14.29%" },
+ { 5, 23029, "", "=q4=Noth's Frigid Heart", "=ds=#s15#", "", "14.29%" },
+ { 6, 23031, "", "=q4=Band of the Inevitable", "=ds=#s13#", "", "14.29%" },
+ { 7, 23028, "", "=q4=Hailstone Band", "=ds=#s13#", "", "14.29%" },
+ { 16, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#", "", "100%", "=TT=T3WAIST" };
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Heigan the Unclean"];
+ { 1, 23035, "", "=q4=Preceptor's Hat", "=ds=#s1#, #a1#", "", "20%" },
+ { 2, 23033, "", "=q4=Icy Scale Coif", "=ds=#s1#, #a3#", "", "20%" },
+ { 3, 23019, "", "=q4=Icebane Helmet", "=ds=#s1#, #a4#", "", "20%" },
+ { 4, 23068, "", "=q4=Legplates of Carnage", "=ds=#s11#, #a4#", "", "20%" },
+ { 5, 23036, "", "=q4=Necklace of Necropsy", "=ds=#s2#", "", "20%" },
+ { 16, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#", "", "100%", "=TT=T3WAIST" };
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Loatheb"];
+ { 1, 23039, "", "=q4=The Eye of Nerub", "=ds=#w7#", "", "20%" },
+ { 2, 22800, "", "=q4=Brimstone Staff", "=ds=#w9#", "", "20%" },
+ { 3, 23037, "", "=q4=Ring of Spiritual Fervor", "=ds=#s13#", "", "20%" },
+ { 4, 23038, "", "=q4=Band of Unnatural Forces", "=ds=#s13#", "", "20%" },
+ { 5, 23042, "", "=q4=Loatheb's Reflection", "=ds=#s14#", "", "20%" },
+ { 16, 22352, "", "=q4=Desecrated Legplates", "=ds=#tt3#", "", "100%", "=TT=T3LEGS" };
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Sapphiron"];
+ { 1, 23050, "", "=q4=Cloak of the Necropolis", "=ds=#s4#", "", "18.18%" },
+ { 2, 23045, "", "=q4=Shroud of Dominion", "=ds=#s4#", "", "18.18%" },
+ { 3, 23072, "", "=q4=Fists of the Unrelenting", "=ds=#s9#, #a4#", "", "18.18%" },
+ { 4, 23043, "", "=q4=The Face of Death", "=ds=#w8#", "", "18.18%" },
+ { 5, 23242, "", "=q4=Claw of the Frost Wyrm", "=ds=#h4#, #w13#", "", "18.18%" },
+ { 6, 23049, "", "=q4=Sapphiron's Left Eye", "=ds=#s15#", "", "18.18%" },
+ { 7, 23048, "", "=q4=Sapphiron's Right Eye", "=ds=#s15#", "", "18.18%" },
+ { 8, 23040, "", "=q4=Glyph of Deflection", "=ds=#s14#", "", "18.18%" },
+ { 9, 23047, "", "=q4=Eye of the Dead", "=ds=#s14#", "", "18.18%" },
+ { 10, 23046, "", "=q4=The Restrained Essence of Sapphiron", "=ds=#s14#", "", "18.18%" },
+ { 11, 23041, "", "=q4=Slayer's Crest", "=ds=#s14#", "", "18.18%" },
+ { 12, 19761, "", "Fang of the Frost Wyrm", "=ds=#h3#, #w13#" },
+ { 16, 23545, "", "=q4=Power of the Scourge", "=ds=#s3# #e17#", "", "50%" },
+ { 17, 23547, "", "=q4=Resilience of the Scourge", "=ds=#s3# #e17#", "", "50%" },
+ { 18, 23549, "", "=q4=Fortitude of the Scourge", "=ds=#s3# #e17#", "", "50%" },
+ { 19, 23548, "", "=q4=Might of the Scourge", "=ds=#s3# #e17#", "", "50%" },
+ { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ };
+ {
+ Name = BabbleBoss["Kel'Thuzad"];
+ { 1, 22802, "", "=q4=Kingsfall", "=ds=#h1#, #w4#", "", "18.18%" },
+ { 2, 23054, "", "=q4=Gressil, Dawn of Ruin", "=ds=#h1#, #w10#", "", "18.18%" },
+ { 3, 23577, "", "=q4=The Hungering Cold", "=ds=#h1#, #w10#", "", "18.18%" },
+ { 4, 23056, "", "=q4=Hammer of the Twisting Nether", "=ds=#h1#, #w6#", "", "18.18%" },
+ { 5, 22798, "", "=q4=Might of Menethil", "=ds=#h2#, #w6#", "", "18.18%" },
+ { 6, 22799, "", "=q4=Soulseeker", "=ds=#w9#", "", "18.18%" },
+ { 7, 22821, "", "=q4=Doomfinger", "=ds=#w12#", "", "18.18%" },
+ { 8, 22812, "", "=q4=Nerubian Slavemaker", "=ds=#w3#", "", "18.18%" },
+ { 9, 22819, "", "=q4=Shield of Condemnation", "=ds=#w8#", "", "18.18%" },
+ { 10, 23057, "", "=q4=Gem of Trapped Innocents", "=ds=#s2#", "", "18.18%" },
+ { 11, 23053, "", "=q4=Stormrage's Talisman of Seething", "=ds=#s2#", "", "18.18%" },
+ { 13, 691119, "", "=q4=The Phylactery of Kel'Thuzad", "=ds=#m2#", "", "100%" },
+ { 14, 23207, "", "=q4=Mark of the Champion", "=q1=#m4# =ds=#s14#" },
+ { 15, 23206, "", "=q4=Mark of the Champion", "=q1=#m4# =ds=#s14#" },
+ { 16, 1510496, "", "=q4=Desecrated Ring", "=ds=#tt3#", "", "100%", "=TT=T3FINGER" };
+ { 18, 22733, "", "=q1=Staff Head of Atiesh", "=ds=#m3#" },
+ { 19, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#" },
+ { 20, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#" },
+ { 21, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#" },
+ { 22, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#" },
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 23069, "", "=q4=Necro-Knight's Garb", "=ds=#s5#, #a1# =q1=#m1# =ds=#c5#, #c3#, #c8#" },
+ { 2, 23226, "", "=q4=Ghoul Skin Tunic", "=ds=#s5#, #a2#" },
+ { 3, 23663, "", "=q4=Girdle of Elemental Fury", "=ds=#s10#, #a3#" },
+ { 4, 23664, "", "=q4=Pauldrons of Elemental Fury", "=ds=#s3#, #a3# =q1=#m1# =ds=#c7#" },
+ { 5, 23665, "", "=q4=Leggings of Elemental Fury", "=ds=#s11#, #a3# =q1=#m1# =ds=#c7#" },
+ { 6, 23666, "", "=q4=Belt of the Grand Crusader", "=ds=#s10#, #a4# =q1=#m1# =ds=#c4#" },
+ { 7, 23667, "", "=q4=Spaulders of the Grand Crusader", "=ds=#s3#, #a4# =q1=#m1# =ds=#c4#" },
+ { 8, 23668, "", "=q4=Leggings of the Grand Crusader", "=ds=#s11#, #a4# =q1=#m1# =ds=#c4#" },
+ { 9, 23044, "", "=q4=Harbinger of Doom", "=ds=#h1#, #w4#" },
+ { 10, 23221, "", "=q4=Misplaced Servo Arm", "=ds=#h1# #w6#" },
+ { 11, 23238, "", "=q4=Stygian Buckler", "=ds=#w8#" },
+ { 12, 23237, "", "=q4=Ring of the Eternal Flame", "=ds=#s13#" },
+ { 16, 22376, "", "=q3=Wartorn Cloth Scrap", "=ds=#m3#" },
+ { 17, 22373, "", "=q3=Wartorn Leather Scrap", "=ds=#m3#" },
+ { 18, 22374, "", "=q3=Wartorn Chain Scrap", "=ds=#m3#" },
+ { 19, 22375, "", "=q3=Wartorn Plate Scrap", "=ds=#m3#" },
+ { 21, 22708, "", "=q1=Fate of Ramaladni", "=ds=#m3#" },
+ { 22, 23055, "", "=q1=Word of Thawing", "=ds=#m20#" },
+ };
+};
+
+---------------------
+--- Onyxia's Lair 60 ---
+---------------------
+
+AtlasLoot_Data["Onyxia60"] = {
+ Name = BabbleZone["Onyxia's Lair"];
+ Type = "ClassicRaid";
+ Map = "Onyxia60";
+ {
+ Name = BabbleZone["Onyxia's Lair"];
+ { 1, 17078, "", "=q4=Sapphiron Drape", "=ds=#s4#", "", "28.57%" },
+ { 2, 18205, "", "=q4=Eskhandar's Collar", "=ds=#s2#", "", "28.57%" },
+ { 3, 18813, "", "=q4=Ring of Binding", "=ds=#s13#", "", "28.57%" },
+ { 4, 17064, "", "=q4=Shard of the Scale", "=ds=#s14#", "", "28.57%" },
+ { 5, 17067, "", "=q4=Ancient Cornerstone Grimoire", "=ds=#s15#", "", "28.57%" },
+ { 6, 17075, "", "=q4=Vis'kag the Bloodletter", "=ds=#h1#, #w10#", "", "28.57%" },
+ { 7, 17068, "", "=q4=Deathbringer", "=ds=#h1#, #w1#", "", "28.57%" },
+ { 8, 18215, "", "=q4=Insignia of the Dragon", "=ds=#s14#", "", "28.57%" },
+ { 9, 18216, "", "=q4=Neltharion's Badge", "=ds=#s14#", "", "28.57%" },
+ { 10, 18211, "", "=q4=Wand of the Noble", "=ds=#w12#", "", "28.57%" },
+ { 11, 17084, "", "=q4=Mace of the Dragon Knight", "=ds=#h2#, #w6#", "", "28.57%" },
+ { 12, 18212, "", "=q4=Band of Nyxondra", "=ds=#s13#", "", "28.57%" },
+ { 16, 2522460, "", "=q4=Chromatic Headpiece", "=ds=#tt2#", "", "100%", "=TT=T2HEAD" };
+ { 18, 18423, "", "=q4=Head of Onyxia", "=ds=#m2#", "", "100%" },
+ { 19, 18404, "", "=q4=Onyxia Tooth Pendant", "=q1=#m4#: =ds=#s2#" },
+ { 20, 18403, "", "=q4=Dragonslayer's Signet", "=q1=#m4#: =ds=#s13#" },
+ { 21, 18406, "", "=q4=Onyxia Blood Talisman", "=q1=#m4#: =ds=#s14#" },
+ { 23, 15410, "", "=q3=Scale of Onyxia", "=ds=#e8#" },
+ { 24, 17966, "", "=q2=Onyxia Hide Backpack", "=ds=#m14# #e1#", "", "100%" },
+ { 26, 49636, "", "=q4=Reins of the Onyxian Drake", "=ds=#e12#", [AtlasLoot_Difficulty.MIN_DIF] = AtlasLoot_Difficulty.Heroic };
+ };
+};
+
+--------------------------
+--- Sets & Collections ---
+--------------------------
+
+------------------------------------
+--- Dungeon 1 and 2 Sets (D1/D2) ---
+------------------------------------
+
+AtlasLoot_Data["T0"] = {
+ Name = "Dungeon Sets";
+ Type = "ClassicDungeonExt";
+ {
+ Name = AL["Druid"];
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t0s1#", "=ec1=#j6#" };
+ { 2, 16720, "", "=q3=Wildheart Cowl", "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", "","7.09%" };
+ { 3, 16718, "", "=q3=Wildheart Spaulders", "=ds=" .. BabbleBoss["Gizrul the Slavener"] .. " (" .. AL["LBRS"] .. ")", "","11.04%" };
+ { 4, 16706, "", "=q3=Wildheart Vest", "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", "","7.36%" };
+ { 5, 16714, "", "=q3=Wildheart Bracers", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", "", "1.85%" };
+ { 6, 16717, "", "=q3=Wildheart Gloves", "=ds=" .. BabbleBoss["The Unforgiven"] .. " (" .. AL["Strat"] .. ")", "","12.61%" };
+ { 7, 16716, "", "=q3=Wildheart Belt", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Scholo"] .. ")", "", "2.60%" };
+ { 8, 16719, "", "=q3=Wildheart Kilt", "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", "","6.58%" };
+ { 9, 16715, "", "=q3=Wildheart Boots", "=ds=" .. BabbleBoss["Mother Smolderweb"] .. " (" .. AL["LBRS"] .. ")", "","13.03%" };
+ { 16, 0, "Spell_Nature_Regeneration", "=q6=#t05s1#", "=ec1=#j7#" };
+ { 17, 22109, "", "=q4=Feralheart Cowl", "=ds=#a2#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 18, 22112, "", "=q3=Feralheart Spaulders", "=ds=#a2#, #s3#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 19, 22113, "", "=q4=Feralheart Vest", "=ds=#a2#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 20, 22108, "", "=q3=Feralheart Bracers", "=ds=#a2#, #s8#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 21, 22110, "", "=q4=Feralheart Gloves", "=ds=#a2#, #s9#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 22, 22106, "", "=q3=Feralheart Belt", "=ds=#a2#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 23, 22111, "", "=q3=Feralheart Kilt", "=ds=#a2#, #s11#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 24, 22107, "", "=q4=Feralheart Boots", "=ds=#a2#, #s12#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ };
+ {
Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
- {
- Name = AL["Rare Set"].." (Alliance)";
- { 1, 16428, "", "=q3=Lieutenant Commander's Chain Helm, =ds=", "9435 #alliance#", ""};
- { 2, 16427, "", "=q3=Lieutenant Commander's Chain Shoulders, =ds=", "6885 #alliance#", ""};
- { 3, 16425, "", "=q3=Knight-Captain's Chain Hauberk, =ds=", "9435 #alliance#", ""};
- { 4, 16403, "", "=q3=Knight-Lieutenant's Chain Vices, =ds=", "5000 #alliance#", ""};
- { 5, 16426, "", "=q3=Knight-Captain's Chain Legguards, =ds=", "9435 #alliance#", ""};
- { 6, 16401, "", "=q3=Knight-Lieutenant's Chain Greaves, =ds=", "5000 #alliance#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Alliance)";
- { 1, 23306, "", "=q3=Lieutenant Commander's Chain Helm", "=ds=", "24000 #alliance#", ""};
- { 2, 23307, "", "=q3=Lieutenant Commander's Chain Shoulders", "=ds=", "14000 #alliance#", ""};
- { 3, 23292, "", "=q3=Knight-Captain's Chain Hauberk", "=ds=", "24000 #alliance#", ""};
- { 4, 23279, "", "=q3=Knight-Lieutenant's Chain Vices", "=ds=", "14000 #alliance#", ""};
- { 5, 23293, "", "=q3=Knight-Captain's Chain Legguards", "=ds=", "24000 #alliance#", ""};
- { 6, 23278, "", "=q3=Knight-Lieutenant's Chain Greaves", "=ds=", "14000 #alliance#", ""};
- };
- {
- Name = AL["Epic Set"].." (Alliance)";
- { 1, 16465, "", "=q4=Field Marshal's Chain Helm", "=ds=", "68200 #alliance#", ""};
- { 2, 16468, "", "=q4=Field Marshal's Chain Spaulders", "=ds=", "52200 #alliance#", ""};
- { 3, 16466, "", "=q4=Field Marshal's Chain Breastplate", "=ds=", "68200 #alliance#", ""};
- { 4, 16463, "", "=q4=Marshal's Chain Grips", "=ds=", "52200 #alliance#", ""};
- { 5, 16467, "", "=q4=Marshal's Chain Legguards", "=ds=", "68200 #alliance#", ""};
- { 6, 16462, "", "=q4=Marshal's Chain Boots", "=ds=", "52200 #alliance#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Alliance)";
- { 1, 6116465, "", "=q4=Grand Marshal's Chain Helm, =ds=", "2370 #arena# #alliance#", ""};
- { 2, 6116468, "", "=q4=Grand Marshal's Chain Spaulders, =ds=", "1930 #arena# #alliance#", ""};
- { 3, 6116466, "", "=q4=Grand Marshal's Chain Breastplate, =ds=", "2370 #arena# #alliance#", ""};
- { 4, 6116463, "", "=q4=Grand Marshal's Chain Grips, =ds=", "1430 #arena# #alliance#", ""};
- { 5, 6116467, "", "=q4=Grand Marshal's Chain Legguards, =ds=", "2370 #arena# #alliance#", ""};
- { 6, 6116462, "", "=q4=Grand Marshal's Chain Boots, =ds=", "1430 #arena# #alliance#", ""};
- };
- {
- Name = AL["Rare Set"].." (Horde)";
- { 1, 16526, "", "=q3=Champion's Chain Helm, =ds=", "9435 #horde#", ""};
- { 2, 16528, "", "=q3=Champion's Chain Shoulders, =ds=", "6885 #horde#", ""};
- { 3, 16525, "", "=q3=Legionnaire's Chain Hauberk, =ds=", "9435 #horde#", ""};
- { 4, 16530, "", "=q3=Blood Guard's Chain Vices, =ds=", "5000 #horde#", ""};
- { 5, 16527, "", "=q3=Legionnaire's Chain Legguards, =ds=", "9435 #horde#", ""};
- { 6, 16531, "", "=q3=Blood Guard's Chain Greaves, =ds=", "5000 #horde#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Horde)";
- { 1, 23251, "", "=q3=Champion's Chain Helm", "=ds=", "24000 #horde#", ""};
- { 2, 23252, "", "=q3=Champion's Chain Shoulders", "=ds=", "14000 #horde#", ""};
- { 3, 22874, "", "=q3=Legionnaire's Chain Hauberk", "=ds=", "24000 #horde#", ""};
- { 4, 22862, "", "=q3=Blood Guard's Chain Vices", "=ds=", "14000 #horde#", ""};
- { 5, 22875, "", "=q3=Legionnaire's Chain Legguards", "=ds=", "24000 #horde#", ""};
- { 6, 22843, "", "=q3=Blood Guard's Chain Greaves", "=ds=", "14000 #horde#", ""};
- };
- {
- Name = AL["Epic Set"].." (Horde)";
- { 1, 16566, "", "=q4=Warlord's Chain Helmet", "=ds=", "68200 #horde#", ""};
- { 2, 16568, "", "=q4=Warlord's Chain Shoulders", "=ds=", "52200 #horde#", ""};
- { 3, 16565, "", "=q4=Warlord's Chain Chestpiece", "=ds=", "68200 #horde#", ""};
- { 4, 16571, "", "=q4=General's Chain Gloves", "=ds=", "52200 #horde#", ""};
- { 5, 16567, "", "=q4=General's Chain Legguards", "=ds=", "68200 #horde#", ""};
- { 6, 16569, "", "=q4=General's Chain Boots", "=ds=", "52200 #horde#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Horde)";
- { 1, 6116566, "", "=q4=High Warlord's Chain Helmet, =ds=", "2370 #arena# #horde#", ""};
- { 2, 6116568, "", "=q4=High Warlord's Chain Shoulders, =ds=", "1930 #arena# #horde#", ""};
- { 3, 6116565, "", "=q4=High Warlord's Chain Chestpiece, =ds=", "2370 #arena# #horde#", ""};
- { 4, 6116571, "", "=q4=High High Warlord's Chain Gloves, =ds=", "1430 #arena# #horde#", ""};
- { 5, 6116567, "", "=q4=High High Warlord's Chain Legguards, =ds=", "2370 #arena# #horde#", ""};
- { 6, 6116569, "", "=q4=High High Warlord's Chain Boots, =ds=", "1430 #arena# #horde#", ""};
- };
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t0s2#", "=ec1=#j6#" };
+ { 2, 16677, "", "=q3=Beaststalker's Cap", "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")","", "7.00%" };
+ { 3, 16679, "", "=q3=Beaststalker's Mantle", "=ds=" .. BabbleBoss["Overlord Wyrmthalak"] .. " (" .. AL["LBRS"] .. ")","", "9.89%" };
+ { 4, 16674, "", "=q3=Beaststalker's Tunic", "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", "","6.81%" };
+ { 5, 16681, "", "=q3=Beaststalker's Bindings", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", "", "1.64%" };
+ { 6, 16676, "", "=q3=Beaststalker's Gloves", "=ds=" .. BabbleBoss["War Master Voone"] .. " (" .. AL["LBRS"] .. ")", "","9.15%" };
+ { 7, 16680, "", "=q3=Beaststalker's Belt", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", "", "1.36%" };
+ { 8, 16678, "", "=q3=Beaststalker's Pants", "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", "","6.16%" };
+ { 9, 16675, "", "=q3=Beaststalker's Boots", "=ds=" .. BabbleBoss["Nerub'enkan"] .. " (" .. AL["Strat"] .. ")", "","13.62%" };
+ { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t05s2#", "=ec1=#j7#" };
+ { 17, 22013, "", "=q4=Beastmaster's Cap", "=ds=#a3#, #s1#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 18, 22016, "", "=q3=Beastmaster's Mantle", "=ds=#a3#, #s3#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 19, 22060, "", "=q4=Beastmaster's Tunic", "=ds=#a3#, #s5#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 20, 22011, "", "=q3=Beastmaster's Bindings", "=ds=#a3#, #s8#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 21, 22015, "", "=q4=Beastmaster's Gloves", "=ds=#a3#, #s9#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 22, 22010, "", "=q3=Beastmaster's Belt", "=ds=#a3#, #s10#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 23, 22017, "", "=q3=Beastmaster's Pants", "=ds=#a3#, #s11#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 24, 22061, "", "=q4=Beastmaster's Boots", "=ds=#a3#, #s12#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
};
-
- AtlasLoot_Data["PVPMage"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
- {
- Name = AL["Rare Set"].." (Alliance)";
- { 1, 16416, "", "=q3=Lieutenant Commander's Silk Cowl, =ds=", "9435 #alliance#", ""};
- { 2, 16415, "", "=q3=Lieutenant Commander's Silk Mantle, =ds=", "6885 #alliance#", ""};
- { 3, 16413, "", "=q3=Knight-Captain's Silk Tunic, =ds=", "9435 #alliance#", ""};
- { 4, 16391, "", "=q3=Knight-Lieutenant's Silk Handwraps, =ds=", "5000 #alliance#", ""};
- { 5, 16414, "", "=q3=Knight-Captain's Silk Legguards, =ds=", "9435 #alliance#", ""};
- { 6, 16369, "", "=q3=Knight-Lieutenant's Silk Walkers, =ds=", "5000 #alliance#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Alliance)";
- { 1, 23318, "", "=q3=Lieutenant Commander's Silk Cowl", "=ds=", "24000 #alliance#", ""};
- { 2, 23319, "", "=q3=Lieutenant Commander's Silk Mantle", "=ds=", "14000 #alliance#", ""};
- { 3, 23305, "", "=q3=Knight-Captain's Silk Tunic", "=ds=", "24000 #alliance#", ""};
- { 4, 23290, "", "=q3=Knight-Lieutenant's Silk Handwraps", "=ds=", "14000 #alliance#", ""};
- { 5, 23304, "", "=q3=Knight-Captain's Silk Legguards", "=ds=", "24000 #alliance#", ""};
- { 6, 23291, "", "=q3=Knight-Lieutenant's Silk Walkers", "=ds=", "14000 #alliance#", ""};
- };
- {
- Name = AL["Epic Set"].." (Alliance)";
- { 1, 16441, "", "=q4=Field Marshal's Coronet", "=ds=", "68200 #alliance#", ""};
- { 2, 16444, "", "=q4=Field Marshal's Silk Spaulders", "=ds=", "52200 #alliance#", ""};
- { 3, 16443, "", "=q4=Field Marshal's Silk Vestments", "=ds=", "68200 #alliance#", ""};
- { 4, 16440, "", "=q4=Marshal's Silk Gloves", "=ds=", "52200 #alliance#", ""};
- { 5, 16442, "", "=q4=Marshal's Silk Leggings", "=ds=", "68200 #alliance#", ""};
- { 6, 16437, "", "=q4=Marshal's Silk Footwraps", "=ds=", "52200 #alliance#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Alliance)";
- { 1, 6116441, "", "=q4=Grand Marshal's Coronet, =ds=", "2370 #arena# #alliance#", ""};
- { 2, 6116444, "", "=q4=Grand Marshal's Silk Spaulders, =ds=", "1930 #arena# #alliance#", ""};
- { 3, 6116443, "", "=q4=Grand Marshal's Silk Vestments, =ds=", "2370 #arena# #alliance#", ""};
- { 4, 6116440, "", "=q4=Grand Marshal's Silk Gloves, =ds=", "1430 #arena# #alliance#", ""};
- { 5, 6116442, "", "=q4=Grand Marshal's Silk Leggings, =ds=", "2370 #arena# #alliance#", ""};
- { 6, 6116437, "", "=q4=Grand Marshal's Silk Footwraps, =ds=", "1430 #arena# #alliance#", ""};
- };
- {
- Name = AL["Rare Set"].." (Horde)";
- { 1, 16489, "", "=q3=Champion's Silk Cowl, =ds=", "9435 #horde#", ""};
- { 2, 16492, "", "=q3=Champion's Silk Mantle, =ds=", "6885 #horde#", ""};
- { 3, 16491, "", "=q3=Legionnaire's Silk Tunic, =ds=", "9435 #horde#", ""};
- { 4, 16487, "", "=q3=Blood Guard's Silk Handwraps, =ds=", "5000 #horde#", ""};
- { 5, 16490, "", "=q3=Legionnaire's Silk Legguards, =ds=", "9435 #horde#", ""};
- { 6, 16485, "", "=q3=Blood Guard's Silk Walkers, =ds=", "5000 #horde#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Horde)";
- { 1, 23263, "", "=q3=Champion's Silk Cowl", "=ds=", "24000 #horde#", ""};
- { 2, 23264, "", "=q3=Champion's Silk Mantle", "=ds=", "14000 #horde#", ""};
- { 3, 22886, "", "=q3=Legionnaire's Silk Tunic", "=ds=", "24000 #horde#", ""};
- { 4, 22870, "", "=q3=Blood Guard's Silk Handwraps", "=ds=", "14000 #horde#", ""};
- { 5, 22883, "", "=q3=Legionnaire's Silk Legguards", "=ds=", "24000 #horde#", ""};
- { 6, 22860, "", "=q3=Blood Guard's Silk Walkers", "=ds=", "14000 #horde#", ""};
- };
- {
- Name = AL["Epic Set"].." (Horde)";
- { 1, 16533, "", "=q4=Warlord's Silk Cowl", "=ds=", "68200 #horde#", ""};
- { 2, 16536, "", "=q4=Warlord's Silk Amice", "=ds=", "52200 #horde#", ""};
- { 3, 16535, "", "=q4=Warlord's Silk Raiment", "=ds=", "68200 #horde#", ""};
- { 4, 16540, "", "=q4=General's Silk Handguards", "=ds=", "52200 #horde#", ""};
- { 5, 16534, "", "=q4=General's Silk Trousers", "=ds=", "68200 #horde#", ""};
- { 6, 16539, "", "=q4=General's Silk Boots", "=ds=", "52200 #horde#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Horde)";
- { 1, 6116533, "", "=q4=High Warlord's Silk Cowl, =ds=", "2370 #arena# #horde#", ""};
- { 2, 6116536, "", "=q4=High Warlord's Silk Amice, =ds=", "1930 #arena# #horde#", ""};
- { 3, 6116535, "", "=q4=High Warlord's Silk Raiment, =ds=", "2370 #arena# #horde#", ""};
- { 4, 6116540, "", "=q4=High High Warlord's Silk Handguards, =ds=", "1430 #arena# #horde#", ""};
- { 5, 6116534, "", "=q4=High High Warlord's Silk Trousers, =ds=", "2370 #arena# #horde#", ""};
- { 6, 6116539, "", "=q4=High High Warlord's Silk Boots, =ds=", "1430 #arena# #horde#", ""};
- };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t0s3#", "=ec1=#j6#" };
+ { 2, 16686, "", "=q3=Magister's Crown", "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", "","8.60%" };
+ { 3, 16689, "", "=q3=Magister's Mantle", "=ds=" .. BabbleBoss["Ras Frostwhisper"] .. " (" .. AL["Scholo"] .. ")", "","11.93%" };
+ { 4, 16688, "", "=q3=Magister's Robes", "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", "","7.24%" };
+ { 5, 16683, "", "=q3=Magister's Bindings", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", "", "1.19%" };
+ { 6, 16684, "", "=q3=Magister's Gloves", "=ds=" .. BabbleBoss["Doctor Theolen Krastinov"] .. " (" .. AL["Scholo"] ..")", "", "9.75%" };
+ { 7, 16685, "", "=q3=Magister's Belt", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", "", "1.32%" };
+ { 8, 16687, "", "=q3=Magister's Leggings", "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", "","6.79%" };
+ { 9, 16682, "", "=q3=Magister's Boots", "=ds=" .. BabbleBoss["Hearthsinger Forresten"] .. " (" .. AL["Strat"] .. ")","", "10.86%" };
+ { 16, 0, "Spell_Frost_IceStorm", "=q6=#t05s3#", "=ec1=#j7#" };
+ { 17, 22065, "", "=q4=Sorcerer's Crown", "=ds=#a1#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 18, 22068, "", "=q3=Sorcerer's Mantle", "=ds=#a1#, #s3#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 19, 22069, "", "=q4=Sorcerer's Robes", "=ds=#a1#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 20, 22063, "", "=q3=Sorcerer's Bindings", "=ds=#a1#, #s8#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 21, 22066, "", "=q4=Sorcerer's Gloves", "=ds=#a1#, #s9#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 22, 22062, "", "=q3=Sorcerer's Belt", "=ds=#a1#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 23, 22067, "", "=q3=Sorcerer's Leggings", "=ds=#a1#, #s11#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 24, 22064, "", "=q4=Sorcerer's Boots", "=ds=#a1#, #s12#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
};
-
- AtlasLoot_Data["PVPPaladin"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
- {
- Name = AL["Rare Set"].." (Alliance)";
- { 1, 16434, "", "=q3=Lieutenant Commander's Lamellar Headguard, =ds=", "9435 #alliance#", ""};
- { 2, 16436, "", "=q3=Lieutenant Commander's Lamellar Shoulders, =ds=", "6885 #alliance#", ""};
- { 3, 16433, "", "=q3=Knight-Captain's Lamellar Breastplate, =ds=", "9435 #alliance#", ""};
- { 4, 16410, "", "=q3=Knight-Lieutenant's Lamellar Gauntlets, =ds=", "5000 #alliance#", ""};
- { 5, 16435, "", "=q3=Knight-Captain's Lamellar Leggings, =ds=", "9435 #alliance#", ""};
- { 6, 16409, "", "=q3=Knight-Lieutenant's Lamellar Sabatons, =ds=", "5000 #alliance#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Alliance)";
- { 1, 23276, "", "=q3=Lieutenant Commander's Lamellar Headguard", "=ds=", "24000 #alliance#", ""};
- { 2, 23277, "", "=q3=Lieutenant Commander's Lamellar Shoulders", "=ds=", "14000 #alliance#", ""};
- { 3, 23272, "", "=q3=Knight-Captain's Lamellar Breastplate", "=ds=", "24000 #alliance#", ""};
- { 4, 23274, "", "=q3=Knight-Lieutenant's Lamellar Gauntlets", "=ds=", "14000 #alliance#", ""};
- { 5, 23273, "", "=q3=Knight-Captain's Lamellar Leggings", "=ds=", "24000 #alliance#", ""};
- { 6, 23275, "", "=q3=Knight-Lieutenant's Lamellar Sabatons", "=ds=", "14000 #alliance#", ""};
- };
- {
- Name = AL["Epic Set"].." (Alliance)";
- { 1, 16474, "", "=q4=Field Marshal's Lamellar Faceguard", "=ds=", "68200 #alliance#", ""};
- { 2, 16476, "", "=q4=Field Marshal's Lamellar Pauldrons", "=ds=", "52200 #alliance#", ""};
- { 3, 16473, "", "=q4=Field Marshal's Lamellar Chestplate", "=ds=", "68200 #alliance#", ""};
- { 4, 16471, "", "=q4=Marshal's Lamellar Gloves", "=ds=", "52200 #alliance#", ""};
- { 5, 16475, "", "=q4=Marshal's Lamellar Legplates", "=ds=", "68200 #alliance#", ""};
- { 6, 16472, "", "=q4=Marshal's Lamellar Boots", "=ds=", "52200 #alliance#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Alliance)";
- { 1, 6116474, "", "=q4=Grand Marshal's Lamellar Faceguard, =ds=", "2370 #arena# #alliance#", ""};
- { 2, 6116476, "", "=q4=Grand Marshal's Lamellar Pauldrons, =ds=", "1930 #arena# #alliance#", ""};
- { 3, 6116473, "", "=q4=Grand Marshal's Lamellar Chestplate, =ds=", "2370 #arena# #alliance#", ""};
- { 4, 6116471, "", "=q4=Grand Marshal's Lamellar Gloves, =ds=", "1430 #arena# #alliance#", ""};
- { 5, 6116475, "", "=q4=Grand Marshal's Lamellar Legplates, =ds=", "2370 #arena# #alliance#", ""};
- { 6, 6116472, "", "=q4=Grand Marshal's Lamellar Boots, =ds=", "1430 #arena# #alliance#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Horde)";
- { 1, 29604, "", "=q3=Champion's Lamellar Headguard", "=ds=", "24000 #horde#", ""};
- { 2, 29605, "", "=q3=Champion's Lamellar Shoulders", "=ds=", "14000 #horde#", ""};
- { 3, 29602, "", "=q3=Legionnaire's Lamellar Breastplate", "=ds=", "24000 #horde#", ""};
- { 4, 29600, "", "=q3=Blood Guard's Lamellar Gauntlets", "=ds=", "14000 #horde#", ""};
- { 5, 29603, "", "=q3=Legionnaire's Lamellar Leggings", "=ds=", "24000 #horde#", ""};
- { 6, 29601, "", "=q3=Blood Guard's Lamellar Sabatons", "=ds=", "14000 #horde#", ""};
- };
- {
- Name = AL["Epic Set"].." (Horde)";
- { 1, 29616, "", "=q4=Warlord's Lamellar Faceguard", "=ds=", "68200 #horde#", ""};
- { 2, 29617, "", "=q4=Warlord's Lamellar Pauldrons", "=ds=", "52200 #horde#", ""};
- { 3, 29615, "", "=q4=Warlord's Lamellar Chestplate", "=ds=", "68200 #horde#", ""};
- { 4, 29613, "", "=q4=General's Lamellar Gloves", "=ds=", "52200 #horde#", ""};
- { 5, 29614, "", "=q4=General's Lamellar Legplates", "=ds=", "68200 #horde#", ""};
- { 6, 29612, "", "=q4=General's Lamellar Boots", "=ds=", "52200 #horde#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Horde)";
- { 1, 6129616, "", "=q4=High Warlord's Lamellar Faceguard, =ds=", "2370 #arena# #horde#", ""};
- { 2, 6129617, "", "=q4=High Warlord's Lamellar Pauldrons, =ds=", "1930 #arena# #horde#", ""};
- { 3, 6129615, "", "=q4=High Warlord's Lamellar Chestplate, =ds=", "2370 #arena# #horde#", ""};
- { 4, 6129613, "", "=q4=High High Warlord's Lamellar Gloves, =ds=", "1430 #arena# #horde#", ""};
- { 5, 6129614, "", "=q4=High High Warlord's Lamellar Legplates, =ds=", "2370 #arena# #horde#", ""};
- { 6, 6129612, "", "=q4=High High Warlord's Lamellar Boots, =ds=", "1430 #arena# #horde#", ""};
- };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t0s4#", "=ec1=#j6#" };
+ { 2, 16727, "", "=q3=Lightforge Helm", "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", "","5.32%" };
+ { 3, 16729, "", "=q3=Lightforge Spaulders", "=ds=" .. BabbleBoss["The Beast"] .. " (" .. AL["UBRS"] .. ")", "","13.62%" };
+ { 4, 16726, "", "=q3=Lightforge Breastplate", "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")","", "3.76%" };
+ { 5, 16722, "", "=q3=Lightforge Bracers", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Scholo"] .. ")", "", "3.37%" };
+ { 6, 16724, "", "=q3=Lightforge Gauntlets", "=ds=" .. BabbleBoss["Timmy the Cruel"] .. " (" .. AL["Strat"] .. ")", "","10.42%" };
+ { 7, 16723, "", "=q3=Lightforge Belt", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", "", "1.93%" };
+ { 8, 16728, "", "=q3=Lightforge Legplates", "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", "","4.20%" };
+ { 9, 16725, "", "=q3=Lightforge Boots", "=ds=" .. BabbleBoss["Balnazzar"] .. " (" .. AL["Strat"] .. ")", "", "11.11%" };
+ { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t05s4#", "=ec1=#j7#" };
+ { 17, 22091, "", "=q4=Soulforge Helm", "=ds=#a4#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 18, 22093, "", "=q3=Soulforge Spaulders", "=ds=#a4#, #s3#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 19, 22089, "", "=q4=Soulforge Breastplate", "=ds=#a4#, #s5#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 20, 22088, "", "=q3=Soulforge Bracers", "=ds=#a4#, #s8#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 21, 22090, "", "=q4=Soulforge Gauntlets", "=ds=#a4#, #s9#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 22, 22086, "", "=q3=Soulforge Belt", "=ds=#a4#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 23, 22092, "", "=q3=Soulforge Legplates", "=ds=#a4#, #s11#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 24, 22087, "", "=q4=Soulforge Boots", "=ds=#a4#, #s12#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
};
-
- AtlasLoot_Data["PVPPriest"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
- {
- Name = AL["Rare Set"].." (Alliance)";
- { 1, 17598, "", "=q3=Lieutenant Commander's Satin Hood, =ds=", "9435 #alliance#", ""};
- { 2, 17601, "", "=q3=Lieutenant Commander's Satin Mantle, =ds=", "6885 #alliance#", ""};
- { 3, 17600, "", "=q3=Knight-Captain's Satin Tunic, =ds=", "9435 #alliance#", ""};
- { 4, 17596, "", "=q3=Knight-Lieutenant's Satin Handwraps, =ds=", "5000 #alliance#", ""};
- { 5, 17599, "", "=q3=Knight-Captain's Satin Legguards, =ds=", "9435 #alliance#", ""};
- { 6, 17594, "", "=q3=Knight-Lieutenant's Satin Walkers, =ds=", "5000 #alliance#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Alliance)";
- { 1, 23316, "", "=q3=Lieutenant Commander's Satin Hood", "=ds=", "24000 #alliance#", ""};
- { 2, 23317, "", "=q3=Lieutenant Commander's Satin Mantle", "=ds=", "14000 #alliance#", ""};
- { 3, 23303, "", "=q3=Knight-Captain's Satin Tunic", "=ds=", "24000 #alliance#", ""};
- { 4, 23288, "", "=q3=Knight-Lieutenant's Satin Handwraps", "=ds=", "14000 #alliance#", ""};
- { 5, 23302, "", "=q3=Knight-Captain's Satin Legguards", "=ds=", "24000 #alliance#", ""};
- { 6, 23289, "", "=q3=Knight-Lieutenant's Satin Walkers", "=ds=", "14000 #alliance#", ""};
- };
- {
- Name = AL["Epic Set"].." (Alliance)";
- { 1, 17602, "", "=q4=Field Marshal's Headdress", "=ds=", "68200 #alliance#", ""};
- { 2, 17604, "", "=q4=Field Marshal's Satin Mantle", "=ds=", "52200 #alliance#", ""};
- { 3, 17605, "", "=q4=Field Marshal's Satin Vestments", "=ds=", "68200 #alliance#", ""};
- { 4, 17608, "", "=q4=Marshal's Satin Gloves", "=ds=", "52200 #alliance#", ""};
- { 5, 17603, "", "=q4=Marshal's Satin Pants", "=ds=", "68200 #alliance#", ""};
- { 6, 17607, "", "=q4=Marshal's Satin Sandals", "=ds=", "52200 #alliance#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Alliance)";
- { 1, 6117602, "", "=q4=Grand Marshal's Headdress, =ds=", "2370 #arena# #alliance#", ""};
- { 2, 6117604, "", "=q4=Grand Marshal's Satin Mantle, =ds=", "1930 #arena# #alliance#", ""};
- { 3, 6117605, "", "=q4=Grand Marshal's Satin Vestments, =ds=", "2370 #arena# #alliance#", ""};
- { 4, 6117608, "", "=q4=Grand Marshal's Satin Gloves, =ds=", "1430 #arena# #alliance#", ""};
- { 5, 6117603, "", "=q4=Grand Marshal's Satin Pants, =ds=", "2370 #arena# #alliance#", ""};
- { 6, 6117607, "", "=q4=Grand Marshal's Satin Sandals, =ds=", "1430 #arena# #alliance#", ""};
- };
- {
- Name = AL["Rare Set"].." (Horde)";
- { 1, 16489, "", "=q3=Champion's Satin Hood, =ds=", "9435 #horde#", ""};
- { 2, 16492, "", "=q3=Champion's Satin Mantle, =ds=", "6885 #horde#", ""};
- { 3, 16491, "", "=q3=Legionnaire's Satin Tunic, =ds=", "9435 #horde#", ""};
- { 4, 16487, "", "=q3=Blood Guard's Satin Handwraps, =ds=", "5000 #horde#", ""};
- { 5, 16490, "", "=q3=Legionnaire's Satin Legguards, =ds=", "9435 #horde#", ""};
- { 6, 16485, "", "=q3=Blood Guard's Satin Walkers, =ds=", "5000 #horde#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Horde)";
- { 1, 23261, "", "=q3=Champion's Satin Hood", "=ds=", "24000 #horde#", ""};
- { 2, 23262, "", "=q3=Champion's Satin Mantle", "=ds=", "14000 #horde#", ""};
- { 3, 22885, "", "=q3=Legionnaire's Satin Tunic", "=ds=", "24000 #horde#", ""};
- { 4, 22869, "", "=q3=Blood Guard's Satin Handwraps", "=ds=", "14000 #horde#", ""};
- { 5, 22882, "", "=q3=Legionnaire's Satin Legguards", "=ds=", "24000 #horde#", ""};
- { 6, 22859, "", "=q3=Blood Guard's Satin Walkers", "=ds=", "14000 #horde#", ""};
- };
- {
- Name = AL["Epic Set"].." (Horde)";
- { 1, 17623, "", "=q4=Warlord's Satin Cowl", "=ds=", "68200 #horde#", ""};
- { 2, 17622, "", "=q4=Warlord's Satin Mantle", "=ds=", "52200 #horde#", ""};
- { 3, 17624, "", "=q4=Warlord's Satin Robes", "=ds=", "68200 #horde#", ""};
- { 4, 17620, "", "=q4=General's Satin Gloves", "=ds=", "52200 #horde#", ""};
- { 5, 17625, "", "=q4=General's Satin Leggings", "=ds=", "68200 #horde#", ""};
- { 6, 17618, "", "=q4=General's Satin Boots", "=ds=", "52200 #horde#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Horde)";
- { 1, 6117623, "", "=q4=High Warlord's Satin Cowl, =ds=", "2370 #arena# #horde#", ""};
- { 2, 6117622, "", "=q4=High Warlord's Satin Mantle, =ds=", "1930 #arena# #horde#", ""};
- { 3, 6117624, "", "=q4=High Warlord's Satin Robes, =ds=", "2370 #arena# #horde#", ""};
- { 4, 6117620, "", "=q4=High High Warlord's Satin Gloves, =ds=", "1430 #arena# #horde#", ""};
- { 5, 6117625, "", "=q4=High High Warlord's Satin Leggings, =ds=", "2370 #arena# #horde#", ""};
- { 6, 6117618, "", "=q4=High High Warlord's Satin Boots, =ds=", "1430 #arena# #horde#", ""};
- };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t0s5#", "=ec1=#j6#" };
+ { 2, 16693, "", "=q3=Devout Crown", "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", "","7.89%" };
+ { 3, 16695, "", "=q3=Devout Mantle", "=ds=" .. BabbleBoss["Solakar Flamewreath"] .. " (" .. AL["UBRS"] .. ")", "","12.84%" };
+ { 4, 16690, "", "=q3=Devout Robe", "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", "", "6.20%" };
+ { 5, 16697, "", "=q3=Devout Bracers", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", "", "1.13%" };
+ { 6, 16692, "", "=q3=Devout Gloves", "=ds=" .. BabbleBoss["Archivist Galford"] .. " (" .. AL["Strat"] .. ")", "","" };
+ { 7, 16696, "", "=q3=Devout Belt", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", "", "2.07%" };
+ { 8, 16694, "", "=q3=Devout Skirt", "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", "", "7.42%" };
+ { 9, 16691, "", "=q3=Devout Sandals", "=ds=" .. BabbleBoss["Maleki the Pallid"] .. " (" .. AL["Strat"] .. ")", "","13.64%" };
+ { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t05s5#", "=ec1=#j7#" };
+ { 17, 22080, "", "=q4=Virtuous Crown", "=ds=#a1#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 18, 22082, "", "=q3=Virtuous Mantle", "=ds=#a1#, #s3#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 19, 22083, "", "=q4=Virtuous Robe", "=ds=#a1#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 20, 22079, "", "=q3=Virtuous Bracers", "=ds=#a1#, #s8#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 21, 22081, "", "=q4=Virtuous Gloves", "=ds=#a1#, #s9#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 22, 22078, "", "=q3=Virtuous Belt", "=ds=#a1#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 23, 22085, "", "=q3=Virtuous Skirt", "=ds=#a1#, #s11#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 24, 22084, "", "=q4=Virtuous Sandals", "=ds=#a1#, #s12#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
};
-
-
- AtlasLoot_Data["PVPRogue"] = {
+ {
Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
- {
- Name = AL["Rare Set"].." (Alliance)";
- { 1, 16418, "", "=q3=Lieutenant Commander's Leather Helm, =ds=", "9435 #alliance#", ""};
- { 2, 16420, "", "=q3=Lieutenant Commander's Leather Shoulders, =ds=", "6885 #alliance#", ""};
- { 3, 16417, "", "=q3=Knight-Captain's Leather Chestpiece, =ds=", "9435 #alliance#", ""};
- { 4, 16396, "", "=q3=Knight-Lieutenant's Leather Grips, =ds=", "5000 #alliance#", ""};
- { 5, 16419, "", "=q3=Knight-Captain's Leather Legguards, =ds=", "9435 #alliance#", ""};
- { 6, 16392, "", "=q3=Knight-Lieutenant's Leather Walkers, =ds=", "5000 #alliance#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Alliance)";
- { 1, 23312, "", "=q3=Lieutenant Commander's Leather Helm", "=ds=", "24000 #alliance#", ""};
- { 2, 23313, "", "=q3=Lieutenant Commander's Leather Shoulders", "=ds=", "14000 #alliance#", ""};
- { 3, 23298, "", "=q3=Knight-Captain's Leather Chestpiece", "=ds=", "24000 #alliance#", ""};
- { 4, 23284, "", "=q3=Knight-Lieutenant's Leather Grips", "=ds=", "14000 #alliance#", ""};
- { 5, 23299, "", "=q3=Knight-Captain's Leather Legguards", "=ds=", "24000 #alliance#", ""};
- { 6, 23285, "", "=q3=Knight-Lieutenant's Leather Walkers", "=ds=", "14000 #alliance#", ""};
- };
- {
- Name = AL["Epic Set"].." (Alliance)";
- { 1, 16455, "", "=q4=Field Marshal's Leather Mask", "=ds=", "68200 #alliance#", ""};
- { 2, 16457, "", "=q4=Field Marshal's Leather Epaulets", "=ds=", "52200 #alliance#", ""};
- { 3, 16453, "", "=q4=Field Marshal's Leather Chestpiece", "=ds=", "68200 #alliance#", ""};
- { 4, 16454, "", "=q4=Marshal's Leather Handgrips", "=ds=", "52200 #alliance#", ""};
- { 5, 16456, "", "=q4=Marshal's Leather Leggings", "=ds=", "68200 #alliance#", ""};
- { 6, 16446, "", "=q4=Marshal's Leather Footguards", "=ds=", "52200 #alliance#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Alliance)";
- { 1, 6116455, "", "=q4=Grand Marshal's Leather Mask, =ds=", "2370 #arena# #alliance#", ""};
- { 2, 6116457, "", "=q4=Grand Marshal's Leather Epaulets, =ds=", "1930 #arena# #alliance#", ""};
- { 3, 6116453, "", "=q4=Grand Marshal's Leather Chestpiece, =ds=", "2370 #arena# #alliance#", ""};
- { 4, 6116454, "", "=q4=Grand Marshal's Leather Handgrips, =ds=", "1430 #arena# #alliance#", ""};
- { 5, 6116456, "", "=q4=Grand Marshal's Leather Leggings, =ds=", "2370 #arena# #alliance#", ""};
- { 6, 6116446, "", "=q4=Grand Marshal's Leather Footguards, =ds=", "1430 #arena# #alliance#", ""};
- };
- {
- Name = AL["Rare Set"].." (Horde)";
- { 1, 16506, "", "=q3=Champion's Leather Helm, =ds=", "9435 #horde#", ""};
- { 2, 16507, "", "=q3=Champion's Leather Shoulders, =ds=", "6885 #horde#", ""};
- { 3, 16505, "", "=q3=Legionnaire's Leather Chestpiece, =ds=", "9435 #horde#", ""};
- { 4, 16499, "", "=q3=Blood Guard's Leather Grips, =ds=", "5000 #horde#", ""};
- { 5, 16508, "", "=q3=Legionnaire's Leather Legguards, =ds=", "9435 #horde#", ""};
- { 6, 16498, "", "=q3=Blood Guard's Leather Walkers, =ds=", "5000 #horde#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Horde)";
- { 1, 23257, "", "=q3=Champion's Leather Helm", "=ds=", "24000 #horde#", ""};
- { 2, 23258, "", "=q3=Champion's Leather Shoulders", "=ds=", "14000 #horde#", ""};
- { 3, 22879, "", "=q3=Legionnaire's Leather Chestpiece", "=ds=", "24000 #horde#", ""};
- { 4, 22864, "", "=q3=Blood Guard's Leather Grips", "=ds=", "14000 #horde#", ""};
- { 5, 22880, "", "=q3=Legionnaire's Leather Legguards", "=ds=", "24000 #horde#", ""};
- { 6, 22856, "", "=q3=Blood Guard's Leather Walkers", "=ds=", "14000 #horde#", ""};
- };
- {
- Name = AL["Epic Set"].." (Horde)";
- { 1, 16561, "", "=q4=Warlord's Leather Helm", "=ds=", "68200 #horde#", ""};
- { 2, 16562, "", "=q4=Warlord's Leather Spaulders", "=ds=", "52200 #horde#", ""};
- { 3, 16563, "", "=q4=Warlord's Leather Breastplate", "=ds=", "68200 #horde#", ""};
- { 4, 16560, "", "=q4=General's Leather Mitts", "=ds=", "52200 #horde#", ""};
- { 5, 16564, "", "=q4=General's Leather Legguards", "=ds=", "68200 #horde#", ""};
- { 6, 16558, "", "=q4=General's Leather Treads", "=ds=", "52200 #horde#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Horde)";
- { 1, 6116561, "", "=q4=High Warlord's Leather Helm, =ds=", "2370 #arena# #horde#", ""};
- { 2, 6116562, "", "=q4=High Warlord's Leather Spaulders, =ds=", "1930 #arena# #horde#", ""};
- { 3, 6116563, "", "=q4=High Warlord's Leather Breastplate, =ds=", "2370 #arena# #horde#", ""};
- { 4, 6116560, "", "=q4=High High Warlord's Leather Mitts, =ds=", "1430 #arena# #horde#", ""};
- { 5, 6116564, "", "=q4=High High Warlord's Leather Legguards, =ds=", "2370 #arena# #horde#", ""};
- { 6, 6116558, "", "=q4=High High Warlord's Leather Treads, =ds=", "1430 #arena# #horde#", ""};
- };
+ { 1, 0, "Ability_BackStab", "=q6=#t0s6#", "=ec1=#j6#" };
+ { 2, 16707, "", "=q3=Shadowcraft Cap", "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", "","6.65%" };
+ { 3, 16708, "", "=q3=Shadowcraft Spaulders", "=ds=" .. BabbleBoss["Cannon Master Willey"] .. " (" .. AL["Strat"] .. ")","", "10.68%" };
+ { 4, 16721, "", "=q3=Shadowcraft Tunic", "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", "","6.09%" };
+ { 5, 16710, "", "=q3=Shadowcraft Bracers", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Scholo"] .. ")", "", "3.51%" };
+ { 6, 16712, "", "=q3=Shadowcraft Gloves", "=ds=" .. BabbleBoss["Shadow Hunter Vosh'gajin"] .. " (" .. AL["LBRS"] .. ")","", "11.89%" };
+ { 7, 16713, "", "=q3=Shadowcraft Belt", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", "", "1.05%" };
+ { 8, 16709, "", "=q3=Shadowcraft Pants", "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", "","7.76%" };
+ { 9, 16711, "", "=q3=Shadowcraft Boots", "=ds=" .. BabbleBoss["Rattlegore"] .. " (" .. AL["Scholo"] .. ")", "","14.32%" };
+ { 16, 0, "Ability_BackStab", "=q6=#t05s6#", "=ec1=#j7#" };
+ { 17, 22005, "", "=q4=Darkmantle Cap", "=ds=#a2#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 18, 22008, "", "=q3=Darkmantle Spaulders", "=ds=#a2#, #s3#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 19, 22009, "", "=q4=Darkmantle Tunic", "=ds=#a2#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 20, 22004, "", "=q3=Darkmantle Bracers", "=ds=#a2#, #s8#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 21, 22006, "", "=q4=Darkmantle Gloves", "=ds=#a2#, #s9#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 22, 22002, "", "=q3=Darkmantle Belt", "=ds=#a2#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 23, 22007, "", "=q3=Darkmantle Pants", "=ds=#a2#, #s11#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 24, 22003, "", "=q4=Darkmantle Boots", "=ds=#a2#, #s12#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
};
-
- AtlasLoot_Data["PVPShaman"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
- {
- Name = AL["Superior Rare Set"].." (Alliance)";
- { 1, 29598, "", "=q3=Lieutenant Commander's Mail Headguard", "=ds=", "24000 #alliance#", ""};
- { 2, 29599, "", "=q3=Lieutenant Commander's Mail Pauldrons", "=ds=", "14000 #alliance#", ""};
- { 3, 29596, "", "=q3=Knight-Captain's Mail Hauberk", "=ds=", "24000 #alliance#", ""};
- { 4, 29595, "", "=q3=Knight-Lieutenant's Mail Vices", "=ds=", "14000 #alliance#", ""};
- { 5, 29597, "", "=q3=Knight-Captain's Mail Legguards", "=ds=", "24000 #alliance#", ""};
- { 6, 29594, "", "=q3=Knight-Lieutenant's Mail Greaves", "=ds=", "14000 #alliance#", ""};
- };
- {
- Name = AL["Epic Set"].." (Alliance)";
- { 1, 29610, "", "=q4=Field Marshal's Mail Helm", "=ds=", "68200 #alliance#", ""};
- { 2, 29611, "", "=q4=Field Marshal's Mail Spaulders", "=ds=", "52200 #alliance#", ""};
- { 3, 29609, "", "=q4=Field Marshal's Mail Armor", "=ds=", "68200 #alliance#", ""};
- { 4, 29607, "", "=q4=Marshal's Mail Gauntlets", "=ds=", "52200 #alliance#", ""};
- { 5, 29608, "", "=q4=Marshal's Mail Leggings", "=ds=", "68200 #alliance#", ""};
- { 6, 29606, "", "=q4=Marshal's Mail Boots", "=ds=", "52200 #alliance#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Alliance)";
- { 1, 6129610, "", "=q4=Grand Marshal's Mail Helm, =ds=", "2370 #arena# #alliance#", ""};
- { 2, 6129611, "", "=q4=Grand Marshal's Mail Spaulders, =ds=", "1930 #arena# #alliance#", ""};
- { 3, 6129609, "", "=q4=Grand Marshal's Mail Armor, =ds=", "2370 #arena# #alliance#", ""};
- { 4, 6129607, "", "=q4=Grand Marshal's Mail Gauntlets, =ds=", "1430 #arena# #alliance#", ""};
- { 5, 6129608, "", "=q4=Grand Marshal's Mail Leggings, =ds=", "2370 #arena# #alliance#", ""};
- { 6, 6129606, "", "=q4=Grand Marshal's Mail Boots, =ds=", "1430 #arena# #alliance#", ""};
- };
- {
- Name = AL["Rare Set"].." (Horde)";
- { 1, 16521, "", "=q3=Champion's Mail Headguard, =ds=", "9435 #horde#", ""};
- { 2, 16524, "", "=q3=Champion's Mail Pauldrons, =ds=", "6885 #horde#", ""};
- { 3, 16522, "", "=q3=Legionnaire's Mail Hauberk, =ds=", "9435 #horde#", ""};
- { 4, 16519, "", "=q3=Blood Guard's Mail Vices, =ds=", "5000 #horde#", ""};
- { 5, 16523, "", "=q3=Legionnaire's Mail Legguards, =ds=", "9435 #horde#", ""};
- { 6, 16518, "", "=q3=Blood Guard's Mail Greaves, =ds=", "5000 #horde#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Horde)";
- { 1, 23259, "", "=q3=Champion's Mail Headguard", "=ds=", "24000 #horde#", ""};
- { 2, 23260, "", "=q3=Champion's Mail Pauldrons", "=ds=", "14000 #horde#", ""};
- { 3, 22876, "", "=q3=Legionnaire's Mail Hauberk", "=ds=", "24000 #horde#", ""};
- { 4, 22867, "", "=q3=Blood Guard's Mail Vices", "=ds=", "14000 #horde#", ""};
- { 5, 22887, "", "=q3=Legionnaire's Mail Legguards", "=ds=", "24000 #horde#", ""};
- { 6, 22857, "", "=q3=Blood Guard's Mail Greaves", "=ds=", "14000 #horde#", ""};
- };
- {
- Name = AL["Epic Set"].." (Horde)";
- { 1, 16578, "", "=q4=Warlord's Mail Helm", "=ds=", "68200 #horde#", ""};
- { 2, 16580, "", "=q4=Warlord's Mail Spaulders", "=ds=", "52200 #horde#", ""};
- { 3, 16577, "", "=q4=Warlord's Mail Armor", "=ds=", "68200 #horde#", ""};
- { 4, 16574, "", "=q4=General's Mail Gauntlets", "=ds=", "52200 #horde#", ""};
- { 5, 16579, "", "=q4=General's Mail Leggings", "=ds=", "68200 #horde#", ""};
- { 6, 16573, "", "=q4=General's Mail Boots", "=ds=", "52200 #horde#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Horde)";
- { 1, 6116578, "", "=q4=High Warlord's Mail Helm, =ds=", "2370 #arena# #horde#", ""};
- { 2, 6116580, "", "=q4=High Warlord's Mail Spaulders, =ds=", "1930 #arena# #horde#", ""};
- { 3, 6116577, "", "=q4=High Warlord's Mail Armor, =ds=", "2370 #arena# #horde#", ""};
- { 4, 6116574, "", "=q4=High High Warlord's Mail Gauntlets, =ds=", "1430 #arena# #horde#", ""};
- { 5, 6116579, "", "=q4=High High Warlord's Mail Leggings, =ds=", "2370 #arena# #horde#", ""};
- { 6, 6116573, "", "=q4=High High Warlord's Mail Boots, =ds=", "1430 #arena# #horde#", ""};
- };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t0s7#", "=ec1=#j6#" };
+ { 2, 16667, "", "=q3=Coif of Elements", "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", "","2.86%" };
+ { 3, 16669, "", "=q3=Pauldrons of Elements", "=ds=" .. BabbleBoss["Gyth"] .. " (" .. AL["UBRS"] .. ")", "", "14.77%" };
+ { 4, 16666, "", "=q3=Vest of Elements", "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", "","3.03%" };
+ { 5, 16671, "", "=q3=Bindings of Elements", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", "", "1.59%" };
+ { 6, 16672, "", "=q3=Gauntlets of Elements", "=ds=" .. BabbleBoss["Pyroguard Emberseer"] .. " (" .. AL["UBRS"] .. ")","", "14.23%" };
+ { 7, 16673, "", "=q3=Cord of Elements", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", "", "1.06%" };
+ { 8, 16668, "", "=q3=Kilt of Elements", "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", "","3.02%" };
+ { 9, 16670, "", "=q3=Boots of Elements", "=ds=" .. BabbleBoss["Highlord Omokk"] .. " (" .. AL["LBRS"] .. ")", "","9.35%" };
+ { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t05s7#", "=ec1=#j7#" };
+ { 17, 22097, "", "=q4=Coif of The Five Thunders", "=ds=#a3#, #s1#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 18, 22101, "", "=q3=Pauldrons of The Five Thunders", "=ds=#a3#, #s3#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 19, 22102, "", "=q4=Vest of The Five Thunders", "=ds=#a3#, #s5#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 20, 22095, "", "=q3=Bindings of The Five Thunders", "=ds=#a3#, #s8#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 21, 22099, "", "=q4=Gauntlets of The Five Thunders", "=ds=#a3#, #s9#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 22, 22098, "", "=q3=Cord of The Five Thunders", "=ds=#a3#, #s10#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 23, 22100, "", "=q3=Kilt of The Five Thunders", "=ds=#a3#, #s11#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 24, 22096, "", "=q4=Boots of The Five Thunders", "=ds=#a3#, #s12#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
};
-
- AtlasLoot_Data["PVPWarlock"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
- {
- Name = AL["Rare Set"].." (Alliance)";
- { 1, 17566, "", "=q3=Lieutenant Commander's Dreadweave Cowl, =ds=", "9435 #alliance#", ""};
- { 2, 17569, "", "=q3=Lieutenant Commander's Dreadweave Spaulders, =ds=", "6885 #alliance#", ""};
- { 3, 17568, "", "=q3=Knight-Captain's Dreadweave Tunic, =ds=", "9435 #alliance#", ""};
- { 4, 17564, "", "=q3=Knight-Lieutenant's Dreadweave Handwraps, =ds=", "5000 #alliance#", ""};
- { 5, 17567, "", "=q3=Knight-Captain's Dreadweave Legguards, =ds=", "9435 #alliance#", ""};
- { 6, 17562, "", "=q3=Knight-Lieutenant's Dreadweave Walkers, =ds=", "5000 #alliance#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Alliance)";
- { 1, 23310, "", "=q3=Lieutenant Commander's Dreadweave Cowl", "=ds=", "24000 #alliance#", ""};
- { 2, 23311, "", "=q3=Lieutenant Commander's Dreadweave Spaulders", "=ds=", "14000 #alliance#", ""};
- { 3, 23297, "", "=q3=Knight-Captain's Dreadweave Tunic", "=ds=", "24000 #alliance#", ""};
- { 4, 23282, "", "=q3=Knight-Lieutenant's Dreadweave Handwraps", "=ds=", "14000 #alliance#", ""};
- { 5, 23296, "", "=q3=Knight-Captain's Dreadweave Legguards", "=ds=", "24000 #alliance#", ""};
- { 6, 23283, "", "=q3=Knight-Lieutenant's Dreadweave Walkers", "=ds=", "14000 #alliance#", ""};
- };
- {
- Name = AL["Epic Set"].." (Alliance)";
- { 1, 6117578, "", "=q4=Grand Marshal's Coronal, =ds=", "2370 #arena# #alliance#", ""};
- { 2, 6117580, "", "=q4=Grand Marshal's Dreadweave Shoulders, =ds=", "1930 #arena# #alliance#", ""};
- { 3, 6117581, "", "=q4=Grand Marshal's Dreadweave Robe, =ds=", "2370 #arena# #alliance#", ""};
- { 4, 6117584, "", "=q4=Grand Marshal's Dreadweave Gloves, =ds=", "1430 #arena# #alliance#", ""};
- { 5, 6117579, "", "=q4=Grand Marshal's Dreadweave Leggings, =ds=", "2370 #arena# #alliance#", ""};
- { 6, 6117583, "", "=q4=Grand Marshal's Dreadweave Boots, =ds=", "1430 #arena# #alliance#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Alliance)";
- { 1, 17578, "", "=q4=Field Marshal's Coronal", "=ds=", "68200 #alliance#", ""};
- { 2, 17580, "", "=q4=Field Marshal's Dreadweave Shoulders", "=ds=", "52200 #alliance#", ""};
- { 3, 17581, "", "=q4=Field Marshal's Dreadweave Robe", "=ds=", "68200 #alliance#", ""};
- { 4, 17584, "", "=q4=Marshal's Dreadweave Gloves", "=ds=", "52200 #alliance#", ""};
- { 5, 17579, "", "=q4=Marshal's Dreadweave Leggings", "=ds=", "68200 #alliance#", ""};
- { 6, 17583, "", "=q4=Marshal's Dreadweave Boots", "=ds=", "52200 #alliance#", ""};
- };
- {
- Name = AL["Rare Set"].." (Horde)";
- { 1, 17570, "", "=q3=Champion's Dreadweave Cowl, =ds=", "9435 #horde#", ""};
- { 2, 17573, "", "=q3=Champion's Dreadweave Spaulders, =ds=", "6885 #horde#", ""};
- { 3, 17572, "", "=q3=Legionnaire's Dreadweave Tunic, =ds=", "9435 #horde#", ""};
- { 4, 17577, "", "=q3=Blood Guard's Dreadweave Handwraps, =ds=", "5000 #horde#", ""};
- { 5, 17571, "", "=q3=Legionnaire's Dreadweave Legguards, =ds=", "9435 #horde#", ""};
- { 6, 17576, "", "=q3=Blood Guard's Dreadweave Walkers, =ds=", "5000 #horde#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Horde)";
- { 1, 23255, "", "=q3=Champion's Dreadweave Cowl", "=ds=", "24000 #horde#", ""};
- { 2, 23256, "", "=q3=Champion's Dreadweave Spaulders", "=ds=", "14000 #horde#", ""};
- { 3, 22884, "", "=q3=Legionnaire's Dreadweave Tunic", "=ds=", "24000 #horde#", ""};
- { 4, 22865, "", "=q3=Blood Guard's Dreadweave Handwraps", "=ds=", "14000 #horde#", ""};
- { 5, 22881, "", "=q3=Legionnaire's Dreadweave Legguards", "=ds=", "24000 #horde#", ""};
- { 6, 22855, "", "=q3=Blood Guard's Dreadweave Walkers", "=ds=", "14000 #horde#", ""};
- };
- {
- Name = AL["Epic Set"].." (Horde)";
- { 1, 17591, "", "=q4=Warlord's Dreadweave Hood", "=ds=", "68200 #horde#", ""};
- { 2, 17590, "", "=q4=Warlord's Dreadweave Mantle", "=ds=", "52200 #horde#", ""};
- { 3, 17592, "", "=q4=Warlord's Dreadweave Robe", "=ds=", "68200 #horde#", ""};
- { 4, 17588, "", "=q4=General's Dreadweave Gloves", "=ds=", "52200 #horde#", ""};
- { 5, 17593, "", "=q4=General's Dreadweave Pants", "=ds=", "68200 #horde#", ""};
- { 6, 17586, "", "=q4=General's Dreadweave Boots", "=ds=", "52200 #horde#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Horde)";
- { 1, 6117591, "", "=q4=High Warlord's Dreadweave Hood, =ds=", "2370 #arena# #horde#", ""};
- { 2, 6117590, "", "=q4=High Warlord's Dreadweave Mantle, =ds=", "1930 #arena# #horde#", ""};
- { 3, 6117592, "", "=q4=High Warlord's Dreadweave Robe, =ds=", "2370 #arena# #horde#", ""};
- { 4, 6117588, "", "=q4=High High Warlord's Dreadweave Gloves, =ds=", "1430 #arena# #horde#", ""};
- { 5, 6117593, "", "=q4=High High Warlord's Dreadweave Pants, =ds=", "2370 #arena# #horde#", ""};
- { 6, 6117586, "", "=q4=High High Warlord's Dreadweave Boots, =ds=", "1430 #arena# #horde#", ""};
- };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t0s8#", "=ec1=#j6#" };
+ { 2, 16698, "", "=q3=Dreadmist Mask", "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", "","8.78%" };
+ { 3, 16701, "", "=q3=Dreadmist Mantle", "=ds=" .. BabbleBoss["Jandice Barov"] .. " (" .. AL["Scholo"] .. ")", "","12.20%" };
+ { 4, 16700, "", "=q3=Dreadmist Robe", "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", "","8.04%" };
+ { 5, 16703, "", "=q3=Dreadmist Bracers", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", "", "1.68%" };
+ { 6, 16705, "", "=q3=Dreadmist Wraps", "=ds=" .. BabbleBoss["Lorekeeper Polkelt"] .. " (" .. AL["Scholo"] .. ")", "","14.54%" };
+ { 7, 16702, "", "=q3=Dreadmist Belt", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", "", "1.03%" };
+ { 8, 16699, "", "=q3=Dreadmist Leggings", "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", "","7.31%" };
+ { 9, 16704, "", "=q3=Dreadmist Sandals", "=ds=" .. BabbleBoss["Baroness Anastari"] .. " (" .. AL["Strat"] .. ")", "","13.16%" };
+ { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t05s8#", "=ec1=#j7#" };
+ { 17, 22074, "", "=q4=Deathmist Mask", "=ds=#a1#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 18, 22073, "", "=q3=Deathmist Mantle", "=ds=#a1#, #s5#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 19, 22075, "", "=q4=Deathmist Robe", "=ds=#a1#, #s3#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 20, 22071, "", "=q3=Deathmist Bracers", "=ds=#a1#, #s8#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 21, 22077, "", "=q4=Deathmist Wraps", "=ds=#a1#, #s9#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 22, 22070, "", "=q3=Deathmist Belt", "=ds=#a1#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 23, 22072, "", "=q3=Deathmist Leggings", "=ds=#a1#, #s11#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 24, 22076, "", "=q4=Deathmist Sandals", "=ds=#a1#, #s12#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
};
-
- AtlasLoot_Data["PVPWarrior"] = {
- Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
- {
- Name = AL["Rare Set"].." (Alliance)";
- { 1, 16429, "", "=q3=Lieutenant Commander's Plate Helm, =ds=", "9435 #alliance#", ""};
- { 2, 16432, "", "=q3=Lieutenant Commander's Plate Shoulders, =ds=", "6885 #alliance#", ""};
- { 3, 16430, "", "=q3=Knight-Captain's Plate Hauberk, =ds=", "9435 #alliance#", ""};
- { 4, 16406, "", "=q3=Knight-Lieutenant's Plate Gauntlets, =ds=", "5000 #alliance#", ""};
- { 5, 16431, "", "=q3=Knight-Captain's Plate Leggings, =ds=", "9435 #alliance#", ""};
- { 6, 16405, "", "=q3=Knight-Lieutenant's Plate Greaves, =ds=", "5000 #alliance#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Alliance)";
- { 1, 23314, "", "=q3=Lieutenant Commander's Plate Helm", "=ds=", "24000 #alliance#", ""};
- { 2, 23315, "", "=q3=Lieutenant Commander's Plate Shoulders", "=ds=", "14000 #alliance#", ""};
- { 3, 23300, "", "=q3=Knight-Captain's Plate Hauberk", "=ds=", "24000 #alliance#", ""};
- { 4, 23286, "", "=q3=Knight-Lieutenant's Plate Gauntlets", "=ds=", "14000 #alliance#", ""};
- { 5, 23301, "", "=q3=Knight-Captain's Plate Leggings", "=ds=", "24000 #alliance#", ""};
- { 6, 23287, "", "=q3=Knight-Lieutenant's Plate Greaves", "=ds=", "14000 #alliance#", ""};
- };
- {
- Name = AL["Epic Set"].." (Alliance)";
- { 1, 16478, "", "=q4=Field Marshal's Plate Helm", "=ds=", "68200 #alliance#", ""};
- { 2, 16480, "", "=q4=Field Marshal's Plate Shoulderguards", "=ds=", "52200 #alliance#", ""};
- { 3, 16477, "", "=q4=Field Marshal's Plate Armor", "=ds=", "68200 #alliance#", ""};
- { 4, 16484, "", "=q4=Marshal's Plate Gauntlets", "=ds=", "52200 #alliance#", ""};
- { 5, 16479, "", "=q4=Marshal's Plate Legguards", "=ds=", "68200 #alliance#", ""};
- { 6, 16483, "", "=q4=Marshal's Plate Boots", "=ds=", "52200 #alliance#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Alliance)";
- { 1, 6116478, "", "=q4=Grand Marshal's Plate Helm, =ds=", "2370 #arena# #alliance#", ""};
- { 2, 6116480, "", "=q4=Grand Marshal's Plate Shoulderguards, =ds=", "1930 #arena# #alliance#", ""};
- { 3, 6116477, "", "=q4=Grand Marshal's Plate Armor, =ds=", "2370 #arena# #alliance#", ""};
- { 4, 6116484, "", "=q4=Grand Marshal's Plate Gauntlets, =ds=", "1430 #arena# #alliance#", ""};
- { 5, 6116479, "", "=q4=Grand Marshal's Plate Legguards, =ds=", "2370 #arena# #alliance#", ""};
- { 6, 6116483, "", "=q4=Grand Marshal's Plate Boots, =ds=", "1430 #arena# #alliance#", ""};
- };
- {
- Name = AL["Rare Set"].." (Horde)";
- { 1, 16514, "", "=q3=Champion's Plate Helm, =ds=", "9435 #horde#", ""};
- { 2, 16516, "", "=q3=Champion's Plate Shoulders, =ds=", "6885 #horde#", ""};
- { 3, 16513, "", "=q3=Legionnaire's Plate Hauberk, =ds=", "9435 #horde#", ""};
- { 4, 16510, "", "=q3=Blood Guard's Plate Gauntlets, =ds=", "5000 #horde#", ""};
- { 5, 16515, "", "=q3=Legionnaire's Plate Leggings, =ds=", "9435 #horde#", ""};
- { 6, 16509, "", "=q3=Blood Guard's Plate Greaves, =ds=", "5000 #horde#", ""};
- };
- {
- Name = AL["Superior Rare Set"].." (Horde)";
- { 1, 23244, "", "=q3=Champion's Plate Helm", "=ds=", "24000 #horde#", ""};
- { 2, 23243, "", "=q3=Champion's Plate Shoulders", "=ds=", "14000 #horde#", ""};
- { 3, 22872, "", "=q3=Legionnaire's Plate Hauberk", "=ds=", "24000 #horde#", ""};
- { 4, 22868, "", "=q3=Blood Guard's Plate Gauntlets", "=ds=", "14000 #horde#", ""};
- { 5, 22873, "", "=q3=Legionnaire's Plate Leggings", "=ds=", "24000 #horde#", ""};
- { 6, 22858, "", "=q3=Blood Guard's Plate Greaves", "=ds=", "14000 #horde#", ""};
- };
- {
- Name = AL["Epic Set"].." (Horde)";
- { 1, 16542, "", "=q4=Warlord's Plate Headpiece", "=ds=", "68200 #horde#", ""};
- { 2, 16544, "", "=q4=Warlord's Plate Shoulders", "=ds=", "52200 #horde#", ""};
- { 3, 16541, "", "=q4=Warlord's Plate Armor", "=ds=", "68200 #horde#", ""};
- { 4, 16548, "", "=q4=General's Plate Gauntlets", "=ds=", "52200 #horde#", ""};
- { 5, 16543, "", "=q4=General's Plate Leggings", "=ds=", "68200 #horde#", ""};
- { 6, 16545, "", "=q4=General's Plate Boots", "=ds=", "52200 #horde#", ""};
- };
- {
- Name = AL["Superior Epic Set"].." (Horde)";
- { 1, 6116542, "", "=q4=High Warlord's Plate Headpiece, =ds=", "2370 #arena# #horde#", ""};
- { 2, 6116544, "", "=q4=High Warlord's Plate Shoulders, =ds=", "1930 #arena# #horde#", ""};
- { 3, 6116541, "", "=q4=High Warlord's Plate Armor, =ds=", "2370 #arena# #horde#", ""};
- { 4, 6116548, "", "=q4=High High Warlord's Plate Gauntlets, =ds=", "1430 #arena# #horde#", ""};
- { 5, 6116543, "", "=q4=High High Warlord's Plate Leggings, =ds=", "2370 #arena# #horde#", ""};
- { 6, 6116545, "", "=q4=High High Warlord's Plate Boots, =ds=", "1430 #arena# #horde#", ""};
- };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
+ { 1, 0, "INV_Shield_05", "=q6=#t0s9#", "=ec1=#j6#" };
+ { 2, 16731, "", "=q3=Helm of Valor", "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", "","6.54%" };
+ { 3, 16733, "", "=q3=Spaulders of Valor", "=ds=" .. BabbleBoss["Warchief Rend Blackhand"] .. " (" .. AL["UBRS"] .. ")","", "13.39%" };
+ { 4, 16730, "", "=q3=Breastplate of Valor", "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", "","5.83%" };
+ { 5, 16735, "", "=q3=Bracers of Valor", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", "", "1.49%" };
+ { 6, 16737, "", "=q3=Gauntlets of Valor", "=ds=" .. BabbleBoss["Ramstein the Gorger"] .. " (" .. AL["Strat"] .. ")", "","9.58%" };
+ { 7, 16736, "", "=q3=Belt of Valor", "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", "", "1.96%" };
+ { 8, 16732, "", "=q3=Legplates of Valor", "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", "","5.74%" };
+ { 9, 16734, "", "=q3=Boots of Valor", "=ds=" .. BabbleBoss["Kirtonos the Herald"] .. " (" .. AL["Scholo"] .. ")", "","11.12%" };
+ { 16, 0, "INV_Shield_05", "=q6=#t05s9#", "=ec1=#j7#" };
+ { 17, 21999, "", "=q4=Helm of Heroism", "=ds=#a4#, #s1#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 18, 22001, "", "=q3=Spaulders of Heroism", "=ds=#a4#, #s3#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 19, 21997, "", "=q4=Breastplate of Heroism", "=ds=#a4#, #s5#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 20, 21996, "", "=q3=Bracers of Heroism", "=ds=#a4#, #s8#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 21, 21998, "", "=q4=Gauntlets of Heroism", "=ds=#a4#, #s9#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 22, 21994, "", "=q3=Belt of Heroism", "=ds=#a4#, #s10#", [AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 23, 22000, "", "=q3=Legplates of Heroism", "=ds=#a4#, #s11#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
+ { 24, 21995, "", "=q4=Boots of Heroism", "=ds=#a4#, #s12#",[AtlasLoot_Difficulty.MAX_DIF] = AtlasLoot_Difficulty.Normal };
};
+};
- ----------------------------
- --- PvP Level 60 Weapons ---
- ----------------------------
+-----------------------------
+--- Tier 1/2 Sets (T1/T2) ---
+-----------------------------
- AtlasLoot_Data["PVPWeapons60"] = {
- Name = AL["PvP Weapons (Level 60)"];
- {
- Name = "Grand Marshal's (Alliance)";
- { 1, 18843, "", "=q4=Grand Marshal's Right Hand Blade", "=ds=#h3#, #w13#", "34100 #alliance#", ""};
- { 2, 18847, "", "=q4=Grand Marshal's Left Hand Blade", "=ds=#h4#, #w13#", "34100 #alliance#", ""};
- { 3, 23451, "", "=q4=Grand Marshal's Mageblade", "=ds=#h4#, #w4#", "34100 #alliance#", ""};
- { 4, 18838, "", "=q4=Grand Marshal's Dirk", "=ds=#h1#, #w4#", "34100 #alliance#", ""};
- { 5, 12584, "", "=q4=Grand Marshal's Longsword", "=ds=#h1#, #w10#", "34100 #alliance#", ""};
- { 6, 23456, "", "=q4=Grand Marshal's Swiftblade", "=ds=#h1#, #w10#", "34100 #alliance#", ""};
- { 7, 18876, "", "=q4=Grand Marshal's Claymore", "=ds=#h2#, #w10#", "68200 #alliance#", ""};
- { 8, 18827, "", "=q4=Grand Marshal's Handaxe", "=ds=#h1#, #w1#", "34100 #alliance#", ""};
- { 9, 18830, "", "=q4=Grand Marshal's Sunderer", "=ds=#h2#, #w1#", "68200 #alliance#", ""};
- { 10, 23454, "", "=q4=Grand Marshal's Warhammer", "=ds=#h3#, #w6#", "34100 #alliance#", ""};
- { 11, 18865, "", "=q4=Grand Marshal's Punisher", "=ds=#h1#, #w6#", "34100 #alliance#", ""};
- { 12, 18867, "", "=q4=Grand Marshal's Battle Hammer", "=ds=#h2#, #w6#", "68200 #alliance#", ""};
- { 13, 23455, "", "=q4=Grand Marshal's Demolisher", "=ds=#h2#, #w6#", "68200 #alliance#", ""};
- { 14, 18869, "", "=q4=Grand Marshal's Glaive", "=ds=#w7#", "68200 #alliance#", ""};
- { 15, 18873, "", "=q4=Grand Marshal's Stave", "=ds=#w9#", "68200 #alliance#", ""};
- { 16, 18825, "", "=q4=Grand Marshal's Aegis", "=ds=#w8#", "34100 #alliance#", ""};
- { 17, 18833, "", "=q4=Grand Marshal's Bullseye", "=ds=#w2#", "34100 #alliance#", ""};
- { 18, 18836, "", "=q4=Grand Marshal's Repeater", "=ds=#w3#", "34100 #alliance#", ""};
- { 19, 18855, "", "=q4=Grand Marshal's Hand Cannon", "=ds=#w5#", "34100 #alliance#", ""};
- { 20, 23452, "", "=q4=Grand Marshal's Tome of Power", "=ds=#s15#", "34100 #alliance#", ""};
- { 21, 23453, "", "=q4=Grand Marshal's Tome of Restoration", "=ds=#s15#", "34100 #alliance#", ""};
- };
- {
- Name = "Lieutenant Commander's (Alliance)";
- { 1, 918843, "", "=q3=Lieutenant Commander's Right Hand Blade", "=ds=#h3#, #w13#", "20000 #alliance#", ""};
- { 2, 918847, "", "=q3=Lieutenant Commander's Left Hand Blade", "=ds=#h4#, #w13#", "20000 #alliance#", ""};
- { 3, 923451, "", "=q3=Lieutenant Commander's Mageblade", "=ds=#h4#, #w4#", "20000 #alliance#", ""};
- { 4, 918838, "", "=q3=Lieutenant Commander's Dirk", "=ds=#h1#, #w4#", "20000 #alliance#", ""};
- { 5, 912584, "", "=q3=Lieutenant Commander's Longsword", "=ds=#h1#, #w10#", "20000 #alliance#", ""};
- { 6, 923456, "", "=q3=Lieutenant Commander's Swiftblade", "=ds=#h1#, #w10#", "20000 #alliance#", ""};
- { 7, 918876, "", "=q3=Lieutenant Commander's Claymore", "=ds=#h2#, #w10#", "34100 #alliance#", ""};
- { 8, 918827, "", "=q3=Lieutenant Commander's Handaxe", "=ds=#h1#, #w1#", "20000 #alliance#", ""};
- { 9, 918830, "", "=q3=Lieutenant Commander's Sunderer", "=ds=#h2#, #w1#", "34100 #alliance#", ""};
- { 10, 923454, "", "=q3=Lieutenant Commander's Warhammer", "=ds=#h3#, #w6#", "20000 #alliance#", ""};
- { 11, 918865, "", "=q3=Lieutenant Commander's Punisher", "=ds=#h1#, #w6#", "20000 #alliance#", ""};
- { 12, 918867, "", "=q3=Lieutenant Commander's Battle Hammer", "=ds=#h2#, #w6#", "34100 #alliance#", ""};
- { 13, 923455, "", "=q3=Lieutenant Commander's Demolisher", "=ds=#h2#, #w6#", "34100 #alliance#", ""};
- { 14, 918869, "", "=q3=Lieutenant Commander's Glaive", "=ds=#w7#", "34100 #alliance#", ""};
- { 15, 918873, "", "=q3=Lieutenant Commander's Stave", "=ds=#w9#", "34100 #alliance#", ""};
- { 16, 918825, "", "=q3=Lieutenant Commander's Aegis", "=ds=#w8#", "20000 #alliance#", ""};
- { 17, 918833, "", "=q3=Lieutenant Commander's Bullseye", "=ds=#w2#", "20000 #alliance#", ""};
- { 18, 918836, "", "=q3=Lieutenant Commander's Repeater", "=ds=#w3#", "20000 #alliance#", ""};
- { 19, 918855, "", "=q3=Lieutenant Commander's Hand Cannon", "=ds=#w5#", "20000 #alliance#", ""};
- { 20, 923452, "", "=q3=Lieutenant Commander's Tome of Power", "=ds=#s15#", "20000 #alliance#", ""};
- { 21, 923453, "", "=q3=Lieutenant Commander's Tome of Restoration", "=ds=#s15#", "20000 #alliance#", ""};
- };
- {
- Name = "High Warlord's (Horde)";
- { 1, 18844, "", "=q4=High Warlord's Right Claw", "=ds=#h3#, #w13#", "34100 #horde#", ""};
- { 2, 18848, "", "=q4=High Warlord's Left Claw", "=ds=#h4#, #w13#", "34100 #horde#", ""};
- { 3, 23466, "", "=q4=High Warlord's Spellblade", "=ds=#h4#, #w4#", "34100 #horde#", ""};
- { 4, 18840, "", "=q4=High Warlord's Razor", "=ds=#h1#, #w4#", "34100 #horde#", ""};
- { 5, 16345, "", "=q4=High Warlord's Blade", "=ds=#h1#, #w10#", "34100 #horde#", ""};
- { 6, 23467, "", "=q4=High Warlord's Quickblade", "=ds=#h1#, #w10#", "34100 #horde#", ""};
- { 7, 18877, "", "=q4=High Warlord's Greatsword", "=ds=#h2#, #w10#", "68200 #horde#", ""};
- { 8, 18828, "", "=q4=High Warlord's Cleaver", "=ds=#h1#, #w1#", "34100 #horde#", ""};
- { 9, 18831, "", "=q4=High Warlord's Battle Axe", "=ds=#h2#, #w1#", "68200 #horde#", ""};
- { 10, 23464, "", "=q4=High Warlord's Battle Mace", "=ds=#h3#, #w6#", "34100 #horde#", ""};
- { 11, 18866, "", "=q4=High Warlord's Bludgeon", "=ds=#h1#, #w6#", "34100 #horde#", ""};
- { 12, 18868, "", "=q4=High Warlord's Pulverizer", "=ds=#h2#, #w6#", "68200 #horde#", ""};
- { 13, 23465, "", "=q4=High Warlord's Destroyer", "=ds=#h2#, #w6#", "68200 #horde#", ""};
- { 14, 18871, "", "=q4=High Warlord's Pig Sticker", "=ds=#w7#", "68200 #horde#", ""};
- { 15, 18874, "", "=q4=High Warlord's War Staff", "=ds=#w9#", "68200 #horde#", ""};
- { 16, 18826, "", "=q4=High Warlord's Shield Wall", "=ds=#w8#", "34100 #horde#", ""};
- { 17, 18835, "", "=q4=High Warlord's Recurve", "=ds=#w2#", "34100 #horde#", ""};
- { 18, 18837, "", "=q4=High Warlord's Crossbow", "=ds=#w3#", "34100 #horde#", ""};
- { 19, 18860, "", "=q4=High Warlord's Street Sweeper", "=ds=#w5#", "34100 #horde#", ""};
- { 20, 23468, "", "=q4=High Warlord's Tome of Destruction", "=ds=#s15#", "34100 #horde#", ""};
- { 21, 23469, "", "=q4=High Warlord's Tome of Mending", "=ds=#s15#", "34100 #horde#", ""};
-
- };
- {
- Name = "Champion's (Horde)";
- { 1, 918844, "", "=q3=Champion's Right Claw", "=ds=#h3#, #w13#", "20000 #horde#", ""};
- { 2, 918848, "", "=q3=Champion's Left Claw", "=ds=#h4#, #w13#", "20000 #horde#", ""};
- { 3, 923466, "", "=q3=Champion's Spellblade", "=ds=#h4#, #w4#", "20000 #horde#", ""};
- { 4, 918840, "", "=q3=Champion's Razor", "=ds=#h1#, #w4#", "20000 #horde#", ""};
- { 5, 916345, "", "=q3=Champion's Blade", "=ds=#h1#, #w10#", "20000 #horde#", ""};
- { 6, 923467, "", "=q3=Champion's Quickblade", "=ds=#h1#, #w10#", "20000 #horde#", ""};
- { 7, 918877, "", "=q3=Champion's Greatsword", "=ds=#h2#, #w10#", "34100 #horde#", ""};
- { 8, 918828, "", "=q3=Champion's Cleaver", "=ds=#h1#, #w1#", "20000 #horde#", ""};
- { 9, 918831, "", "=q3=Champion's Battle Axe", "=ds=#h2#, #w1#", "34100 #horde#", ""};
- { 10, 923464, "", "=q3=Champion's Battle Mace", "=ds=#h3#, #w6#", "20000 #horde#", ""};
- { 11, 918866, "", "=q3=Champion's Bludgeon", "=ds=#h1#, #w6#", "20000 #horde#", ""};
- { 12, 918868, "", "=q3=Champion's Pulverizer", "=ds=#h2#, #w6#", "34100 #horde#", ""};
- { 13, 923465, "", "=q3=Champion's Destroyer", "=ds=#h2#, #w6#", "34100 #horde#", ""};
- { 14, 918871, "", "=q3=Champion's Pig Sticker", "=ds=#w7#", "34100 #horde#", ""};
- { 15, 918874, "", "=q3=Champion's War Staff", "=ds=#w9#", "34100 #horde#", ""};
- { 16, 918826, "", "=q3=Champion's Shield Wall", "=ds=#w8#", "20000 #horde#", ""};
- { 17, 918835, "", "=q3=Champion's Recurve", "=ds=#w2#", "20000 #horde#", ""};
- { 18, 918837, "", "=q3=Champion's Crossbow", "=ds=#w3#", "20000 #horde#", ""};
- { 19, 918860, "", "=q3=Champion's Street Sweeper", "=ds=#w5#", "20000 #horde#", ""};
- { 20, 923468, "", "=q3=Champion's Tome of Destruction", "=ds=#s15#", "20000 #horde#", ""};
- { 21, 923469, "", "=q3=Champion's Tome of Mending", "=ds=#s15#", "20000 #horde#", ""};
- };
+AtlasLoot_Data["T1"] = {
+ Name = "Tier 1";
+ Type = "ClassicRaid";
+ {
+ Name = "Druid".." - "..AL["Restoration"];
+ { 1, 16834, "", "=q4=Cenarion Helm", "=ds=" .. BabbleBoss["Garr"], "", "11.51%" };
+ { 2, 16836, "", "=q4=Cenarion Spaulders", "=ds=" .. BabbleBoss["Baron Geddon"], "", "19.52%" };
+ { 3, 16833, "", "=q4=Cenarion Vestments", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "", "15.21%" };
+ { 4, 16830, "", "=q4=Cenarion Bracers", "=ds=" .. AL["Trash Mobs"], "", "0.17%" };
+ { 5, 16831, "", "=q4=Cenarion Gloves", "=ds=" .. BabbleBoss["Shazzrah"], "", "19.53%" };
+ { 6, 16828, "", "=q4=Cenarion Belt", "=ds=" .. AL["Trash Mobs"], "", "0.16%" };
+ { 7, 16835, "", "=q4=Cenarion Leggings", "=ds=" .. BabbleBoss["Magmadar"], "", "12.90%" };
+ { 8, 16829, "", "=q4=Cenarion Boots", "=ds=" .. BabbleBoss["Lucifron"], "", "10.72%" };
};
-
- --------------------------------
- --- PvP Level 60 Accessories ---
- --------------------------------
- AtlasLoot_Data["PvP60Accessories"] = {
- Name = AL["PvP Accessories (Level 60)"];
- {
- Name = "Alliance 1";
- { 1, 100533, "", "=q4=Combatant's Amulet of Victory, =ds=", "34100 #alliance#", ""};
- { 2, 100534, "", "=q4=Combatant's Amulet of Triumph, =ds=", "34100 #alliance#", ""};
- { 3, 100535, "", "=q4=Combatant's Amulet of Dominance, =ds=", "34100 #alliance#", ""};
- { 4, 100536, "", "=q4=Combatant's Amulet of Conquest, =ds=", "34100 #alliance#", ""};
- { 5, 100537, "", "=q4=Combatant's Loop of Triumph, =ds=", "34100 #alliance#", ""};
- { 6, 100538, "", "=q4=Combatant's Loop of Victory, =ds=", "34100 #alliance#", ""};
- { 7, 100539, "", "=q4=Combatant's Loop of Dominance, =ds=", "34100 #alliance#", ""};
- { 8, 100540, "", "=q4=Combatant's Loop of Conquest, =ds=", "34100 #alliance#", ""};
- { 9, 100541, "", "=q4=Combatant's Cloak of Triumph, =ds=", "34100 #alliance#", ""};
- { 10, 100542, "", "=q4=Combatant's Cloak of Victory, =ds=", "34100 #alliance#", ""};
- { 11, 100543, "", "=q4=Combatant's Cloak of Dominance, =ds=", "34100 #alliance#", ""};
- { 12, 100544, "", "=q4=Combatant's Cloak of Conquest, =ds=", "34100 #alliance#", ""};
- { 16, 100526, "", "=q4=Battlemaster's Fury, =ds=", " #alliance#", ""};
- { 17, 100527, "", "=q4=Battlemaster's Rage, =ds=", " #alliance#", ""};
- { 18, 100528, "", "=q4=Battlemaster's Ruination, =ds=", " #alliance#", ""};
- { 19, 100529, "", "=q4=Insignia of the Alliance, =ds=", " #alliance#", ""};
- { 20, 100530, "", "=q4=Insignia of the Horde, =ds=", " #alliance#", ""};
- { 21, 100531, "", "=q4=Combatant's Scroll of Battle, =ds=", " #alliance#", ""};
- { 22, 100532, "", "=q4=Combatant's Scroll of Sorcery, =ds=", " #alliance#", ""};
- };
- {
- Name = "Alliance 2";
- { 1, 29465, "", "=q4=Black Battlestrider", "=ds=#e12#", "50000 #alliance#", ""};
- { 2, 29467, "", "=q4=Black War Ram", "=ds=#e12#", "50000 #alliance#", ""};
- { 3, 29468, "", "=q4=Black War Steed Bridle", "=ds=#e12#", "50000 #alliance#", ""};
- { 4, 29471, "", "=q4=Reins of the Black War Tiger", "=ds=#e12#", "50000 #alliance#", ""};
- { 5, 35906, "", "=q4=Reins of the Black War Elekk", "=ds#e12#=", "50000 #alliance#", ""};
- { 7, 18863, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""};
- { 8, 18856, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""};
- { 9, 18859, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""};
- { 10, 18864, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""};
- { 11, 18862, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""};
- { 12, 18857, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""};
- { 13, 29593, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""};
- { 14, 18858, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""};
- { 15, 18854, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""};
- { 16, 15196, "", "=q1=Private's Tabard", "=ds=#s7#", "15000 #alliance#", ""};
- { 17, 15198, "", "=q1=Knight's Colors", "=ds=#s7#", "20000 #alliance#", ""};
- { 18, 18606, "", "=q1=Alliance Battle Standard", "=ds=", "15300 #alliance#", ""};
- { 20, 18839, "", "=q1=Combat Healing Potion", "=ds=#e2#", "10 #silver# 1 #alliance#", ""};
- { 21, 18841, "", "=q1=Combat Mana Potion", "=ds=#e2#", "10 #silver# 1 #alliance#", ""};
- { 22, 32455, "", "=q1=Star's Lament", "=ds=#e4#", "12 #silver# 1 #alliance#", ""};
- };
- {
- Name = "Alliance 3";
- { 1, 18457, "", "=q3=Sergeant Major's Silk Cuffs", "=ds=#s8#, #a1#", "300 #alliance#", ""};
- { 2, 18456, "", "=q3=Sergeant Major's Silk Cuffs", "=ds=#s8#, #a1#", "1600 #alliance#", ""};
- { 4, 18455, "", "=q3=Sergeant Major's Dragonhide Armsplints", "=ds=#s8#, #a2#", "300 #alliance#", ""};
- { 5, 18454, "", "=q3=Sergeant Major's Dragonhide Armsplints", "=ds=#s8#, #a2#", "1600 #alliance#", ""};
- { 7, 18453, "", "=q3=Sergeant Major's Leather Armsplints", "=ds=#s8#, #a3#", "300 #alliance#", ""};
- { 8, 18452, "", "=q3=Sergeant Major's Leather Armsplints", "=ds=#s8#, #a3#", "1600 #alliance#", ""};
- { 10, 18449, "", "=q3=Sergeant Major's Chain Armguards", "=ds=#s8#, #a3#", "300 #alliance#", ""};
- { 11, 18448, "", "=q3=Sergeant Major's Chain Armguards", "=ds=#s8#, #a3#", "1600 #alliance#", ""};
- { 13, 18447, "", "=q3=Sergeant Major's Plate Wristguards", "=ds=#s8#, #a4#", "300 #alliance#", ""};
- { 14, 18445, "", "=q3=Sergeant Major's Plate Wristguards", "=ds=#s8#, #a4#", "1600 #alliance#", ""};
- { 16, 18440, "", "=q3=Sergeant's Cape", "=ds=#s4#", "100 #alliance#", ""};
- { 17, 18441, "", "=q3=Sergeant's Cape", "=ds=#s4#", "300 #alliance#", ""};
- { 18, 16342, "", "=q3=Sergeant's Cape", "=ds=#s4#", "1600 #alliance#", ""};
- { 20, 18442, "", "=q3=Master Sergeant's Insignia", "=ds=#s2#", "100 #alliance#", ""};
- { 21, 18444, "", "=q3=Master Sergeant's Insignia", "=ds=#s2#", "300 #alliance#", ""};
- { 22, 18443, "", "=q3=Master Sergeant's Insignia", "=ds=#s2#", "1600 #alliance#", ""};
- };
- {
- Name = "Horde 1";
- { 1, 100533, "", "=q4=Combatant's Amulet of Victory, =ds=", "34100 #horde#", ""};
- { 2, 100534, "", "=q4=Combatant's Amulet of Triumph, =ds=", "34100 #horde#", ""};
- { 3, 100535, "", "=q4=Combatant's Amulet of Dominance, =ds=", "34100 #horde#", ""};
- { 4, 100536, "", "=q4=Combatant's Amulet of Conquest, =ds=", "34100 #horde#", ""};
- { 5, 100537, "", "=q4=Combatant's Loop of Triumph, =ds=", "34100 #horde#", ""};
- { 6, 100538, "", "=q4=Combatant's Loop of Victory, =ds=", "34100 #horde#", ""};
- { 7, 100539, "", "=q4=Combatant's Loop of Dominance, =ds=", "34100 #horde#", ""};
- { 8, 100540, "", "=q4=Combatant's Loop of Conquest, =ds=", "34100 #horde#", ""};
- { 9, 100541, "", "=q4=Combatant's Cloak of Triumph, =ds=", "34100 #horde#", ""};
- { 10, 100542, "", "=q4=Combatant's Cloak of Victory, =ds=", "34100 #horde#", ""};
- { 11, 100543, "", "=q4=Combatant's Cloak of Dominance, =ds=", "34100 #horde#", ""};
- { 12, 100544, "", "=q4=Combatant's Cloak of Conquest, =ds=", "34100 #horde#", ""};
- { 16, 100526, "", "=q4=Battlemaster's Fury, =ds=", " #horde#", ""};
- { 17, 100527, "", "=q4=Battlemaster's Rage, =ds=", " #horde#", ""};
- { 18, 100528, "", "=q4=Battlemaster's Ruination, =ds=", " #horde#", ""};
- { 19, 100529, "", "=q4=Insignia of the Alliance, =ds=", " #horde#", ""};
- { 20, 100530, "", "=q4=Insignia of the Horde, =ds=", " #horde#", ""};
- { 21, 100531, "", "=q4=Combatant's Scroll of Battle, =ds=", " #horde#", ""};
- { 22, 100532, "", "=q4=Combatant's Scroll of Sorcery, =ds=", " #horde#", ""};
- };
- {
- Name = "Horde 2";
- { 1, 29466, "", "=q4=Black War Kodo", "=ds=#e12#", "50000 #horde#", ""};
- { 2, 29469, "", "=q4=Horn of the Black War Wolf", "=ds=#e12#", "50000 #horde#", ""};
- { 3, 29470, "", "=q4=Red Skeletal Warhorse", "=ds=#e12#", "50000 #horde#", ""};
- { 4, 29472, "", "=q4=Whistle of the Black War Raptor", "=ds=#e12#", "50000 #horde#", ""};
- { 5, 34129, "", "=q4=Swift Warstrider", "=ds=#e12#", "50000 #horde#", ""};
- { 7, 18853, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""};
- { 8, 18846, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""};
- { 9, 18850, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""};
- { 10, 29592, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""};
- { 11, 18851, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""};
- { 12, 18849, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""};
- { 13, 18845, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""};
- { 14, 18852, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""};
- { 15, 18834, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""};
- { 16, 15197, "", "=q1=Scout's Tabard", "=ds=#s7#", "15000 #horde#", ""};
- { 17, 15199, "", "=q1=Stone Guard's Herald", "=ds=#s7#", "20000 #horde#", ""};
- { 18, 18607, "", "=q1=Horde Battle Standard", "=ds=", "15300 #horde#", ""};
- { 20, 18839, "", "=q1=Combat Healing Potion", "=ds=#e2#", "10 #silver# 1 #horde#", ""};
- { 21, 18841, "", "=q1=Combat Mana Potion", "=ds=#e2#", "10 #silver# 1 #horde#", ""};
- { 22, 32455, "", "=q1=Star's Lament", "=ds=#e4#", "12 #silver# 1 #horde#", ""};
- };
- {
- Name = "Horde 3";
- { 1, 18437, "", "=q3=First Sergeant's Silk Cuffs", "=ds=#s8#, #a1#", "300 #horde#", ""};
- { 2, 16486, "", "=q3=First Sergeant's Silk Cuffs", "=ds=#s8#, #a1#", "1600 #horde#", ""};
- { 4, 18436, "", "=q3=First Sergeant's Dragonhide Armguards", "=ds=#s8#, #a1#", "300 #horde#", ""};
- { 5, 18434, "", "=q3=First Sergeant's Dragonhide Armguards", "=ds=#s8#, #a1#", "1600 #horde#", ""};
- { 7, 18435, "", "=q3=First Sergeant's Leather Armguards", "=ds=#s8#, #a2#", "300 #horde#", ""};
- { 8, 16497, "", "=q3=First Sergeant's Leather Armguards", "=ds=#s8#, #a2#", "1600 #horde#", ""};
- { 10, 18432, "", "=q3=First Sergeant's Mail Wristguards", "=ds=#s8#, #a3#", "300 #horde#", ""};
- { 11, 16532, "", "=q3=First Sergeant's Mail Wristguards", "=ds=#s8#, #a3#", "1600 #horde#", ""};
- { 13, 18430, "", "=q3=First Sergeant's Plate Bracers", "=ds=#s8#, #a4#", "300 #horde#", ""};
- { 14, 18429, "", "=q3=First Sergeant's Plate Bracers", "=ds=#s8#, #a4#", "1600 #horde#", ""};
- { 16, 18427, "", "=q3=Sergeant's Cloak", "=ds=#s4#", "100 #horde#", ""};
- { 17, 16341, "", "=q3=Sergeant's Cloak", "=ds=#s4#", "300 #horde#", ""};
- { 18, 18461, "", "=q3=Sergeant's Cloak", "=ds=#s4#", "1600 #horde#", ""};
- { 20, 15200, "", "=q3=Senior Sergeant's Insignia", "=ds=#s2#", "100 #horde#", ""};
- { 21, 18428, "", "=q3=Senior Sergeant's Insignia", "=ds=#s2#", "300 #horde#", ""};
- { 22, 16335, "", "=q3=Senior Sergeant's Insignia", "=ds=#s2#", "1600 #horde#", ""};
- };
+ {
+ Name = "Druid" .. " - Tank";
+ { 1, 13437, "", "=q4=Cenarion Cover", "=ds=" .. BabbleBoss["Garr"], "", "11.51%" };
+ { 2, 13439, "", "=q4=Cenarion Pauldrons", "=ds=" .. BabbleBoss["Baron Geddon"], "", "19.52%" };
+ { 3, 13436, "", "=q4=Cenarion Tunic", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "", "15.21%" };
+ { 4, 13434, "", "=q4=Cenarion Bands", "=ds=" .. AL["Trash Mobs"], "", "0.17%" };
+ { 5, 13435, "", "=q4=Cenarion Handguards", "=ds=" .. BabbleBoss["Shazzrah"], "", "19.53%" };
+ { 6, 13432, "", "=q4=Cenarion Girdle", "=ds=" .. AL["Trash Mobs"], "", "0.16%" };
+ { 7, 13438, "", "=q4=Cenarion Pants", "=ds=" .. BabbleBoss["Magmadar"], "", "12.90%" };
+ { 8, 13433, "", "=q4=Cenarion Treads", "=ds=" .. BabbleBoss["Lucifron"], "", "10.72%" };
};
-
- AtlasLoot_Data["PvP60Ench"] = {
- Name = AL["PvP Enchants"];
- {
- Name = AL["PvP Enchants"];
- { 1, 100545, "", "=q3=Superior Resistance, =ds=", "25000 #alliance#", ""};
- { 2, 100546, "", "=q3=Lesser Resilience, =ds=", "25000 #alliance#", ""};
- { 3, 100547, "", "=q2=Absorption, =ds=", "25000 #alliance#", ""};
- { 4, 100548, "", "=q2=Lesser Stats, =ds=", "25000 #alliance#", ""};
- { 5, 100549, "", "=q2=Superior Intellect, =ds=", "25000 #alliance#", ""};
- { 6, 100550, "", "=q3=Nature Power, =ds=", "25000 #alliance#", ""};
- { 7, 100551, "", "=q3=Arcane Power, =ds=", "25000 #alliance#", ""};
- { 8, 100552, "", "=q3=Holy Power, =ds=", "25000 #alliance#", ""};
- { 9, 100553, "", "=q4=Greater Healing Power, =ds=", "25000 #alliance#", ""};
- { 10, 100554, "", "=q3=Superior Strength, =ds=", "25000 #alliance#", ""};
- { 11, 100555, "", "=q3=Greater Riding Skill, =ds=", "25000 #alliance#", ""};
- { 12, 100556, "", "=q3=Lesser Boar's Speed, =ds=", "25000 #alliance#", ""};
- { 13, 100557, "", "=q3=Lesser Cat's Swiftness, =ds=", "25000 #alliance#", ""};
- { 14, 100558, "", "=q3=Lesser Falcon's Quickness, =ds=", "25000 #alliance#", ""};
- { 15, 100559, "", "=q4=Lesser Stamina, =ds=", "25000 #alliance#", ""};
- { 16, 100560, "", "=q4=Lesser Stats, =ds=", "25000 #alliance#", ""};
- { 17, 100561, "", "=q4=Lesser Blood Draining, =ds=", "40000 #alliance#", ""};
- { 18, 100563, "", "=q3=Lesser Arcanum of Dominance, =ds=", "40000 #alliance#", ""};
- { 19, 100564, "", "=q3=Lesser Arcanum of Triumph, =ds=", "50000 #alliance#", ""};
- { 20, 449570, "", "=q3=Lesser Inscription of the Gladiator, =ds=", "40000 #alliance#", ""};
- { 21, 449571, "", "=q3=Lesser Inscription of the Battle Mage, =ds=", "40000 #alliance#", ""};
- };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 16846, "", "=q4=Giantstalker's Helmet", "=ds=" .. BabbleBoss["Garr"], "", "11.57%" };
+ { 2, 16848, "", "=q4=Giantstalker's Epaulets", "=ds=" .. BabbleBoss["Sulfuron Harbinger"], "", "19.64%" };
+ { 3, 16845, "", "=q4=Giantstalker's Breastplate", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "", "15.83%" };
+ { 4, 16850, "", "=q4=Giantstalker's Bracers", "=ds=" .. AL["Trash Mobs"], "", "0.18%" };
+ { 5, 16852, "", "=q4=Giantstalker's Gloves", "=ds=" .. BabbleBoss["Shazzrah"], "", "18.58%" };
+ { 6, 16851, "", "=q4=Giantstalker's Belt", "=ds=" .. AL["Trash Mobs"], "", "0.17%" };
+ { 7, 16847, "", "=q4=Giantstalker's Leggings", "=ds=" .. BabbleBoss["Magmadar"], "", "13.28%" };
+ { 8, 16849, "", "=q4=Giantstalker's Boots", "=ds=" .. BabbleBoss["Gehennas"], "", "14.54%" };
};
- ----------------
- --- Factions ---
- ----------------
-
- ------------
- --- Misc ---
- ------------
-
- AtlasLoot_Data["DesolaceCentaurClans"] = {
- Name = "Desolace Centaur Clans";
- {
- Name = BabbleFaction["Magram Clan Centaur"];
- { 1, 6789, "", "=q2=Ceremonial Centaur Blanket", "=q1=#m4#: =ds=#s4#"};
- { 2, 6788, "", "=q2=Magram Hunter's Belt", "=q1=#m4#: =ds=#s10#, #a2#"};
- };
- {
- Name = BabbleFaction["Gelkis Clan Centaur"];
- { 1, 6773, "", "=q2=Gelkis Marauder Chain", "=q1=#m4#: =ds=#s5#, #a3#"};
- { 2, 6774, "", "=q2=Uthek's Finger", "=q1=#m4#: =ds=#s15#"};
- };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 16795, "", "=q4=Arcanist Crown", "=ds=" .. BabbleBoss["Garr"], "", "11.31%" };
+ { 2, 16797, "", "=q4=Arcanist Mantle", "=ds=" .. BabbleBoss["Baron Geddon"], "", "19.92%" };
+ { 3, 16798, "", "=q4=Arcanist Robes", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "", "16.51%" };
+ { 4, 16799, "", "=q4=Arcanist Bindings", "=ds=" .. AL["Trash Mobs"], "", "0.16%" };
+ { 5, 16801, "", "=q4=Arcanist Gloves", "=ds=" .. BabbleBoss["Shazzrah"], "", "19.59%" };
+ { 6, 16802, "", "=q4=Arcanist Belt", "=ds=" .. AL["Trash Mobs"], "", "0.16%" };
+ { 7, 16796, "", "=q4=Arcanist Leggings", "=ds=" .. BabbleBoss["Magmadar"], "", "14.57%" };
+ { 8, 16800, "", "=q4=Arcanist Boots", "=ds=" .. BabbleBoss["Lucifron"], "", "12.06%" };
};
-
- AtlasLoot_Data["Wintersaber"] = {
- Name = BabbleFaction["Wintersaber Trainers"];
- {
- Name = BabbleFaction["Wintersaber Trainers"];
- { 1, 13086, "", "=q4=Reins of the Winterspring Frostsaber", "=ds=#e12#"};
- };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Holy"];
+ { 1, 16854, "", "=q4=Lawbringer Helm", "=ds=" .. BabbleBoss["Garr"], "", "7.23%" };
+ { 2, 16856, "", "=q4=Lawbringer Spaulders", "=ds=" .. BabbleBoss["Baron Geddon"], "", "12.62%" };
+ { 3, 16853, "", "=q4=Lawbringer Chestguard", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "", "9.53%" };
+ { 4, 16857, "", "=q4=Lawbringer Bracers", "=ds=" .. AL["Trash Mobs"], "", "0.11%" };
+ { 5, 16860, "", "=q4=Lawbringer Gauntlets", "=ds=" .. BabbleBoss["Gehennas"], "", "11.77%" };
+ { 6, 16858, "", "=q4=Lawbringer Belt", "=ds=" .. AL["Trash Mobs"], "", "0.10%" };
+ { 7, 16855, "", "=q4=Lawbringer Legplates", "=ds=" .. BabbleBoss["Magmadar"], "", "8.54%" };
+ { 8, 16859, "", "=q4=Lawbringer Boots", "=ds=" .. BabbleBoss["Lucifron"], "", "7.20%" };
};
-
- AtlasLoot_Data["ArathiBasinFactions"] = {
- Name = BabbleZone["Arathi Basin"];
- {
- Name = BabbleFaction["The League of Arathor"].." ("..BabbleFaction["Alliance"]..")";
- { 6, 20132, "", "=q1=Arathor Battle Tabard", "=q1=#m4#: =ds=#s7#"};
- };
- {
- Name = BabbleFaction["The Defilers"].." ("..BabbleFaction["Horde"]..")";
- { 21, 20131, "", "=q1=Battle Tabard of the Defilers", "=q1=#m4#: =ds=#s7#"};
- };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Protection"];
+ { 1, 11536, "", "=q4=Lawbringer Greathelm", "=ds=" .. BabbleBoss["Garr"], "", "7.23%" };
+ { 2, 11538, "", "=q4=Lawbringer Pauldrons", "=ds=" .. BabbleBoss["Baron Geddon"], "", "12.62%" };
+ { 3, 11535, "", "=q4=Lawbringer Breastplate", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "", "9.53%" };
+ { 4, 11531, "", "=q4=Lawbringer Wristguards", "=ds=" .. AL["Trash Mobs"], "", "0.11%" };
+ { 5, 11533, "", "=q4=Lawbringer Handguards", "=ds=" .. BabbleBoss["Gehennas"], "", "11.77%" };
+ { 6, 11534, "", "=q4=Lawbringer Waistguard", "=ds=" .. AL["Trash Mobs"], "", "0.10%" };
+ { 7, 11537, "", "=q4=Lawbringer Legguards", "=ds=" .. BabbleBoss["Magmadar"], "", "8.54%" };
+ { 8, 11532, "", "=q4=Lawbringer Stompers", "=ds=" .. BabbleBoss["Lucifron"], "", "7.20%" };
};
-
- -------------------
- --- Argent Dawn ---
- -------------------
-
- AtlasLoot_Data["Argent"] = {
- Name = BabbleFaction["Argent Dawn"];
- {
- Name = BabbleFaction["Argent Dawn"];
- { 1, 22689, "", "=q3=Sanctified Leather Helm", "=ds=#s1#, #a2#"};
- { 2, 22690, "", "=q3=Leggings of the Plague Hunter", "=ds=#s11#, #a3#"};
- { 3, 22681, "", "=q3=Band of Piety", "=ds=#s13#"};
- { 4, 22680, "", "=q3=Band of Resolution", "=ds=#s13#"};
- { 5, 22688, "", "=q3=Verimonde's Last Resort", "=ds=#h3#, #w4#"};
- { 6, 22679, "", "=q3=Supply Bag", "=ds=#m14# #e1#"};
- { 8, 22638, "", "=q3=Shadow Guard", "=ds=#s1# #e17#"};
- { 10, 22523, "", "=q2=Insignia of the Dawn", "=ds=#m17#"};
- { 12, 12844, "", "=q2=Argent Dawn Valor Token", "=ds=#m17#"};
- { 16, 22667, "", "=q4=Bracers of Hope", "=ds=#s8#, #a1#"};
- { 17, 22668, "", "=q4=Bracers of Subterfuge", "=ds=#s8#, #a2#"};
- { 18, 22657, "", "=q4=Amulet of the Dawn", "=ds=#s2#"};
- { 19, 22659, "", "=q4=Medallion of the Dawn", "=ds=#s2#"};
- { 20, 22678, "", "=q4=Talisman of Ascendance", "=ds=#s14#"};
- { 21, 22656, "", "=q4=The Purifier", "=ds=#w5#"};
- { 23, 22636, "", "=q3=Ice Guard", "=ds=#s1# #e17#"};
- { 25, 22524, "", "=q2=Insignia of the Crusade", "=ds=#m17#"};
- };
- {
- Name = BabbleFaction["Friendly"];
- { 1, 13724, "", "=q1=Enriched Manna Biscuit", "=ds=#e3#"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 13482, "", "=q2=Recipe: Transmute Air to Fire", "=ds=#p1# (275)"};
- { 2, 19203, "", "=q1=Plans: Girdle of the Dawn", "=ds=#p2# (290)"};
- { 3, 19446, "", "=q1=Formula: Enchant Bracer - Mana Regeneration", "=ds=#p4# (290)"};
- { 4, 19442, "", "=q1=Formula: Powerful Anti-Venom", "=ds=#p6# (300)"};
- { 5, 19328, "", "=q1=Pattern: Dawn Treaders", "=ds=#p7# (290)"};
- { 6, 19216, "", "=q1=Pattern: Argent Boots", "=ds=#p8# (290)"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 18171, "", "=q2=Arcane Mantle of the Dawn", "=ds=#s3# #e17#"};
- { 2, 18169, "", "=q2=Flame Mantle of the Dawn", "=ds=#s3# #e17#"};
- { 3, 18170, "", "=q2=Frost Mantle of the Dawn", "=ds=#s3# #e17#"};
- { 4, 18172, "", "=q2=Nature Mantle of the Dawn", "=ds=#s3# #e17#"};
- { 5, 18173, "", "=q2=Shadow Mantle of the Dawn", "=ds=#s3# #e17#"};
- { 6, 19205, "", "=q1=Plans: Gloves of the Dawn", "=ds=#p2# (300)"};
- { 7, 19447, "", "=q1=Formula: Enchant Bracer - Healing", "=ds=#p4# (300)"};
- { 8, 19329, "", "=q1=Pattern: Golden Mantle of the Dawn", "=ds=#p7# (300)"};
- { 9, 19217, "", "=q1=Pattern: Argent Shoulders", "=ds=#p8# (300)"};
- { 10, 13810, "", "=q1=Blessed Sunfruit", "=ds=#e3#"};
- { 11, 13813, "", "=q1=Blessed Sunfruit Juice", "=ds=#e4#"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 18182, "", "=q2=Chromatic Mantle of the Dawn", "=ds=#s3# #e17#"};
- };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
+ { 1, 16813, "", "=q4=Circlet of Prophecy", "=ds=" .. BabbleBoss["Garr"], "", "11.36%" };
+ { 2, 16816, "", "=q4=Mantle of Prophecy", "=ds=" .. BabbleBoss["Sulfuron Harbinger"], "", "21.06%" };
+ { 3, 16815, "", "=q4=Robes of Prophecy", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "", "1" };
+ { 4, 16819, "", "=q4=Vambraces of Prophecy", "=ds=" .. AL["Trash Mobs"], "", "0.16%" };
+ { 5, 16812, "", "=q4=Gloves of Prophecy", "=ds=" .. BabbleBoss["Gehennas"], "", "18.65%" };
+ { 6, 16817, "", "=q4=Girdle of Prophecy", "=ds=" .. AL["Trash Mobs"], "", "0.18%" };
+ { 7, 16814, "", "=q4=Pants of Prophecy", "=ds=" .. BabbleBoss["Magmadar"], "", "14.33%" };
+ { 8, 16811, "", "=q4=Boots of Prophecy", "=ds=" .. BabbleBoss["Shazzrah"], "", "14.90%" };
};
- ---------------------------------------------------
- --- Bloodsail Buccaneers & Hydraxian Waterlords ---
- ---------------------------------------------------
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 16821, "", "=q4=Nightslayer Cover", "=ds=" .. BabbleBoss["Garr"], "", "10.38%" };
+ { 2, 16823, "", "=q4=Nightslayer Shoulder Pads", "=ds=" .. BabbleBoss["Sulfuron Harbinger"], "", "20.66%" };
+ { 3, 16820, "", "=q4=Nightslayer Chestpiece", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "", "16.76%" };
+ { 4, 16825, "", "=q4=Nightslayer Bracelets", "=ds=" .. AL["Trash Mobs"], "", "0.17%" };
+ { 5, 16826, "", "=q4=Nightslayer Gloves", "=ds=" .. BabbleBoss["Gehennas"], "", "19.47%" };
+ { 6, 16827, "", "=q4=Nightslayer Belt", "=ds=" .. AL["Trash Mobs"], "", "0.15%" };
+ { 7, 16822, "", "=q4=Nightslayer Pants", "=ds=" .. BabbleBoss["Magmadar"], "", "13.83%" };
+ { 8, 16824, "", "=q4=Nightslayer Boots", "=ds=" .. BabbleBoss["Shazzrah"], "", "15.58%" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Restoration"];
+ { 1, 16842, "", "=q4=Earthfury Helmet", "=ds=" .. BabbleBoss["Garr"], "", "3.91%" };
+ { 2, 16844, "", "=q4=Earthfury Epaulets", "=ds=" .. BabbleBoss["Baron Geddon"], "", "7.29%" };
+ { 3, 16841, "", "=q4=Earthfury Vestments", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "", "6.08%" };
+ { 4, 16840, "", "=q4=Earthfury Bracers", "=ds=" .. AL["Trash Mobs"], "", "0.06%" };
+ { 5, 16839, "", "=q4=Earthfury Gauntlets", "=ds=" .. BabbleBoss["Gehennas"], "", "7.38%" };
+ { 6, 16838, "", "=q4=Earthfury Belt", "=ds=" .. AL["Trash Mobs"], "", "0.07%" };
+ { 7, 16843, "", "=q4=Earthfury Legguards", "=ds=" .. BabbleBoss["Magmadar"], "", "4.73%" };
+ { 8, 16837, "", "=q4=Earthfury Boots", "=ds=" .. BabbleBoss["Lucifron"], "", "4.16%" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Enhancement"];
+ { 1, 11794, "", "=q4=Earthfury Cover", "=ds=" .. BabbleBoss["Garr"], "", "3.91%" };
+ { 2, 11796, "", "=q4=Earthfury Pauldrons", "=ds=" .. BabbleBoss["Baron Geddon"], "", "7.29%" };
+ { 3, 11792, "", "=q4=Earthfury Tunic", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "", "6.08%" };
+ { 4, 11793, "", "=q4=Earthfury Bands", "=ds=" .. AL["Trash Mobs"], "", "0.06%" };
+ { 5, 11791, "", "=q4=Earthfury Gloves", "=ds=" .. BabbleBoss["Gehennas"], "", "7.38%" };
+ { 6, 11790, "", "=q4=Earthfury Girdle", "=ds=" .. AL["Trash Mobs"], "", "0.07%" };
+ { 7, 11789, "", "=q4=Earthfury Leggings", "=ds=" .. BabbleBoss["Magmadar"], "", "4.73%" };
+ { 8, 11795, "", "=q4=Earthfury Treads", "=ds=" .. BabbleBoss["Lucifron"], "", "4.16%" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 16808, "", "=q4=Felheart Horns", "=ds=" .. BabbleBoss["Garr"], "", "10.62%" };
+ { 2, 16807, "", "=q4=Felheart Shoulder Pads", "=ds=" .. BabbleBoss["Baron Geddon"], "", "19.78%" };
+ { 3, 16809, "", "=q4=Felheart Robes", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "", "" };
+ { 4, 16804, "", "=q4=Felheart Bracers", "=ds=" .. AL["Trash Mobs"], "", "0.16%" };
+ { 5, 16805, "", "=q4=Felheart Gloves", "=ds=" .. BabbleBoss["Lucifron"], "", "14.89%" };
+ { 6, 16806, "", "=q4=Felheart Belt", "=ds=" .. AL["Trash Mobs"], "", "0.19%" };
+ { 7, 16810, "", "=q4=Felheart Pants", "=ds=" .. BabbleBoss["Magmadar"], "", "13.75%" };
+ { 8, 16803, "", "=q4=Felheart Slippers", "=ds=" .. BabbleBoss["Shazzrah"], "", "1" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - Tank";
+ { 1, 16866, "", "=q4=Helm of Might", "=ds=" .. BabbleBoss["Garr"], "", "11.39%" };
+ { 2, 16868, "", "=q4=Pauldrons of Might", "=ds=" .. BabbleBoss["Sulfuron Harbinger"], "", "21.14%" };
+ { 3, 16865, "", "=q4=Breastplate of Might", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "", "1" };
+ { 4, 16861, "", "=q4=Bracers of Might", "=ds=" .. AL["Trash Mobs"], "", "0.16%" };
+ { 5, 16863, "", "=q4=Gauntlets of Might", "=ds=" .. BabbleBoss["Lucifron"], "", "16.40%" };
+ { 6, 16864, "", "=q4=Belt of Might", "=ds=" .. AL["Trash Mobs"], "", "0.16%" };
+ { 7, 16867, "", "=q4=Legplates of Might", "=ds=" .. BabbleBoss["Magmadar"], "", "13.97%" };
+ { 8, 16862, "", "=q4=Sabatons of Might", "=ds=" .. BabbleBoss["Gehennas"], "", "14.48%" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - DPS";
+ { 1, 10480, "", "=q4=Faceguard of Might", "=ds=" .. BabbleBoss["Garr"], "" };
+ { 2, 10481, "", "=q4=Shoulderpads of Might", "=ds=" .. BabbleBoss["Sulfuron Harbinger"], "" };
+ { 3, 10482, "", "=q4=Chesttplate of Might", "=ds=" .. BabbleBoss["Golemagg the Incinerator"], "" };
+ { 4, 10483, "", "=q4=Wristguards of Might", "=ds=" .. AL["Trash Mobs"], "" };
+ { 5, 10484, "", "=q4=Handguards of Might", "=ds=" .. BabbleBoss["Lucifron"], "" };
+ { 6, 10485, "", "=q4=Girdle of Might", "=ds=" .. AL["Trash Mobs"], "" };
+ { 7, 10486, "", "=q4=Legguards of Might", "=ds=" .. BabbleBoss["Magmadar"], "" };
+ { 8, 10487, "", "=q4=Stompers of Might", "=ds=" .. BabbleBoss["Gehennas"], "" };
+ };
+};
- AtlasLoot_Data["Bloodsail"] = {
+-- T2 Sets
+AtlasLoot_Data["T2"] = {
+ Name = "Tier 2";
+ Type = "ClassicRaid";
+ {
+ Name = AL["Druid"];
+ { 1, 16900, "", "=q4=Stormrage Cover", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 16902, "", "=q4=Stormrage Pauldrons", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 16897, "", "=q4=Stormrage Chestguard", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 16904, "", "=q4=Stormrage Bracers", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 16899, "", "=q4=Stormrage Handguards","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 16903, "", "=q4=Stormrage Belt", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 16901, "", "=q4=Stormrage Legguards", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 16898, "", "=q4=Stormrage Boots", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = AL["Druid"] .. " - Tank";
+ { 1, 1516900, "", "=q4=Stormrage Cover", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 1516902, "", "=q4=Stormrage Pauldrons", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 1516897, "", "=q4=Stormrage Chestguard", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 1516904, "", "=q4=Stormrage Bracers", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 1516904, "", "=q4=Stormrage Handguards","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 1516899, "", "=q4=Stormrage Belt", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 1516903, "", "=q4=Stormrage Legguards", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 1516898, "", "=q4=Stormrage Boots", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = AL["Druid"] .. " - DPS";
+ { 1, 1516892, "", "=q4=Stormrage Cover", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 1516894, "", "=q4=Stormrage Pauldrons", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 1516889, "", "=q4=Stormrage Chestguard", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 1516896, "", "=q4=Stormrage Bracers", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 1516891, "", "=q4=Stormrage Handguards","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 1516895, "", "=q4=Stormrage Belt", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 1516893, "", "=q4=Stormrage Legguards", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 1516890, "", "=q4=Stormrage Boots", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 16939, "", "=q4=Dragonstalker's Helm", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 16937, "", "=q4=Dragonstalker's Spaulders", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 16942, "", "=q4=Dragonstalker's Breastplate", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 16935, "", "=q4=Dragonstalker's Bracers", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 16940, "", "=q4=Dragonstalker's Gauntlets","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 16936, "", "=q4=Dragonstalker's Belt", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 16938, "", "=q4=Dragonstalker's Legguards", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 16941, "", "=q4=Dragonstalker's Greaves", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 16914, "", "=q4=Netherwind Crown", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 16917, "", "=q4=Netherwind Mantle", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 16916, "", "=q4=Netherwind Robes", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 16918, "", "=q4=Netherwind Bindings", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 16913, "", "=q4=Netherwind Gloves","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 16818, "", "=q4=Netherwind Belt", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 16915, "", "=q4=Netherwind Pants", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 16912, "", "=q4=Netherwind Boots", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
+ { 1, 16955, "", "=q4=Judgement Crown", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 16953, "", "=q4=Judgement Spaulders", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 16958, "", "=q4=Judgement Breastplate", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 16951, "", "=q4=Judgement Bindings", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 16956, "", "=q4=Judgement Gauntlets","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 16952, "", "=q4=Judgement Belt", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 16954, "", "=q4=Judgement Legplates", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 16957, "", "=q4=Judgement Sabatons", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - Tank";
+ { 1, 1516955, "", "=q4=Judgement Crown", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 1516953, "", "=q4=Judgement Spaulders", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 1516958, "", "=q4=Judgement Breastplate", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 1516951, "", "=q4=Judgement Bindings", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 1516956, "", "=q4=Judgement Gauntlets","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 1516952, "", "=q4=Judgement Belt", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 1516954, "", "=q4=Judgement Legplates", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 1516957, "", "=q4=Judgement Sabatons", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
+ { 1, 16921, "", "=q4=Halo of Transcendence", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 16924, "", "=q4=Pauldrons of Transcendence", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 16923, "", "=q4=Robes of Transcendence", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 16926, "", "=q4=Bindings of Transcendence", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 16920, "", "=q4=Handguards of Transcendence","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 16925, "", "=q4=Belt of Transcendence", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 16922, "", "=q4=Leggings of Transcendence", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 16919, "", "=q4=Boots of Transcendence", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - DPS";
+ { 1, 1516921, "", "=q4=Halo of Transcendence", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 1516924, "", "=q4=Pauldrons of Transcendence", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 1516923, "", "=q4=Robes of Transcendence", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 1516926, "", "=q4=Bindings of Transcendence", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 1516920, "", "=q4=Handguards of Transcendence","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 1516925, "", "=q4=Belt of Transcendence", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 1516922, "", "=q4=Leggings of Transcendence", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 1516919, "", "=q4=Boots of Transcendence", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 16908, "", "=q4=Bloodfang Hood", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 16832, "", "=q4=Bloodfang Spaulders", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 16905, "", "=q4=Bloodfang Chestpiece", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 16911, "", "=q4=Bloodfang Bracers", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 16907, "", "=q4=Bloodfang Gloves","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 16910, "", "=q4=Bloodfang Belt", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 16909, "", "=q4=Bloodfang Pants", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 16906, "", "=q4=Bloodfang Boots", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
+ { 1, 16947, "", "=q4=Helmet of Ten Storms", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 16945, "", "=q4=Epaulets of Ten Storms", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 16950, "", "=q4=Breastplate of Ten Storms", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 16943, "", "=q4=Bracers of Ten Storms", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 16948, "", "=q4=Gauntlets of Ten Storms","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 16944, "", "=q4=Belt of Ten Storms", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 16946, "", "=q4=Legplates of Ten Storms", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 16949, "", "=q4=Greaves of Ten Storms", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - Hybrid";
+ { 1, 1516947, "", "=q4=Helmet of Ten Storms", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 1516945, "", "=q4=Epaulets of Ten Storms", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 1516950, "", "=q4=Breastplate of Ten Storms", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 1516943, "", "=q4=Bracers of Ten Storms", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 1516948, "", "=q4=Gauntlets of Ten Storms","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 1516944, "", "=q4=Belt of Ten Storms", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 1516946, "", "=q4=Legplates of Ten Storms", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 1516949, "", "=q4=Greaves of Ten Storms", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 16929, "", "=q4=Nemesis Skullcap", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 16932, "", "=q4=Nemesis Spaulders", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 16931, "", "=q4=Nemesis Robes", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 16934, "", "=q4=Nemesis Bracers", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 16928, "", "=q4=Nemesis Gloves","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 16933, "", "=q4=Nemesis Belt", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 16930, "", "=q4=Nemesis Leggings", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 16927, "", "=q4=Nemesis Boots", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - DPS";
+ { 1, 10904, "", "=q4=Faceguard of Wrath", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 10902, "", "=q4=Shoulderpads of Wrath", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 10907, "", "=q4=Chestplate of Wrath", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 10900, "", "=q4=Wristguards of Wrath", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 10905, "", "=q4=Grippers of Wrath","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 10901, "", "=q4=Belt of Wrath", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 10903, "", "=q4=Legguards of Wrath", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 10906, "", "=q4=Stompers of Wrath", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - Tank";
+ { 1, 16963, "", "=q4=Helm of Wrath", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 16961, "", "=q4=Pauldrons of Wrath", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 16966, "", "=q4=Breastplate of Wrath", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 16959, "", "=q4=Bracelets of Wrath", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 16964, "", "=q4=Gauntlets of Wrath","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 16960, "", "=q4=Waistband of Wrath", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 16962, "", "=q4=Legplates of Wrath", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 16965, "", "=q4=Sabatons of Wrath", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - Tank";
+ { 1, 1516963, "", "=q4=Faceguard of Wrath", "=ds=" .. BabbleBoss["Onyxia"], "", "" };
+ { 2, 1516961, "", "=q4=Shoulderpads of Wrath", "=ds=" .. BabbleBoss["Chromaggus"], "", "" };
+ { 3, 1516966, "", "=q4=Chestplate of Wrath", "=ds=" .. BabbleBoss["Nefarian"], "", "" };
+ { 4, 1516959, "", "=q4=Wristguards of Wrath", "=ds=" .. BabbleBoss["Razorgore the Untamed"], "", "" };
+ { 5, 1516964, "", "=q4=Grippers of Wrath","=ds=" .. BabbleBoss["Firemaw"] .. ", " .. BabbleBoss["Ebonroc"] .. ", " .. BabbleBoss["Flamegor"], "", "" };
+ { 6, 1516960, "", "=q4=Belt of Wrath", "=ds=" .. BabbleBoss["Vaelastrasz the Corrupt"], "", "" };
+ { 7, 1516962, "", "=q4=Legguards of Wrath", "=ds=" .. BabbleBoss["Ragnaros"], "", "" };
+ { 8, 1516965, "", "=q4=Stompers of Wrath", "=ds=" .. BabbleBoss["Broodlord Lashlayer"], "", "" };
+ };
+};
+
+------------------------
+--- Tier 3 Sets (T3) ---
+------------------------
+
+AtlasLoot_Data["T3"] = {
+ Name = "Tier 3";
+ Type = "ClassicRaid";
+ {
+ Name = AL["Druid"];
+ { 1, 22490, "", "=q4=Dreamwalker Headpiece", "=ds=" };
+ { 2, 22491, "", "=q4=Dreamwalker Spaulders", "=ds=" };
+ { 3, 22488, "", "=q4=Dreamwalker Tunic", "=ds=" };
+ { 4, 22495, "", "=q4=Dreamwalker Wristguards", "=ds=" };
+ { 5, 22493, "", "=q4=Dreamwalker Handguards", "=ds=" };
+ { 6, 22494, "", "=q4=Dreamwalker Girdle", "=ds=" };
+ { 7, 22489, "", "=q4=Dreamwalker Legguards", "=ds=" };
+ { 8, 22492, "", "=q4=Dreamwalker Boots", "=ds=" };
+ { 9, 23064, "", "=q4=Ring of the Dreamwalker", "=ds=" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 22438, "", "=q4=Cryptstalker Headpiece", "=ds=" };
+ { 2, 22439, "", "=q4=Cryptstalker Spaulders", "=ds=" };
+ { 3, 22436, "", "=q4=Cryptstalker Tunic", "=ds=" };
+ { 4, 22443, "", "=q4=Cryptstalker Wristguards", "=ds=" };
+ { 5, 22441, "", "=q4=Cryptstalker Handguards", "=ds=" };
+ { 6, 22442, "", "=q4=Cryptstalker Girdle", "=ds=" };
+ { 7, 22437, "", "=q4=Cryptstalker Legguards", "=ds=" };
+ { 8, 22440, "", "=q4=Cryptstalker Boots", "=ds=" };
+ { 9, 23067, "", "=q4=Ring of the Cryptstalker", "=ds=" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 22498, "", "=q4=Frostfire Circlet", "=ds=" };
+ { 2, 22499, "", "=q4=Frostfire Shoulderpads", "=ds=" };
+ { 3, 22496, "", "=q4=Frostfire Robe", "=ds=" };
+ { 4, 22503, "", "=q4=Frostfire Bindings", "=ds=" };
+ { 5, 22501, "", "=q4=Frostfire Gloves", "=ds=" };
+ { 6, 22502, "", "=q4=Frostfire Belt", "=ds=" };
+ { 7, 22497, "", "=q4=Frostfire Leggings", "=ds=" };
+ { 8, 22500, "", "=q4=Frostfire Sandals", "=ds=" };
+ { 9, 23062, "", "=q4=Frostfire Ring", "=ds=" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
+ { 1, 22428, "", "=q4=Redemption Headpiece", "=ds=" };
+ { 2, 22429, "", "=q4=Redemption Spaulders", "=ds=" };
+ { 3, 22425, "", "=q4=Redemption Tunic", "=ds=" };
+ { 4, 22424, "", "=q4=Redemption Wristguards", "=ds=" };
+ { 5, 22426, "", "=q4=Redemption Handguards", "=ds=" };
+ { 6, 22431, "", "=q4=Redemption Girdle", "=ds=" };
+ { 7, 22427, "", "=q4=Redemption Legguards", "=ds=" };
+ { 8, 22430, "", "=q4=Redemption Boots", "=ds=" };
+ { 9, 23066, "", "=q4=Ring of Redemption", "=ds=" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
+ { 1, 22514, "", "=q4=Circlet of Faith", "=ds=" };
+ { 2, 22515, "", "=q4=Shoulderpads of Faith", "=ds=" };
+ { 3, 22512, "", "=q4=Robe of Faith", "=ds=" };
+ { 4, 22519, "", "=q4=Bindings of Faith", "=ds=" };
+ { 5, 22517, "", "=q4=Gloves of Faith", "=ds=" };
+ { 6, 22518, "", "=q4=Belt of Faith", "=ds=" };
+ { 7, 22513, "", "=q4=Leggings of Faith", "=ds=" };
+ { 8, 22516, "", "=q4=Sandals of Faith", "=ds=" };
+ { 9, 23061, "", "=q4=Ring of Faith", "=ds=" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 22478, "", "=q4=Bonescythe Helmet", "=ds=" };
+ { 2, 22479, "", "=q4=Bonescythe Pauldrons", "=ds=" };
+ { 3, 22476, "", "=q4=Bonescythe Breastplate", "=ds=" };
+ { 4, 22483, "", "=q4=Bonescythe Bracers", "=ds=" };
+ { 5, 22481, "", "=q4=Bonescythe Gauntlets", "=ds=" };
+ { 6, 22482, "", "=q4=Bonescythe Waistguard", "=ds=" };
+ { 7, 22477, "", "=q4=Bonescythe Legplates", "=ds=" };
+ { 8, 22480, "", "=q4=Bonescythe Sabatons", "=ds=" };
+ { 9, 23060, "", "=q4=Bonescythe Ring", "=ds=" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
+ { 1, 22466, "", "=q4=Earthshatter Headpiece", "=ds=" };
+ { 2, 22467, "", "=q4=Earthshatter Spaulders", "=ds=" };
+ { 3, 22464, "", "=q4=Earthshatter Tunic", "=ds=" };
+ { 4, 22471, "", "=q4=Earthshatter Wristguards", "=ds=" };
+ { 5, 22469, "", "=q4=Earthshatter Handguards", "=ds=" };
+ { 6, 22470, "", "=q4=Earthshatter Girdle", "=ds=" };
+ { 7, 22465, "", "=q4=Earthshatter Legguards", "=ds=" };
+ { 8, 22468, "", "=q4=Earthshatter Boots", "=ds=" };
+ { 9, 23065, "", "=q4=Ring of the Earthshatterer", "=ds=" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 22506, "", "=q4=Plagueheart Circlet", "=ds=" };
+ { 2, 22507, "", "=q4=Plagueheart Shoulderpads", "=ds=" };
+ { 3, 22504, "", "=q4=Plagueheart Robe", "=ds=" };
+ { 4, 22511, "", "=q4=Plagueheart Bindings", "=ds=" };
+ { 5, 22509, "", "=q4=Plagueheart Gloves", "=ds=" };
+ { 6, 22510, "", "=q4=Plagueheart Belt", "=ds=" };
+ { 7, 22505, "", "=q4=Plagueheart Leggings", "=ds=" };
+ { 8, 22508, "", "=q4=Plagueheart Sandals", "=ds=" };
+ { 9, 23063, "", "=q4=Plagueheart Ring", "=ds=" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - Tank";
+ { 1, 22418, "", "=q4=Dreadnaught Helmet", "=ds=" };
+ { 2, 22419, "", "=q4=Dreadnaught Pauldrons", "=ds=" };
+ { 3, 22416, "", "=q4=Dreadnaught Breastplate", "=ds=" };
+ { 4, 22423, "", "=q4=Dreadnaught Bracers", "=ds=" };
+ { 5, 22421, "", "=q4=Dreadnaught Gauntlets", "=ds=" };
+ { 6, 22422, "", "=q4=Dreadnaught Waistguard", "=ds=" };
+ { 7, 22417, "", "=q4=Dreadnaught Legplates", "=ds=" };
+ { 8, 22420, "", "=q4=Dreadnaught Sabatons", "=ds=" };
+ { 9, 23059, "", "=q4=Ring of the Dreadnaught", "=ds=" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - DPS";
+ { 1, 10490, "", "=q4=Dreadborne Helmet", "=ds=" };
+ { 2, 10491, "", "=q4=Dreadborne Pauldrons", "=ds=" };
+ { 3, 10488, "", "=q4=Dreadborne Breastplate", "=ds=" };
+ { 4, 10495, "", "=q4=Dreadborne Bracers", "=ds=" };
+ { 5, 10493, "", "=q4=Dreadborne Gauntlets", "=ds=" };
+ { 6, 10494, "", "=q4=Dreadborne Waistguard", "=ds=" };
+ { 7, 10489, "", "=q4=Dreadborne Legplates", "=ds=" };
+ { 8, 10492, "", "=q4=Dreadborne Sabatons", "=ds=" };
+ { 9, 10496, "", "=q4=Dreadborne Ring", "=ds=" };
+ };
+};
+
+------------------------
+--- Vanilla WoW Sets ---
+------------------------
+
+AtlasLoot_Data["ClassicSets"] = {
+ Name = AL["Classic Sets"];
+ {
+ Name = AL["Defias Leather"];
+ { 1, 10399, "", "=q3=Blackened Defias Armor", "=ds=#s5#, =q2=#n6#", "", "14.77%" };
+ { 2, 10401, "", "=q2=Blackened Defias Gloves", "=ds=#s9#, =q2=#n9#", "", "1.76%" };
+ { 3, 10403, "", "=q3=Blackened Defias Belt", "=ds=#s10#, =q2=#n7#", "", "23.26%" };
+ { 4, 10400, "", "=q2=Blackened Defias Leggings", "=ds=#s11#, =q2=#n9#", "", "1.64%" };
+ { 5, 10402, "", "=q2=Blackened Defias Boots", "=ds=#s12#, =q2=#n8#", "", "1.23%" };
+ };
+ {
+ Name = AL["Embrace of the Viper"];
+ { 1, 6473, "", "=q3=Armor of the Fang", "=ds=#s5#, =q2=#n5#", "", "52.05%" };
+ { 2, 10413, "", "=q3=Gloves of the Fang", "=ds=#s9#, =q2=#n4#", "", "1.20%" };
+ { 3, 10412, "", "=q3=Belt of the Fang", "=ds=#s10#, =q2=#n2#", "", "8.64%" };
+ { 4, 10410, "", "=q3=Leggings of the Fang", "=ds=#s11#, =q2=#n1#", "", "16.03%" };
+ { 5, 10411, "", "=q3=Footpads of the Fang", "=ds=#s12#, =q2=#n3#", "", "19.08%" };
+ };
+ {
+ Name = AL["Chain of the Scarlet Crusade"];
+ { 1, 10328, "", "=q3=Scarlet Chestpiece", "=ds=#s5#, =q2=#n12#", "", "0.3%" };
+ { 2, 10333, "", "=q2=Scarlet Wristguards", "=ds=#s8#, =q2=#n15#", "", "1.6%" };
+ { 3, 10331, "", "=q2=Scarlet Gauntlets", "=ds=#s9#, =q2=#n13#", "", "1.7%" };
+ { 4, 10329, "", "=q2=Scarlet Belt", "=ds=#s10#, =q2=#n10#", "", "1.6%" };
+ { 5, 10330, "", "=q3=Scarlet Leggings", "=ds=#s11#, =q2=#n14#", "", "13.2%" };
+ { 6, 10332, "", "=q3=Scarlet Boots", "=ds=#s12#, =q2=#n11#", "", "0.1%" };
+ };
+ {
+ Name = AL["The Gladiator"];
+ { 1, 11729, "", "=q3=Savage Gladiator Helm", "=ds=#s1#, =q2=#brd3#, #brd5#", "", "10.08%" };
+ { 2, 11726, "", "=q4=Savage Gladiator Chain", "=ds=#s5#, =q2=#brd3#", "", "14.52%" };
+ { 3, 11730, "", "=q3=Savage Gladiator Grips", "=ds=#s9#, =q2=#brd2#", "", "14.12%" };
+ { 4, 11728, "", "=q3=Savage Gladiator Leggings", "=ds=#s11#, =q2=#brd6#", "", "14.95%" };
+ { 5, 11731, "", "=q3=Savage Gladiator Greaves", "=ds=#s12#, =q2=#brd1#", "", "15.14%" };
+ };
+ {
+ Name = AL["Ironweave Battlesuit"];
+ { 1, 22302, "", "=q3=Ironweave Cowl", "=ds=#s1#, =q2=#n16# (#z9#)", "", "27.72%" };
+ { 2, 22305, "", "=q3=Ironweave Mantle", "=ds=#s3#, =q2=#n17# (#z4#)", "", "30.39%" };
+ { 3, 22301, "", "=q3=Ironweave Robe", "=ds=#s5#, =q2=#n18# (#z6#)", "", "19.00%" };
+ { 4, 22313, "", "=q3=Ironweave Bracers", "=ds=#s8#, =q2=#n19# (#z10#)", "", "18.16%" };
+ { 5, 22304, "", "=q3=Ironweave Gloves", "=ds=#s9#, =q2=#n20# (#z13#)", "", "16.24%" };
+ { 6, 22306, "", "=q3=Ironweave Belt", "=ds=#s10#, =q2=#n21# (#z10#)", "", "20.28%" };
+ { 7, 22303, "", "=q3=Ironweave Pants", "=ds=#s11#, =q2=#n22# (#z5#)", "", "23.33%" };
+ { 8, 22311, "", "=q3=Ironweave Boots", "=ds=#s12#, =q2=#n23# (#z9#)", "", "12.31%" };
+ };
+ {
+ Name = AL["The Postmaster"];
+ { 1, 13390, "", "=q3=The Postmaster's Band", "=ds=#s1#", "", "" };
+ { 2, 13388, "", "=q3=The Postmaster's Tunic", "=ds=#s5#", "", "" };
+ { 3, 13389, "", "=q3=The Postmaster's Trousers", "=ds=#s11#", "", "" };
+ { 4, 13391, "", "=q3=The Postmaster's Treads", "=ds=#s12#", "", "" };
+ { 5, 13392, "", "=q3=The Postmaster's Seal", "=ds=#s13#", "", "" };
+ };
+ {
+ Name = AL["Shard of the Gods"];
+ { 1, 17082, "", "=q4=Shard of the Flame", "=ds=#s14#, =q2=#n35# (#z14#)", "", "4.46%" };
+ { 2, 17064, "", "=q4=Shard of the Scale", "=ds=#s14#, =q2=#n36# (#z15#)", "", "3.71%" };
+ };
+ {
+ Name = AL["Spirit of Eskhandar"];
+ { 1, 18204, "", "=q4=Eskhandar's Pelt", "=ds=#s4#, =q2=#n37#", "", "9.16%" };
+ { 2, 18203, "", "=q4=Eskhandar's Right Claw", "=ds=#h3#, #w13#, =q2=#n38# (#z14#)", "", "16.97%" };
+ { 3, 18202, "", "=q4=Eskhandar's Left Claw", "=ds=#h4#, #w13#, =q2=#n39#", "", "12.36%" };
+ };
+ {
+ Name = AL["Spider's Kiss"];
+ { 1, 13218, "", "=q3=Fang of the Crystal Spider", "=ds=#h1#, #w4#, =q2=#n41#", "", "15.46%" };
+ { 2, 13183, "", "=q3=Venomspitter", "=ds=#h1#, #w6#, =q2=#n42#", "", "13.07%" };
+ };
+ {
+ Name = AL["Dal'Rend's Arms"];
+ { 1, 12940, "", "=q3=Dal'Rend's Sacred Charge", "=ds=#h3#, #w10#, =q2=#n40#", "", "6.62%" };
+ { 2, 12939, "", "=q3=Dal'Rend's Tribal Guardian", "=ds=#h4#, #w10#, =q2=#n40#", "", "7.44%" };
+ };
+ {
+ Name = AL["Necropile Raiment"];
+ { 1, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#", "", "1.12%" };
+ { 2, 14626, "", "=q3=Necropile Robe", "=ds=#s5#", "", "1.27%" };
+ { 3, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#", "", "1.03%" };
+ { 4, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#", "", "0.85%" };
+ { 5, 14631, "", "=q3=Necropile Boots", "=ds=#s12#", "", "0.88%" };
+ };
+ {
+ Name = AL["Cadaverous Garb"];
+ { 1, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#", "", "1.51%" };
+ { 2, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#", "", "0.82%" };
+ { 3, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#", "", "0.60%" };
+ { 4, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#", "", "1.09%" };
+ { 5, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#", "", "0.67%" };
+ };
+ {
+ Name = AL["Bloodmail Regalia"];
+ { 1, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#", "", "0.54%" };
+ { 2, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#", "", "0.09%" };
+ { 3, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#", "", "0.60%" };
+ { 4, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#", "", "0.42%" };
+ { 5, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#", "", "0.36%" };
+ };
+ {
+ Name = AL["Deathbone Guardian"];
+ { 1, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#", "", "0.45%" };
+ { 2, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#", "", "0.45%" };
+ { 3, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#", "", "0.67%" };
+ { 4, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#", "", "1.12%" };
+ { 5, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#", "", "0.57%" };
+ };
+ {
+ Name = AL["Major Mojo Infusion"];
+ { 1, 19898, "", "=q3=Seal of Jin", "=ds=#s13#, =q2=#n28#", "", "8.81%" };
+ { 2, 19925, "", "=q3=Band of Jin", "=ds=#s13#, =q2=#n29#", "", "10.36%" };
+ };
+ {
+ Name = AL["Overlord's Resolution"];
+ { 1, 19873, "", "=q3=Overlord's Crimson Band", "=ds=#s13#, =q2=#n33#", "", "10.12%" };
+ { 2, 19912, "", "=q3=Overlord's Onyx Band", "=ds=#s13#, =q2=#n30#", "", "14.51%" };
+ };
+ {
+ Name = AL["Primal Blessing"];
+ { 1, 19896, "", "=q4=Thekal's Grasp", "=ds=#h3#, #w13#, =q2=#n28#", "", "5.20%" };
+ { 2, 19910, "", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#, =q2=#n30#", "", "4.54%" };
+ };
+ {
+ Name = AL["Prayer of the Primal"];
+ { 1, 19863, "", "=q3=Primalist's Seal", "=ds=#s13#, =q2=#n33#", "", "9.72%" };
+ { 2, 19920, "", "=q3=Primalist's Band", "=ds=#s13#, =q2=#n31#", "", "8.95%" };
+ };
+ {
+ Name = AL["Zanzil's Concentration"];
+ { 1, 19905, "", "=q3=Zanzil's Band", "=ds=#s13#, =q2=#n32#", "", "9.24%" };
+ { 2, 19893, "", "=q3=Zanzil's Seal", "=ds=#s13#, =q2=#n33#", "", "10.12%" };
+ };
+ {
+ Name = AL["The Twin Blades of Hakkari"];
+ { 1, 19865, "", "=q4=Warblade of the Hakkari", "=ds=#h3#, #w10#, =q2=#n34#", "", "5.18%" };
+ { 2, 19866, "", "=q4=Warblade of the Hakkari", "=ds=#h4#, #w10#, =q2=#n33#", "", "4.55%" };
+ };
+};
+
+---------------
+--- ZG Sets ---
+---------------
+
+AtlasLoot_Data["ZGSets"] = {
+ Name = AL["Zul'Gurub Sets"];
+ Type = "ClassicRaid";
+ {
+ Name = AL["Haruspex's Garb"];
+ { 1, 19955, "", "=q4=Wushoolay's Charm of Nature", "" };
+ { 2, 19613, "", "=q4=Pristine Enchanted South Seas Kelp", "=ds=#r5#" };
+ { 3, 19838, "", "=q4=Zandalar Haruspex's Tunic", "=q4=#zgt9#, =ds=#r4#" };
+ { 4, 19839, "", "=q4=Zandalar Haruspex's Belt", "=q4=#zgt4#, =ds=#r3#" };
+ { 5, 19840, "", "=q4=Zandalar Haruspex's Bracers", "=q4=#zgt5#, =ds=#r2#" };
+ };
+ {
+ Name = AL["Predator's Armor"];
+ { 1, 19953, "", "=q4=Renataki's Charm of Beasts", "" };
+ { 2, 19621, "", "=q4=Maelstrom's Wrath", "=ds=#r5#" };
+ { 3, 19831, "", "=q4=Zandalar Predator's Mantle", "=q4=#zgt6#, =ds=#r4#" };
+ { 4, 19832, "", "=q4=Zandalar Predator's Belt", "=q4=#zgt2#, =ds=#r3#" };
+ { 5, 19833, "", "=q4=Zandalar Predator's Bracers", "=q4=#zgt3#, =ds=#r2#" };
+ };
+ {
+ Name = AL["Illusionist's Attire"];
+ { 1, 19959, "", "=q4=Hazza'rah's Charm of Magic", "" };
+ { 2, 19601, "", "=q4=Jewel of Kajaro", "=ds=#r5#" };
+ { 3, 20034, "", "=q4=Zandalar Illusionist's Robe", "=q4=#zgt1#, =ds=#r4#" };
+ { 4, 19845, "", "=q4=Zandalar Illusionist's Mantle", "=q4=#zgt2#, =ds=#r3#" };
+ { 5, 19846, "", "=q4=Zandalar Illusionist's Wraps", "=q4=#zgt3#, =ds=#r2#" };
+ };
+ {
+ Name = AL["Freethinker's Armor"];
+ { 1, 19952, "", "=q4=Gri'lek's Charm of Valor", "" };
+ { 2, 19588, "", "=q4=Hero's Brand", "=ds=#r5#" };
+ { 3, 19825, "", "=q4=Zandalar Freethinker's Breastplate", "=q4=#zgt9#, =ds=#r4#" };
+ { 4, 19826, "", "=q4=Zandalar Freethinker's Belt", "=q4=#zgt2#, =ds=#r3#" };
+ { 5, 19827, "", "=q4=Zandalar Freethinker's Armguards", "=q4=#zgt3#, =ds=#r2#" };
+ };
+ {
+ Name = AL["Confessor's Raiment"];
+ { 1, 19958, "", "=q4=Hazza'rah's Charm of Healing", "" };
+ { 2, 19594, "", "=q4=The All-Seeing Eye of Zuldazar", "=ds=#r5#" };
+ { 3, 19841, "", "=q4=Zandalar Confessor's Mantle", "=q4=#zgt6#, =ds=#r4#" };
+ { 4, 19842, "", "=q4=Zandalar Confessor's Bindings", "=q4=#zgt4#, =ds=#r3#" };
+ { 5, 19843, "", "=q4=Zandalar Confessor's Wraps", "=q4=#zgt5#, =ds=#r2#" };
+ };
+ {
+ Name = AL["Madcap's Outfit"];
+ { 1, 19954, "", "=q4=Renataki's Charm of Trickery", "" };
+ { 2, 19617, "", "=q4=Zandalarian Shadow Mastery Talisman", "=ds=#r5#" };
+ { 3, 19834, "", "=q4=Zandalar Madcap's Tunic", "=q4=#zgt6#, =ds=#r4#" };
+ { 4, 19835, "", "=q4=Zandalar Madcap's Mantle", "=q4=#zgt7#, =ds=#r3#" };
+ { 5, 19836, "", "=q4=Zandalar Madcap's Bracers", "=q4=#zgt8#, =ds=#r2#" };
+ };
+ {
+ Name = AL["Augur's Regalia"];
+ { 1, 19956, "", "=q4=Wushoolay's Charm of Spirits", "" };
+ { 2, 19609, "", "=q4=Unmarred Vision of Voodress", "=ds=#r5#" };
+ { 3, 19828, "", "=q4=Zandalar Augur's Hauberk", "=q4=#zgt9#, =ds=#r4#" };
+ { 4, 19829, "", "=q4=Zandalar Augur's Belt", "=q4=#zgt7#, =ds=#r3#" };
+ { 5, 19830, "", "=q4=Zandalar Augur's Bracers", "=q4=#zgt8#, =ds=#r2#" };
+ };
+ {
+ Name = AL["Demoniac's Threads"];
+ { 1, 19957, "", "=q4=Hazza'rah's Charm of Destruction", "" };
+ { 2, 19605, "", "=q4=Kezan's Unstoppable Taint", "=ds=#r5#" };
+ { 3, 20033, "", "=q4=Zandalar Demoniac's Robe", "=q4=#zgt1#, =ds=#r4#" };
+ { 4, 19849, "", "=q4=Zandalar Demoniac's Mantle", "=q4=#zgt4#, =ds=#r3#" };
+ { 5, 19848, "", "=q4=Zandalar Demoniac's Wraps", "=q4=#zgt5#, =ds=#r2#" };
+ };
+ {
+ Name = AL["Vindicator's Battlegear"];
+ { 1, 19951, "", "=q4=Gri'lek's Charm of Might", "" };
+ { 2, 19577, "", "=q4=Rage of Mugamba", "=ds=#r5#" };
+ { 3, 19822, "", "=q4=Zandalar Vindicator's Breastplate", "=q4=#zgt1#, =ds=#r4#" };
+ { 4, 19823, "", "=q4=Zandalar Vindicator's Belt", "=q4=#zgt7#, =ds=#r3#" };
+ { 5, 19824, "", "=q4=Zandalar Vindicator's Armguards", "=q4=#zgt8#, =ds=#r2#" };
+ };
+};
+
+-----------------
+--- AQ20 Sets ---
+-----------------
+
+AtlasLoot_Data["AQ20Sets"] = {
+ Name = AL["AQ20 Class Sets"];
+ Type = "ClassicRaid";
+ {
+ Name = AL["Symbols of Unending Life"];
+ { 1, 21407, "", "=q4=Mace of Unending Life", "=q4=#aq20t1#, =ds=#r5#" };
+ { 2, 21409, "", "=q4=Cloak of Unending Life", "=q3=#aq20t5#, =ds=#r4#" };
+ { 3, 21408, "", "=q4=Band of Unending Life", "=q3=#aq20t3#, =ds=#r3#" };
+ };
+ {
+ Name = AL["Trappings of the Unseen Path"];
+ { 1, 21401, "", "=q4=Scythe of the Unseen Path", "=q4=#aq20t6#, =ds=#r5#" };
+ { 2, 21403, "", "=q4=Cloak of the Unseen Path", "=q3=#aq20t5#, =ds=#r4#" };
+ { 3, 21402, "", "=q4=Signet of the Unseen Path", "=q3=#aq20t4#, =ds=#r3#" };
+ };
+ {
+ Name = AL["Trappings of Vaulted Secrets"];
+ { 1, 21413, "", "=q4=Blade of Vaulted Secrets", "=q4=#aq20t1#, =ds=#r5#" };
+ { 2, 21415, "", "=q4=Drape of Vaulted Secrets", "=q3=#aq20t2#, =ds=#r4#" };
+ { 3, 21414, "", "=q4=Band of Vaulted Secrets", "=q3=#aq20t3#, =ds=#r3#" };
+ };
+ {
+ Name = AL["Battlegear of Eternal Justice"];
+ { 1, 21395, "", "=q4=Blade of Eternal Justice", "=q4=#aq20t6#, =ds=#r5#" };
+ { 2, 21397, "", "=q4=Cape of Eternal Justice", "=q3=#aq20t5#, =ds=#r4#" };
+ { 3, 21396, "", "=q4=Ring of Eternal Justice", "=q3=#aq20t3#, =ds=#r3#" };
+ };
+ {
+ Name = AL["Finery of Infinite Wisdom"];
+ { 1, 21410, "", "=q4=Gavel of Infinite Wisdom", "=q4=#aq20t1#, =ds=#r5#" };
+ { 2, 21412, "", "=q4=Shroud of Infinite Wisdom", "=q3=#aq20t2#, =ds=#r4#" };
+ { 3, 21411, "", "=q4=Ring of Infinite Wisdom", "=q3=#aq20t4#, =ds=#r3#" };
+ };
+ {
+ Name = AL["Emblems of Veiled Shadows"];
+ { 1, 21404, "", "=q4=Dagger of Veiled Shadows", "=q4=#aq20t6#, =ds=#r5#" };
+ { 2, 21406, "", "=q4=Cloak of Veiled Shadows", "=q3=#aq20t2#, =ds=#r4#" };
+ { 3, 21405, "", "=q4=Band of Veiled Shadows", "=q3=#aq20t4#, =ds=#r3#" };
+ };
+ {
+ Name = AL["Gift of the Gathering Storm"];
+ { 1, 21398, "", "=q4=Hammer of the Gathering Storm", "=q4=#aq20t6#, =ds=#r5#" };
+ { 2, 21400, "", "=q4=Cloak of the Gathering Storm", "=q3=#aq20t5#, =ds=#r4#" };
+ { 3, 21399, "", "=q4=Ring of the Gathering Storm", "=q3=#aq20t3#, =ds=#r3#" };
+ };
+ {
+ Name = AL["Implements of Unspoken Names"];
+ { 1, 21416, "", "=q4=Kris of Unspoken Names", "=q4=#aq20t1#, =ds=#r5#" };
+ { 2, 21418, "", "=q4=Shroud of Unspoken Names", "=q3=#aq20t5#, =ds=#r4#" };
+ { 3, 21417, "", "=q4=Ring of Unspoken Names", "=q3=#aq20t4#, =ds=#r3#" };
+ };
+ {
+ Name = AL["Battlegear of Unyielding Strength"];
+ { 1, 21392, "", "=q4=Sickle of Unyielding Strength", "=q4=#aq20t6#, =ds=#r5#" };
+ { 2, 21394, "", "=q4=Drape of Unyielding Strength", "=q3=#aq20t2#, =ds=#r4#" };
+ { 3, 21393, "", "=q4=Signet of Unyielding Strength", "=q3=#aq20t3#=ds=, #r3#" };
+ };
+};
+
+-----------------
+--- AQ40 Sets ---
+-----------------
+
+AtlasLoot_Data["T2.5"] = {
+ Name = AL["AQ40 Class Sets"] .. " (Tier 2.5)";
+ Type = "ClassicRaid";
+ {
+ Name = AL["Druid"];
+ { 1, 21357, "", "=q4=Genesis Vest", "" };
+ { 2, 21353, "", "=q4=Genesis Helm", "" };
+ { 3, 21356, "", "=q4=Genesis Trousers", "" };
+ { 4, 21354, "", "=q4=Genesis Shoulderpads", "" };
+ { 5, 21355, "", "=q4=Genesis Boots", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 21370, "", "=q4=Striker's Hauberk", "" };
+ { 2, 21366, "", "=q4=Striker's Diadem", "" };
+ { 3, 21368, "", "=q4=Striker's Leggings", "" };
+ { 4, 21367, "", "=q4=Striker's Pauldrons", "" };
+ { 5, 21365, "", "=q4=Striker's Footguards", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 21343, "", "=q4=Enigma Robes", "" };
+ { 2, 21347, "", "=q4=Enigma Circlet", "" };
+ { 3, 21346, "", "=q4=Enigma Leggings", "" };
+ { 4, 21345, "", "=q4=Enigma Shoulderpads", "" };
+ { 5, 21344, "", "=q4=Enigma Boots", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
+ { 1, 21389, "", "=q4=Avenger's Breastplate", "" };
+ { 2, 21387, "", "=q4=Avenger's Crown", "" };
+ { 3, 21390, "", "=q4=Avenger's Legguards", "" };
+ { 4, 21391, "", "=q4=Avenger's Pauldrons", "" };
+ { 5, 21388, "", "=q4=Avenger's Greaves", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
+ { 1, 21351, "", "=q4=Vestments of the Oracle", "" };
+ { 2, 21348, "", "=q4=Tiara of the Oracle", "" };
+ { 3, 21352, "", "=q4=Trousers of the Oracle", "" };
+ { 4, 21350, "", "=q4=Mantle of the Oracle", "" };
+ { 5, 21349, "", "=q4=Footwraps of the Oracle", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 21364, "", "=q4=Deathdealer's Vest", "" };
+ { 2, 21360, "", "=q4=Deathdealer's Helm", "" };
+ { 3, 21362, "", "=q4=Deathdealer's Leggings", "" };
+ { 4, 21361, "", "=q4=Deathdealer's Spaulders", "" };
+ { 5, 21359, "", "=q4=Deathdealer's Boots", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
+ { 1, 21374, "", "=q4=Stormcaller's Hauberk", "" };
+ { 2, 21372, "", "=q4=Stormcaller's Diadem", "" };
+ { 3, 21375, "", "=q4=Stormcaller's Leggings", "" };
+ { 4, 21376, "", "=q4=Stormcaller's Pauldrons", "" };
+ { 5, 21373, "", "=q4=Stormcaller's Footguards", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 21334, "", "=q4=Doomcaller's Robes", "" };
+ { 2, 21337, "", "=q4=Doomcaller's Circlet", "" };
+ { 3, 21336, "", "=q4=Doomcaller's Trousers", "" };
+ { 4, 21335, "", "=q4=Doomcaller's Mantle", "" };
+ { 5, 21338, "", "=q4=Doomcaller's Footwraps", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - Tank";
+ { 1, 21331, "", "=q4=Conqueror's Breastplate", "" };
+ { 2, 21329, "", "=q4=Conqueror's Crown", "" };
+ { 3, 21332, "", "=q4=Conqueror's Legguards", "" };
+ { 4, 21330, "", "=q4=Conqueror's Spaulders", "" };
+ { 5, 21333, "", "=q4=Conqueror's Greaves", "" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - DPS";
+ { 1, 10912, "", "=q4=Conqueror's Chestplate", "" };
+ { 2, 10910, "", "=q4=Conqueror's Headguard", "" };
+ { 3, 10913, "", "=q4=Conqueror's Platelegs", "" };
+ { 4, 10911, "", "=q4=Conqueror's Shoulderpads", "" };
+ { 5, 10914, "", "=q4=Conqueror's War Stompers", "" };
+ };
+};
+
+-----------------------
+--- BoE World Epics ---
+-----------------------
+
+AtlasLoot_Data["WorldEpicsCLASSIC"] = {
+ Name = AL["BoE World Epics"];
+ Type = "ClassicDungeonExt";
+ {
+ Name = AL["Level 30-39"];
+ { 1, 867, "", "=q4=Gloves of Holy Might", "=ds=#s9#, #a2#", "", "" };
+ { 2, 1981, "", "=q4=Icemail Jerkin", "=ds=#s5#, #a3#", "", "" };
+ { 3, 1980, "", "=q4=Underworld Band", "=ds=#s13#", "", "" };
+ { 16, 869, "", "=q4=Dazzling Longsword", "=ds=#h1#, #w10#", "", "" };
+ { 17, 1982, "", "=q4=Nightblade", "=ds=#h2#, #w10#", "", "" };
+ { 18, 870, "", "=q4=Fiery War Axe", "=ds=#h2#, #w1#", "", "" };
+ { 19, 868, "", "=q4=Ardent Custodian", "=ds=#h1#, #w6#", "", "" };
+ { 20, 873, "", "=q4=Staff of Jordan", "=ds=#w9#", "", "" };
+ { 21, 1204, "", "=q4=The Green Tower", "=ds=#w8#", "", "" };
+ { 22, 2825, "", "=q4=Bow of Searing Arrows", "=ds=#w2#", "", "" };
+ };
+ {
+ Name = AL["Level 40-49"];
+ { 1, 3075, "", "=q4=Eye of Flame", "=ds=#s1#, #a1#", "", "" };
+ { 2, 940, "", "=q4=Robes of Insight", "=ds=#s5#, #a1#", "", "" };
+ { 3, 14551, "", "=q4=Edgemaster's Handguards", "=ds=#s9#, #a3#", "", "" };
+ { 4, 17007, "", "=q4=Stonerender Gauntlets", "=ds=#s9#, #a3#", "", "" };
+ { 5, 14549, "", "=q4=Boots of Avoidance", "=ds=#s12#, #a4#", "", "" };
+ { 6, 1315, "", "=q4=Lei of Lilies", "=ds=#s2#", "", "" };
+ { 7, 942, "", "=q4=Freezing Band", "=ds=#s13#", "", "" };
+ { 8, 1447, "", "=q4=Ring of Saviors", "=ds=#s13#", "", "" };
+ { 16, 2164, "", "=q4=Gut Ripper", "=ds=#h1#, #w4#", "", "" };
+ { 17, 2163, "", "=q4=Shadowblade", "=ds=#h1#, #w4#", "", "" };
+ { 18, 809, "", "=q4=Bloodrazor", "=ds=#h1#, #w10#", "", "" };
+ { 19, 871, "", "=q4=Flurry Axe", "=ds=#h1#, #w1#", "", "" };
+ { 20, 2291, "", "=q4=Kang the Decapitator", "=ds=#h2#, #w1#", "", "" };
+ { 21, 810, "", "=q4=Hammer of the Northern Wind", "=ds=#h1#, #w6#", "", "" };
+ { 22, 2915, "", "=q4=Taran Icebreaker", "=ds=#h2#, #w6#", "", "" };
+ { 23, 812, "", "=q4=Glowing Brightwood Staff", "=ds=#w9#", "", "" };
+ { 24, 943, "", "=q4=Warden Staff", "=ds=#w9#", "", "" };
+ { 25, 1169, "", "=q4=Blackskull Shield", "=ds=#w8#", "", "" };
+ { 26, 1979, "", "=q4=Wall of the Dead", "=ds=#w8#", "", "" };
+ { 27, 2824, "", "=q4=Hurricane", "=ds=#w2#", "", "" };
+ { 28, 2100, "", "=q4=Precisely Calibrated Boomstick", "=ds=#w5#", "", "" };
+ };
+ {
+ Name = AL["Level 50-60"];
+ { 1, 3475, "", "=q4=Cloak of Flames", "=ds=#s4#", "", "" };
+ { 2, 14553, "", "=q4=Sash of Mercy", "=ds=#s10#, #a2#", "", "" };
+ { 3, 2245, "", "=q4=Helm of Narv", "=ds=#s1#, #a3#", "", "" };
+ { 4, 14552, "", "=q4=Stockade Pauldrons", "=ds=#s3#, #a4#", "", "" };
+ { 5, 14554, "", "=q4=Cloudkeeper Legplates", "=ds=#s11#, #a4#", "", "" };
+ { 6, 1443, "", "=q4=Jeweled Amulet of Cainwyn", "=ds=#s2#", "", "" };
+ { 7, 14558, "", "=q4=Lady Maye's Pendant", "=ds=#s2#", "", "" };
+ { 8, 2246, "", "=q4=Myrmidon's Signet", "=ds=#s13#", "", "" };
+ { 9, 833, "", "=q4=Lifestone", "=ds=#s14#", "", "" };
+ { 10, 14557, "", "=q4=The Lion Horn of Stormwind", "=ds=#s14#", "", "" };
+ { 16, 14555, "", "=q4=Alcor's Sunrazor", "=ds=#h1#, #w4#", "", "" };
+ { 17, 2244, "", "=q4=Krol Blade", "=ds=#h1#, #w10#", "", "" };
+ { 18, 1728, "", "=q4=Teebu's Blazing Longsword", "=ds=#h1#, #w10#", "", "" };
+ { 19, 2801, "", "=q4=Blade of Hanna", "=ds=#h2#, #w10#", "", "" };
+ { 20, 647, "", "=q4=Destiny", "=ds=#h2#, #w10#", "", "" };
+ { 21, 811, "", "=q4=Axe of the Deep Woods", "=ds=#h1#, #w1#", "", "" };
+ { 22, 1263, "", "=q4=Brain Hacker", "=ds=#h2#, #w1#", "", "" };
+ { 23, 2243, "", "=q4=Hand of Edward the Odd", "=ds=#h1#, #w6#", "", "" };
+ { 24, 944, "", "=q4=Elemental Mage Staff", "=ds=#w9#", "", "" };
+ { 25, 1168, "", "=q4=Skullflame Shield", "=ds=#w8#", "", "" };
+ { 26, 2099, "", "=q4=Dwarven Hand Cannon", "=ds=#w5#", "", "" };
+ };
+};
+
+-----------
+--- PvP ---
+-----------
+
+----------------------
+--- Alterac Valley ---
+----------------------
+
+AtlasLoot_Data["AVMisc"] = {
+ Name = BabbleZone["Alterac Valley"];
+ {
+ Name = AL["Misc. Rewards"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "=q5=#b1#" };
+ { 2, 19030, "", "=q4=Stormpike Battle Charger", "=ds=#e12#", "50000 #alliance#" };
+ { 3, 19045, "", "=q3=Stormpike Battle Standard", "=ds=#e14#", "15000 #alliance#" };
+ { 4, 19032, "", "=q1=Stormpike Battle Tabard", "=ds=#s7#", "15000 #alliance#" };
+ { 6, 19316, "", "=q2=Ice Threaded Arrow", "=ds=#w17#", "60 #silver# 1 #faction#" };
+ { 7, 17348, "", "=q1=Major Healing Draught", "=ds=#e2#", "10 #silver# 8 #faction#" };
+ { 8, 17349, "", "=q1=Superior Healing Draught", "=ds=#e2#", "5 #silver# 1 #faction#" };
+ { 9, 19301, "", "=q1=Alterac Manna Biscuit", "=ds=#e3#", "70 #silver#" };
+ { 10, 19307, "", "=q1=Alterac Heavy Runecloth Bandage", "=ds=#e5#", "80 #silver#" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", "=q5=#b2#" };
+ { 17, 19029, "", "=q4=Horn of the Frostwolf Howler", "=ds=#e12#", "50000 #horde#" };
+ { 18, 19046, "", "=q3=Frostwolf Battle Standard", "=ds=#e14#", "15000 #horde#" };
+ { 19, 19031, "", "=q1=Frostwolf Battle Tabard", "=ds=#s7#", "15000 #horde#" };
+ { 21, 19317, "", "=q2=Ice Threaded Bullet", "=ds=#w18#", "60 #silver# 1 #faction#" };
+ { 22, 17351, "", "=q1=Major Mana Draught", "=ds=#e2#", "10 #silver# 8 #faction#" };
+ { 23, 17352, "", "=q1=Superior Mana Draught", "=ds=#e2#", "5 #silver# 1 #faction#" };
+ { 24, 19318, "", "=q1=Bottled Alterac Spring Water", "=ds=#e4#", "50 #silver#" };
+ };
+ {
+ Name = "Alliance";
+ { 2, 19086, "", "=q3=Stormpike Sage's Cloak", "=ds=#s4#", "1600 #alliance#" };
+ { 3, 19084, "", "=q3=Stormpike Soldier's Cloak", "=ds=#s4#", "1600 #alliance#" };
+ { 4, 19094, "", "=q3=Stormpike Cloth Girdle", "=ds=#s10#, #a1#", "3000 #alliance#" };
+ { 5, 19093, "", "=q3=Stormpike Leather Girdle", "=ds=#s10#, #a2#", "3000 #alliance#" };
+ { 6, 19092, "", "=q3=Stormpike Mail Girdle", "=ds=#s10#, #a3#", "3000 #alliance#" };
+ { 7, 19091, "", "=q3=Stormpike Plate Girdle", "=ds=#s10#, #a4#", "3000 #alliance#" };
+ { 8, 19098, "", "=q3=Stormpike Sage's Pendant", "=ds=#s2#", "1600 #alliance#" };
+ { 9, 19097, "", "=q3=Stormpike Soldier's Pendant", "=ds=#s2#", "1600 #alliance#" };
+ { 10, 19100, "", "=q3=Electrified Dagger", "=ds=#h1#, #w4#", "2400 #alliance#" };
+ { 11, 19104, "", "=q3=Stormstrike Hammer", "=ds=#h1#, #w6#", "2400 #alliance#" };
+ { 12, 19102, "", "=q3=Crackling Staff", "=ds=#w9#", "3000 #alliance#" };
+ { 13, 19320, "", "=q3=Gnoll Skin Bandolier", "=ds=#w20#", "1600 #alliance#" };
+ { 14, 19319, "", "=q3=Harpy Hide Quiver", "=ds=#w19#", "1600 #alliance#" };
+ { 17, 19325, "", "=q4=Don Julio's Band", "=ds=#s13#", "5000 #faction#" };
+ { 18, 21563, "", "=q4=Don Rodrigo's Band", "=ds=#s13#", "5000 #faction#" };
+ { 19, 19312, "", "=q4=Lei of the Lifegiver", "=ds=#s15#", "5000 #faction#" };
+ { 20, 19315, "", "=q4=Therazane's Touch", "=ds=#s15#", "5000 #faction#" };
+ { 21, 19308, "", "=q4=Tome of Arcane Domination", "=ds=#s15#", "5000 #faction#" };
+ { 22, 19309, "", "=q4=Tome of Shadow Force", "=ds=#s15#", "5000 #faction#" };
+ { 23, 19311, "", "=q4=Tome of Fiery Arcana", "=ds=#s15#", "5000 #faction#" };
+ { 24, 19310, "", "=q4=Tome of the Ice Lord", "=ds=#s15#", "5000 #faction#" };
+ { 25, 19324, "", "=q4=The Lobotomizer", "=ds=#h1#, #w4#", "5000 #faction#" };
+ { 26, 19321, "", "=q4=The Immovable Object", "=ds=#w8#", "5000 #faction#" };
+ { 27, 19323, "", "=q4=The Unstoppable Force", "=ds=#h2#, #w6#", "5000 #faction#" };
+ };
+ {
+ Name = "Horde";
+ { 2, 19085, "", "=q3=Frostwolf Advisor's Cloak", "=ds=#s4#", "1600 #horde#" };
+ { 3, 19083, "", "=q3=Frostwolf Legionnaire's Cloak", "=ds=#s4#", "1600 #horde#" };
+ { 4, 19090, "", "=q3=Frostwolf Cloth Belt", "=ds=#s10#, #a1#", "3000 #horde#" };
+ { 5, 19089, "", "=q3=Frostwolf Leather Belt", "=ds=#s10#, #a2#", "3000 #horde#" };
+ { 6, 19088, "", "=q3=Frostwolf Mail Belt", "=ds=#s10#, #a3#", "3000 #horde#" };
+ { 7, 19087, "", "=q3=Frostwolf Plate Belt", "=ds=#s10#, #a4#", "3000 #horde#" };
+ { 8, 19096, "", "=q3=Frostwolf Advisor's Pendant", "=ds=#s2#", "1600 #horde#" };
+ { 9, 19095, "", "=q3=Frostwolf Legionnaire's Pendant", "=ds=#s2#", "1600 #horde#" };
+ { 10, 19099, "", "=q3=Glacial Blade", "=ds=#h1#, #w4#", "2400 #horde#" };
+ { 11, 19103, "", "=q3=Frostbite", "=ds=#h1#, #w6#", "2400 #horde#" };
+ { 12, 19101, "", "=q3=Whiteout Staff", "=ds=#w9#", "3000 #horde#" };
+ { 13, 19320, "", "=q3=Gnoll Skin Bandolier", "=ds=#w20#", "1600 #horde#" };
+ { 14, 19319, "", "=q3=Harpy Hide Quiver", "=ds=#w19#", "1600 #horde#" };
+ { 17, 19325, "", "=q4=Don Julio's Band", "=ds=#s13#", "5000 #faction#" };
+ { 18, 21563, "", "=q4=Don Rodrigo's Band", "=ds=#s13#", "5000 #faction#" };
+ { 19, 19312, "", "=q4=Lei of the Lifegiver", "=ds=#s15#", "5000 #faction#" };
+ { 20, 19315, "", "=q4=Therazane's Touch", "=ds=#s15#", "5000 #faction#" };
+ { 21, 19308, "", "=q4=Tome of Arcane Domination", "=ds=#s15#", "5000 #faction#" };
+ { 22, 19309, "", "=q4=Tome of Shadow Force", "=ds=#s15#", "5000 #faction#" };
+ { 23, 19311, "", "=q4=Tome of Fiery Arcana", "=ds=#s15#", "5000 #faction#" };
+ { 24, 19310, "", "=q4=Tome of the Ice Lord", "=ds=#s15#", "5000 #faction#" };
+ { 25, 19324, "", "=q4=The Lobotomizer", "=ds=#h1#, #w4#", "5000 #faction#" };
+ { 26, 19321, "", "=q4=The Immovable Object", "=ds=#w8#", "5000 #faction#" };
+ { 27, 19323, "", "=q4=The Unstoppable Force", "=ds=#h2#, #w6#", "5000 #faction#" };
+ };
+};
+
+--------------------
+--- Arathi Basin ---
+--------------------
+
+AtlasLoot_Data["AB_A"] = {
+ Name = BabbleZone["Arathi Basin"] .. " (Alliance)";
+ {
+ Name = AL["Misc. Rewards"];
+ { 1, 17349, "", "=q1=Superior Healing Draught", "=ds=", "5 #silver# 1 #alliance#", "" };
+ { 2, 17352, "", "=q1=Superior Mana Draught", "=ds=", "5 #silver# 1 #alliance#", "" };
+ { 3, 20225, "", "=q1=Highlander's Enriched Ration", "=ds=", "18 #silver#", "" };
+ { 4, 20227, "", "=q1=Highlander's Iron Ration", "=ds=", "13,5 #silver#", "" };
+ { 5, 20226, "", "=q1=Highlander's Field Ration", "=ds=", "9 #silver#", "" };
+ { 6, 20243, "", "=q1=Highlander's Runecloth Bandage", "=ds=", "18 #silver#", "" };
+ { 7, 20237, "", "=q1=Highlander's Mageweave Bandage", "=ds=", "13,5 #silver#", "" };
+ { 8, 20244, "", "=q1=Highlander's Silk Bandage", "=ds=", "9 #silver#", "" };
+ { 9, 21119, "", "=q3=Talisman of Arathor", "=ds=", "300 #alliance#", "" };
+ { 10, 21118, "", "=q3=Talisman of Arathor", "=ds=", "300 #alliance#", "" };
+ { 11, 21117, "", "=q3=Talisman of Arathor", "=ds=", "400 #alliance#", "" };
+ { 12, 20071, "", "=q3=Talisman of Arathor", "=ds=", "3000 #alliance#", "" };
+ };
+ {
+ Name = AL["Level 60 Rewards"];
+ { 1, 20073, "", "=q4=Cloak of the Honor Guard", "=ds=", "5000 #alliance#", "" };
+ { 2, 20070, "", "=q4=Sageclaw", "=ds=", "9000 #alliance#", "" };
+ { 3, 20069, "", "=q4=Ironbark Staff", "=ds=", "16000 #alliance#", "" };
+ };
+ {
+ Name = AL["Level 40-49 Rewards"];
+ { 1, 20097, "", "=q3=Highlander's Cloth Girdle", "=ds=", "400 #alliance#", "" };
+ { 2, 20094, "", "=q3=Highlander's Cloth Boots", "=ds=", "400 #alliance#", "" };
+ { 3, 20115, "", "=q3=Highlander's Leather Girdle", "=ds=", "400 #alliance#", "" };
+ { 4, 20103, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "400 #alliance#", "" };
+ { 5, 20112, "", "=q3=Highlander's Leather Boots", "=ds=", "400 #alliance#", "" };
+ { 6, 20100, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "400 #alliance#", "" };
+ { 7, 20089, "", "=q3=Highlander's Chain Girdle", "=ds=", "300 #alliance#", "" };
+ { 8, 20088, "", "=q3=Highlander's Chain Girdle", "=ds=", "400 #alliance#", "" };
+ { 9, 20119, "", "=q3=Highlander's Mail Girdle", "=ds=", "300 #alliance#", "" };
+ { 10, 20118, "", "=q3=Highlander's Mail Girdle", "=ds=", "400 #alliance#", "" };
+ { 11, 20092, "", "=q3=Highlander's Chain Greaves", "=ds=", "300 #alliance#", "" };
+ { 12, 20091, "", "=q3=Highlander's Chain Greaves", "=ds=", "400 #alliance#", "" };
+ { 13, 20122, "", "=q3=Highlander's Mail Greaves", "=ds=", "300 #alliance#", "" };
+ { 14, 20121, "", "=q3=Highlander's Mail Greaves", "=ds=", "400 #alliance#", "" };
+ { 15, 20107, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "300 #alliance#", "" };
+ { 16, 20106, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "400 #alliance#", "" };
+ { 17, 20125, "", "=q3=Highlander's Plate Girdle", "=ds=", "300 #alliance#", "" };
+ { 18, 20124, "", "=q3=Highlander's Plate Girdle", "=ds=", "400 #alliance#", "" };
+ { 19, 20110, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "300 #alliance#", "" };
+ { 20, 20109, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "400 #alliance#", "" };
+ { 21, 20128, "", "=q3=Highlander's Plate Greaves", "=ds=", "300 #alliance#", "" };
+ { 22, 20127, "", "=q3=Highlander's Plate Greaves", "=ds=", "400 #alliance#", "" };
+ };
+ {
+ Name = AL["Level 30-39 Rewards"];
+ { 1, 20098, "", "=q3=Highlander's Cloth Girdle", "=ds=", "300 #alliance#", "" };
+ { 2, 20095, "", "=q3=Highlander's Cloth Boots", "=ds=", "300 #alliance#", "" };
+ { 3, 20116, "", "=q3=Highlander's Leather Girdle", "=ds=", "300 #alliance#", "" };
+ { 4, 20104, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "300 #alliance#", "" };
+ { 5, 20113, "", "=q3=Highlander's Leather Boots", "=ds=", "300 #alliance#", "" };
+ { 6, 20101, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "300 #alliance#", "" };
+ };
+ {
+ Name = AL["Level 20-29 Rewards"];
+ { 1, 20099, "", "=q3=Highlander's Cloth Girdle", "=ds=", "300 #alliance#", "" };
+ { 2, 20096, "", "=q3=Highlander's Cloth Boots", "=ds=", "300 #alliance#", "" };
+ { 3, 20117, "", "=q3=Highlander's Leather Girdle", "=ds=", "300 #alliance#", "" };
+ { 4, 20105, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "300 #alliance#", "" };
+ { 5, 20120, "", "=q3=Highlander's Mail Girdle", "=ds=", "300 #alliance#", "" };
+ { 6, 20090, "", "=q3=Highlander's Padded Girdle", "=ds=", "300 #alliance#", "" };
+ { 7, 20114, "", "=q3=Highlander's Leather Boots", "=ds=", "300 #alliance#", "" };
+ { 8, 20102, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "300 #alliance#", "" };
+ { 9, 20123, "", "=q3=Highlander's Mail Greaves", "=ds=", "300 #alliance#", "" };
+ { 10, 20093, "", "=q3=Highlander's Padded Greaves", "=ds=", "300 #alliance#", "" };
+ { 11, 20108, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "300 #alliance#", "" };
+ { 12, 20126, "", "=q3=Highlander's Mail Girdle", "=ds=", "300 #alliance#", "" };
+ { 13, 20111, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "300 #alliance#", "" };
+ { 14, 20129, "", "=q3=Highlander's Mail Greaves", "=ds=", "300 #alliance#", "" };
+ };
+ {
+ Name = AL["The Highlander's Intent"];
+ { 1, 20061, "", "=q4=Highlander's Epaulets", "=ds=", "9000 #alliance#", "" };
+ { 2, 20047, "", "=q3=Highlander's Cloth Girdle", "=ds=", "3000 #alliance#", "" };
+ { 3, 20054, "", "=q3=Highlander's Cloth Boots", "=ds=", "3000 #alliance#", "" };
+ };
+ {
+ Name = AL["The Highlander's Purpose"];
+ { 1, 20059, "", "=q4=Highlander's Leather Shoulders", "=ds=", "9000 #alliance#", "" };
+ { 2, 20045, "", "=q3=Highlander's Leather Girdle", "=ds=", "3000 #alliance#", "" };
+ { 3, 20052, "", "=q3=Highlander's Leather Boots", "=ds=", "3000 #alliance#", "" };
+ };
+ {
+ Name = AL["The Highlander's Will"];
+ { 1, 20060, "", "=q4=Highlander's Lizardhide Shoulders", "=ds=", "9000 #alliance#", "" };
+ { 2, 20046, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "3000 #alliance#", "" };
+ { 3, 20053, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "3000 #alliance#", "" };
+ };
+ {
+ Name = AL["The Highlander's Determination"];
+ { 1, 20055, "", "=q4=Highlander's Chain Pauldrons", "=ds=", "9000 #alliance#", "" };
+ { 2, 20043, "", "=q3=Highlander's Chain Girdle", "=ds=", "3000 #alliance#", "" };
+ { 3, 20050, "", "=q3=Highlander's Chain Greaves", "=ds=", "3000 #alliance#", "" };
+ };
+ {
+ Name = AL["The Highlander's Fortitude"];
+ { 1, 20056, "", "=q4=Highlander's Mail Pauldrons", "=ds=", "9000 #alliance#", "" };
+ { 2, 20044, "", "=q3=Highlander's Mail Girdle", "=ds=", "3000 #alliance#", "" };
+ { 3, 20051, "", "=q3=Highlander's Mail Greaves", "=ds=", "3000 #alliance#", "" };
+ };
+ {
+ Name = AL["The Highlander's Resolution"];
+ { 1, 20057, "", "=q4=Highlander's Plate Spaulders", "=ds=", "9000 #alliance#", "" };
+ { 2, 20041, "", "=q3=Highlander's Plate Girdle", "=ds=", "3000 #alliance#", "" };
+ { 3, 20048, "", "=q3=Highlander's Plate Greaves", "=ds=", "3000 #alliance#", "" };
+ };
+ {
+ Name = AL["The Highlander's Resolve"];
+ { 1, 20058, "", "=q4=Highlander's Lamellar Spaulders", "=ds=", "9000 #alliance#", "" };
+ { 2, 20042, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "3000 #alliance#", "" };
+ { 3, 20049, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "3000 #alliance#", "" };
+ };
+};
+
+AtlasLoot_Data["AB_H"] = {
+ Name = BabbleZone["Arathi Basin"] .. " (Horde)";
+ {
+ Name = AL["Misc. Rewards"];
+ { 1, 17349, "", "=q1=Superior Healing Draught", "=ds=", "5 #silver# 5 #horde#", "" };
+ { 2, 17352, "", "=q1=Superior Mana Draught", "=ds=", "5 #silver# 5 #horde#", "" };
+ { 3, 20222, "", "=q1=Defiler's Enriched Ration", "=ds=", "18 #silver#", "" };
+ { 4, 20224, "", "=q1=Defiler's Iron Ration", "=ds=", "15 #silver#", "" };
+ { 5, 20223, "", "=q1=Defiler's Field Ration", "=ds=", "9 #silver#", "" };
+ { 6, 20234, "", "=q1=Defiler's Runecloth Bandage", "=ds=", "18 #silver#", "" };
+ { 7, 20232, "", "=q1=Defiler's Mageweave Bandage", "=ds=", "15 #silver#", "" };
+ { 8, 20235, "", "=q1=Defiler's Silk Bandage", "=ds=", "9 #silver#", "" };
+ { 9, 21116, "", "=q3=Defiler's Talisman", "=ds=", "300 #horde#", "" };
+ { 10, 21120, "", "=q3=Defiler's Talisman", "=ds=", "300 #horde#", "" };
+ { 11, 21115, "", "=q3=Defiler's Talisman", "=ds=", "400 #horde#", "" };
+ { 12, 20072, "", "=q3=Defiler's Talisman", "=ds=", "3000 #horde#", "" };
+ };
+ {
+ Name = AL["Level 60 Rewards"];
+ { 1, 20068, "", "=q4=Deathguard's Cloak", "=ds=", "5000 #horde#", "" };
+ { 2, 20214, "", "=q4=Mindfang", "=ds=", "9000 #horde#", "" };
+ { 3, 20220, "", "=q4=Ironbark Staff", "=ds=", "16000 #horde#", "" };
+ };
+ {
+ Name = AL["Level 40-49 Rewards"];
+ { 1, 20165, "", "=q3=Defiler's Cloth Girdle", "=ds=", "400 #horde#", "" };
+ { 2, 20160, "", "=q3=Defiler's Cloth Boots", "=ds=", "400 #horde#", "" };
+ { 3, 20193, "", "=q3=Defiler's Leather Girdle", "=ds=", "400 #horde#", "" };
+ { 4, 20174, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "400 #horde#", "" };
+ { 5, 20189, "", "=q3=Defiler's Leather Boots", "=ds=", "400 #horde#", "" };
+ { 6, 20170, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "400 #horde#", "" };
+ { 7, 20153, "", "=q3=Defiler's Chain Girdle", "=ds=", "300 #horde#", "" };
+ { 8, 20151, "", "=q3=Defiler's Chain Girdle", "=ds=", "400 #horde#", "" };
+ { 9, 20198, "", "=q3=Defiler's Mail Girdle", "=ds=", "300 #horde#", "" };
+ { 10, 20196, "", "=q3=Defiler's Mail Girdle", "=ds=", "400 #horde#", "" };
+ { 11, 20156, "", "=q3=Defiler's Chain Greaves", "=ds=", "300 #horde#", "" };
+ { 12, 20155, "", "=q3=Defiler's Chain Greaves", "=ds=", "400 #horde#", "" };
+ { 13, 20200, "", "=q3=Defiler's Mail Greaves", "=ds=", "300 #horde#", "" };
+ { 14, 20202, "", "=q3=Defiler's Mail Greaves", "=ds=", "400 #horde#", "" };
+ { 15, 20180, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "300 #horde#", "" };
+ { 16, 20179, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "400 #horde#", "" };
+ { 17, 20206, "", "=q3=Defiler's Plate Girdle", "=ds=", "300 #horde#", "" };
+ { 18, 20205, "", "=q3=Defiler's Plate Girdle", "=ds=", "400 #horde#", "" };
+ { 19, 20183, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "300 #horde#", "" };
+ { 20, 20185, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "400 #horde#", "" };
+ { 21, 20209, "", "=q3=Defiler's Plate Greaves", "=ds=", "300 #horde#", "" };
+ { 22, 20211, "", "=q3=Defiler's Plate Greaves", "=ds=", "400 #horde#", "" };
+ };
+ {
+ Name = AL["Level 30-39 Rewards"];
+ { 1, 20166, "", "=q3=Defiler's Cloth Girdle", "=ds=", "300 #horde#", "" };
+ { 2, 20161, "", "=q3=Defiler's Cloth Boots", "=ds=", "300 #horde#", "" };
+ { 3, 20192, "", "=q3=Defiler's Leather Girdle", "=ds=", "300 #horde#", "" };
+ { 4, 20173, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "300 #horde#", "" };
+ { 5, 20187, "", "=q3=Defiler's Leather Boots", "=ds=", "300 #horde#", "" };
+ { 6, 20168, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "300 #horde#", "" };
+ };
+ {
+ Name = AL["Level 20-29 Rewards"];
+ { 1, 20164, "", "=q3=Defiler's Cloth Girdle", "=ds=", "300 #horde#", "" };
+ { 2, 20162, "", "=q3=Defiler's Cloth Boots", "=ds=", "300 #horde#", "" };
+ { 3, 20191, "", "=q3=Defiler's Leather Girdle", "=ds=", "300 #horde#", "" };
+ { 4, 20172, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "300 #horde#", "" };
+ { 5, 20152, "", "=q3=Defiler's Chain Girdle", "=ds=", "300 #horde#", "" };
+ { 6, 20197, "", "=q3=Defiler's Padded Girdle", "=ds=", "300 #horde#", "" };
+ { 7, 20188, "", "=q3=Defiler's Leather Boots", "=ds=", "300 #horde#", "" };
+ { 8, 20169, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "300 #horde#", "" };
+ { 9, 20201, "", "=q3=Defiler's Mail Greaves", "=ds=", "300 #horde#", "" };
+ { 0, 20157, "", "=q3=Defiler's Chain Greaves", "=ds=", "300 #horde#", "" };
+ { 10, 20178, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "300 #horde#", "" };
+ { 11, 20207, "", "=q3=Defiler's Mail Girdle", "=ds=", "300 #horde#", "" };
+ { 12, 20182, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "300 #horde#", "" };
+ { 13, 20210, "", "=q3=Defiler's Mail Greaves", "=ds=", "300 #horde#", "" };
+ };
+ {
+ Name = AL["The Defiler's Intent"];
+ { 1, 20176, "", "=q4=Defiler's Epaulets", "=ds=", "9000 #horde#", "" };
+ { 2, 20163, "", "=q3=Defiler's Cloth Girdle", "=ds=", "3000 #horde#", "" };
+ { 3, 20159, "", "=q3=Defiler's Cloth Boots", "=ds=", "3000 #horde#", "" };
+ };
+ {
+ Name = AL["The Defiler's Purpose"];
+ { 1, 20194, "", "=q4=Defiler's Leather Shoulders", "=ds=", "9000 #horde#", "" };
+ { 2, 20190, "", "=q3=Defiler's Leather Girdle", "=ds=", "3000 #horde#", "" };
+ { 3, 20186, "", "=q3=Defiler's Leather Boots", "=ds=", "3000 #horde#", "" };
+ };
+ {
+ Name = AL["The Defiler's Will"];
+ { 1, 20175, "", "=q4=Defiler's Lizardhide Shoulders", "=ds=", "9000 #horde#", "" };
+ { 2, 20171, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "3000 #horde#", "" };
+ { 3, 20167, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "3000 #horde#", "" };
+ };
+ {
+ Name = AL["The Defiler's Determination"];
+ { 1, 20158, "", "=q3=Defiler's Chain Pauldrons", "=ds=", "9000 #horde#", "" };
+ { 2, 20150, "", "=q3=Defiler's Chain Girdle", "=ds=", "3000 #horde#", "" };
+ { 3, 20154, "", "=q3=Defiler's Chain Greaves", "=ds=", "3000 #horde#", "" };
+ };
+ {
+ Name = AL["The Defiler's Fortitude"];
+ { 1, 20203, "", "=q4=Defiler's Mail Pauldrons", "=ds=", "9000 #horde#", "" };
+ { 2, 20195, "", "=q3=Defiler's Mail Girdle", "=ds=", "3000 #horde#", "" };
+ { 3, 20199, "", "=q3=Defiler's Mail Greaves", "=ds=", "3000 #horde#", "" };
+ };
+ {
+ Name = AL["The Defiler's Resolution"];
+ { 1, 20212, "", "=q4=Defiler's Plate Spaulders", "=ds=", "9000 #horde#", "" };
+ { 2, 20204, "", "=q3=Defiler's Plate Girdle", "=ds=", "3000 #horde#", "" };
+ { 3, 20208, "", "=q3=Defiler's Plate Greaves", "=ds=", "3000 #horde#", "" };
+ };
+ {
+ Name = AL["The Defiler's Resolve"];
+ { 1, 20184, "", "=q4=Defiler's Lamellar Spaulders", "=ds=", "9000 #horde#", "" };
+ { 2, 20177, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "3000 #horde#", "" };
+ { 3, 20181, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "3000 #horde#", "" };
+ };
+};
+
+---------------------
+--- Warsong Gulch ---
+---------------------
+
+AtlasLoot_Data["WSG_A"] = {
+ Name = BabbleZone["Warsong Gulch"] .. " (Alliance)";
+ {
+ Name = AL["Misc. Rewards"];
+ { 1, 19506, "", "=q1=Silverwing Battle Tabard", "=ds=", "12000 #faction#", "" };
+ { 2, 17348, "", "=q1=Major Healing Draught", "=ds=", "10 #silver# 2 #faction#", "" };
+ { 3, 17349, "", "=q1=Superior Healing Draught", "=ds=", "5 #silver# 5 #faction#", "" };
+ { 4, 19060, "", "=q1=Warsong Gulch Enriched Ration", "=ds=", "20 #silver#", "" };
+ { 5, 19062, "", "=q1=Warsong Gulch Field Ration", "=ds=", "10 #silver#", "" };
+ { 6, 19067, "", "=q1=Warsong Gulch Mageweave Bandage", "=ds=", "15 #silver#", "" };
+ };
+ {
+ Name = AL["Accessories"];
+ { 1, 20428, "", "=q3=Caretaker's Cape", "=ds=", "100 #alliance#", "" };
+ { 2, 19533, "", "=q3=Caretaker's Cape", "=ds=", "100 #alliance#", "" };
+ { 3, 19532, "", "=q3=Caretaker's Cape", "=ds=", "300 #alliance#", "" };
+ { 4, 19531, "", "=q3=Caretaker's Cape", "=ds=", "300 #alliance#", "" };
+ { 5, 19530, "", "=q3=Caretaker's Cape", "=ds=", "1600 #alliance#", "" };
+ { 7, 20444, "", "=q3=Sentinel's Medallion", "=ds=", "100 #alliance#", "" };
+ { 8, 19541, "", "=q3=Sentinel's Medallion", "=ds=", "100 #alliance#", "" };
+ { 9, 19540, "", "=q3=Sentinel's Medallion", "=ds=", "300 #alliance#", "" };
+ { 10, 19539, "", "=q3=Sentinel's Medallion", "=ds=", "300 #alliance#", "" };
+ { 11, 19538, "", "=q3=Sentinel's Medallion", "=ds=", "1600 #alliance#", "" };
+ { 13, 21568, "", "=q3=Rune of Duty", "=ds=", "300 #alliance#", "" };
+ { 14, 21567, "", "=q3=Rune of Duty", "=ds=", "300 #alliance#", "" };
+ { 16, 20431, "", "=q3=Lorekeeper's Ring", "=ds=", "100 #alliance#", "" };
+ { 17, 19525, "", "=q3=Lorekeeper's Ring", "=ds=", "100 #alliance#", "" };
+ { 18, 19524, "", "=q3=Lorekeeper's Ring", "=ds=", "300 #alliance#", "" };
+ { 19, 19523, "", "=q3=Lorekeeper's Ring", "=ds=", "300 #alliance#", "" };
+ { 20, 19522, "", "=q3=Lorekeeper's Ring", "=ds=", "1600 #alliance#", "" };
+ { 22, 20439, "", "=q3=Protector's Band", "=ds=", "100 #alliance#", "" };
+ { 23, 19517, "", "=q3=Protector's Band", "=ds=", "100 #alliance#", "" };
+ { 24, 19515, "", "=q3=Protector's Band", "=ds=", "300 #alliance#", "" };
+ { 25, 19516, "", "=q3=Protector's Band", "=ds=", "300 #alliance#", "" };
+ { 26, 19514, "", "=q3=Protector's Band", "=ds=", "1600 #alliance#", "" };
+ { 28, 21566, "", "=q3=Rune of Perfection", "=ds=", "300 #alliance#", "" };
+ { 29, 21565, "", "=q3=Rune of Perfection", "=ds=", "300 #alliance#", "" };
+ };
+ {
+ Name = AL["Weapons"];
+ { 1, 20443, "", "=q3=Sentinel's Blade", "=ds=", "300 #alliance#", "" };
+ { 2, 19549, "", "=q3=Sentinel's Blade", "=ds=", "400 #alliance#", "" };
+ { 3, 19548, "", "=q3=Sentinel's Blade", "=ds=", "500 #alliance#", "" };
+ { 4, 19547, "", "=q3=Sentinel's Blade", "=ds=", "700 #alliance#", "" };
+ { 5, 19546, "", "=q3=Sentinel's Blade", "=ds=", "6000 #alliance#", "" };
+ { 7, 20440, "", "=q3=Protector's Sword", "=ds=", "300 #alliance#", "" };
+ { 8, 19557, "", "=q3=Protector's Sword", "=ds=", "400 #alliance#", "" };
+ { 9, 19556, "", "=q3=Protector's Sword", "=ds=", "500 #alliance#", "" };
+ { 10, 19555, "", "=q3=Protector's Sword", "=ds=", "700 #alliance#", "" };
+ { 11, 19554, "", "=q3=Protector's Sword", "=ds=", "6000 #alliance#", "" };
+ { 16, 20434, "", "=q3=Lorekeeper's Staff", "=ds=", "500 #alliance#", "" };
+ { 17, 19573, "", "=q3=Lorekeeper's Staff", "=ds=", "700 #alliance#", "" };
+ { 18, 19572, "", "=q3=Lorekeeper's Staff", "=ds=", "1000 #alliance#", "" };
+ { 19, 19571, "", "=q3=Lorekeeper's Staff", "=ds=", "5000 #alliance#", "" };
+ { 20, 19570, "", "=q3=Lorekeeper's Staff", "=ds=", "15000 #alliance#", "" };
+ { 22, 20438, "", "=q3=Outrunner's Bow", "=ds=", "300 #alliance#", "" };
+ { 23, 19565, "", "=q3=Outrunner's Bow", "=ds=", "400 #alliance#", "" };
+ { 24, 19564, "", "=q3=Outrunner's Bow", "=ds=", "500 #alliance#", "" };
+ { 25, 19563, "", "=q3=Outrunner's Bow", "=ds=", "700 #alliance#", "" };
+ { 26, 19562, "", "=q3=Outrunner's Bow", "=ds=", "6000 #alliance#", "" };
+ };
+ {
+ Name = BabbleInventory["Armor"];
+ { 1, 19597, "", "=q4=Dryad's Wrist Bindings", "=ds=", "500 #alliance#", "" };
+ { 2, 19596, "", "=q4=Dryad's Wrist Bindings", "=ds=", "700 #alliance#", "" };
+ { 3, 19595, "", "=q4=Dryad's Wrist Bindings", "=ds=", "5000 #alliance#", "" };
+ { 5, 19590, "", "=q4=Forest Stalker's Bracers", "=ds=", "500 #alliance#", "" };
+ { 6, 19589, "", "=q4=Forest Stalker's Bracers", "=ds=", "700 #alliance#", "" };
+ { 7, 19587, "", "=q4=Forest Stalker's Bracers", "=ds=", "5000 #alliance#", "" };
+ { 9, 19584, "", "=q4=Windtalker's Wristguards", "=ds=", "500 #alliance#", "" };
+ { 10, 19583, "", "=q4=Windtalker's Wristguards", "=ds=", "700 #alliance#", "" };
+ { 11, 19582, "", "=q4=Windtalker's Wristguards", "=ds=", "5000 #alliance#", "" };
+ { 13, 19581, "", "=q4=Berserker Bracers", "=ds=", "500 #alliance#", "" };
+ { 14, 19580, "", "=q4=Berserker Bracers", "=ds=", "700 #alliance#", "" };
+ { 15, 19578, "", "=q4=Berserker Bracers", "=ds=", "5000 #alliance#", "" };
+ { 16, 22752, "", "=q4=Sentinel's Silk Leggings", "=ds=", "9000 #alliance#", "" };
+ { 18, 22749, "", "=q4=Sentinel's Leather Pants", "=ds=", "9000 #alliance#", "" };
+ { 19, 22750, "", "=q4=Sentinel's Lizardhide Pants", "=ds=", "9000 #alliance#", "" };
+ { 21, 22748, "", "=q4=Sentinel's Chain Leggings", "=ds=", "9000 #alliance#", "" };
+ { 22, 30497, "", "=q4=Sentinel's Mail Leggings", "=ds=", "9000 #alliance#", "" };
+ { 24, 22753, "", "=q4=Sentinel's Lamellar Legguards", "=ds=", "9000 #alliance#", "" };
+ { 25, 22672, "", "=q4=Sentinel's Plate Legguards", "=ds=", "9000 #alliance#", "" };
+ };
+};
+
+AtlasLoot_Data["WSG_H"] = {
+ Name = BabbleZone["Warsong Gulch"] .. " (Horde)";
+ {
+ Name = AL["Misc. Rewards"];
+ { 1, 19505, "", "=q1=Warsong Battle Tabard", "=ds=", "12000 #faction#", "" };
+ { 2, 17351, "", "=q1=Major Mana Draught", "=ds=", "10 #silver# 2 #faction#", "" };
+ { 3, 17352, "", "=q1=Superior Mana Draught", "=ds=", "5 #silver# 5 #faction#", "" };
+ { 4, 19061, "", "=q1=Warsong Gulch Iron Ration", "=ds=", "15 #silver#", "" };
+ { 5, 19066, "", "=q1=Warsong Gulch Runecloth Bandage", "=ds=", "20 #silver#", "" };
+ { 6, 19068, "", "=q1=Warsong Gulch Silk Bandage", "=ds=", "10 #silver#", "" };
+ };
+ {
+ Name = AL["Accessories"];
+ { 1, 20427, "", "=q3=Battle Healer's Cloak", "=ds=", "100 #horde#", "" };
+ { 2, 19529, "", "=q3=Battle Healer's Cloak", "=ds=", "100 #horde#", "" };
+ { 3, 19528, "", "=q3=Battle Healer's Cloak", "=ds=", "300 #horde#", "" };
+ { 4, 19527, "", "=q3=Battle Healer's Cloak", "=ds=", "300 #horde#", "" };
+ { 5, 19526, "", "=q3=Battle Healer's Cloak", "=ds=", "1600 #horde#", "" };
+ { 7, 20442, "", "=q3=Scout's Medallion", "=ds=", "100 #horde#", "" };
+ { 8, 19537, "", "=q3=Scout's Medallion", "=ds=", "100 #horde#", "" };
+ { 9, 19536, "", "=q3=Scout's Medallion", "=ds=", "300 #horde#", "" };
+ { 10, 19535, "", "=q3=Scout's Medallion", "=ds=", "300 #horde#", "" };
+ { 11, 19534, "", "=q3=Scout's Medallion", "=ds=", "1600 #horde#", "" };
+ { 13, 21568, "", "=q3=Rune of Duty", "=ds=", "300 #horde#", "" };
+ { 14, 21567, "", "=q3=Rune of Duty", "=ds=", "300 #horde#", "" };
+ { 16, 20426, "", "=q3=Advisor's Ring", "=ds=", "100 #horde#", "" };
+ { 17, 19521, "", "=q3=Advisor's Ring", "=ds=", "100 #horde#", "" };
+ { 18, 19520, "", "=q3=Advisor's Ring", "=ds=", "300 #horde#", "" };
+ { 19, 19519, "", "=q3=Advisor's Ring", "=ds=", "300 #horde#", "" };
+ { 20, 19518, "", "=q3=Advisor's Ring", "=ds=", "1600 #horde#", "" };
+ { 22, 20429, "", "=q3=Legionnaire's Band", "=ds=", "100 #horde#", "" };
+ { 23, 19513, "", "=q3=Legionnaire's Band", "=ds=", "100 #horde#", "" };
+ { 24, 19512, "", "=q3=Legionnaire's Band", "=ds=", "300 #horde#", "" };
+ { 25, 19511, "", "=q3=Legionnaire's Band", "=ds=", "300 #horde#", "" };
+ { 26, 19510, "", "=q3=Legionnaire's Band", "=ds=", "1600 #horde#", "" };
+ { 28, 21566, "", "=q3=Rune of Perfection", "=ds=", "300 #horde#", "" };
+ { 29, 21565, "", "=q3=Rune of Perfection", "=ds=", "300 #horde#", "" };
+ };
+ {
+ Name = AL["Weapons"];
+ { 1, 20441, "", "=q3=Scout's Blade", "=ds=", "300 #horde#", "" };
+ { 2, 19545, "", "=q3=Scout's Blade", "=ds=", "400 #horde#", "" };
+ { 3, 19544, "", "=q3=Scout's Blade", "=ds=", "500 #horde#", "" };
+ { 4, 19543, "", "=q3=Scout's Blade", "=ds=", "700 #horde#", "" };
+ { 5, 19542, "", "=q3=Scout's Blade", "=ds=", "6000 #horde#", "" };
+ { 7, 20430, "", "=q3=Legionnaire's Sword", "=ds=", "300 #horde#", "" };
+ { 8, 19553, "", "=q3=Legionnaire's Sword", "=ds=", "400 #horde#", "" };
+ { 9, 19552, "", "=q3=Legionnaire's Sword", "=ds=", "500 #horde#", "" };
+ { 10, 19551, "", "=q3=Legionnaire's Sword", "=ds=", "700 #horde#", "" };
+ { 11, 19550, "", "=q3=Legionnaire's Sword", "=ds=", "6000 #horde#", "" };
+ { 16, 20425, "", "=q3=Advisor's Gnarled Staff", "=ds=", "500 #horde#", "" };
+ { 17, 19569, "", "=q3=Advisor's Gnarled Staff", "=ds=", "700 #horde#", "" };
+ { 18, 19568, "", "=q3=Advisor's Gnarled Staff", "=ds=", "1000 #horde#", "" };
+ { 19, 19567, "", "=q3=Advisor's Gnarled Staff", "=ds=", "5000 #horde#", "" };
+ { 20, 19566, "", "=q3=Advisor's Gnarled Staff", "=ds=", "15000 #horde#", "" };
+ { 22, 20437, "", "=q3=Outrider's Bow", "=ds=", "300 #horde#", "" };
+ { 23, 19561, "", "=q3=Outrider's Bow", "=ds=", "400 #horde#", "" };
+ { 24, 19560, "", "=q3=Outrider's Bow", "=ds=", "500 #horde#", "" };
+ { 25, 19559, "", "=q3=Outrider's Bow", "=ds=", "700 #horde#", "" };
+ { 26, 19558, "", "=q3=Outrider's Bow", "=ds=", "6000 #horde#", "" };
+ };
+ {
+ Name = BabbleInventory["Armor"];
+ { 1, 19597, "", "=q4=Dryad's Wrist Bindings", "=ds=", "500 #horde#", "" };
+ { 2, 19596, "", "=q4=Dryad's Wrist Bindings", "=ds=", "700 #horde#", "" };
+ { 3, 19595, "", "=q4=Dryad's Wrist Bindings", "=ds=", "5000 #horde#", "" };
+ { 5, 19590, "", "=q4=Forest Stalker's Bracers", "=ds=", "500 #horde#", "" };
+ { 6, 19589, "", "=q4=Forest Stalker's Bracers", "=ds=", "700 #horde#", "" };
+ { 7, 19587, "", "=q4=Forest Stalker's Bracers", "=ds=", "5000 #horde#", "" };
+ { 9, 19584, "", "=q4=Windtalker's Wristguards", "=ds=", "500 #horde#", "" };
+ { 10, 19583, "", "=q4=Windtalker's Wristguards", "=ds=", "700 #horde#", "" };
+ { 11, 19582, "", "=q4=Windtalker's Wristguards", "=ds=", "5000 #horde#", "" };
+ { 13, 19581, "", "=q4=Berserker Bracers", "=ds=", "500 #horde#", "" };
+ { 14, 19580, "", "=q4=Berserker Bracers", "=ds=", "700 #horde#", "" };
+ { 15, 19578, "", "=q4=Berserker Bracers", "=ds=", "5000 #horde#", "" };
+ { 16, 22747, "", "=q4=Outrider's Silk Leggings", "=ds=", "9000 #horde#", "" };
+ { 18, 22740, "", "=q4=Outrider's Leather Pants", "=ds=", "9000 #horde#", "" };
+ { 19, 22741, "", "=q4=Outrider's Lizardhide Pants", "=ds=", "9000 #horde#", "" };
+ { 21, 22673, "", "=q4=Outrider's Chain Leggings", "=ds=", "9000 #horde#", "" };
+ { 22, 22676, "", "=q4=Outrider's Mail Leggings", "=ds=", "9000 #horde#", "" };
+ { 24, 30498, "", "=q4=Outrider's Lamellar Legguards", "=ds=", "9000 #horde#", "" };
+ { 25, 22651, "", "=q4=Outrider's Plate Legguards", "=ds=", "9000 #horde#", "" };
+ };
+};
+
+---------------------------------------
+--- PvP Level 60 Rare and Epic Sets ---
+---------------------------------------
+AtlasLoot_Data["PVPDruid"] = {
+ Name = AL["Druid"];
+ {
+ Name = AL["Rare Set"] .. " (Alliance)";
+ { 1, 16424, "", "=q3=Lieutenant Commander's Dragonhide Headguard, =ds=", "9435 #alliance#", "" };
+ { 2, 16423, "", "=q3=Lieutenant Commander's Dragonhide Shoulders, =ds=", "6885 #alliance#", "" };
+ { 3, 16421, "", "=q3=Knight-Captain's Dragonhide Chestpiece, =ds=", "9435 #alliance#", "" };
+ { 4, 16397, "", "=q3=Knight-Lieutenant's Dragonhide Grips, =ds=", "5000 #alliance#", "" };
+ { 5, 16422, "", "=q3=Knight-Captain's Dragonhide Leggings, =ds=", "9435 #alliance#", "" };
+ { 6, 16393, "", "=q3=Knight-Lieutenant's Dragonhide Treads, =ds=", "5000 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Alliance)";
+ { 1, 23308, "", "=q3=Lieutenant Commander's Dragonhide Headguard", "=ds=", "24000 #alliance#", "" };
+ { 2, 23309, "", "=q3=Lieutenant Commander's Dragonhide Shoulders", "=ds=", "14000 #alliance#", "" };
+ { 3, 23294, "", "=q3=Knight-Captain's Dragonhide Chestpiece", "=ds=", "24000 #alliance#", "" };
+ { 4, 23280, "", "=q3=Knight-Lieutenant's Dragonhide Grips", "=ds=", "14000 #alliance#", "" };
+ { 5, 23295, "", "=q3=Knight-Captain's Dragonhide Leggings", "=ds=", "24000 #alliance#", "" };
+ { 6, 23281, "", "=q3=Knight-Lieutenant's Dragonhide Treads", "=ds=", "14000 #alliance#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Alliance)";
+ { 1, 16451, "", "=q4=Field Marshal's Dragonhide Helmet", "=ds=", "68200 #alliance#", "" };
+ { 2, 16449, "", "=q4=Field Marshal's Dragonhide Spaulders", "=ds=", "52200 #alliance#", "" };
+ { 3, 16452, "", "=q4=Field Marshal's Dragonhide Breastplate", "=ds=", "68200 #alliance#", "" };
+ { 4, 16448, "", "=q4=Marshal's Dragonhide Gauntlets", "=ds=", "52200 #alliance#", "" };
+ { 5, 16450, "", "=q4=Marshal's Dragonhide Legguards", "=ds=", "68200 #alliance#", "" };
+ { 6, 16459, "", "=q4=Marshal's Dragonhide Boots", "=ds=", "52200 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Alliance)";
+ { 1, 6116550, "", "=q4=Grand Marshal's Chain Helm, =ds=", "2370 #arena# #horde#", "" };
+ { 2, 6116551, "", "=q4=Grand Marshal's Chain Spaulders, =ds=", "1930 #arena# #horde#", "" };
+ { 3, 6116549, "", "=q4=Grand Marshal's Chain Breastplate, =ds=", "2370 #arena# #horde#", "" };
+ { 4, 6116555, "", "=q4=Grand Marshal's Chain Grips, =ds=", "1430 #arena# #horde#", "" };
+ { 5, 6116552, "", "=q4=Grand Marshal's Chain Legguards, =ds=", "2370 #arena# #horde#", "" };
+ { 6, 6116554, "", "=q4=Grand Marshal's Chain Boots, =ds=", "1430 #arena# #horde#", "" };
+ };
+ {
+ Name = AL["Rare Set"] .. " (Horde)";
+ { 1, 16503, "", "=q3=Champion's Dragonhide Headguard, =ds=", "9435 #horde#", "" };
+ { 2, 16501, "", "=q3=Champion's Dragonhide Shoulders, =ds=", "6885 #horde#", "" };
+ { 3, 16504, "", "=q3=Legionnaire's Dragonhide Chestpiece, =ds=", "9435 #horde#", "" };
+ { 4, 16496, "", "=q3=Blood Guard's Dragonhide Grips, =ds=", "5000 #horde#", "" };
+ { 5, 16502, "", "=q3=Legionnaire's Dragonhide Leggings, =ds=", "9435 #horde#", "" };
+ { 6, 16494, "", "=q3=Blood Guard's Dragonhide Treads, =ds=", "5000 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Horde)";
+ { 1, 23253, "", "=q3=Champion's Dragonhide Headguard", "=ds=", "24000 #horde#", "" };
+ { 2, 23254, "", "=q3=Champion's Dragonhide Shoulders", "=ds=", "14000 #horde#", "" };
+ { 3, 22877, "", "=q3=Legionnaire's Dragonhide Chestpiece", "=ds=", "24000 #horde#", "" };
+ { 4, 22863, "", "=q3=Blood Guard's Dragonhide Grips", "=ds=", "14000 #horde#", "" };
+ { 5, 22878, "", "=q3=Legionnaire's Dragonhide Leggings", "=ds=", "24000 #horde#", "" };
+ { 6, 22852, "", "=q3=Blood Guard's Dragonhide Treads", "=ds=", "14000 #horde#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Horde)";
+ { 1, 16550, "", "=q4=Warlord's Dragonhide Helmet", "=ds=", "68200 #horde#", "" };
+ { 2, 16551, "", "=q4=Warlord's Dragonhide Epaulets", "=ds=", "52200 #horde#", "" };
+ { 3, 16549, "", "=q4=Warlord's Dragonhide Hauberk", "=ds=", "68200 #horde#", "" };
+ { 4, 16555, "", "=q4=General's Dragonhide Gloves", "=ds=", "52200 #horde#", "" };
+ { 5, 16552, "", "=q4=General's Dragonhide Leggings", "=ds=", "68200 #horde#", "" };
+ { 6, 16554, "", "=q4=General's Dragonhide Boots", "=ds=", "52200 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Horde)";
+ { 1, 6116451, "", "=q4=High Warlord's Dragonhide Helmet, =ds=", "2370 #arena# #alliance#", "" };
+ { 2, 6116449, "", "=q4=High Warlord's Dragonhide Epaulets, =ds=", "1930 #arena# #alliance#", "" };
+ { 3, 6116452, "", "=q4=High Warlord's Dragonhide Hauberk, =ds=", "2370 #arena# #alliance#", "" };
+ { 4, 6116448, "", "=q4=High High Warlord's Dragonhide Gloves, =ds=", "1430 #arena# #alliance#", "" };
+ { 5, 6116450, "", "=q4=High High Warlord's Dragonhide Leggings, =ds=", "2370 #arena# #alliance#", "" };
+ { 6, 6116459, "", "=q4=High High Warlord's Dragonhide Boots, =ds=", "1430 #arena# #alliance#", "" };
+ };
+};
+
+
+
+AtlasLoot_Data["PVPHunter"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ {
+ Name = AL["Rare Set"] .. " (Alliance)";
+ { 1, 16428, "", "=q3=Lieutenant Commander's Chain Helm, =ds=", "9435 #alliance#", "" };
+ { 2, 16427, "", "=q3=Lieutenant Commander's Chain Shoulders, =ds=", "6885 #alliance#", "" };
+ { 3, 16425, "", "=q3=Knight-Captain's Chain Hauberk, =ds=", "9435 #alliance#", "" };
+ { 4, 16403, "", "=q3=Knight-Lieutenant's Chain Vices, =ds=", "5000 #alliance#", "" };
+ { 5, 16426, "", "=q3=Knight-Captain's Chain Legguards, =ds=", "9435 #alliance#", "" };
+ { 6, 16401, "", "=q3=Knight-Lieutenant's Chain Greaves, =ds=", "5000 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Alliance)";
+ { 1, 23306, "", "=q3=Lieutenant Commander's Chain Helm", "=ds=", "24000 #alliance#", "" };
+ { 2, 23307, "", "=q3=Lieutenant Commander's Chain Shoulders", "=ds=", "14000 #alliance#", "" };
+ { 3, 23292, "", "=q3=Knight-Captain's Chain Hauberk", "=ds=", "24000 #alliance#", "" };
+ { 4, 23279, "", "=q3=Knight-Lieutenant's Chain Vices", "=ds=", "14000 #alliance#", "" };
+ { 5, 23293, "", "=q3=Knight-Captain's Chain Legguards", "=ds=", "24000 #alliance#", "" };
+ { 6, 23278, "", "=q3=Knight-Lieutenant's Chain Greaves", "=ds=", "14000 #alliance#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Alliance)";
+ { 1, 16465, "", "=q4=Field Marshal's Chain Helm", "=ds=", "68200 #alliance#", "" };
+ { 2, 16468, "", "=q4=Field Marshal's Chain Spaulders", "=ds=", "52200 #alliance#", "" };
+ { 3, 16466, "", "=q4=Field Marshal's Chain Breastplate", "=ds=", "68200 #alliance#", "" };
+ { 4, 16463, "", "=q4=Marshal's Chain Grips", "=ds=", "52200 #alliance#", "" };
+ { 5, 16467, "", "=q4=Marshal's Chain Legguards", "=ds=", "68200 #alliance#", "" };
+ { 6, 16462, "", "=q4=Marshal's Chain Boots", "=ds=", "52200 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Alliance)";
+ { 1, 6116465, "", "=q4=Grand Marshal's Chain Helm, =ds=", "2370 #arena# #alliance#", "" };
+ { 2, 6116468, "", "=q4=Grand Marshal's Chain Spaulders, =ds=", "1930 #arena# #alliance#", "" };
+ { 3, 6116466, "", "=q4=Grand Marshal's Chain Breastplate, =ds=", "2370 #arena# #alliance#", "" };
+ { 4, 6116463, "", "=q4=Grand Marshal's Chain Grips, =ds=", "1430 #arena# #alliance#", "" };
+ { 5, 6116467, "", "=q4=Grand Marshal's Chain Legguards, =ds=", "2370 #arena# #alliance#", "" };
+ { 6, 6116462, "", "=q4=Grand Marshal's Chain Boots, =ds=", "1430 #arena# #alliance#", "" };
+ };
+ {
+ Name = AL["Rare Set"] .. " (Horde)";
+ { 1, 16526, "", "=q3=Champion's Chain Helm, =ds=", "9435 #horde#", "" };
+ { 2, 16528, "", "=q3=Champion's Chain Shoulders, =ds=", "6885 #horde#", "" };
+ { 3, 16525, "", "=q3=Legionnaire's Chain Hauberk, =ds=", "9435 #horde#", "" };
+ { 4, 16530, "", "=q3=Blood Guard's Chain Vices, =ds=", "5000 #horde#", "" };
+ { 5, 16527, "", "=q3=Legionnaire's Chain Legguards, =ds=", "9435 #horde#", "" };
+ { 6, 16531, "", "=q3=Blood Guard's Chain Greaves, =ds=", "5000 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Horde)";
+ { 1, 23251, "", "=q3=Champion's Chain Helm", "=ds=", "24000 #horde#", "" };
+ { 2, 23252, "", "=q3=Champion's Chain Shoulders", "=ds=", "14000 #horde#", "" };
+ { 3, 22874, "", "=q3=Legionnaire's Chain Hauberk", "=ds=", "24000 #horde#", "" };
+ { 4, 22862, "", "=q3=Blood Guard's Chain Vices", "=ds=", "14000 #horde#", "" };
+ { 5, 22875, "", "=q3=Legionnaire's Chain Legguards", "=ds=", "24000 #horde#", "" };
+ { 6, 22843, "", "=q3=Blood Guard's Chain Greaves", "=ds=", "14000 #horde#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Horde)";
+ { 1, 16566, "", "=q4=Warlord's Chain Helmet", "=ds=", "68200 #horde#", "" };
+ { 2, 16568, "", "=q4=Warlord's Chain Shoulders", "=ds=", "52200 #horde#", "" };
+ { 3, 16565, "", "=q4=Warlord's Chain Chestpiece", "=ds=", "68200 #horde#", "" };
+ { 4, 16571, "", "=q4=General's Chain Gloves", "=ds=", "52200 #horde#", "" };
+ { 5, 16567, "", "=q4=General's Chain Legguards", "=ds=", "68200 #horde#", "" };
+ { 6, 16569, "", "=q4=General's Chain Boots", "=ds=", "52200 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Horde)";
+ { 1, 6116566, "", "=q4=High Warlord's Chain Helmet, =ds=", "2370 #arena# #horde#", "" };
+ { 2, 6116568, "", "=q4=High Warlord's Chain Shoulders, =ds=", "1930 #arena# #horde#", "" };
+ { 3, 6116565, "", "=q4=High Warlord's Chain Chestpiece, =ds=", "2370 #arena# #horde#", "" };
+ { 4, 6116571, "", "=q4=High High Warlord's Chain Gloves, =ds=", "1430 #arena# #horde#", "" };
+ { 5, 6116567, "", "=q4=High High Warlord's Chain Legguards, =ds=", "2370 #arena# #horde#", "" };
+ { 6, 6116569, "", "=q4=High High Warlord's Chain Boots, =ds=", "1430 #arena# #horde#", "" };
+ };
+};
+
+AtlasLoot_Data["PVPMage"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ {
+ Name = AL["Rare Set"] .. " (Alliance)";
+ { 1, 16416, "", "=q3=Lieutenant Commander's Silk Cowl, =ds=", "9435 #alliance#", "" };
+ { 2, 16415, "", "=q3=Lieutenant Commander's Silk Mantle, =ds=", "6885 #alliance#", "" };
+ { 3, 16413, "", "=q3=Knight-Captain's Silk Tunic, =ds=", "9435 #alliance#", "" };
+ { 4, 16391, "", "=q3=Knight-Lieutenant's Silk Handwraps, =ds=", "5000 #alliance#", "" };
+ { 5, 16414, "", "=q3=Knight-Captain's Silk Legguards, =ds=", "9435 #alliance#", "" };
+ { 6, 16369, "", "=q3=Knight-Lieutenant's Silk Walkers, =ds=", "5000 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Alliance)";
+ { 1, 23318, "", "=q3=Lieutenant Commander's Silk Cowl", "=ds=", "24000 #alliance#", "" };
+ { 2, 23319, "", "=q3=Lieutenant Commander's Silk Mantle", "=ds=", "14000 #alliance#", "" };
+ { 3, 23305, "", "=q3=Knight-Captain's Silk Tunic", "=ds=", "24000 #alliance#", "" };
+ { 4, 23290, "", "=q3=Knight-Lieutenant's Silk Handwraps", "=ds=", "14000 #alliance#", "" };
+ { 5, 23304, "", "=q3=Knight-Captain's Silk Legguards", "=ds=", "24000 #alliance#", "" };
+ { 6, 23291, "", "=q3=Knight-Lieutenant's Silk Walkers", "=ds=", "14000 #alliance#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Alliance)";
+ { 1, 16441, "", "=q4=Field Marshal's Coronet", "=ds=", "68200 #alliance#", "" };
+ { 2, 16444, "", "=q4=Field Marshal's Silk Spaulders", "=ds=", "52200 #alliance#", "" };
+ { 3, 16443, "", "=q4=Field Marshal's Silk Vestments", "=ds=", "68200 #alliance#", "" };
+ { 4, 16440, "", "=q4=Marshal's Silk Gloves", "=ds=", "52200 #alliance#", "" };
+ { 5, 16442, "", "=q4=Marshal's Silk Leggings", "=ds=", "68200 #alliance#", "" };
+ { 6, 16437, "", "=q4=Marshal's Silk Footwraps", "=ds=", "52200 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Alliance)";
+ { 1, 6116441, "", "=q4=Grand Marshal's Coronet, =ds=", "2370 #arena# #alliance#", "" };
+ { 2, 6116444, "", "=q4=Grand Marshal's Silk Spaulders, =ds=", "1930 #arena# #alliance#", "" };
+ { 3, 6116443, "", "=q4=Grand Marshal's Silk Vestments, =ds=", "2370 #arena# #alliance#", "" };
+ { 4, 6116440, "", "=q4=Grand Marshal's Silk Gloves, =ds=", "1430 #arena# #alliance#", "" };
+ { 5, 6116442, "", "=q4=Grand Marshal's Silk Leggings, =ds=", "2370 #arena# #alliance#", "" };
+ { 6, 6116437, "", "=q4=Grand Marshal's Silk Footwraps, =ds=", "1430 #arena# #alliance#", "" };
+ };
+ {
+ Name = AL["Rare Set"] .. " (Horde)";
+ { 1, 16489, "", "=q3=Champion's Silk Cowl, =ds=", "9435 #horde#", "" };
+ { 2, 16492, "", "=q3=Champion's Silk Mantle, =ds=", "6885 #horde#", "" };
+ { 3, 16491, "", "=q3=Legionnaire's Silk Tunic, =ds=", "9435 #horde#", "" };
+ { 4, 16487, "", "=q3=Blood Guard's Silk Handwraps, =ds=", "5000 #horde#", "" };
+ { 5, 16490, "", "=q3=Legionnaire's Silk Legguards, =ds=", "9435 #horde#", "" };
+ { 6, 16485, "", "=q3=Blood Guard's Silk Walkers, =ds=", "5000 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Horde)";
+ { 1, 23263, "", "=q3=Champion's Silk Cowl", "=ds=", "24000 #horde#", "" };
+ { 2, 23264, "", "=q3=Champion's Silk Mantle", "=ds=", "14000 #horde#", "" };
+ { 3, 22886, "", "=q3=Legionnaire's Silk Tunic", "=ds=", "24000 #horde#", "" };
+ { 4, 22870, "", "=q3=Blood Guard's Silk Handwraps", "=ds=", "14000 #horde#", "" };
+ { 5, 22883, "", "=q3=Legionnaire's Silk Legguards", "=ds=", "24000 #horde#", "" };
+ { 6, 22860, "", "=q3=Blood Guard's Silk Walkers", "=ds=", "14000 #horde#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Horde)";
+ { 1, 16533, "", "=q4=Warlord's Silk Cowl", "=ds=", "68200 #horde#", "" };
+ { 2, 16536, "", "=q4=Warlord's Silk Amice", "=ds=", "52200 #horde#", "" };
+ { 3, 16535, "", "=q4=Warlord's Silk Raiment", "=ds=", "68200 #horde#", "" };
+ { 4, 16540, "", "=q4=General's Silk Handguards", "=ds=", "52200 #horde#", "" };
+ { 5, 16534, "", "=q4=General's Silk Trousers", "=ds=", "68200 #horde#", "" };
+ { 6, 16539, "", "=q4=General's Silk Boots", "=ds=", "52200 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Horde)";
+ { 1, 6116533, "", "=q4=High Warlord's Silk Cowl, =ds=", "2370 #arena# #horde#", "" };
+ { 2, 6116536, "", "=q4=High Warlord's Silk Amice, =ds=", "1930 #arena# #horde#", "" };
+ { 3, 6116535, "", "=q4=High Warlord's Silk Raiment, =ds=", "2370 #arena# #horde#", "" };
+ { 4, 6116540, "", "=q4=High High Warlord's Silk Handguards, =ds=", "1430 #arena# #horde#", "" };
+ { 5, 6116534, "", "=q4=High High Warlord's Silk Trousers, =ds=", "2370 #arena# #horde#", "" };
+ { 6, 6116539, "", "=q4=High High Warlord's Silk Boots, =ds=", "1430 #arena# #horde#", "" };
+ };
+};
+
+AtlasLoot_Data["PVPPaladin"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
+ {
+ Name = AL["Rare Set"] .. " (Alliance)";
+ { 1, 16434, "", "=q3=Lieutenant Commander's Lamellar Headguard, =ds=", "9435 #alliance#", "" };
+ { 2, 16436, "", "=q3=Lieutenant Commander's Lamellar Shoulders, =ds=", "6885 #alliance#", "" };
+ { 3, 16433, "", "=q3=Knight-Captain's Lamellar Breastplate, =ds=", "9435 #alliance#", "" };
+ { 4, 16410, "", "=q3=Knight-Lieutenant's Lamellar Gauntlets, =ds=", "5000 #alliance#", "" };
+ { 5, 16435, "", "=q3=Knight-Captain's Lamellar Leggings, =ds=", "9435 #alliance#", "" };
+ { 6, 16409, "", "=q3=Knight-Lieutenant's Lamellar Sabatons, =ds=", "5000 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Alliance)";
+ { 1, 23276, "", "=q3=Lieutenant Commander's Lamellar Headguard", "=ds=", "24000 #alliance#", "" };
+ { 2, 23277, "", "=q3=Lieutenant Commander's Lamellar Shoulders", "=ds=", "14000 #alliance#", "" };
+ { 3, 23272, "", "=q3=Knight-Captain's Lamellar Breastplate", "=ds=", "24000 #alliance#", "" };
+ { 4, 23274, "", "=q3=Knight-Lieutenant's Lamellar Gauntlets", "=ds=", "14000 #alliance#", "" };
+ { 5, 23273, "", "=q3=Knight-Captain's Lamellar Leggings", "=ds=", "24000 #alliance#", "" };
+ { 6, 23275, "", "=q3=Knight-Lieutenant's Lamellar Sabatons", "=ds=", "14000 #alliance#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Alliance)";
+ { 1, 16474, "", "=q4=Field Marshal's Lamellar Faceguard", "=ds=", "68200 #alliance#", "" };
+ { 2, 16476, "", "=q4=Field Marshal's Lamellar Pauldrons", "=ds=", "52200 #alliance#", "" };
+ { 3, 16473, "", "=q4=Field Marshal's Lamellar Chestplate", "=ds=", "68200 #alliance#", "" };
+ { 4, 16471, "", "=q4=Marshal's Lamellar Gloves", "=ds=", "52200 #alliance#", "" };
+ { 5, 16475, "", "=q4=Marshal's Lamellar Legplates", "=ds=", "68200 #alliance#", "" };
+ { 6, 16472, "", "=q4=Marshal's Lamellar Boots", "=ds=", "52200 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Alliance)";
+ { 1, 6116474, "", "=q4=Grand Marshal's Lamellar Faceguard, =ds=", "2370 #arena# #alliance#", "" };
+ { 2, 6116476, "", "=q4=Grand Marshal's Lamellar Pauldrons, =ds=", "1930 #arena# #alliance#", "" };
+ { 3, 6116473, "", "=q4=Grand Marshal's Lamellar Chestplate, =ds=", "2370 #arena# #alliance#", "" };
+ { 4, 6116471, "", "=q4=Grand Marshal's Lamellar Gloves, =ds=", "1430 #arena# #alliance#", "" };
+ { 5, 6116475, "", "=q4=Grand Marshal's Lamellar Legplates, =ds=", "2370 #arena# #alliance#", "" };
+ { 6, 6116472, "", "=q4=Grand Marshal's Lamellar Boots, =ds=", "1430 #arena# #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Horde)";
+ { 1, 29604, "", "=q3=Champion's Lamellar Headguard", "=ds=", "24000 #horde#", "" };
+ { 2, 29605, "", "=q3=Champion's Lamellar Shoulders", "=ds=", "14000 #horde#", "" };
+ { 3, 29602, "", "=q3=Legionnaire's Lamellar Breastplate", "=ds=", "24000 #horde#", "" };
+ { 4, 29600, "", "=q3=Blood Guard's Lamellar Gauntlets", "=ds=", "14000 #horde#", "" };
+ { 5, 29603, "", "=q3=Legionnaire's Lamellar Leggings", "=ds=", "24000 #horde#", "" };
+ { 6, 29601, "", "=q3=Blood Guard's Lamellar Sabatons", "=ds=", "14000 #horde#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Horde)";
+ { 1, 29616, "", "=q4=Warlord's Lamellar Faceguard", "=ds=", "68200 #horde#", "" };
+ { 2, 29617, "", "=q4=Warlord's Lamellar Pauldrons", "=ds=", "52200 #horde#", "" };
+ { 3, 29615, "", "=q4=Warlord's Lamellar Chestplate", "=ds=", "68200 #horde#", "" };
+ { 4, 29613, "", "=q4=General's Lamellar Gloves", "=ds=", "52200 #horde#", "" };
+ { 5, 29614, "", "=q4=General's Lamellar Legplates", "=ds=", "68200 #horde#", "" };
+ { 6, 29612, "", "=q4=General's Lamellar Boots", "=ds=", "52200 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Horde)";
+ { 1, 6129616, "", "=q4=High Warlord's Lamellar Faceguard, =ds=", "2370 #arena# #horde#", "" };
+ { 2, 6129617, "", "=q4=High Warlord's Lamellar Pauldrons, =ds=", "1930 #arena# #horde#", "" };
+ { 3, 6129615, "", "=q4=High Warlord's Lamellar Chestplate, =ds=", "2370 #arena# #horde#", "" };
+ { 4, 6129613, "", "=q4=High High Warlord's Lamellar Gloves, =ds=", "1430 #arena# #horde#", "" };
+ { 5, 6129614, "", "=q4=High High Warlord's Lamellar Legplates, =ds=", "2370 #arena# #horde#", "" };
+ { 6, 6129612, "", "=q4=High High Warlord's Lamellar Boots, =ds=", "1430 #arena# #horde#", "" };
+ };
+};
+
+AtlasLoot_Data["PVPPriest"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
+ {
+ Name = AL["Rare Set"] .. " (Alliance)";
+ { 1, 17598, "", "=q3=Lieutenant Commander's Satin Hood, =ds=", "9435 #alliance#", "" };
+ { 2, 17601, "", "=q3=Lieutenant Commander's Satin Mantle, =ds=", "6885 #alliance#", "" };
+ { 3, 17600, "", "=q3=Knight-Captain's Satin Tunic, =ds=", "9435 #alliance#", "" };
+ { 4, 17596, "", "=q3=Knight-Lieutenant's Satin Handwraps, =ds=", "5000 #alliance#", "" };
+ { 5, 17599, "", "=q3=Knight-Captain's Satin Legguards, =ds=", "9435 #alliance#", "" };
+ { 6, 17594, "", "=q3=Knight-Lieutenant's Satin Walkers, =ds=", "5000 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Alliance)";
+ { 1, 23316, "", "=q3=Lieutenant Commander's Satin Hood", "=ds=", "24000 #alliance#", "" };
+ { 2, 23317, "", "=q3=Lieutenant Commander's Satin Mantle", "=ds=", "14000 #alliance#", "" };
+ { 3, 23303, "", "=q3=Knight-Captain's Satin Tunic", "=ds=", "24000 #alliance#", "" };
+ { 4, 23288, "", "=q3=Knight-Lieutenant's Satin Handwraps", "=ds=", "14000 #alliance#", "" };
+ { 5, 23302, "", "=q3=Knight-Captain's Satin Legguards", "=ds=", "24000 #alliance#", "" };
+ { 6, 23289, "", "=q3=Knight-Lieutenant's Satin Walkers", "=ds=", "14000 #alliance#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Alliance)";
+ { 1, 17602, "", "=q4=Field Marshal's Headdress", "=ds=", "68200 #alliance#", "" };
+ { 2, 17604, "", "=q4=Field Marshal's Satin Mantle", "=ds=", "52200 #alliance#", "" };
+ { 3, 17605, "", "=q4=Field Marshal's Satin Vestments", "=ds=", "68200 #alliance#", "" };
+ { 4, 17608, "", "=q4=Marshal's Satin Gloves", "=ds=", "52200 #alliance#", "" };
+ { 5, 17603, "", "=q4=Marshal's Satin Pants", "=ds=", "68200 #alliance#", "" };
+ { 6, 17607, "", "=q4=Marshal's Satin Sandals", "=ds=", "52200 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Alliance)";
+ { 1, 6117602, "", "=q4=Grand Marshal's Headdress, =ds=", "2370 #arena# #alliance#", "" };
+ { 2, 6117604, "", "=q4=Grand Marshal's Satin Mantle, =ds=", "1930 #arena# #alliance#", "" };
+ { 3, 6117605, "", "=q4=Grand Marshal's Satin Vestments, =ds=", "2370 #arena# #alliance#", "" };
+ { 4, 6117608, "", "=q4=Grand Marshal's Satin Gloves, =ds=", "1430 #arena# #alliance#", "" };
+ { 5, 6117603, "", "=q4=Grand Marshal's Satin Pants, =ds=", "2370 #arena# #alliance#", "" };
+ { 6, 6117607, "", "=q4=Grand Marshal's Satin Sandals, =ds=", "1430 #arena# #alliance#", "" };
+ };
+ {
+ Name = AL["Rare Set"] .. " (Horde)";
+ { 1, 16489, "", "=q3=Champion's Satin Hood, =ds=", "9435 #horde#", "" };
+ { 2, 16492, "", "=q3=Champion's Satin Mantle, =ds=", "6885 #horde#", "" };
+ { 3, 16491, "", "=q3=Legionnaire's Satin Tunic, =ds=", "9435 #horde#", "" };
+ { 4, 16487, "", "=q3=Blood Guard's Satin Handwraps, =ds=", "5000 #horde#", "" };
+ { 5, 16490, "", "=q3=Legionnaire's Satin Legguards, =ds=", "9435 #horde#", "" };
+ { 6, 16485, "", "=q3=Blood Guard's Satin Walkers, =ds=", "5000 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Horde)";
+ { 1, 23261, "", "=q3=Champion's Satin Hood", "=ds=", "24000 #horde#", "" };
+ { 2, 23262, "", "=q3=Champion's Satin Mantle", "=ds=", "14000 #horde#", "" };
+ { 3, 22885, "", "=q3=Legionnaire's Satin Tunic", "=ds=", "24000 #horde#", "" };
+ { 4, 22869, "", "=q3=Blood Guard's Satin Handwraps", "=ds=", "14000 #horde#", "" };
+ { 5, 22882, "", "=q3=Legionnaire's Satin Legguards", "=ds=", "24000 #horde#", "" };
+ { 6, 22859, "", "=q3=Blood Guard's Satin Walkers", "=ds=", "14000 #horde#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Horde)";
+ { 1, 17623, "", "=q4=Warlord's Satin Cowl", "=ds=", "68200 #horde#", "" };
+ { 2, 17622, "", "=q4=Warlord's Satin Mantle", "=ds=", "52200 #horde#", "" };
+ { 3, 17624, "", "=q4=Warlord's Satin Robes", "=ds=", "68200 #horde#", "" };
+ { 4, 17620, "", "=q4=General's Satin Gloves", "=ds=", "52200 #horde#", "" };
+ { 5, 17625, "", "=q4=General's Satin Leggings", "=ds=", "68200 #horde#", "" };
+ { 6, 17618, "", "=q4=General's Satin Boots", "=ds=", "52200 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Horde)";
+ { 1, 6117623, "", "=q4=High Warlord's Satin Cowl, =ds=", "2370 #arena# #horde#", "" };
+ { 2, 6117622, "", "=q4=High Warlord's Satin Mantle, =ds=", "1930 #arena# #horde#", "" };
+ { 3, 6117624, "", "=q4=High Warlord's Satin Robes, =ds=", "2370 #arena# #horde#", "" };
+ { 4, 6117620, "", "=q4=High High Warlord's Satin Gloves, =ds=", "1430 #arena# #horde#", "" };
+ { 5, 6117625, "", "=q4=High High Warlord's Satin Leggings, =ds=", "2370 #arena# #horde#", "" };
+ { 6, 6117618, "", "=q4=High High Warlord's Satin Boots, =ds=", "1430 #arena# #horde#", "" };
+ };
+};
+
+
+AtlasLoot_Data["PVPRogue"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ {
+ Name = AL["Rare Set"] .. " (Alliance)";
+ { 1, 16418, "", "=q3=Lieutenant Commander's Leather Helm, =ds=", "9435 #alliance#", "" };
+ { 2, 16420, "", "=q3=Lieutenant Commander's Leather Shoulders, =ds=", "6885 #alliance#", "" };
+ { 3, 16417, "", "=q3=Knight-Captain's Leather Chestpiece, =ds=", "9435 #alliance#", "" };
+ { 4, 16396, "", "=q3=Knight-Lieutenant's Leather Grips, =ds=", "5000 #alliance#", "" };
+ { 5, 16419, "", "=q3=Knight-Captain's Leather Legguards, =ds=", "9435 #alliance#", "" };
+ { 6, 16392, "", "=q3=Knight-Lieutenant's Leather Walkers, =ds=", "5000 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Alliance)";
+ { 1, 23312, "", "=q3=Lieutenant Commander's Leather Helm", "=ds=", "24000 #alliance#", "" };
+ { 2, 23313, "", "=q3=Lieutenant Commander's Leather Shoulders", "=ds=", "14000 #alliance#", "" };
+ { 3, 23298, "", "=q3=Knight-Captain's Leather Chestpiece", "=ds=", "24000 #alliance#", "" };
+ { 4, 23284, "", "=q3=Knight-Lieutenant's Leather Grips", "=ds=", "14000 #alliance#", "" };
+ { 5, 23299, "", "=q3=Knight-Captain's Leather Legguards", "=ds=", "24000 #alliance#", "" };
+ { 6, 23285, "", "=q3=Knight-Lieutenant's Leather Walkers", "=ds=", "14000 #alliance#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Alliance)";
+ { 1, 16455, "", "=q4=Field Marshal's Leather Mask", "=ds=", "68200 #alliance#", "" };
+ { 2, 16457, "", "=q4=Field Marshal's Leather Epaulets", "=ds=", "52200 #alliance#", "" };
+ { 3, 16453, "", "=q4=Field Marshal's Leather Chestpiece", "=ds=", "68200 #alliance#", "" };
+ { 4, 16454, "", "=q4=Marshal's Leather Handgrips", "=ds=", "52200 #alliance#", "" };
+ { 5, 16456, "", "=q4=Marshal's Leather Leggings", "=ds=", "68200 #alliance#", "" };
+ { 6, 16446, "", "=q4=Marshal's Leather Footguards", "=ds=", "52200 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Alliance)";
+ { 1, 6116455, "", "=q4=Grand Marshal's Leather Mask, =ds=", "2370 #arena# #alliance#", "" };
+ { 2, 6116457, "", "=q4=Grand Marshal's Leather Epaulets, =ds=", "1930 #arena# #alliance#", "" };
+ { 3, 6116453, "", "=q4=Grand Marshal's Leather Chestpiece, =ds=", "2370 #arena# #alliance#", "" };
+ { 4, 6116454, "", "=q4=Grand Marshal's Leather Handgrips, =ds=", "1430 #arena# #alliance#", "" };
+ { 5, 6116456, "", "=q4=Grand Marshal's Leather Leggings, =ds=", "2370 #arena# #alliance#", "" };
+ { 6, 6116446, "", "=q4=Grand Marshal's Leather Footguards, =ds=", "1430 #arena# #alliance#", "" };
+ };
+ {
+ Name = AL["Rare Set"] .. " (Horde)";
+ { 1, 16506, "", "=q3=Champion's Leather Helm, =ds=", "9435 #horde#", "" };
+ { 2, 16507, "", "=q3=Champion's Leather Shoulders, =ds=", "6885 #horde#", "" };
+ { 3, 16505, "", "=q3=Legionnaire's Leather Chestpiece, =ds=", "9435 #horde#", "" };
+ { 4, 16499, "", "=q3=Blood Guard's Leather Grips, =ds=", "5000 #horde#", "" };
+ { 5, 16508, "", "=q3=Legionnaire's Leather Legguards, =ds=", "9435 #horde#", "" };
+ { 6, 16498, "", "=q3=Blood Guard's Leather Walkers, =ds=", "5000 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Horde)";
+ { 1, 23257, "", "=q3=Champion's Leather Helm", "=ds=", "24000 #horde#", "" };
+ { 2, 23258, "", "=q3=Champion's Leather Shoulders", "=ds=", "14000 #horde#", "" };
+ { 3, 22879, "", "=q3=Legionnaire's Leather Chestpiece", "=ds=", "24000 #horde#", "" };
+ { 4, 22864, "", "=q3=Blood Guard's Leather Grips", "=ds=", "14000 #horde#", "" };
+ { 5, 22880, "", "=q3=Legionnaire's Leather Legguards", "=ds=", "24000 #horde#", "" };
+ { 6, 22856, "", "=q3=Blood Guard's Leather Walkers", "=ds=", "14000 #horde#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Horde)";
+ { 1, 16561, "", "=q4=Warlord's Leather Helm", "=ds=", "68200 #horde#", "" };
+ { 2, 16562, "", "=q4=Warlord's Leather Spaulders", "=ds=", "52200 #horde#", "" };
+ { 3, 16563, "", "=q4=Warlord's Leather Breastplate", "=ds=", "68200 #horde#", "" };
+ { 4, 16560, "", "=q4=General's Leather Mitts", "=ds=", "52200 #horde#", "" };
+ { 5, 16564, "", "=q4=General's Leather Legguards", "=ds=", "68200 #horde#", "" };
+ { 6, 16558, "", "=q4=General's Leather Treads", "=ds=", "52200 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Horde)";
+ { 1, 6116561, "", "=q4=High Warlord's Leather Helm, =ds=", "2370 #arena# #horde#", "" };
+ { 2, 6116562, "", "=q4=High Warlord's Leather Spaulders, =ds=", "1930 #arena# #horde#", "" };
+ { 3, 6116563, "", "=q4=High Warlord's Leather Breastplate, =ds=", "2370 #arena# #horde#", "" };
+ { 4, 6116560, "", "=q4=High High Warlord's Leather Mitts, =ds=", "1430 #arena# #horde#", "" };
+ { 5, 6116564, "", "=q4=High High Warlord's Leather Legguards, =ds=", "2370 #arena# #horde#", "" };
+ { 6, 6116558, "", "=q4=High High Warlord's Leather Treads, =ds=", "1430 #arena# #horde#", "" };
+ };
+};
+
+AtlasLoot_Data["PVPShaman"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
+ {
+ Name = AL["Superior Rare Set"] .. " (Alliance)";
+ { 1, 29598, "", "=q3=Lieutenant Commander's Mail Headguard", "=ds=", "24000 #alliance#", "" };
+ { 2, 29599, "", "=q3=Lieutenant Commander's Mail Pauldrons", "=ds=", "14000 #alliance#", "" };
+ { 3, 29596, "", "=q3=Knight-Captain's Mail Hauberk", "=ds=", "24000 #alliance#", "" };
+ { 4, 29595, "", "=q3=Knight-Lieutenant's Mail Vices", "=ds=", "14000 #alliance#", "" };
+ { 5, 29597, "", "=q3=Knight-Captain's Mail Legguards", "=ds=", "24000 #alliance#", "" };
+ { 6, 29594, "", "=q3=Knight-Lieutenant's Mail Greaves", "=ds=", "14000 #alliance#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Alliance)";
+ { 1, 29610, "", "=q4=Field Marshal's Mail Helm", "=ds=", "68200 #alliance#", "" };
+ { 2, 29611, "", "=q4=Field Marshal's Mail Spaulders", "=ds=", "52200 #alliance#", "" };
+ { 3, 29609, "", "=q4=Field Marshal's Mail Armor", "=ds=", "68200 #alliance#", "" };
+ { 4, 29607, "", "=q4=Marshal's Mail Gauntlets", "=ds=", "52200 #alliance#", "" };
+ { 5, 29608, "", "=q4=Marshal's Mail Leggings", "=ds=", "68200 #alliance#", "" };
+ { 6, 29606, "", "=q4=Marshal's Mail Boots", "=ds=", "52200 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Alliance)";
+ { 1, 6129610, "", "=q4=Grand Marshal's Mail Helm, =ds=", "2370 #arena# #alliance#", "" };
+ { 2, 6129611, "", "=q4=Grand Marshal's Mail Spaulders, =ds=", "1930 #arena# #alliance#", "" };
+ { 3, 6129609, "", "=q4=Grand Marshal's Mail Armor, =ds=", "2370 #arena# #alliance#", "" };
+ { 4, 6129607, "", "=q4=Grand Marshal's Mail Gauntlets, =ds=", "1430 #arena# #alliance#", "" };
+ { 5, 6129608, "", "=q4=Grand Marshal's Mail Leggings, =ds=", "2370 #arena# #alliance#", "" };
+ { 6, 6129606, "", "=q4=Grand Marshal's Mail Boots, =ds=", "1430 #arena# #alliance#", "" };
+ };
+ {
+ Name = AL["Rare Set"] .. " (Horde)";
+ { 1, 16521, "", "=q3=Champion's Mail Headguard, =ds=", "9435 #horde#", "" };
+ { 2, 16524, "", "=q3=Champion's Mail Pauldrons, =ds=", "6885 #horde#", "" };
+ { 3, 16522, "", "=q3=Legionnaire's Mail Hauberk, =ds=", "9435 #horde#", "" };
+ { 4, 16519, "", "=q3=Blood Guard's Mail Vices, =ds=", "5000 #horde#", "" };
+ { 5, 16523, "", "=q3=Legionnaire's Mail Legguards, =ds=", "9435 #horde#", "" };
+ { 6, 16518, "", "=q3=Blood Guard's Mail Greaves, =ds=", "5000 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Horde)";
+ { 1, 23259, "", "=q3=Champion's Mail Headguard", "=ds=", "24000 #horde#", "" };
+ { 2, 23260, "", "=q3=Champion's Mail Pauldrons", "=ds=", "14000 #horde#", "" };
+ { 3, 22876, "", "=q3=Legionnaire's Mail Hauberk", "=ds=", "24000 #horde#", "" };
+ { 4, 22867, "", "=q3=Blood Guard's Mail Vices", "=ds=", "14000 #horde#", "" };
+ { 5, 22887, "", "=q3=Legionnaire's Mail Legguards", "=ds=", "24000 #horde#", "" };
+ { 6, 22857, "", "=q3=Blood Guard's Mail Greaves", "=ds=", "14000 #horde#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Horde)";
+ { 1, 16578, "", "=q4=Warlord's Mail Helm", "=ds=", "68200 #horde#", "" };
+ { 2, 16580, "", "=q4=Warlord's Mail Spaulders", "=ds=", "52200 #horde#", "" };
+ { 3, 16577, "", "=q4=Warlord's Mail Armor", "=ds=", "68200 #horde#", "" };
+ { 4, 16574, "", "=q4=General's Mail Gauntlets", "=ds=", "52200 #horde#", "" };
+ { 5, 16579, "", "=q4=General's Mail Leggings", "=ds=", "68200 #horde#", "" };
+ { 6, 16573, "", "=q4=General's Mail Boots", "=ds=", "52200 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Horde)";
+ { 1, 6116578, "", "=q4=High Warlord's Mail Helm, =ds=", "2370 #arena# #horde#", "" };
+ { 2, 6116580, "", "=q4=High Warlord's Mail Spaulders, =ds=", "1930 #arena# #horde#", "" };
+ { 3, 6116577, "", "=q4=High Warlord's Mail Armor, =ds=", "2370 #arena# #horde#", "" };
+ { 4, 6116574, "", "=q4=High High Warlord's Mail Gauntlets, =ds=", "1430 #arena# #horde#", "" };
+ { 5, 6116579, "", "=q4=High High Warlord's Mail Leggings, =ds=", "2370 #arena# #horde#", "" };
+ { 6, 6116573, "", "=q4=High High Warlord's Mail Boots, =ds=", "1430 #arena# #horde#", "" };
+ };
+};
+
+AtlasLoot_Data["PVPWarlock"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ {
+ Name = AL["Rare Set"] .. " (Alliance)";
+ { 1, 17566, "", "=q3=Lieutenant Commander's Dreadweave Cowl, =ds=", "9435 #alliance#", "" };
+ { 2, 17569, "", "=q3=Lieutenant Commander's Dreadweave Spaulders, =ds=", "6885 #alliance#", "" };
+ { 3, 17568, "", "=q3=Knight-Captain's Dreadweave Tunic, =ds=", "9435 #alliance#", "" };
+ { 4, 17564, "", "=q3=Knight-Lieutenant's Dreadweave Handwraps, =ds=", "5000 #alliance#", "" };
+ { 5, 17567, "", "=q3=Knight-Captain's Dreadweave Legguards, =ds=", "9435 #alliance#", "" };
+ { 6, 17562, "", "=q3=Knight-Lieutenant's Dreadweave Walkers, =ds=", "5000 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Alliance)";
+ { 1, 23310, "", "=q3=Lieutenant Commander's Dreadweave Cowl", "=ds=", "24000 #alliance#", "" };
+ { 2, 23311, "", "=q3=Lieutenant Commander's Dreadweave Spaulders", "=ds=", "14000 #alliance#", "" };
+ { 3, 23297, "", "=q3=Knight-Captain's Dreadweave Tunic", "=ds=", "24000 #alliance#", "" };
+ { 4, 23282, "", "=q3=Knight-Lieutenant's Dreadweave Handwraps", "=ds=", "14000 #alliance#", "" };
+ { 5, 23296, "", "=q3=Knight-Captain's Dreadweave Legguards", "=ds=", "24000 #alliance#", "" };
+ { 6, 23283, "", "=q3=Knight-Lieutenant's Dreadweave Walkers", "=ds=", "14000 #alliance#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Alliance)";
+ { 1, 6117578, "", "=q4=Grand Marshal's Coronal, =ds=", "2370 #arena# #alliance#", "" };
+ { 2, 6117580, "", "=q4=Grand Marshal's Dreadweave Shoulders, =ds=", "1930 #arena# #alliance#", "" };
+ { 3, 6117581, "", "=q4=Grand Marshal's Dreadweave Robe, =ds=", "2370 #arena# #alliance#", "" };
+ { 4, 6117584, "", "=q4=Grand Marshal's Dreadweave Gloves, =ds=", "1430 #arena# #alliance#", "" };
+ { 5, 6117579, "", "=q4=Grand Marshal's Dreadweave Leggings, =ds=", "2370 #arena# #alliance#", "" };
+ { 6, 6117583, "", "=q4=Grand Marshal's Dreadweave Boots, =ds=", "1430 #arena# #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Alliance)";
+ { 1, 17578, "", "=q4=Field Marshal's Coronal", "=ds=", "68200 #alliance#", "" };
+ { 2, 17580, "", "=q4=Field Marshal's Dreadweave Shoulders", "=ds=", "52200 #alliance#", "" };
+ { 3, 17581, "", "=q4=Field Marshal's Dreadweave Robe", "=ds=", "68200 #alliance#", "" };
+ { 4, 17584, "", "=q4=Marshal's Dreadweave Gloves", "=ds=", "52200 #alliance#", "" };
+ { 5, 17579, "", "=q4=Marshal's Dreadweave Leggings", "=ds=", "68200 #alliance#", "" };
+ { 6, 17583, "", "=q4=Marshal's Dreadweave Boots", "=ds=", "52200 #alliance#", "" };
+ };
+ {
+ Name = AL["Rare Set"] .. " (Horde)";
+ { 1, 17570, "", "=q3=Champion's Dreadweave Cowl, =ds=", "9435 #horde#", "" };
+ { 2, 17573, "", "=q3=Champion's Dreadweave Spaulders, =ds=", "6885 #horde#", "" };
+ { 3, 17572, "", "=q3=Legionnaire's Dreadweave Tunic, =ds=", "9435 #horde#", "" };
+ { 4, 17577, "", "=q3=Blood Guard's Dreadweave Handwraps, =ds=", "5000 #horde#", "" };
+ { 5, 17571, "", "=q3=Legionnaire's Dreadweave Legguards, =ds=", "9435 #horde#", "" };
+ { 6, 17576, "", "=q3=Blood Guard's Dreadweave Walkers, =ds=", "5000 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Horde)";
+ { 1, 23255, "", "=q3=Champion's Dreadweave Cowl", "=ds=", "24000 #horde#", "" };
+ { 2, 23256, "", "=q3=Champion's Dreadweave Spaulders", "=ds=", "14000 #horde#", "" };
+ { 3, 22884, "", "=q3=Legionnaire's Dreadweave Tunic", "=ds=", "24000 #horde#", "" };
+ { 4, 22865, "", "=q3=Blood Guard's Dreadweave Handwraps", "=ds=", "14000 #horde#", "" };
+ { 5, 22881, "", "=q3=Legionnaire's Dreadweave Legguards", "=ds=", "24000 #horde#", "" };
+ { 6, 22855, "", "=q3=Blood Guard's Dreadweave Walkers", "=ds=", "14000 #horde#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Horde)";
+ { 1, 17591, "", "=q4=Warlord's Dreadweave Hood", "=ds=", "68200 #horde#", "" };
+ { 2, 17590, "", "=q4=Warlord's Dreadweave Mantle", "=ds=", "52200 #horde#", "" };
+ { 3, 17592, "", "=q4=Warlord's Dreadweave Robe", "=ds=", "68200 #horde#", "" };
+ { 4, 17588, "", "=q4=General's Dreadweave Gloves", "=ds=", "52200 #horde#", "" };
+ { 5, 17593, "", "=q4=General's Dreadweave Pants", "=ds=", "68200 #horde#", "" };
+ { 6, 17586, "", "=q4=General's Dreadweave Boots", "=ds=", "52200 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Horde)";
+ { 1, 6117591, "", "=q4=High Warlord's Dreadweave Hood, =ds=", "2370 #arena# #horde#", "" };
+ { 2, 6117590, "", "=q4=High Warlord's Dreadweave Mantle, =ds=", "1930 #arena# #horde#", "" };
+ { 3, 6117592, "", "=q4=High Warlord's Dreadweave Robe, =ds=", "2370 #arena# #horde#", "" };
+ { 4, 6117588, "", "=q4=High High Warlord's Dreadweave Gloves, =ds=", "1430 #arena# #horde#", "" };
+ { 5, 6117593, "", "=q4=High High Warlord's Dreadweave Pants, =ds=", "2370 #arena# #horde#", "" };
+ { 6, 6117586, "", "=q4=High High Warlord's Dreadweave Boots, =ds=", "1430 #arena# #horde#", "" };
+ };
+};
+
+AtlasLoot_Data["PVPWarrior"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
+ {
+ Name = AL["Rare Set"] .. " (Alliance)";
+ { 1, 16429, "", "=q3=Lieutenant Commander's Plate Helm, =ds=", "9435 #alliance#", "" };
+ { 2, 16432, "", "=q3=Lieutenant Commander's Plate Shoulders, =ds=", "6885 #alliance#", "" };
+ { 3, 16430, "", "=q3=Knight-Captain's Plate Hauberk, =ds=", "9435 #alliance#", "" };
+ { 4, 16406, "", "=q3=Knight-Lieutenant's Plate Gauntlets, =ds=", "5000 #alliance#", "" };
+ { 5, 16431, "", "=q3=Knight-Captain's Plate Leggings, =ds=", "9435 #alliance#", "" };
+ { 6, 16405, "", "=q3=Knight-Lieutenant's Plate Greaves, =ds=", "5000 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Alliance)";
+ { 1, 23314, "", "=q3=Lieutenant Commander's Plate Helm", "=ds=", "24000 #alliance#", "" };
+ { 2, 23315, "", "=q3=Lieutenant Commander's Plate Shoulders", "=ds=", "14000 #alliance#", "" };
+ { 3, 23300, "", "=q3=Knight-Captain's Plate Hauberk", "=ds=", "24000 #alliance#", "" };
+ { 4, 23286, "", "=q3=Knight-Lieutenant's Plate Gauntlets", "=ds=", "14000 #alliance#", "" };
+ { 5, 23301, "", "=q3=Knight-Captain's Plate Leggings", "=ds=", "24000 #alliance#", "" };
+ { 6, 23287, "", "=q3=Knight-Lieutenant's Plate Greaves", "=ds=", "14000 #alliance#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Alliance)";
+ { 1, 16478, "", "=q4=Field Marshal's Plate Helm", "=ds=", "68200 #alliance#", "" };
+ { 2, 16480, "", "=q4=Field Marshal's Plate Shoulderguards", "=ds=", "52200 #alliance#", "" };
+ { 3, 16477, "", "=q4=Field Marshal's Plate Armor", "=ds=", "68200 #alliance#", "" };
+ { 4, 16484, "", "=q4=Marshal's Plate Gauntlets", "=ds=", "52200 #alliance#", "" };
+ { 5, 16479, "", "=q4=Marshal's Plate Legguards", "=ds=", "68200 #alliance#", "" };
+ { 6, 16483, "", "=q4=Marshal's Plate Boots", "=ds=", "52200 #alliance#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Alliance)";
+ { 1, 6116478, "", "=q4=Grand Marshal's Plate Helm, =ds=", "2370 #arena# #alliance#", "" };
+ { 2, 6116480, "", "=q4=Grand Marshal's Plate Shoulderguards, =ds=", "1930 #arena# #alliance#", "" };
+ { 3, 6116477, "", "=q4=Grand Marshal's Plate Armor, =ds=", "2370 #arena# #alliance#", "" };
+ { 4, 6116484, "", "=q4=Grand Marshal's Plate Gauntlets, =ds=", "1430 #arena# #alliance#", "" };
+ { 5, 6116479, "", "=q4=Grand Marshal's Plate Legguards, =ds=", "2370 #arena# #alliance#", "" };
+ { 6, 6116483, "", "=q4=Grand Marshal's Plate Boots, =ds=", "1430 #arena# #alliance#", "" };
+ };
+ {
+ Name = AL["Rare Set"] .. " (Horde)";
+ { 1, 16514, "", "=q3=Champion's Plate Helm, =ds=", "9435 #horde#", "" };
+ { 2, 16516, "", "=q3=Champion's Plate Shoulders, =ds=", "6885 #horde#", "" };
+ { 3, 16513, "", "=q3=Legionnaire's Plate Hauberk, =ds=", "9435 #horde#", "" };
+ { 4, 16510, "", "=q3=Blood Guard's Plate Gauntlets, =ds=", "5000 #horde#", "" };
+ { 5, 16515, "", "=q3=Legionnaire's Plate Leggings, =ds=", "9435 #horde#", "" };
+ { 6, 16509, "", "=q3=Blood Guard's Plate Greaves, =ds=", "5000 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Rare Set"] .. " (Horde)";
+ { 1, 23244, "", "=q3=Champion's Plate Helm", "=ds=", "24000 #horde#", "" };
+ { 2, 23243, "", "=q3=Champion's Plate Shoulders", "=ds=", "14000 #horde#", "" };
+ { 3, 22872, "", "=q3=Legionnaire's Plate Hauberk", "=ds=", "24000 #horde#", "" };
+ { 4, 22868, "", "=q3=Blood Guard's Plate Gauntlets", "=ds=", "14000 #horde#", "" };
+ { 5, 22873, "", "=q3=Legionnaire's Plate Leggings", "=ds=", "24000 #horde#", "" };
+ { 6, 22858, "", "=q3=Blood Guard's Plate Greaves", "=ds=", "14000 #horde#", "" };
+ };
+ {
+ Name = AL["Epic Set"] .. " (Horde)";
+ { 1, 16542, "", "=q4=Warlord's Plate Headpiece", "=ds=", "68200 #horde#", "" };
+ { 2, 16544, "", "=q4=Warlord's Plate Shoulders", "=ds=", "52200 #horde#", "" };
+ { 3, 16541, "", "=q4=Warlord's Plate Armor", "=ds=", "68200 #horde#", "" };
+ { 4, 16548, "", "=q4=General's Plate Gauntlets", "=ds=", "52200 #horde#", "" };
+ { 5, 16543, "", "=q4=General's Plate Leggings", "=ds=", "68200 #horde#", "" };
+ { 6, 16545, "", "=q4=General's Plate Boots", "=ds=", "52200 #horde#", "" };
+ };
+ {
+ Name = AL["Superior Epic Set"] .. " (Horde)";
+ { 1, 6116542, "", "=q4=High Warlord's Plate Headpiece, =ds=", "2370 #arena# #horde#", "" };
+ { 2, 6116544, "", "=q4=High Warlord's Plate Shoulders, =ds=", "1930 #arena# #horde#", "" };
+ { 3, 6116541, "", "=q4=High Warlord's Plate Armor, =ds=", "2370 #arena# #horde#", "" };
+ { 4, 6116548, "", "=q4=High High Warlord's Plate Gauntlets, =ds=", "1430 #arena# #horde#", "" };
+ { 5, 6116543, "", "=q4=High High Warlord's Plate Leggings, =ds=", "2370 #arena# #horde#", "" };
+ { 6, 6116545, "", "=q4=High High Warlord's Plate Boots, =ds=", "1430 #arena# #horde#", "" };
+ };
+};
+
+----------------------------
+--- PvP Level 60 Weapons ---
+----------------------------
+
+AtlasLoot_Data["PVPWeapons60"] = {
+ Name = AL["PvP Weapons (Level 60)"];
+ {
+ Name = "Grand Marshal's (Alliance)";
+ { 1, 18843, "", "=q4=Grand Marshal's Right Hand Blade", "=ds=#h3#, #w13#", "34100 #alliance#", "" };
+ { 2, 18847, "", "=q4=Grand Marshal's Left Hand Blade", "=ds=#h4#, #w13#", "34100 #alliance#", "" };
+ { 3, 23451, "", "=q4=Grand Marshal's Mageblade", "=ds=#h4#, #w4#", "34100 #alliance#", "" };
+ { 4, 18838, "", "=q4=Grand Marshal's Dirk", "=ds=#h1#, #w4#", "34100 #alliance#", "" };
+ { 5, 12584, "", "=q4=Grand Marshal's Longsword", "=ds=#h1#, #w10#", "34100 #alliance#", "" };
+ { 6, 23456, "", "=q4=Grand Marshal's Swiftblade", "=ds=#h1#, #w10#", "34100 #alliance#", "" };
+ { 7, 18876, "", "=q4=Grand Marshal's Claymore", "=ds=#h2#, #w10#", "68200 #alliance#", "" };
+ { 8, 18827, "", "=q4=Grand Marshal's Handaxe", "=ds=#h1#, #w1#", "34100 #alliance#", "" };
+ { 9, 18830, "", "=q4=Grand Marshal's Sunderer", "=ds=#h2#, #w1#", "68200 #alliance#", "" };
+ { 10, 23454, "", "=q4=Grand Marshal's Warhammer", "=ds=#h3#, #w6#", "34100 #alliance#", "" };
+ { 11, 18865, "", "=q4=Grand Marshal's Punisher", "=ds=#h1#, #w6#", "34100 #alliance#", "" };
+ { 12, 18867, "", "=q4=Grand Marshal's Battle Hammer", "=ds=#h2#, #w6#", "68200 #alliance#", "" };
+ { 13, 23455, "", "=q4=Grand Marshal's Demolisher", "=ds=#h2#, #w6#", "68200 #alliance#", "" };
+ { 14, 18869, "", "=q4=Grand Marshal's Glaive", "=ds=#w7#", "68200 #alliance#", "" };
+ { 15, 18873, "", "=q4=Grand Marshal's Stave", "=ds=#w9#", "68200 #alliance#", "" };
+ { 16, 18825, "", "=q4=Grand Marshal's Aegis", "=ds=#w8#", "34100 #alliance#", "" };
+ { 17, 18833, "", "=q4=Grand Marshal's Bullseye", "=ds=#w2#", "34100 #alliance#", "" };
+ { 18, 18836, "", "=q4=Grand Marshal's Repeater", "=ds=#w3#", "34100 #alliance#", "" };
+ { 19, 18855, "", "=q4=Grand Marshal's Hand Cannon", "=ds=#w5#", "34100 #alliance#", "" };
+ { 20, 23452, "", "=q4=Grand Marshal's Tome of Power", "=ds=#s15#", "34100 #alliance#", "" };
+ { 21, 23453, "", "=q4=Grand Marshal's Tome of Restoration", "=ds=#s15#", "34100 #alliance#", "" };
+ };
+ {
+ Name = "Lieutenant Commander's (Alliance)";
+ { 1, 918843, "", "=q3=Lieutenant Commander's Right Hand Blade", "=ds=#h3#, #w13#", "20000 #alliance#", "" };
+ { 2, 918847, "", "=q3=Lieutenant Commander's Left Hand Blade", "=ds=#h4#, #w13#", "20000 #alliance#", "" };
+ { 3, 923451, "", "=q3=Lieutenant Commander's Mageblade", "=ds=#h4#, #w4#", "20000 #alliance#", "" };
+ { 4, 918838, "", "=q3=Lieutenant Commander's Dirk", "=ds=#h1#, #w4#", "20000 #alliance#", "" };
+ { 5, 912584, "", "=q3=Lieutenant Commander's Longsword", "=ds=#h1#, #w10#", "20000 #alliance#", "" };
+ { 6, 923456, "", "=q3=Lieutenant Commander's Swiftblade", "=ds=#h1#, #w10#", "20000 #alliance#", "" };
+ { 7, 918876, "", "=q3=Lieutenant Commander's Claymore", "=ds=#h2#, #w10#", "34100 #alliance#", "" };
+ { 8, 918827, "", "=q3=Lieutenant Commander's Handaxe", "=ds=#h1#, #w1#", "20000 #alliance#", "" };
+ { 9, 918830, "", "=q3=Lieutenant Commander's Sunderer", "=ds=#h2#, #w1#", "34100 #alliance#", "" };
+ { 10, 923454, "", "=q3=Lieutenant Commander's Warhammer", "=ds=#h3#, #w6#", "20000 #alliance#", "" };
+ { 11, 918865, "", "=q3=Lieutenant Commander's Punisher", "=ds=#h1#, #w6#", "20000 #alliance#", "" };
+ { 12, 918867, "", "=q3=Lieutenant Commander's Battle Hammer", "=ds=#h2#, #w6#", "34100 #alliance#", "" };
+ { 13, 923455, "", "=q3=Lieutenant Commander's Demolisher", "=ds=#h2#, #w6#", "34100 #alliance#", "" };
+ { 14, 918869, "", "=q3=Lieutenant Commander's Glaive", "=ds=#w7#", "34100 #alliance#", "" };
+ { 15, 918873, "", "=q3=Lieutenant Commander's Stave", "=ds=#w9#", "34100 #alliance#", "" };
+ { 16, 918825, "", "=q3=Lieutenant Commander's Aegis", "=ds=#w8#", "20000 #alliance#", "" };
+ { 17, 918833, "", "=q3=Lieutenant Commander's Bullseye", "=ds=#w2#", "20000 #alliance#", "" };
+ { 18, 918836, "", "=q3=Lieutenant Commander's Repeater", "=ds=#w3#", "20000 #alliance#", "" };
+ { 19, 918855, "", "=q3=Lieutenant Commander's Hand Cannon", "=ds=#w5#", "20000 #alliance#", "" };
+ { 20, 923452, "", "=q3=Lieutenant Commander's Tome of Power", "=ds=#s15#", "20000 #alliance#", "" };
+ { 21, 923453, "", "=q3=Lieutenant Commander's Tome of Restoration", "=ds=#s15#", "20000 #alliance#", "" };
+ };
+ {
+ Name = "High Warlord's (Horde)";
+ { 1, 18844, "", "=q4=High Warlord's Right Claw", "=ds=#h3#, #w13#", "34100 #horde#", "" };
+ { 2, 18848, "", "=q4=High Warlord's Left Claw", "=ds=#h4#, #w13#", "34100 #horde#", "" };
+ { 3, 23466, "", "=q4=High Warlord's Spellblade", "=ds=#h4#, #w4#", "34100 #horde#", "" };
+ { 4, 18840, "", "=q4=High Warlord's Razor", "=ds=#h1#, #w4#", "34100 #horde#", "" };
+ { 5, 16345, "", "=q4=High Warlord's Blade", "=ds=#h1#, #w10#", "34100 #horde#", "" };
+ { 6, 23467, "", "=q4=High Warlord's Quickblade", "=ds=#h1#, #w10#", "34100 #horde#", "" };
+ { 7, 18877, "", "=q4=High Warlord's Greatsword", "=ds=#h2#, #w10#", "68200 #horde#", "" };
+ { 8, 18828, "", "=q4=High Warlord's Cleaver", "=ds=#h1#, #w1#", "34100 #horde#", "" };
+ { 9, 18831, "", "=q4=High Warlord's Battle Axe", "=ds=#h2#, #w1#", "68200 #horde#", "" };
+ { 10, 23464, "", "=q4=High Warlord's Battle Mace", "=ds=#h3#, #w6#", "34100 #horde#", "" };
+ { 11, 18866, "", "=q4=High Warlord's Bludgeon", "=ds=#h1#, #w6#", "34100 #horde#", "" };
+ { 12, 18868, "", "=q4=High Warlord's Pulverizer", "=ds=#h2#, #w6#", "68200 #horde#", "" };
+ { 13, 23465, "", "=q4=High Warlord's Destroyer", "=ds=#h2#, #w6#", "68200 #horde#", "" };
+ { 14, 18871, "", "=q4=High Warlord's Pig Sticker", "=ds=#w7#", "68200 #horde#", "" };
+ { 15, 18874, "", "=q4=High Warlord's War Staff", "=ds=#w9#", "68200 #horde#", "" };
+ { 16, 18826, "", "=q4=High Warlord's Shield Wall", "=ds=#w8#", "34100 #horde#", "" };
+ { 17, 18835, "", "=q4=High Warlord's Recurve", "=ds=#w2#", "34100 #horde#", "" };
+ { 18, 18837, "", "=q4=High Warlord's Crossbow", "=ds=#w3#", "34100 #horde#", "" };
+ { 19, 18860, "", "=q4=High Warlord's Street Sweeper", "=ds=#w5#", "34100 #horde#", "" };
+ { 20, 23468, "", "=q4=High Warlord's Tome of Destruction", "=ds=#s15#", "34100 #horde#", "" };
+ { 21, 23469, "", "=q4=High Warlord's Tome of Mending", "=ds=#s15#", "34100 #horde#", "" };
+
+ };
+ {
+ Name = "Champion's (Horde)";
+ { 1, 918844, "", "=q3=Champion's Right Claw", "=ds=#h3#, #w13#", "20000 #horde#", "" };
+ { 2, 918848, "", "=q3=Champion's Left Claw", "=ds=#h4#, #w13#", "20000 #horde#", "" };
+ { 3, 923466, "", "=q3=Champion's Spellblade", "=ds=#h4#, #w4#", "20000 #horde#", "" };
+ { 4, 918840, "", "=q3=Champion's Razor", "=ds=#h1#, #w4#", "20000 #horde#", "" };
+ { 5, 916345, "", "=q3=Champion's Blade", "=ds=#h1#, #w10#", "20000 #horde#", "" };
+ { 6, 923467, "", "=q3=Champion's Quickblade", "=ds=#h1#, #w10#", "20000 #horde#", "" };
+ { 7, 918877, "", "=q3=Champion's Greatsword", "=ds=#h2#, #w10#", "34100 #horde#", "" };
+ { 8, 918828, "", "=q3=Champion's Cleaver", "=ds=#h1#, #w1#", "20000 #horde#", "" };
+ { 9, 918831, "", "=q3=Champion's Battle Axe", "=ds=#h2#, #w1#", "34100 #horde#", "" };
+ { 10, 923464, "", "=q3=Champion's Battle Mace", "=ds=#h3#, #w6#", "20000 #horde#", "" };
+ { 11, 918866, "", "=q3=Champion's Bludgeon", "=ds=#h1#, #w6#", "20000 #horde#", "" };
+ { 12, 918868, "", "=q3=Champion's Pulverizer", "=ds=#h2#, #w6#", "34100 #horde#", "" };
+ { 13, 923465, "", "=q3=Champion's Destroyer", "=ds=#h2#, #w6#", "34100 #horde#", "" };
+ { 14, 918871, "", "=q3=Champion's Pig Sticker", "=ds=#w7#", "34100 #horde#", "" };
+ { 15, 918874, "", "=q3=Champion's War Staff", "=ds=#w9#", "34100 #horde#", "" };
+ { 16, 918826, "", "=q3=Champion's Shield Wall", "=ds=#w8#", "20000 #horde#", "" };
+ { 17, 918835, "", "=q3=Champion's Recurve", "=ds=#w2#", "20000 #horde#", "" };
+ { 18, 918837, "", "=q3=Champion's Crossbow", "=ds=#w3#", "20000 #horde#", "" };
+ { 19, 918860, "", "=q3=Champion's Street Sweeper", "=ds=#w5#", "20000 #horde#", "" };
+ { 20, 923468, "", "=q3=Champion's Tome of Destruction", "=ds=#s15#", "20000 #horde#", "" };
+ { 21, 923469, "", "=q3=Champion's Tome of Mending", "=ds=#s15#", "20000 #horde#", "" };
+ };
+};
+
+--------------------------------
+--- PvP Level 60 Accessories ---
+--------------------------------
+AtlasLoot_Data["PvP60Accessories"] = {
+ Name = AL["PvP Accessories (Level 60)"];
+ {
+ Name = "Alliance 1";
+ { 1, 100533, "", "=q4=Combatant's Amulet of Victory, =ds=", "34100 #alliance#", "" };
+ { 2, 100534, "", "=q4=Combatant's Amulet of Triumph, =ds=", "34100 #alliance#", "" };
+ { 3, 100535, "", "=q4=Combatant's Amulet of Dominance, =ds=", "34100 #alliance#", "" };
+ { 4, 100536, "", "=q4=Combatant's Amulet of Conquest, =ds=", "34100 #alliance#", "" };
+ { 5, 100537, "", "=q4=Combatant's Loop of Triumph, =ds=", "34100 #alliance#", "" };
+ { 6, 100538, "", "=q4=Combatant's Loop of Victory, =ds=", "34100 #alliance#", "" };
+ { 7, 100539, "", "=q4=Combatant's Loop of Dominance, =ds=", "34100 #alliance#", "" };
+ { 8, 100540, "", "=q4=Combatant's Loop of Conquest, =ds=", "34100 #alliance#", "" };
+ { 9, 100541, "", "=q4=Combatant's Cloak of Triumph, =ds=", "34100 #alliance#", "" };
+ { 10, 100542, "", "=q4=Combatant's Cloak of Victory, =ds=", "34100 #alliance#", "" };
+ { 11, 100543, "", "=q4=Combatant's Cloak of Dominance, =ds=", "34100 #alliance#", "" };
+ { 12, 100544, "", "=q4=Combatant's Cloak of Conquest, =ds=", "34100 #alliance#", "" };
+ { 16, 100526, "", "=q4=Battlemaster's Fury, =ds=", " #alliance#", "" };
+ { 17, 100527, "", "=q4=Battlemaster's Rage, =ds=", " #alliance#", "" };
+ { 18, 100528, "", "=q4=Battlemaster's Ruination, =ds=", " #alliance#", "" };
+ { 19, 100529, "", "=q4=Insignia of the Alliance, =ds=", " #alliance#", "" };
+ { 20, 100530, "", "=q4=Insignia of the Horde, =ds=", " #alliance#", "" };
+ { 21, 100531, "", "=q4=Combatant's Scroll of Battle, =ds=", " #alliance#", "" };
+ { 22, 100532, "", "=q4=Combatant's Scroll of Sorcery, =ds=", " #alliance#", "" };
+ };
+ {
+ Name = "Alliance 2";
+ { 1, 29465, "", "=q4=Black Battlestrider", "=ds=#e12#", "50000 #alliance#", "" };
+ { 2, 29467, "", "=q4=Black War Ram", "=ds=#e12#", "50000 #alliance#", "" };
+ { 3, 29468, "", "=q4=Black War Steed Bridle", "=ds=#e12#", "50000 #alliance#", "" };
+ { 4, 29471, "", "=q4=Reins of the Black War Tiger", "=ds=#e12#", "50000 #alliance#", "" };
+ { 5, 35906, "", "=q4=Reins of the Black War Elekk", "=ds#e12#=", "50000 #alliance#", "" };
+ { 7, 18863, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", "" };
+ { 8, 18856, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", "" };
+ { 9, 18859, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", "" };
+ { 10, 18864, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", "" };
+ { 11, 18862, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", "" };
+ { 12, 18857, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", "" };
+ { 13, 29593, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", "" };
+ { 14, 18858, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", "" };
+ { 15, 18854, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", "" };
+ { 16, 15196, "", "=q1=Private's Tabard", "=ds=#s7#", "15000 #alliance#", "" };
+ { 17, 15198, "", "=q1=Knight's Colors", "=ds=#s7#", "20000 #alliance#", "" };
+ { 18, 18606, "", "=q1=Alliance Battle Standard", "=ds=", "15300 #alliance#", "" };
+ { 20, 18839, "", "=q1=Combat Healing Potion", "=ds=#e2#", "10 #silver# 1 #alliance#", "" };
+ { 21, 18841, "", "=q1=Combat Mana Potion", "=ds=#e2#", "10 #silver# 1 #alliance#", "" };
+ { 22, 32455, "", "=q1=Star's Lament", "=ds=#e4#", "12 #silver# 1 #alliance#", "" };
+ };
+ {
+ Name = "Alliance 3";
+ { 1, 18457, "", "=q3=Sergeant Major's Silk Cuffs", "=ds=#s8#, #a1#", "300 #alliance#", "" };
+ { 2, 18456, "", "=q3=Sergeant Major's Silk Cuffs", "=ds=#s8#, #a1#", "1600 #alliance#", "" };
+ { 4, 18455, "", "=q3=Sergeant Major's Dragonhide Armsplints", "=ds=#s8#, #a2#", "300 #alliance#", "" };
+ { 5, 18454, "", "=q3=Sergeant Major's Dragonhide Armsplints", "=ds=#s8#, #a2#", "1600 #alliance#", "" };
+ { 7, 18453, "", "=q3=Sergeant Major's Leather Armsplints", "=ds=#s8#, #a3#", "300 #alliance#", "" };
+ { 8, 18452, "", "=q3=Sergeant Major's Leather Armsplints", "=ds=#s8#, #a3#", "1600 #alliance#", "" };
+ { 10, 18449, "", "=q3=Sergeant Major's Chain Armguards", "=ds=#s8#, #a3#", "300 #alliance#", "" };
+ { 11, 18448, "", "=q3=Sergeant Major's Chain Armguards", "=ds=#s8#, #a3#", "1600 #alliance#", "" };
+ { 13, 18447, "", "=q3=Sergeant Major's Plate Wristguards", "=ds=#s8#, #a4#", "300 #alliance#", "" };
+ { 14, 18445, "", "=q3=Sergeant Major's Plate Wristguards", "=ds=#s8#, #a4#", "1600 #alliance#", "" };
+ { 16, 18440, "", "=q3=Sergeant's Cape", "=ds=#s4#", "100 #alliance#", "" };
+ { 17, 18441, "", "=q3=Sergeant's Cape", "=ds=#s4#", "300 #alliance#", "" };
+ { 18, 16342, "", "=q3=Sergeant's Cape", "=ds=#s4#", "1600 #alliance#", "" };
+ { 20, 18442, "", "=q3=Master Sergeant's Insignia", "=ds=#s2#", "100 #alliance#", "" };
+ { 21, 18444, "", "=q3=Master Sergeant's Insignia", "=ds=#s2#", "300 #alliance#", "" };
+ { 22, 18443, "", "=q3=Master Sergeant's Insignia", "=ds=#s2#", "1600 #alliance#", "" };
+ };
+ {
+ Name = "Horde 1";
+ { 1, 100533, "", "=q4=Combatant's Amulet of Victory, =ds=", "34100 #horde#", "" };
+ { 2, 100534, "", "=q4=Combatant's Amulet of Triumph, =ds=", "34100 #horde#", "" };
+ { 3, 100535, "", "=q4=Combatant's Amulet of Dominance, =ds=", "34100 #horde#", "" };
+ { 4, 100536, "", "=q4=Combatant's Amulet of Conquest, =ds=", "34100 #horde#", "" };
+ { 5, 100537, "", "=q4=Combatant's Loop of Triumph, =ds=", "34100 #horde#", "" };
+ { 6, 100538, "", "=q4=Combatant's Loop of Victory, =ds=", "34100 #horde#", "" };
+ { 7, 100539, "", "=q4=Combatant's Loop of Dominance, =ds=", "34100 #horde#", "" };
+ { 8, 100540, "", "=q4=Combatant's Loop of Conquest, =ds=", "34100 #horde#", "" };
+ { 9, 100541, "", "=q4=Combatant's Cloak of Triumph, =ds=", "34100 #horde#", "" };
+ { 10, 100542, "", "=q4=Combatant's Cloak of Victory, =ds=", "34100 #horde#", "" };
+ { 11, 100543, "", "=q4=Combatant's Cloak of Dominance, =ds=", "34100 #horde#", "" };
+ { 12, 100544, "", "=q4=Combatant's Cloak of Conquest, =ds=", "34100 #horde#", "" };
+ { 16, 100526, "", "=q4=Battlemaster's Fury, =ds=", " #horde#", "" };
+ { 17, 100527, "", "=q4=Battlemaster's Rage, =ds=", " #horde#", "" };
+ { 18, 100528, "", "=q4=Battlemaster's Ruination, =ds=", " #horde#", "" };
+ { 19, 100529, "", "=q4=Insignia of the Alliance, =ds=", " #horde#", "" };
+ { 20, 100530, "", "=q4=Insignia of the Horde, =ds=", " #horde#", "" };
+ { 21, 100531, "", "=q4=Combatant's Scroll of Battle, =ds=", " #horde#", "" };
+ { 22, 100532, "", "=q4=Combatant's Scroll of Sorcery, =ds=", " #horde#", "" };
+ };
+ {
+ Name = "Horde 2";
+ { 1, 29466, "", "=q4=Black War Kodo", "=ds=#e12#", "50000 #horde#", "" };
+ { 2, 29469, "", "=q4=Horn of the Black War Wolf", "=ds=#e12#", "50000 #horde#", "" };
+ { 3, 29470, "", "=q4=Red Skeletal Warhorse", "=ds=#e12#", "50000 #horde#", "" };
+ { 4, 29472, "", "=q4=Whistle of the Black War Raptor", "=ds=#e12#", "50000 #horde#", "" };
+ { 5, 34129, "", "=q4=Swift Warstrider", "=ds=#e12#", "50000 #horde#", "" };
+ { 7, 18853, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", "" };
+ { 8, 18846, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", "" };
+ { 9, 18850, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", "" };
+ { 10, 29592, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", "" };
+ { 11, 18851, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", "" };
+ { 12, 18849, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", "" };
+ { 13, 18845, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", "" };
+ { 14, 18852, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", "" };
+ { 15, 18834, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", "" };
+ { 16, 15197, "", "=q1=Scout's Tabard", "=ds=#s7#", "15000 #horde#", "" };
+ { 17, 15199, "", "=q1=Stone Guard's Herald", "=ds=#s7#", "20000 #horde#", "" };
+ { 18, 18607, "", "=q1=Horde Battle Standard", "=ds=", "15300 #horde#", "" };
+ { 20, 18839, "", "=q1=Combat Healing Potion", "=ds=#e2#", "10 #silver# 1 #horde#", "" };
+ { 21, 18841, "", "=q1=Combat Mana Potion", "=ds=#e2#", "10 #silver# 1 #horde#", "" };
+ { 22, 32455, "", "=q1=Star's Lament", "=ds=#e4#", "12 #silver# 1 #horde#", "" };
+ };
+ {
+ Name = "Horde 3";
+ { 1, 18437, "", "=q3=First Sergeant's Silk Cuffs", "=ds=#s8#, #a1#", "300 #horde#", "" };
+ { 2, 16486, "", "=q3=First Sergeant's Silk Cuffs", "=ds=#s8#, #a1#", "1600 #horde#", "" };
+ { 4, 18436, "", "=q3=First Sergeant's Dragonhide Armguards", "=ds=#s8#, #a1#", "300 #horde#", "" };
+ { 5, 18434, "", "=q3=First Sergeant's Dragonhide Armguards", "=ds=#s8#, #a1#", "1600 #horde#", "" };
+ { 7, 18435, "", "=q3=First Sergeant's Leather Armguards", "=ds=#s8#, #a2#", "300 #horde#", "" };
+ { 8, 16497, "", "=q3=First Sergeant's Leather Armguards", "=ds=#s8#, #a2#", "1600 #horde#", "" };
+ { 10, 18432, "", "=q3=First Sergeant's Mail Wristguards", "=ds=#s8#, #a3#", "300 #horde#", "" };
+ { 11, 16532, "", "=q3=First Sergeant's Mail Wristguards", "=ds=#s8#, #a3#", "1600 #horde#", "" };
+ { 13, 18430, "", "=q3=First Sergeant's Plate Bracers", "=ds=#s8#, #a4#", "300 #horde#", "" };
+ { 14, 18429, "", "=q3=First Sergeant's Plate Bracers", "=ds=#s8#, #a4#", "1600 #horde#", "" };
+ { 16, 18427, "", "=q3=Sergeant's Cloak", "=ds=#s4#", "100 #horde#", "" };
+ { 17, 16341, "", "=q3=Sergeant's Cloak", "=ds=#s4#", "300 #horde#", "" };
+ { 18, 18461, "", "=q3=Sergeant's Cloak", "=ds=#s4#", "1600 #horde#", "" };
+ { 20, 15200, "", "=q3=Senior Sergeant's Insignia", "=ds=#s2#", "100 #horde#", "" };
+ { 21, 18428, "", "=q3=Senior Sergeant's Insignia", "=ds=#s2#", "300 #horde#", "" };
+ { 22, 16335, "", "=q3=Senior Sergeant's Insignia", "=ds=#s2#", "1600 #horde#", "" };
+ };
+};
+
+AtlasLoot_Data["PvP60Ench"] = {
+ Name = AL["PvP Enchants"];
+ {
+ Name = AL["PvP Enchants"];
+ { 1, 100545, "", "=q3=Superior Resistance, =ds=", "25000 #alliance#", "" };
+ { 2, 100546, "", "=q3=Lesser Resilience, =ds=", "25000 #alliance#", "" };
+ { 3, 100547, "", "=q2=Absorption, =ds=", "25000 #alliance#", "" };
+ { 4, 100548, "", "=q2=Lesser Stats, =ds=", "25000 #alliance#", "" };
+ { 5, 100549, "", "=q2=Superior Intellect, =ds=", "25000 #alliance#", "" };
+ { 6, 100550, "", "=q3=Nature Power, =ds=", "25000 #alliance#", "" };
+ { 7, 100551, "", "=q3=Arcane Power, =ds=", "25000 #alliance#", "" };
+ { 8, 100552, "", "=q3=Holy Power, =ds=", "25000 #alliance#", "" };
+ { 9, 100553, "", "=q4=Greater Healing Power, =ds=", "25000 #alliance#", "" };
+ { 10, 100554, "", "=q3=Superior Strength, =ds=", "25000 #alliance#", "" };
+ { 11, 100555, "", "=q3=Greater Riding Skill, =ds=", "25000 #alliance#", "" };
+ { 12, 100556, "", "=q3=Lesser Boar's Speed, =ds=", "25000 #alliance#", "" };
+ { 13, 100557, "", "=q3=Lesser Cat's Swiftness, =ds=", "25000 #alliance#", "" };
+ { 14, 100558, "", "=q3=Lesser Falcon's Quickness, =ds=", "25000 #alliance#", "" };
+ { 15, 100559, "", "=q4=Lesser Stamina, =ds=", "25000 #alliance#", "" };
+ { 16, 100560, "", "=q4=Lesser Stats, =ds=", "25000 #alliance#", "" };
+ { 17, 100561, "", "=q4=Lesser Blood Draining, =ds=", "40000 #alliance#", "" };
+ { 18, 100563, "", "=q3=Lesser Arcanum of Dominance, =ds=", "40000 #alliance#", "" };
+ { 19, 100564, "", "=q3=Lesser Arcanum of Triumph, =ds=", "50000 #alliance#", "" };
+ { 20, 449570, "", "=q3=Lesser Inscription of the Gladiator, =ds=", "40000 #alliance#", "" };
+ { 21, 449571, "", "=q3=Lesser Inscription of the Battle Mage, =ds=", "40000 #alliance#", "" };
+ };
+};
+----------------
+--- Factions ---
+----------------
+
+------------
+--- Misc ---
+------------
+
+AtlasLoot_Data["DesolaceCentaurClans"] = {
+ Name = "Desolace Centaur Clans";
+ {
+ Name = BabbleFaction["Magram Clan Centaur"];
+ { 1, 6789, "", "=q2=Ceremonial Centaur Blanket", "=q1=#m4#: =ds=#s4#" };
+ { 2, 6788, "", "=q2=Magram Hunter's Belt", "=q1=#m4#: =ds=#s10#, #a2#" };
+ };
+ {
+ Name = BabbleFaction["Gelkis Clan Centaur"];
+ { 1, 6773, "", "=q2=Gelkis Marauder Chain", "=q1=#m4#: =ds=#s5#, #a3#" };
+ { 2, 6774, "", "=q2=Uthek's Finger", "=q1=#m4#: =ds=#s15#" };
+ };
+};
+
+AtlasLoot_Data["Wintersaber"] = {
+ Name = BabbleFaction["Wintersaber Trainers"];
+ {
+ Name = BabbleFaction["Wintersaber Trainers"];
+ { 1, 13086, "", "=q4=Reins of the Winterspring Frostsaber", "=ds=#e12#" };
+ };
+};
+
+AtlasLoot_Data["ArathiBasinFactions"] = {
+ Name = BabbleZone["Arathi Basin"];
+ {
+ Name = BabbleFaction["The League of Arathor"] .. " (" .. BabbleFaction["Alliance"] .. ")";
+ { 6, 20132, "", "=q1=Arathor Battle Tabard", "=q1=#m4#: =ds=#s7#" };
+ };
+ {
+ Name = BabbleFaction["The Defilers"] .. " (" .. BabbleFaction["Horde"] .. ")";
+ { 21, 20131, "", "=q1=Battle Tabard of the Defilers", "=q1=#m4#: =ds=#s7#" };
+ };
+};
+
+-------------------
+--- Argent Dawn ---
+-------------------
+
+AtlasLoot_Data["Argent"] = {
+ Name = BabbleFaction["Argent Dawn"];
+ {
+ Name = BabbleFaction["Argent Dawn"];
+ { 1, 22689, "", "=q3=Sanctified Leather Helm", "=ds=#s1#, #a2#" };
+ { 2, 22690, "", "=q3=Leggings of the Plague Hunter", "=ds=#s11#, #a3#" };
+ { 3, 22681, "", "=q3=Band of Piety", "=ds=#s13#" };
+ { 4, 22680, "", "=q3=Band of Resolution", "=ds=#s13#" };
+ { 5, 22688, "", "=q3=Verimonde's Last Resort", "=ds=#h3#, #w4#" };
+ { 6, 22679, "", "=q3=Supply Bag", "=ds=#m14# #e1#" };
+ { 8, 22638, "", "=q3=Shadow Guard", "=ds=#s1# #e17#" };
+ { 10, 22523, "", "=q2=Insignia of the Dawn", "=ds=#m17#" };
+ { 12, 12844, "", "=q2=Argent Dawn Valor Token", "=ds=#m17#" };
+ { 16, 22667, "", "=q4=Bracers of Hope", "=ds=#s8#, #a1#" };
+ { 17, 22668, "", "=q4=Bracers of Subterfuge", "=ds=#s8#, #a2#" };
+ { 18, 22657, "", "=q4=Amulet of the Dawn", "=ds=#s2#" };
+ { 19, 22659, "", "=q4=Medallion of the Dawn", "=ds=#s2#" };
+ { 20, 22678, "", "=q4=Talisman of Ascendance", "=ds=#s14#" };
+ { 21, 22656, "", "=q4=The Purifier", "=ds=#w5#" };
+ { 23, 22636, "", "=q3=Ice Guard", "=ds=#s1# #e17#" };
+ { 25, 22524, "", "=q2=Insignia of the Crusade", "=ds=#m17#" };
+ };
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 13724, "", "=q1=Enriched Manna Biscuit", "=ds=#e3#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 13482, "", "=q2=Recipe: Transmute Air to Fire", "=ds=#p1# (275)" };
+ { 2, 19203, "", "=q1=Plans: Girdle of the Dawn", "=ds=#p2# (290)" };
+ { 3, 19446, "", "=q1=Formula: Enchant Bracer - Mana Regeneration", "=ds=#p4# (290)" };
+ { 4, 19442, "", "=q1=Formula: Powerful Anti-Venom", "=ds=#p6# (300)" };
+ { 5, 19328, "", "=q1=Pattern: Dawn Treaders", "=ds=#p7# (290)" };
+ { 6, 19216, "", "=q1=Pattern: Argent Boots", "=ds=#p8# (290)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 18171, "", "=q2=Arcane Mantle of the Dawn", "=ds=#s3# #e17#" };
+ { 2, 18169, "", "=q2=Flame Mantle of the Dawn", "=ds=#s3# #e17#" };
+ { 3, 18170, "", "=q2=Frost Mantle of the Dawn", "=ds=#s3# #e17#" };
+ { 4, 18172, "", "=q2=Nature Mantle of the Dawn", "=ds=#s3# #e17#" };
+ { 5, 18173, "", "=q2=Shadow Mantle of the Dawn", "=ds=#s3# #e17#" };
+ { 6, 19205, "", "=q1=Plans: Gloves of the Dawn", "=ds=#p2# (300)" };
+ { 7, 19447, "", "=q1=Formula: Enchant Bracer - Healing", "=ds=#p4# (300)" };
+ { 8, 19329, "", "=q1=Pattern: Golden Mantle of the Dawn", "=ds=#p7# (300)" };
+ { 9, 19217, "", "=q1=Pattern: Argent Shoulders", "=ds=#p8# (300)" };
+ { 10, 13810, "", "=q1=Blessed Sunfruit", "=ds=#e3#" };
+ { 11, 13813, "", "=q1=Blessed Sunfruit Juice", "=ds=#e4#" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 18182, "", "=q2=Chromatic Mantle of the Dawn", "=ds=#s3# #e17#" };
+ };
+};
+---------------------------------------------------
+--- Bloodsail Buccaneers & Hydraxian Waterlords ---
+---------------------------------------------------
+
+AtlasLoot_Data["Bloodsail"] = {
+ Name = BabbleFaction["Bloodsail Buccaneers"];
+ {
Name = BabbleFaction["Bloodsail Buccaneers"];
- {
- Name = BabbleFaction["Bloodsail Buccaneers"];
- { 1, 0, "INV_Helmet_66", "=q6="..BabbleFaction["Bloodsail Buccaneers"], "=q5=#r1#"};
- { 2, 22742, "", "=q1=Bloodsail Shirt", "=ds=#s5#"};
- { 3, 22743, "", "=q1=Bloodsail Sash", "=ds=#s10#"};
- { 4, 22745, "", "=q1=Bloodsail Pants", "=ds=#s11#"};
- { 5, 22744, "", "=q1=Bloodsail Boots", "=ds=#s12#"};
- { 7, 0, "INV_Helmet_66", "=q6="..BabbleFaction["Bloodsail Buccaneers"], "=q5=#r2#"};
- { 8, 12185, "", "=q2=Bloodsail Admiral's Hat", "=ds=#s1#, #a1#"};
- };
+ { 1, 0, "INV_Helmet_66", "=q6=" .. BabbleFaction["Bloodsail Buccaneers"], "=q5=#r1#" };
+ { 2, 22742, "", "=q1=Bloodsail Shirt", "=ds=#s5#" };
+ { 3, 22743, "", "=q1=Bloodsail Sash", "=ds=#s10#" };
+ { 4, 22745, "", "=q1=Bloodsail Pants", "=ds=#s11#" };
+ { 5, 22744, "", "=q1=Bloodsail Boots", "=ds=#s12#" };
+ { 7, 0, "INV_Helmet_66", "=q6=" .. BabbleFaction["Bloodsail Buccaneers"], "=q5=#r2#" };
+ { 8, 12185, "", "=q2=Bloodsail Admiral's Hat", "=ds=#s1#, #a1#" };
};
+};
- AtlasLoot_Data["Hydraxian"] = {
- Name = BabbleFaction["Hydraxian Waterlords"];
- {
- Name = BabbleFaction["Hydraxian Waterlords"];
- { 1, 0, "Spell_Frost_SummonWaterElemental_2", "=q6="..BabbleFaction["Hydraxian Waterlords"], "=q5=#r3#"};
- { 2, 18399, "", "=q3=Ocean's Breeze", "=q1=#m4#: =ds=#s13#"};
- { 3, 18398, "", "=q3=Tidal Loop", "=q1=#m4#: =ds=#s13#"};
- { 4, 17333, "", "=q1=Aqual Quintessence", "=ds=#m3#"};
- { 16, 0, "Spell_Frost_SummonWaterElemental_2", "=q6="..BabbleFaction["Hydraxian Waterlords"], "=q5=#r4#"};
- { 17, 22754, "", "=q1=Eternal Quintessence", "=ds=#m3#"};
- };
+AtlasLoot_Data["Hydraxian"] = {
+ Name = BabbleFaction["Hydraxian Waterlords"];
+ {
+ Name = BabbleFaction["Hydraxian Waterlords"];
+ { 1, 0, "Spell_Frost_SummonWaterElemental_2", "=q6=" .. BabbleFaction["Hydraxian Waterlords"], "=q5=#r3#" };
+ { 2, 18399, "", "=q3=Ocean's Breeze", "=q1=#m4#: =ds=#s13#" };
+ { 3, 18398, "", "=q3=Tidal Loop", "=q1=#m4#: =ds=#s13#" };
+ { 4, 17333, "", "=q1=Aqual Quintessence", "=ds=#m3#" };
+ { 16, 0, "Spell_Frost_SummonWaterElemental_2", "=q6=" .. BabbleFaction["Hydraxian Waterlords"], "=q5=#r4#" };
+ { 17, 22754, "", "=q1=Eternal Quintessence", "=ds=#m3#" };
};
- -------------------------
- --- Brood of Nozdormu ---
- -------------------------
+};
+-------------------------
+--- Brood of Nozdormu ---
+-------------------------
- AtlasLoot_Data["AQBroodRings"] = {
- Name = BabbleFaction["Brood of Nozdormu"];
- {
- Name = BabbleFaction["Brood of Nozdormu"];
- { 1, 0, "INV_Jewelry_Ring_40", "=q6="..AL["Path of the Conqueror"], ""};
- { 2, 21201, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r1#"};
- { 3, 21202, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r2#"};
- { 4, 21203, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r3#"};
- { 5, 21204, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r4#"};
- { 6, 21205, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r5#"};
- { 8, 0, "INV_Jewelry_Ring_40", "=q6="..AL["Path of the Invoker"], ""};
- { 9, 21206, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r1#"};
- { 10, 21207, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r2#"};
- { 11, 21208, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r3#"};
- { 12, 21209, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r4#"};
- { 13, 21210, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r5#"};
- { 16, 0, "INV_Jewelry_Ring_40", "=q6="..AL["Path of the Protector"], ""};
- { 17, 21196, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r1#"};
- { 18, 21197, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r2#"};
- { 19, 21198, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r3#"};
- { 20, 21199, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r4#"};
- { 21, 21200, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r5#"};
- };
+AtlasLoot_Data["AQBroodRings"] = {
+ Name = BabbleFaction["Brood of Nozdormu"];
+ {
+ Name = BabbleFaction["Brood of Nozdormu"];
+ { 1, 0, "INV_Jewelry_Ring_40", "=q6=" .. AL["Path of the Conqueror"], "" };
+ { 2, 21201, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r1#" };
+ { 3, 21202, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r2#" };
+ { 4, 21203, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r3#" };
+ { 5, 21204, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r4#" };
+ { 6, 21205, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r5#" };
+ { 8, 0, "INV_Jewelry_Ring_40", "=q6=" .. AL["Path of the Invoker"], "" };
+ { 9, 21206, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r1#" };
+ { 10, 21207, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r2#" };
+ { 11, 21208, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r3#" };
+ { 12, 21209, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r4#" };
+ { 13, 21210, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r5#" };
+ { 16, 0, "INV_Jewelry_Ring_40", "=q6=" .. AL["Path of the Protector"], "" };
+ { 17, 21196, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r1#" };
+ { 18, 21197, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r2#" };
+ { 19, 21198, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r3#" };
+ { 20, 21199, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r4#" };
+ { 21, 21200, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r5#" };
};
+};
- -----------------------
- --- Cenarion Circle ---
- -----------------------
+-----------------------
+--- Cenarion Circle ---
+-----------------------
- AtlasLoot_Data["Cenarion"] = {
- Name = BabbleFaction["Cenarion Circle"];
- {
- Name = BabbleFaction["Cenarion Circle"];
- { 1, 22209, "", "=q1=Plans: Heavy Obsidian Belt", "=ds=#p2# (300)"};
- { 2, 22768, "", "=q1=Plans: Ironvine Belt", "=ds=#p2# (300)"};
- { 3, 20732, "", "=q1=Formula: Enchant Cloak - Greater Fire Resistance", "=ds=#p4# (300)"};
- { 4, 22769, "", "=q1=Pattern: Bramblewood Belt", "=ds=#p7# (300)"};
- { 5, 20509, "", "=q1=Pattern: Sandstalker Bracers", "=ds=#p7# (300)"};
- { 6, 20506, "", "=q1=Pattern: Spitfire Bracers", "=ds=#p7# (300)"};
- { 7, 22772, "", "=q1=Pattern: Sylvan Shoulders", "=ds=#p8# (300)"};
- { 8, 22310, "", "=q1=Pattern: Cenarion Herb Bag", "=ds=#p8# (275)"};
- { 10, 20802, "", "=q2=Cenarion Combat Badge", "=ds=#m17#"};
- { 11, 20800, "", "=q2=Cenarion Logistics Badge", "=ds=#m17#"};
- { 12, 21515, "", "=q2=Mark of Remulos", "=ds=#m17#"};
- { 16, 0, "INV_QirajIdol_Amber", "=q6=#j8#", ""};
- { 17, 21187, "", "=q3=Earthweave Cloak", "=ds=#s4#", "5 #ccombat# 3 #clogistics# 7 #ctactical#"};
- { 18, 21178, "", "=q3=Gloves of Earthen Power", "=ds=#s9#, #a2#", "5 #ccombat# 3 #clogistics# 7 #ctactical#"};
- { 19, 21179, "", "=q3=Band of Earthen Wrath", "=ds=#s13#", "5 #ccombat# 3 #clogistics# 7 #ctactical#"};
- { 25, 20801, "", "=q2=Cenarion Tactical Badge", "=ds=#m17#"};
- { 26, 21508, "", "=q2=Mark of Cenarius", "=ds=#m17#"};
- };
- {
- Name = BabbleFaction["Cenarion Circle"];
- { 1, 22767, "", "=q1=Plans: Ironvine Gloves", "=ds=#p2# (300)"};
- { 2, 22214, "", "=q1=Plans: Light Obsidian Belt", "=ds=#p2# (300)"};
- { 3, 20733, "", "=q1=Formula: Enchant Cloak - Greater Nature Resistance", "=ds=#p4# (300)"};
- { 4, 22770, "", "=q1=Pattern: Bramblewood Boots", "=ds=#p7# (300)"};
- { 5, 20510, "", "=q1=Pattern: Sandstalker Gauntlets", "=ds=#p7# (300)"};
- { 6, 20507, "", "=q1=Pattern: Spitfire Gauntlets", "=ds=#p7# (300)"};
- { 7, 22773, "", "=q1=Pattern: Sylvan Crown", "=ds=#p8# (300)"};
- { 16, 0, "INV_QirajIdol_Amber", "=q6=#j8#", ""};
- { 17, 21183, "", "=q3=Earthpower Vest", "=ds=#s5#, #a1#", "7 #ccombat# 4 #clogistics# 4 #ctactical#"};
- { 18, 21182, "", "=q3=Band of Earthen Might", "=ds=#s13#", "7 #ccombat# 4 #clogistics# 4 #ctactical#"};
- { 19, 21181, "", "=q3=Grace of Earth", "=ds=#s14#", "7 #ccombat# 4 #clogistics# 4 #ctactical#"};
- };
- {
- Name = BabbleFaction["Cenarion Circle"];
- { 1, 22766, "", "=q1=Plans: Ironvine Breastplate", "=ds=#p2# (300)"};
- { 2, 22219, "", "=q1=Plans: Jagged Obsidian Shield", "=ds=#p2# (300)"};
- { 3, 22771, "", "=q1=Pattern: Bramblewood Helm", "=ds=#p7# (300)"};
- { 4, 20511, "", "=q1=Pattern: Sandstalker Breastplate", "=ds=#p7# (300)"};
- { 5, 20508, "", "=q1=Pattern: Spitfire Breastplate", "=ds=#p7# (300)"};
- { 6, 22683, "", "=q1=Pattern: Gaea's Embrace", "=ds=#p8# (300)"};
- { 7, 22312, "", "=q1=Pattern: Satchel of Cenarius", "=ds=#p8# (300)"};
- { 8, 22774, "", "=q1=Pattern: Sylvan Vest", "=ds=#p8# (300)"};
- { 16, 0, "INV_QirajIdol_Amber", "=q6=#j8#", ""};
- { 17, 21186, "", "=q4=Rockfury Bracers", "=ds=#s8#, #a1#", "15 #ccombat# 20 #clogistics# 17 #ctactical# 1 #cremulos#"};
- { 18, 21184, "", "=q4=Deeprock Bracers", "=ds=#s8#, #a4#", "15 #ccombat# 20 #clogistics# 17 #ctactical# 1 #cremulos#"};
- { 19, 21189, "", "=q4=Might of Cenarius", "=ds=#s13#", "15 #ccombat# 20 #clogistics# 17 #ctactical# 1 #cremulos#"};
- { 20, 21185, "", "=q4=Earthcalm Orb", "=ds=#s15#", "15 #ccombat# 20 #clogistics# 17 #ctactical# 1 #cremulos#"};
- };
- {
- Name = BabbleFaction["Cenarion Circle"];
- { 1, 22221, "", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# (300)"};
- { 2, 20382, "", "=q1=Pattern: Dreamscale Breastplate", "=ds=#p7# (300)"};
- { 16, 0, "INV_QirajIdol_Amber", "=q6=#j8#", ""};
- { 17, 21190, "", "=q4=Wrath of Cenarius", "=ds=#s13#", "15 #ccombat# 20 #clogistics# 20 #ctactical# 1 #ccenarius#"};
- { 18, 21180, "", "=q4=Earthstrike", "=ds=#s14#", "15 #ccombat# 20 #clogistics# 20 #ctactical# 1 #ccenarius#"};
- { 19, 21188, "", "=q4=Fist of Cenarius", "=ds=#h2#, #w6#", "15 #ccombat# 20 #clogistics# 20 #ctactical# 1 #ccenarius#", "", ""};
- };
+AtlasLoot_Data["Cenarion"] = {
+ Name = BabbleFaction["Cenarion Circle"];
+ {
+ Name = BabbleFaction["Cenarion Circle"];
+ { 1, 22209, "", "=q1=Plans: Heavy Obsidian Belt", "=ds=#p2# (300)" };
+ { 2, 22768, "", "=q1=Plans: Ironvine Belt", "=ds=#p2# (300)" };
+ { 3, 20732, "", "=q1=Formula: Enchant Cloak - Greater Fire Resistance", "=ds=#p4# (300)" };
+ { 4, 22769, "", "=q1=Pattern: Bramblewood Belt", "=ds=#p7# (300)" };
+ { 5, 20509, "", "=q1=Pattern: Sandstalker Bracers", "=ds=#p7# (300)" };
+ { 6, 20506, "", "=q1=Pattern: Spitfire Bracers", "=ds=#p7# (300)" };
+ { 7, 22772, "", "=q1=Pattern: Sylvan Shoulders", "=ds=#p8# (300)" };
+ { 8, 22310, "", "=q1=Pattern: Cenarion Herb Bag", "=ds=#p8# (275)" };
+ { 10, 20802, "", "=q2=Cenarion Combat Badge", "=ds=#m17#" };
+ { 11, 20800, "", "=q2=Cenarion Logistics Badge", "=ds=#m17#" };
+ { 12, 21515, "", "=q2=Mark of Remulos", "=ds=#m17#" };
+ { 16, 0, "INV_QirajIdol_Amber", "=q6=#j8#", "" };
+ { 17, 21187, "", "=q3=Earthweave Cloak", "=ds=#s4#", "5 #ccombat# 3 #clogistics# 7 #ctactical#" };
+ { 18, 21178, "", "=q3=Gloves of Earthen Power", "=ds=#s9#, #a2#", "5 #ccombat# 3 #clogistics# 7 #ctactical#" };
+ { 19, 21179, "", "=q3=Band of Earthen Wrath", "=ds=#s13#", "5 #ccombat# 3 #clogistics# 7 #ctactical#" };
+ { 25, 20801, "", "=q2=Cenarion Tactical Badge", "=ds=#m17#" };
+ { 26, 21508, "", "=q2=Mark of Cenarius", "=ds=#m17#" };
};
-
- ----------------------------------------
- --- Stormpike Guard & Frostwolf Clan ---
- ----------------------------------------
-
- AtlasLoot_Data["AlteracFactions"] = {
- Name = BabbleZone["Alterac Valley"];
- {
- Name = BabbleFaction["Stormpike Guard"].." ("..BabbleFaction["Alliance"]..")";
- { 1, 17904, "", "=q4=Stormpike Insignia Rank 6", "=ds=#s14#, =q1=#r5#"};
- { 2, 17903, "", "=q3=Stormpike Insignia Rank 5", "=ds=#s14#, =q1=#r5#"};
- { 3, 17902, "", "=q3=Stormpike Insignia Rank 4", "=ds=#s14#, =q1=#r4#"};
- { 4, 17901, "", "=q2=Stormpike Insignia Rank 3", "=ds=#s14#, =q1=#r3#"};
- { 5, 17900, "", "=q2=Stormpike Insignia Rank 2", "=ds=#s14#, =q1=#r2#"};
- { 6, 17691, "", "=q2=Stormpike Insignia Rank 1", "=ds=#s14#, =q1=#r1#"};
- { 7, 20648, "", "=q3=Cold Forged Hammer", "=q1=#m4#: =ds=#h3#, #w6#"};
- { 8, 19106, "", "=q3=Ice Barbed Spear", "=q1=#m4#: =ds=#w7#"};
- { 9, 19108, "", "=q3=Wand of Biting Cold", "=q1=#m4#: =ds=#w12#"};
- { 10, 19107, "", "=q3=Bloodseeker", "=q1=#m4#: =ds=#w3#"};
- };
- {
- Name = BabbleFaction["Frostwolf Clan"].." ("..BabbleFaction["Horde"]..")";
- { 1, 17909, "", "=q4=Frostwolf Insignia Rank 6", "=ds=#s14#, =q1=#r5#"};
- { 2, 17908, "", "=q3=Frostwolf Insignia Rank 5", "=ds=#s14#, =q1=#r5#"};
- { 3, 17907, "", "=q3=Frostwolf Insignia Rank 4", "=ds=#s14#, =q1=#r4#"};
- { 4, 17906, "", "=q2=Frostwolf Insignia Rank 3", "=ds=#s14#, =q1=#r3#"};
- { 5, 17905, "", "=q2=Frostwolf Insignia Rank 2", "=ds=#s14#, =q1=#r2#"};
- { 6, 17690, "", "=q2=Frostwolf Insignia Rank 1", "=ds=#s14#, =q1=#r1#"};
- };
+ {
+ Name = BabbleFaction["Cenarion Circle"];
+ { 1, 22767, "", "=q1=Plans: Ironvine Gloves", "=ds=#p2# (300)" };
+ { 2, 22214, "", "=q1=Plans: Light Obsidian Belt", "=ds=#p2# (300)" };
+ { 3, 20733, "", "=q1=Formula: Enchant Cloak - Greater Nature Resistance", "=ds=#p4# (300)" };
+ { 4, 22770, "", "=q1=Pattern: Bramblewood Boots", "=ds=#p7# (300)" };
+ { 5, 20510, "", "=q1=Pattern: Sandstalker Gauntlets", "=ds=#p7# (300)" };
+ { 6, 20507, "", "=q1=Pattern: Spitfire Gauntlets", "=ds=#p7# (300)" };
+ { 7, 22773, "", "=q1=Pattern: Sylvan Crown", "=ds=#p8# (300)" };
+ { 16, 0, "INV_QirajIdol_Amber", "=q6=#j8#", "" };
+ { 17, 21183, "", "=q3=Earthpower Vest", "=ds=#s5#, #a1#", "7 #ccombat# 4 #clogistics# 4 #ctactical#" };
+ { 18, 21182, "", "=q3=Band of Earthen Might", "=ds=#s13#", "7 #ccombat# 4 #clogistics# 4 #ctactical#" };
+ { 19, 21181, "", "=q3=Grace of Earth", "=ds=#s14#", "7 #ccombat# 4 #clogistics# 4 #ctactical#" };
};
-
- ---------------------------
- --- Thorium Brotherhood ---
- ---------------------------
-
- AtlasLoot_Data["Thorium"] = {
- Name = BabbleFaction["Thorium Brotherhood"];
- {
- Name = BabbleFaction["Friendly"];
- { 1, 17051, "", "=q3=Plans: Dark Iron Bracers", "=ds=#p2# (295)"};
- { 2, 20761, "", "=q1=Recipe: Transmute Elemental Fire", "=ds=#p1# (300)"};
- { 3, 19444, "", "=q1=Formula: Enchant Weapon - Strength", "=ds=#p4# (290)"};
- { 4, 17023, "", "=q1=Pattern: Molten Helm", "=ds=#p7# (300)"};
- { 5, 17022, "", "=q1=Pattern: Corehound Boots", "=ds=#p7# (295)"};
- { 6, 17018, "", "=q1=Pattern: Flarecore Gloves", "=ds=#p8# (300)"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 17060, "", "=q3=Plans: Dark Iron Destroyer", "=ds=#p2# (300)"};
- { 2, 17059, "", "=q3=Plans: Dark Iron Reaver", "=ds=#p2# (300)"};
- { 3, 17049, "", "=q3=Plans: Fiery Chain Girdle", "=ds=#p2# (295)"};
- { 4, 19206, "", "=q1=Plans: Dark Iron Helm", "=ds=#p2# (300)"};
- { 5, 19448, "", "=q1=Formula: Enchant Weapon - Mighty Spirit", "=ds=#p4# (300)"};
- { 6, 17025, "", "=q1=Pattern: Black Dragonscale Boots", "=ds=#p7# (300)"};
- { 7, 19330, "", "=q1=Pattern: Lava Belt", "=ds=#p7# (300)"};
- { 8, 17017, "", "=q1=Pattern: Flarecore Mantle", "=ds=#p8# (300)"};
- { 9, 19219, "", "=q1=Pattern: Flarecore Robe", "=ds=#p8# (300)"};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 18592, "", "=q4=Plans: Sulfuron Hammer", "=ds=#p2# (300), #m4#"};
- { 2, 17052, "", "=q3=Plans: Dark Iron Leggings", "=ds=#p2# (300)"};
- { 3, 17053, "", "=q3=Plans: Fiery Chain Shoulders", "=ds=#p2# (300)"};
- { 4, 19209, "", "=q1=Plans: Blackfury", "=ds=#p2# (300)"};
- { 5, 19208, "", "=q1=Plans: Black Amnesty", "=ds=#p2# (300)"};
- { 6, 19207, "", "=q1=Plans: Dark Iron Gauntlets", "=ds=#p2# (300)"};
- { 7, 19449, "", "=q1=Formula: Enchant Weapon - Mighty Intellect", "=ds=#p4# (300)"};
- { 8, 19331, "", "=q1=Pattern: Chromatic Gauntlets", "=ds=#p7# (300)"};
- { 9, 19332, "", "=q1=Pattern: Corehound Belt", "=ds=#p7# (300)"};
- { 9, 19333, "", "=q1=Pattern: Molten Belt", "=ds=#p7# (300)"};
- { 10, 19220, "", "=q1=Pattern: Flarecore Leggings", "=ds=#p8# (300)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 19211, "", "=q1=Plans: Blackguard", "=ds=#p2# (300)"};
- { 2, 20040, "", "=q1=Plans: Dark Iron Boots", "=ds=#p2# (300)"};
- { 3, 19210, "", "=q1=Plans: Ebon Hand", "=ds=#p2# (300)"};
- { 4, 19212, "", "=q1=Plans: Nightfall", "=ds=#p2# (300)"};
- };
+ {
+ Name = BabbleFaction["Cenarion Circle"];
+ { 1, 22766, "", "=q1=Plans: Ironvine Breastplate", "=ds=#p2# (300)" };
+ { 2, 22219, "", "=q1=Plans: Jagged Obsidian Shield", "=ds=#p2# (300)" };
+ { 3, 22771, "", "=q1=Pattern: Bramblewood Helm", "=ds=#p7# (300)" };
+ { 4, 20511, "", "=q1=Pattern: Sandstalker Breastplate", "=ds=#p7# (300)" };
+ { 5, 20508, "", "=q1=Pattern: Spitfire Breastplate", "=ds=#p7# (300)" };
+ { 6, 22683, "", "=q1=Pattern: Gaea's Embrace", "=ds=#p8# (300)" };
+ { 7, 22312, "", "=q1=Pattern: Satchel of Cenarius", "=ds=#p8# (300)" };
+ { 8, 22774, "", "=q1=Pattern: Sylvan Vest", "=ds=#p8# (300)" };
+ { 16, 0, "INV_QirajIdol_Amber", "=q6=#j8#", "" };
+ { 17, 21186, "", "=q4=Rockfury Bracers", "=ds=#s8#, #a1#", "15 #ccombat# 20 #clogistics# 17 #ctactical# 1 #cremulos#" };
+ { 18, 21184, "", "=q4=Deeprock Bracers", "=ds=#s8#, #a4#", "15 #ccombat# 20 #clogistics# 17 #ctactical# 1 #cremulos#" };
+ { 19, 21189, "", "=q4=Might of Cenarius", "=ds=#s13#", "15 #ccombat# 20 #clogistics# 17 #ctactical# 1 #cremulos#" };
+ { 20, 21185, "", "=q4=Earthcalm Orb", "=ds=#s15#", "15 #ccombat# 20 #clogistics# 17 #ctactical# 1 #cremulos#" };
};
- ----------------------
- --- Timbermaw Hold ---
- ----------------------
-
- AtlasLoot_Data["Timbermaw"] = {
- Name = BabbleFaction["Timbermaw Hold"];
- {
- Name = BabbleFaction["Timbermaw Hold"];
- { 1, 0, "INV_Misc_Horn_01", "=q6=#r2#", ""};
- { 2, 13484, "", "=q2=Recipe: Transmute Earth to Water", "=ds=#p1# (275)"};
- { 3, 22392, "", "=q1=Formula: Enchant 2H Weapon - Agility", "=ds=#p4# (290)"};
- { 4, 20254, "", "=q1=Pattern: Warbear Woolies", "=ds=#p7# (285)"};
- { 5, 20253, "", "=q1=Pattern: Warbear Harness", "=ds=#p7# (275)"};
- { 7, 0, "INV_Misc_Horn_01", "=q6=#r3#", ""};
- { 8, 16768, "", "=q2=Furbolg Medicine Pouch", "=ds=#s15#"};
- { 9, 16769, "", "=q2=Furbolg Medicine Totem", "=ds=#h3#, #w6#"};
- { 10, 19202, "", "=q1=Plans: Heavy Timbermaw Belt", "=ds=#p2# (290)"};
- { 11, 19445, "", "=q1=Formula: Enchant Weapon - Agility", "=ds=#p4# (290)"};
- { 12, 19326, "", "=q1=Pattern: Might of the Timbermaw", "=ds=#p7# (290)"};
- { 13, 19215, "", "=q1=Pattern: Wisdom of the Timbermaw", "=ds=#p8# (290)"};
- { 16, 0, "INV_Misc_Horn_01", "=q6=#r4#", ""};
- { 17, 19204, "", "=q1=Plans: Heavy Timbermaw Boots", "=ds=#p2# (300)"};
- { 18, 19327, "", "=q1=Pattern: Timbermaw Brawlers", "=ds=#p7# (300)"};
- { 19, 19218, "", "=q1=Pattern: Mantle of the Timbermaw", "=ds=#p8# (300)"};
- { 22, 0, "INV_Misc_Horn_01", "=q6=#r5#", ""};
- { 23, 21326, "", "=q4=Defender of the Timbermaw", "=q1=#m4#: =ds=#s14#"};
- };
+ {
+ Name = BabbleFaction["Cenarion Circle"];
+ { 1, 22221, "", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# (300)" };
+ { 2, 20382, "", "=q1=Pattern: Dreamscale Breastplate", "=ds=#p7# (300)" };
+ { 16, 0, "INV_QirajIdol_Amber", "=q6=#j8#", "" };
+ { 17, 21190, "", "=q4=Wrath of Cenarius", "=ds=#s13#", "15 #ccombat# 20 #clogistics# 20 #ctactical# 1 #ccenarius#" };
+ { 18, 21180, "", "=q4=Earthstrike", "=ds=#s14#", "15 #ccombat# 20 #clogistics# 20 #ctactical# 1 #ccenarius#" };
+ { 19, 21188, "", "=q4=Fist of Cenarius", "=ds=#h2#, #w6#", "15 #ccombat# 20 #clogistics# 20 #ctactical# 1 #ccenarius#", "", "" };
};
+};
- ----------------------
- --- Zandalar Tribe ---
- ----------------------
+----------------------------------------
+--- Stormpike Guard & Frostwolf Clan ---
+----------------------------------------
- AtlasLoot_Data["Zandalar"] = {
- Name = BabbleFaction["Zandalar Tribe"];
- {
- Name = AL["Miscellaneous"];
- { 1, 19858, "", "=q2=Zandalar Honor Token", "=ds=#m17#"};
- };
- {
- Name = BabbleFaction["Friendly"];
- { 1, 0, "INV_Misc_Coin_08", "=q6=#r2#", ""};
- { 2, 20012, "", "=q1=Recipe: Greater Dreamless Sleep", "=ds=#p1# (275)"};
- { 3, 19778, "", "=q1=Plans: Bloodsoul Gauntlets", "=ds=#p2# (300)"};
- { 4, 19781, "", "=q1=Plans: Darksoul Shoulders", "=ds=#p2# (300)"};
- { 5, 20757, "", "=q1=Formula: Brilliant Mana Oil", "=ds=#p4# (300)"};
- { 6, 20001, "", "=q1=Schematic: Bloodvine Lens", "=ds=#p5# (300)"};
- { 7, 19771, "", "=q1=Pattern: Primal Batskin Bracers", "=ds=#p7# (300)"};
- { 8, 19766, "", "=q1=Pattern: Bloodvine Boots", "=ds=#p8# (300)"};
- };
- {
- Name = BabbleFaction["Honored"];
- { 1, 20014, "", "=q1=Recipe: Major Troll's Blood Potion", "=ds=#p1# (290)"};
- { 2, 19777, "", "=q1=Plans: Bloodsoul Shoulders", "=ds=#p2# (300)"};
- { 3, 19780, "", "=q1=Plans: Darksoul Leggings", "=ds=#p2# (300)"};
- { 4, 20756, "", "=q1=Formula: Brilliant Wizard Oil", "=ds=#p4# (300)"};
- { 5, 20000, "", "=q1=Schematic: Bloodvine Goggles", "=ds=#p5# (300)"};
- { 6, 19773, "", "=q1=Pattern: Blood Tiger Shoulders", "=ds=#p7# (300)"};
- { 7, 19770, "", "=q1=Pattern: Primal Batskin Gloves", "=ds=#p7# (300)"};
- { 8, 19765, "", "=q1=Pattern: Bloodvine Leggings", "=ds=#p8# (300)"};
- { 9, 20031, "", "=q1=Essence Mango", "=ds=#e3#", "1 #zandalar#", ""};
- };
- {
- Name = BabbleFaction["Revered"];
- { 1, 20080, "", "=q2=Sheen of Zanza", "=ds=#e2#", "3 #zandalar#", ""};
- { 2, 20079, "", "=q2=Spirit of Zanza", "=ds=#e2#", "3 #zandalar#", ""};
- { 3, 20081, "", "=q2=Swiftness of Zanza", "=ds=#e2#", "3 #zandalar#", ""};
- { 4, 20011, "", "=q1=Recipe: Mageblood Potion", "=ds=#p1# (275)"};
- { 5, 19776, "", "=q1=Plans: Bloodsoul Breastplate", "=ds=#p2# (300)"};
- { 6, 19779, "", "=q1=Plans: Darksoul Breastplate", "=ds=#p2# (300)"};
- { 7, 19772, "", "=q1=Pattern: Blood Tiger Breastplate", "=ds=#p7# (300)"};
- { 8, 19769, "", "=q1=Pattern: Primal Batskin Jerkin", "=ds=#p7# (300)"};
- { 9, 19764, "", "=q1=Pattern: Bloodvine Vest", "=ds=#p8# (300)"};
- };
- {
- Name = BabbleFaction["Exalted"];
- { 1, 20077, "", "=q3=Zandalar Signet of Might", "=ds=#s3# #e17#", "15 #zandalar#", ""};
- { 2, 20076, "", "=q3=Zandalar Signet of Mojo", "=ds=#s3# #e17#", "15 #zandalar#", ""};
- { 3, 20078, "", "=q3=Zandalar Signet of Serenity", "=ds=#s3# #e17#", "15 #zandalar#", ""};
- { 4, 20013, "", "=q1=Recipe: Living Action Potion", "=ds=#p1# (285)"};
- };
+AtlasLoot_Data["AlteracFactions"] = {
+ Name = BabbleZone["Alterac Valley"];
+ {
+ Name = BabbleFaction["Stormpike Guard"] .. " (" .. BabbleFaction["Alliance"] .. ")";
+ { 1, 17904, "", "=q4=Stormpike Insignia Rank 6", "=ds=#s14#, =q1=#r5#" };
+ { 2, 17903, "", "=q3=Stormpike Insignia Rank 5", "=ds=#s14#, =q1=#r5#" };
+ { 3, 17902, "", "=q3=Stormpike Insignia Rank 4", "=ds=#s14#, =q1=#r4#" };
+ { 4, 17901, "", "=q2=Stormpike Insignia Rank 3", "=ds=#s14#, =q1=#r3#" };
+ { 5, 17900, "", "=q2=Stormpike Insignia Rank 2", "=ds=#s14#, =q1=#r2#" };
+ { 6, 17691, "", "=q2=Stormpike Insignia Rank 1", "=ds=#s14#, =q1=#r1#" };
+ { 7, 20648, "", "=q3=Cold Forged Hammer", "=q1=#m4#: =ds=#h3#, #w6#" };
+ { 8, 19106, "", "=q3=Ice Barbed Spear", "=q1=#m4#: =ds=#w7#" };
+ { 9, 19108, "", "=q3=Wand of Biting Cold", "=q1=#m4#: =ds=#w12#" };
+ { 10, 19107, "", "=q3=Bloodseeker", "=q1=#m4#: =ds=#w3#" };
};
+ {
+ Name = BabbleFaction["Frostwolf Clan"] .. " (" .. BabbleFaction["Horde"] .. ")";
+ { 1, 17909, "", "=q4=Frostwolf Insignia Rank 6", "=ds=#s14#, =q1=#r5#" };
+ { 2, 17908, "", "=q3=Frostwolf Insignia Rank 5", "=ds=#s14#, =q1=#r5#" };
+ { 3, 17907, "", "=q3=Frostwolf Insignia Rank 4", "=ds=#s14#, =q1=#r4#" };
+ { 4, 17906, "", "=q2=Frostwolf Insignia Rank 3", "=ds=#s14#, =q1=#r3#" };
+ { 5, 17905, "", "=q2=Frostwolf Insignia Rank 2", "=ds=#s14#, =q1=#r2#" };
+ { 6, 17690, "", "=q2=Frostwolf Insignia Rank 1", "=ds=#s14#, =q1=#r1#" };
+ };
+};
- --------------------
- --- World Bosses ---
- --------------------
+---------------------------
+--- Thorium Brotherhood ---
+---------------------------
- ----------------------------
- --- Dragons of Nightmare ---
- ----------------------------
+AtlasLoot_Data["Thorium"] = {
+ Name = BabbleFaction["Thorium Brotherhood"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 17051, "", "=q3=Plans: Dark Iron Bracers", "=ds=#p2# (295)" };
+ { 2, 20761, "", "=q1=Recipe: Transmute Elemental Fire", "=ds=#p1# (300)" };
+ { 3, 19444, "", "=q1=Formula: Enchant Weapon - Strength", "=ds=#p4# (290)" };
+ { 4, 17023, "", "=q1=Pattern: Molten Helm", "=ds=#p7# (300)" };
+ { 5, 17022, "", "=q1=Pattern: Corehound Boots", "=ds=#p7# (295)" };
+ { 6, 17018, "", "=q1=Pattern: Flarecore Gloves", "=ds=#p8# (300)" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 17060, "", "=q3=Plans: Dark Iron Destroyer", "=ds=#p2# (300)" };
+ { 2, 17059, "", "=q3=Plans: Dark Iron Reaver", "=ds=#p2# (300)" };
+ { 3, 17049, "", "=q3=Plans: Fiery Chain Girdle", "=ds=#p2# (295)" };
+ { 4, 19206, "", "=q1=Plans: Dark Iron Helm", "=ds=#p2# (300)" };
+ { 5, 19448, "", "=q1=Formula: Enchant Weapon - Mighty Spirit", "=ds=#p4# (300)" };
+ { 6, 17025, "", "=q1=Pattern: Black Dragonscale Boots", "=ds=#p7# (300)" };
+ { 7, 19330, "", "=q1=Pattern: Lava Belt", "=ds=#p7# (300)" };
+ { 8, 17017, "", "=q1=Pattern: Flarecore Mantle", "=ds=#p8# (300)" };
+ { 9, 19219, "", "=q1=Pattern: Flarecore Robe", "=ds=#p8# (300)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 18592, "", "=q4=Plans: Sulfuron Hammer", "=ds=#p2# (300), #m4#" };
+ { 2, 17052, "", "=q3=Plans: Dark Iron Leggings", "=ds=#p2# (300)" };
+ { 3, 17053, "", "=q3=Plans: Fiery Chain Shoulders", "=ds=#p2# (300)" };
+ { 4, 19209, "", "=q1=Plans: Blackfury", "=ds=#p2# (300)" };
+ { 5, 19208, "", "=q1=Plans: Black Amnesty", "=ds=#p2# (300)" };
+ { 6, 19207, "", "=q1=Plans: Dark Iron Gauntlets", "=ds=#p2# (300)" };
+ { 7, 19449, "", "=q1=Formula: Enchant Weapon - Mighty Intellect", "=ds=#p4# (300)" };
+ { 8, 19331, "", "=q1=Pattern: Chromatic Gauntlets", "=ds=#p7# (300)" };
+ { 9, 19332, "", "=q1=Pattern: Corehound Belt", "=ds=#p7# (300)" };
+ { 9, 19333, "", "=q1=Pattern: Molten Belt", "=ds=#p7# (300)" };
+ { 10, 19220, "", "=q1=Pattern: Flarecore Leggings", "=ds=#p8# (300)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 19211, "", "=q1=Plans: Blackguard", "=ds=#p2# (300)" };
+ { 2, 20040, "", "=q1=Plans: Dark Iron Boots", "=ds=#p2# (300)" };
+ { 3, 19210, "", "=q1=Plans: Ebon Hand", "=ds=#p2# (300)" };
+ { 4, 19212, "", "=q1=Plans: Nightfall", "=ds=#p2# (300)" };
+ };
+};
+----------------------
+--- Timbermaw Hold ---
+----------------------
- AtlasLoot_Data["WorldBossesCLASSIC"] = {
- Name = "World Bosses";
- Type = "ClassicRaid";
+AtlasLoot_Data["Timbermaw"] = {
+ Name = BabbleFaction["Timbermaw Hold"];
+ {
+ Name = BabbleFaction["Timbermaw Hold"];
+ { 1, 0, "INV_Misc_Horn_01", "=q6=#r2#", "" };
+ { 2, 13484, "", "=q2=Recipe: Transmute Earth to Water", "=ds=#p1# (275)" };
+ { 3, 22392, "", "=q1=Formula: Enchant 2H Weapon - Agility", "=ds=#p4# (290)" };
+ { 4, 20254, "", "=q1=Pattern: Warbear Woolies", "=ds=#p7# (285)" };
+ { 5, 20253, "", "=q1=Pattern: Warbear Harness", "=ds=#p7# (275)" };
+ { 7, 0, "INV_Misc_Horn_01", "=q6=#r3#", "" };
+ { 8, 16768, "", "=q2=Furbolg Medicine Pouch", "=ds=#s15#" };
+ { 9, 16769, "", "=q2=Furbolg Medicine Totem", "=ds=#h3#, #w6#" };
+ { 10, 19202, "", "=q1=Plans: Heavy Timbermaw Belt", "=ds=#p2# (290)" };
+ { 11, 19445, "", "=q1=Formula: Enchant Weapon - Agility", "=ds=#p4# (290)" };
+ { 12, 19326, "", "=q1=Pattern: Might of the Timbermaw", "=ds=#p7# (290)" };
+ { 13, 19215, "", "=q1=Pattern: Wisdom of the Timbermaw", "=ds=#p8# (290)" };
+ { 16, 0, "INV_Misc_Horn_01", "=q6=#r4#", "" };
+ { 17, 19204, "", "=q1=Plans: Heavy Timbermaw Boots", "=ds=#p2# (300)" };
+ { 18, 19327, "", "=q1=Pattern: Timbermaw Brawlers", "=ds=#p7# (300)" };
+ { 19, 19218, "", "=q1=Pattern: Mantle of the Timbermaw", "=ds=#p8# (300)" };
+ { 22, 0, "INV_Misc_Horn_01", "=q6=#r5#", "" };
+ { 23, 21326, "", "=q4=Defender of the Timbermaw", "=q1=#m4#: =ds=#s14#" };
+ };
+};
+
+----------------------
+--- Zandalar Tribe ---
+----------------------
+
+AtlasLoot_Data["Zandalar"] = {
+ Name = BabbleFaction["Zandalar Tribe"];
+ {
+ Name = AL["Miscellaneous"];
+ { 1, 19858, "", "=q2=Zandalar Honor Token", "=ds=#m17#" };
+ };
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 0, "INV_Misc_Coin_08", "=q6=#r2#", "" };
+ { 2, 20012, "", "=q1=Recipe: Greater Dreamless Sleep", "=ds=#p1# (275)" };
+ { 3, 19778, "", "=q1=Plans: Bloodsoul Gauntlets", "=ds=#p2# (300)" };
+ { 4, 19781, "", "=q1=Plans: Darksoul Shoulders", "=ds=#p2# (300)" };
+ { 5, 20757, "", "=q1=Formula: Brilliant Mana Oil", "=ds=#p4# (300)" };
+ { 6, 20001, "", "=q1=Schematic: Bloodvine Lens", "=ds=#p5# (300)" };
+ { 7, 19771, "", "=q1=Pattern: Primal Batskin Bracers", "=ds=#p7# (300)" };
+ { 8, 19766, "", "=q1=Pattern: Bloodvine Boots", "=ds=#p8# (300)" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 20014, "", "=q1=Recipe: Major Troll's Blood Potion", "=ds=#p1# (290)" };
+ { 2, 19777, "", "=q1=Plans: Bloodsoul Shoulders", "=ds=#p2# (300)" };
+ { 3, 19780, "", "=q1=Plans: Darksoul Leggings", "=ds=#p2# (300)" };
+ { 4, 20756, "", "=q1=Formula: Brilliant Wizard Oil", "=ds=#p4# (300)" };
+ { 5, 20000, "", "=q1=Schematic: Bloodvine Goggles", "=ds=#p5# (300)" };
+ { 6, 19773, "", "=q1=Pattern: Blood Tiger Shoulders", "=ds=#p7# (300)" };
+ { 7, 19770, "", "=q1=Pattern: Primal Batskin Gloves", "=ds=#p7# (300)" };
+ { 8, 19765, "", "=q1=Pattern: Bloodvine Leggings", "=ds=#p8# (300)" };
+ { 9, 20031, "", "=q1=Essence Mango", "=ds=#e3#", "1 #zandalar#", "" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 20080, "", "=q2=Sheen of Zanza", "=ds=#e2#", "3 #zandalar#", "" };
+ { 2, 20079, "", "=q2=Spirit of Zanza", "=ds=#e2#", "3 #zandalar#", "" };
+ { 3, 20081, "", "=q2=Swiftness of Zanza", "=ds=#e2#", "3 #zandalar#", "" };
+ { 4, 20011, "", "=q1=Recipe: Mageblood Potion", "=ds=#p1# (275)" };
+ { 5, 19776, "", "=q1=Plans: Bloodsoul Breastplate", "=ds=#p2# (300)" };
+ { 6, 19779, "", "=q1=Plans: Darksoul Breastplate", "=ds=#p2# (300)" };
+ { 7, 19772, "", "=q1=Pattern: Blood Tiger Breastplate", "=ds=#p7# (300)" };
+ { 8, 19769, "", "=q1=Pattern: Primal Batskin Jerkin", "=ds=#p7# (300)" };
+ { 9, 19764, "", "=q1=Pattern: Bloodvine Vest", "=ds=#p8# (300)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 20077, "", "=q3=Zandalar Signet of Might", "=ds=#s3# #e17#", "15 #zandalar#", "" };
+ { 2, 20076, "", "=q3=Zandalar Signet of Mojo", "=ds=#s3# #e17#", "15 #zandalar#", "" };
+ { 3, 20078, "", "=q3=Zandalar Signet of Serenity", "=ds=#s3# #e17#", "15 #zandalar#", "" };
+ { 4, 20013, "", "=q1=Recipe: Living Action Potion", "=ds=#p1# (285)" };
+ };
+};
+
+--------------------
+--- World Bosses ---
+--------------------
+
+----------------------------
+--- Dragons of Nightmare ---
+----------------------------
+
+AtlasLoot_Data["WorldBossesCLASSIC"] = {
+ Name = AL["World Bosses"];
+ Type = "ClassicRaid";
{
Name = "Weapons/Trinkets";
- { 1, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#w9# =q1=#m5#", "", "9.70%"};
- { 2, 17070, "", "=q4=Fang of the Mystics", "=ds=#h3#, #w4#", "", "13.64%"};
- { 3, 19130, "", "=q4=Cold Snap", "=ds=#w12#", "", "11.89%"};
- { 4, 17113, "", "=q4=Amberseal Keeper", "=ds=#h2#, #w9#", "", "16.87% "};
- { 5, 20636, "", "=q4=Hibernation Crystal", "=ds=#s14#", "", "12.75%"};
- { 6, 20582, "", "=q4=Trance Stone", "=ds=#s15# =q1=#m5#", "", "9.57%"};
- { 7, 18665, "", "=q4=The Eye of Shadow", "=ds=#s14#", "", "40.96%"};
- { 14, 18704, "", "=q4=Mature Blue Dragon Sinew", "=ds=#m3# =q1=(#c2#)", "", "51.56%"};
- { 15, 18714, "", "=q4=Ancient Sinew Wrapped Lamina", "=q1=#m4#: =ds=#m14# #w19#"};
- { 16, 20580, "", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q1=#m5#", "", "8.93%"};
- { 17, 20599, "", "=q4=Polished Ironwood Crossbow", "=ds=#w3#", "", "12.63%"};
- { 18, 18202, "", "=q4=Eskhandar's Left Claw", "=ds=#h4#, #w13#", "", "11.76%"};
- { 19, 20577, "", "=q4=Nightmare Blade", "=ds=#h1#, #w10#", "", "12.07%"};
- { 20, 20578, "", "=q4=Emerald Dragonfang", "=ds=#h1#, #w4#", "", "9.95%"};
- { 21, 17112, "", "=q4=Empyrean Demolisher", "=ds=#h1#, #w6#", "", "13.54%"};
- { 22, 18542, "", "=q4=Typhoon", "=ds=#h2#, #w10#", "", "16.89%"};
- { 29, 20644, "", "=q4=Nightmare Engulfed Object", "=ds=#m3# =q1=#m5#", "", "80.05%"};
- { 30, 20600, "", "=q4=Malfurion's Signet Ring", "=q1=#m4#: =ds=#s13#"};
- };
- {
- Name = "Physical Gear";
- { 1, 20623, "", "=q4=Circlet of Restless Dreams", "=ds=#s1#, #a2#", "", "10.51%"};
- { 3, 20615, "", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q1=#m5#", "", "8.83%"};
- { 4, 122884, "", "=q4=Wristguards of the Shifting Sands", "=ds=#s8#, #a2#", "", ""};
- { 6, 122885, "", "=q4=Waistguard of the Shifting Sands", "=ds=#s10#, #a2#", "", ""};
- { 8, 18544, "", "=q4=Doomhide Gauntlets", "=ds=#s9#, #a2#", "", "11.76%"};
- { 10, 20627, "", "=q4=Dark Heart Pants", "=ds=#s11#, #a2#", "", "11.68%"};
- { 13, 20633, "", "=q4=Unnatural Leather Spaulders", "=ds=#s3#, #a2#", "", "11.30%"};
- { 11, 20617, "", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q1=#m5#", "", "9.80%"};
- { 16, 20624, "", "=q4=Ring of the Unliving", "=ds=#s13#", "", "13.23%"};
- { 18, 20622, "", "=q4=Dragonheart Necklace", "=ds=#s2#", "", "12.35%"};
- { 20, 18541, "", "=q4=Puissant Cape", "=ds=#s4#", "", "11.71%"};
- { 21, 18204, "", "=q4=Eskhandar's Pelt", "=ds=#s4#, #a1#", "", "12.23%"};
- };
- {
- Name = "Caster Gear";
- { 1, 19132, "", "=q4=Crystal Adorned Crown", "=ds=#s1#, #a1#", "", "13.54%"};
- { 2, 18546, "", "=q4=Infernal Headcage", "=ds=#s1#, #a3#", "", "22.89%"};
- { 3, 20628, "", "=q4=Deviate Growth Cap", "=ds=#s1#, #a2#", "", "15.80%"};
- { 5, 18545, "", "=q4=Leggings of Arcane Supremacy", "=ds=#s11#, #a1#", "", "16.39% "};
- { 6, 19133, "", "=q4=Fel Infused Leggings", "=ds=#s11#, #a1#", "", "12.05%"};
- { 7, 20638, "", "=q4=Leggings of the Demented Mind", "=ds=#s11#, #a3#", "", "3.66%"};
- { 8, 20639, "", "=q4=Strangely Glyphed Legplates", "=ds=#s11#, #a4#", "", "8.87%"};
- { 10, 19131, "", "=q4=Snowblind Shoes", "=ds=#s12#, #a1#", "", "12.23%"};
- { 11, 20631, "", "=q4=Mendicant's Slippers", "=ds=#s12#, #a1#", "", "13.14%"};
- { 12, 20634, "", "=q4=Boots of Fright", "=ds=#s12#, #a2#", "", "10.15%"};
- { 13, 20621, "", "=q4=Boots of the Endless Moor", "=ds=#s12#, #a3#", "", "10.24%"};
- { 14, 20629, "", "=q4=Malignant Footguards", "=ds=#s12#, #a3#", "", "4.46%"};
- { 16, 20630, "", "=q4=Gauntlets of the Shining Light", "=ds=#s9#, #a4#", "", "8.19%"};
- { 17, 20618, "", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q1=#m5#", "", "9.71%"};
- { 15, 20635, "", "=q4=Jade Inlaid Vestments", "=ds=#s5#, #a1#", "", "14.19%"};
- { 19, 19135, "", "=q4=Blacklight Bracer", "=ds=#s8#, #a1#", "", "11.89%"};
- { 20,122886, "", "=q4=Bracers of the Sand Prince", "=ds=#s8#, #a2#", "", ""};
- { 21, 20626, "", "=q4=Black Bark Wristbands", "=ds=#s8#, #a1#", "", "9.44%"};
- { 23,122887, "", "=q4=Belt of the Sand Prince", "=ds=#s10#, #a2#", "", ""};
- { 24, 19134, "", "=q4=Flayed Doomguard Belt", "=ds=#s10#, #a2#", "", "16.89%"};
- { 25, 20625, "", "=q4=Belt of the Dark Bog", "=ds=#s10#, #a1#", "", "10.99%"};
- { 27, 20579, "", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q1=#m5#", "", "9.14%"};
- { 28, 18208, "", "=q4=Drape of Benediction", "=ds=#s4#", "", "11.22%"};
- { 29, 20632, "", "=q4=Mindtear Band", "=ds=#s13#", "", "13.69%"};
- { 30, 18543, "", "=q4=Ring of Entropy", "=ds=#s13#", "", "14.46%"};
- };
- {
- Name = "Tank Gear";
- { 1, 18547, "", "=q4=Unmelting Ice Girdle", "=ds=#s10#, #a4#", "", "12.93%"};
- { 3, 20616, "", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q1=#m5#", "", "10.20%"};
- { 5, 20619, "", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q1=#m5#", "", "8.85%"};
- { 7, 20637, "", "=q4=Acid Inscribed Pauldrons", "=ds=#s3#, #a4#", "", "10.13%"};
- };
+ { 1, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#w9# =q1=#m5#", "", "9.70%" };
+ { 2, 17070, "", "=q4=Fang of the Mystics", "=ds=#h3#, #w4#", "", "13.64%" };
+ { 3, 19130, "", "=q4=Cold Snap", "=ds=#w12#", "", "11.89%" };
+ { 4, 17113, "", "=q4=Amberseal Keeper", "=ds=#h2#, #w9#", "", "16.87% " };
+ { 5, 20636, "", "=q4=Hibernation Crystal", "=ds=#s14#", "", "12.75%" };
+ { 6, 20582, "", "=q4=Trance Stone", "=ds=#s15# =q1=#m5#", "", "9.57%" };
+ { 7, 18665, "", "=q4=The Eye of Shadow", "=ds=#s14#", "", "40.96%" };
+ { 14, 18704, "", "=q4=Mature Blue Dragon Sinew", "=ds=#m3# =q1=(#c2#)", "", "51.56%" };
+ { 15, 18714, "", "=q4=Ancient Sinew Wrapped Lamina", "=q1=#m4#: =ds=#m14# #w19#" };
+ { 16, 20580, "", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q1=#m5#", "", "8.93%" };
+ { 17, 20599, "", "=q4=Polished Ironwood Crossbow", "=ds=#w3#", "", "12.63%" };
+ { 18, 18202, "", "=q4=Eskhandar's Left Claw", "=ds=#h4#, #w13#", "", "11.76%" };
+ { 19, 20577, "", "=q4=Nightmare Blade", "=ds=#h1#, #w10#", "", "12.07%" };
+ { 20, 20578, "", "=q4=Emerald Dragonfang", "=ds=#h1#, #w4#", "", "9.95%" };
+ { 21, 17112, "", "=q4=Empyrean Demolisher", "=ds=#h1#, #w6#", "", "" };
+ { 22, 18542, "", "=q4=Typhoon", "=ds=#h2#, #w10#", "", "16.89%" };
+ { 29, 20644, "", "=q4=Nightmare Engulfed Object", "=ds=#m3# =q1=#m5#", "", "80.05%" };
+ { 30, 20600, "", "=q4=Malfurion's Signet Ring", "=q1=#m4#: =ds=#s13#" };
};
-
+ {
+ Name = "Physical Gear";
+ { 1, 20623, "", "=q4=Circlet of Restless Dreams", "=ds=#s1#, #a2#", "", "10.51%" };
+ { 3, 20615, "", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q1=#m5#", "", "8.83%" };
+ { 4, 122884, "", "=q4=Wristguards of the Shifting Sands", "=ds=#s8#, #a2#", "", "" };
+ { 6, 122885, "", "=q4=Waistguard of the Shifting Sands", "=ds=#s10#, #a2#", "", "" };
+ { 8, 18544, "", "=q4=Doomhide Gauntlets", "=ds=#s9#, #a2#", "", "11.76%" };
+ { 10, 20627, "", "=q4=Dark Heart Pants", "=ds=#s11#, #a2#", "", "11.68%" };
+ { 13, 20633, "", "=q4=Unnatural Leather Spaulders", "=ds=#s3#, #a2#", "", "11.30%" };
+ { 11, 20617, "", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q1=#m5#", "", "9.80%" };
+ { 16, 20624, "", "=q4=Ring of the Unliving", "=ds=#s13#", "", "13.23%" };
+ { 18, 20622, "", "=q4=Dragonheart Necklace", "=ds=#s2#", "", "12.35%" };
+ { 20, 18541, "", "=q4=Puissant Cape", "=ds=#s4#", "", "11.71%" };
+ { 21, 18204, "", "=q4=Eskhandar's Pelt", "=ds=#s4#, #a1#", "", "12.23%" };
+ };
+ {
+ Name = "Caster Gear";
+ { 1, 19132, "", "=q4=Crystal Adorned Crown", "=ds=#s1#, #a1#", "", "" };
+ { 2, 18546, "", "=q4=Infernal Headcage", "=ds=#s1#, #a3#", "", "22.89%" };
+ { 3, 20628, "", "=q4=Deviate Growth Cap", "=ds=#s1#, #a2#", "", "15.80%" };
+ { 5, 18545, "", "=q4=Leggings of Arcane Supremacy", "=ds=#s11#, #a1#", "", "16.39% " };
+ { 6, 19133, "", "=q4=Fel Infused Leggings", "=ds=#s11#, #a1#", "", "12.05%" };
+ { 7, 20638, "", "=q4=Leggings of the Demented Mind", "=ds=#s11#, #a3#", "", "3.66%" };
+ { 8, 20639, "", "=q4=Strangely Glyphed Legplates", "=ds=#s11#, #a4#", "", "8.87%" };
+ { 10, 19131, "", "=q4=Snowblind Shoes", "=ds=#s12#, #a1#", "", "12.23%" };
+ { 11, 20631, "", "=q4=Mendicant's Slippers", "=ds=#s12#, #a1#", "", "13.14%" };
+ { 12, 20634, "", "=q4=Boots of Fright", "=ds=#s12#, #a2#", "", "10.15%" };
+ { 13, 20621, "", "=q4=Boots of the Endless Moor", "=ds=#s12#, #a3#", "", "10.24%" };
+ { 14, 20629, "", "=q4=Malignant Footguards", "=ds=#s12#, #a3#", "", "4.46%" };
+ { 16, 20630, "", "=q4=Gauntlets of the Shining Light", "=ds=#s9#, #a4#", "", "8.19%" };
+ { 17, 20618, "", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q1=#m5#", "", "9.71%" };
+ { 15, 20635, "", "=q4=Jade Inlaid Vestments", "=ds=#s5#, #a1#", "", "14.19%" };
+ { 19, 19135, "", "=q4=Blacklight Bracer", "=ds=#s8#, #a1#", "", "11.89%" };
+ { 20, 122886, "", "=q4=Bracers of the Sand Prince", "=ds=#s8#, #a2#", "", "" };
+ { 21, 20626, "", "=q4=Black Bark Wristbands", "=ds=#s8#, #a1#", "", "9.44%" };
+ { 23, 122887, "", "=q4=Belt of the Sand Prince", "=ds=#s10#, #a2#", "", "" };
+ { 24, 19134, "", "=q4=Flayed Doomguard Belt", "=ds=#s10#, #a2#", "", "16.89%" };
+ { 25, 20625, "", "=q4=Belt of the Dark Bog", "=ds=#s10#, #a1#", "", "10.99%" };
+ { 27, 20579, "", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q1=#m5#", "", "9.14%" };
+ { 28, 18208, "", "=q4=Drape of Benediction", "=ds=#s4#", "", "11.22%" };
+ { 29, 20632, "", "=q4=Mindtear Band", "=ds=#s13#", "", "13.69%" };
+ { 30, 18543, "", "=q4=Ring of Entropy", "=ds=#s13#", "", "14.46%" };
+ };
+ {
+ Name = "Tank Gear";
+ { 1, 18547, "", "=q4=Unmelting Ice Girdle", "=ds=#s10#, #a4#", "", "12.93%" };
+ { 3, 20616, "", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q1=#m5#", "", "10.20%" };
+ { 5, 20619, "", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q1=#m5#", "", "8.85%" };
+ { 7, 20637, "", "=q4=Acid Inscribed Pauldrons", "=ds=#s3#, #a4#", "", "10.13%" };
+ };
+};
diff --git a/AtlasLoot_Vanity/AtlasLoot_Vanity.toc b/AtlasLoot_Vanity/AtlasLoot_Vanity.toc
new file mode 100644
index 0000000..636508e
--- /dev/null
+++ b/AtlasLoot_Vanity/AtlasLoot_Vanity.toc
@@ -0,0 +1,23 @@
+## Interface: 30300
+## Title: AtlasLoot_Vanity
+## Title-zhCN: AtlasLoot |cFF0099FF[交易技能]|r
+## Title-zhTW: |r|cFF0099FF[地圖]|rAL 商業技能
+## Notes: AtlasLoot loot tables of Vanity Items
+## Notes-deDE: AtlasLoot loot tables of Vanity Items
+## Notes-zhCN: AtlasLoot 交易技能制造出的物品表
+## Notes-zhTW: AtlasLoot 商業技能物品資料庫
+## Author: Original: Hegarol, Ascension: Skray/Szyler/Anch/Rvng
+## Version: v6.2.0
+## X-eMail: manager@atlasloot.net
+## X-Category: Map
+## X-License: GPL v2
+## X-Website: https://discord.gg/uYCE2X2FgA
+## Dependencies: AtlasLoot
+## LoadOnDemand: 1
+## X-Curse-Packaged-Version: v6.0.0
+## X-Curse-Project-Name: Atlasloot Enhanced
+## X-Curse-Project-ID: atlasloot-enhanced
+## X-Curse-Repository-ID: wow/atlasloot-enhanced/mainline
+
+vanity.lua
+localization.lua
diff --git a/AtlasLoot_Vanity/localization.lua b/AtlasLoot_Vanity/localization.lua
new file mode 100644
index 0000000..5391491
--- /dev/null
+++ b/AtlasLoot_Vanity/localization.lua
@@ -0,0 +1,511 @@
+-- AtlasLoot loot tables localization file
+-- NOTE: THIS FILE IS AUTO-GENERATED BY A TOOL, ANY MANUALLY CHANGE MIGHT BE OVERWRITTEN.
+-- $Id: localization.lua 2725 2010-07-18 16:25:23Z arith $
+
+local process = function(category,check,data) if not AtlasLoot_Data[category] or #AtlasLoot_Data[category] ~= check then return end for i = 1, #data do if data[i] and data[i] ~= "" then AtlasLoot_Data[category][i][4] = data[i] end end data = nil end
+local locale = GetLocale()
+if locale == "frFR" then
+process("BlacksmithingMailBloodsoulEmbrace",4,{"","=q3=Epaulières d'âmesang","=q3=Cuirasse d'âmesang","=q3=Gantelets d'âmesang"})
+process("BlacksmithingMailFelIronChain",5,{"","=q2=Camail en anneaux de gangrefer","=q2=Tunique en anneaux de gangrefer","=q2=Brassards en anneaux de gangrefer","=q2=Gants en anneaux de gangrefer"})
+process("BlacksmithingPlateAdamantiteB",4,{"","=q3=Cuirasse en adamantite","=q3=Brassards en plaques d'adamantite","=q3=Gants en plaques d'adamantite"})
+process("BlacksmithingPlateBurningRage",5,{"","=q3=Casque rage-acier","=q3=Epaulières rage-acier","=q3=Cuirasse rage-acier","=q3=Gants rage-acier"})
+process("BlacksmithingPlateEnchantedAdaman",5,{"","=q3=Cuirasse enchantée en adamantite","=q3=Ceinture enchantée en adamantite","=q3=Jambières enchantées en adamantite","=q3=Bottes enchantées en adamantite"})
+process("BlacksmithingPlateFaithFelsteel",4,{"","=q3=Casque en gangracier","=q3=Gants en gangracier","=q3=Jambières en gangracier"})
+process("BlacksmithingPlateFelIronPlate",6,{"","=q2=Cuirasse en gangrefer","=q2=Gants en plaques de gangrefer","=q2=Ceinture en plaques de gangrefer","=q2=Pantalon en plaques de gangrefer","=q2=Bottes en plaques de gangrefer"})
+process("BlacksmithingPlateFlameG",5,{"","=q3=Casque plaie-des-flammes","=q3=Cuirasse plaie-des-flammes","=q3=Brassards plaie-des-flammes","=q3=Gants plaie-des-flammes"})
+process("BlacksmithingPlateImperialPlate",8,{"","=q2=Heaume impérial en plaques","=q2=Epaulières impériales en plaques","=q2=Pansière impériale","=q2=Brassards impériaux en plaques","=q2=Ceinture impériale en plaques","=q2=Jambières impériales en plaques","=q2=Bottes impériales en plaques"})
+process("BlacksmithingPlateKhoriumWard",4,{"","=q3=Ceinture en khorium","=q3=Pantalon en khorium","=q3=Bottes en khorium"})
+process("BlacksmithingPlateOrnateSaroniteBattlegear",9,{"","=q3=Bouclier-crâne orné en saronite","=q3=Espauliers ornés en saronite","=q3=Haubert orné en saronite","=q3=Brassards ornés en saronite","=q3=Gantelets ornés en saronite","=q3=Sangle ornée en saronite","=q3=Cuissards ornés en saronite","=q3=Brodequins ornés en saronite"})
+process("BlacksmithingPlateSavageSaroniteBattlegear",9,{"","=q3=Bouclier-crâne sauvage en saronite","=q3=Espauliers sauvages en saronite","=q3=Haubert sauvage en saronite","=q3=Brassards sauvages en saronite","=q3=Gantelets sauvages en saronite","=q3=Sangle sauvage en saronite","=q3=Cuissards sauvages en saronite","=q3=Brodequins sauvages en saronite"})
+process("BlacksmithingPlateTheDarksoul",4,{"","=q3=Epaulières de ténébrâme","=q3=Cuirasse de ténébrâme","=q3=Jambières de ténébrâme"})
+process("CookingDaily1",6,{"=q3=Recette : Gâteau au chocolat délicieux","=q3=Recette : Côtelettes foudroyantes","=q2=Recette : Aileron-de-sang grillé","=q2=Recette : Croquettes de Kibler","=q2=Recette : Soupe de poisson-crâne","=q2=Recette : Talbuk extra piquant"})
+process("CookingDaily2",27,{"=q2=Recette : Aileron-de-dragon noirci","=q2=Recette : Steak de worg noirci","=q2=Recette : Bouchées de bestiole","=q2=Recette : Steak de seiche","=q2=Recette : Filet d'aileron-de-dragon","=q2=Recette : Saumon brûle-langue","=q2=Recette : Rhinocéros sain","=q2=Recette : Steak de raie manta impériale","=q2=Recette : Méga-menu de mammouth","=q2=Recette : Saucisses de rhinocéros puissant","=q2=Recette : Rascasse nordique pochée","=q2=Recette : Steak de wyrm rhinolicieux","=q2=Recette : Lutjan extrême","=q2=Recette : Friandises de mammouth épicées","=q2=Recette : Steak de wyrm épicé","=q2=Recette : Méduse bleue piquante","=q2=Recette : Hareng frit piquant","=q2=Recette : Steak de brochepelle tendre","=q2=Recette : En-cas du pisteur","=q2=Recette : Worg cuit","=q3=Toque de chef","=q1=Epices nordiques","","=q3=Recette : Gâteau au chocolat délicieux","=q3=Recette : Côtelettes foudroyantes","=q1=Epice de bébé","=q1=Epices anciennes"})
+process("CraftedWeapons1",24,{"=q4=Tranchant de l'ombre","","=q4=Sorcelame en acier-titan","=q4=Crochet en acier-titan","=q4=Ecraseur d'os en acier-titan","=q4=Gardien en acier-titan","=q4=Destructeur en acier-titan","=q4=Pavois en acier-titan","","=q4=Fusil de combat blindé","=q4=Nesingwary 4000","","=q4=Lame runique en éternium","=q4=Complainte","=q4=Lame longue en gangracier","=q4=Champion en khorium","=q4=Hache de bataille à tranchant gangrené","=q4=Faucheuse en gangracier","=q4=Main de l'éternité","=q4=Marteau runique","=q4=Maillet corrompu durci","=q4=Marteau de la puissance pieuse","","=q4=Destructeur gyroscopique en khorium"})
+process("CraftedWeapons2",13,{"","=q4=Amnistie noire","=q4=Lame feuille-de-saule","=q4=Garde noire","=q4=Crépuscule","=q4=Main d'ébène","=q4=Eloquente","=q4=Marteau en sulfuron","=q4=Fureur noire","=q4=Bouclier dentelé en obsidienne","","=q4=Carabine de tireur d'élite endurci","=q4=Disque de force réactif"})
+process("CraftedWeapons3",21,{"","=q4=Garde du feu","=q4=Brasegarde","=q4=Brasefurie","=q4=Lame Coeur-de-lion","=q4=Championne Coeur-de-lion","=q4=Exécutrice Coeur-de-lion","","=q4=Tranchant planaire","=q4=Tranchant planaire noir","=q4=Tranchant cruel des plans","=q4=Croissant lunaire","=q4=Tranchelune","=q4=Lune sanguine","","=q4=Marteau poing-de-drake","=q4=Gueule de dragon","=q4=Frappe du dragon","=q4=Tonnerre","=q4=Tonnerre-profond","=q4=Héraut de la tempête"})
+process("FishingDaily1",17,{"=q4=L'anneau second","=q3=Chapeau de pêche déformé","=q3=Seau de Chuck","=q3=Seau de Bourbe-haleine","=q3=Seau de Patibulle","=q3=Seau de Chicot","=q3=Oeil de la mer","=q2=Recette : Brune du capitaine Rumsey","=q2=Ligne de pêche en vrai-argent filé","=q1=Monocle de noble","=q1=Boutons de manchette antiques en argent","=q1=Bague de mariage en or","=q1=Bock orné","=q1=Couteau à steak tranchant","=q1=Journal détrempé","=q1=Elixir de marche sur l'eau","=q1=Hameçon aiguisé"})
+process("FishingDaily2",23,{"=q4=Joyau-tempête soutenu","=q4=Joyau-tempête brillant","=q4=Joyau-tempête délicat","=q4=Joyau-tempête rigide","=q4=Joyau-tempête runique","=q4=Joyau-tempête solide","=q4=Joyau-tempête étincelant","=q3=Chapeau de pêche déformé","=q3=Canne à pêche en os","=q3=Canne à pêche ornée de joyaux","=q3=Clampant des rivages","=q3=Larme de sirène","=q3=Minuscule coffret en titane","=q2=Recette : Brune du capitaine Rumsey","=q2=Ligne de pêche à toute épreuve en éternium","=q1=Chapeau de jungle endommagé","=q1=Canne à pointe de diamant","=q1=Ver luisant","=q1=Boussole étrange","=q1=Huile de pygmée","=q1=Elixir de marche sur l'eau","=q1=Fiole de poison scellée","=q1=Recette détrempée"})
+process("JewelDragonsEye1",19,{"","","","","","","","","","","","","","","","","","","=q3=Oeil de dragon"})
+process("JewelcraftingDaily1",19,{"=q3=Dessin : Rubis cardinal soutenu","=q3=Dessin : Rubis cardinal éclatant","=q3=Dessin : Rubis cardinal délicat","=q3=Dessin : Rubis cardinal miroitant","=q3=Dessin : Rubis cardinal cassé","=q3=Dessin : Rubis cardinal précis","=q3=Dessin : Rubis cardinal runique","=q3=Dessin : Rubis cardinal subtil","=q3=Dessin : Rubis écarlate soutenu","=q3=Dessin : Rubis écarlate délicat","=q3=Dessin : Rubis écarlate miroitant","=q3=Dessin : Ambre du roi brillant","=q3=Dessin : Ambre du roi mystique","=q3=Dessin : Ambre du roi rapide","=q3=Dessin : Ambre du roi rigide","=q3=Dessin : Ambre du roi lisse","=q3=Dessin : Ambre du roi bombé","=q3=Dessin : Halo de l'automne rapide","=q3=Dessin : Halo de l'automne rigide"})
+process("JewelcraftingDaily2",28,{"=q3=Dessin : Amétrine de précision","=q3=Dessin : Amétrine de champion","=q3=Dessin : Amétrine mortelle","=q3=Dessin : Amétrine adroite","=q3=Dessin : Amétrine durable","=q3=Dessin : Amétrine investie","=q3=Dessin : Amétrine gravée","=q3=Dessin : Amétrine féroce","=q3=Dessin : Amétrine rougeoyante","=q3=Dessin : Amétrine luisante","=q3=Dessin : Amétrine intaillée","=q3=Dessin : Amétrine transparente","=q3=Dessin : Amétrine lumineuse","=q3=Dessin : Amétrine toute-puissante","=q3=Dessin : Amétrine en parfait état","=q3=Dessin : Amétrine téméraire","=q3=Dessin : Amétrine résolue","=q3=Dessin : Amétrine resplendissante","=q3=Dessin : Amétrine infrangible","=q3=Dessin : Amétrine sobre","=q3=Dessin : Amétrine voilée","=q3=Dessin : Amétrine pernicieuse","=q3=Dessin : Topaze monarchique luisante","=q3=Dessin : Topaze monarchique lumineuse","=q3=Dessin : Topaze monarchique toute-puissante","=q3=Dessin : Topaze monarchique téméraire","=q3=Dessin : Topaze monarchique sobre","=q3=Dessin : Topaze monarchique voilée"})
+process("JewelcraftingDaily3",26,{"=q3=Dessin : Oeil de Zul éblouissant","=q3=Dessin : Oeil de Zul durci","=q3=Dessin : Oeil de Zul énergisé","=q3=Dessin : Oeil de Zul énergique","=q3=Dessin : Oeil de Zul complexe","=q3=Dessin : Oeil de Zul dentelé","=q3=Dessin : Oeil de Zul diapré","=q3=Dessin : Oeil de Zul brumeux","=q3=Dessin : Oeil de Zul opaque","=q3=Dessin : Oeil de Zul radieux","=q3=Dessin : Oeil de Zul de voyant","=q3=Dessin : Oeil de Zul brisé","=q3=Dessin : Oeil de Zul rayonnant","=q3=Dessin : Oeil de Zul stable","=q3=Dessin : Oeil de Zul scindé","=q3=Dessin : Oeil de Zul contracté","=q3=Dessin : Oeil de Zul intemporel","=q3=Dessin : Oeil de Zul trouble","=q3=Dessin : Oeil de Zul vif","=q3=Dessin : Emeraude forestière durcie","=q3=Dessin : Emeraude forestière énergisée","=q3=Dessin : Emeraude forestière énergique","=q3=Dessin : Emeraude forestière complexe","=q3=Dessin : Emeraude forestière diaprée","=q3=Dessin : Emeraude forestière de voyant","=q3=Dessin : Emeraude forestière vive"})
+process("JewelcraftingDaily4",16,{"=q3=Dessin : Pierre d'effroi équilibrée","=q3=Dessin : Pierre d'effroi de défenseur","=q3=Dessin : Pierre d'effroi luminescente","=q3=Dessin : Pierre d'effroi de gardien","=q3=Dessin : Pierre d'effroi infusée","=q3=Dessin : Pierre d'effroi mystérieuse","=q3=Dessin : Pierre d'effroi surpuissante","=q3=Dessin : Pierre d'effroi purifiée","=q3=Dessin : Pierre d'effroi régalienne","=q3=Dessin : Pierre d'effroi royale","=q3=Dessin : Pierre d'effroi changeante","=q3=Dessin : Pierre d'effroi souveraine","=q3=Dessin : Pierre d'effroi ténue","=q3=Dessin : Opale du crépuscule surpuissante","=q3=Dessin : Opale du crépuscule régalienne","=q3=Dessin : Opale du crépuscule royale"})
+process("JewelcraftingDaily5",14,{"=q3=Dessin : Zircon majestueux satiné","=q3=Dessin : Zircon majestueux solide","=q3=Dessin : Zircon majestueux étincelant","=q3=Dessin : Zircon majestueux orageux","=q3=Dessin : Saphir céleste satiné","=q3=Dessin : Saphir céleste solide","=q3=Dessin : Diamant flambeciel chaotique","=q3=Dessin : Diamant flambeciel nitescent","=q3=Dessin : Diamant flambeciel brasillé","=q3=Dessin : Diamant siègeterre de perspicacité","=q3=Dessin : Diamant siègeterre vivifiant","=q3=Dessin : Diamant siègeterre implacable","=q3=Dessin : Diamant flambeciel revitalisant","=q3=Dessin : Diamant siègeterre incisif"})
+process("JewelcraftingDaily6",24,{"=q3=Dessin : Oeil de dragon soutenu","=q3=Dessin : Oeil de dragon éclatant","=q3=Dessin : Oeil de dragon brillant","=q3=Dessin : Oeil de dragon délicat","=q3=Dessin : Oeil de dragon miroitant","=q3=Dessin : Oeil de dragon cassé","=q3=Dessin : Oeil de dragon satiné","=q3=Dessin : Oeil de dragon mystique","=q3=Dessin : Oeil de dragon précis","=q3=Dessin : Oeil de dragon rapide","=q3=Dessin : Oeil de dragon rigide","=q3=Dessin : Oeil de dragon runique","=q3=Dessin : Oeil de dragon lisse","=q3=Dessin : Oeil de dragon solide","=q3=Dessin : Oeil de dragon étincelant","=q3=Dessin : Oeil de dragon orageux","=q3=Dessin : Oeil de dragon subtil","=q3=Dessin : Oeil de dragon bombé","=q4=Dessin : Collier garde-terre en titane","=q4=Dessin : Anneau garde-terre en titane","=q4=Dessin : Bague d'impact en titane","=q4=Dessin : Sautoir d'impact en titane","=q4=Dessin : Collier des horions en titane","=q4=Dessin : Anneau des horions en titane"})
+process("LeatherworkingLeatherBloodTigerH",3,{"","=q3=Epaulières du tigre-sang","=q3=Cuirasse du tigre-sang"})
+process("LeatherworkingLeatherBoreanEmbrace",9,{"","=q2=Heaume arctique","=q2=Protège-épaules arctiques","=q2=Plastron arctique","=q2=Garde-poignets arctiques","=q2=Gants arctiques","=q2=Ceinture arctique","=q2=Jambières arctiques","=q2=Bottes arctiques"})
+process("LeatherworkingLeatherDevilsaurArmor",3,{"","=q3=Gantelets diablosaures","=q3=Jambières diablosaures"})
+process("LeatherworkingLeatherEvisceratorBattlegear",9,{"","=q3=Masque d'éviscérateur","=q3=Protège-épaules d'éviscérateur","=q3=Corselet d'éviscérateur","=q3=Manchettes d'éviscérateur","=q3=Gantelets d'éviscérateur","=q3=Sangle d'éviscérateur","=q3=Garde-jambes d'éviscérateur","=q3=Bottines d'éviscérateur"})
+process("LeatherworkingLeatherFelSkin",4,{"","=q3=Gants en gangrecuir","=q3=Jambières en gangrecuir","=q3=Bottes en gangrecuir"})
+process("LeatherworkingLeatherIceborneEmbrace",9,{"","=q2=Heaume cryostène","=q2=Protège-épaules cryostènes","=q2=Corselet cryostène","=q2=Garde-poignets cryostènes","=q2=Gants cryostènes","=q2=Ceinture cryostène","=q2=Jambières cryostènes","=q2=Bottes cryostènes"})
+process("LeatherworkingLeatherIronfeatherArmor",3,{"","=q3=Epaulières en plumacier","=q3=Cuirasse en plumacier"})
+process("LeatherworkingLeatherOvercasterBattlegear",9,{"","=q3=Protège-front surjeté","=q3=Spallières surjetées","=q3=Corselet surjeté","=q3=Brassards surjetés","=q3=Protège-mains surjetés","=q3=Ceinture surjetée","=q3=Jambières surjetées","=q3=Bottes surjetées"})
+process("LeatherworkingLeatherPrimalBatskin",4,{"","=q3=Pourpoint en peau de chauve-souris primordiale","=q3=Brassards en peau de chauve-souris primordiale","=q3=Gants en peau de chauve-souris primordiale"})
+process("LeatherworkingLeatherPrimalIntent",4,{"","=q4=Gilet de frappe primordiale","=q4=Brassards de frappe primordiale","=q4=Ceinture de frappe primordiale"})
+process("LeatherworkingLeatherSClefthoof",4,{"","=q3=Gilet du sabot-fourchu épais","=q3=Jambières du sabot-fourchu épaisses","=q3=Bottes du sabot-fourchu épaisses"})
+process("LeatherworkingLeatherStormshroudArmor",5,{"","=q3=Epaulières tempétueuses","=q3=Armure tempétueuse","=q3=Gants tempétueux","=q3=Pantalon tempétueux"})
+process("LeatherworkingLeatherThickDraenicA",5,{"","=q2=Gilet draenique épais","=q2=Gants draeniques épais","=q2=Pantalon draenique épais","=q2=Bottes draeniques épaisses"})
+process("LeatherworkingLeatherVolcanicArmor",4,{"","=q2=Epaulières volcaniques","=q2=Cuirasse volcanique","=q2=Jambières volcaniques"})
+process("LeatherworkingLeatherWildDraenishA",5,{"","=q2=Gilet draenique sauvage","=q2=Gants draeniques sauvages","=q2=Jambières draeniques sauvages","=q2=Bottes draeniques sauvages"})
+process("LeatherworkingLeatherWindhawkArmor",4,{"","=q4=Haubert Faucon-du-vent","=q4=Brassards Faucon-du-vent","=q4=Ceinture Faucon-du-vent"})
+process("LeatherworkingMailBlackDragonM",5,{"","=q3=Epaulières en écailles de dragon noir","=q3=Cuirasse en écailles de dragon noir","=q3=Jambières en écailles de dragon noir","=q4=Bottes en écailles de dragon noir"})
+process("LeatherworkingMailBlueDragonM",4,{"","=q3=Epaulières en écailles de dragon bleu","=q3=Cuirasse en écailles de dragon bleu","=q3=Jambières en écailles de dragon bleu"})
+process("LeatherworkingMailFelscaleArmor",5,{"","=q2=Cuirasse en gangrécailles","=q2=Gants en gangrécailles","=q2=Pantalon en gangrécailles","=q2=Bottes en gangrécailles"})
+process("LeatherworkingMailFelstalkerArmor",4,{"","=q3=Cuirasse de traqueur gangrené","=q3=Brassards de traqueur gangrené","=q3=Ceinture de traqueur gangrené"})
+process("LeatherworkingMailFrostscaleBinding",9,{"","=q2=Heaume en écailles de givre","=q2=Epaulières en écailles de givre","=q2=Corselet en écailles de givre","=q2=Brassards en écailles de givre","=q2=Gants en écailles de givre","=q2=Ceinture en écailles de givre","=q2=Jambières en écailles de givre","=q2=Bottes en écailles de givre"})
+process("LeatherworkingMailGreenDragonM",4,{"","=q3=Cuirasse en écailles de dragon vert","=q3=Gantelets en écailles de dragon vert","=q3=Jambières en écailles de dragon vert"})
+process("LeatherworkingMailNerubianHive",9,{"","=q2=Heaume nérubien","=q2=Epaulières nérubiennes","=q2=Corselet nérubien","=q2=Brassards nérubiens","=q2=Gants nérubiens","=q2=Ceinture nérubienne","=q2=Garde-jambes nérubiens","=q2=Bottes nérubiennes"})
+process("LeatherworkingMailNetherFury",4,{"","=q3=Ceinture de la Furie du Néant","=q3=Jambières de la Furie du Néant","=q3=Bottes de la Furie du Néant"})
+process("LeatherworkingMailNetherscaleArmor",4,{"","=q4=Cuirasse d'ébène en écailles du Néant","=q4=Brassards d'ébène en écailles du Néant","=q4=Ceinture d'ébène en écailles du Néant"})
+process("LeatherworkingMailNetherstrikeArmor",4,{"","=q4=Cuirasse Coup-de-Néant","=q4=Brassards Coup-de-Néant","=q4=Ceinture Coup-de-Néant"})
+process("LeatherworkingMailScaledDraenicA",5,{"","=q2=Broigne draenique","=q2=Gants draeniques en écailles","=q2=Pantalon draenique en écailles","=q2=Bottes draeniques en écailles"})
+process("LeatherworkingMailStormhideBattlegear",9,{"","=q3=Couronne de l'orageux","=q3=Epaulières de l'orageux","=q3=Haubert de l'orageux","=q3=Garde-poignets de l'orageux","=q3=Poignes de l'orageux","=q3=Ceinture de l'orageux","=q3=Garde-jambes de l'orageux","=q3=Croquenots de l'orageux"})
+process("LeatherworkingMailSwiftarrowBattlefear",9,{"","=q3=Heaume viveflèche","=q3=Garde-épaules viveflèche","=q3=Haubert viveflèche","=q3=Brassards viveflèche","=q3=Gantelets viveflèche","=q3=Ceinture viveflèche","=q3=Jambières viveflèche","=q3=Bottes viveflèche"})
+process("TailoringArcanoVest",4,{"","=q3=Robe en tisse-arcane","=q3=Brassards en tisse-arcane","=q3=Bottes en tisse-arcane"})
+process("TailoringBattlecastG",3,{"","=q4=Chaperon d'escarmouche","=q4=Pantalon d'escarmouche"})
+process("TailoringBloodvineG",4,{"","=q3=Gilet en vignesang","=q3=Jambières en vignesang","=q3=Bottes en vignesang"})
+process("TailoringDuskweaver",9,{"","=q2=Capuche en tisse-brune","=q2=Epaulières en tisse-brune","=q2=Robe en tisse-brune","=q2=Bandelettes en tisse-brune","=q2=Gants en tisse-brune","=q2=Ceinture en tisse-brune","=q2=Jambières en tisse-brune","=q2=Bottes en tisse-brune"})
+process("TailoringFrostsavageBattlegear",9,{"","=q3=Capuche du givre sauvage","=q3=Epaulières du givre sauvage","=q3=Robe du givre sauvage","=q3=Brassards du givre sauvage","=q3=Gants du givre sauvage","=q3=Ceinture du givre sauvage","=q3=Jambières du givre sauvage","=q3=Bottes du givre sauvage"})
+process("TailoringFrostwovenPower",9,{"","=q2=Coiffe tissée de givre","=q2=Epaulières tissées de givre","=q2=Robe tissée de givre","=q2=Bandelettes tissées de givre","=q2=Gants tissés de givre","=q2=Ceinture tissée de givre","=q2=Jambières tissées de givre","=q2=Bottes tissées de givre"})
+process("TailoringImbuedNeather",5,{"","=q3=Tunique en tisse-néant imprégné","=q3=Robe en tisse-néant imprégné","=q3=Pantalon en tisse-néant imprégné","=q3=Bottes en tisse-néant imprégné"})
+process("TailoringNeatherVest",8,{"","=q2=Tunique en tisse-néant","=q2=Robe en tisse-néant","=q2=Brassards en tisse-néant","=q2=Gants en tisse-néant","=q2=Ceinture en tisse-néant","=q2=Pantalon en tisse-néant","=q2=Bottes en tisse-néant"})
+process("TailoringPrimalMoon",4,{"","=q4=Epaulières d'étoffe lunaire primordiale","=q4=Robe d'étoffe lunaire primordiale","=q4=Ceinture d'étoffe lunaire primordiale"})
+process("TailoringShadowEmbrace",4,{"","=q4=Epaulières en tisse-ombre gelé","=q4=Robe en tisse-ombre gelé","=q4=Bottes en tisse-ombre gelé"})
+process("TailoringSoulclothEm",4,{"","=q4=Epaulières d'âmétoffe","=q4=Gilet d'âmétoffe","=q4=Gants d'âmétoffe"})
+process("TailoringSpellfireWrath",4,{"","=q4=Robe du feu-sorcier","=q4=Gants du feu-sorcier","=q4=Ceinture du feu-sorcier"})
+process("TailoringSpellstrikeInfu",3,{"","=q4=Chaperon frappe-sort","=q4=Pantalon frappe-sort"})
+process("TailoringTheUnyielding",3,{"","=q3=Brassards inflexibles","=q4=Ceinturon inflexible"})
+process("TailoringWhitemendWis",3,{"","=q4=Chaperon de la blanche guérison","=q4=Pantalon de la blanche guérison"})
+elseif locale == "deDE" then
+process("BlacksmithingMailBloodsoulEmbrace",4,{"","=q3=Blutseelenschultern","=q3=Blutseelenbrustplatte","=q3=Blutseelenstulpen"})
+process("BlacksmithingMailFelIronChain",5,{"","=q2=Teufelseisenkettenhelmkappe","=q2=Teufelseisenkettentunika","=q2=Teufelseisenkettenarmschienen","=q2=Teufelseisenkettenhandschuhe"})
+process("BlacksmithingPlateAdamantiteB",4,{"","=q3=Adamantitbrustplatte","=q3=Adamantitarmschienen","=q3=Adamantithandschuhe"})
+process("BlacksmithingPlateBurningRage",5,{"","=q3=Zornstahlhelm","=q3=Zornstahlschultern","=q3=Zornstahlbrustplatte","=q3=Zornstahlhandschuhe"})
+process("BlacksmithingPlateEnchantedAdaman",5,{"","=q3=Verzauberte Adamantitbrustplatte","=q3=Verzauberter Adamantitgürtel","=q3=Verzauberte Adamantitgamaschen","=q3=Verzauberte Adamantitstiefel"})
+process("BlacksmithingPlateFaithFelsteel",4,{"","=q3=Teufelsstahlhelm","=q3=Teufelsstahlhandschuhe","=q3=Teufelsstahlgamaschen"})
+process("BlacksmithingPlateFelIronPlate",6,{"","=q2=Teufelseisenbrustplatte","=q2=Teufelseisenplattenhandschuhe","=q2=Teufelseisenplattengürtel","=q2=Teufelseisenplattenhose","=q2=Teufelseisenplattenstiefel"})
+process("BlacksmithingPlateFlameG",5,{"","=q3=Flammenbannhelm","=q3=Flammenbannbrustplatte","=q3=Flammenbannarmschienen","=q3=Flammenbannhandschuhe"})
+process("BlacksmithingPlateImperialPlate",8,{"","=q2=Imperialer Plattenhelm","=q2=Imperiale Plattenschultern","=q2=Imperiale Plattenrüstung","=q2=Imperiale Plattenarmschienen","=q2=Imperialer Plattengürtel","=q2=Imperiale Plattengamaschen","=q2=Imperiale Plattenstiefel"})
+process("BlacksmithingPlateKhoriumWard",4,{"","=q3=Khoriumgürtel","=q3=Khoriumhose","=q3=Khoriumstiefel"})
+process("BlacksmithingPlateOrnateSaroniteBattlegear",9,{"","=q3=Verzierter Saronitschädelschild","=q3=Verzierte Saronitschulterstücke","=q3=Verzierte Saronithalsberge","=q3=Verzierte Saronitarmschienen","=q3=Verzierte Saronitstulpen","=q3=Verzierte Saronittaillenschutz","=q3=Verzierte Saronitbeinplatten","=q3=Verzierte Saronitlaufschuhe"})
+process("BlacksmithingPlateSavageSaroniteBattlegear",9,{"","=q3=Wilder Saronitschädelschild","=q3=Wilde Saronitschulterstücke","=q3=Wilde Saronithalsberge","=q3=Wilde Saronitarmschienen","=q3=Wilde Saronitstulpen","=q3=Wilder Saronittaillenschutz","=q3=Wilde Saronitbeinplatten","=q3=Wilde Saronitlaufschuhe"})
+process("BlacksmithingPlateTheDarksoul",4,{"","=q3=Dunkelseelenschultern","=q3=Dunkelseelenbrustplatte","=q3=Dunkelseelengamaschen"})
+process("CookingDaily1",6,{"=q3=Rezept: Köstlicher Schokoladenkuchen","=q3=Rezept: Sturmkoteletts","=q2=Rezept: Gebratene Blutflosse","=q2=Rezept: Kiblers Häppchen","=q2=Rezept: Schädelfischsuppe","=q2=Rezept: Feuriger Würztalbuk"})
+process("CookingDaily2",27,{"=q2=Rezept: Geschwärzte Drachenflosse","=q2=Rezept: Schwarzgebratenes Worgsteak","=q2=Rezept: Tierhappen","=q2=Rezept: Sepiasteak","=q2=Rezept: Drachenflossenfilet","=q2=Rezept: Feuerkracherlachs","=q2=Rezept: Herzhaftes Rhinozeros","=q2=Rezept: Steak von imperialen Mantarochen","=q2=Rezept: Megamammutmahl","=q2=Rezept: Große Rhinowurst","=q2=Rezept: Pochierte nordische Groppe","=q2=Rezept: Rhinoziöses Wyrmsteak","=q2=Rezept: Bombenschnapper","=q2=Rezept: Gewürzte Mammutleckereien","=q2=Rezept: Würziger Wyrmburger","=q2=Rezept: Würziger blauer Nesselfisch","=q2=Rezept: Würziger Brathering","=q2=Rezept: Zartes Schaufelhauersteak","=q2=Rezept: Fährtenlesersnacks","=q2=Rezept: Sehr verbrannter Worg","=q3=Kochmütze","=q1=Nordische Gewürze","","=q3=Rezept: Köstlicher Schokoladenkuchen","=q3=Rezept: Sturmkoteletts","=q1=Junges Gemüse","=q1=Gewürzmischung 4711"})
+process("CraftedWeapons1",24,{"=q4=Schattenschneide","","=q4=Titanstahlzauberklinge","=q4=Titanstahlmesser","=q4=Titanstahlknochenzermalmer","=q4=Titanstahlwächter","=q4=Titanstahlzerstörer","=q4=Titanschildwall","","=q4=Plattenverstärkte Gefechtsschrotflinte","=q4=Nesingwary 4000","","=q4=Runenverzierte Eterniumklinge","=q4=Todeslied","=q4=Teufelsstahllangschwert","=q4=Khoriumchampion","=q4=Teuflisch scharfe Kampfaxt","=q4=Teufelsstahlschneide","=q4=Hand der Ewigkeit","=q4=Runenverzierter Hammer","=q4=Teufelsgehärteter Schlägel","=q4=Hammer der rechtschaffenen Macht","","=q4=Gyrobalancierter Khoriumzerstörer"})
+process("CraftedWeapons2",13,{"","=q4=Schwarze Amnestie","=q4=Weisenklinge","=q4=Finsterer Streiter","=q4=Nachtlauer","=q4=Ebenholzhand","=q4=Willensbrecher","=q4=Sulfuronhammer","=q4=Schattenzorn","=q4=Gezackter Obsidianschild","","=q4=Kernscharfschützengewehr","=q4=Machtreaktive Scheibe"})
+process("CraftedWeapons3",21,{"","=q4=Brandwache","=q4=Lodernder Wächter","=q4=Lodernder Zorn","=q4=Löwenherzklinge","=q4=Löwenherzchampion","=q4=Löwenherzrichtklinge","","=q4=Die Planaraxt","=q4=Schwarze Planaraxt","=q4=Tückische Schneide der Ebenen","=q4=Mondsichel","=q4=Mondspaltbeil","=q4=Blutmond","","=q4=Drachenfaust","=q4=Drachenmal","=q4=Drachenschlag","=q4=Donner","=q4=Donnergroll","=q4=Bote des Sturms"})
+process("FishingDaily1",17,{"=q4=Der Andere Ring","=q3=Wettergegerbter Angelhut","=q3=Schnapps Eimer","=q3=Matschbrabbels Eimer","=q3=Knurris Eimer","=q3=Zähnchens Eimer","=q3=Auge des Meeres","=q2=Rezept: Kapitän Rumseys Lagerbier","=q2=Gesponnene Echtsilberangelschnur","=q1=Adligenmonokel","=q1=Antiker Silbermanschettenknopf","=q1=Goldener Trauring","=q1=Verschnörkelter Trinkkrug","=q1=Rasiermesserscharfes Filetiermesser","=q1=Verwittertes Tagebuch","=q1=Elixier des Wasserwandelns","=q1=Geschärfter Angelhaken"})
+process("FishingDaily2",23,{"=q4=Klobiges Sturmjuwel","=q4=Glänzendes Sturmjuwel","=q4=Feingeschliffenes Sturmjuwel","=q4=Starres Sturmjuwel","=q4=Runenverziertes Sturmjuwel","=q4=Gediegenes Sturmjuwel","=q4=Funkelndes Sturmjuwel","=q3=Wettergegerbter Angelhut","=q3=Knöcherne Angelrute","=q3=Juwelenbesetzte Angelrute","=q3=Strandkriecher","=q3=Sirenenträne","=q3=Winzige Titanschließkassette","=q2=Rezept: Kapitän Rumseys Lagerbier","=q2=Extremgetestete Eterniumangelschnur","=q1=Zerknitterter Dschungelhut","=q1=Gehstock mit Diamantspitze","=q1=Glühwürmchen","=q1=Ungewöhnlicher Kompass","=q1=Pygmäenöl","=q1=Elixier des Wasserwandelns","=q1=Versiegelte Giftphiole","=q1=Durchnässtes Rezept"})
+process("JewelDragonsEye1",19,{"","","","","","","","","","","","","","","","","","","=q3=Drachenauge"})
+process("JewelcraftingDaily1",19,{"=q3=Vorlage: Klobiger Kardinalsrubin","=q3=Vorlage: Heller Kardinalsrubin","=q3=Vorlage: Feingeschliffener Kardinalsrubin","=q3=Vorlage: Scheinender Kardinalsrubin","=q3=Vorlage: Frakturierter Kardinalsrubin","=q3=Vorlage: Präziser Kardinalsrubin","=q3=Vorlage: Runenbeschriebener Kardinalsrubin","=q3=Vorlage: Fragiler Kardinalsrubin","=q3=Vorlage: Klobiger Scharlachrubin","=q3=Vorlage: Feingeschliffener Scharlachrubin","=q3=Vorlage: Scheinender Scharlachrubin","=q3=Vorlage: Glänzender Königsbernstein","=q3=Vorlage: Mystischer Königsbernstein","=q3=Vorlage: Spiegelnder Königsbernstein","=q3=Vorlage: Massiver Königsbernstein","=q3=Vorlage: Glatter Königsbernstein","=q3=Vorlage: Kompakter Königsbernstein","=q3=Vorlage: Spiegelnder Herbstglimmer","=q3=Vorlage: Massiver Herbstglimmer"})
+process("JewelcraftingDaily2",28,{"=q3=Vorlage: Akkurater Ametrin","=q3=Vorlage: Ametrin des Champions","=q3=Vorlage: Tödlicher Ametrin","=q3=Vorlage: Gewandter Ametrin","=q3=Vorlage: Solider Ametrin","=q3=Vorlage: Machterfüllter Ametrin","=q3=Vorlage: Geätzter Ametrin","=q3=Vorlage: Wilder Ametrin","=q3=Vorlage: Gleißender Ametrin","=q3=Vorlage: Glitzernder Ametrin","=q3=Vorlage: Gravierter Ametrin","=q3=Vorlage: Transparenter Ametrin","=q3=Vorlage: Glänzender Ametrin","=q3=Vorlage: Mächtiger Ametrin","=q3=Vorlage: Makelloser Ametrin","=q3=Vorlage: Tollkühner Ametrin","=q3=Vorlage: Resoluter Ametrin","=q3=Vorlage: Prunkvoller Ametrin","=q3=Vorlage: Bruchfester Ametrin","=q3=Vorlage: Reiner Ametrin","=q3=Vorlage: Verschleierter Ametrin","=q3=Vorlage: Tückischer Ametrin","=q3=Vorlage: Glitzernder Monarchentopas","=q3=Vorlage: Glänzender Monarchentopas","=q3=Vorlage: Mächtiger Monarchentopas","=q3=Vorlage: Tollkühner Monarchentopas","=q3=Vorlage: Reiner Monarchentopas","=q3=Vorlage: Verschleierter Monarchentopas"})
+process("JewelcraftingDaily3",26,{"=q3=Vorlage: Schillerndes Auge von Zul","=q3=Vorlage: Robustes Auge von Zul","=q3=Vorlage: Geladenes Auge von Zul","=q3=Vorlage: Kraftvolles Auge von Zul","=q3=Vorlage: Aufwendiges Auge von Zul","=q3=Vorlage: Gezacktes Auge von Zul","=q3=Vorlage: Flackerndes Auge von Zul","=q3=Vorlage: Nebliges Auge von Zul","=q3=Vorlage: Opakes Auge von Zul","=q3=Vorlage: Strahlendes Auge von Zul","=q3=Vorlage: Seherauge von Zul","=q3=Vorlage: Zerschmettertes Auge von Zul","=q3=Vorlage: Feuriges Auge von Zul","=q3=Vorlage: Beständiges Auge von Zul","=q3=Vorlage: Gesplittertes Auge von Zul","=q3=Vorlage: Sprödes Auge von Zul","=q3=Vorlage: Zeitloses Auge von Zul","=q3=Vorlage: Trübes Auge von Zul","=q3=Vorlage: Klares Auge von Zul","=q3=Vorlage: Robuster Waldsmaragd","=q3=Vorlage: Geladener Waldsmaragd","=q3=Vorlage: Kraftvoller Waldsmaragd","=q3=Vorlage: Aufwendiger Waldsmaragd","=q3=Vorlage: Flackernder Waldsmaragd","=q3=Vorlage: Waldsmaragd des Sehers","=q3=Vorlage: Klarer Waldsmaragd"})
+process("JewelcraftingDaily4",16,{"=q3=Vorlage: Ausbalancierter Schreckensstein","=q3=Vorlage: Schreckensstein des Verteidigers","=q3=Vorlage: Leuchtender Schreckensstein","=q3=Vorlage: Schreckensstein des Wächters","=q3=Vorlage: Energieerfüllter Schreckensstein","=q3=Vorlage: Geheimnisvoller Schreckensstein","=q3=Vorlage: Imposanter Schreckensstein","=q3=Vorlage: Geläuterter Schreckensstein","=q3=Vorlage: Majestätischer Schreckensstein","=q3=Vorlage: Königlicher Schreckensstein","=q3=Vorlage: Unbeständiger Schreckensstein","=q3=Vorlage: Stattlicher Schreckensstein","=q3=Vorlage: Zarter Schreckensstein","=q3=Vorlage: Imposanter Zwielichtopal","=q3=Vorlage: Majestätischer Zwielichtopal","=q3=Vorlage: Königlicher Zwielichtopal"})
+process("JewelcraftingDaily5",14,{"=q3=Vorlage: Irisierender Fürstenzirkon","=q3=Vorlage: Gediegener Fürstenzirkon","=q3=Vorlage: Funkelnder Fürstenzirkon","=q3=Vorlage: Stürmischer Fürstenzirkon","=q3=Vorlage: Irisierender Himmelssaphir","=q3=Vorlage: Gediegener Himmelssaphir","=q3=Vorlage: Chaotischer Polarlichtdiamant","=q3=Vorlage: Glühender Polarlichtdiamant","=q3=Vorlage: Glimmender Polarlichtdiamant","=q3=Vorlage: Bemerkenswerter Erdringdiamant","=q3=Vorlage: Kräftigender Erdringdiamant","=q3=Vorlage: Unerbittlicher Erdringdiamant","=q3=Vorlage: Belebender Polarlichtdiamant","=q3=Vorlage: Energischer Erdringdiamant"})
+process("JewelcraftingDaily6",24,{"=q3=Vorlage: Klobiges Drachenauge","=q3=Vorlage: Helles Drachenauge","=q3=Vorlage: Brillantiertes Drachenauge","=q3=Vorlage: Feingeschliffenes Drachenauge","=q3=Vorlage: Scheinendes Drachenauge","=q3=Vorlage: Frakturiertes Drachenauge","=q3=Vorlage: Irisierendes Drachenauge","=q3=Vorlage: Mystisches Drachenauge","=q3=Vorlage: Präzises Drachenauge","=q3=Vorlage: Spiegelndes Drachenauge","=q3=Vorlage: Massives Drachenauge","=q3=Vorlage: Runenbeschriebenes Drachenauge","=q3=Vorlage: Glattes Drachenauge","=q3=Vorlage: Gediegenes Drachenauge","=q3=Vorlage: Funkelndes Drachenauge","=q3=Vorlage: Stürmisches Drachenauge","=q3=Vorlage: Fragiles Drachenauge","=q3=Vorlage: Kompaktes Drachenauge","=q4=Vorlage: Titankette des Erdenwächters","=q4=Vorlage: Titanring des Erdenwächters","=q4=Vorlage: Titanband des Einschlags","=q4=Vorlage: Titanhalsreif des Einschlags","=q4=Vorlage: Titanhalskette des Zauberschocks","=q4=Vorlage: Titanring des Zauberschocks"})
+process("LeatherworkingLeatherBloodTigerH",3,{"","=q3=Bluttigerschultern","=q3=Bluttigerbrustplatte"})
+process("LeatherworkingLeatherBoreanEmbrace",9,{"","=q2=Arktischer Helm","=q2=Arktische Schulterpolster","=q2=Arktischer Brustschutz","=q2=Arktische Handgelenksschützer","=q2=Arktische Handschuhe","=q2=Arktischer Gürtel","=q2=Arktische Gamaschen","=q2=Arktische Stiefel"})
+process("LeatherworkingLeatherDevilsaurArmor",3,{"","=q3=Teufelssaurierstulpen","=q3=Teufelssauriergamaschen"})
+process("LeatherworkingLeatherEvisceratorBattlegear",9,{"","=q3=Gesichtsmaske des Ausweiders","=q3=Schulterpolster des Ausweiders","=q3=Brustschutz des Ausweiders","=q3=Bindungen des Ausweiders","=q3=Stulpen des Ausweiders","=q3=Taillenschutz des Ausweiders","=q3=Beinschützer des Ausweiders","=q3=Treter des Ausweiders"})
+process("LeatherworkingLeatherFelSkin",4,{"","=q3=Teufelslederhandschuhe","=q3=Teufelsledergamaschen","=q3=Teufelslederstiefel"})
+process("LeatherworkingLeatherIceborneEmbrace",9,{"","=q2=Winterlicher Helm","=q2=Winterliche Schulterpolster","=q2=Winterlicher Brustschutz","=q2=Winterlicher Handgelenksschutz","=q2=Winterliche Handschuhe","=q2=Winterlicher Gürtel","=q2=Winterliche Beinlinge","=q2=Winterliche Stiefel"})
+process("LeatherworkingLeatherIronfeatherArmor",3,{"","=q3=Eisenfederschultern","=q3=Eisenfederbrustplatte"})
+process("LeatherworkingLeatherOvercasterBattlegear",9,{"","=q3=Unwetterkopfschutz","=q3=Unwetterschiftung","=q3=Unwetterbrustschutz","=q3=Unwetterarmschienen","=q3=Unwetterhandlappen","=q3=Unwettergürtel","=q3=Unwettergamaschen","=q3=Unwetterstiefel"})
+process("LeatherworkingLeatherPrimalBatskin",4,{"","=q3=Urzeitliches Fledermaushautwams","=q3=Urzeitliche Fledermaushautarmschienen","=q3=Urzeitliche Fledermaushauthandschuhe"})
+process("LeatherworkingLeatherPrimalIntent",4,{"","=q4=Erstschlagweste","=q4=Erstschlagarmschienen","=q4=Erstschlaggürtel"})
+process("LeatherworkingLeatherSClefthoof",4,{"","=q3=Schwere Grollhufweste","=q3=Schwere Grollhufgamaschen","=q3=Schwere Grollhufstiefel"})
+process("LeatherworkingLeatherStormshroudArmor",5,{"","=q3=Sturmschleierschultern","=q3=Sturmschleierrüstung","=q3=Sturmschleierhandschuhe","=q3=Sturmschleierhose"})
+process("LeatherworkingLeatherThickDraenicA",5,{"","=q2=Dicke draenische Weste","=q2=Dicke draenische Handschuhe","=q2=Dicke draenische Hose","=q2=Dicke draenische Stiefel"})
+process("LeatherworkingLeatherVolcanicArmor",4,{"","=q2=Vulkanische Schultern","=q2=Vulkanische Brustplatte","=q2=Vulkanische Gamaschen"})
+process("LeatherworkingLeatherWildDraenishA",5,{"","=q2=Wilde draenische Weste","=q2=Wilde draenische Handschuhe","=q2=Wilde draenische Gamaschen","=q2=Wilde draenische Stiefel"})
+process("LeatherworkingLeatherWindhawkArmor",4,{"","=q4=Windfalkenhalsberge","=q4=Windfalkenarmschienen","=q4=Windfalkengürtel"})
+process("LeatherworkingMailBlackDragonM",5,{"","=q3=Schwarze Drachenschuppenschultern","=q3=Schwarze Drachenschuppenbrustplatte","=q3=Schwarze Drachenschuppengamaschen","=q4=Schwarze Drachenschuppenstiefel"})
+process("LeatherworkingMailBlueDragonM",4,{"","=q3=Blaue Drachenschuppenschultern","=q3=Blaue Drachenschuppenbrustplatte","=q3=Blaue Drachenschuppengamaschen"})
+process("LeatherworkingMailFelscaleArmor",5,{"","=q2=Teufelsschuppenbrustplatte","=q2=Teufelsschuppenhandschuhe","=q2=Teufelsschuppenhose","=q2=Teufelsschuppenstiefel"})
+process("LeatherworkingMailFelstalkerArmor",4,{"","=q3=Brustplatte des Teufelspirschers","=q3=Armschienen des Teufelspirschers","=q3=Gürtel des Teufelspirschers"})
+process("LeatherworkingMailFrostscaleBinding",9,{"","=q2=Frostschuppenhelm","=q2=Frostschuppenschultern","=q2=Frostschuppenbrustschutz","=q2=Frostschuppenarmschienen","=q2=Frostschuppenhandschuhe","=q2=Frostschuppengürtel","=q2=Frostschuppenbeinlinge","=q2=Frostschuppenstiefel"})
+process("LeatherworkingMailGreenDragonM",4,{"","=q3=Grüne Drachenschuppenbrustplatte","=q3=Grüne Drachenschuppenstulpen","=q3=Grüne Drachenschuppengamaschen"})
+process("LeatherworkingMailNerubianHive",9,{"","=q2=Nerubischer Helm","=q2=Nerubische Schultern","=q2=Nerubischer Brustschutz","=q2=Nerubische Armschienen","=q2=Nerubische Handschuhe","=q2=Nerubischer Gürtel","=q2=Nerubische Beinschützer","=q2=Nerubische Stiefel"})
+process("LeatherworkingMailNetherFury",4,{"","=q3=Netherzorngürtel","=q3=Netherzorngamaschen","=q3=Netherzornstiefel"})
+process("LeatherworkingMailNetherscaleArmor",4,{"","=q4=Ebenholzfarbene Netherschuppenbrustplatte","=q4=Ebenholzfarbene Netherschuppenarmschienen","=q4=Ebenholzfarbener Netherschuppengürtel"})
+process("LeatherworkingMailNetherstrikeArmor",4,{"","=q4=Netherstoßbrustplatte","=q4=Netherstoßarmschienen","=q4=Netherstoßgürtel"})
+process("LeatherworkingMailScaledDraenicA",5,{"","=q2=Geschuppte draenische Weste","=q2=Geschuppte draenische Handschuhe","=q2=Geschuppte draenische Hose","=q2=Geschuppte draenische Stiefel"})
+process("LeatherworkingMailStormhideBattlegear",9,{"","=q3=Sturmbalgkrone","=q3=Sturmbalgschultern","=q3=Sturmbalghalsberge","=q3=Sturmbalghandgelenksschutz","=q3=Sturmbalghandschutz","=q3=Sturmbalggürtel","=q3=Sturmbalgbeinschützer","=q3=Sturmbalgstampfer"})
+process("LeatherworkingMailSwiftarrowBattlefear",9,{"","=q3=Flinkpfeilhelm","=q3=Flinkpfeilschulterschutz","=q3=Flinkpfeilhalsberge","=q3=Flinkpfeilarmschienen","=q3=Flinkpfeilstulpen","=q3=Flinkpfeilgürtel","=q3=Flinkpfeilgamaschen","=q3=Flinkpfeilstiefel"})
+process("TailoringArcanoVest",4,{"","=q3=Arkanostoffrobe","=q3=Arkanostoffarmschienen","=q3=Arkanostoffstiefel"})
+process("TailoringBattlecastG",3,{"","=q4=Kapuze des Schlachtenzaubers","=q4=Hose des Schlachtenzaubers"})
+process("TailoringBloodvineG",4,{"","=q3=Blutrebenweste","=q3=Blutrebengamaschen","=q3=Blutrebenstiefel"})
+process("TailoringDuskweaver",9,{"","=q2=Dämmergewirkte Gugel","=q2=Dämmergewirkte Schultern","=q2=Dämmergewirkte Robe","=q2=Dämmergewirkte Gelenkbänder","=q2=Dämmergewirkte Handschuhe","=q2=Dämmergewirkter Gürtel","=q2=Dämmergewirkte Gamaschen","=q2=Dämmergewirkte Stiefel"})
+process("TailoringFrostsavageBattlegear",9,{"","=q3=Frostgrimmgugel","=q3=Frostgrimmschultern","=q3=Frostgrimmrobe","=q3=Frostgrimmarmschienen","=q3=Frostgrimmhandschuhe","=q3=Frostgrimmgürtel","=q3=Frostgrimmgamaschen","=q3=Frostgrimmstiefel"})
+process("TailoringFrostwovenPower",9,{"","=q2=Frostgewirkte Gugel","=q2=Frostgewirkte Schultern","=q2=Frostgewirkte Robe","=q2=Frostgewirkte Gelenkbänder","=q2=Frostgewirkte Handschuhe","=q2=Frostgewirkter Gürtel","=q2=Frostgewirkte Gamaschen","=q2=Frostgewirkte Stiefel"})
+process("TailoringImbuedNeather",5,{"","=q3=Magieerfüllte Netherstofftunika","=q3=Magieerfüllte Netherstoffrobe","=q3=Magieerfüllte Netherstoffhose","=q3=Magieerfüllte Netherstoffstiefel"})
+process("TailoringNeatherVest",8,{"","=q2=Netherstofftunika","=q2=Netherstoffrobe","=q2=Netherstoffarmschienen","=q2=Netherstoffhandschuhe","=q2=Netherstoffgürtel","=q2=Netherstoffhose","=q2=Netherstoffstiefel"})
+process("TailoringPrimalMoon",4,{"","=q4=Urmondstoffschultern","=q4=Urmondstoffrobe","=q4=Urmondstoffgürtel"})
+process("TailoringShadowEmbrace",4,{"","=q4=Eisschattenzwirnschultern","=q4=Eisschattenzwirnrobe","=q4=Eisschattenzwirnstiefel"})
+process("TailoringSoulclothEm",4,{"","=q4=Seelenstoffschultern","=q4=Seelenstoffweste","=q4=Seelenstoffhandschuhe"})
+process("TailoringSpellfireWrath",4,{"","=q4=Zauberfeuerrobe","=q4=Zauberfeuerhandschuhe","=q4=Zauberfeuergürtel"})
+process("TailoringSpellstrikeInfu",3,{"","=q4=Kapuze des Zauberschlags","=q4=Hose des Zauberschlags"})
+process("TailoringTheUnyielding",3,{"","=q3=Armschienen des Unerschütterlichen","=q4=Gurt des Unerschütterlichen"})
+process("TailoringWhitemendWis",3,{"","=q4=Kapuze des weißen Heilers","=q4=Hose des weißen Heilers"})
+elseif locale == "esES" then
+process("BlacksmithingMailBloodsoulEmbrace",4,{"","=q3=Sobrehombros alma de sangre","=q3=Coraza alma de sangre","=q3=Guanteletes alma de sangre"})
+process("BlacksmithingMailFelIronChain",5,{"","=q2=Almófar de anillas de hierro vil","=q2=Túnica de anillas de hierro vil","=q2=Brazales de anillas de hierro vil","=q2=Guantes de anillas de hierro vil"})
+process("BlacksmithingPlateAdamantiteB",4,{"","=q3=Coraza de adamantita","=q3=Brazales de placas de adamantita","=q3=Guantes de placas de adamantita"})
+process("BlacksmithingPlateBurningRage",5,{"","=q3=Yelmo de acerira","=q3=Sobrehombros de acerira","=q3=Coraza de acerira","=q3=Guantes de acerira"})
+process("BlacksmithingPlateEnchantedAdaman",5,{"","=q3=Coraza de adamantita encantada","=q3=Cinturón de adamantita encantado","=q3=Leotardos de adamantita encantados","=q3=Botas de adamantita encantada"})
+process("BlacksmithingPlateFaithFelsteel",4,{"","=q3=Yelmo de acero vil","=q3=Guantes de acero vil","=q3=Leotardos de acero vil"})
+process("BlacksmithingPlateFelIronPlate",6,{"","=q2=Coraza de hierro vil","=q2=Guantes de placas de hierro vil","=q2=Cinturón de placas de hierro vil","=q2=Pantalones de placas de hierro vil","=q2=Botas de placas de hierro vil"})
+process("BlacksmithingPlateFlameG",5,{"","=q3=Yelmo aterrallamas","=q3=Coraza aterrallamas","=q3=Brazales aterrallamas","=q3=Guantes aterrallamas"})
+process("BlacksmithingPlateImperialPlate",8,{"","=q2=Yelmo de placas imperiales","=q2=Sobrehombros de placas imperiales","=q2=Peto de placas imperiales","=q2=Brazales de placas imperiales","=q2=Cinturón de placas imperiales","=q2=Leotardos de placas imperiales","=q2=Botas de placas imperiales"})
+process("BlacksmithingPlateKhoriumWard",4,{"","=q3=Cinturón de korio","=q3=Pantalones de korio","=q3=Botas de korio"})
+process("BlacksmithingPlateOrnateSaroniteBattlegear",9,{"","=q3=Escudo de calavera de saronita ornamentada","=q3=Espaldares de saronita ornamentada","=q3=Camisote de saronita ornamentada","=q3=Brazales de saronita ornamentada","=q3=Guanteletes de saronita ornamentada","=q3=Guardarrenes de saronita ornamentada","=q3=Quijotes de saronita ornamentada","=q3=Botos de saronita ornamentada"})
+process("BlacksmithingPlateSavageSaroniteBattlegear",9,{"","=q3=Escudo de calavera de saronita salvaje","=q3=Espaldares de saronita salvaje","=q3=Camisote de saronita salvaje","=q3=Brazales de saronita salvaje","=q3=Guanteletes de saronita salvaje","=q3=Guardarrenes de saronita salvaje","=q3=Quijotes de saronita salvaje","=q3=Botos de saronita salvaje"})
+process("BlacksmithingPlateTheDarksoul",4,{"","=q3=Sobrehombros almanegra","=q3=Coraza almanegra","=q3=Leotardos almanegra"})
+process("CookingDaily1",6,{"=q3=Receta: pastel de chocolate delicioso","=q3=Receta: costillas de truenos","=q2=Receta: sangraleta a la parrilla","=q2=Receta: tapitas de Kibler","=q2=Receta: sopa de pez calavera","=q2=Receta: talbuk con guindillas"})
+process("CookingDaily2",27,{"=q2=Receta: aletadragón ennegrecido","=q2=Receta: filete de huargo ennegrecido","=q2=Receta: aperitivos para alimañas","=q2=Receta: filete de calamar","=q2=Receta: filete de aletadragón","=q2=Receta: salmón petardo","=q2=Receta: rinoceronte suculento","=q2=Receta: filete de manta imperial","=q2=Receta: comida de megamamut","=q2=Receta: perritos de rinoceronte poderosos","=q2=Receta: pez escorpión del norte pochado","=q2=Receta: filete de vermis rinolicioso","=q2=Receta: pargo extremo","=q2=Receta: delicias de mamut especiado","=q2=Receta: hamburguesa de vermis especiada","=q2=Receta: medusa azul picante","=q2=Receta: arenque frito picante","=q2=Receta: filete de colmipala tierno","=q2=Receta: aperitivo de rastreador","=q2=Receta: huargo muy quemado","=q3=Gorro de cocinero","=q1=Especias del norte","","=q3=Receta: pastel de chocolate delicioso","=q3=Receta: costillas de truenos","=q1=Especias de bebé","=q1=Especias viejas"})
+process("CraftedWeapons1",24,{"=q4=Filo de las Sombras","","=q4=Hoja de hechizo de acero de titanes","=q4=Faca de acero de titanes","=q4=Aplastahuesos de acero de titanes","=q4=Guardián de acero de titanes","=q4=Destructor de acero de titanes","=q4=Escudo muro de acero de titanes","","=q4=Escopeta de combate con placas de armadura","=q4=4000 de Nesingwary","","=q4=Hoja rúnica de eternio","=q4=Réquiem","=q4=Hoja larga de acero vil","=q4=Campeón de korio","=q4=Hacha de batalla vil afilada","=q4=Segadora de acero vil","=q4=Mano de la eternidad","=q4=Martillo rúnico","=q4=Gran maza vil endurecida","=q4=Martillo de poderío recto","","=q4=Destructor de korio giroequilibrado"})
+process("CraftedWeapons2",13,{"","=q4=Amnistía negra","=q4=Hoja sabia","=q4=Guardanegra","=q4=Ocaso","=q4=Mano de ébano","=q4=Persuasor","=q4=Martillo de Sulfuron","=q4=Furianegra","=q4=Escudo de obsidiana dentado","","=q4=Rifle de tirador del Núcleo","=q4=Disco reactivo a la fuerza"})
+process("CraftedWeapons3",21,{"","=q4=Guardia de fuego","=q4=Guardia abrasadora","=q4=Furia abrasadora","=q4=Hoja de corazón de león","=q4=Campeón corazón de león","=q4=Verdugo corazón de león","","=q4=El filo bidimensional","=q4=Filo bidimensional negro","=q4=Filo despiadado de los planos","=q4=Luna creciente","=q4=Cortaluna","=q4=Luna de sangre","","=q4=Martillo de puñodraco","=q4=Faucedraco","=q4=Golpe de dragón","=q4=Trueno","=q4=Trueno profundo","=q4=Heraldo de la tormenta"})
+process("FishingDaily1",17,{"=q4=El anillo 2","=q3=Sombrero para pescar deteriorado","=q3=Cubo de Chuck","=q3=Cubo de Malaliento","=q3=Cubo de Gruñi","=q3=Cubo de Dientecitos","=q3=Ojo del mar","=q2=Receta: cerveza del capitán Rumsey","=q2=Sedal de hilo de veraplata","=q1=Monóculo de noble","=q1=Gemelos de plata solariegos","=q1=Alianza de oro","=q1=Jarra ornamentada","=q1=Cuchillo para filetear afilado","=q1=Diario deteriorado","=q1=Elixir de Caminar sobre el agua","=q1=Anzuelo afilado"})
+process("FishingDaily2",23,{"=q4=Joya de tormenta llamativa","=q4=Joya de tormenta luminosa","=q4=Joya de tormenta delicada","=q4=Joya de tormenta rígida","=q4=Joya de tormenta rúnica","=q4=Joya de tormenta sólida","=q4=Joya de tormenta chispeante","=q3=Sombrero para pescar deteriorado","=q3=Caña de pescar de hueso","=q3=Caña de pescar enjoyada","=q3=Reptador de playa","=q3=Lágrima de sirena","=q3=Arcón de titanio diminuto","=q2=Receta: cerveza del capitán Rumsey","=q2=Gran línea de pesca de prueba de eternio","=q1=Sombrero de aventurero maltrecho","=q1=Bastón con punta de diamante","=q1=Gusano de luz","=q1=Brújula poco corriente","=q1=Aceite de pigmeo","=q1=Elixir de Caminar sobre el agua","=q1=Vial de veneno sellado","=q1=Receta con marcas de agua"})
+process("JewelDragonsEye1",19,{"","","","","","","","","","","","","","","","","","","=q3=Ojo de dragón"})
+process("JewelcraftingDaily1",19,{"=q3=Boceto: rubí cárdeno llamativo","=q3=Boceto: rubí cárdeno brillante","=q3=Boceto: rubí cárdeno delicado","=q3=Boceto: rubí cárdeno ostentoso","=q3=Boceto: rubí cárdeno fracturado","=q3=Boceto: rubí cárdeno preciso","=q3=Boceto: rubí cárdeno rúnico","=q3=Boceto: rubí cárdeno sutil","=q3=Boceto: rubí escarlata llamativo","=q3=Boceto: rubí escarlata delicado","=q3=Boceto: rubí escarlata ostentoso","=q3=Boceto: ámbar del rey luminoso","=q3=Boceto: ámbar del rey místico","=q3=Boceto: ámbar del rey rápido","=q3=Boceto: ámbar del rey rígido","=q3=Boceto: ámbar del rey liso","=q3=Boceto: ámbar del rey grueso","=q3=Boceto: Brillo del otoño rápido","=q3=Boceto: Brillo del otoño rígido"})
+process("JewelcraftingDaily2",28,{"=q3=Boceto: ametrino de precisión","=q3=Boceto: ametrino de Campeón","=q3=Boceto: ametrino mortal","=q3=Boceto: ametrino diestro","=q3=Boceto: ametrino durable","=q3=Boceto: ametrino potenciado","=q3=Boceto: ametrino grabado","=q3=Boceto: ametrino fiero","=q3=Boceto: ametrino de luz trémula","=q3=Boceto: ametrino destellante","=q3=Boceto: ametrino con inscripciones","=q3=Boceto: ametrino iluminado","=q3=Boceto: ametrino luminoso","=q3=Boceto: ametrino pujante","=q3=Boceto: ametrino prístino","=q3=Boceto: ametrino temerario","=q3=Boceto: ametrino resuelto","=q3=Boceto: ametrino resplandeciente","=q3=Boceto: ametrino de adepto","=q3=Boceto: ametrino completo","=q3=Boceto: ametrino velado","=q3=Boceto: ametrino maligno","=q3=Boceto: topacio monarca destellante","=q3=Boceto: topacio monarca luminoso","=q3=Boceto: topacio monarca pujante","=q3=Boceto: topacio monarca temerario","=q3=Boceto: topacio monarca completo","=q3=Boceto: topacio monarca velado"})
+process("JewelcraftingDaily3",26,{"=q3=Boceto: ojo de Zul deslumbrante","=q3=Boceto: ojo de Zul duradero","=q3=Boceto: ojo de Zul energizado","=q3=Boceto: ojo de Zul fuerte","=q3=Boceto: ojo de Zul intrincado","=q3=Boceto: ojo de Zul irregular","=q3=Boceto: ojo de Zul luminiscente","=q3=Boceto: ojo de Zul brumoso","=q3=Boceto: ojo de Zul opaco","=q3=Boceto: ojo de Zul radiante","=q3=Boceto: ojo de Zul de vidente","=q3=Boceto: ojo de Zul destrozado","=q3=Boceto: ojo de Zul brillante","=q3=Boceto: ojo de Zul resistente","=q3=Boceto: ojo de Zul hendido","=q3=Boceto: ojo de Zul tenso","=q3=Boceto: ojo de Zul intemporal","=q3=Boceto: ojo de Zul turbio","=q3=Boceto: ojo de Zul vívido","=q3=Boceto: esmeralda del bosque duradera","=q3=Boceto: esmeralda del bosque energizada","=q3=Boceto: esmeralda del bosque fuerte","=q3=Boceto: esmeralda del bosque intrincada","=q3=Boceto: esmeralda del bosque luminiscente","=q3=Boceto: esmeralda del bosque de vidente","=q3=Boceto: esmeralda del bosque vívida"})
+process("JewelcraftingDaily4",16,{"=q3=Boceto: piedra de terror equilibrada","=q3=Boceto: piedra de terror de defensor","=q3=Boceto: piedra de terror resplandeciente","=q3=Boceto: piedra de terror de guardián","=q3=Boceto: piedra de terror imbuida","=q3=Boceto: piedra de terror misteriosa","=q3=Boceto: piedra de terror enjundiosa","=q3=Boceto: piedra de terror purificada","=q3=Boceto: piedra de terror regia","=q3=Boceto: piedra de terror real","=q3=Boceto: piedra de terror cambiante","=q3=Boceto: piedra de terror soberana","=q3=Boceto: piedra de terror de tenuidad","=q3=Boceto: ópalo Crepuscular enjundioso","=q3=Boceto: ópalo Crepuscular majestuoso","=q3=Boceto: ópalo Crepuscular real"})
+process("JewelcraftingDaily5",14,{"=q3=Boceto: circón majestuoso luciente","=q3=Boceto: circón majestuoso sólido","=q3=Boceto: circón majestuoso chispeante","=q3=Boceto: circón majestuoso tormentoso","=q3=Boceto: zafiro celestial luciente","=q3=Boceto: zafiro celestial sólido","=q3=Boceto: diamante de llama celeste caótico","=q3=Boceto: diamante de llama celeste refulgente","=q3=Boceto: diamante de llama celeste de ascuas","=q3=Boceto: diamante de asedio de tierra perspicaz","=q3=Boceto: diamante de asedio de tierra vigorizador","=q3=Boceto: diamante de asedio de tierra incansable","=q3=Boceto: diamante de llama celeste revitalizante","=q3=Boceto: diamante de asedio de tierra mordaz"})
+process("JewelcraftingDaily6",24,{"=q3=Boceto: Ojo de dragón llamativo","=q3=Boceto: Ojo de dragón brillante","=q3=Boceto: Ojo de dragón luminoso","=q3=Boceto: Ojo de dragón delicado","=q3=Boceto: Ojo de dragón ostentoso","=q3=Boceto: Ojo de dragón fracturado","=q3=Boceto: Ojo de dragón lustroso","=q3=Boceto: Ojo de dragón místico","=q3=Boceto: Ojo de dragón preciso","=q3=Boceto: Ojo de dragón rápido","=q3=Boceto: Ojo de dragón rígido","=q3=Boceto: Ojo de dragón rúnico","=q3=Boceto: Ojo de dragón liso","=q3=Boceto: Ojo de dragón sólido","=q3=Boceto: Ojo de dragón chispeante","=q3=Boceto: Ojo de dragón tormentoso","=q3=Boceto: Ojo de dragón sutil","=q3=Boceto: Ojo de dragón grueso","=q4=Boceto: cadena de guardia de tierra de titanio","=q4=Boceto: anillo de guardia de tierra de titanio","=q4=Boceto: sortija impactante de titanio","=q4=Boceto: gargantilla impactante de titanio","=q4=Boceto: collar de choque de hechizo de titanio","=q4=Boceto: anillo de choque de hechizo de titanio"})
+process("LeatherworkingLeatherBloodTigerH",3,{"","=q3=Sobrehombros de tigre de sangre","=q3=Coraza de tigre de sangre"})
+process("LeatherworkingLeatherBoreanEmbrace",9,{"","=q2=Yelmo ártico","=q2=Hombreras árticas","=q2=Pechera ártica","=q2=Guardamuñecas árticos","=q2=Guantes árticos","=q2=Cinturón ártico","=q2=Leotardos árticos","=q2=Botas árticas"})
+process("LeatherworkingLeatherDevilsaurArmor",3,{"","=q3=Guanteletes de demosaurio","=q3=Leotardos de demosaurio"})
+process("LeatherworkingLeatherEvisceratorBattlegear",9,{"","=q3=Máscara facial de eviscerador","=q3=Hombreras de eviscerador","=q3=Coselete de eviscerador","=q3=Ataduras de eviscerador","=q3=Guanteletes de eviscerador","=q3=Guardarrenes de eviscerador","=q3=Musleras de eviscerador","=q3=Botines de eviscerador"})
+process("LeatherworkingLeatherFelSkin",4,{"","=q3=Guantes de cuero vil","=q3=Leotardos de cuero vil","=q3=Botas de cuero vil"})
+process("LeatherworkingLeatherIceborneEmbrace",9,{"","=q2=Yelmo de contrahielo","=q2=Hombreras de contrahielo","=q2=Coselete de contrahielo","=q2=Guardamuñecas de contrahielo","=q2=Guantes de contrahielo","=q2=Cinturón de contrahielo","=q2=Leotardos de contrahielo","=q2=Botas de contrahielo"})
+process("LeatherworkingLeatherIronfeatherArmor",3,{"","=q3=Sobrehombros plumahierro","=q3=Coraza plumahierro"})
+process("LeatherworkingLeatherOvercasterBattlegear",9,{"","=q3=Protegecabezas encapotado","=q3=Bufas encapotadas","=q3=Coselete encapotado","=q3=Brazales encapotados","=q3=Manijas encapotadas","=q3=Cinturón encapotado","=q3=Leotardos encapotados","=q3=Botas encapotadas"})
+process("LeatherworkingLeatherPrimalBatskin",4,{"","=q3=Chaleco de piel de murciélago primigenio","=q3=Brazales de piel de murciélago primigenio","=q3=Guantes de piel de murciélago primigenio"})
+process("LeatherworkingLeatherPrimalIntent",4,{"","=q4=Jubón de golpe primigenio","=q4=Brazales de golpe primigenio","=q4=Cinturón de golpe primigenio"})
+process("LeatherworkingLeatherSClefthoof",4,{"","=q3=Jubón uñagrieta pesado","=q3=Leotardos uñagrieta pesados","=q3=Botas uñagrieta pesadas"})
+process("LeatherworkingLeatherStormshroudArmor",5,{"","=q3=Sobrehombrosde embozo de tormenta","=q3=Armadura de embozo de tormenta","=q3=Guantes de embozo de tormenta","=q3=Pantalones de embozo de tormenta"})
+process("LeatherworkingLeatherThickDraenicA",5,{"","=q2=Jubón draénico grueso","=q2=Guantes draénicos gruesos","=q2=Pantalones draénicos gruesos","=q2=Botas draénicas gruesas"})
+process("LeatherworkingLeatherVolcanicArmor",4,{"","=q2=Sobrehombros volcánicos","=q2=Coraza volcánica","=q2=Leotardos volcánicos"})
+process("LeatherworkingLeatherWildDraenishA",5,{"","=q2=Jubón draeniano salvaje","=q2=Guantes draenianos salvajes","=q2=Leotardos draenianos salvajes","=q2=Botas draenianas salvajes"})
+process("LeatherworkingLeatherWindhawkArmor",4,{"","=q4=Camisote de halcón del viento","=q4=Brazales de halcón del viento","=q4=Cinturón de halcón del viento"})
+process("LeatherworkingMailBlackDragonM",5,{"","=q3=Sobrehombros de escamas de dragón negro","=q3=Coraza de escamas de dragón negro","=q3=Leotardos de escamas de dragón negro","=q4=Botas de escamas de dragón negro"})
+process("LeatherworkingMailBlueDragonM",4,{"","=q3=Sobrehombros de escamas de dragón azul","=q3=Coraza de escamas de dragón azul","=q3=Leotardos de escamas de dragón azul"})
+process("LeatherworkingMailFelscaleArmor",5,{"","=q2=Coraza de escamas viles","=q2=Guantes de escamas viles","=q2=Pantalones de escamas viles","=q2=Botas de escamas viles"})
+process("LeatherworkingMailFelstalkerArmor",4,{"","=q3=Coraza de acechador vil","=q3=Brazales de acechador vil","=q3=Cinturón de acechador vil"})
+process("LeatherworkingMailFrostscaleBinding",9,{"","=q2=Casco de escamas de escarcha","=q2=Sobrehombros de escamas de escarcha","=q2=Coselete de escamas de escarcha","=q2=Brazales de escamas de escarcha","=q2=Guantes de escamas de escarcha","=q2=Cinturón de escamas de escarcha","=q2=Leotardos de escamas de escarcha","=q2=Botas de escamas de escarcha"})
+process("LeatherworkingMailGreenDragonM",4,{"","=q3=Coraza de escamas de dragón verde","=q3=Guanteletes de escamas de dragón verde","=q3=Leotardos de escamas de dragón verde"})
+process("LeatherworkingMailNerubianHive",9,{"","=q2=Yelmo nerubiano","=q2=Sobrehombros nerubianos","=q2=Coselete nerubiano","=q2=Brazales nerubianos","=q2=Guantes nerubianos","=q2=Cinturón nerubiano","=q2=Musleras nerubianas","=q2=Botas nerubianas"})
+process("LeatherworkingMailNetherFury",4,{"","=q3=Cinturón de furia abisal","=q3=Leotardos de furia abisal","=q3=Botas de furia abisal"})
+process("LeatherworkingMailNetherscaleArmor",4,{"","=q4=Coraza de escamas abisales de ébano","=q4=Brazales de escamas abisales de ébano","=q4=Cinturón de escamas abisales de ébano"})
+process("LeatherworkingMailNetherstrikeArmor",4,{"","=q4=Coraza de golpe abisal","=q4=Brazales de golpe abisal","=q4=Cinturón de golpe abisal"})
+process("LeatherworkingMailScaledDraenicA",5,{"","=q2=Jubón draénico escamado","=q2=Guantes draénicos escamados","=q2=Pantalones draénicos escamados","=q2=Botas draénicas escamadas"})
+process("LeatherworkingMailStormhideBattlegear",9,{"","=q3=Corona de Tormentero","=q3=Sobrehombros de Tormentero","=q3=Camisote de Tormentero","=q3=Guardamuñecas de Tormentero","=q3=Puños de Tormentero","=q3=Cinturón de Tormentero","=q3=Musleras de Tormentero","=q3=Apisonadoras de Tormentero"})
+process("LeatherworkingMailSwiftarrowBattlefear",9,{"","=q3=Yelmo Flechapresta","=q3=Guardahombros Flechapresta","=q3=Camisote Flechapresta","=q3=Brazales Flechapresta","=q3=Guanteletes Flechapresta","=q3=Cinturón Flechapresta","=q3=Leotardos Flechapresta","=q3=Botas Flechapresta"})
+process("TailoringArcanoVest",4,{"","=q3=Toga de tejido Arcano","=q3=Brazales de tejido Arcano","=q3=Botas de tejido Arcano"})
+process("TailoringBattlecastG",3,{"","=q4=Caperuza de conjuro de batalla","=q4=Pantalones de conjuro de batalla"})
+process("TailoringBloodvineG",4,{"","=q3=Jubón vid de sangre","=q3=Leotardos vid de sangre","=q3=Botas vid de sangre"})
+process("TailoringDuskweaver",9,{"","=q2=Capucha de tejido del alba","=q2=Sobrehombros de tejido del alba","=q2=Toga de tejido del alba","=q2=Cubremuñecas de tejido del alba","=q2=Guantes de tejido del alba","=q2=Cinturón de tejido del alba","=q2=Leotardos de tejido del alba","=q2=Botas de tejido del alba"})
+process("TailoringFrostsavageBattlegear",9,{"","=q3=Cogulla de escarcha salvaje","=q3=Sobrehombros de escarcha salvaje","=q3=Toga de escarcha salvaje","=q3=Brazales de escarcha salvaje","=q3=Guantes de escarcha salvaje","=q3=Cinturón de escarcha salvaje","=q3=Leotardos de escarcha salvaje","=q3=Botas de escarcha salvaje"})
+process("TailoringFrostwovenPower",9,{"","=q2=Capucha tejida con Escarcha","=q2=Sobrehombros tejidos con Escarcha","=q2=Toga tejida con Escarcha","=q2=Cubremuñecas tejidos con Escarcha","=q2=Guantes tejidos con Escarcha","=q2=Cinturón tejido con Escarcha","=q2=Leotardos tejidos con Escarcha","=q2=Botas tejidas con Escarcha"})
+process("TailoringImbuedNeather",5,{"","=q3=Túnica de tejido abisal imbuido","=q3=Toga de tejido abisal imbuido","=q3=Pantalones de tejido abisal imbuido","=q3=Botas de tejido abisal imbuido"})
+process("TailoringNeatherVest",8,{"","=q2=Túnica de tejido abisal","=q2=Toga de tejido abisal","=q2=Brazales de tejido abisal","=q2=Guantes de tejido abisal","=q2=Cinturón de tejido abisal","=q2=Pantalones de tejido abisal","=q2=Botas de tejido abisal"})
+process("TailoringPrimalMoon",4,{"","=q4=Sobrehombros de tela lunar primigenia","=q4=Toga de tela lunar primigenia","=q4=Cinturón de tela lunar primigenia"})
+process("TailoringShadowEmbrace",4,{"","=q4=Sobrehombros de tejido de sombra congelado","=q4=Toga de tejido de sombra congelado","=q4=Botas de tejido de sombra congelado"})
+process("TailoringSoulclothEm",4,{"","=q4=Sobrehombros de paño de alma","=q4=Jubón de paño de alma","=q4=Guantes de paño de alma"})
+process("TailoringSpellfireWrath",4,{"","=q4=Toga de fuego de hechizo","=q4=Guantes de fuego de hechizo","=q4=Cinturón de fuego de hechizo"})
+process("TailoringSpellstrikeInfu",3,{"","=q4=Caperuza de golpe de hechizo","=q4=Pantalones de golpe de hechizo"})
+process("TailoringTheUnyielding",3,{"","=q3=Brazales implacables","=q4=Faja implacable"})
+process("TailoringWhitemendWis",3,{"","=q4=Caperuza con remiendos blancos","=q4=Pantalones con remiendos blancos"})
+elseif locale == "zhCN" then
+process("BlacksmithingMailBloodsoulEmbrace",4,{"","=q3=血魂护肩","=q3=血魂胸甲","=q3=血魂护手"})
+process("BlacksmithingMailFelIronChain",5,{"","=q2=魔铁链甲罩帽","=q2=魔铁链甲外套","=q2=魔铁链甲护腕","=q2=魔铁链甲手套"})
+process("BlacksmithingPlateAdamantiteB",4,{"","=q3=精金胸甲","=q3=精金板甲护腕","=q3=精金板甲手套"})
+process("BlacksmithingPlateBurningRage",5,{"","=q3=怒钢头盔","=q3=怒钢护肩","=q3=怒钢胸甲","=q3=怒钢手套"})
+process("BlacksmithingPlateEnchantedAdaman",5,{"","=q3=魔化精金胸甲","=q3=魔化精金腰带","=q3=魔化精金护腿","=q3=魔化精金长靴"})
+process("BlacksmithingPlateFaithFelsteel",4,{"","=q3=魔钢头盔","=q3=魔钢手套","=q3=魔钢护腿"})
+process("BlacksmithingPlateFelIronPlate",6,{"","=q2=魔铁胸甲","=q2=魔铁板甲手套","=q2=魔铁板甲腰带","=q2=魔铁板甲短裤","=q2=魔铁板甲战靴"})
+process("BlacksmithingPlateFlameG",5,{"","=q3=灭焰头盔","=q3=灭焰胸甲","=q3=灭焰护腕","=q3=灭焰手套"})
+process("BlacksmithingPlateImperialPlate",8,{"","=q2=君王板甲头盔","=q2=君王板甲护肩","=q2=君王板甲护胸","=q2=君王板甲护腕","=q2=君王板甲腰带","=q2=君王板甲护腿","=q2=君王板甲战靴"})
+process("BlacksmithingPlateKhoriumWard",4,{"","=q3=氪金腰带","=q3=氪金短裤","=q3=氪金战靴"})
+process("BlacksmithingPlateOrnateSaroniteBattlegear",9,{"","=q3=Ornate Saronite Skullshield","=q3=Ornate Saronite Pauldrons","=q3=Ornate Saronite Hauberk","=q3=Ornate Saronite Bracers","=q3=Ornate Saronite Gauntlets","=q3=Ornate Saronite Waistguard","=q3=Ornate Saronite Legplates","=q3=Ornate Saronite Walkers"})
+process("BlacksmithingPlateSavageSaroniteBattlegear",9,{"","=q3=Savage Saronite Skullshield","=q3=Savage Saronite Pauldrons","=q3=Savage Saronite Hauberk","=q3=Savage Saronite Bracers","=q3=Savage Saronite Gauntlets","=q3=Savage Saronite Waistguard","=q3=Savage Saronite Legplates","=q3=Savage Saronite Walkers"})
+process("BlacksmithingPlateTheDarksoul",4,{"","=q3=黑暗之魂护肩","=q3=黑暗之魂胸甲","=q3=黑暗之魂护腿"})
+process("CookingDaily1",6,{"=q3=Recipe: Delicious Chocolate Cake","=q3=Recipe: Stormchops","=q2=Recipe: Broiled Bloodfin","=q2=Recipe: Kibler's Bits","=q2=Recipe: Skullfish Soup","=q2=Recipe: Spicy Hot Talbuk"})
+process("CookingDaily2",27,{"=q2=食谱:熏烤龙鳞鱼","=q2=食谱:熏烤座狼肉排","=q2=食谱:小动物的零食","=q2=食谱:墨鱼片","=q2=食谱:龙鳞鱼片","=q2=食谱:爆炒鲑鱼","=q2=食谱:犀牛大餐","=q2=食谱:帝王鳐鱼片","=q2=食谱:猛犸肉大餐","=q2=食谱:巨型犀牛热狗","=q2=食谱:水煮北地蚌背鱼","=q2=食谱:龙犀肉排","=q2=食谱:钳鱼大餐","=q2=食谱:香辣猛犸小吃","=q2=食谱:香辣龙肉汉堡","=q2=食谱:香辣蓝色水母","=q2=食谱:香辣油炸青鱼","=q2=食谱:香嫩铲齿鹿排","=q2=食谱:追踪快餐","=q2=食谱:焦烤座狼","=q3=Chef's Hat","=q1=北地香料","","=q3=Recipe: Delicious Chocolate Cake","=q3=Recipe: Stormchops","=q1=Baby Spice","=q1=Old Spices"})
+process("CraftedWeapons1",24,{"=q4=Shadow's Edge","","=q4=Titansteel Spellblade","=q4=Titansteel Shanker","=q4=Titansteel Bonecrusher","=q4=Titansteel Guardian","=q4=Titansteel Destroyer","=q4=Titansteel Shield Wall","","=q4=Armor Plated Combat Shotgun","=q4=Nesingwary 4000","","=q4=恒金符文之刃","=q4=挽歌","=q4=魔钢长剑","=q4=氪金圣剑","=q4=魔能利斧","=q4=魔钢收割者","=q4=永恒之手","=q4=符印战锤","=q4=魔能强化战槌","=q4=正义力量之锤","","=q4=陀螺平衡氪金重枪"})
+process("CraftedWeapons2",13,{"","=q4=黑色赦免者","=q4=先知之刃","=q4=黑色卫士","=q4=夜幕","=q4=黑手","=q4=说服者","=q4=萨弗隆战锤","=q4=黑色怒火","=q4=碎裂黑曜石盾牌","","=q4=火核狙击步枪","=q4=力反馈盾牌"})
+process("CraftedWeapons3",21,{"","=q4=火焰卫士","=q4=光芒卫士","=q4=光芒之怒","=q4=狮心之刃","=q4=狮心圣剑","=q4=狮心斩杀者","","=q4=位面战斧","=q4=黑色位面战斧","=q4=邪恶位面战斧","=q4=新月","=q4=月牙屠斧","=q4=血月","","=q4=龙拳之锤","=q4=巨龙之喉","=q4=巨龙之击","=q4=雷霆","=q4=惊雷","=q4=风暴使者"})
+process("FishingDaily1",17,{"=q4=The 2 Ring","=q3=Weather-Beaten Fishing Hat","=q3=莫莫的小桶","=q3=毒皮的小桶","=q3=尼尼的小桶","=q3=牙牙的小桶","=q3=Eye of the Sea","=q2=Recipe: Captain Rumsey's Lager","=q2=Spun Truesilver Fishing Line","=q1=Noble's Monocle","=q1=Antique Silver Cufflinks","=q1=Gold Wedding Band","=q1=Ornate Drinking Stein","=q1=Razor Sharp Fillet Knife","=q1=Weather-Beaten Journal","=q1=Elixir of Water Walking","=q1=Sharpened Fish Hook"})
+process("FishingDaily2",23,{"=q4=Bold Stormjewel","=q4=Brilliant Stormjewel","=q4=Delicate Stormjewel","=q4=Rigid Stormjewel","=q4=Runed Stormjewel","=q4=Solid Stormjewel","=q4=Sparkling Stormjewel","=q3=Weather-Beaten Fishing Hat","=q3=Bone Fishing Pole","=q3=Jeweled Fishing Pole","=q3=Strand Crawler","=q3=海妖之泪","=q3=Tiny Titanium Lockbox","=q2=Recipe: Captain Rumsey's Lager","=q2=高强度恒金渔线","=q1=Battered Jungle Hat","=q1=Diamond-tipped Cane","=q1=Glow Worm","=q1=Unusual Compass","=q1=Pygmy Oil","=q1=Elixir of Water Walking","=q1=Sealed Vial of Poison","=q1=Waterlogged Recipe"})
+process("JewelDragonsEye1",19,{"","","","","","","","","","","","","","","","","","","=q3=Dragon's Eye"})
+process("JewelcraftingDaily1",19,{"=q3=Design: Bold Cardinal Ruby","=q3=Design: Bright Cardinal Ruby","=q3=Design: Delicate Cardinal Ruby","=q3=Design: Flashing Cardinal Ruby","=q3=Design: Fractured Cardinal Ruby","=q3=Design: Precise Cardinal Ruby","=q3=Design: Runed Cardinal Ruby","=q3=Design: Subtle Cardinal Ruby","=q3=图鉴:朴素血玉石","=q3=图鉴:精致血玉石","=q3=图鉴:闪光血玉石","=q3=Design: Brilliant King's Amber","=q3=Design: Mystic King's Amber","=q3=Design: Quick King's Amber","=q3=Design: Rigid King's Amber","=q3=Design: Smooth King's Amber","=q3=Design: Thick King's Amber","=q3=图鉴:迅捷秋色石","=q3=图鉴:刚硬秋色石"})
+process("JewelcraftingDaily2",28,{"=q3=Design: Accurate Ametrine","=q3=Design: Champion's Ametrine","=q3=Design: Deadly Ametrine","=q3=Design: Deft Ametrine","=q3=Design: Durable Ametrine","=q3=Design: Empowered Ametrine","=q3=Design: Etched Ametrine","=q3=Design: Fierce Ametrine","=q3=Design: Glimmering Ametrine","=q3=Design: Glinting Ametrine","=q3=Design: Inscribed Ametrine","=q3=Design: Lucent Ametrine","=q3=Design: Luminous Ametrine","=q3=Design: Potent Ametrine","=q3=Design: Pristine Ametrine","=q3=Design: Reckless Ametrine","=q3=Design: Resolute Ametrine","=q3=Design: Resplendent Ametrine","=q3=Design: Stalwart Ametrine","=q3=Design: Stark Ametrine","=q3=Design: Veiled Ametrine","=q3=Design: Wicked Ametrine","=q3=图鉴:反光帝黄晶","=q3=图鉴:辉光帝黄晶","=q3=图鉴:高能帝黄晶","=q3=图鉴:鲁莽帝黄晶","=q3=图鉴:荒凉帝黄晶","=q3=图鉴:隐秘帝黄晶"})
+process("JewelcraftingDaily3",26,{"=q3=Design: Dazzling Eye of Zul","=q3=Design: Enduring Eye of Zul","=q3=Design: Energized Eye of Zul","=q3=Design: Forceful Eye of Zul","=q3=Design: Intricate Eye of Zul","=q3=Design: Jagged Eye of Zul","=q3=Design: Lambent Eye of Zul","=q3=Design: Misty Eye of Zul","=q3=Design: Opaque Eye of Zul","=q3=Design: Radiant Eye of Zul","=q3=Design: Seer's Eye of Zul","=q3=Design: Shattered Eye of Zul","=q3=Design: Shining Eye of Zul","=q3=Design: Steady Eye of Zul","=q3=Design: Sundered Eye of Zul","=q3=Design: Tense Eye of Zul","=q3=Design: Timeless Eye of Zul","=q3=Design: Turbid Eye of Zul","=q3=Design: Vivid Eye of Zul","=q3=图鉴:坚硬森林翡翠","=q3=图鉴:活跃森林翡翠","=q3=图鉴:坚强森林翡翠","=q3=图鉴:复杂森林翡翠","=q3=图鉴:烁光森林翡翠","=q3=图鉴:先知的森林翡翠","=q3=图鉴:鲜艳森林翡翠"})
+process("JewelcraftingDaily4",16,{"=q3=Design: Balanced Dreadstone","=q3=Design: Defender's Dreadstone","=q3=Design: Glowing Dreadstone","=q3=Design: Guardian's Dreadstone","=q3=Design: Infused Dreadstone","=q3=Design: Mysterious Dreadstone","=q3=Design: Puissant Dreadstone","=q3=Design: Purified Dreadstone","=q3=Design: Regal Dreadstone","=q3=Design: Royal Dreadstone","=q3=Design: Shifting Dreadstone","=q3=Design: Sovereign Dreadstone","=q3=Design: Tenuous Dreadstone","=q3=图鉴:强攻曙光猫眼石","=q3=图鉴:华丽曙光猫眼石","=q3=图鉴:皇家曙光猫眼石"})
+process("JewelcraftingDaily5",14,{"=q3=Design: Lustrous Majestic Zircon","=q3=Design: Solid Majestic Zircon","=q3=Design: Sparkling Majestic Zircon","=q3=Design: Stormy Majestic Zircon","=q3=图鉴:异彩天蓝石","=q3=图鉴:致密天蓝石","=q3=图鉴:混乱之天焰钻石","=q3=图鉴:光辉之天焰钻石","=q3=图鉴:灰烬之天焰钻石","=q3=图鉴:洞察之大地侵攻钻石","=q3=图鉴:充沛之大地侵攻钻石","=q3=图鉴:残酷之大地侵攻钻石","=q3=图鉴:复苏之天焰钻石","=q3=图鉴:锋利之大地侵攻钻石"})
+process("JewelcraftingDaily6",24,{"=q3=图鉴:朴素龙眼石","=q3=图鉴:明亮龙眼石","=q3=图鉴:闪耀龙眼石","=q3=图鉴:精致龙眼石","=q3=图鉴:闪光龙眼石","=q3=图鉴:断裂龙眼石","=q3=图鉴:异彩龙眼石","=q3=图鉴:秘法龙眼石","=q3=图鉴:精准龙眼石","=q3=图鉴:迅捷龙眼石","=q3=图鉴:刚硬龙眼石","=q3=图鉴:符文龙眼石","=q3=图鉴:圆润龙眼石","=q3=图鉴:致密龙眼石","=q3=图鉴:火花龙眼石","=q3=图鉴:风暴龙眼石","=q3=图鉴:诡秘龙眼石","=q3=图鉴:厚重龙眼石","=q4=图鉴:泰坦神铁地卫项圈","=q4=图鉴:泰坦神铁地卫指环","=q4=图鉴:泰坦神铁冲击指环","=q4=图鉴:泰坦神铁冲击项圈","=q4=图鉴:泰坦神铁魔震项链","=q4=图鉴:泰坦神铁魔震指环"})
+process("LeatherworkingLeatherBloodTigerH",3,{"","=q3=血虎护肩","=q3=血虎胸甲"})
+process("LeatherworkingLeatherBoreanEmbrace",9,{"","=q2=Arctic Helm","=q2=Arctic Shoulderpads","=q2=Arctic Chestpiece","=q2=Arctic Wristguards","=q2=Arctic Gloves","=q2=Arctic Belt","=q2=Arctic Leggings","=q2=Arctic Boots"})
+process("LeatherworkingLeatherDevilsaurArmor",3,{"","=q3=魔暴龙皮手套","=q3=魔暴龙皮护腿"})
+process("LeatherworkingLeatherEvisceratorBattlegear",9,{"","=q3=Eviscerator's Facemask","=q3=Eviscerator's Shoulderpads","=q3=Eviscerator's Chestguard","=q3=Eviscerator's Bindings","=q3=Eviscerator's Gauntlets","=q3=Eviscerator's Waistguard","=q3=Eviscerator's Legguards","=q3=Eviscerator's Treads"})
+process("LeatherworkingLeatherFelSkin",4,{"","=q3=魔能皮甲手套","=q3=魔能皮甲护腿","=q3=魔能皮甲长靴"})
+process("LeatherworkingLeatherIceborneEmbrace",9,{"","=q2=Iceborne Helm","=q2=Iceborne Shoulderpads","=q2=Iceborne Chestguard","=q2=Iceborne Wristguards","=q2=Iceborne Gloves","=q2=Iceborne Belt","=q2=Iceborne Leggings","=q2=Iceborne Boots"})
+process("LeatherworkingLeatherIronfeatherArmor",3,{"","=q3=铁羽护肩","=q3=铁羽胸甲"})
+process("LeatherworkingLeatherOvercasterBattlegear",9,{"","=q3=Overcast Headguard","=q3=Overcast Spaulders","=q3=Overcast Chestguard","=q3=Overcast Bracers","=q3=Overcast Handwraps","=q3=Overcast Belt","=q3=Overcast Leggings","=q3=Overcast Boots"})
+process("LeatherworkingLeatherPrimalBatskin",4,{"","=q3=原始蝙蝠皮外套","=q3=原始蝙蝠皮护腕","=q3=原始蝙蝠皮手套"})
+process("LeatherworkingLeatherPrimalIntent",4,{"","=q4=原始打击外衣","=q4=原始打击护腕","=q4=原始打击腰带"})
+process("LeatherworkingLeatherSClefthoof",4,{"","=q3=厚重裂蹄外套","=q3=厚重裂蹄护腿","=q3=厚重裂蹄长靴"})
+process("LeatherworkingLeatherStormshroudArmor",5,{"","=q3=雷暴护肩","=q3=雷暴护甲","=q3=雷暴手套","=q3=雷暴短裤"})
+process("LeatherworkingLeatherThickDraenicA",5,{"","=q2=厚重德莱尼外套","=q2=厚重德莱尼手套","=q2=厚重德莱尼短裤","=q2=厚重德莱尼长靴"})
+process("LeatherworkingLeatherVolcanicArmor",4,{"","=q2=火山护肩","=q2=火山胸甲","=q2=火山护腿"})
+process("LeatherworkingLeatherWildDraenishA",5,{"","=q2=野性德莱尼外套","=q2=野性德莱尼手套","=q2=野性德莱尼护腿","=q2=野性德莱尼长靴"})
+process("LeatherworkingLeatherWindhawkArmor",4,{"","=q4=风鹰胸甲","=q4=风鹰护腕","=q4=风鹰腰带"})
+process("LeatherworkingMailBlackDragonM",5,{"","=q3=黑色龙鳞护肩","=q3=黑色龙鳞胸甲","=q3=黑色龙鳞护腿","=q4=黑色龙鳞战靴"})
+process("LeatherworkingMailBlueDragonM",4,{"","=q3=蓝龙鳞片护肩","=q3=蓝龙鳞片胸甲","=q3=蓝龙鳞片护腿"})
+process("LeatherworkingMailFelscaleArmor",5,{"","=q2=魔鳞胸甲","=q2=魔鳞手套","=q2=魔鳞短裤","=q2=魔鳞长靴"})
+process("LeatherworkingMailFelstalkerArmor",4,{"","=q3=魔能猎手胸甲","=q3=魔能猎手护腕","=q3=魔能猎手腰带"})
+process("LeatherworkingMailFrostscaleBinding",9,{"","=q2=Frostscale Helm","=q2=Frostscale Shoulders","=q2=Frostscale Chestguard","=q2=Frostscale Bracers","=q2=Frostscale Gloves","=q2=Frostscale Belt","=q2=Frostscale Leggings","=q2=Frostscale Boots"})
+process("LeatherworkingMailGreenDragonM",4,{"","=q3=绿龙鳞片胸甲","=q3=绿色龙鳞护手","=q3=绿龙鳞片护腿"})
+process("LeatherworkingMailNerubianHive",9,{"","=q2=Nerubian Helm","=q2=Nerubian Shoulders","=q2=Nerubian Chestguard","=q2=Nerubian Bracers","=q2=Nerubian Gloves","=q2=Nerubian Belt","=q2=Nerubian Legguards","=q2=Nerubian Boots"})
+process("LeatherworkingMailNetherFury",4,{"","=q3=虚空之怒腰带","=q3=虚空之怒护腿","=q3=虚空之怒长靴"})
+process("LeatherworkingMailNetherscaleArmor",4,{"","=q4=黑色虚鳞胸甲","=q4=黑色虚鳞护腕","=q4=黑色虚鳞腰带"})
+process("LeatherworkingMailNetherstrikeArmor",4,{"","=q4=虚空打击胸甲","=q4=虚空打击护腕","=q4=虚空打击腰带"})
+process("LeatherworkingMailScaledDraenicA",5,{"","=q2=缀鳞德拉诺外套","=q2=缀鳞德拉诺手套","=q2=缀鳞德拉诺短裤","=q2=缀鳞德拉诺长靴"})
+process("LeatherworkingMailStormhideBattlegear",9,{"","=q3=Stormhide Crown","=q3=Stormhide Shoulders","=q3=Stormhide Hauberk","=q3=Stormhide Wristguards","=q3=Stormhide Grips","=q3=Stormhide Belt","=q3=Stormhide Legguards","=q3=Stormhide Stompers"})
+process("LeatherworkingMailSwiftarrowBattlefear",9,{"","=q3=Swiftarrow Helm","=q3=Swiftarrow Shoulderguards","=q3=Swiftarrow Hauberk","=q3=Swiftarrow Bracers","=q3=Swiftarrow Gauntlets","=q3=Swiftarrow Belt","=q3=Swiftarrow Leggings","=q3=Swiftarrow Boots"})
+process("TailoringArcanoVest",4,{"","=q3=奥法交织长袍","=q3=奥法交织护腕","=q3=奥法交织长靴"})
+process("TailoringBattlecastG",3,{"","=q4=战斗施法罩帽","=q4=战斗施法短裤"})
+process("TailoringBloodvineG",4,{"","=q3=血藤外套","=q3=血藤护腿","=q3=血藤长靴"})
+process("TailoringDuskweaver",9,{"","=q2=Duskweave Cowl","=q2=Duskweave Shoulders","=q2=Duskweave Robe","=q2=Duskweave Wristwraps","=q2=Duskweave Gloves","=q2=Duskweave Belt","=q2=Duskweave Leggings","=q2=Duskweave Boots"})
+process("TailoringFrostsavageBattlegear",9,{"","=q3=Frostsavage Cowl","=q3=Frostsavage Shoulders","=q3=Frostsavage Robe","=q3=Frostsavage Bracers","=q3=Frostsavage Gloves","=q3=Frostsavage Belt","=q3=Frostsavage Leggings","=q3=Frostsavage Boots"})
+process("TailoringFrostwovenPower",9,{"","=q2=Frostwoven Cowl","=q2=Frostwoven Shoulders","=q2=Frostwoven Robe","=q2=Frostwoven Wristwraps","=q2=Frostwoven Gloves","=q2=Frostwoven Belt","=q2=Frostwoven Leggings","=q2=Frostwoven Boots"})
+process("TailoringImbuedNeather",5,{"","=q3=魔化灵纹外套","=q3=魔化灵纹长袍","=q3=魔化灵纹短裤","=q3=魔化灵纹长靴"})
+process("TailoringNeatherVest",8,{"","=q2=灵纹外套","=q2=灵纹长袍","=q2=灵纹护腕","=q2=灵纹手套","=q2=灵纹腰带","=q2=灵纹短裤","=q2=灵纹长靴"})
+process("TailoringPrimalMoon",4,{"","=q4=原始月布护肩","=q4=原始月布长袍","=q4=原始月布腰带"})
+process("TailoringShadowEmbrace",4,{"","=q4=冰霜暗纹护肩","=q4=冰霜暗纹长袍","=q4=冰霜暗纹长靴"})
+process("TailoringSoulclothEm",4,{"","=q4=灵魂布护肩","=q4=灵魂布外衣","=q4=灵魂布手套"})
+process("TailoringSpellfireWrath",4,{"","=q4=魔焰长袍","=q4=魔焰手套","=q4=魔焰腰带"})
+process("TailoringSpellstrikeInfu",3,{"","=q4=法术打击兜帽","=q4=法术打击短裤"})
+process("TailoringTheUnyielding",3,{"","=q3=不屈护腕","=q4=不屈束带"})
+process("TailoringWhitemendWis",3,{"","=q4=白色治愈兜帽","=q4=白色治愈短裤"})
+elseif locale == "zhTW" then
+process("BlacksmithingMailBloodsoulEmbrace",4,{"","=q3=血魂護肩","=q3=血魂胸甲","=q3=血魂護手"})
+process("BlacksmithingMailFelIronChain",5,{"","=q2=魔鐵鍊甲罩盔","=q2=魔鐵鍊甲外套","=q2=魔鐵鍊甲護腕","=q2=魔鐵鍊甲手套"})
+process("BlacksmithingPlateAdamantiteB",4,{"","=q3=堅鋼胸甲","=q3=堅鋼鎧甲護腕","=q3=堅鋼鎧甲手套"})
+process("BlacksmithingPlateBurningRage",5,{"","=q3=怒鋼頭盔","=q3=怒鋼護肩","=q3=怒鋼胸甲","=q3=怒鋼手套"})
+process("BlacksmithingPlateEnchantedAdaman",5,{"","=q3=附魔堅鋼胸甲","=q3=附魔堅鋼腰帶","=q3=附魔堅鋼護腿","=q3=附魔堅鋼長靴"})
+process("BlacksmithingPlateFaithFelsteel",4,{"","=q3=魔鋼頭盔","=q3=魔鋼手套","=q3=魔鋼護腿"})
+process("BlacksmithingPlateFelIronPlate",6,{"","=q2=魔鐵胸甲","=q2=魔鐵鎧甲手套","=q2=魔鐵鎧甲腰帶","=q2=魔鐵鎧甲束褲","=q2=魔鐵鎧甲長靴"})
+process("BlacksmithingPlateFlameG",5,{"","=q3=烈焰毀滅頭盔","=q3=烈焰毀滅胸甲","=q3=烈焰毀滅護腕","=q3=烈焰毀滅手套"})
+process("BlacksmithingPlateImperialPlate",8,{"","=q2=帝國鎧甲頭盔","=q2=帝國鎧甲護肩","=q2=帝國鎧甲護胸","=q2=帝國鎧甲護腕","=q2=帝國鎧甲腰帶","=q2=帝國鎧甲護腿","=q2=帝國鎧甲長靴"})
+process("BlacksmithingPlateKhoriumWard",4,{"","=q3=克銀腰帶","=q3=克銀束褲","=q3=克銀長靴"})
+process("BlacksmithingPlateOrnateSaroniteBattlegear",9,{"","=q3=Ornate Saronite Skullshield","=q3=Ornate Saronite Pauldrons","=q3=Ornate Saronite Hauberk","=q3=Ornate Saronite Bracers","=q3=Ornate Saronite Gauntlets","=q3=Ornate Saronite Waistguard","=q3=Ornate Saronite Legplates","=q3=Ornate Saronite Walkers"})
+process("BlacksmithingPlateSavageSaroniteBattlegear",9,{"","=q3=Savage Saronite Skullshield","=q3=Savage Saronite Pauldrons","=q3=Savage Saronite Hauberk","=q3=Savage Saronite Bracers","=q3=Savage Saronite Gauntlets","=q3=Savage Saronite Waistguard","=q3=Savage Saronite Legplates","=q3=Savage Saronite Walkers"})
+process("BlacksmithingPlateTheDarksoul",4,{"","=q3=黑暗之魂護肩","=q3=黑暗之魂胸甲","=q3=黑暗之魂護腿"})
+process("CookingDaily1",6,{"=q3=Recipe: Delicious Chocolate Cake","=q3=Recipe: Stormchops","=q2=Recipe: Broiled Bloodfin","=q2=Recipe: Kibler's Bits","=q2=Recipe: Skullfish Soup","=q2=Recipe: Spicy Hot Talbuk"})
+process("CookingDaily2",27,{"=q2=食譜:焦黑的龍鰭","=q2=食譜:焦黑的座狼排","=q2=食譜:小動物餌食","=q2=食譜:墨魚排","=q2=食譜:龍鰭魚片","=q2=食譜:爆香鮭魚","=q2=食譜:營養犀牛肉","=q2=食譜:帝王韌皮魟魚排","=q2=食譜:超級長毛象餐","=q2=食譜:強力犀牛熱狗","=q2=食譜:水煮北地牛尾魚","=q2=食譜:犀蟲雜肉排","=q2=食譜:終極鯛魚","=q2=食譜:辣味長毛象美饌","=q2=食譜:辣味巨蟲堡","=q2=食譜:辣味藍蕁麻魚","=q2=食譜:辣味炸鯡魚","=q2=食譜:嫩鍬牙肉排","=q2=食譜:追蹤者點心","=q2=食譜:嚴重烤焦的座狼肉","=q3=Chef's Hat","=q1=北地香料","","=q3=Recipe: Delicious Chocolate Cake","=q3=Recipe: Stormchops","=q1=Baby Spice","=q1=Old Spices"})
+process("CraftedWeapons1",24,{"=q4=Shadow's Edge","","=q4=Titansteel Spellblade","=q4=Titansteel Shanker","=q4=Titansteel Bonecrusher","=q4=Titansteel Guardian","=q4=Titansteel Destroyer","=q4=Titansteel Shield Wall","","=q4=Armor Plated Combat Shotgun","=q4=Nesingwary 4000","","=q4=恆金符文刃","=q4=輓歌之刃","=q4=魔鋼長刃","=q4=克銀勇士","=q4=魔鋒戰鬥斧","=q4=魔鋼斧","=q4=永恆之手","=q4=符刻錘","=q4=魔鐵強化槌","=q4=公正力量之錘","","=q4=迴轉平衡克銀毀滅火槍"})
+process("CraftedWeapons2",13,{"","=q4=黑色赦免者","=q4=賢者之刃","=q4=黑色衛士","=q4=夜幕","=q4=黑檀之手","=q4=說服者","=q4=薩弗隆戰錘","=q4=黑色怒火","=q4=鋸齒黑曜石之盾","","=q4=熔核狙擊步槍","=q4=力回饋盾牌"})
+process("CraftedWeapons3",21,{"","=q4=火焰衛士","=q4=燃燒守護者","=q4=燃燒之怒","=q4=獅心之刃","=q4=獅心勇士劍","=q4=獅心斬首者","","=q4=異界之鋒","=q4=黑色異界之鋒","=q4=諸界邪鋒","=q4=新月斧","=q4=月光斬斧","=q4=血月","","=q4=龍拳之錘","=q4=龍喉","=q4=龍擊","=q4=雷","=q4=深雷","=q4=風暴信使"})
+process("FishingDaily1",17,{"=q4=The 2 Ring","=q3=Weather-Beaten Fishing Hat","=q3=恰克的水桶","=q3=污息的水桶","=q3=史納立的水桶","=q3=凸牙的水桶","=q3=Eye of the Sea","=q2=Recipe: Captain Rumsey's Lager","=q2=Spun Truesilver Fishing Line","=q1=Noble's Monocle","=q1=Antique Silver Cufflinks","=q1=Gold Wedding Band","=q1=Ornate Drinking Stein","=q1=Razor Sharp Fillet Knife","=q1=Weather-Beaten Journal","=q1=Elixir of Water Walking","=q1=Sharpened Fish Hook"})
+process("FishingDaily2",23,{"=q4=Bold Stormjewel","=q4=Brilliant Stormjewel","=q4=Delicate Stormjewel","=q4=Rigid Stormjewel","=q4=Runed Stormjewel","=q4=Solid Stormjewel","=q4=Sparkling Stormjewel","=q3=Weather-Beaten Fishing Hat","=q3=Bone Fishing Pole","=q3=Jeweled Fishing Pole","=q3=Strand Crawler","=q3=海妖之淚","=q3=Tiny Titanium Lockbox","=q2=Recipe: Captain Rumsey's Lager","=q2=高強度恆金漁線","=q1=Battered Jungle Hat","=q1=Diamond-tipped Cane","=q1=Glow Worm","=q1=Unusual Compass","=q1=Pygmy Oil","=q1=Elixir of Water Walking","=q1=Sealed Vial of Poison","=q1=Waterlogged Recipe"})
+process("JewelDragonsEye1",19,{"","","","","","","","","","","","","","","","","","","=q3=Dragon's Eye"})
+process("JewelcraftingDaily1",19,{"=q3=Design: Bold Cardinal Ruby","=q3=Design: Bright Cardinal Ruby","=q3=Design: Delicate Cardinal Ruby","=q3=Design: Flashing Cardinal Ruby","=q3=Design: Fractured Cardinal Ruby","=q3=Design: Precise Cardinal Ruby","=q3=Design: Runed Cardinal Ruby","=q3=Design: Subtle Cardinal Ruby","=q3=設計圖:清晰的血色紅寶石","=q3=設計圖:精緻的血色紅寶石","=q3=設計圖:閃光的血色紅寶石","=q3=Design: Brilliant King's Amber","=q3=Design: Mystic King's Amber","=q3=Design: Quick King's Amber","=q3=Design: Rigid King's Amber","=q3=Design: Smooth King's Amber","=q3=Design: Thick King's Amber","=q3=設計圖:迅速的秋輝石","=q3=設計圖:堅硬的秋輝石"})
+process("JewelcraftingDaily2",28,{"=q3=Design: Accurate Ametrine","=q3=Design: Champion's Ametrine","=q3=Design: Deadly Ametrine","=q3=Design: Deft Ametrine","=q3=Design: Durable Ametrine","=q3=Design: Empowered Ametrine","=q3=Design: Etched Ametrine","=q3=Design: Fierce Ametrine","=q3=Design: Glimmering Ametrine","=q3=Design: Glinting Ametrine","=q3=Design: Inscribed Ametrine","=q3=Design: Lucent Ametrine","=q3=Design: Luminous Ametrine","=q3=Design: Potent Ametrine","=q3=Design: Pristine Ametrine","=q3=Design: Reckless Ametrine","=q3=Design: Resolute Ametrine","=q3=Design: Resplendent Ametrine","=q3=Design: Stalwart Ametrine","=q3=Design: Stark Ametrine","=q3=Design: Veiled Ametrine","=q3=Design: Wicked Ametrine","=q3=設計圖:閃爍的君王黃寶石","=q3=設計圖:夜光的君王黃寶石","=q3=設計圖:高效的君王黃寶石","=q3=設計圖:魯莽的君王黃寶石","=q3=設計圖:突出的君王黃寶石","=q3=設計圖:朦朧的君王黃寶石"})
+process("JewelcraftingDaily3",26,{"=q3=Design: Dazzling Eye of Zul","=q3=Design: Enduring Eye of Zul","=q3=Design: Energized Eye of Zul","=q3=Design: Forceful Eye of Zul","=q3=Design: Intricate Eye of Zul","=q3=Design: Jagged Eye of Zul","=q3=Design: Lambent Eye of Zul","=q3=Design: Misty Eye of Zul","=q3=Design: Opaque Eye of Zul","=q3=Design: Radiant Eye of Zul","=q3=Design: Seer's Eye of Zul","=q3=Design: Shattered Eye of Zul","=q3=Design: Shining Eye of Zul","=q3=Design: Steady Eye of Zul","=q3=Design: Sundered Eye of Zul","=q3=Design: Tense Eye of Zul","=q3=Design: Timeless Eye of Zul","=q3=Design: Turbid Eye of Zul","=q3=Design: Vivid Eye of Zul","=q3=設計圖:耐久的森之翡翠","=q3=設計圖:充能的森之翡翠","=q3=設計圖:堅強的森之翡翠","=q3=設計圖:錯綜的森之翡翠","=q3=設計圖:柔光的森之翡翠","=q3=設計圖:先知的森之翡翠","=q3=設計圖:鮮艷的森之翡翠"})
+process("JewelcraftingDaily4",16,{"=q3=Design: Balanced Dreadstone","=q3=Design: Defender's Dreadstone","=q3=Design: Glowing Dreadstone","=q3=Design: Guardian's Dreadstone","=q3=Design: Infused Dreadstone","=q3=Design: Mysterious Dreadstone","=q3=Design: Puissant Dreadstone","=q3=Design: Purified Dreadstone","=q3=Design: Regal Dreadstone","=q3=Design: Royal Dreadstone","=q3=Design: Shifting Dreadstone","=q3=Design: Sovereign Dreadstone","=q3=Design: Tenuous Dreadstone","=q3=設計圖:強權的暮光蛋白石","=q3=設計圖:華貴的暮光蛋白石","=q3=設計圖:皇家的暮光蛋白石"})
+process("JewelcraftingDaily5",14,{"=q3=Design: Lustrous Majestic Zircon","=q3=Design: Solid Majestic Zircon","=q3=Design: Sparkling Majestic Zircon","=q3=Design: Stormy Majestic Zircon","=q3=設計圖:光輝的青空藍寶石","=q3=設計圖:堅固的青空藍寶石","=q3=設計圖:混沌的天燄鑽石","=q3=設計圖:光耀的天燄鑽石","=q3=設計圖:餘燼的天燄鑽石","=q3=設計圖:洞察的大地圍城鑽石","=q3=設計圖:鼓舞的大地圍城鑽石","=q3=設計圖:不懈的大地圍城鑽石","=q3=設計圖:甦活的天燄鑽石","=q3=設計圖:鋒銳的大地圍城鑽石"})
+process("JewelcraftingDaily6",24,{"=q3=設計圖:清晰的龍瞳石","=q3=設計圖:光亮的龍瞳石","=q3=設計圖:明亮的龍瞳石","=q3=設計圖:精緻的龍瞳石","=q3=設計圖:閃光的龍瞳石","=q3=設計圖:裂面的龍瞳石","=q3=設計圖:光輝的龍瞳石","=q3=設計圖:神秘的龍瞳石","=q3=設計圖:精確的龍瞳石","=q3=設計圖:迅速的龍瞳石","=q3=設計圖:堅硬的龍瞳石","=q3=設計圖:符文的龍瞳石","=q3=設計圖:光滑的龍瞳石","=q3=設計圖:堅固的龍瞳石","=q3=設計圖:閃亮的龍瞳石","=q3=設計圖:風暴的龍瞳石","=q3=設計圖:精巧的龍瞳石","=q3=設計圖:厚重的龍瞳石","=q4=設計圖:泰坦鋼大地守衛之鍊","=q4=設計圖:泰坦鋼大地守衛戒指","=q4=設計圖:泰坦鋼衝擊指環","=q4=設計圖:泰坦鋼衝擊頸飾","=q4=設計圖:泰坦鋼法術震擊項鍊","=q4=設計圖:泰坦鋼法術震擊戒指"})
+process("LeatherworkingLeatherBloodTigerH",3,{"","=q3=血虎護肩","=q3=血虎胸甲"})
+process("LeatherworkingLeatherBoreanEmbrace",9,{"","=q2=Arctic Helm","=q2=Arctic Shoulderpads","=q2=Arctic Chestpiece","=q2=Arctic Wristguards","=q2=Arctic Gloves","=q2=Arctic Belt","=q2=Arctic Leggings","=q2=Arctic Boots"})
+process("LeatherworkingLeatherDevilsaurArmor",3,{"","=q3=魔暴龍護手","=q3=魔暴龍皮護腿"})
+process("LeatherworkingLeatherEvisceratorBattlegear",9,{"","=q3=Eviscerator's Facemask","=q3=Eviscerator's Shoulderpads","=q3=Eviscerator's Chestguard","=q3=Eviscerator's Bindings","=q3=Eviscerator's Gauntlets","=q3=Eviscerator's Waistguard","=q3=Eviscerator's Legguards","=q3=Eviscerator's Treads"})
+process("LeatherworkingLeatherFelSkin",4,{"","=q3=惡魔皮手套","=q3=惡魔皮護腿","=q3=惡魔皮靴"})
+process("LeatherworkingLeatherIceborneEmbrace",9,{"","=q2=Iceborne Helm","=q2=Iceborne Shoulderpads","=q2=Iceborne Chestguard","=q2=Iceborne Wristguards","=q2=Iceborne Gloves","=q2=Iceborne Belt","=q2=Iceborne Leggings","=q2=Iceborne Boots"})
+process("LeatherworkingLeatherIronfeatherArmor",3,{"","=q3=鐵羽護肩","=q3=鐵羽胸甲"})
+process("LeatherworkingLeatherOvercasterBattlegear",9,{"","=q3=Overcast Headguard","=q3=Overcast Spaulders","=q3=Overcast Chestguard","=q3=Overcast Bracers","=q3=Overcast Handwraps","=q3=Overcast Belt","=q3=Overcast Leggings","=q3=Overcast Boots"})
+process("LeatherworkingLeatherPrimalBatskin",4,{"","=q3=原始蝙蝠皮上衣","=q3=原始蝙蝠皮護腕","=q3=原始蝙蝠皮手套"})
+process("LeatherworkingLeatherPrimalIntent",4,{"","=q4=原始之擊外衣","=q4=原始之擊護腕","=q4=原始之擊腰帶"})
+process("LeatherworkingLeatherSClefthoof",4,{"","=q3=重型裂蹄外衣","=q3=重型裂蹄護腿","=q3=重型裂蹄長靴"})
+process("LeatherworkingLeatherStormshroudArmor",5,{"","=q3=雷暴護肩","=q3=雷暴護甲","=q3=雷暴手套","=q3=雷暴束褲"})
+process("LeatherworkingLeatherThickDraenicA",5,{"","=q2=厚德萊尼外衣","=q2=厚德萊尼手套","=q2=厚德萊尼束褲","=q2=厚德萊尼長靴"})
+process("LeatherworkingLeatherVolcanicArmor",4,{"","=q2=火山護肩","=q2=火山胸甲","=q2=火山護腿"})
+process("LeatherworkingLeatherWildDraenishA",5,{"","=q2=狂野德萊尼外衣","=q2=狂野德萊尼手套","=q2=狂野德萊尼護腿","=q2=狂野德萊尼長靴"})
+process("LeatherworkingLeatherWindhawkArmor",4,{"","=q4=風之隼鍊衫","=q4=風之隼護腕","=q4=風之隼腰帶"})
+process("LeatherworkingMailBlackDragonM",5,{"","=q3=黑色龍鱗護肩","=q3=黑色龍鱗胸甲","=q3=黑色龍鱗護腿","=q4=黑色龍鱗長靴"})
+process("LeatherworkingMailBlueDragonM",4,{"","=q3=藍龍鱗片護肩","=q3=藍龍鱗片胸甲","=q3=藍龍鱗片護腿"})
+process("LeatherworkingMailFelscaleArmor",5,{"","=q2=魔鱗胸甲","=q2=魔鱗手套","=q2=魔鱗束褲","=q2=魔鱗長靴"})
+process("LeatherworkingMailFelstalkerArmor",4,{"","=q3=惡魔捕獵者胸甲","=q3=惡魔捕獵者護腕","=q3=惡魔捕獵者腰帶"})
+process("LeatherworkingMailFrostscaleBinding",9,{"","=q2=Frostscale Helm","=q2=Frostscale Shoulders","=q2=Frostscale Chestguard","=q2=Frostscale Bracers","=q2=Frostscale Gloves","=q2=Frostscale Belt","=q2=Frostscale Leggings","=q2=Frostscale Boots"})
+process("LeatherworkingMailGreenDragonM",4,{"","=q3=綠龍鱗片胸甲","=q3=綠色龍鱗護手","=q3=綠龍鱗片護腿"})
+process("LeatherworkingMailNerubianHive",9,{"","=q2=Nerubian Helm","=q2=Nerubian Shoulders","=q2=Nerubian Chestguard","=q2=Nerubian Bracers","=q2=Nerubian Gloves","=q2=Nerubian Belt","=q2=Nerubian Legguards","=q2=Nerubian Boots"})
+process("LeatherworkingMailNetherFury",4,{"","=q3=虛空之怒腰帶","=q3=虛空之怒護腿","=q3=虛空之怒長靴"})
+process("LeatherworkingMailNetherscaleArmor",4,{"","=q4=黑虛空鱗胸甲","=q4=黑虛空鱗護腕","=q4=黑虛空鱗腰帶"})
+process("LeatherworkingMailNetherstrikeArmor",4,{"","=q4=地擊胸甲","=q4=地擊護腕","=q4=地擊腰帶"})
+process("LeatherworkingMailScaledDraenicA",5,{"","=q2=德萊尼綴鱗外衣","=q2=德萊尼綴鱗手套","=q2=德萊尼綴鱗束褲","=q2=德萊尼綴鱗長靴"})
+process("LeatherworkingMailStormhideBattlegear",9,{"","=q3=Stormhide Crown","=q3=Stormhide Shoulders","=q3=Stormhide Hauberk","=q3=Stormhide Wristguards","=q3=Stormhide Grips","=q3=Stormhide Belt","=q3=Stormhide Legguards","=q3=Stormhide Stompers"})
+process("LeatherworkingMailSwiftarrowBattlefear",9,{"","=q3=Swiftarrow Helm","=q3=Swiftarrow Shoulderguards","=q3=Swiftarrow Hauberk","=q3=Swiftarrow Bracers","=q3=Swiftarrow Gauntlets","=q3=Swiftarrow Belt","=q3=Swiftarrow Leggings","=q3=Swiftarrow Boots"})
+process("TailoringArcanoVest",4,{"","=q3=奧紋長袍","=q3=奧紋護腕","=q3=奧紋長靴"})
+process("TailoringBattlecastG",3,{"","=q4=戰放兜帽","=q4=戰放束褲"})
+process("TailoringBloodvineG",4,{"","=q3=血藤外衣","=q3=血藤護腿","=q3=血藤長靴"})
+process("TailoringDuskweaver",9,{"","=q2=Duskweave Cowl","=q2=Duskweave Shoulders","=q2=Duskweave Robe","=q2=Duskweave Wristwraps","=q2=Duskweave Gloves","=q2=Duskweave Belt","=q2=Duskweave Leggings","=q2=Duskweave Boots"})
+process("TailoringFrostsavageBattlegear",9,{"","=q3=Frostsavage Cowl","=q3=Frostsavage Shoulders","=q3=Frostsavage Robe","=q3=Frostsavage Bracers","=q3=Frostsavage Gloves","=q3=Frostsavage Belt","=q3=Frostsavage Leggings","=q3=Frostsavage Boots"})
+process("TailoringFrostwovenPower",9,{"","=q2=Frostwoven Cowl","=q2=Frostwoven Shoulders","=q2=Frostwoven Robe","=q2=Frostwoven Wristwraps","=q2=Frostwoven Gloves","=q2=Frostwoven Belt","=q2=Frostwoven Leggings","=q2=Frostwoven Boots"})
+process("TailoringImbuedNeather",5,{"","=q3=魔染幽紋外套","=q3=魔染幽紋長袍","=q3=魔染幽紋束褲","=q3=魔染幽紋長靴"})
+process("TailoringNeatherVest",8,{"","=q2=幽紋外套","=q2=幽紋長袍","=q2=幽紋護腕","=q2=幽紋手套","=q2=幽紋腰帶","=q2=幽紋束褲","=q2=幽紋長靴"})
+process("TailoringPrimalMoon",4,{"","=q4=原始月布護肩","=q4=原始月布長袍","=q4=原始月布腰帶"})
+process("TailoringShadowEmbrace",4,{"","=q4=冰霜影紋護肩","=q4=冰霜影紋長袍","=q4=冰霜影紋長靴"})
+process("TailoringSoulclothEm",4,{"","=q4=靈魂布護肩","=q4=靈魂布外衣","=q4=靈魂布手套"})
+process("TailoringSpellfireWrath",4,{"","=q4=魔焰長袍","=q4=魔焰手套","=q4=魔焰腰帶"})
+process("TailoringSpellstrikeInfu",3,{"","=q4=法擊兜帽","=q4=法擊束褲"})
+process("TailoringTheUnyielding",3,{"","=q3=不屈護腕","=q4=不屈束腰"})
+process("TailoringWhitemendWis",3,{"","=q4=白癒兜帽","=q4=白癒束褲"})
+elseif locale == "koKR" then
+process("BlacksmithingMailBloodsoulEmbrace",4,{"","=q3=붉은영혼의 어깨보호구","=q3=붉은영혼의 흉갑","=q3=붉은영혼의 건틀릿"})
+process("BlacksmithingMailFelIronChain",5,{"","=q2=지옥무쇠 사슬 코이프","=q2=지옥무쇠 사슬 조끼","=q2=지옥무쇠 사슬 팔보호구","=q2=지옥무쇠 사슬 장갑"})
+process("BlacksmithingPlateAdamantiteB",4,{"","=q3=아다만타이트 흉갑","=q3=아다만타이트 판금 팔보호구","=q3=아다만타이트 판금 장갑"})
+process("BlacksmithingPlateBurningRage",5,{"","=q3=분노의 강철 투구","=q3=분노의 강철 어깨보호구","=q3=분노의 강철 흉갑","=q3=분노의 강철 장갑"})
+process("BlacksmithingPlateEnchantedAdaman",5,{"","=q3=마력 깃든 아다만타이트 흉갑","=q3=마력 깃든 아다만타이트 허리띠","=q3=마력 깃든 아다만타이트 다리보호구","=q3=마력 깃든 아다만타이트 장화"})
+process("BlacksmithingPlateFaithFelsteel",4,{"","=q3=지옥강철 투구","=q3=지옥강철 장갑","=q3=지옥강철 다리보호구"})
+process("BlacksmithingPlateFelIronPlate",6,{"","=q2=지옥무쇠 흉갑","=q2=지옥무쇠 장갑","=q2=지옥무쇠 허리띠","=q2=지옥무쇠 바지","=q2=지옥무쇠 장화"})
+process("BlacksmithingPlateFlameG",5,{"","=q3=화염파멸 투구","=q3=화염파멸 흉갑","=q3=화염파멸 팔보호구","=q3=화염파멸 장갑"})
+process("BlacksmithingPlateImperialPlate",8,{"","=q2=황제의 판금 투구","=q2=황제의 판금 어깨보호구","=q2=황제의 판금 흉갑","=q2=황제의 판금 팔보호구","=q2=황제의 판금 허리띠","=q2=황제의 판금 다리보호구","=q2=황제의 판금 장화"})
+process("BlacksmithingPlateKhoriumWard",4,{"","=q3=코륨 허리띠","=q3=코륨 바지","=q3=코륨 장화"})
+process("BlacksmithingPlateOrnateSaroniteBattlegear",9,{"","=q3=화려한 사로나이트 해골투구","=q3=화려한 사로나이트 어깨갑옷","=q3=화려한 사로나이트 갑옷","=q3=화려한 사로나이트 팔보호구","=q3=화려한 사로나이트 건틀릿","=q3=화려한 사로나이트 허리보호대","=q3=화려한 사로나이트 다리갑옷","=q3=화려한 사로나이트 장화"})
+process("BlacksmithingPlateSavageSaroniteBattlegear",9,{"","=q3=야만의 사로나이트 해골투구","=q3=야만의 사로나이트 어깨갑옷","=q3=야만의 사로나이트 갑옷","=q3=야만의 사로나이트 팔보호구","=q3=야만의 사로나이트 건틀릿","=q3=야만의 사로나이트 허리보호대","=q3=야만의 사로나이트 다리갑옷","=q3=야만의 사로나이트 장화"})
+process("BlacksmithingPlateTheDarksoul",4,{"","=q3=검은영혼의 어깨보호구","=q3=검은영혼의 흉갑","=q3=검은영혼의 다리보호구"})
+process("CookingDaily1",6,{"=q3=조리법: 맛좋은 초콜릿 케이크","=q3=조리법: 번개구이","=q2=조리법: 피지느러미 구이","=q2=조리법: 키블러의 간식","=q2=조리법: 해골물고기 수프","=q2=조리법: 매콤한 양념 탈부크 구이"})
+process("CookingDaily2",27,{"=q2=용지느러미 장작구이","=q2=조리법: 검은늑대 스테이크","=q2=조리법: 동물 먹이","=q2=조리법: 오징어 스테이크","=q2=조리법: 용지느러미 살코기 요리","=q2=조리법: 연어 숯불구이","=q2=조리법: 영양가 높은 코뿔소 고기","=q2=조리법: 황제 쥐가오리 스테이크","=q2=조리법: 커다란 매머드 고기","=q2=조리법: 커다란 코뿔소 핫도그","=q2=조리법: 삶은 북해 둑중개","=q2=조리법: 맛있는 고룡 스테이크","=q2=조리법: 퉁돔 순살 구이","=q2=조리법: 매콤한 매머드고기 요리","=q2=조리법: 매콤한 고룡 햄버거","=q2=조리법: 매콤한 청해파리","=q2=조리법: 매콤한 청어 튀김","=q2=조리법: 부드러운 뾰족엄니 스테이크","=q2=조리법: 추적자 과자","=q2=조리법: 탄 검은늑대 고기","=q3=요리사 모자","=q1=북지 양념","","=q3=조리법: 맛좋은 초콜릿 케이크","=q3=조리법: 번개구이","=q1=아기 향료","=q1=오래된 향료"})
+process("CraftedWeapons1",24,{"=q4=어둠의 칼날도끼","","=q4=티탄강철 마법검","=q4=티탄강철 단도","=q4=티탄강철 해골파쇄기","=q4=티탄강철 수호자","=q4=티탄강철 파괴자","=q4=티탄강철 철벽 방패","","=q4=강철도금 전투 산탄총","=q4=네싱워리 4000","","=q4=이터늄 룬검","=q4=진혼곡","=q4=지옥강철 장검","=q4=용사의 코륨검","=q4=지옥날 전투도끼","=q4=지옥강철 도끼","=q4=영원의 손길","=q4=룬문자 망치","=q4=지옥 경화 마울","=q4=정의로운 힘의 망치","","=q4=균형 잡힌 회전식 코륨 파괴자"})
+process("CraftedWeapons2",13,{"","=q4=어둠의 사절","=q4=현자의 검","=q4=검은 수호자","=q4=일몰","=q4=칠흑의 손","=q4=강권의 망치","=q4=설퍼론 망치","=q4=검은분노","=q4=뾰족한 흑요석 방패","","=q4=명사수의 라이플","=q4=마력장 원반"})
+process("CraftedWeapons3",21,{"","=q4=불꽃의 수호검","=q4=타오르는 수호검","=q4=타오르는 격노","=q4=사자심장 검","=q4=용사의 사자심장 검","=q4=집행의 사자심장 검","","=q4=차원의 도끼","=q4=검은 차원의 도끼","=q4=사악한 차원의 도끼","=q4=초승달 도끼","=q4=달빛 클레버","=q4=피의 달","","=q4=비룡갈퀴 망치","=q4=용아귀","=q4=용의 일격","=q4=천둥 망치","=q4=천둥번개 망치","=q4=폭풍의 전령"})
+process("FishingDaily1",17,{"=q4=두반지","=q3=풍파에 낡은 낚시용 모자","=q3=크릉이의 물동이","=q3=캭캭이의 물동이","=q3=으릉이의 물동이","=q3=덥석이의 물동이","=q3=바다의 눈","=q2=조리법: 럼지 선장의 맥주","=q2=정교한 진은 낚싯줄","=q1=귀족의 외눈 안경","=q1=오래된 은 단추","=q1=결혼 금반지","=q1=화려한 맥주잔","=q1=아주 날카로운 회칼","=q1=풍파에 낡은 일지","=q1=수면 걷기의 비약","=q1=예리한 낚싯바늘"})
+process("FishingDaily2",23,{"=q4=굵은 폭풍석","=q4=찬란한 폭풍석","=q4=섬세한 폭풍석","=q4=강도 높은 폭풍석","=q4=룬이 새겨진 폭풍석","=q4=단단한 폭풍석","=q4=반짝거리는 폭풍석","=q3=풍파에 낡은 낚시용 모자","=q3=뼈다귀 낚싯대","=q3=보석 박힌 낚싯대","=q3=해안 게","=q3=세이렌의 눈물","=q3=작은 티타늄 금고","=q2=조리법: 럼지 선장의 맥주","=q2=고탄성 이터늄 낚싯줄","=q1=닳아해진 밀림 모자","=q1=다이아몬드 박힌 지팡이","=q1=빛나는 벌레","=q1=진귀한 나침반","=q1=피그미 기름","=q1=수면 걷기의 비약","=q1=봉인된 독약병","=q1=물에 젖은 제조법"})
+process("JewelDragonsEye1",19,{"","","","","","","","","","","","","","","","","","","=q3=용의 눈"})
+process("JewelcraftingDaily1",19,{"=q3=디자인: 굵은 선홍빛 루비","=q3=디자인: 광채 나는 선홍빛 루비","=q3=디자인: 섬세한 선홍빛 루비","=q3=디자인: 번쩍이는 선홍빛 루비","=q3=디자인: 부서진 선홍빛 루비","=q3=디자인: 정교한 선홍빛 루비","=q3=디자인: 룬이 새겨진 선홍빛 루비","=q3=디자인: 미묘한 선홍빛 루비","=q3=디자인: 굵은 단홍빛 루비","=q3=디자인: 섬세한 단홍빛 루비","=q3=디자인: 번쩍이는 단홍빛 루비","=q3=디자인: 찬란한 왕의 호박석","=q3=디자인: 신비로운 왕의 호박석","=q3=디자인: 쾌속의 왕의 호박석","=q3=디자인: 강도 높은 왕의 호박석","=q3=디자인: 매끄러운 왕의 호박석","=q3=디자인: 두꺼운 왕의 호박석","=q3=디자인: 쾌속의 단풍석","=q3=디자인: 강도 높은 단풍석"})
+process("JewelcraftingDaily2",28,{"=q3=디자인: 정밀한 자황수정","=q3=디자인: 용사의 자황수정","=q3=디자인: 날카로운 자황수정","=q3=디자인: 기교의 자황수정","=q3=디자인: 내구성이 뛰어난 자황수정","=q3=디자인: 힘이 깃든 자황수정","=q3=디자인: 글이 새겨진 자황수정","=q3=디자인: 이글거리는 자황수정","=q3=디자인: 희미하게 빛나는 자황수정","=q3=디자인: 예리하게 빛나는 자황수정","=q3=디자인: 문자가 새겨진 자황수정","=q3=디자인: 반짝이는 자황수정","=q3=디자인: 영롱한 자황수정","=q3=디자인: 마력이 담긴 자황수정","=q3=디자인: 가공하지 않은 자황수정","=q3=디자인: 무모의 자황수정","=q3=디자인: 결의의 자황수정","=q3=디자인: 반들반들한 자황수정","=q3=디자인: 옹골진 자황수정","=q3=디자인: 딱딱한 자황수정","=q3=디자인: 가리어진 자황수정","=q3=디자인: 악의의 자황수정","=q3=디자인: 예리하게 빛나는 제왕 토파즈","=q3=디자인: 영롱한 제왕 토파즈","=q3=디자인: 마력이 담긴 제왕 토파즈","=q3=디자인: 무모의 제왕 토파즈","=q3=디자인: 딱딱한 제왕 토파즈","=q3=디자인: 가리어진 제왕 토파즈"})
+process("JewelcraftingDaily3",26,{"=q3=디자인: 휘황찬란한 줄의 눈","=q3=디자인: 견고한 줄의 눈","=q3=디자인: 활력의 줄의 눈","=q3=디자인: 강인한 줄의 눈","=q3=디자인: 엉클어진 줄의 눈","=q3=디자인: 톱니모양 줄의 눈","=q3=디자인: 은은하게 빛나는 줄의 눈","=q3=디자인: 안개 어린 줄의 눈","=q3=디자인: 불투명한 줄의 눈","=q3=디자인: 눈부신 줄의 눈","=q3=디자인: 예언하는 줄의 눈","=q3=디자인: 부서진 줄의 눈","=q3=디자인: 탁월한 줄의 눈","=q3=디자인: 한결같은 줄의 눈","=q3=디자인: 갈라진 줄의 눈","=q3=디자인: 조밀한 줄의 눈","=q3=디자인: 변함없는 줄의 눈","=q3=디자인: 농밀한 줄의 눈","=q3=디자인: 선명한 줄의 눈","=q3=디자인: 견고한 숲 에메랄드","=q3=디자인: 활력의 숲 에메랄드","=q3=디자인: 강인한 숲 에메랄드","=q3=디자인: 엉클어진 숲 에메랄드","=q3=디자인: 은은하게 빛나는 숲 에메랄드","=q3=디자인: 현자의 숲 에메랄드","=q3=디자인: 선명한 숲 에메랄드"})
+process("JewelcraftingDaily4",16,{"=q3=디자인: 균형 잡힌 공포석","=q3=디자인: 파수병의 공포석","=q3=디자인: 작열하는 공포석","=q3=디자인: 수호자의 공포석","=q3=디자인: 마력 깃든 공포석","=q3=디자인: 신비한 공포석","=q3=디자인: 권력의 공포석","=q3=디자인: 정화된 공포석","=q3=디자인: 제왕의 공포석","=q3=디자인: 호화로운 공포석","=q3=디자인: 아른거리는 공포석","=q3=디자인: 최상급 공포석","=q3=디자인: 가느다란 공포석","=q3=디자인: 권력의 황혼 오팔","=q3=디자인: 제왕의 황혼 오팔","=q3=디자인: 호화로운 황혼 오팔"})
+process("JewelcraftingDaily5",14,{"=q3=디자인: 빛나는 귀족 지르콘","=q3=디자인: 단단한 귀족 지르콘","=q3=디자인: 반짝거리는 귀족 지르콘","=q3=디자인: 휘몰아치는 귀족 지르콘","=q3=디자인: 빛나는 하늘 사파이어","=q3=디자인: 단단한 하늘 사파이어","=q3=디자인: 혼돈의 하늘섬광 다이아몬드","=q3=디자인: 눈부시게 빛나는 하늘섬광 다이아몬드","=q3=디자인: 이글거리는 하늘섬광 다이아몬드","=q3=디자인: 통찰의 대지울림 다이아몬드","=q3=디자인: 활기의 대지울림 다이아몬드","=q3=디자인: 냉혹의 대지울림 다이아몬드","=q3=디자인: 부흥의 하늘섬광 다이아몬드","=q3=디자인: 예리한 대지울림 다이아몬드"})
+process("JewelcraftingDaily6",24,{"=q3=디자인: 굵은 용의 눈","=q3=디자인: 광채 나는 용의 눈","=q3=디자인: 찬란한 용의 눈","=q3=디자인: 섬세한 용의 눈","=q3=디자인: 번쩍이는 용의 눈","=q3=디자인: 부서진 용의 눈","=q3=디자인: 빛나는 용의 눈","=q3=디자인: 신비로운 용의 눈","=q3=디자인: 정교한 용의 눈","=q3=디자인: 쾌속의 용의 눈","=q3=디자인: 강도 높은 용의 눈","=q3=디자인: 룬이 새겨진 용의 눈","=q3=디자인: 매끄러운 용의 눈","=q3=디자인: 단단한 용의 눈","=q3=디자인: 반짝거리는 용의 눈","=q3=디자인: 휘몰아치는 용의 눈","=q3=디자인: 미묘한 용의 눈","=q3=디자인: 두꺼운 용의 눈","=q4=디자인: 티타늄 대지수호 사슬목걸이","=q4=디자인: 티타늄 대지수호 반지","=q4=디자인: 티타늄 충격 고리","=q4=디자인: 티타늄 충격 목걸이","=q4=디자인: 티타늄 주문충격 목걸이","=q4=디자인: 티타늄 주문충격 반지"})
+process("LeatherworkingLeatherBloodTigerH",3,{"","=q3=붉은호랑이 어깨보호구","=q3=붉은호랑이 흉갑"})
+process("LeatherworkingLeatherBoreanEmbrace",9,{"","=q2=북극의 투구","=q2=북극의 어깨보호구","=q2=북극의 흉갑","=q2=북극의 손목보호구","=q2=북극의 장갑","=q2=북극의 허리띠","=q2=북극의 다리보호대","=q2=북극의 장화"})
+process("LeatherworkingLeatherDevilsaurArmor",3,{"","=q3=데빌사우루스 건틀릿","=q3=데빌사우루스 다리보호구"})
+process("LeatherworkingLeatherEvisceratorBattlegear",9,{"","=q3=적출자의 면갑","=q3=적출자의 어깨보호구","=q3=적출자의 흉갑","=q3=적출자의 손목띠","=q3=적출자의 건틀릿","=q3=적출자의 허리보호대","=q3=적출자의 다리보호대","=q3=적출자의 장화"})
+process("LeatherworkingLeatherFelSkin",4,{"","=q3=지옥 가죽 장갑","=q3=지옥 가죽 다리보호구","=q3=지옥 가죽 장화"})
+process("LeatherworkingLeatherIceborneEmbrace",9,{"","=q2=얼음결 투구","=q2=얼음결 어깨보호구","=q2=얼음결 흉갑","=q2=얼음결 손목보호구","=q2=얼음결 장갑","=q2=얼음결 허리띠","=q2=얼음결 다리보호구","=q2=얼음결 장화"})
+process("LeatherworkingLeatherIronfeatherArmor",3,{"","=q3=무쇠깃털 어깨보호구","=q3=무쇠깃털 흉갑"})
+process("LeatherworkingLeatherOvercasterBattlegear",9,{"","=q3=구름 덮인 머리보호구","=q3=구름 덮인 어깨갑옷","=q3=구름 덮인 흉갑","=q3=구름 덮인 팔보호구","=q3=구름 덮인 장갑","=q3=구름 덮인 허리띠","=q3=구름 덮인 다리보호구","=q3=구름 덮인 장화"})
+process("LeatherworkingLeatherPrimalBatskin",4,{"","=q3=원시 박쥐가죽 웃옷","=q3=원시 박쥐가죽 팔보호구","=q3=원시 박쥐가죽 장갑"})
+process("LeatherworkingLeatherPrimalIntent",4,{"","=q4=원소쐐기 조끼","=q4=원소쐐기 팔보호구","=q4=원소쐐기 허리띠"})
+process("LeatherworkingLeatherSClefthoof",4,{"","=q3=질긴 갈래발굽 조끼","=q3=질긴 갈래발굽 다리보호구","=q3=질긴 갈래발굽 장화"})
+process("LeatherworkingLeatherStormshroudArmor",5,{"","=q3=폭풍안개 어깨보호구","=q3=폭풍안개 갑옷","=q3=폭풍안개 장갑","=q3=폭풍안개 바지"})
+process("LeatherworkingLeatherThickDraenicA",5,{"","=q2=두꺼운 드레나이 조끼","=q2=두꺼운 드레나이 장갑","=q2=두꺼운 드레나이 바지","=q2=두꺼운 드레나이 장화"})
+process("LeatherworkingLeatherVolcanicArmor",4,{"","=q2=화산 어깨보호구","=q2=화산 흉갑","=q2=화산 다리보호구"})
+process("LeatherworkingLeatherWildDraenishA",5,{"","=q2=야생의 드레나이 조끼","=q2=야생의 드레나이 장갑","=q2=야생의 드레나이 다리보호구","=q2=야생의 드레나이 장화"})
+process("LeatherworkingLeatherWindhawkArmor",4,{"","=q4=바람매 갑옷","=q4=바람매 팔보호구","=q4=바람매 허리띠"})
+process("LeatherworkingMailBlackDragonM",5,{"","=q3=검은용비늘 어깨보호구","=q3=검은용비늘 흉갑","=q3=검은용비늘 다리보호구","=q4=검은용비늘 장화"})
+process("LeatherworkingMailBlueDragonM",4,{"","=q3=푸른용비늘 어깨보호구","=q3=푸른용비늘 흉갑","=q3=푸른용비늘 다리보호구"})
+process("LeatherworkingMailFelscaleArmor",5,{"","=q2=지옥껍질 흉갑","=q2=지옥껍질 장갑","=q2=지옥껍질 바지","=q2=지옥껍질 장화"})
+process("LeatherworkingMailFelstalkerArmor",4,{"","=q3=지옥추적자 흉갑","=q3=지옥추적자 팔보호구","=q3=지옥추적자 허리띠"})
+process("LeatherworkingMailFrostscaleBinding",9,{"","=q2=서리미늘 투구","=q2=서리미늘 어깨보호구","=q2=서리미늘 흉갑","=q2=서리미늘 팔보호구","=q2=서리미늘 장갑","=q2=서리미늘 허리띠","=q2=서리미늘 다리보호대","=q2=서리미늘 장화"})
+process("LeatherworkingMailGreenDragonM",4,{"","=q3=녹색용비늘 흉갑","=q3=녹색용비늘 건틀릿","=q3=녹색용비늘 다리보호구"})
+process("LeatherworkingMailNerubianHive",9,{"","=q2=네루비안 투구","=q2=네루비안 어깨보호구","=q2=네루비안 흉갑","=q2=네루비안 팔보호구","=q2=네루비안 장갑","=q2=네루비안 허리띠","=q2=네루비안 다리보호대","=q2=네루비안 장화"})
+process("LeatherworkingMailNetherFury",4,{"","=q3=황천의 격노 허리띠","=q3=황천의 격노 다리보호구","=q3=황천의 격노 장화"})
+process("LeatherworkingMailNetherscaleArmor",4,{"","=q4=칠흑의 황천비늘 흉갑","=q4=칠흑의 황천비늘 팔보호구","=q4=칠흑의 황천비늘 허리띠"})
+process("LeatherworkingMailNetherstrikeArmor",4,{"","=q4=황천쐐기 흉갑","=q4=황천쐐기 팔보호구","=q4=황천쐐기 허리띠"})
+process("LeatherworkingMailScaledDraenicA",5,{"","=q2=드레나이 미늘 조끼","=q2=드레나이 미늘 장갑","=q2=드레나이 미늘 바지","=q2=드레나이 미늘 장화"})
+process("LeatherworkingMailStormhideBattlegear",9,{"","=q3=폭풍도마뱀 관","=q3=폭풍도마뱀 어깨보호구","=q3=폭풍도마뱀 갑옷","=q3=폭풍도마뱀 손목보호구","=q3=폭풍도마뱀 장갑","=q3=폭풍도마뱀 허리띠","=q3=폭풍도마뱀 다리보호대","=q3=폭풍도마뱀 장화"})
+process("LeatherworkingMailSwiftarrowBattlefear",9,{"","=q3=바람화살 투구","=q3=바람화살 어깨갑옷","=q3=바람화살 갑옷","=q3=바람화살 팔보호구","=q3=바람화살 건틀릿","=q3=바람화살 허리띠","=q3=바람화살 다리보호구","=q3=바람화살 장화"})
+process("TailoringArcanoVest",4,{"","=q3=비전매듭 로브","=q3=비전매듭 팔보호구","=q3=비전매듭 장화"})
+process("TailoringBattlecastG",3,{"","=q4=전투시전술 두건","=q4=전투시전술 바지"})
+process("TailoringBloodvineG",4,{"","=q3=붉은덩굴 조끼","=q3=붉은덩굴 다리보호구","=q3=붉은덩굴 장화"})
+process("TailoringDuskweaver",9,{"","=q2=그늘매듭 두건","=q2=그늘매듭 어깨보호구","=q2=그늘매듭 로브","=q2=그늘매듭 손목보호구","=q2=그늘매듭 장갑","=q2=그늘매듭 허리띠","=q2=그늘매듭 다리보호구","=q2=그늘매듭 장화"})
+process("TailoringFrostsavageBattlegear",9,{"","=q3=야만의 서리 두건","=q3=야만의 서리 어깨보호구","=q3=야만의 서리 로브","=q3=야만의 서리 팔보호구","=q3=야만의 서리 장갑","=q3=야만의 서리 허리띠","=q3=야만의 서리 다리보호구","=q3=야만의 서리 장화"})
+process("TailoringFrostwovenPower",9,{"","=q2=서리장식 두건","=q2=서리장식 어깨보호구","=q2=서리장식 로브","=q2=서리장식 손목보호구","=q2=서리장식 장갑","=q2=서리장식 허리띠","=q2=서리장식 다리보호구","=q2=서리장식 장화"})
+process("TailoringImbuedNeather",5,{"","=q3=마력 깃든 황천매듭 튜닉","=q3=마력 깃든 황천매듭 로브","=q3=마력 깃든 황천매듭 바지","=q3=마력 깃든 황천매듭 장화"})
+process("TailoringNeatherVest",8,{"","=q2=황천매듭 튜닉","=q2=황천매듭 로브","=q2=황천매듭 팔보호구","=q2=황천매듭 장갑","=q2=황천매듭 허리띠","=q2=황천매듭 바지","=q2=황천매듭 장화"})
+process("TailoringPrimalMoon",4,{"","=q4=태초의 달빛매듭 어깨보호대","=q4=태초의 달빛매듭 로브","=q4=태초의 달빛매듭 허리띠"})
+process("TailoringShadowEmbrace",4,{"","=q4=얼어붙은 그림자매듭 어깨보호구","=q4=얼어붙은 그림자매듭 로브","=q4=얼어붙은 그림자매듭 장화"})
+process("TailoringSoulclothEm",4,{"","=q4=영혼매듭 어깨보호구","=q4=영혼매듭 조끼","=q4=영혼매듭 장갑"})
+process("TailoringSpellfireWrath",4,{"","=q4=마법불꽃 로브","=q4=마법불꽃 장갑","=q4=마법불꽃 허리띠"})
+process("TailoringSpellstrikeInfu",3,{"","=q4=마법 강타의 두건","=q4=마법 강타의 바지"})
+process("TailoringTheUnyielding",3,{"","=q3=불굴의 팔보호구","=q4=불굴의 벨트"})
+process("TailoringWhitemendWis",3,{"","=q4=백마법 두건","=q4=백마법 바지"})
+elseif locale == "ruRU" then
+process("BlacksmithingMailBloodsoulEmbrace",4,{"","=q3=Наплечники кровавого духа","=q3=Кираса кровавого духа","=q3=Рукавицы кровавого духа"})
+process("BlacksmithingMailFelIronChain",5,{"","=q2=Плетеный капюшон из оскверненного железа","=q2=Плетеный мундир из оскверненного железа","=q2=Плетеные наручи из оскверненного железа","=q2=Плетеные перчатки из оскверненного железа"})
+process("BlacksmithingPlateAdamantiteB",4,{"","=q3=Адамантитовая кираса","=q3=Адамантитовые латные наручи","=q3=Адамантитовые латные перчатки"})
+process("BlacksmithingPlateBurningRage",5,{"","=q3=Шлем из яростной стали","=q3=Наплечники из яростной стали","=q3=Кираса из яростной стали","=q3=Перчатки из яростной стали"})
+process("BlacksmithingPlateEnchantedAdaman",5,{"","=q3=Зачарованная адамантитовая кираса","=q3=Зачарованный адамантитовый пояс","=q3=Зачарованные адамантитовые поножи","=q3=Зачарованные адамантитовые сапоги"})
+process("BlacksmithingPlateFaithFelsteel",4,{"","=q3=Шлем из оскверненной стали","=q3=Перчатки из оскверненной стали","=q3=Поножи из оскверненной стали"})
+process("BlacksmithingPlateFelIronPlate",6,{"","=q2=Кираса из оскверненного железа","=q2=Латные перчатки из оскверненного железа","=q2=Латный пояс из оскверненного железа","=q2=Латные набедренники из оскверненного железа","=q2=Латные сапоги из оскверненного железа"})
+process("BlacksmithingPlateFlameG",5,{"","=q3=Шлем огненной гибели","=q3=Кираса огненной гибели","=q3=Наручи огненной гибели","=q3=Перчатки огненной гибели"})
+process("BlacksmithingPlateImperialPlate",8,{"","=q2=Императорский латный шлем","=q2=Императорские латные наплечники","=q2=Имперское зерцало","=q2=Императорские латные наручи","=q2=Императорский латный пояс","=q2=Императорские латные поножи","=q2=Императорские латные сапоги"})
+process("BlacksmithingPlateKhoriumWard",4,{"","=q3=Кориевый пояс","=q3=Кориевые штаны","=q3=Кориевые сапоги"})
+process("BlacksmithingPlateOrnateSaroniteBattlegear",9,{"","=q3=Изысканный саронитовый шлем","=q3=Изысканное саронитовое наплечье","=q3=Изысканный саронитовый хауберк","=q3=Изысканные саронитовые наручи","=q3=Изысканные саронитовые рукавицы","=q3=Изысканный саронитовый воинский пояс","=q3=Изысканные саронитовые ножные латы","=q3=Изысканные саронитовые сапоги"})
+process("BlacksmithingPlateSavageSaroniteBattlegear",9,{"","=q3=Саронитовый шлем свирепости","=q3=Саронитовое наплечье свирепости","=q3=Саронитовый хауберк свирепости","=q3=Саронитовые наручи свирепости","=q3=Саронитовые рукавицы свирепости","=q3=Саронитовый воинский пояс свирепости","=q3=Саронитовые ножные латы свирепости","=q3=Саронитовые сапоги свирепости"})
+process("BlacksmithingPlateTheDarksoul",4,{"","=q3=Наплечники темного духа","=q3=Кираса темного духа","=q3=Поножи темного духа"})
+process("CookingDaily1",6,{"=q3=Рецепт: вкусный шоколадный торт","=q3=Рецепт: буреветчина","=q2=Рецепт: жареный афиохаракс","=q2=Рецепт: \"Кит и кот\"","=q2=Рецепт: суп из рыбы-черепа","=q2=Рецепт: острый стейк из талбука"})
+process("CookingDaily2",27,{"=q2=Рецепт: копченая рыба-ангел","=q2=Рецепт: подкопченный стейк из ворга","=q2=Рецепт: корм для зверька","=q2=Рецепт: жареная каракатица","=q2=Рецепт: филе дракоперой рыбы-ангела","=q2=Рецепт: лосось с дымком","=q2=Рецепт: сочное мясо люторога","=q2=Рецепт: стейк из королевского ската","=q2=Рецепт: сытное кушанье из мамонта","=q2=Рецепт: сочные сосиски из люторога","=q2=Рецепт: печеный северный подкаменщик","=q2=Рецепт: люторожий змеестейк","=q2=Рецепт: луциан особого приготовления","=q2=Рецепт: пряное лакомство из мамонта","=q2=Рецепт: котлета из змея с пряностями","=q2=Рецепт: синяя медуза с пряностями","=q2=Рецепт: острая жареная сельдь","=q2=Рецепт: нежный стейк из черпорога","=q2=Рецепт: завтрак следопыта","=q2=Рецепт: пережаренное мясо ворга","=q3=Поварской колпак","=q1=Северные пряности","","=q3=Рецепт: вкусный шоколадный торт","=q3=Рецепт: буреветчина","=q1=Детская приправа","=q1=Выдержанные специи"})
+process("CraftedWeapons1",24,{"=q4=Грань Тьмы","","=q4=Чародейский клинок из титановой стали","=q4=Пронзатель из титановой стали","=q4=Костекрушитель из титановой стали","=q4=Булава стража из титановой стали","=q4=Разрушитель из титановой стали","=q4=Осадный щит из титановой стали","","=q4=Бронированный боевой дробовик","=q4=Эрнестуэй 4000","","=q4=Этерниевый рунический клинок","=q4=Погребальный Плач","=q4=Длинный меч из оскверненной стали","=q4=Кориевый защитник","=q4=Боевой топор с кромкой Скверны","=q4=Жнец из оскверненной стали","=q4=Рука Вечности","=q4=Рунический молот","=q4=Закаленная Скверной кувалда","=q4=Молот праведной мощи","","=q4=Гиро-балансированный кориевый Разрушитель"})
+process("CraftedWeapons2",13,{"","=q4=Черное прощение","=q4=Клинок мудреца","=q4=Черный Страж","=q4=Сумерки","=q4=Эбеновая рука","=q4=Увещеватель","=q4=Сульфуронский молот","=q4=Черное Неистовство","=q4=Звездчатый обсидиановый щит","","=q4=Снайперская винтовка недр","=q4=Реактивный диск"})
+process("CraftedWeapons3",21,{"","=q4=Огненный страж","=q4=Пылкий страж","=q4=Пылкое неистовство","=q4=Клинок Львиного сердца","=q4=Защитник Львиного сердца","=q4=Палач Львиного сердца","","=q4=Плоскостная кромка","=q4=Черная плоскостная кромка","=q4=Гибельный край миров","=q4=Лунный Серп","=q4=Лунный колун","=q4=Кровавая луна","","=q4=Молот Драконьей длани","=q4=Драконья Пасть","=q4=Драконий удар","=q4=Гром","=q4=Глубокий гром","=q4=Штормовестник"})
+process("FishingDaily1",17,{"=q4=Другое кольцо","=q3=Видавшая виды рыболовная шапка","=q3=Ведро Проглота","=q3=Ведро со смердыхом","=q3=Ведро Ворчуна","=q3=Ведро с Зубастиком","=q3=Глаз Моря","=q2=Рецепт: светлое пиво капитана Ромси","=q2=Крученая рыболовная леска из истинного серебра","=q1=Монокль аристократа","=q1=Старинные серебряные запонки","=q1=Золотое обручальное кольцо","=q1=Узорчатая пивная кружка","=q1=Острый как бритва разделочный нож","=q1=Истрепанный журнал","=q1=Эликсир хождения по воде","=q1=Заостренный рыболовный крючок"})
+process("FishingDaily2",23,{"=q4=Рельефный самоцвет бури","=q4=Сверкающий самоцвет бури","=q4=Изысканный самоцвет бури","=q4=Прочный самоцвет бури","=q4=Рунический самоцвет бури","=q4=Цельный самоцвет бури","=q4=Искрящийся самоцвет бури","=q3=Видавшая виды рыболовная шапка","=q3=Костяная удочка","=q3=Удочка со стразами","=q3=Береговой краб","=q3=Слеза Сирены","=q3=Маленький титановый ящичек","=q2=Рецепт: светлое пиво капитана Ромси","=q2=Сверхпрочная этерниевая леска","=q1=Поношенная тропическая шляпа","=q1=Трость с алмазным набалдашником","=q1=Светлячок","=q1=Необычный компас","=q1=Карломасло","=q1=Эликсир хождения по воде","=q1=Запечатанный фиал с ядом","=q1=Промокший рецепт"})
+process("JewelDragonsEye1",19,{"","","","","","","","","","","","","","","","","","","=q3=Око Дракона"})
+process("JewelcraftingDaily1",19,{"=q3=Эскиз: рельефный багровый рубин","=q3=Эскиз: яркий багровый рубин","=q3=Эскиз: изысканный багровый рубин","=q3=Эскиз: блистательный багровый рубин","=q3=Эскиз: растрескавшийся багровый рубин","=q3=Эскиз: ясный багровый рубин","=q3=Эскиз: рунический багровый рубин","=q3=Эскиз: изящный багровый рубин","=q3=Эскиз: рельефный алый рубин","=q3=Эскиз: изысканный алый рубин","=q3=Эскиз: блистательный алый рубин","=q3=Эскиз: сверкающий царский янтарь","=q3=Эскиз: мистический царский янтарь","=q3=Эскиз: мягкий царский янтарь","=q3=Эскиз: прочный царский янтарь","=q3=Эскиз: гладкий царский янтарь","=q3=Эскиз: матовый царский янтарь","=q3=Эскиз: мимолетное сияние осени","=q3=Эскиз: яркое сияние осени"})
+process("JewelcraftingDaily2",28,{"=q3=Эскиз: идеально ограненный аметрин","=q3=Эскиз: аметрин защитника","=q3=Эскиз: смертоносный аметрин","=q3=Эскиз: аметрин проворства","=q3=Эскиз: надежный аметрин","=q3=Эскиз: наделенный силой аметрин","=q3=Эскиз: гравированный аметрин","=q3=Эскиз: броский аметрин","=q3=Эскиз: мерцающий аметрин","=q3=Эскиз: блистающий аметрин","=q3=Эскиз: покрытый письменами аметрин","=q3=Эскиз: прозрачный аметрин","=q3=Эскиз: светоносный аметрин","=q3=Эскиз: могущественный аметрин","=q3=Эскиз: нетронутый аметрин","=q3=Эскиз: тревожный аметрин","=q3=Эскиз: затвердевший аметрин","=q3=Эскиз: глянцевый аметрин","=q3=Эскиз: стойкий аметрин","=q3=Эскиз: застывший аметрин","=q3=Эскиз: сокрытый аметрин","=q3=Эскиз: гибельный аметрин","=q3=Эскиз: блистающий королевский топаз","=q3=Эскиз: светоносный королевский топаз","=q3=Эскиз: могущественный королевский топаз","=q3=Эскиз: тревожный королевский топаз","=q3=Эскиз: застывший королевский топаз","=q3=Эскиз: сокрытый королевский топаз"})
+process("JewelcraftingDaily3",26,{"=q3=Эскиз: ослепительное око Зула","=q3=Эскиз: отверделое око Зула","=q3=Эскиз: усиленное око Зула","=q3=Эскиз: мощное око Зула","=q3=Эскиз: замысловатое око Зула","=q3=Эскиз: зазубренное око Зула","=q3=Эскиз: лучистое око Зула","=q3=Эскиз: смутное око Зула","=q3=Эскиз: непрозрачное око Зула","=q3=Эскиз: светозарное око Зула","=q3=Эскиз: око Зула провидца","=q3=Эскиз: раздробленное око Зула","=q3=Эскиз: сияющее око Зула","=q3=Эскиз: неизменное око Зула","=q3=Эскиз: расколотое око Зула","=q3=Эскиз: плотное око Зула","=q3=Эскиз: вневременное око Зула","=q3=Эскиз: померкшее око Зула","=q3=Эскиз: насыщенное око Зула","=q3=Эскиз: отверделый лесной изумруд","=q3=Эскиз: заряженный лесной изумруд","=q3=Эскиз: мощный лесной изумруд","=q3=Эскиз: замысловатый лесной изумруд","=q3=Эскиз: лучистый лесной изумруд","=q3=Эскиз: лесной изумруд провидца","=q3=Эскиз: насыщенный лесной изумруд"})
+process("JewelcraftingDaily4",16,{"=q3=Эскиз: сбалансированный страхолит","=q3=Эскиз: страхолит защитника","=q3=Эскиз: светящийся страхолит","=q3=Эскиз: страхолит стража","=q3=Эскиз: заряженный страхолит","=q3=Эскиз: таинственный страхолит","=q3=Эскиз: всевластный страхолит","=q3=Эскиз: очищенный страхолит","=q3=Эскиз: монарший страхолит","=q3=Эскиз: королевский страхолит","=q3=Эскиз: изменчивый страхолит","=q3=Эскиз: царственный страхолит","=q3=Эскиз: непрочный страхолит","=q3=Эскиз: всевластный сумеречный опал","=q3=Эскиз: монарший сумеречный опал","=q3=Эскиз: королевский сумеречный опал"})
+process("JewelcraftingDaily5",14,{"=q3=Эскиз: блестящий величественный циркон","=q3=Эскиз: цельный величественный циркон","=q3=Эскиз: искрящийся величественный циркон","=q3=Эскиз: грозовой величественный циркон","=q3=Эскиз: блестящий небесный сапфир","=q3=Эскиз: твердый небесный сапфир","=q3=Эскиз: хаотический алмаз небесного сияния","=q3=Эскиз: лучезарный алмаз небесного сияния","=q3=Эскиз: тлеющий алмаз небесного сияния","=q3=Эскиз: провидческий алмаз землеправителя","=q3=Эскиз: живительный алмаз землеправителя","=q3=Эскиз: алмаз жестокого землеправителя","=q3=Эскиз: оживляющий алмаз небесного сияния","=q3=Эскиз: заостренный алмаз землеправителя"})
+process("JewelcraftingDaily6",24,{"=q3=Эскиз: рельефное око дракона","=q3=Эскиз: яркое око дракона","=q3=Эскиз: сверкающее око дракона","=q3=Эскиз: изысканное око дракона","=q3=Эскиз: блистательное око дракона","=q3=Эскиз: растрескавшееся око дракона","=q3=Эскиз: блестящее око дракона","=q3=Эскиз: мистическое око дракона","=q3=Эскиз: ясное око дракона","=q3=Эскиз: быстрое око дракона","=q3=Эскиз: твердое око дракона","=q3=Эскиз: руническое око дракона","=q3=Эскиз: гладкое око дракона","=q3=Эскиз: твердое око дракона","=q3=Эскиз: искрящееся око дракона","=q3=Эскиз: грозовое око дракона","=q3=Эскиз: изящное око дракона","=q3=Эскиз: матовое око дракона","=q4=Эскиз: титановая цепь стража земли","=q4=Эскиз: титановое кольцо стража земли","=q4=Эскиз: титановое кольцо сотрясения","=q4=Эскиз: титановое колье сотрясения","=q4=Эскиз: титановое ожерелье чародейского удара","=q4=Эскиз: титановое кольцо чародейского удара"})
+process("LeatherworkingLeatherBloodTigerH",3,{"","=q3=Наплечники кровавого тигра","=q3=Кираса кровавого тигра"})
+process("LeatherworkingLeatherBoreanEmbrace",9,{"","=q2=Арктический шлем","=q2=Арктические наплечные пластины","=q2=Арктический нагрудник","=q2=Арктические накулачники","=q2=Арктические перчатки","=q2=Арктический пояс","=q2=Арктические поножи","=q2=Арктические сапоги"})
+process("LeatherworkingLeatherDevilsaurArmor",3,{"","=q3=Рукавицы девизавра","=q3=Поножи девизавра"})
+process("LeatherworkingLeatherEvisceratorBattlegear",9,{"","=q3=Маска потрошителя","=q3=Наплечные пластины потрошителя","=q3=Нагрудный доспех потрошителя","=q3=Наручники потрошителя","=q3=Рукавицы потрошителя","=q3=Воинский пояс потрошителя","=q3=Набедренники потрошителя","=q3=Ботфорты потрошителя"})
+process("LeatherworkingLeatherFelSkin",4,{"","=q3=Перчатки из сквернокожи","=q3=Поножи из сквернокожи","=q3=Сапоги из сквернокожи"})
+process("LeatherworkingLeatherIceborneEmbrace",9,{"","=q2=Шлем жителя льдов","=q2=Наплечные пластины жителя льдов","=q2=Нагрудный доспех жителя льдов","=q2=Накулачники жителя льдов","=q2=Перчатки жителя льдов","=q2=Пояс жителя льдов","=q2=Поножи жителя льдов","=q2=Сапоги жителя льдов"})
+process("LeatherworkingLeatherIronfeatherArmor",3,{"","=q3=Железноперые наплечники","=q3=Железноперая кираса"})
+process("LeatherworkingLeatherOvercasterBattlegear",9,{"","=q3=Наголовник угрюмости","=q3=Наплеч угрюмости","=q3=Нагрудный доспех угрюмости","=q3=Наручи угрюмости","=q3=Повязки угрюмости","=q3=Пояс угрюмости","=q3=Поножи угрюмости","=q3=Сапоги угрюмости"})
+process("LeatherworkingLeatherPrimalBatskin",4,{"","=q3=Жакет из кожи древней летучей мыши","=q3=Наручи из кожи древней летучей мыши","=q3=Перчатки из кожи древней летучей мыши"})
+process("LeatherworkingLeatherPrimalIntent",4,{"","=q4=Жилет упреждающего удара","=q4=Наручи упреждающего удара","=q4=Пояс упреждающего удара"})
+process("LeatherworkingLeatherSClefthoof",4,{"","=q3=Тяжелый панцирь из шкуры копытня","=q3=Тяжелые поножи из шкуры копытня","=q3=Тяжелые сапоги из шкуры копытня"})
+process("LeatherworkingLeatherStormshroudArmor",5,{"","=q3=Наплечники Грозового Покрова","=q3=Доспех Грозового Покрова","=q3=Перчатки Грозового Покрова","=q3=Штаны Грозового Покрова"})
+process("LeatherworkingLeatherThickDraenicA",5,{"","=q2=Утолщенная дренейская безрукавка","=q2=Утолщенные дренейские перчатки","=q2=Утолщенные дренейские штаны","=q2=Утолщенные дренейские сапоги"})
+process("LeatherworkingLeatherVolcanicArmor",4,{"","=q2=Вулканические наплечники","=q2=Вулканическая кираса","=q2=Вулканические поножи"})
+process("LeatherworkingLeatherWildDraenishA",5,{"","=q2=Жилет дренейского дикаря","=q2=Перчатки дренейского дикаря","=q2=Поножи дренейского дикаря","=q2=Сапоги дренейского дикаря"})
+process("LeatherworkingLeatherWindhawkArmor",4,{"","=q4=Хауберк легкокрылого ястреба","=q4=Наручи легкокрылого ястреба","=q4=Пояс легкокрылого ястреба"})
+process("LeatherworkingMailBlackDragonM",5,{"","=q3=Наплечники из чешуи черного дракона","=q3=Кираса из чешуи черного дракона","=q3=Поножи из чешуи черного дракона","=q4=Сапоги из чешуи черного дракона"})
+process("LeatherworkingMailBlueDragonM",4,{"","=q3=Наплечники из чешуи синего дракона","=q3=Кираса из чешуи синего дракона","=q3=Поножи из чешуи синего дракона"})
+process("LeatherworkingMailFelscaleArmor",5,{"","=q2=Скверночешуйчатая кираса","=q2=Скверночешуйчатые перчатки","=q2=Скверночешуйчатые штаны","=q2=Скверночешуйчатые сапоги"})
+process("LeatherworkingMailFelstalkerArmor",4,{"","=q3=Кираса ловца Скверны","=q3=Наручи ловца Скверны","=q3=Пояс ловца Скверны"})
+process("LeatherworkingMailFrostscaleBinding",9,{"","=q2=Шлем из обмерзшей чешуи","=q2=Наплечники из обмерзшей чешуи","=q2=Нагрудный доспех из обмерзшей чешуи","=q2=Наручи из обмерзшей чешуи","=q2=Перчатки из обмерзшей чешуи","=q2=Пояс из обмерзшей чешуи","=q2=Поножи из обмерзшей чешуи","=q2=Сапоги из обмерзшей чешуи"})
+process("LeatherworkingMailGreenDragonM",4,{"","=q3=Кираса из чешуи зеленого дракона","=q3=Рукавицы из чешуи зеленого дракона","=q3=Поножи из чешуи зеленого дракона"})
+process("LeatherworkingMailNerubianHive",9,{"","=q2=Нерубский шлем","=q2=Нерубские наплечники","=q2=Нерубский нагрудный доспех","=q2=Нерубские наручи","=q2=Нерубские перчатки","=q2=Нерубский пояс","=q2=Нерубские поножи","=q2=Нерубские сапоги"})
+process("LeatherworkingMailNetherFury",4,{"","=q3=Пояс неистовства пустоты","=q3=Поножи неистовства пустоты","=q3=Сапоги неистовства пустоты"})
+process("LeatherworkingMailNetherscaleArmor",4,{"","=q4=Черная кираса из чешуи дракона Пустоты","=q4=Черные наручи из чешуи дракона Пустоты","=q4=Черный пояс из чешуи дракона Пустоты"})
+process("LeatherworkingMailNetherstrikeArmor",4,{"","=q4=Кираса удара Пустоты","=q4=Наручи удара Пустоты","=q4=Пояс удара Пустоты"})
+process("LeatherworkingMailScaledDraenicA",5,{"","=q2=Чешуйчатая дренейская безрукавка","=q2=Чешуйчатые дренейские перчатки","=q2=Чешуйчатые дренейские штаны","=q2=Чешуйчатые дренейские сапоги"})
+process("LeatherworkingMailStormhideBattlegear",9,{"","=q3=Корона штормового укрытия","=q3=Наплечники штормового укрытия","=q3=Хауберк штормового укрытия","=q3=Накулачники штормового укрытия","=q3=Захваты штормового укрытия","=q3=Пояс штормового укрытия","=q3=Набедренники штормового укрытия","=q3=Высокие ботинки штормового укрытия"})
+process("LeatherworkingMailSwiftarrowBattlefear",9,{"","=q3=Шлем быстрой стрелы","=q3=Наплечные щитки быстрой стрелы","=q3=Хауберк быстрой стрелы","=q3=Наручи быстрой стрелы","=q3=Рукавицы быстрой стрелы","=q3=Пояс быстрой стрелы","=q3=Поножи быстрой стрелы","=q3=Сапоги быстрой стрелы"})
+process("TailoringArcanoVest",4,{"","=q3=Одеяние из тайной ткани","=q3=Наручи из тайной ткани","=q3=Сапоги из тайной ткани"})
+process("TailoringBattlecastG",3,{"","=q4=Капюшон боевого заклятья","=q4=Штаны боевого заклятья"})
+process("TailoringBloodvineG",4,{"","=q3=Жилет кровавой лозы","=q3=Поножи кровавой лозы","=q3=Сапоги кровавой лозы"})
+process("TailoringDuskweaver",9,{"","=q2=Клобук из сумеречной ткани","=q2=Наплечники из сумеречной ткани","=q2=Одеяние из сумеречной ткани","=q2=Напульсники из сумеречной ткани","=q2=Перчатки из сумеречной ткани","=q2=Пояс из сумеречной ткани","=q2=Поножи из сумеречной ткани","=q2=Сапоги из сумеречной ткани"})
+process("TailoringFrostsavageBattlegear",9,{"","=q3=Клобук ледяной ярости","=q3=Наплечники ледяной ярости","=q3=Одеяние ледяной ярости","=q3=Наручи ледяной ярости","=q3=Перчатки ледяной ярости","=q3=Пояс ледяной ярости","=q3=Поножи ледяной ярости","=q3=Сапоги ледяной ярости"})
+process("TailoringFrostwovenPower",9,{"","=q2=Ледотканый шлем","=q2=Ледотканые наплечники","=q2=Ледотканое одеяние","=q2=Ледотканые напульсники","=q2=Ледотканые перчатки","=q2=Ледотканый пояс","=q2=Ледотканые поножи","=q2=Ледотканые сапоги"})
+process("TailoringImbuedNeather",5,{"","=q3=Мундир из прочной ткани Пустоты","=q3=Одеяние из прочной ткани Пустоты","=q3=Штаны из прочной ткани Пустоты","=q3=Сапоги из прочной ткани Пустоты"})
+process("TailoringNeatherVest",8,{"","=q2=Мундир из ткани Пустоты","=q2=Одеяние из ткани Пустоты","=q2=Наручи из ткани Пустоты","=q2=Перчатки из ткани Пустоты","=q2=Пояс из ткани Пустоты","=q2=Штаны из ткани Пустоты","=q2=Сапоги из ткани Пустоты"})
+process("TailoringPrimalMoon",4,{"","=q4=Наплечники из изначальной луноткани","=q4=Одеяние из изначальной луноткани","=q4=Пояс из изначальной луноткани"})
+process("TailoringShadowEmbrace",4,{"","=q4=Застывшие тенетканые наплечники","=q4=Застывшее тенетканое одеяние","=q4=Застывшие тенетканые сапоги"})
+process("TailoringSoulclothEm",4,{"","=q4=Наплечники из ткани Душ","=q4=Жилет из ткани Душ","=q4=Перчатки из ткани Душ"})
+process("TailoringSpellfireWrath",4,{"","=q4=Одеяние из огненной чароткани","=q4=Перчатки из огненной чароткани","=q4=Пояс из огненной чароткани"})
+process("TailoringSpellstrikeInfu",3,{"","=q4=Капюшон сокрушительной магии","=q4=Штаны сокрушительной магии"})
+process("TailoringTheUnyielding",3,{"","=q3=Наручи непреклонности","=q4=Ремень Непреклонности"})
+process("TailoringWhitemendWis",3,{"","=q4=Капюшон белого целителя","=q4=Штаны Белого целителя"})
+end
diff --git a/AtlasLoot_Vanity/vanity.lua b/AtlasLoot_Vanity/vanity.lua
new file mode 100644
index 0000000..4def83b
--- /dev/null
+++ b/AtlasLoot_Vanity/vanity.lua
@@ -0,0 +1,633 @@
+local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
+local BabbleBoss = AtlasLoot_GetLocaleLibBabble("LibBabble-Boss-3.0")
+local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0")
+local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
+local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
+
+---------------
+--- Tabards ---
+---------------
+
+AtlasLoot_Data["Tabards"] = {
+ Name = "Tabards";
+ {
+ Name = "Tabards";
+ { 1, 51534, "", "=q4=Wrathful Gladiator's Tabard", "=ds=#s7#" };
+ { 2, 49086, "", "=q4=Relentless Gladiator's Tabard", "=ds=#s7#" };
+ { 3, 45983, "", "=q4=Furious Gladiator's Tabard", "=ds=#s7#" };
+ { 4, 43349, "", "=q4=Tabard of Brute Force", "=ds=#m32#" };
+ { 5, 40643, "", "=q4=Tabard of the Achiever", "=ds=#m32#" };
+ { 6, 43348, "", "=q4=Tabard of the Explorer", "=ds=#m32#" };
+ { 7, 43300, "", "=q4=Loremaster's Colors", "=ds=#m32#" };
+ { 8, 49052, "", "=q3=Tabard of Conquest", "=ds=#m32# =ec1=#m7#" };
+ { 9, 49054, "", "=q3=Tabard of Conquest", "=ds=#m32# =ec1=#m6#" };
+ { 11, 46874, "", "=q3=Argent Crusader's Tabard", "=ds=#s7#" };
+ { 12, 46817, "", "=q1=Silver Covenant Tabard", "=ds=#s7# =ec1=#m7#" };
+ { 13, 46818, "", "=q1=Sunreaver Tabard", "=ds=#s7# =ec1=#m6#" };
+ { 16, 43154, "", "=q1=Tabard of the Argent Crusade", "=ds=#s7#" };
+ { 17, 43157, "", "=q1=Tabard of the Kirin Tor", "=ds=#s7#" };
+ { 18, 43155, "", "=q1=Tabard of the Ebon Blade", "=ds=#s7#" };
+ { 19, 43156, "", "=q1=Tabard of the Wyrmrest Accord", "=ds=#s7#" };
+ { 21, 45579, "", "=q1=Darnassus Tabard", "=ds=#s7# =ec1=#m7#" };
+ { 22, 45580, "", "=q1=Exodar Tabard", "=ds=#s7# =ec1=#m7#" };
+ { 23, 45578, "", "=q1=Gnomeregan Tabard", "=ds=#s7# =ec1=#m7#" };
+ { 24, 45577, "", "=q1=Ironforge Tabard", "=ds=#s7# =ec1=#m7#" };
+ { 25, 45574, "", "=q1=Stormwind Tabard", "=ds=#s7# =ec1=#m7#" };
+ { 26, 45581, "", "=q1=Orgrimmar Tabard", "=ds=#s7# =ec1=#m6#" };
+ { 27, 45582, "", "=q1=Sen'jin Tabard", "=ds=#s7# =ec1=#m6#" };
+ { 28, 45585, "", "=q1=Silvermoon City Tabard", "=ds=#s7# =ec1=#m6#" };
+ { 29, 45584, "", "=q1=Thunder Bluff Tabard", "=ds=#s7# =ec1=#m6#" };
+ { 30, 45583, "", "=q1=Undercity Tabard", "=ds=#s7# =ec1=#m6#" };
+ };
+ {
+ Name = "Tabards";
+ { 1, 38312, "", "=q4=Tabard of Brilliance", "=ds=#s7#, =q1=#m24#" };
+ { 2, 23705, "", "=q4=Tabard of Flame", "=ds=#s7#, =q1=#m24#" };
+ { 3, 23709, "", "=q4=Tabard of Frost", "=ds=#s7#, =q1=#m24#" };
+ { 4, 38313, "", "=q4=Tabard of Fury", "=ds=#s7#, =q1=#m24#" };
+ { 5, 38309, "", "=q4=Tabard of Nature", "=ds=#s7#, =q1=#m24#" };
+ { 6, 38310, "", "=q4=Tabard of the Arcane", "=ds=#s7#, =q1=#m24#" };
+ { 7, 38314, "", "=q4=Tabard of the Defender", "=ds=#s7#, =q1=#m24#" };
+ { 8, 38311, "", "=q4=Tabard of the Void", "=ds=#s7#, =q1=#m24#" };
+ { 9, 35279, "", "=q3=Tabard of Summer Skies", "=ds=#s7#, =q1=#m4#" };
+ { 11, 35280, "", "=q3=Tabard of Summer Flames", "=ds=#s7#, =q1=#m4#" };
+ { 12, 31404, "", "=q2=Green Trophy Tabard of the Illidari", "=ds=#s7#, =q1=#m4#" };
+ { 13, 31405, "", "=q2=Purple Trophy Tabard of the Illidari", "=ds=#s7#, =q1=#m4#" };
+ { 14, 24344, "", "=q1=Tabard of the Hand", "=ds=#s7#, =q1=#m4#, =ec1=#m7#" };
+ { 15, 25549, "", "=q1=Blood Knight Tabard", "=ds=#s7#, =ec1=#m6#" };
+ { 16, 31779, "", "=q1=Aldor Tabard", "=ds=#s7#" };
+ { 17, 31804, "", "=q1=Cenarion Expedition Tabard", "=ds=#s7#" };
+ { 18, 31776, "", "=q1=Consortium Tabard", "=ds=#s7#" };
+ { 19, 23999, "", "=q1=Honor Hold Tabard", "=ds=#s7#, =ec1=#m7#" };
+ { 20, 31777, "", "=q1=Keepers of Time Tabard", "=ds=#s7#" };
+ { 21, 31774, "", "=q1=Kurenai Tabard", "=ds=#s7#, =ec1=#m7#" };
+ { 22, 31778, "", "=q1=Lower City Tabard", "=ds=#s7#" };
+ { 23, 31773, "", "=q1=Mag'har Tabard", "=ds=#s7#, =ec1=#m6#" };
+ { 24, 32828, "", "=q1=Ogri'la Tabard", "=ds=#s7#" };
+ { 25, 31781, "", "=q1=Sha'tar Tabard", "=ds=#s7#" };
+ { 26, 31775, "", "=q1=Sporeggar Tabard", "=ds=#s7#" };
+ { 27, 31780, "", "=q1=Scryers Tabard", "=ds=#s7#" };
+ { 28, 32445, "", "=q1=Skyguard Tabard", "=ds=#s7#" };
+ { 29, 35221, "", "=q1=Tabard of the Shattered Sun", "=ds=#s7#" };
+ { 30, 24004, "", "=q1=Thrallmar Tabard", "=ds=#s7#, =ec1=#m6#" };
+ };
+ {
+ Name = "Tabards";
+ { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "" };
+ { 2, 15196, "", "=q1=Private's Tabard", "=ds=#s7#" };
+ { 3, 15198, "", "=q1=Knight's Colors", "=ds=#s7#" };
+ { 4, 20132, "", "=q1=Arathor Battle Tabard", "=ds=#s7#, =q1=#m4#" };
+ { 5, 19032, "", "=q1=Stormpike Battle Tabard", "=ds=#s7#" };
+ { 6, 19506, "", "=q1=Silverwing Battle Tabard", "=ds=#s7#" };
+ { 8, 0, "INV_BannerPVP_01", "=q6=#m6#", "" };
+ { 9, 15197, "", "=q1=Scout's Tabard", "=ds=#s7#" };
+ { 10, 15199, "", "=q1=Stone Guard's Herald", "=ds=#s7#" };
+ { 11, 20131, "", "=q1=Battle Tabard of the Defilers", "=ds=#s7#, =q1=#m4#" };
+ { 12, 19031, "", "=q1=Frostwolf Battle Tabard", "=ds=#s7#" };
+ { 13, 19505, "", "=q1=Warsong Battle Tabard", "=ds=#s7#" };
+ { 16, 23192, "", "=q2=Tabard of the Scarlet Crusade", "=ds=#s7#", "", "0.48%" };
+ { 17, 5976, "", "=q1=Guild Tabard", "=ds=#s7#" };
+ { 19, 0, "INV_Box_01", "=q6=#j29#", "" };
+ { 20, 36941, "", "=q3=Competitor's Tabard", "=ds=#s7#" };
+ { 21, 22999, "", "=q1=Tabard of the Agent Dawn", "=ds=#s7#, =q1=#m4#" };
+ { 22, 28788, "", "=q1=Tabard of the Protector", "=ds=#s7#, =q1=#m4#" };
+ { 23, 19160, "", "=q1=Contest Winner's Tabard", "=ds=#s7#" };
+ };
+};
+
+-------------------
+--- Vanity Pets ---
+-------------------
+
+AtlasLoot_Data["VanityPets"] = {
+ Name = "Vanity Pets";
+ {
+ Name = AL["Merchant Sold"];
+ { 1, 44984, "", "=q3=Ammen Vale Lashling", "=ds=#e13#" };
+ { 2, 54436, "", "=q3=Blue Clockwork Rocket Bot", "=ds=#e13#" };
+ { 3, 44970, "", "=q3=Dun Morogh Cub", "=ds=#e13#" };
+ { 4, 44973, "", "=q3=Durotar Scorpion", "=ds=#e13#" };
+ { 5, 44974, "", "=q3=Elwynn Lamb", "=ds=#e13#" };
+ { 6, 44982, "", "=q3=Enchanted Broom", "=ds=#e13#" };
+ { 7, 39973, "", "=q3=Ghostly Skull", "=ds=#e13#" };
+ { 8, 45002, "", "=q3=Mechanopeep", "=ds=#e13#" };
+ { 9, 44980, "", "=q3=Mulgore Hatchling", "=ds=#e13#" };
+ { 10, 45606, "", "=q3=Sen'jin Fetish", "=ds=#e13#" };
+ { 11, 44965, "", "=q3=Teldrassil Sproutling", "=ds=#e13#" };
+ { 12, 44971, "", "=q3=Tirisfal Batling", "=ds=#e13#" };
+ { 13, 44822, "", "=q1=Albino Snake", "=ds=#e13#" };
+ { 14, 11023, "", "=q1=Ancona Chicken", "=ds=#e13#" };
+ { 15, 10360, "", "=q1=Black Kingsnake", "=ds=#e13#" };
+ { 16, 10361, "", "=q1=Brown Snake", "=ds=#e13#" };
+ { 17, 29958, "", "=q1=Blue Dragonhawk Hatchling", "=ds=#e13#" };
+ { 18, 29901, "", "=q1=Blue Moth Egg", "=ds=#e13#" };
+ { 19, 29364, "", "=q1=Brown Rabbit Crate", "=ds=#e13#" };
+ { 20, 46398, "", "=q1=Calico Cat", "=ds=#e13#" };
+ { 21, 8485, "", "=q1=Cat Carrier (Bombay)", "=ds=#e13#" };
+ { 22, 8486, "", "=q1=Cat Carrier (Cornish Rex)", "=ds=#e13#" };
+ { 23, 8487, "", "=q1=Cat Carrier (Orange Tabby)", "=ds=#e13#" };
+ { 24, 8490, "", "=q1=Cat Carrier (Siamese)", "=ds=#e13#" };
+ { 25, 8488, "", "=q1=Cat Carrier (Silver Tabby)", "=ds=#e13#" };
+ { 26, 8489, "", "=q1=Cat Carrier (White Kitten)", "=ds=#e13#" };
+ { 27, 10393, "", "=q1=Cockroach", "=ds=#e13#" };
+ { 28, 10392, "", "=q1=Crimson Snake", "=ds=#e13#" };
+ { 29, 29953, "", "=q1=Golden Dragonhawk Hatchling", "=ds=#e13#" };
+ { 30, 8500, "", "=q1=Great Horned Owl", "=ds=#e13#" };
+ };
+ {
+ Name = AL["Merchant Sold"];
+ { 1, 8501, "", "=q1=Hawk Owl", "=ds=#e13#" };
+ { 2, 29363, "", "=q1=Mana Wyrmling", "=ds=#e13#" };
+ { 3, 48120, "", "=q1=Obsidian Hatchling", "=ds=#e13#" };
+ { 4, 8496, "", "=q1=Parrot Cage (Cockatiel)", "=ds=#e13#" };
+ { 5, 8492, "", "=q1=Parrot Cage (Green Wing Macaw)", "=ds=#e13#" };
+ { 6, 8495, "", "=q1=Parrot Cage (Senegal)", "=ds=#e13#" };
+ { 7, 10394, "", "=q1=Prairie Dog Whistle", "=ds=#e13#" };
+ { 8, 8497, "", "=q1=Rabbit Crate (Snowshoe)", "=ds=#e13#" };
+ { 9, 29956, "", "=q1=Red Dragonhawk Hatchling", "=ds=#e13#" };
+ { 10, 29902, "", "=q1=Red Moth Egg", "=ds=#e13#" };
+ { 11, 29957, "", "=q1=Silver Dragonhawk Hatchling", "=ds=#e13#" };
+ { 12, 11026, "", "=q1=Tree Frog Box", "=ds=#e13#" };
+ { 13, 29904, "", "=q1=White Moth Egg", "=ds=#e13#" };
+ { 14, 11027, "", "=q1=Wood Frog Box", "=ds=#e13#" };
+ { 15, 29903, "", "=q1=Yellow Moth Egg", "=ds=#e13#" };
+ };
+ {
+ Name = AL["Quest"].." / "..AL["Crafted"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Quest"], "" };
+ { 2, 45022, "", "=q3=Argent Gruntling", "=ds=#e13# =ec1=#m6#" };
+ { 3, 44998, "", "=q3=Argent Squire", "=ds=#e13# =ec1=#m7#" };
+ { 4, 35350, "", "=q3=Chuck's Bucket", "=ds=#e13#" };
+ { 5, 33818, "", "=q3=Muckbreath's Bucket", "=ds=#e13#" };
+ { 6, 35349, "", "=q3=Snarly's Bucket", "=ds=#e13#" };
+ { 7, 44983, "", "=q3=Strand Crawler", "=ds=#e13#" };
+ { 8, 33816, "", "=q3=Toothy's Bucket", "=ds=#e13#" };
+ { 9, 19450, "", "=q1=A Jubling's Tiny Home", "=ds=#e13#" };
+ { 10, 11110, "", "=q1=Chicken Egg", "=ds=#e13#" };
+ { 11, 10398, "", "=q1=Mechanical Chicken", "=ds=#e13#" };
+ { 12, 31760, "", "=q1=Miniwing", "=ds=#e13#" };
+ { 13, 12529, "", "=q1=Smolderweb Carrier", "=ds=#e13#" };
+ { 14, 11474, "", "=q1=Sprite Darter Egg", "=ds=#e13#" };
+ { 15, 12264, "", "=q1=Worg Carrier", "=ds=#e13#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Crafted"], "" };
+ { 17, 15996, "", "=q1=Lifelike Mechanical Toad", "=ds=#e13#" };
+ { 18, 11826, "", "=q1=Lil' Smoky", "=ds=#e13#" };
+ { 19, 4401, "", "=q1=Mechanical Squirrel Box", "=ds=#e13#" };
+ { 20, 11825, "", "=q1=Pet Bombling", "=ds=#e13#" };
+ { 21, 21277, "", "=q1=Tranquil Mechanical Yeti", "=ds=#e13#" };
+ };
+ {
+ Name = AL["Rare"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Achievement"], "" };
+ { 2, 44738, "", "=q3=Kirin Tor Familiar", "=ds=#e13#" };
+ { 3, 44841, "", "=q3=Little Fawn's Salt Lick", "=ds=#e13#" };
+ { 4, 49912, "", "=q3=Perky Pug", "=ds=#e13#" };
+ { 5, 49646, "", "=q3=Core Hound Pup", "=ds=#e13#" };
+ { 6, 40653, "", "=q3=Reeking Pet Carrier", "=ds=#e13#" };
+ { 7, 44810, "", "=q3=Turkey Cage", "=ds=#e13#" };
+ { 8, 44819, "", "=q1=Baby Blizzard Bear", "=ds=#e13#" };
+ { 9, 49362, "", "=q1=Onyxian Whelpling", "=ds=#e13#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Faction"], "" };
+ { 17, 38628, "", "=q3=Nether Ray Fry", "=ds=#e13#" };
+ { 18, 44723, "", "=q3=Nurtured Penguin Egg", "=ds=#e13#" };
+ { 19, 46820, "", "=q3=Shimmering Wyrmling", "=ds=#e13# =ec1=#m7#" };
+ { 20, 46821, "", "=q3=Shimmering Wyrmling", "=ds=#e13# =ec1=#m6#" };
+ { 21, 34478, "", "=q3=Tiny Sporebat", "=ds=#e13#" };
+ { 22, 39898, "", "=q1=Cobra Hatchling", "=ds=#e13#" };
+ { 23, 44721, "", "=q1=Proto-Drake Whelp", "=ds=#e13#" };
+ { 24, 39896, "", "=q1=Tickbird Hatchling", "=ds=#e13#" };
+ { 25, 39899, "", "=q1=White Tickbird Hatchling", "=ds=#e13#" };
+ };
+ {
+ Name = AL["Rare"];
+ { 1, 0, "INV_Box_01", "=q6=#z17#", "" };
+ { 2, 8494, "", "=q4=Parrot Cage (Hyacinth Macaw)", "=ds=#e13#" };
+ { 3, 43698, "", "=q3=Giant Sewer Rat", "=ds=#e13#" };
+ { 4, 34535, "", "=q1=Azure Whelpling", "=ds=#e13#" };
+ { 5, 29960, "", "=q1=Captured Firefly", "=ds=#e13#" };
+ { 6, 8491, "", "=q1=Cat Carrier (Black Tabby)", "=ds=#e13#" };
+ { 7, 10822, "", "=q1=Dark Whelpling", "=ds=#e13#" };
+ { 8, 48112, "", "=q1=Darting Hatchling", "=ds=#e13#" };
+ { 9, 20769, "", "=q1=Disgusting Oozeling", "=ds=#e13#" };
+ { 10, 48116, "", "=q1=Gundrak Hatchling", "=ds=#e13#" };
+ { 11, 48118, "", "=q1=Leaping Hatchling", "=ds=#e13#" };
+ { 12, 27445, "", "=q1=Magical Crawdad Box", "=ds=#e13#" };
+ { 13, 48122, "", "=q1=Ravasaur Hatchling", "=ds=#e13#" };
+ { 14, 48124, "", "=q1=Razormaw Hatchling", "=ds=#e13#" };
+ { 15, 8499, "", "=q1=Tiny Crimson Whelpling", "=ds=#e13#" };
+ { 16, 8498, "", "=q1=Tiny Emerald Whelpling", "=ds=#e13#" };
+ { 18, 0, "INV_Box_01", "=q6=" .. AL["Dungeon/Raid"], "" };
+ { 19, 33993, "", "=q3=Mojo", "=q1=" .. BabbleZone["Zul'Aman"] };
+ { 20, 35504, "", "=q3=Phoenix Hatchling",
+ "=q2=" .. BabbleBoss["Kael'thas Sunstrider"] .. ", =q1=" .. BabbleZone["Magisters' Terrace"] };
+ { 21, 38658, "", "=q3=Vampiric Batling", "=q2=" ..
+ BabbleBoss["Prince Tenris Mirkblood"] .. ", =q1=" .. BabbleZone["Karazhan"] };
+ { 22, 48114, "", "=q1=Deviate Hatchling",
+ "=q2=" .. AL["Deviate Ravager/Deviate Guardian"] .. ", =q1=" .. BabbleZone["Wailing Caverns"] };
+ { 23, 48126, "", "=q1=Razzashi Hatchling", "=q2=" .. AL["Razzashi Raptor"] .. ", =q1=" .. BabbleZone["Zul'Gurub"] };
+ };
+ {
+ Name = AL["World Events"];
+ { 1, 23083, "", "=q3=Captured Flame", "=ds=#e13#" };
+ { 2, 34425, "", "=q3=Clockwork Rocket Bot", "=ds=#e13#" };
+ { 3, 46545, "", "=q3=Curious Oracle Hatchling", "=ds=#e13#" };
+ { 4, 46544, "", "=q3=Curious Wolvar Pup", "=ds=#e13#" };
+ { 5, 32616, "", "=q3=Egbert's Egg", "=ds=#e13#" };
+ { 6, 32622, "", "=q3=Elekk Training Collar", "=ds=#e13#" };
+ { 7, 53641, "", "=q3=Ice Chip", "=ds=#e13#" };
+ { 8, 46707, "", "=q3=Pint-Sized Pink Pachyderm", "=ds=#e13#" };
+ { 9, 34955, "", "=q3=Scorched Stone", "=ds=#e13#" };
+ { 10, 33154, "", "=q3=Sinister Squashling", "=ds=#e13#" };
+ { 11, 32617, "", "=q3=Sleepy Willy", "=ds=#e13#" };
+ { 12, 44794, "", "=q3=Spring Rabbit's Foot", "=ds=#e13#" };
+ { 13, 32233, "", "=q3=Wolpertinger's Tankard", "=ds=#e13#" };
+ { 14, 50446, "", "=q3=Toxic Wasteling", "=ds=#e13#" };
+ { 16, 21301, "", "=q1=Green Helper Box", "=ds=#e13#" };
+ { 17, 21308, "", "=q1=Jingling Bell", "=ds=#e13#" };
+ { 18, 23007, "", "=q1=Piglet's Collar", "=ds=#e13#" };
+ { 19, 23015, "", "=q1=Rat Cage", "=ds=#e13#" };
+ { 20, 21305, "", "=q1=Red Helper Box", "=ds=#e13#" };
+ { 21, 21309, "", "=q1=Snowman Kit", "=ds=#e13#" };
+ { 22, 22235, "", "=q1=Truesilver Shafted Arrow", "=ds=#e13#" };
+ { 23, 23002, "", "=q1=Turtle Box", "=ds=#e13#" };
+ };
+ {
+ Name = AL["Promotional"];
+ { 1, 34493, "", "=q4=Dragon Kite", "=ds=#e13#" };
+ { 2, 23713, "", "=q4=Hippogryph Hatchling", "=ds=#e13#" };
+ { 3, 49287, "", "=q4=Tuskarr Kite", "=ds=#e13#" };
+ { 4, 32588, "", "=q3=Banana Charm", "=ds=#e13#" };
+ { 5, 20371, "", "=q3=Blue Murloc Egg", "=ds=#e13#" };
+ { 6, 13584, "", "=q3=Diablo Stone", "=ds=#e13#" };
+ { 7, 39286, "", "=q3=Frosty's Collar", "=ds=#e13#" };
+ { 8, 37297, "", "=q3=Gold Medallion", "=ds=#e13#" };
+ { 9, 46802, "", "=q3=Heavy Murloc Egg", "=ds=#e13#" };
+ { 10, 30360, "", "=q3=Lurky's Egg", "=ds=#e13#" };
+ { 11, 45180, "", "=q3=Murkimus' Little Spear", "=ds=#e13#" };
+ { 12, 25535, "", "=q3=Netherwhelp's Collar", "=ds=#e13#" };
+ { 13, 13583, "", "=q3=Panda Collar", "=ds=#e13#" };
+ { 14, 22114, "", "=q3=Pink Murloc Egg", "=ds=#e13#" };
+ { 15, 34492, "", "=q3=Rocket Chicken", "=ds=#e13#" };
+ { 16, 38050, "", "=q3=Soul-Trader Beacon", "=ds=#e13#" };
+ { 17, 49343, "", "=q3=Spectral Tiger Cub", "=ds=#e13#" };
+ { 18, 39656, "", "=q3=Tyrael's Hilt", "=ds=#e13#" };
+ { 19, 41133, "", "=q3=Unhatched Mr. Chilly", "=ds=#e13#" };
+ { 20, 46767, "", "=q3=Warbot Ignition Key", "=ds=#e13#" };
+ { 21, 13582, "", "=q3=Zergling Leash", "=ds=#e13#" };
+ { 22, 56806, "", "=q3=Mini Thor", "=ds=#e13#" };
+ };
+ {
+ Name = AL["Pet Store"];
+ { 1, 49693, "", "=q3=Lil' Phylactery", "=ds=#e13#" };
+ { 2, 54847, "", "=q3=Lil' XT", "=ds=#e13#" };
+ { 3, 49665, "", "=q3=Pandaren Monk", "=ds=#e13#" };
+ { 4, 49663, "", "=q3=Wind Rider Cub", "=ds=#e13#" };
+ { 5, 49662, "", "=q3=Gryphon Hatchling", "=ds=#e13#" };
+ };
+ {
+ Name = AL["Accessories"];
+ { 1, 47541, "", "=q3=Argent Pony Bridle", "=ds=" };
+ { 2, 35223, "", "=q3=Papa Hummel's Old-Fashioned Pet Biscuit", "=ds=" };
+ { 3, 37431, "", "=q2=Fetch Ball", "=ds=" };
+ { 4, 43626, "", "=q2=Happy Pet Snack", "=ds=" };
+ { 5, 43352, "", "=q2=Pet Grooming Kit", "=ds=" };
+ { 6, 44820, "", "=q1=Red Ribbon Pet Leash", "=ds=" };
+ { 7, 37460, "", "=q1=Rope Pet Leash", "=ds=" };
+ };
+};
+
+--------------
+--- Mounts ---
+--------------
+AtlasLoot_Data["Mounts"] = {
+ Name = "Mounts";
+ {
+ Name = AL["Alliance Mounts"].." Page 1";
+ { 1, 0, "inv_misc_tournaments_symbol_nightelf", "=q6=" .. BabbleFaction["Darnassus"] .. " #j30#", "=ec1=#m7#" };
+ { 2, 18766, "", "=q4=Reins of the Swift Frostsaber", "=ds=#e12#" };
+ { 3, 18767, "", "=q4=Reins of the Swift Mistsaber", "=ds=#e12#" };
+ { 4, 18902, "", "=q4=Reins of the Swift Stormsaber", "=ds=#e12#" };
+ { 5, 8632, "", "=q3=Reins of the Spotted Frostsaber", "=ds=#e12#" };
+ { 6, 47100, "", "=q3=Reins of the Striped Dawnsaber", "=ds=#e12#" };
+ { 7, 8631, "", "=q3=Reins of the Striped Frostsaber", "=ds=#e12#" };
+ { 8, 8629, "", "=q3=Reins of the Striped Nightsaber", "=ds=#e12#" };
+ { 16, 0, "inv_misc_tournaments_symbol_gnome", "=q6=" .. BabbleFaction["Gnomeregan Exiles"] .. " #j30#", "=ec1=#m7#" };
+ { 17, 18772, "", "=q4=Swift Green Mechanostrider", "=ds=#e12#" };
+ { 18, 18773, "", "=q4=Swift White Mechanostrider", "=ds=#e12#" };
+ { 19, 18774, "", "=q4=Swift Yellow Mechanostrider", "=ds=#e12#" };
+ { 20, 8595, "", "=q3=Blue Mechanostrider", "=ds=#e12#" };
+ { 21, 13321, "", "=q3=Green Mechanostrider", "=ds=#e12#" };
+ { 22, 8563, "", "=q3=Red Mechanostrider", "=ds=#e12#" };
+ { 23, 13322, "", "=q3=Unpainted Mechanostrider", "=ds=#e12#" };
+ };
+ {
+ Name = AL["Alliance Mounts"].." Page 2";
+ { 1, 0, "inv_misc_tournaments_symbol_dwarf", "=q6=" .. BabbleFaction["Ironforge"] .. " #j30#", "=ec1=#m7#" };
+ { 2, 18786, "", "=q4=Swift Brown Ram", "=ds=#e12#" };
+ { 3, 18787, "", "=q4=Swift Gray Ram", "=ds=#e12#" };
+ { 4, 18785, "", "=q4=Swift White Ram", "=ds=#e12#" };
+ { 5, 5872, "", "=q3=Brown Ram", "=ds=#e12#" };
+ { 6, 5864, "", "=q3=Gray Ram", "=ds=#e12#" };
+ { 7, 5873, "", "=q3=White Ram", "=ds=#e12#" };
+ { 9, 0, "inv_misc_tournaments_symbol_draenei", "=q6=" .. BabbleFaction["Exodar"] .. " #j30#", "=ec1=#m7#" };
+ { 10, 29745, "", "=q4=Great Blue Elekk", "=ds=#e12#" };
+ { 11, 29746, "", "=q4=Great Green Elekk", "=ds=#e12#" };
+ { 12, 29747, "", "=q4=Great Purple Elekk", "=ds=#e12#" };
+ { 13, 28481, "", "=q3=Brown Elekk", "=ds=#e12#" };
+ { 14, 29744, "", "=q3=Gray Elekk", "=ds=#e12#" };
+ { 15, 29743, "", "=q3=Purple Elekk", "=ds=#e12#" };
+ { 16, 0, "inv_misc_tournaments_symbol_human", "=q6=" .. BabbleFaction["Stormwind"] .. " #j30#", "=ec1=#m7#" };
+ { 17, 18777, "", "=q4=Swift Brown Steed", "=ds=#e12#" };
+ { 18, 18776, "", "=q4=Swift Palomino", "=ds=#e12#" };
+ { 19, 18778, "", "=q4=Swift White Steed", "=ds=#e12#" };
+ { 20, 2411, "", "=q3=Black Stallion Bridle", "=ds=#e12#" };
+ { 21, 5656, "", "=q3=Brown Horse Bridle", "=ds=#e12#" };
+ { 22, 5655, "", "=q3=Chestnut Mare Bridle", "=ds=#e12#" };
+ { 23, 2414, "", "=q3=Pinto Bridle", "=ds=#e12#" };
+ };
+ {
+ Name = AL["Alliance Mounts"].." Page 3";
+ { 1, 0, "INV_BannerPVP_02", "=q6=" .. AL["Alliance Flying Mounts"], "=ec1=#m7#" };
+ { 2, 25473, "", "=q4=Swift Blue Gryphon", "=ds=#e12#" };
+ { 3, 25528, "", "=q4=Swift Green Gryphon", "=ds=#e12#" };
+ { 4, 25529, "", "=q4=Swift Purple Gryphon", "=ds=#e12#" };
+ { 5, 25527, "", "=q4=Swift Red Gryphon", "=ds=#e12#" };
+ { 6, 25471, "", "=q3=Ebon Gryphon", "=ds=#e12#" };
+ { 7, 25470, "", "=q3=Golden Gryphon", "=ds=#e12#" };
+ { 8, 25472, "", "=q3=Snowy Gryphon", "=ds=#e12#" };
+ { 10, 44225, "", "=q4=Reins of the Armored Brown Bear", "=ds=#e12#" };
+ { 11, 44230, "", "=q4=Reins of the Wooly Mammoth", "=ds=#e12#" };
+ { 12, 44235, "", "=q4=Reins of the Traveler's Tundra Mammoth", "=ds=#e12#" };
+ { 13, 44689, "", "=q4=Armored Snowy Gryphon", "=ds=#e12#" };
+ { 16, 0, "INV_BannerPVP_02", "=q6=" .. BabbleFaction["Kurenai"] .. " #j30#", "=ec1=#m7#" };
+ { 17, 29227, "", "=q4=Reins of the Cobalt War Talbuk", "=ds=#e12#" };
+ { 18, 29229, "", "=q4=Reins of the Silver War Talbuk", "=ds=#e12#" };
+ { 19, 29230, "", "=q4=Reins of the Tan War Talbuk", "=ds=#e12#" };
+ { 20, 29231, "", "=q4=Reins of the White War Talbuk", "=ds=#e12#" };
+ { 21, 31830, "", "=q4=Reins of the Cobalt Riding Talbuk", "=ds=#e12#" };
+ { 22, 31832, "", "=q4=Reins of the Silver Riding Talbuk", "=ds=#e12#" };
+ { 23, 31834, "", "=q4=Reins of the Tan Riding Talbuk", "=ds=#e12#" };
+ { 24, 31836, "", "=q4=Reins of the White Riding Talbuk", "=ds=#e12#" };
+ { 26, 0, "INV_BannerPVP_02", "=q6=" .. BabbleFaction["Wintersaber Trainers"] .. " #j30#", "=ec1=#m7#" };
+ { 27, 13086, "", "=q4=Reins of the Winterspring Frostsaber", "=ds=#e12#" };
+ { 28, 0, "INV_BannerPVP_02", "=q6=" .. BabbleFaction["The Silver Covenant"] .. " #j30#", "=ec1=#m7#" };
+ { 29, 46815, "", "=q4=Quel'dorei Steed", "=ds=#e12#" };
+ { 30, 46813, "", "=q4=Silver Covenant Hippogryph", "=ds=#e12#" };
+ };
+ {
+ Name = AL["Horde Mounts"].." Page 1";
+ { 1, 0, "inv_misc_tournaments_symbol_orc", "=q6=" .. BabbleFaction["Orgrimmar"] .. " #j30#", "=ec1=#m6#" };
+ { 2, 18796, "", "=q4=Horn of the Swift Brown Wolf", "=ds=#e12#" };
+ { 3, 18798, "", "=q4=Horn of the Swift Gray Wolf", "=ds=#e12#" };
+ { 4, 18797, "", "=q4=Horn of the Swift Timber Wolf", "=ds=#e12#" };
+ { 5, 46099, "", "=q3=Horn of the Black Wolf", "=ds=#e12#" };
+ { 6, 5668, "", "=q3=Horn of the Brown Wolf", "=ds=#e12#" };
+ { 7, 5665, "", "=q3=Horn of the Dire Wolf", "=ds=#e12#" };
+ { 8, 1132, "", "=q3=Horn of the Timber Wolf", "=ds=#e12#" };
+ { 16, 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=" .. BabbleFaction["Silvermoon City"] .. " #j30#", "=ec1=#m6#" };
+ { 17, 29223, "", "=q4=Swift Green Hawkstrider", "=ds=#e12#" };
+ { 18, 28936, "", "=q4=Swift Pink Hawkstrider", "=ds=#e12#" };
+ { 19, 29224, "", "=q4=Swift Purple Hawkstrider", "=ds=#e12#" };
+ { 20, 29221, "", "=q3=Black Hawkstrider", "=ds=#e12#" };
+ { 21, 29220, "", "=q3=Blue Hawkstrider", "=ds=#e12#" };
+ { 22, 29222, "", "=q3=Purple Hawkstrider", "=ds=#e12#" };
+ { 23, 28927, "", "=q3=Red Hawkstrider", "=ds=#e12#" };
+ };
+ {
+ Name = AL["Horde Mounts"].." Page 2";
+ { 1, 0, "inv_misc_tournaments_symbol_troll", "=q6=" .. BabbleFaction["Darkspear Trolls"] .. " #j30#", "=ec1=#m6#" };
+ { 2, 18788, "", "=q4=Swift Blue Raptor", "=ds=#e12#" };
+ { 3, 18789, "", "=q4=Swift Olive Raptor", "=ds=#e12#" };
+ { 4, 18790, "", "=q4=Swift Orange Raptor", "=ds=#e12#" };
+ { 5, 8588, "", "=q3=Whistle of the Emerald Raptor", "=ds=#e12#" };
+ { 6, 8591, "", "=q3=Whistle of the Turquoise Raptor", "=ds=#e12#" };
+ { 7, 8592, "", "=q3=Whistle of the Violet Raptor", "=ds=#e12#" };
+ { 9, 0, "inv_misc_tournaments_symbol_tauren", "=q6=" .. BabbleFaction["Thunder Bluff"] .. " #j30#", "=ec1=#m6#" };
+ { 10, 18794, "", "=q4=Great Brown Kodo", "=ds=#e12#" };
+ { 11, 18795, "", "=q4=Great Gray Kodo", "=ds=#e12#" };
+ { 12, 18793, "", "=q4=Great White Kodo", "=ds=#e12#" };
+ { 13, 15290, "", "=q3=Brown Kodo", "=ds=#e12#" };
+ { 14, 15277, "", "=q3=Gray Kodo", "=ds=#e12#" };
+ { 15, 46100, "", "=q3=White Kodo", "=ds=#e12#" };
+ { 16, 0, "inv_misc_tournaments_symbol_scourge", "=q6=" .. BabbleFaction["Undercity"] .. " #j30#", "=ec1=#m6#" };
+ { 17, 13334, "", "=q4=Green Skeletal Warhorse", "=ds=#e12#" };
+ { 18, 47101, "", "=q4=Ochre Skeletal Warhorse", "=ds=#e12#" };
+ { 19, 18791, "", "=q4=Purple Skeletal Warhorse", "=ds=#e12#" };
+ { 20, 46308, "", "=q3=Black Skeletal Horse", "=ds=#e12#" };
+ { 21, 13332, "", "=q3=Blue Skeletal Horse", "=ds=#e12#" };
+ { 22, 13333, "", "=q3=Brown Skeletal Horse", "=ds=#e12#" };
+ { 23, 13331, "", "=q3=Red Skeletal Horse", "=ds=#e12#" };
+ };
+ {
+ Name = AL["Horde Mounts"].." Page 3";
+ { 1, 0, "INV_BannerPVP_01", "=q6=" .. AL["Horde Flying Mounts"], "=ec1=#m6#" };
+ { 2, 25531, "", "=q4=Swift Green Wind Rider", "=ds=#e12#" };
+ { 3, 25533, "", "=q4=Swift Purple Wind Rider", "=ds=#e12#" };
+ { 4, 25477, "", "=q4=Swift Red Wind Rider", "=ds=#e12#" };
+ { 5, 25532, "", "=q4=Swift Yellow Wind Rider", "=ds=#e12#" };
+ { 6, 25475, "", "=q3=Blue Wind Rider", "=ds=#e12#" };
+ { 7, 25476, "", "=q3=Green Wind Rider", "=ds=#e12#" };
+ { 8, 25474, "", "=q3=Tawny Wind Rider", "=ds=#e12#" };
+ { 10, 44226, "", "=q4=Reins of the Armored Brown Bear", "=ds=#e12#" };
+ { 11, 44231, "", "=q4=Reins of the Wooly Mammoth", "=ds=#e12#" };
+ { 12, 44234, "", "=q4=Reins of the Traveler's Tundra Mammoth", "=ds=#e12#" };
+ { 13, 44690, "", "=q4=Armored Blue Wind Rider", "=ds=#e12#" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=" .. BabbleFaction["The Mag'har"] .. " #j30#", "=ec1=#m6#" };
+ { 17, 29102, "", "=q4=Reins of the Cobalt War Talbuk", "=ds=#e12#" };
+ { 18, 29104, "", "=q4=Reins of the Silver War Talbuk", "=ds=#e12#" };
+ { 19, 29105, "", "=q4=Reins of the Tan War Talbuk", "=ds=#e12#" };
+ { 20, 29103, "", "=q4=Reins of the White War Talbuk", "=ds=#e12#" };
+ { 21, 31829, "", "=q4=Reins of the Cobalt Riding Talbuk", "=ds=#e12#" };
+ { 22, 31831, "", "=q4=Reins of the Silver Riding Talbuk", "=ds=#e12#" };
+ { 23, 31833, "", "=q4=Reins of the Tan Riding Talbuk", "=ds=#e12#" };
+ { 24, 31835, "", "=q4=Reins of the White Riding Talbuk", "=ds=#e12#" };
+ { 26, 0, "INV_BannerPVP_02", "=q6=Ravasaur Trainers #j30#", "=ec1=#m7#" };
+ { 27, 46102, "", "=q4=Whistle of the Venomhide Ravasaur", "=ds=#e12#" };
+ { 28, 0, "INV_BannerPVP_02", "=q6=" .. BabbleFaction["The Sunreavers"] .. " #j30#", "=ec1=#m7#" };
+ { 29, 46816, "", "=q4=Sunreaver Hawkstrider", "=ds=#e12#" };
+ { 30, 46814, "", "=q4=Sunreaver Dragonhawk", "=ds=#e12#" };
+ };
+ {
+ Name = AL["Neutral Faction Mounts"];
+ { 1, 0, "INV_Box_01", "=q6=" .. BabbleFaction["Netherwing"] .. " #j30#", "" };
+ { 2, 32858, "", "=q4=Reins of the Azure Netherwing Drake", "=ds=#e12#" };
+ { 3, 32859, "", "=q4=Reins of the Cobalt Netherwing Drake", "=ds=#e12#" };
+ { 4, 32857, "", "=q4=Reins of the Onyx Netherwing Drake", "=ds=#e12#" };
+ { 5, 32860, "", "=q4=Reins of the Purple Netherwing Drake", "=ds=#e12#" };
+ { 6, 32861, "", "=q4=Reins of the Veridian Netherwing Drake", "=ds=#e12#" };
+ { 7, 32862, "", "=q4=Reins of the Violet Netherwing Drake", "=ds=#e12#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. BabbleFaction["Sha'tari Skyguard"] .. " #j30#", "" };
+ { 10, 32319, "", "=q4=Blue Riding Nether Ray", "=ds=#e12#" };
+ { 11, 32314, "", "=q4=Green Riding Nether Ray", "=ds=#e12#" };
+ { 12, 32317, "", "=q4=Red Riding Nether Ray", "=ds=#e12#" };
+ { 13, 32316, "", "=q4=Purple Riding Nether Ray", "=ds=#e12#" };
+ { 14, 32318, "", "=q4=Silver Riding Nether Ray", "=ds=#e12#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. BabbleFaction["Cenarion Expedition"] .. " #j30#", "" };
+ { 17, 33999, "", "=q4=Cenarion War Hippogryph", "=ds=#e12#" };
+ { 19, 0, "INV_Box_01", "=q6=" .. BabbleFaction["The Sons of Hodir"] .. " #j30#", "" };
+ { 20, 43958, "", "=q4=Reins of the Ice Mammoth", "=ds=#e12# =ec1=#m7#" };
+ { 21, 44080, "", "=q4=Reins of the Ice Mammoth", "=ds=#e12# =ec1=#m6#" };
+ { 22, 43961, "", "=q4=Reins of the Grand Ice Mammoth", "=ds=#e12# =ec1=#m7#" };
+ { 23, 44086, "", "=q4=Reins of the Grand Ice Mammoth", "=ds=#e12# =ec1=#m6#" };
+ { 25, 0, "INV_Box_01", "=q6=" .. BabbleFaction["The Wyrmrest Accord"] .. " #j30#", "" };
+ { 26, 43955, "", "=q4=Reins of the Red Drake", "=ds=#e12#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. BabbleFaction["The Oracles"] .. " #j30#", "" };
+ { 29, 44707, "", "=q4=Reins of the Green Proto-Drake", "=q2=#x38#", "" };
+ };
+ {
+ Name = AL["PvP Mounts"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Arena Reward"], "" };
+ { 2, 30609, "", "=q4=Swift Nether Drake", "=ds=#e12#" };
+ { 3, 34092, "", "=q4=Merciless Nether Drake", "=ds=#e12#" };
+ { 4, 37676, "", "=q4=Vengeful Nether Drake", "=ds=#e12#" };
+ { 5, 43516, "", "=q4=Brutal Nether Drake", "=ds=#e12#" };
+ { 6, 46171, "", "=q4=Deadly Gladiator's Frostwyrm", "=ds=#e12#" };
+ { 8, 0, "INV_Box_01", "=q6=" .. AL["Alliance PvP Mounts"], "" };
+ { 9, 29465, "", "=q4=Black Battlestrider", "=ds=#e12# =ec1=#m7#" };
+ { 10, 29467, "", "=q4=Black War Ram", "=ds=#e12# =ec1=#m7#" };
+ { 11, 29468, "", "=q4=Black War Steed Bridle", "=ds=#e12# =ec1=#m7#" };
+ { 12, 35906, "", "=q4=Reins of the Black War Elekk", "=ds=#e12# =ec1=#m7#" };
+ { 13, 29471, "", "=q4=Reins of the Black War Tiger", "=ds=#e12# =ec1=#m7#" };
+ { 14, 19030, "", "=q4=Stormpike Battle Charger", "=ds=#e12# =ec1=#m7#" };
+ { 15, 43956, "", "=q4=Reins of the Black War Mammoth", "=ds=#e12# =ec1=#m7#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Halaa PvP Mounts"], "" };
+ { 17, 28915, "", "=q4=Reins of the Dark Riding Talbuk", "=ds=#e12#" };
+ { 18, 29228, "", "=q4=Reins of the Dark War Talbuk", "=ds=#e12#" };
+ { 23, 0, "INV_Box_01", "=q6=" .. AL["Horde PvP Mounts"], "" };
+ { 24, 29466, "", "=q4=Black War Kodo", "=ds=#e12# =ec1=#m6#" };
+ { 25, 29469, "", "=q4=Horn of the Black War Wolf", "=ds=#e12# =ec1=#m6#" };
+ { 26, 29470, "", "=q4=Red Skeletal Warhorse", "=ds=#e12# =ec1=#m6#" };
+ { 27, 34129, "", "=q4=Swift Warstrider", "=ds=#e12# =ec1=#m6#" };
+ { 28, 29472, "", "=q4=Whistle of the Black War Raptor", "=ds=#e12# =ec1=#m6#" };
+ { 29, 19029, "", "=q4=Horn of the Frostwolf Howler", "=ds=#e12# =ec1=#m6#" };
+ { 30, 44077, "", "=q4=Reins of the Black War Mammoth", "=ds=#e12# =ec1=#m6#" };
+ };
+ {
+ Name = AL["Rare Mounts"].." Page 1";
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Dungeon/Raid"], "" };
+ { 2, 33809, "", "=q4=Amani War Bear", "=q2=#x33#, =q1=#z29#" };
+ { 3, 32458, "", "=q4=Ashes of Al'ar", "=q2=#n59#, =q1=#z19#" };
+ { 4, 49098, "", "=q4=Crusader's Black Warhorse",
+ "=q2=" .. AL["A Tribute to Immortality"] .. ", =q1=" .. BabbleZone["Trial of the Crusader"], "", "" };
+ { 5, 49096, "", "=q4=Crusader's White Warhorse",
+ "=q2=" .. AL["A Tribute to Immortality"] .. ", =q1=" .. BabbleZone["Trial of the Crusader"], "", "" };
+ { 6, 13335, "", "=q4=Deathcharger's Reins", "=q2=#n52#, =q1=#z6#", "", "0.10%" };
+ { 7, 30480, "", "=q4=Fiery Warhorse's Reins", "=q2=#n53#, =q1=#z12#", "", "0.25%" };
+ { 8, 50818, "", "=q4=Invincible's Reins", "=q2=" ..
+ BabbleBoss["The Lich King"] .. ", =q1=" .. BabbleZone["Icecrown Citadel"], "", "" };
+ { 9, 45693, "", "=q4=Mimiron's Head", "=q2=" .. AL["Alone in the Darkness"] .. ", =q1=" .. BabbleZone["Ulduar"], "", "" };
+ { 10, 43986, "", "=q4=Reins of the Black Drake", "=q2=#n153#, =q1=#j37# #z38# #j46#", "" };
+ { 11, 43954, "", "=q4=Reins of the Twilight Drake", "=q2=#n153#, =q1=#j38# #z38# #j46#", "" };
+ { 12, 43953, "", "=q4=Reins of the Blue Drake", "=q2=" .. BabbleZone["The Oculus"], "" };
+ { 13, 43952, "", "=q4=Reins of the Azure Drake", "=q2=#n154#, =q1=#j38# #z39#", "" };
+ { 14, 44151, "", "=q4=Reins of the Blue Proto-Drake", "=q2=#n151#, =q1=#j47# #z35#", "" };
+ { 15, 43951, "", "=q4=Reins of the Bronze Drake", "=q2=#n152#, =q1=#j47# #z36#", "" };
+ { 17, 52200, "", "=q4=Reins of the Crimson Deathcharger",
+ "=q2=" .. BabbleBoss["The Lich King"] .. ", =q1=" .. BabbleZone["Icecrown Citadel"], "", "" };
+ { 18, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", "" };
+ { 19, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", "" };
+ { 20, 32768, "", "=q4=Reins of the Raven Lord", "=q2=#n58#, =q1=#z16#" };
+ { 21, 49046, "", "=q4=Swift Horde Wolf",
+ "=q2=" .. AL["A Tribute to Insanity (50)"] .. ", =q1=" .. BabbleZone["Trial of the Crusader"], "", "" }; --Horde
+ { 22, 49044, "", "=q4=Swift Alliance Steed",
+ "=q2=" .. AL["A Tribute to Insanity (50)"] .. ", =q1=" .. BabbleZone["Trial of the Crusader"], "", "" }; --Alliance
+ { 23, 35513, "", "=q4=Swift White Hawkstrider", "=q2=#n59#, =q1=#z30#" };
+ { 24, 19872, "", "=q4=Swift Razzashi Raptor", "=q2=#n33#, =q1=#z8#", "", "0.43%" };
+ { 25, 19902, "", "=q4=Swift Zulian Tiger", "=q2=#n28#, =q1=#z8#", "", " 0.70%" };
+ };
+ {
+ Name = AL["Rare Mounts"].." Page 2";
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Achievement Reward"], "" };
+ { 2, 44223, "", "=q4=Reins of the Black War Bear", "=ds=#e12# =ec1=#m7#" };
+ { 3, 44224, "", "=q4=Reins of the Black War Bear", "=ds=#e12# =ec1=#m6#" };
+ { 4, 44843, "", "=q4=Blue Dragonhawk Mount", "=ds=#e12# =ec1=#m7#" };
+ { 5, 44842, "", "=q4=Red Dragonhawk Mount", "=ds=#e12# =ec1=#m6#" };
+ { 6, 44178, "", "=q4=Reins of the Albino Drake", "=ds=#e12#" };
+ { 7, 44164, "", "=q4=Reins of the Black Proto-Drake", "=ds=#e12#" };
+ { 8, 45801, "", "=q4=Reins of the Ironbound Proto-Drake", "=ds=#e12#" };
+ { 9, 44175, "", "=q4=Reins of the Plagued Proto-Drake", "=ds=#e12#" };
+ { 10, 44160, "", "=q4=Reins of the Red Proto-Drake", "=ds=#e12#" };
+ { 11, 45802, "", "=q4=Reins of the Rusted Proto-Drake", "=ds=#e12#" };
+ { 12, 44177, "", "=q4=Reins of the Violet Proto-Drake", "=ds=#e12#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Rare Mounts"], "" };
+ { 17, 44168, "", "=q4=Reins of the Time-Lost Proto-Drake", "=q2=#n155#, =q1=#z37#", "" };
+ { 18, 46109, "", "=q3=Sea Turtle", "=q2=#p24#", "" };
+ { 20, 21218, "", "=q3=Blue Qiraji Resonating Crystal", "=q2=#n11#, =q1=#z11#", "", "10.91%" };
+ { 21, 21323, "", "=q3=Green Qiraji Resonating Crystal", "=q2=#n11#, =q1=#z11#", "", "11.77%" };
+ { 22, 21321, "", "=q3=Red Qiraji Resonating Crystal", "=q2=#n11#, =q1=#z11#", "", "1.32%" };
+ { 23, 21324, "", "=q3=Yellow Qiraji Resonating Crystal", "=q2=#n11#, =q1=#z11#", "", "12.64%" };
+ };
+ {
+ Name = AL["Rare Mounts"].." Page 3";
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Quest Reward"], "" };
+ { 2, 21176, "", "=q5=Black Qiraji Resonating Crystal", "=q2=#m4#" };
+ { 3, 43962, "", "=q4=Reins of the White Polar Bear", "=q2=#m4#: #x39#", "" };
+ };
+ {
+ Name = AL["Crafted Mounts"];
+ { 1, 54797, "", "=q4=Frosty Flying Carpet", "=q2=#p8#" };
+ { 2, 44558, "", "=q4=Magnificent Flying Carpet", "=q2=#p8#" };
+ { 3, 44413, "", "=q4=Mekgineer's Chopper", "=q2=#p5# =ec1=#m7#" };
+ { 4, 41508, "", "=q4=Mechano-hog", "=q2=#p5# =ec1=#m6#" };
+ { 5, 34061, "", "=q4=Turbo-Charged Flying Machine Control", "=q2=#p5#" };
+ { 6, 44554, "", "=q3=Flying Carpet", "=q2=#p8#" };
+ { 7, 34060, "", "=q3=Flying Machine Control", "=q2=#p5#" };
+ };
+ {
+ Name = AL["Promotional Mounts"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Promotional Mounts"], "" };
+ { 2, 43599, "", "=q3=Big Blizzard Bear", "=ds=#e12#" };
+ { 3, 37719, "", "=q4=Swift Zhevra", "=ds=#e12#" };
+ { 4, 54860, "", "=q4=X-53 Touring Rocket", "=ds=#e12#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. AL["Card Game Mounts"], "" };
+ { 6, 54068, "", "=q4=Wooly White Rhino ", "=q2=#m24#" };
+ { 7, 49282, "", "=q4=Big Battle Bear", "=q2=#m24#" };
+ { 8, 49290, "", "=q4=Magic Rooster Egg", "=q2=#m24#" };
+ { 9, 49284, "", "=q4=Reins of the Swift Spectral Tiger", "=q2=#m24#" };
+ { 10, 23720, "", "=q4=Riding Turtle", "=q2=#m24#" };
+ { 12, 49286, "", "=q4=X-51 Nether-Rocket X-TREME", "=q2=#m24#" };
+ { 13, 49283, "", "=q3=Reins of the Spectral Tiger", "=q2=#m24#" };
+ { 14, 49285, "", "=q3=X-51 Nether-Rocket", "=q2=#m24#" };
+ };
+ {
+ Name = AL["World Events"].." Page 1";
+ { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "" };
+ { 2, 45591, "", "=q4=Darnassian Nightsaber", "=ds=#e12#", "100 #champseal#" };
+ { 3, 45590, "", "=q4=Exodar Elekk", "=ds=#e12#", "100 #champseal#" };
+ { 4, 45589, "", "=q4=Gnomeregan Mechanostrider", "=ds=#e12#", "100 #champseal#" };
+ { 5, 45586, "", "=q4=Ironforge Ram", "=ds=#e12#", "100 #champseal#" };
+ { 6, 45125, "", "=q4=Stormwind Steed", "=ds=#e12#", "100 #champseal#" };
+ { 8, 46745, "", "=q4=Great Red Elekk", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 9, 46752, "", "=q4=Swift Gray Steed", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 10, 46744, "", "=q4=Swift Moonsaber", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 11, 46748, "", "=q4=Swift Violet Ram", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 12, 46747, "", "=q4=Turbostrider", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 14, 47179, "", "=q4=Argent Charger", "=ds=#e12#", "100 #champseal#" };
+ { 15, 47180, "", "=q4=Argent Warhorse", "=ds=#e12#", "100 #champseal#" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", "" };
+ { 17, 45593, "", "=q4=Darkspear Raptor", "=ds=#e12#", "100 #champseal#" };
+ { 18, 45597, "", "=q4=Forsaken Warhorse", "=ds=#e12#", "100 #champseal#" };
+ { 19, 45595, "", "=q4=Orgrimmar Wolf", "=ds=#e12#", "100 #champseal#" };
+ { 20, 45596, "", "=q4=Silvermoon Hawkstrider", "=ds=#e12#", "100 #champseal#" };
+ { 21, 45592, "", "=q4=Thunder Bluff Kodo", "=ds=#e12#", "100 #champseal#" };
+ { 23, 46750, "", "=q4=Great Golden Kodo", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 24, 46749, "", "=q4=Swift Burgundy Wolf", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 25, 46743, "", "=q4=Swift Purple Raptor", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 26, 46751, "", "=q4=Swift Red Hawkstrider", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 27, 46746, "", "=q4=White Skeletal Warhorse", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 29, 45725, "", "=q4=Argent Hippogryph", "=ds=#e12#", "150 #champseal#" };
+ };
+ {
+ Name = AL["World Events"].." Page 2";
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Brewfest"], "" };
+ { 2, 37828, "", "=q4=Great Brewfest Kodo", "=q2=#n150#" };
+ { 3, 33977, "", "=q4=Swift Brewfest Ram", "=q2=#n150#" };
+ { 4, 33976, "", "=q3=Brewfest Ram", "=ds=#e12#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. AL["Hallow's End"], "" };
+ { 7, 37012, "", "=q4=The Horseman's Reins", "=q2=#n136#" };
+ { 8, 37011, "", "=q3=Magic Broom", "=q2=#n136#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Love is in the Air"], "" };
+ { 17, 50250, "", "=q4=Big Love Rocket", "=ds=#e12#" };
+ };
+};
+
diff --git a/AtlasLoot_WorldEvents/worldevents.lua b/AtlasLoot_WorldEvents/worldevents.lua
index 9a3f068..d5404e6 100644
--- a/AtlasLoot_WorldEvents/worldevents.lua
+++ b/AtlasLoot_WorldEvents/worldevents.lua
@@ -34,1473 +34,1474 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0")
--- One Time Events
---- Scourge Invasion
- ------------------------
- --- Permanent Events ---
- ------------------------
+------------------------
+--- Permanent Events ---
+------------------------
- -------------------------
- --- Argent Tournament ---
- -------------------------
+-------------------------
+--- Argent Tournament ---
+-------------------------
- AtlasLoot_Data["ArgentTournament"] = {
- Name = AL["Argent Tournament"];
- {
- Name = BabbleInventory["Miscellaneous"];
- { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", ""};
- { 2, 45714, "", "=q2=Darnassus Commendation Badge", "=ds=", "1 #champwrit#"};
- { 3, 45715, "", "=q2=Exodar Commendation Badge", "=ds=", "1 #champwrit#"};
- { 4, 45716, "", "=q2=Gnomeregan Commendation Badge", "=ds=", "1 #champwrit#"};
- { 5, 45717, "", "=q2=Ironforge Commendation Badge", "=ds=", "1 #champwrit#"};
- { 6, 45718, "", "=q2=Stormwind Commendation Badge", "=ds=", "1 #champwrit#"};
- { 15, 46114, "", "=q2=Champion's Writ", "=ds=#m17#"};
- { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", ""};
- { 17, 45719, "", "=q2=Orgrimmar Commendation Badge", "=ds=", "1 #champwrit#"};
- { 18, 45723, "", "=q2=Undercity Commendation Badge", "=ds=", "1 #champwrit#"};
- { 19, 45722, "", "=q2=Thunder Bluff Commendation Badge", "=ds=", "1 #champwrit#"};
- { 20, 45720, "", "=q2=Sen'jin Commendation Badge", "=ds=", "1 #champwrit#"};
- { 21, 45721, "", "=q2=Silvermoon Commendation Badge", "=ds=", "1 #champwrit#"};
- };
- {
- Name = AL["Tabards"].." / "..AL["Banner"];
- { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", ""};
- { 2, 45021, "", "=q1=Darnassus Banner", "=ds=#e14#", "15 #champseal#"};
- { 3, 45020, "", "=q1=Exodar Banner", "=ds=#e14#", "15 #champseal#"};
- { 4, 45019, "", "=q1=Gnomeregan Banner", "=ds=#e14#", "15 #champseal#"};
- { 5, 45018, "", "=q1=Ironforge Banner", "=ds=#e14#", "15 #champseal#"};
- { 6, 45011, "", "=q1=Stormwind Banner", "=ds=#e14#", "15 #champseal#"};
- { 7, 45579, "", "=q1=Darnassus Tabard", "=ds=#s7#", "50 #champseal#"};
- { 8, 45580, "", "=q1=Exodar Tabard", "=ds=#s7#", "50 #champseal#"};
- { 9, 45578, "", "=q1=Gnomeregan Tabard", "=ds=#s7#", "50 #champseal#"};
- { 10, 45577, "", "=q1=Ironforge Tabard", "=ds=#s7#", "50 #champseal#"};
- { 11, 45574, "", "=q1=Stormwind Tabard", "=ds=#s7#", "50 #champseal#"};
- { 12, 46817, "", "=q1=Silver Covenant Tabard", "=ds=#s7#", "50 #champseal#"};
- { 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#"};
- { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", ""};
- { 17, 45014, "", "=q1=Orgrimmar Banner", "=ds=#e14#", "15 #champseal#"};
- { 18, 45016, "", "=q1=Undercity Banner", "=ds=#e14#", "15 #champseal#"};
- { 19, 45013, "", "=q1=Thunder Bluff Banner", "=ds=#e14#", "15 #champseal#"};
- { 20, 45015, "", "=q1=Sen'jin Banner", "=ds=#e14#", "15 #champseal#"};
- { 21, 45017, "", "=q1=Silvermoon City Banner", "=ds=#e14#", "15 #champseal#"};
- { 22, 45581, "", "=q1=Orgrimmar Tabard", "=ds=#s7#", "50 #champseal#"};
- { 23, 45583, "", "=q1=Undercity Tabard", "=ds=#s7#", "50 #champseal#"};
- { 24, 45584, "", "=q1=Thunder Bluff Tabard", "=ds=#s7#", "50 #champseal#"};
- { 25, 45582, "", "=q1=Sen'jin Tabard", "=ds=#s7#", "50 #champseal#"};
- { 26, 45585, "", "=q1=Silvermoon City Tabard", "=ds=#s7#", "50 #champseal#"};
- { 27, 46818, "", "=q1=Sunreaver Tabard", "=ds=#s7#", "50 #champseal#"};
- { 28, 0, "INV_Jewelry_Talisman_08", "=q6="..BabbleFaction["Argent Crusade"], "" };
- { 29, 46843, "", "=q1=Argent Crusade Banner", "=ds=#e14#", "15 #champseal#"};
- { 30, 46874, "", "=q2=Argent Crusader's Tabard", "=ds=#s7#", "50 #champseal#"};
- };
- {
- Name = BabbleInventory["Armor"];
- { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", ""};
- { 2, 45156, "", "=q3=Sash of Shattering Hearts", "=ds=#s10#, #a1#", "10 #champseal#" };
- { 3, 45181, "", "=q3=Wrap of the Everliving Tree", "=ds=#s10#, #a2#", "10 #champseal#" };
- { 4, 45159, "", "=q3=Treads of Nimble Evasion", "=ds=#s12#, #a2#", "10 #champseal#" };
- { 5, 45184, "", "=q3=Cinch of Bonded Servitude", "=ds=#s10#, #a3#", "10 #champseal#" };
- { 6, 45183, "", "=q3=Treads of the Glorious Spirit", "=ds=#s12#, #a3#", "10 #champseal#" };
- { 7, 45182, "", "=q3=Gauntlets of Shattered Pride", "=ds=#s9#, #a4#", "10 #champseal#" };
- { 8, 45160, "", "=q3=Girdle of Valorous Defeat", "=ds=#s10#, #a4#", "10 #champseal#" };
- { 9, 45163, "", "=q3=Stanchions of Unseatable Furor", "=ds=#s12#, #a4#", "10 #champseal#" };
- { 10, 45153, "", "=q3=Susurrating Shell Necklace", "=ds=#s2#", "10 #champseal#" };
- { 11, 45155, "", "=q3=Choker of Spiral Focus", "=ds=#s2#", "10 #champseal#" };
- { 12, 45154, "", "=q3=Necklace of Valiant Blood", "=ds=#s2#", "10 #champseal#" };
- { 13, 45152, "", "=q3=Pendant of Azure Dreams", "=ds=#s2#", "10 #champseal#" };
- { 14, 45131, "", "=q3=Jouster's Fury", "=ds=#s14#", "10 #champseal#" };
- { 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#"};
- { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", ""};
- { 17, 45209, "", "=q3=Sash of Trumpted Pride", "=ds=#s10#, #a1#", "10 #champseal#" };
- { 18, 45211, "", "=q3=Waistguard of Equine Fury", "=ds=#s10#, #a2#", "10 #champseal#" };
- { 19, 45220, "", "=q3=Treads of the Earnest Squire", "=ds=#s12#, #a2#", "10 #champseal#" };
- { 20, 45215, "", "=q3=Links of Unquenched Savagery", "=ds=#s10#, #a3#", "10 #champseal#" };
- { 21, 45221, "", "=q3=Treads of Whispering Dreams", "=ds=#s12#, #a3#", "10 #champseal#" };
- { 22, 45216, "", "=q3=Gauntlets of Mending Touch", "=ds=#s9#, #a4#", "10 #champseal#" };
- { 23, 45217, "", "=q3=Clinch of Savage Fury", "=ds=#s10#, #a4#", "10 #champseal#" };
- { 24, 45218, "", "=q3=Blood-Caked Stompers", "=ds=#s12#, #a4#", "10 #champseal#" };
- { 25, 45206, "", "=q3=Choker of Feral Fury", "=ds=#s2#", "10 #champseal#" };
- { 26, 45207, "", "=q3=Necklace of Stolen Skulls", "=ds=#s2#", "10 #champseal#" };
- { 27, 45213, "", "=q3=Pendant of Emerald Crusader", "=ds=#s2#", "10 #champseal#" };
- { 28, 45223, "", "=q3=Razor's Edge Pendant", "=ds=#s2#", "10 #champseal#" };
- { 29, 45219, "", "=q3=Jouster's Fury", "=ds=#s14#", "10 #champseal#" };
- };
- {
- Name = AL["Weapons"];
- { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", ""};
- { 2, 45078, "", "=q4=Dagger of Lunar Purity", "=ds=#h3#, #w4#", "25 #champseal#" };
- { 3, 45077, "", "=q4=Dagger of the Rising Moon", "=ds=#h1#, #w4#", "25 #champseal#" };
- { 4, 45129, "", "=q4=Gnomeregan Bonechopper", "=ds=#h3#, #w10#", "25 #champseal#" };
- { 5, 45074, "", "=q4=Claymore of the Prophet", "=ds=#h2#, #w10#", "25 #champseal#" };
- { 6, 45076, "", "=q4=Teldrassil Protector", "=ds=#h1#, #w1#", "25 #champseal#" };
- { 7, 45075, "", "=q4=Ironforge Smasher", "=ds=#h1#, #w6#", "25 #champseal#" };
- { 8, 45128, "", "=q4=Silvery Sylvan Stave", "=ds=#w9#", "25 #champseal#" };
- { 9, 45130, "", "=q4=Blunderbuss of Khaz Modan", "=ds=#w5#", "25 #champseal#" };
- { 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#"};
- { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", ""};
- { 17, 45214, "", "=q4=Scalpel of the Royal Apothecary", "=ds=#h3#, #w4#", "25 #champseal#" };
- { 18, 45222, "", "=q4=Spinal Destroyer", "=ds=#h1#, #w4#", "25 #champseal#" };
- { 19, 45208, "", "=q4=Blade of the Keening Banshee", "=ds=#h3#, #w10#", "25 #champseal#" };
- { 20, 45205, "", "=q4=Greatsword of the Sin'dorei", "=ds=#h2#, #w10#", "25 #champseal#" };
- { 21, 45204, "", "=q4=Axe of the Sen'jin Protector", "=ds=#h1#, #w1#", "25 #champseal#" };
- { 22, 45203, "", "=q4=Grimhorn Crusher", "=ds=#h1#, #w6#", "25 #champseal#" };
- { 23, 45212, "", "=q4=Staff of Feral Furies", "=ds=#w9#", "25 #champseal#" };
- { 24, 45210, "", "=q4=Sen'jin Beakblade Longrifle", "=ds=#w5#", "25 #champseal#" };
- };
- {
- Name = AL["Vanity Pets"];
- { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", ""};
- { 2, 44998, "", "=q3=Argent Squire", "=ds=#m4#"};
- { 4, 44984, "", "=q3=Ammen Vale Lashling", "=ds=#e13#", "40 #champseal#"};
- { 5, 44965, "", "=q3=Teldrassil Sproutling", "=ds=#e13#", "40 #champseal#"};
- { 6, 44970, "", "=q3=Dun Morogh Cub", "=ds=#e13#", "40 #champseal#"};
- { 7, 44974, "", "=q3=Elwynn Lamb", "=ds=#e13#", "40 #champseal#"};
- { 8, 45002, "", "=q3=Mechanopeep", "=ds=#e13#", "40 #champseal#"};
- { 9, 46820, "", "=q3=Shimmering Wyrmling", "=ds=#e13#", "40 #champseal#"};
- { 11, 0, "INV_Jewelry_Talisman_08", "=q6="..BabbleFaction["Argent Crusade"], "" };
- { 12, 47541, "", "=q3=Argent Pony Bridle", "=ds=", "150 #champseal#"};
- { 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#"};
- { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", ""};
- { 17, 45022, "", "=q3=Argent Gruntling", "=ds=#m4#"};
- { 19, 44980, "", "=q3=Mulgore Hatchling", "=ds=#e13#", "40 #champseal#"};
- { 20, 45606, "", "=q3=Sen'jin Fetish", "=ds=#e13#", "40 #champseal#"};
- { 21, 44971, "", "=q3=Tirisfal Batling", "=ds=#e13#", "40 #champseal#"};
- { 22, 44973, "", "=q3=Durotar Scorpion", "=ds=#e13#", "40 #champseal#"};
- { 23, 44982, "", "=q3=Enchanted Broom", "=ds=#e13#", "40 #champseal#"};
- { 24, 46821, "", "=q3=Shimmering Wyrmling", "=ds=#e13#", "40 #champseal#"};
- };
- {
- Name = AL["Mounts"];
- { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", ""};
- { 2, 45591, "", "=q4=Darnassian Nightsaber", "=ds=#e12#", "100 #champseal#"};
- { 3, 45590, "", "=q4=Exodar Elekk", "=ds=#e12#", "100 #champseal#"};
- { 4, 45589, "", "=q4=Gnomeregan Mechanostrider", "=ds=#e12#", "100 #champseal#"};
- { 5, 45586, "", "=q4=Ironforge Ram", "=ds=#e12#", "100 #champseal#"};
- { 6, 45125, "", "=q4=Stormwind Steed", "=ds=#e12#", "100 #champseal#"};
- { 8, 46745, "", "=q4=Great Red Elekk", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 9, 46752, "", "=q4=Swift Gray Steed", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 10, 46744, "", "=q4=Swift Moonsaber", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 11, 46748, "", "=q4=Swift Violet Ram", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 12, 46747, "", "=q4=Turbostrider", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#"};
- { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", ""};
- { 17, 45593, "", "=q4=Darkspear Raptor", "=ds=#e12#", "100 #champseal#"};
- { 18, 45597, "", "=q4=Forsaken Warhorse", "=ds=#e12#", "100 #champseal#"};
- { 19, 45595, "", "=q4=Orgrimmar Wolf", "=ds=#e12#", "100 #champseal#"};
- { 20, 45596, "", "=q4=Silvermoon Hawkstrider", "=ds=#e12#", "100 #champseal#"};
- { 21, 45592, "", "=q4=Thunder Bluff Kodo", "=ds=#e12#", "100 #champseal#"};
- { 23, 46750, "", "=q4=Great Golden Kodo", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 24, 46749, "", "=q4=Swift Burgundy Wolf", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 25, 46743, "", "=q4=Swift Purple Raptor", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 26, 46751, "", "=q4=Swift Red Hawkstrider", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 27, 46746, "", "=q4=White Skeletal Warhorse", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- };
- {
- Name = AL["Mounts"];
- { 1, 0, "inv_misc_tabardpvp_01", "=q6="..BabbleFaction["The Silver Covenant"], "=ec1=#m7#"};
- { 2, 46815, "", "=q4=Quel'dorei Steed", "=ds=#e12#", "100 #champseal#"};
- { 3, 46813, "", "=q4=Silver Covenant Hippogryph", "=ds=#e12#", "150 #champseal#"};
- { 5, 0, "INV_Jewelry_Talisman_08", "=q6="..BabbleFaction["Argent Crusade"], "" };
- { 6, 47179, "", "=q4=Argent Charger", "=ds=#e12#", "100 #champseal#"};
- { 7, 47180, "", "=q4=Argent Warhorse", "=ds=#e12#", "100 #champseal#"};
- { 8, 45725, "", "=q4=Argent Hippogryph", "=ds=#e12#", "150 #champseal#"};
- { 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#"};
- { 16, 0, "inv_misc_tabardpvp_02", "=q6="..BabbleFaction["The Sunreavers"], "=ec1=#m6#"};
- { 17, 46816, "", "=q4=Sunreaver Hawkstrider", "=ds=#e12#", "100 #champseal#"};
- { 18, 46814, "", "=q4=Sunreaver Dragonhawk", "=ds=#e12#", "150 #champseal#"};
- };
- {
- Name = AL["Heirloom"];
- { 1, 42985, "", "=q7=Tattered Dreadmist Mantle", "=ds=#s3#, #a1#", "60 #champseal#"};
- { 2, 42984, "", "=q7=Preened Ironfeather Shoulders", "=ds=#s3#, #a2#", "60 #champseal#"};
- { 3, 42952, "", "=q7=Stained Shadowcraft Spaulders", "=ds=#s3#, #a2#", "60 #champseal#"};
- { 4, 42950, "", "=q7=Champion Herod's Shoulder", "=ds=#s3#, #a3#", "60 #champseal#"};
- { 5, 42951, "", "=q7=Mystical Pauldrons of Elements", "=ds=#s3#, #a3#", "60 #champseal#"};
- { 6, 42949, "", "=q7=Polished Spaulders of Valor", "=ds=#s3#, #a4#", "60 #champseal#"};
- { 8, 42992, "", "=q7=Discerning Eye of the Beast", "=ds=#s14#", "75 #champseal#"};
- { 9, 42991, "", "=q7=Swift Hand of Justice", "=ds=#s14#", "75 #champseal#"};
- { 11, 44990, "", "=q2=Champion's Seal", "=ds=#m17#"};
- { 16, 48691, "", "=q7=Tattered Dreadmist Robe", "=ds=#s5#, #a1#", "60 #champseal#"};
- { 17, 48687, "", "=q7=Preened Ironfeather Breastplate", "=ds=#s5#, #a2#", "60 #champseal#"};
- { 18, 48689, "", "=q7=Stained Shadowcraft Tunic", "=ds=#s5#, #a2#", "60 #champseal#"};
- { 19, 48677, "", "=q7=Champion's Deathdealer Breastplate", "=ds=#s5#, #a3#", "60 #champseal#"};
- { 20, 48683, "", "=q7=Mystical Vest of Elements", "=ds=#s5#, #a3#", "60 #champseal#"};
- { 21, 48685, "", "=q7=Polished Breastplate of Valor", "=ds=#s5#, #a4#", "60 #champseal#"};
- { 23, 42944, "", "=q7=Balanced Heartseeker", "=ds=#h1#, #w4#", "60 #champseal#"};
- { 24, 42945, "", "=q7=Venerable Dal'Rend's Sacred Charge", "=ds=#h3#, #w10#", "60 #champseal#"};
- { 25, 42943, "", "=q7=Bloodied Arcanite Reaper", "=ds=#h2#, #w1#", "95 #champseal#"};
- { 26, 42948, "", "=q7=Devout Aurastone Hammer", "=ds=#h3#, #w6#", "75 #champseal#"};
- { 27, 48716, "", "=q7=Venerable Mass of McGowan", "=ds=#h1#, #w6#", "75 #champseal#"};
- { 28, 48718, "", "=q7=Repurposed Lava Dredger", "=ds=#h2#, #w6#", "95 #champseal#"};
- { 29, 42947, "", "=q7=Dignified Headmaster's Charge", "=ds=#w9#", "95 #champseal#"};
- { 30, 42946, "", "=q7=Charmed Ancient Bone Bow", "=ds=#w2#", "95 #champseal#"};
- };
+AtlasLoot_Data["ArgentTournament"] = {
+ Name = AL["Argent Tournament"];
+ {
+ Name = BabbleInventory["Miscellaneous"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "" };
+ { 2, 45714, "", "=q2=Darnassus Commendation Badge", "=ds=", "1 #champwrit#" };
+ { 3, 45715, "", "=q2=Exodar Commendation Badge", "=ds=", "1 #champwrit#" };
+ { 4, 45716, "", "=q2=Gnomeregan Commendation Badge", "=ds=", "1 #champwrit#" };
+ { 5, 45717, "", "=q2=Ironforge Commendation Badge", "=ds=", "1 #champwrit#" };
+ { 6, 45718, "", "=q2=Stormwind Commendation Badge", "=ds=", "1 #champwrit#" };
+ { 15, 46114, "", "=q2=Champion's Writ", "=ds=#m17#" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", "" };
+ { 17, 45719, "", "=q2=Orgrimmar Commendation Badge", "=ds=", "1 #champwrit#" };
+ { 18, 45723, "", "=q2=Undercity Commendation Badge", "=ds=", "1 #champwrit#" };
+ { 19, 45722, "", "=q2=Thunder Bluff Commendation Badge", "=ds=", "1 #champwrit#" };
+ { 20, 45720, "", "=q2=Sen'jin Commendation Badge", "=ds=", "1 #champwrit#" };
+ { 21, 45721, "", "=q2=Silvermoon Commendation Badge", "=ds=", "1 #champwrit#" };
};
-
- -----------------------
- --- Seasonal Events ---
- -----------------------
-
- ----------------
- --- Brewfest ---
- ----------------
-
- local brewfest = {};
- brewfest.a = {
- Name = AL["Brewfest"].." 1";
- { 1, 33047, "", "=q1=Belbi's Eyesight Enhancing Romance Goggles", "=ds=#s1#, 100 #brewfest#"};
- { 2, 34008, "", "=q1=Blix's Eyesight Enhancing Romance Goggles", "=ds=#s1#, 100 #brewfest#"};
- { 3, 33968, "", "=q1=Blue Brewfest Hat", "=ds=#s1#, 50 #brewfest#"};
- { 4, 33864, "", "=q1=Brown Brewfest Hat", "=ds=#s1#, 50 #brewfest#"};
- { 5, 33967, "", "=q1=Green Brewfest Hat", "=ds=#s1#, 50 #brewfest#"};
- { 6, 33969, "", "=q1=Purple Brewfest Hat", "=ds=#s1#, 50 #brewfest#"};
- { 7, 33863, "", "=q1=Brewfest Dress", "=ds=#s5#, 200 #brewfest#"};
- { 8, 33862, "", "=q1=Brewfest Regalia", "=ds=#s5#, 200 #brewfest#"};
- { 9, 33868, "", "=q1=Brewfest Boots", "=ds=#s12#, 100 #brewfest#"};
- { 10, 33966, "", "=q1=Brewfest Slippers", "=ds=#s12#, 100 #brewfest#"};
- { 16, 33927, "", "=q3=Brewfest Pony Keg", "=ds=#m20#, 100 #brewfest#"};
- { 17, 46707, "", "=q3=Pint-Sized Pink Pachyderm", "=ds=#e13#, 100 #brewfest#"};
- { 18, 32233, "", "=q3=Wolpertinger's Tankard", "=ds=#e13#, 40 #silver#"};
- { 19, 37599, "", "=q1=\"Brew of the Month\" Club Membership Form", "=ds=#m2#, 200 #brewfest#"};
- { 21, 37816, "", "=q2=Preserved Brewfest Hops", "=ds=#m20#, 20 #brewfest#"};
- { 22, 37750, "", "=q1=Fresh Brewfest Hops", "=ds=#m20#, 2 #brewfest#"};
- { 23, 39477, "", "=q1=Fresh Dwarven Brewfest Hops", "=ec1=#m6# =ds=#m20#, 5 #brewfest#"};
- { 24, 39476, "", "=q1=Fresh Goblin Brewfest Hops", "=ec1=#m7# =ds=#m20#, 5 #brewfest#"};
- { 27, 37829, "", "=q2=Brewfest Prize Token", "=ds=#m17#"};
- };
-
- brewfest.b = {
- Name = AL["Brewfest"].." 2";
- { 1, 37892, "", "=q3=Green Brewfest Stein", "=ec1=2009 =q1=#m34#: =ds=#h1#"};
- { 2, 33016, "", "=q3=Blue Brewfest Stein", "=ec1=2008 =q1=#m34#: =ds=#h1#"};
- { 3, 32912, "", "=q3=Yellow Brewfest Stein", "=ec1=2007 =q1=#m34#: =ds=#h3#"};
- { 4, 34140, "", "=q3=Dark Iron Tankard", "=ec1=2007 =q1=#m34#: =ds=#s15#"};
- { 6, 33976, "", "=q3=Brewfest Ram", "=ec1=2007 =q1=#m34#: =ds=#e12#"};
- { 16, 33929, "", "=q1=Brewfest Brew", "=ds=#e4#"};
- { 17, 34063, "", "=q1=Dried Sausage", "=ds=#e3#"};
- { 18, 33024, "", "=q1=Pickled Sausage", "=ds=#e3#"};
- { 19, 38428, "", "=q1=Rock-Salted Pretzel", "=ds=#e3#"};
- { 20, 33023, "", "=q1=Savory Sausage", "=ds=#e3#"};
- { 21, 34065, "", "=q1=Spiced Onion Cheese", "=ds=#e3#"};
- { 22, 33025, "", "=q1=Spicy Smoked Sausage", "=ds=#e3#"};
- { 23, 34064, "", "=q1=Succulent Sausage", "=ds=#e3#"};
- { 24, 33043, "", "=q1=The Essential Brewfest Pretzel", "=ds=#e3#"};
- { 25, 33026, "", "=q1=The Golden Link", "=ds=#e3#"};
- };
-
- brewfest.c = {
- Name = AL["Brewfest"].." 3";
- { 1, 0, "INV_Cask_04", "=q6=#n131#", ""};
- { 2, 33030, "", "=q1=Barleybrew Clear", "=ds=#e4#"};
- { 3, 33028, "", "=q1=Barleybrew Light", "=ds=#e4#"};
- { 4, 33029, "", "=q1=Barleybrew Dark", "=ds=#e4#"};
- { 6, 0, "INV_Cask_04", "=q6=#n132#", ""};
- { 7, 33031, "", "=q1=Thunder 45", "=ds=#e4#"};
- { 8, 33032, "", "=q1=Thunderbrew Ale", "=ds=#e4#"};
- { 9, 33033, "", "=q1=Thunderbrew Stout", "=ds=#e4#"};
- { 11, 0, "INV_Cask_04", "=q6=#n133#", ""};
- { 12, 33034, "", "=q1=Gordok Grog", "=ds=#e4#"};
- { 13, 33036, "", "=q1=Mudder's Milk", "=ds=#e4#"};
- { 14, 33035, "", "=q1=Ogre Mead", "=ds=#e4#"};
- { 16, 0, "INV_Cask_04", "=q6=#n134#", ""};
- { 17, 34017, "", "=q1=Small Step Brew", "=ds=#e4#"};
- { 18, 34018, "", "=q1=Long Stride Brew", "=ds=#e4#"};
- { 19, 34019, "", "=q1=Path of Brew", "=ds=#e4#"};
- { 21, 0, "INV_Cask_04", "=q6=#n135#", ""};
- { 22, 34020, "", "=q1=Jungle River Water", "=ds=#e4#"};
- { 23, 34021, "", "=q1=Brewdoo Magic", "=ds=#e4#"};
- { 24, 34022, "", "=q1=Stout Shrunken Head", "=ds=#e4#"};
- };
-
- brewfest.d = {
- Name = AL["Brew of the Month Club"];
- { 1, 37488, "", "=q1=Wild Winter Pilsner", "=ds=#month1#"};
- { 2, 37489, "", "=q1=Izzard's Ever Flavor", "=ds=#month2#"};
- { 3, 37490, "", "=q1=Aromatic Honey Brew", "=ds=#month3#"};
- { 4, 37491, "", "=q1=Metok's Bubble Bock", "=ds=#month4#"};
- { 5, 37492, "", "=q1=Springtime Stout", "=ds=#month5#"};
- { 6, 37493, "", "=q1=Blackrock Lager", "=ds=#month6#"};
- { 16, 37494, "", "=q1=Stranglethorn Brew", "=ds=#month7#"};
- { 17, 37495, "", "=q1=Draenic Pale Ale", "=ds=#month8#"};
- { 18, 37496, "", "=q1=Binary Brew", "=ds=#month9#"};
- { 19, 37497, "", "=q1=Autumnal Acorn Ale", "=ds=#month10#"};
- { 20, 37498, "", "=q1=Bartlett's Bitter Brew", "=ds=#month11#"};
- { 21, 37499, "", "=q1=Lord of Frost's Private Label", "=ds=#month12#"};
- };
-
- brewfest.corenCLASSIC = {
- Name = AL["Coren Direbrew"];
- { 1, 2037128, "", "=q4=Balebrew Charm", "=ds=#s14#" };
- { 2, 2037127, "", "=q4=Brightbrew Charm", "=ds=#s14#" };
- { 3, 2038289, "", "=q4=Coren's Lucky Coin", "=ds=#s14#" };
- { 4, 2038290, "", "=q4=Dark Iron Smoking Pipe", "=ds=#s14#" };
- { 5, 2038288, "", "=q4=Direbrew Hops", "=ds=#s14#" };
- { 6, 2038287, "", "=q4=Empty Mug Of Direbrew", "=ds=#s14#" };
- { 7, 2037597, "", "=q4=Direbrew's Shanker", "=ds=#h1#, #w4#" };
- { 16, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#" };
- { 17, 34140, "", "=q3=Dark Iron Tankard", "=q1=#m4#: =ds=#s15#" };
- { 19, 37828, "", "=q4=Great Brewfest Kodo", "=ds=#e12#"};
- { 20, 33977, "", "=q4=Swift Brewfest Ram", "=ds=#e12#"};
- { 21, 37863, "", "=q3=Direbrew's Remote", "=ds="};
- { 22, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#"};
- };
-
- brewfest.corenTBC = {
- Name = AL["Coren Direbrew"];
- { 1, 37128, "", "=q4=Balebrew Charm", "=ds=#s14#" };
- { 2, 37127, "", "=q4=Brightbrew Charm", "=ds=#s14#" };
- { 3, 38289, "", "=q4=Coren's Lucky Coin", "=ds=#s14#" };
- { 4, 38290, "", "=q4=Dark Iron Smoking Pipe", "=ds=#s14#" };
- { 5, 38288, "", "=q4=Direbrew Hops", "=ds=#s14#" };
- { 6, 38287, "", "=q4=Empty Mug Of Direbrew", "=ds=#s14#" };
- { 7, 37597, "", "=q4=Direbrew's Shanker", "=ds=#h1#, #w4#" };
- { 16, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#" };
- { 17, 34140, "", "=q3=Dark Iron Tankard", "=q1=#m4#: =ds=#s15#" };
- { 19, 37828, "", "=q4=Great Brewfest Kodo", "=ds=#e12#"};
- { 20, 33977, "", "=q4=Swift Brewfest Ram", "=ds=#e12#"};
- { 21, 37863, "", "=q3=Direbrew's Remote", "=ds="};
- { 22, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#"};
- };
-
- brewfest.corenWRATH = {
- Name = AL["Coren Direbrew"];
- { 1, 49078, "", "=q4=Ancient Pickled Egg", "=ds=#s14#"};
- { 2, 49118, "", "=q4=Bubbling Balebrew Charm", "=ds=#s14#"};
- { 3, 49116, "", "=q4=Bitter Brightbrew Charm", "=ds=#s14#"};
- { 4, 49080, "", "=q4=Brawler's Souvenir", "=ds=#s14#"};
- { 5, 49074, "", "=q4=Coren's Chromium Coaster", "=ds=#s14#"};
- { 6, 49076, "", "=q4=Mithril Pocketwatch", "=ds=#s14#"};
- { 7, 49120, "", "=q4=Direbrew's Shanker 2.0", "=ds=#h1#, #w4#"};
- { 8, 48663, "", "=q4=Tankard O' Terror", "=ds=#h1#, #w6#"};
- { 16, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#" };
- { 17, 34140, "", "=q3=Dark Iron Tankard", "=q1=#m4#: =ds=#s15#" };
- { 19, 37828, "", "=q4=Great Brewfest Kodo", "=ds=#e12#"};
- { 20, 33977, "", "=q4=Swift Brewfest Ram", "=ds=#e12#"};
- { 21, 37863, "", "=q3=Direbrew's Remote", "=ds="};
- { 22, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#"};
- };
-
- AtlasLoot_Data["BrewfestCLASSIC"] = {
- Name = AL["Brewfest"];
- brewfest.a;
- brewfest.b;
- brewfest.c;
- brewfest.d;
- brewfest.corenCLASSIC;
+ {
+ Name = AL["Tabards"] .. " / " .. AL["Banner"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "" };
+ { 2, 45021, "", "=q1=Darnassus Banner", "=ds=#e14#", "15 #champseal#" };
+ { 3, 45020, "", "=q1=Exodar Banner", "=ds=#e14#", "15 #champseal#" };
+ { 4, 45019, "", "=q1=Gnomeregan Banner", "=ds=#e14#", "15 #champseal#" };
+ { 5, 45018, "", "=q1=Ironforge Banner", "=ds=#e14#", "15 #champseal#" };
+ { 6, 45011, "", "=q1=Stormwind Banner", "=ds=#e14#", "15 #champseal#" };
+ { 7, 45579, "", "=q1=Darnassus Tabard", "=ds=#s7#", "50 #champseal#" };
+ { 8, 45580, "", "=q1=Exodar Tabard", "=ds=#s7#", "50 #champseal#" };
+ { 9, 45578, "", "=q1=Gnomeregan Tabard", "=ds=#s7#", "50 #champseal#" };
+ { 10, 45577, "", "=q1=Ironforge Tabard", "=ds=#s7#", "50 #champseal#" };
+ { 11, 45574, "", "=q1=Stormwind Tabard", "=ds=#s7#", "50 #champseal#" };
+ { 12, 46817, "", "=q1=Silver Covenant Tabard", "=ds=#s7#", "50 #champseal#" };
+ { 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", "" };
+ { 17, 45014, "", "=q1=Orgrimmar Banner", "=ds=#e14#", "15 #champseal#" };
+ { 18, 45016, "", "=q1=Undercity Banner", "=ds=#e14#", "15 #champseal#" };
+ { 19, 45013, "", "=q1=Thunder Bluff Banner", "=ds=#e14#", "15 #champseal#" };
+ { 20, 45015, "", "=q1=Sen'jin Banner", "=ds=#e14#", "15 #champseal#" };
+ { 21, 45017, "", "=q1=Silvermoon City Banner", "=ds=#e14#", "15 #champseal#" };
+ { 22, 45581, "", "=q1=Orgrimmar Tabard", "=ds=#s7#", "50 #champseal#" };
+ { 23, 45583, "", "=q1=Undercity Tabard", "=ds=#s7#", "50 #champseal#" };
+ { 24, 45584, "", "=q1=Thunder Bluff Tabard", "=ds=#s7#", "50 #champseal#" };
+ { 25, 45582, "", "=q1=Sen'jin Tabard", "=ds=#s7#", "50 #champseal#" };
+ { 26, 45585, "", "=q1=Silvermoon City Tabard", "=ds=#s7#", "50 #champseal#" };
+ { 27, 46818, "", "=q1=Sunreaver Tabard", "=ds=#s7#", "50 #champseal#" };
+ { 28, 0, "INV_Jewelry_Talisman_08", "=q6=" .. BabbleFaction["Argent Crusade"], "" };
+ { 29, 46843, "", "=q1=Argent Crusade Banner", "=ds=#e14#", "15 #champseal#" };
+ { 30, 46874, "", "=q2=Argent Crusader's Tabard", "=ds=#s7#", "50 #champseal#" };
};
-
- AtlasLoot_Data["BrewfestTBC"] = {
- Name = AL["Brewfest"];
- brewfest.a;
- brewfest.b;
- brewfest.c;
- brewfest.d;
- brewfest.corenTBC;
+ {
+ Name = BabbleInventory["Armor"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "" };
+ { 2, 45156, "", "=q3=Sash of Shattering Hearts", "=ds=#s10#, #a1#", "10 #champseal#" };
+ { 3, 45181, "", "=q3=Wrap of the Everliving Tree", "=ds=#s10#, #a2#", "10 #champseal#" };
+ { 4, 45159, "", "=q3=Treads of Nimble Evasion", "=ds=#s12#, #a2#", "10 #champseal#" };
+ { 5, 45184, "", "=q3=Cinch of Bonded Servitude", "=ds=#s10#, #a3#", "10 #champseal#" };
+ { 6, 45183, "", "=q3=Treads of the Glorious Spirit", "=ds=#s12#, #a3#", "10 #champseal#" };
+ { 7, 45182, "", "=q3=Gauntlets of Shattered Pride", "=ds=#s9#, #a4#", "10 #champseal#" };
+ { 8, 45160, "", "=q3=Girdle of Valorous Defeat", "=ds=#s10#, #a4#", "10 #champseal#" };
+ { 9, 45163, "", "=q3=Stanchions of Unseatable Furor", "=ds=#s12#, #a4#", "10 #champseal#" };
+ { 10, 45153, "", "=q3=Susurrating Shell Necklace", "=ds=#s2#", "10 #champseal#" };
+ { 11, 45155, "", "=q3=Choker of Spiral Focus", "=ds=#s2#", "10 #champseal#" };
+ { 12, 45154, "", "=q3=Necklace of Valiant Blood", "=ds=#s2#", "10 #champseal#" };
+ { 13, 45152, "", "=q3=Pendant of Azure Dreams", "=ds=#s2#", "10 #champseal#" };
+ { 14, 45131, "", "=q3=Jouster's Fury", "=ds=#s14#", "10 #champseal#" };
+ { 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", "" };
+ { 17, 45209, "", "=q3=Sash of Trumpted Pride", "=ds=#s10#, #a1#", "10 #champseal#" };
+ { 18, 45211, "", "=q3=Waistguard of Equine Fury", "=ds=#s10#, #a2#", "10 #champseal#" };
+ { 19, 45220, "", "=q3=Treads of the Earnest Squire", "=ds=#s12#, #a2#", "10 #champseal#" };
+ { 20, 45215, "", "=q3=Links of Unquenched Savagery", "=ds=#s10#, #a3#", "10 #champseal#" };
+ { 21, 45221, "", "=q3=Treads of Whispering Dreams", "=ds=#s12#, #a3#", "10 #champseal#" };
+ { 22, 45216, "", "=q3=Gauntlets of Mending Touch", "=ds=#s9#, #a4#", "10 #champseal#" };
+ { 23, 45217, "", "=q3=Clinch of Savage Fury", "=ds=#s10#, #a4#", "10 #champseal#" };
+ { 24, 45218, "", "=q3=Blood-Caked Stompers", "=ds=#s12#, #a4#", "10 #champseal#" };
+ { 25, 45206, "", "=q3=Choker of Feral Fury", "=ds=#s2#", "10 #champseal#" };
+ { 26, 45207, "", "=q3=Necklace of Stolen Skulls", "=ds=#s2#", "10 #champseal#" };
+ { 27, 45213, "", "=q3=Pendant of Emerald Crusader", "=ds=#s2#", "10 #champseal#" };
+ { 28, 45223, "", "=q3=Razor's Edge Pendant", "=ds=#s2#", "10 #champseal#" };
+ { 29, 45219, "", "=q3=Jouster's Fury", "=ds=#s14#", "10 #champseal#" };
};
-
- AtlasLoot_Data["BrewfestWRATH"] = {
- Name = AL["Brewfest"];
- brewfest.a;
- brewfest.b;
- brewfest.c;
- brewfest.d;
- brewfest.corenWRATH;
+ {
+ Name = AL["Weapons"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "" };
+ { 2, 45078, "", "=q4=Dagger of Lunar Purity", "=ds=#h3#, #w4#", "25 #champseal#" };
+ { 3, 45077, "", "=q4=Dagger of the Rising Moon", "=ds=#h1#, #w4#", "25 #champseal#" };
+ { 4, 45129, "", "=q4=Gnomeregan Bonechopper", "=ds=#h3#, #w10#", "25 #champseal#" };
+ { 5, 45074, "", "=q4=Claymore of the Prophet", "=ds=#h2#, #w10#", "25 #champseal#" };
+ { 6, 45076, "", "=q4=Teldrassil Protector", "=ds=#h1#, #w1#", "25 #champseal#" };
+ { 7, 45075, "", "=q4=Ironforge Smasher", "=ds=#h1#, #w6#", "25 #champseal#" };
+ { 8, 45128, "", "=q4=Silvery Sylvan Stave", "=ds=#w9#", "25 #champseal#" };
+ { 9, 45130, "", "=q4=Blunderbuss of Khaz Modan", "=ds=#w5#", "25 #champseal#" };
+ { 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", "" };
+ { 17, 45214, "", "=q4=Scalpel of the Royal Apothecary", "=ds=#h3#, #w4#", "25 #champseal#" };
+ { 18, 45222, "", "=q4=Spinal Destroyer", "=ds=#h1#, #w4#", "25 #champseal#" };
+ { 19, 45208, "", "=q4=Blade of the Keening Banshee", "=ds=#h3#, #w10#", "25 #champseal#" };
+ { 20, 45205, "", "=q4=Greatsword of the Sin'dorei", "=ds=#h2#, #w10#", "25 #champseal#" };
+ { 21, 45204, "", "=q4=Axe of the Sen'jin Protector", "=ds=#h1#, #w1#", "25 #champseal#" };
+ { 22, 45203, "", "=q4=Grimhorn Crusher", "=ds=#h1#, #w6#", "25 #champseal#" };
+ { 23, 45212, "", "=q4=Staff of Feral Furies", "=ds=#w9#", "25 #champseal#" };
+ { 24, 45210, "", "=q4=Sen'jin Beakblade Longrifle", "=ds=#w5#", "25 #champseal#" };
};
-
- -----------------------
- --- Children's Week ---
- -----------------------
-
- AtlasLoot_Data["ChildrensWeek"] = {
- Name = AL["Children's Week"];
- {
- Name = AL["Children's Week"];
- { 1, 0, "INV_Box_01", "=q6=#z24#", ""};
- { 2, 23007, "", "=q1=Piglet's Collar", "=ds=#e13#"};
- { 3, 23015, "", "=q1=Rat Cage", "=ds=#e13#"};
- { 4, 23002, "", "=q1=Turtle Box", "=ds=#e13#"};
- { 5, 23022, "", "=q1=Curmudgeon's Payoff", "=ds="};
- { 7, 0, "INV_Box_01", "=q6=#z25#", ""};
- { 8, 32616, "", "=q3=Egbert's Egg", "=ds=#e13#"};
- { 9, 32622, "", "=q3=Elekk Training Collar", "=ds=#e13#"};
- { 10, 32617, "", "=q3=Sleepy Willy", "=ds=#e13#"};
- { 16, 0, "INV_Box_01", "=q6=#z40#", ""};
- { 17, 46545, "", "=q3=Curious Oracle Hatchling", "=ds=#e13#"};
- { 18, 46544, "", "=q3=Curious Wolvar Pup", "=ds=#e13#"};
- };
+ {
+ Name = AL["Vanity Pets"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "" };
+ { 2, 44998, "", "=q3=Argent Squire", "=ds=#m4#" };
+ { 4, 44984, "", "=q3=Ammen Vale Lashling", "=ds=#e13#", "40 #champseal#" };
+ { 5, 44965, "", "=q3=Teldrassil Sproutling", "=ds=#e13#", "40 #champseal#" };
+ { 6, 44970, "", "=q3=Dun Morogh Cub", "=ds=#e13#", "40 #champseal#" };
+ { 7, 44974, "", "=q3=Elwynn Lamb", "=ds=#e13#", "40 #champseal#" };
+ { 8, 45002, "", "=q3=Mechanopeep", "=ds=#e13#", "40 #champseal#" };
+ { 9, 46820, "", "=q3=Shimmering Wyrmling", "=ds=#e13#", "40 #champseal#" };
+ { 11, 0, "INV_Jewelry_Talisman_08", "=q6=" .. BabbleFaction["Argent Crusade"], "" };
+ { 12, 47541, "", "=q3=Argent Pony Bridle", "=ds=", "150 #champseal#" };
+ { 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", "" };
+ { 17, 45022, "", "=q3=Argent Gruntling", "=ds=#m4#" };
+ { 19, 44980, "", "=q3=Mulgore Hatchling", "=ds=#e13#", "40 #champseal#" };
+ { 20, 45606, "", "=q3=Sen'jin Fetish", "=ds=#e13#", "40 #champseal#" };
+ { 21, 44971, "", "=q3=Tirisfal Batling", "=ds=#e13#", "40 #champseal#" };
+ { 22, 44973, "", "=q3=Durotar Scorpion", "=ds=#e13#", "40 #champseal#" };
+ { 23, 44982, "", "=q3=Enchanted Broom", "=ds=#e13#", "40 #champseal#" };
+ { 24, 46821, "", "=q3=Shimmering Wyrmling", "=ds=#e13#", "40 #champseal#" };
};
-
- -----------------------
- --- Day of the Dead ---
- -----------------------
-
- AtlasLoot_Data["DayoftheDead"] = {
- Name = AL["Day of the Dead"];
- {
- Name = AL["Day of the Dead"];
- { 1, 46831, "", "=q1=Macabre Marionette", "=q1=#m4#: =ds=#m20#"};
- { 3, 46860, "", "=q1=Whimsical Skull Mask", "=ds=#s1#, 5 #copper#"};
- { 4, 46861, "", "=q1=Bouquet of Orange Marigolds", "=ds=#s15#, 1 #gold#"};
- { 5, 46690, "", "=q1=Candy Skull", "=ds=#m20#, 5 #copper#"};
- { 6, 46711, "", "=q1=Spirit Candle", "=ds=#m20#, 30 #copper#"};
- { 7, 46718, "", "=q1=Orange Marigold", "=ds=#m20#, 10 #copper#"};
- { 9, 46710, "", "=q1=Recipe: Bread of the Dead", "=ds=#p3# (1), 20 #silver#"};
- { 10, 46691, "", "=q1=Bread of the Dead", "=ds=#e3#"};
- };
+ {
+ Name = AL["Mounts"];
+ { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "" };
+ { 2, 45591, "", "=q4=Darnassian Nightsaber", "=ds=#e12#", "100 #champseal#" };
+ { 3, 45590, "", "=q4=Exodar Elekk", "=ds=#e12#", "100 #champseal#" };
+ { 4, 45589, "", "=q4=Gnomeregan Mechanostrider", "=ds=#e12#", "100 #champseal#" };
+ { 5, 45586, "", "=q4=Ironforge Ram", "=ds=#e12#", "100 #champseal#" };
+ { 6, 45125, "", "=q4=Stormwind Steed", "=ds=#e12#", "100 #champseal#" };
+ { 8, 46745, "", "=q4=Great Red Elekk", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 9, 46752, "", "=q4=Swift Gray Steed", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 10, 46744, "", "=q4=Swift Moonsaber", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 11, 46748, "", "=q4=Swift Violet Ram", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 12, 46747, "", "=q4=Turbostrider", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#" };
+ { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", "" };
+ { 17, 45593, "", "=q4=Darkspear Raptor", "=ds=#e12#", "100 #champseal#" };
+ { 18, 45597, "", "=q4=Forsaken Warhorse", "=ds=#e12#", "100 #champseal#" };
+ { 19, 45595, "", "=q4=Orgrimmar Wolf", "=ds=#e12#", "100 #champseal#" };
+ { 20, 45596, "", "=q4=Silvermoon Hawkstrider", "=ds=#e12#", "100 #champseal#" };
+ { 21, 45592, "", "=q4=Thunder Bluff Kodo", "=ds=#e12#", "100 #champseal#" };
+ { 23, 46750, "", "=q4=Great Golden Kodo", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 24, 46749, "", "=q4=Swift Burgundy Wolf", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 25, 46743, "", "=q4=Swift Purple Raptor", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 26, 46751, "", "=q4=Swift Red Hawkstrider", "=ds=#e12#", "500 #gold# 5 #champseal#" };
+ { 27, 46746, "", "=q4=White Skeletal Warhorse", "=ds=#e12#", "500 #gold# 5 #champseal#" };
};
-
- ----------------------------
- --- Feast of Winter Veil ---
- ----------------------------
-
- AtlasLoot_Data["Winterviel"] = {
- Name = AL["Feast of Winter Veil"];
- {
- Name = AL["Miscellaneous"];
- { 1, 21525, "", "=q2=Green Winter Hat", "=ds=#s1# =q2=#z7#"};
- { 2, 21524, "", "=q2=Red Winter Hat", "=ds=#s1# =q2=#z7#"};
- { 3, 17712, "", "=q1=Winter Veil Disguise Kit", "=q1=#m4#: =ds=#m20#"};
- { 4, 17202, "", "=q1=Snowball", "=ds=#m20#"};
- { 5, 34191, "", "=q1=Handful of Snowflakes", "=ds=#m20#"};
- { 6, 21212, "", "=q1=Fresh Holly", "=ds=#m20#"};
- { 7, 21519, "", "=q1=Mistletoe", "=ds=#m20#"};
- { 9, 0, "INV_Holiday_Christmas_Present_01", "=q6=#n129#", ""};
- { 10, 34262, "", "=q2=Pattern: Winter Boots", "=ds=#p7# (285)"};
- { 11, 34319, "", "=q2=Pattern: Red Winter Clothes", "=ds=#p8# (250)"};
- { 12, 34261, "", "=q2=Pattern: Green Winter Clothes", "=ds=#p8# (250)"};
- { 13, 34413, "", "=q1=Recipe: Hot Apple Cider", "#p3# (325)"};
- { 14, 17201, "", "=q1=Recipe: Egg Nog", "=ds=#p3# (35)"};
- { 15, 17200, "", "=q1=Recipe: Gingerbread Cookie", "=ds=#p3# (1)"};
- { 16, 17344, "", "=q1=Candy Cane", "=ds=#e3#"};
- { 17, 17406, "", "=q1=Holiday Cheesewheel", "=ds=#e3#"};
- { 18, 17407, "", "=q1=Graccu's Homemade Meat Pie", "=ds=#e3#"};
- { 19, 17408, "", "=q1=Spicy Beefstick", "=ds=#e3#"};
- { 20, 34410, "", "=q1=Honeyed Holiday Ham", "=ds=#e3#"};
- { 21, 17404, "", "=q1=Blended Bean Brew", "=ds=#e4#"};
- { 22, 17405, "", "=q1=Green Garden Tea", "=ds=#e4#"};
- { 23, 34412, "", "=q1=Sparkling Apple Cider", "=ds=#e4#"};
- { 24, 17196, "", "=q1=Holiday Spirits", "=ds=#e4#"};
- { 25, 17403, "", "=q1=Steamwheedle Fizzy Spirits", "=ds=#e4#"};
- { 26, 17402, "", "=q1=Greatfather's Winter Ale", "=ds=#e4#"};
- { 27, 17194, "", "=q1=Holiday Spices", "=ds=#e6#"};
- { 28, 17303, "", "=q1=Blue Ribboned Wrapping Paper", "=ds=#e6#"};
- { 29, 17304, "", "=q1=Green Ribboned Wrapping Paper", "=ds=#e6#"};
- { 30, 17307, "", "=q1=Purple Ribboned Wrapping Paper", "=ds=#e6#"};
- };
- {
- Name = "Presents";
- { 1, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x19#", ""};
- { 2, 21301, "", "=q1=Green Helper Box", "=ds=#e13#"};
- { 3, 21308, "", "=q1=Jingling Bell", "=ds=#e13#"};
- { 4, 21305, "", "=q1=Red Helper Box", "=ds=#e13#"};
- { 5, 21309, "", "=q1=Snowman Kit", "=ds=#e13#"};
- { 7, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x20#", ""};
- { 8, 21328, "", "=q1=Wand of Holiday Cheer", "=ds=#m20#"};
- { 10, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x35#", ""};
- { 11, 34425, "", "=q3=Clockwork Rocket Bot", "=ds=#e13#"};
- { 13, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x22#", ""};
- { 14, 21235, "", "=q1=Winter Veil Roast", "=ds=#e3#"};
- { 15, 21241, "", "=q1=Winter Veil Eggnog", "=ds=#e4#"};
- { 16, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x21#", ""};
- { 17, 21325, "", "=q2=Mechanical Greench", "=ds=#e22#"};
- { 18, 21213, "", "=q2=Preserved Holly", "=ds=#m20#"};
- { 19, 17706, "", "=q2=Plans: Edge of Winter", "=ds=#p2# (190)"};
- { 20, 17725, "", "=q2=Formula: Enchant Weapon - Winter's Might", "=ds=#p4# (190)"};
- { 21, 17720, "", "=q2=Schematic: Snowmaster 9000", "=ds=#p5# (190)"};
- { 22, 17722, "", "=q2=Pattern: Gloves of the Greatfather", "=ds=#p7# (190)"};
- { 23, 17709, "", "=q1=Recipe: Elixir of Frost Power", "=ds=#p1# (190)"};
- { 24, 17724, "", "=q1=Pattern: Green Holiday Shirt", "=ds=#p8# (190)"};
- { 26, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x34#", ""};
- { 27, 21254, "", "=q1=Winter Veil Cookie", "=ds=#e3#"};
- { 29, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x36#", ""};
- { 30, 21215, "", "=q1=Graccu's Mince Meat Fruitcake", "=ds=#e3#"};
- };
+ {
+ Name = AL["Mounts"];
+ { 1, 0, "inv_misc_tabardpvp_01", "=q6=" .. BabbleFaction["The Silver Covenant"], "=ec1=#m7#" };
+ { 2, 46815, "", "=q4=Quel'dorei Steed", "=ds=#e12#", "100 #champseal#" };
+ { 3, 46813, "", "=q4=Silver Covenant Hippogryph", "=ds=#e12#", "150 #champseal#" };
+ { 5, 0, "INV_Jewelry_Talisman_08", "=q6=" .. BabbleFaction["Argent Crusade"], "" };
+ { 6, 47179, "", "=q4=Argent Charger", "=ds=#e12#", "100 #champseal#" };
+ { 7, 47180, "", "=q4=Argent Warhorse", "=ds=#e12#", "100 #champseal#" };
+ { 8, 45725, "", "=q4=Argent Hippogryph", "=ds=#e12#", "150 #champseal#" };
+ { 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#" };
+ { 16, 0, "inv_misc_tabardpvp_02", "=q6=" .. BabbleFaction["The Sunreavers"], "=ec1=#m6#" };
+ { 17, 46816, "", "=q4=Sunreaver Hawkstrider", "=ds=#e12#", "100 #champseal#" };
+ { 18, 46814, "", "=q4=Sunreaver Dragonhawk", "=ds=#e12#", "150 #champseal#" };
};
-
- --------------------
- --- Hallow's End ---
- --------------------
- local HorsemanCLASSIC = {
- Name = AL["Headless Horseman"];
- { 1, 2033808, "", "=q4=The Horseman's Helm", "=ds=#s1#, #a4#", "" };
- { 2, 2034075, "", "=q4=Ring of Ghoulish Delight", "=ds=#s13#", "" };
- { 3, 2034073, "", "=q4=The Horseman's Signet Ring", "=ds=#s13#", "" };
- { 4, 2034074, "", "=q4=Witching Band", "=ds=#s13#", "" };
- { 5, 2038175, "", "=q4=The Horseman's Blade", "=ds=#h3#, #w10#" };
- { 16, 34068, "", "=q1=Weighted Jack-o'-Lantern", "=ds=#m20#", "", "100%"};
- { 17, 33226, "", "=q1=Tricky Treat", "=ds=#m20#"};
- { 18, 37012, "", "=q4=The Horseman's Reins", "=ds=#e12#"};
- { 19, 37011, "", "=q3=Magic Broom", "=ds=#e12#"};
- { 20, 33292, "", "=q3=Hallowed Helm", "=ds=#s1#, #a1#"};
- { 21, 33154, "", "=q3=Sinister Squashling", "=ds=#e13#"};
+ {
+ Name = AL["Heirloom"];
+ { 1, 42985, "", "=q7=Tattered Dreadmist Mantle", "=ds=#s3#, #a1#", "60 #champseal#" };
+ { 2, 42984, "", "=q7=Preened Ironfeather Shoulders", "=ds=#s3#, #a2#", "60 #champseal#" };
+ { 3, 42952, "", "=q7=Stained Shadowcraft Spaulders", "=ds=#s3#, #a2#", "60 #champseal#" };
+ { 4, 42950, "", "=q7=Champion Herod's Shoulder", "=ds=#s3#, #a3#", "60 #champseal#" };
+ { 5, 42951, "", "=q7=Mystical Pauldrons of Elements", "=ds=#s3#, #a3#", "60 #champseal#" };
+ { 6, 42949, "", "=q7=Polished Spaulders of Valor", "=ds=#s3#, #a4#", "60 #champseal#" };
+ { 8, 42992, "", "=q7=Discerning Eye of the Beast", "=ds=#s14#", "75 #champseal#" };
+ { 9, 42991, "", "=q7=Swift Hand of Justice", "=ds=#s14#", "75 #champseal#" };
+ { 11, 44990, "", "=q2=Champion's Seal", "=ds=#m17#" };
+ { 16, 48691, "", "=q7=Tattered Dreadmist Robe", "=ds=#s5#, #a1#", "60 #champseal#" };
+ { 17, 48687, "", "=q7=Preened Ironfeather Breastplate", "=ds=#s5#, #a2#", "60 #champseal#" };
+ { 18, 48689, "", "=q7=Stained Shadowcraft Tunic", "=ds=#s5#, #a2#", "60 #champseal#" };
+ { 19, 48677, "", "=q7=Champion's Deathdealer Breastplate", "=ds=#s5#, #a3#", "60 #champseal#" };
+ { 20, 48683, "", "=q7=Mystical Vest of Elements", "=ds=#s5#, #a3#", "60 #champseal#" };
+ { 21, 48685, "", "=q7=Polished Breastplate of Valor", "=ds=#s5#, #a4#", "60 #champseal#" };
+ { 23, 42944, "", "=q7=Balanced Heartseeker", "=ds=#h1#, #w4#", "60 #champseal#" };
+ { 24, 42945, "", "=q7=Venerable Dal'Rend's Sacred Charge", "=ds=#h3#, #w10#", "60 #champseal#" };
+ { 25, 42943, "", "=q7=Bloodied Arcanite Reaper", "=ds=#h2#, #w1#", "95 #champseal#" };
+ { 26, 42948, "", "=q7=Devout Aurastone Hammer", "=ds=#h3#, #w6#", "75 #champseal#" };
+ { 27, 48716, "", "=q7=Venerable Mass of McGowan", "=ds=#h1#, #w6#", "75 #champseal#" };
+ { 28, 48718, "", "=q7=Repurposed Lava Dredger", "=ds=#h2#, #w6#", "95 #champseal#" };
+ { 29, 42947, "", "=q7=Dignified Headmaster's Charge", "=ds=#w9#", "95 #champseal#" };
+ { 30, 42946, "", "=q7=Charmed Ancient Bone Bow", "=ds=#w2#", "95 #champseal#" };
};
+};
- local HorsemanTBC = {
- Name = AL["Headless Horseman"];
- { 1, 33808, "", "=q4=The Horseman's Helm", "=ds=#s1#, #a4#", "" };
- { 2, 34075, "", "=q4=Ring of Ghoulish Delight", "=ds=#s13#", "" };
- { 3, 34073, "", "=q4=The Horseman's Signet Ring", "=ds=#s13#", "" };
- { 4, 34074, "", "=q4=Witching Band", "=ds=#s13#", "" };
- { 5, 38175, "", "=q4=The Horseman's Blade", "=ds=#h3#, #w10#" };
- { 16, 34068, "", "=q1=Weighted Jack-o'-Lantern", "=ds=#m20#", "", "100%"};
- { 17, 33226, "", "=q1=Tricky Treat", "=ds=#m20#"};
- { 18, 37012, "", "=q4=The Horseman's Reins", "=ds=#e12#"};
- { 19, 37011, "", "=q3=Magic Broom", "=ds=#e12#"};
- { 20, 33292, "", "=q3=Hallowed Helm", "=ds=#s1#, #a1#"};
- { 21, 33154, "", "=q3=Sinister Squashling", "=ds=#e13#"};
+-----------------------
+--- Seasonal Events ---
+-----------------------
+
+----------------
+--- Brewfest ---
+----------------
+
+local brewfest = {};
+brewfest.a = {
+ Name = AL["Brewfest"] .. " 1";
+ { 1, 33047, "", "=q1=Belbi's Eyesight Enhancing Romance Goggles", "=ds=#s1#, 100 #brewfest#" };
+ { 2, 34008, "", "=q1=Blix's Eyesight Enhancing Romance Goggles", "=ds=#s1#, 100 #brewfest#" };
+ { 3, 33968, "", "=q1=Blue Brewfest Hat", "=ds=#s1#, 50 #brewfest#" };
+ { 4, 33864, "", "=q1=Brown Brewfest Hat", "=ds=#s1#, 50 #brewfest#" };
+ { 5, 33967, "", "=q1=Green Brewfest Hat", "=ds=#s1#, 50 #brewfest#" };
+ { 6, 33969, "", "=q1=Purple Brewfest Hat", "=ds=#s1#, 50 #brewfest#" };
+ { 7, 33863, "", "=q1=Brewfest Dress", "=ds=#s5#, 200 #brewfest#" };
+ { 8, 33862, "", "=q1=Brewfest Regalia", "=ds=#s5#, 200 #brewfest#" };
+ { 9, 33868, "", "=q1=Brewfest Boots", "=ds=#s12#, 100 #brewfest#" };
+ { 10, 33966, "", "=q1=Brewfest Slippers", "=ds=#s12#, 100 #brewfest#" };
+ { 16, 33927, "", "=q3=Brewfest Pony Keg", "=ds=#m20#, 100 #brewfest#" };
+ { 17, 46707, "", "=q3=Pint-Sized Pink Pachyderm", "=ds=#e13#, 100 #brewfest#" };
+ { 18, 32233, "", "=q3=Wolpertinger's Tankard", "=ds=#e13#, 40 #silver#" };
+ { 19, 37599, "", "=q1=\"Brew of the Month\" Club Membership Form", "=ds=#m2#, 200 #brewfest#" };
+ { 21, 37816, "", "=q2=Preserved Brewfest Hops", "=ds=#m20#, 20 #brewfest#" };
+ { 22, 37750, "", "=q1=Fresh Brewfest Hops", "=ds=#m20#, 2 #brewfest#" };
+ { 23, 39477, "", "=q1=Fresh Dwarven Brewfest Hops", "=ec1=#m6# =ds=#m20#, 5 #brewfest#" };
+ { 24, 39476, "", "=q1=Fresh Goblin Brewfest Hops", "=ec1=#m7# =ds=#m20#, 5 #brewfest#" };
+ { 27, 37829, "", "=q2=Brewfest Prize Token", "=ds=#m17#" };
+};
+
+brewfest.b = {
+ Name = AL["Brewfest"] .. " 2";
+ { 1, 37892, "", "=q3=Green Brewfest Stein", "=ec1=2009 =q1=#m34#: =ds=#h1#" };
+ { 2, 33016, "", "=q3=Blue Brewfest Stein", "=ec1=2008 =q1=#m34#: =ds=#h1#" };
+ { 3, 32912, "", "=q3=Yellow Brewfest Stein", "=ec1=2007 =q1=#m34#: =ds=#h3#" };
+ { 4, 34140, "", "=q3=Dark Iron Tankard", "=ec1=2007 =q1=#m34#: =ds=#s15#" };
+ { 6, 33976, "", "=q3=Brewfest Ram", "=ec1=2007 =q1=#m34#: =ds=#e12#" };
+ { 16, 33929, "", "=q1=Brewfest Brew", "=ds=#e4#" };
+ { 17, 34063, "", "=q1=Dried Sausage", "=ds=#e3#" };
+ { 18, 33024, "", "=q1=Pickled Sausage", "=ds=#e3#" };
+ { 19, 38428, "", "=q1=Rock-Salted Pretzel", "=ds=#e3#" };
+ { 20, 33023, "", "=q1=Savory Sausage", "=ds=#e3#" };
+ { 21, 34065, "", "=q1=Spiced Onion Cheese", "=ds=#e3#" };
+ { 22, 33025, "", "=q1=Spicy Smoked Sausage", "=ds=#e3#" };
+ { 23, 34064, "", "=q1=Succulent Sausage", "=ds=#e3#" };
+ { 24, 33043, "", "=q1=The Essential Brewfest Pretzel", "=ds=#e3#" };
+ { 25, 33026, "", "=q1=The Golden Link", "=ds=#e3#" };
+};
+
+brewfest.c = {
+ Name = AL["Brewfest"] .. " 3";
+ { 1, 0, "INV_Cask_04", "=q6=#n131#", "" };
+ { 2, 33030, "", "=q1=Barleybrew Clear", "=ds=#e4#" };
+ { 3, 33028, "", "=q1=Barleybrew Light", "=ds=#e4#" };
+ { 4, 33029, "", "=q1=Barleybrew Dark", "=ds=#e4#" };
+ { 6, 0, "INV_Cask_04", "=q6=#n132#", "" };
+ { 7, 33031, "", "=q1=Thunder 45", "=ds=#e4#" };
+ { 8, 33032, "", "=q1=Thunderbrew Ale", "=ds=#e4#" };
+ { 9, 33033, "", "=q1=Thunderbrew Stout", "=ds=#e4#" };
+ { 11, 0, "INV_Cask_04", "=q6=#n133#", "" };
+ { 12, 33034, "", "=q1=Gordok Grog", "=ds=#e4#" };
+ { 13, 33036, "", "=q1=Mudder's Milk", "=ds=#e4#" };
+ { 14, 33035, "", "=q1=Ogre Mead", "=ds=#e4#" };
+ { 16, 0, "INV_Cask_04", "=q6=#n134#", "" };
+ { 17, 34017, "", "=q1=Small Step Brew", "=ds=#e4#" };
+ { 18, 34018, "", "=q1=Long Stride Brew", "=ds=#e4#" };
+ { 19, 34019, "", "=q1=Path of Brew", "=ds=#e4#" };
+ { 21, 0, "INV_Cask_04", "=q6=#n135#", "" };
+ { 22, 34020, "", "=q1=Jungle River Water", "=ds=#e4#" };
+ { 23, 34021, "", "=q1=Brewdoo Magic", "=ds=#e4#" };
+ { 24, 34022, "", "=q1=Stout Shrunken Head", "=ds=#e4#" };
+};
+
+brewfest.d = {
+ Name = AL["Brew of the Month Club"];
+ { 1, 37488, "", "=q1=Wild Winter Pilsner", "=ds=#month1#" };
+ { 2, 37489, "", "=q1=Izzard's Ever Flavor", "=ds=#month2#" };
+ { 3, 37490, "", "=q1=Aromatic Honey Brew", "=ds=#month3#" };
+ { 4, 37491, "", "=q1=Metok's Bubble Bock", "=ds=#month4#" };
+ { 5, 37492, "", "=q1=Springtime Stout", "=ds=#month5#" };
+ { 6, 37493, "", "=q1=Blackrock Lager", "=ds=#month6#" };
+ { 16, 37494, "", "=q1=Stranglethorn Brew", "=ds=#month7#" };
+ { 17, 37495, "", "=q1=Draenic Pale Ale", "=ds=#month8#" };
+ { 18, 37496, "", "=q1=Binary Brew", "=ds=#month9#" };
+ { 19, 37497, "", "=q1=Autumnal Acorn Ale", "=ds=#month10#" };
+ { 20, 37498, "", "=q1=Bartlett's Bitter Brew", "=ds=#month11#" };
+ { 21, 37499, "", "=q1=Lord of Frost's Private Label", "=ds=#month12#" };
+};
+
+brewfest.corenCLASSIC = {
+ Name = AL["Coren Direbrew"];
+ { 1, 2037128, "", "=q4=Balebrew Charm", "=ds=#s14#" };
+ { 2, 2037127, "", "=q4=Brightbrew Charm", "=ds=#s14#" };
+ { 3, 2038289, "", "=q4=Coren's Lucky Coin", "=ds=#s14#" };
+ { 4, 2038290, "", "=q4=Dark Iron Smoking Pipe", "=ds=#s14#" };
+ { 5, 2038288, "", "=q4=Direbrew Hops", "=ds=#s14#" };
+ { 6, 2038287, "", "=q4=Empty Mug Of Direbrew", "=ds=#s14#" };
+ { 7, 2037597, "", "=q4=Direbrew's Shanker", "=ds=#h1#, #w4#" };
+ { 16, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#" };
+ { 17, 34140, "", "=q3=Dark Iron Tankard", "=q1=#m4#: =ds=#s15#" };
+ { 19, 37828, "", "=q4=Great Brewfest Kodo", "=ds=#e12#" };
+ { 20, 33977, "", "=q4=Swift Brewfest Ram", "=ds=#e12#" };
+ { 21, 37863, "", "=q3=Direbrew's Remote", "=ds=" };
+ { 22, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#" };
+};
+
+brewfest.corenTBC = {
+ Name = AL["Coren Direbrew"];
+ { 1, 37128, "", "=q4=Balebrew Charm", "=ds=#s14#" };
+ { 2, 37127, "", "=q4=Brightbrew Charm", "=ds=#s14#" };
+ { 3, 38289, "", "=q4=Coren's Lucky Coin", "=ds=#s14#" };
+ { 4, 38290, "", "=q4=Dark Iron Smoking Pipe", "=ds=#s14#" };
+ { 5, 38288, "", "=q4=Direbrew Hops", "=ds=#s14#" };
+ { 6, 38287, "", "=q4=Empty Mug Of Direbrew", "=ds=#s14#" };
+ { 7, 37597, "", "=q4=Direbrew's Shanker", "=ds=#h1#, #w4#" };
+ { 16, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#" };
+ { 17, 34140, "", "=q3=Dark Iron Tankard", "=q1=#m4#: =ds=#s15#" };
+ { 19, 37828, "", "=q4=Great Brewfest Kodo", "=ds=#e12#" };
+ { 20, 33977, "", "=q4=Swift Brewfest Ram", "=ds=#e12#" };
+ { 21, 37863, "", "=q3=Direbrew's Remote", "=ds=" };
+ { 22, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#" };
+};
+
+brewfest.corenWRATH = {
+ Name = AL["Coren Direbrew"];
+ { 1, 49078, "", "=q4=Ancient Pickled Egg", "=ds=#s14#" };
+ { 2, 49118, "", "=q4=Bubbling Balebrew Charm", "=ds=#s14#" };
+ { 3, 49116, "", "=q4=Bitter Brightbrew Charm", "=ds=#s14#" };
+ { 4, 49080, "", "=q4=Brawler's Souvenir", "=ds=#s14#" };
+ { 5, 49074, "", "=q4=Coren's Chromium Coaster", "=ds=#s14#" };
+ { 6, 49076, "", "=q4=Mithril Pocketwatch", "=ds=#s14#" };
+ { 7, 49120, "", "=q4=Direbrew's Shanker 2.0", "=ds=#h1#, #w4#" };
+ { 8, 48663, "", "=q4=Tankard O' Terror", "=ds=#h1#, #w6#" };
+ { 16, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#" };
+ { 17, 34140, "", "=q3=Dark Iron Tankard", "=q1=#m4#: =ds=#s15#" };
+ { 19, 37828, "", "=q4=Great Brewfest Kodo", "=ds=#e12#" };
+ { 20, 33977, "", "=q4=Swift Brewfest Ram", "=ds=#e12#" };
+ { 21, 37863, "", "=q3=Direbrew's Remote", "=ds=" };
+ { 22, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#" };
+};
+
+AtlasLoot_Data["BrewfestCLASSIC"] = {
+ Name = AL["Brewfest"];
+ brewfest.a;
+ brewfest.b;
+ brewfest.c;
+ brewfest.d;
+ brewfest.corenCLASSIC;
+};
+
+AtlasLoot_Data["BrewfestTBC"] = {
+ Name = AL["Brewfest"];
+ brewfest.a;
+ brewfest.b;
+ brewfest.c;
+ brewfest.d;
+ brewfest.corenTBC;
+};
+
+AtlasLoot_Data["BrewfestWRATH"] = {
+ Name = AL["Brewfest"];
+ brewfest.a;
+ brewfest.b;
+ brewfest.c;
+ brewfest.d;
+ brewfest.corenWRATH;
+};
+
+-----------------------
+--- Children's Week ---
+-----------------------
+
+AtlasLoot_Data["ChildrensWeek"] = {
+ Name = AL["Children's Week"];
+ {
+ Name = AL["Children's Week"];
+ { 1, 0, "INV_Box_01", "=q6=#z24#", "" };
+ { 2, 23007, "", "=q1=Piglet's Collar", "=ds=#e13#" };
+ { 3, 23015, "", "=q1=Rat Cage", "=ds=#e13#" };
+ { 4, 23002, "", "=q1=Turtle Box", "=ds=#e13#" };
+ { 5, 23022, "", "=q1=Curmudgeon's Payoff", "=ds=" };
+ { 7, 0, "INV_Box_01", "=q6=#z25#", "" };
+ { 8, 32616, "", "=q3=Egbert's Egg", "=ds=#e13#" };
+ { 9, 32622, "", "=q3=Elekk Training Collar", "=ds=#e13#" };
+ { 10, 32617, "", "=q3=Sleepy Willy", "=ds=#e13#" };
+ { 16, 0, "INV_Box_01", "=q6=#z40#", "" };
+ { 17, 46545, "", "=q3=Curious Oracle Hatchling", "=ds=#e13#" };
+ { 18, 46544, "", "=q3=Curious Wolvar Pup", "=ds=#e13#" };
};
+};
- local HorsemanWRATH = {
- { 1, 49126, "", "=q4=The Horseman's Horrific Helm", "=ds=#s1#, #a4#"};
- { 2, 49121, "", "=q4=Ring of Ghoulish Glee", "=ds=#s13#"};
- { 3, 49123, "", "=q4=The Horseman's Seal", "=ds=#s13#"};
- { 4, 49124, "", "=q4=Wicked Witch's Band", "=ds=#s13#"};
- { 5, 49128, "", "=q4=The Horseman's Baleful Blade", "=ds=#h3#, #w10#"};
- { 16, 34068, "", "=q1=Weighted Jack-o'-Lantern", "=ds=#m20#", "", "100%"};
- { 17, 33226, "", "=q1=Tricky Treat", "=ds=#m20#"};
- { 18, 37012, "", "=q4=The Horseman's Reins", "=ds=#e12#"};
- { 19, 37011, "", "=q3=Magic Broom", "=ds=#e12#"};
- { 20, 33292, "", "=q3=Hallowed Helm", "=ds=#s1#, #a1#"};
- { 21, 33154, "", "=q3=Sinister Squashling", "=ds=#e13#"};
- }
+-----------------------
+--- Day of the Dead ---
+-----------------------
- local HallowsEnd = {
+AtlasLoot_Data["DayoftheDead"] = {
+ Name = AL["Day of the Dead"];
+ {
+ Name = AL["Day of the Dead"];
+ { 1, 46831, "", "=q1=Macabre Marionette", "=q1=#m4#: =ds=#m20#" };
+ { 3, 46860, "", "=q1=Whimsical Skull Mask", "=ds=#s1#, 5 #copper#" };
+ { 4, 46861, "", "=q1=Bouquet of Orange Marigolds", "=ds=#s15#, 1 #gold#" };
+ { 5, 46690, "", "=q1=Candy Skull", "=ds=#m20#, 5 #copper#" };
+ { 6, 46711, "", "=q1=Spirit Candle", "=ds=#m20#, 30 #copper#" };
+ { 7, 46718, "", "=q1=Orange Marigold", "=ds=#m20#, 10 #copper#" };
+ { 9, 46710, "", "=q1=Recipe: Bread of the Dead", "=ds=#p3# (1), 20 #silver#" };
+ { 10, 46691, "", "=q1=Bread of the Dead", "=ds=#e3#" };
+ };
+};
+
+----------------------------
+--- Feast of Winter Veil ---
+----------------------------
+
+AtlasLoot_Data["Winterviel"] = {
+ Name = AL["Feast of Winter Veil"];
+ {
Name = AL["Miscellaneous"];
- { 1, 33117, "", "=q3=Jack-o'-Lantern", "=ds=#m14# #e1# =q2=#z7#"};
- { 2, 20400, "", "=q2=Pumpkin Bag", "=ds=#m13# #e1# =q2=#z7#"};
- { 4, 33189, "", "=q2=Rickety Magic Broom", "=ds=#e12#", "", ""};
- { 6, 18633, "", "=q1=Styleen's Sour Suckerpop", "=ds=#e3#"};
- { 7, 18632, "", "=q1=Moonbrook Riot Taffy", "=ds=#e3#"};
- { 8, 18635, "", "=q1=Bellara's Nutterbar", "=ds=#e3#"};
- { 9, 20557, "", "=q1=Hallow's End Pumpkin Treat", "=ds=#m20#"};
- { 11, 0, "inv_gauntlets_06", "=q6=#x40#", ""};
- { 12, 37585, "", "=q3=Chewy Fel Taffy", "=ds=#m20#"};
- { 13, 37583, "", "=q3=G.N.E.R.D.S.", "=ds=#m20#"};
- { 14, 37582, "", "=q1=Pyroblast Cinnamon Ball", "=ds=#m20#"};
- { 15, 37584, "", "=q1=Soothing Spearmint Candy", "=ds=#m20#"};
- { 16, 0, "INV_Misc_Bag_11", "=q6=#x18#", ""};
- { 17, 33292, "", "=q3=Hallowed Helm", "=ds=#s1#, #a1#"};
- { 18, 33154, "", "=q3=Sinister Squashling", "=ds=#e13#"};
- { 19, 20410, "", "=q1=Hallowed Wand - Bat", "=ds=#m20#"};
- { 20, 20409, "", "=q1=Hallowed Wand - Ghost", "=ds=#m20#"};
- { 21, 20399, "", "=q1=Hallowed Wand - Leper Gnome", "=ds=#m20#"};
- { 22, 20398, "", "=q1=Hallowed Wand - Ninja", "=ds=#m20#"};
- { 23, 20397, "", "=q1=Hallowed Wand - Pirate", "=ds=#m20#"};
- { 24, 20413, "", "=q1=Hallowed Wand - Random", "=ds=#m20#"};
- { 25, 20411, "", "=q1=Hallowed Wand - Skeleton", "=ds=#m20#"};
- { 26, 20414, "", "=q1=Hallowed Wand - Wisp", "=ds=#m20#"};
- { 27, 20389, "", "=q1=Candy Corn", "=ds=#e3#"};
- { 28, 20388, "", "=q1=Lollipop", "=ds=#e3#"};
- { 29, 20390, "", "=q1=Candy Bar", "=ds=#e3#"};
+ { 1, 21525, "", "=q2=Green Winter Hat", "=ds=#s1# =q2=#z7#" };
+ { 2, 21524, "", "=q2=Red Winter Hat", "=ds=#s1# =q2=#z7#" };
+ { 3, 17712, "", "=q1=Winter Veil Disguise Kit", "=q1=#m4#: =ds=#m20#" };
+ { 4, 17202, "", "=q1=Snowball", "=ds=#m20#" };
+ { 5, 34191, "", "=q1=Handful of Snowflakes", "=ds=#m20#" };
+ { 6, 21212, "", "=q1=Fresh Holly", "=ds=#m20#" };
+ { 7, 21519, "", "=q1=Mistletoe", "=ds=#m20#" };
+ { 9, 0, "INV_Holiday_Christmas_Present_01", "=q6=#n129#", "" };
+ { 10, 34262, "", "=q2=Pattern: Winter Boots", "=ds=#p7# (285)" };
+ { 11, 34319, "", "=q2=Pattern: Red Winter Clothes", "=ds=#p8# (250)" };
+ { 12, 34261, "", "=q2=Pattern: Green Winter Clothes", "=ds=#p8# (250)" };
+ { 13, 34413, "", "=q1=Recipe: Hot Apple Cider", "#p3# (325)" };
+ { 14, 17201, "", "=q1=Recipe: Egg Nog", "=ds=#p3# (35)" };
+ { 15, 17200, "", "=q1=Recipe: Gingerbread Cookie", "=ds=#p3# (1)" };
+ { 16, 17344, "", "=q1=Candy Cane", "=ds=#e3#" };
+ { 17, 17406, "", "=q1=Holiday Cheesewheel", "=ds=#e3#" };
+ { 18, 17407, "", "=q1=Graccu's Homemade Meat Pie", "=ds=#e3#" };
+ { 19, 17408, "", "=q1=Spicy Beefstick", "=ds=#e3#" };
+ { 20, 34410, "", "=q1=Honeyed Holiday Ham", "=ds=#e3#" };
+ { 21, 17404, "", "=q1=Blended Bean Brew", "=ds=#e4#" };
+ { 22, 17405, "", "=q1=Green Garden Tea", "=ds=#e4#" };
+ { 23, 34412, "", "=q1=Sparkling Apple Cider", "=ds=#e4#" };
+ { 24, 17196, "", "=q1=Holiday Spirits", "=ds=#e4#" };
+ { 25, 17403, "", "=q1=Steamwheedle Fizzy Spirits", "=ds=#e4#" };
+ { 26, 17402, "", "=q1=Greatfather's Winter Ale", "=ds=#e4#" };
+ { 27, 17194, "", "=q1=Holiday Spices", "=ds=#e6#" };
+ { 28, 17303, "", "=q1=Blue Ribboned Wrapping Paper", "=ds=#e6#" };
+ { 29, 17304, "", "=q1=Green Ribboned Wrapping Paper", "=ds=#e6#" };
+ { 30, 17307, "", "=q1=Purple Ribboned Wrapping Paper", "=ds=#e6#" };
};
-
- local HallowsEndMasks = {
- Name = "Masks";
- { 1, 0, "INV_Misc_Bag_11", "=q6=#x18#", ""};
- { 2, 34003, "", "=q1=Flimsy Male Draenei Mask", "=ds=#s1#"};
- { 3, 20561, "", "=q1=Flimsy Male Dwarf Mask", "=ds=#s1#"};
- { 4, 20391, "", "=q1=Flimsy Male Gnome Mask", "=ds=#s1#"};
- { 5, 20566, "", "=q1=Flimsy Male Human Mask", "=ds=#s1#"};
- { 6, 20564, "", "=q1=Flimsy Male Nightelf Mask", "=ds=#s1#"};
- { 7, 34002, "", "=q1=Flimsy Male Blood Elf Mask", "=ds=#s1#"};
- { 8, 20570, "", "=q1=Flimsy Male Orc Mask", "=ds=#s1#"};
- { 9, 20572, "", "=q1=Flimsy Male Tauren Mask", "=ds=#s1#"};
- { 10, 20568, "", "=q1=Flimsy Male Troll Mask", "=ds=#s1#"};
- { 11, 20573, "", "=q1=Flimsy Male Undead Mask", "=ds=#s1#"};
- { 17, 34001, "", "=q1=Flimsy Female Draenei Mask", "=ds=#s1#"};
- { 18, 20562, "", "=q1=Flimsy Female Dwarf Mask", "=ds=#s1#"};
- { 19, 20392, "", "=q1=Flimsy Female Gnome Mask", "=ds=#s1#"};
- { 20, 20565, "", "=q1=Flimsy Female Human Mask", "=ds=#s1#"};
- { 21, 20563, "", "=q1=Flimsy Female Nightelf Mask", "=ds=#s1#"};
- { 22, 34000, "", "=q1=Flimsy Female Blood Elf Mask", "=ds=#s1#"};
- { 23, 20569, "", "=q1=Flimsy Female Orc Mask", "=ds=#s1#"};
- { 24, 20571, "", "=q1=Flimsy Female Tauren Mask", "=ds=#s1#"};
- { 25, 20567, "", "=q1=Flimsy Female Troll Mask", "=ds=#s1#"};
- { 26, 20574, "", "=q1=Flimsy Female Undead Mask", "=ds=#s1#"};
+ {
+ Name = "Presents";
+ { 1, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x19#", "" };
+ { 2, 21301, "", "=q1=Green Helper Box", "=ds=#e13#" };
+ { 3, 21308, "", "=q1=Jingling Bell", "=ds=#e13#" };
+ { 4, 21305, "", "=q1=Red Helper Box", "=ds=#e13#" };
+ { 5, 21309, "", "=q1=Snowman Kit", "=ds=#e13#" };
+ { 7, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x20#", "" };
+ { 8, 21328, "", "=q1=Wand of Holiday Cheer", "=ds=#m20#" };
+ { 10, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x35#", "" };
+ { 11, 34425, "", "=q3=Clockwork Rocket Bot", "=ds=#e13#" };
+ { 13, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x22#", "" };
+ { 14, 21235, "", "=q1=Winter Veil Roast", "=ds=#e3#" };
+ { 15, 21241, "", "=q1=Winter Veil Eggnog", "=ds=#e4#" };
+ { 16, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x21#", "" };
+ { 17, 21325, "", "=q2=Mechanical Greench", "=ds=#e22#" };
+ { 18, 21213, "", "=q2=Preserved Holly", "=ds=#m20#" };
+ { 19, 17706, "", "=q2=Plans: Edge of Winter", "=ds=#p2# (190)" };
+ { 20, 17725, "", "=q2=Formula: Enchant Weapon - Winter's Might", "=ds=#p4# (190)" };
+ { 21, 17720, "", "=q2=Schematic: Snowmaster 9000", "=ds=#p5# (190)" };
+ { 22, 17722, "", "=q2=Pattern: Gloves of the Greatfather", "=ds=#p7# (190)" };
+ { 23, 17709, "", "=q1=Recipe: Elixir of Frost Power", "=ds=#p1# (190)" };
+ { 24, 17724, "", "=q1=Pattern: Green Holiday Shirt", "=ds=#p8# (190)" };
+ { 26, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x34#", "" };
+ { 27, 21254, "", "=q1=Winter Veil Cookie", "=ds=#e3#" };
+ { 29, 0, "INV_Holiday_Christmas_Present_01", "=q6=#x36#", "" };
+ { 30, 21215, "", "=q1=Graccu's Mince Meat Fruitcake", "=ds=#e3#" };
};
+};
- AtlasLoot_Data["HalloweenCLASSIC"] = {
- Name = AL["Hallow's End"];
- HallowsEnd;
- HallowsEndMasks;
- HorsemanCLASSIC;
+--------------------
+--- Hallow's End ---
+--------------------
+local HorsemanCLASSIC = {
+ Name = AL["Headless Horseman"];
+ { 1, 2033808, "", "=q4=The Horseman's Helm", "=ds=#s1#, #a4#", "" };
+ { 2, 2034075, "", "=q4=Ring of Ghoulish Delight", "=ds=#s13#", "" };
+ { 3, 2034073, "", "=q4=The Horseman's Signet Ring", "=ds=#s13#", "" };
+ { 4, 2034074, "", "=q4=Witching Band", "=ds=#s13#", "" };
+ { 5, 2038175, "", "=q4=The Horseman's Blade", "=ds=#h3#, #w10#" };
+ { 16, 34068, "", "=q1=Weighted Jack-o'-Lantern", "=ds=#m20#", "", "100%" };
+ { 17, 33226, "", "=q1=Tricky Treat", "=ds=#m20#" };
+ { 18, 37012, "", "=q4=The Horseman's Reins", "=ds=#e12#" };
+ { 19, 37011, "", "=q3=Magic Broom", "=ds=#e12#" };
+ { 20, 33292, "", "=q3=Hallowed Helm", "=ds=#s1#, #a1#" };
+ { 21, 33154, "", "=q3=Sinister Squashling", "=ds=#e13#" };
+};
+
+local HorsemanTBC = {
+ Name = AL["Headless Horseman"];
+ { 1, 33808, "", "=q4=The Horseman's Helm", "=ds=#s1#, #a4#", "" };
+ { 2, 34075, "", "=q4=Ring of Ghoulish Delight", "=ds=#s13#", "" };
+ { 3, 34073, "", "=q4=The Horseman's Signet Ring", "=ds=#s13#", "" };
+ { 4, 34074, "", "=q4=Witching Band", "=ds=#s13#", "" };
+ { 5, 38175, "", "=q4=The Horseman's Blade", "=ds=#h3#, #w10#" };
+ { 16, 34068, "", "=q1=Weighted Jack-o'-Lantern", "=ds=#m20#", "", "100%" };
+ { 17, 33226, "", "=q1=Tricky Treat", "=ds=#m20#" };
+ { 18, 37012, "", "=q4=The Horseman's Reins", "=ds=#e12#" };
+ { 19, 37011, "", "=q3=Magic Broom", "=ds=#e12#" };
+ { 20, 33292, "", "=q3=Hallowed Helm", "=ds=#s1#, #a1#" };
+ { 21, 33154, "", "=q3=Sinister Squashling", "=ds=#e13#" };
+};
+
+local HorsemanWRATH = {
+ Name = AL["Headless Horseman"];
+ { 1, 49126, "", "=q4=The Horseman's Horrific Helm", "=ds=#s1#, #a4#" };
+ { 2, 49121, "", "=q4=Ring of Ghoulish Glee", "=ds=#s13#" };
+ { 3, 49123, "", "=q4=The Horseman's Seal", "=ds=#s13#" };
+ { 4, 49124, "", "=q4=Wicked Witch's Band", "=ds=#s13#" };
+ { 5, 49128, "", "=q4=The Horseman's Baleful Blade", "=ds=#h3#, #w10#" };
+ { 16, 34068, "", "=q1=Weighted Jack-o'-Lantern", "=ds=#m20#", "", "100%" };
+ { 17, 33226, "", "=q1=Tricky Treat", "=ds=#m20#" };
+ { 18, 37012, "", "=q4=The Horseman's Reins", "=ds=#e12#" };
+ { 19, 37011, "", "=q3=Magic Broom", "=ds=#e12#" };
+ { 20, 33292, "", "=q3=Hallowed Helm", "=ds=#s1#, #a1#" };
+ { 21, 33154, "", "=q3=Sinister Squashling", "=ds=#e13#" };
+}
+
+local HallowsEnd = {
+ Name = AL["Miscellaneous"];
+ { 1, 33117, "", "=q3=Jack-o'-Lantern", "=ds=#m14# #e1# =q2=#z7#" };
+ { 2, 20400, "", "=q2=Pumpkin Bag", "=ds=#m13# #e1# =q2=#z7#" };
+ { 4, 33189, "", "=q2=Rickety Magic Broom", "=ds=#e12#", "", "" };
+ { 6, 18633, "", "=q1=Styleen's Sour Suckerpop", "=ds=#e3#" };
+ { 7, 18632, "", "=q1=Moonbrook Riot Taffy", "=ds=#e3#" };
+ { 8, 18635, "", "=q1=Bellara's Nutterbar", "=ds=#e3#" };
+ { 9, 20557, "", "=q1=Hallow's End Pumpkin Treat", "=ds=#m20#" };
+ { 11, 0, "inv_gauntlets_06", "=q6=#x40#", "" };
+ { 12, 37585, "", "=q3=Chewy Fel Taffy", "=ds=#m20#" };
+ { 13, 37583, "", "=q3=G.N.E.R.D.S.", "=ds=#m20#" };
+ { 14, 37582, "", "=q1=Pyroblast Cinnamon Ball", "=ds=#m20#" };
+ { 15, 37584, "", "=q1=Soothing Spearmint Candy", "=ds=#m20#" };
+ { 16, 0, "INV_Misc_Bag_11", "=q6=#x18#", "" };
+ { 17, 33292, "", "=q3=Hallowed Helm", "=ds=#s1#, #a1#" };
+ { 18, 33154, "", "=q3=Sinister Squashling", "=ds=#e13#" };
+ { 19, 20410, "", "=q1=Hallowed Wand - Bat", "=ds=#m20#" };
+ { 20, 20409, "", "=q1=Hallowed Wand - Ghost", "=ds=#m20#" };
+ { 21, 20399, "", "=q1=Hallowed Wand - Leper Gnome", "=ds=#m20#" };
+ { 22, 20398, "", "=q1=Hallowed Wand - Ninja", "=ds=#m20#" };
+ { 23, 20397, "", "=q1=Hallowed Wand - Pirate", "=ds=#m20#" };
+ { 24, 20413, "", "=q1=Hallowed Wand - Random", "=ds=#m20#" };
+ { 25, 20411, "", "=q1=Hallowed Wand - Skeleton", "=ds=#m20#" };
+ { 26, 20414, "", "=q1=Hallowed Wand - Wisp", "=ds=#m20#" };
+ { 27, 20389, "", "=q1=Candy Corn", "=ds=#e3#" };
+ { 28, 20388, "", "=q1=Lollipop", "=ds=#e3#" };
+ { 29, 20390, "", "=q1=Candy Bar", "=ds=#e3#" };
+};
+
+local HallowsEndMasks = {
+ Name = "Masks";
+ { 1, 0, "INV_Misc_Bag_11", "=q6=#x18#", "" };
+ { 2, 34003, "", "=q1=Flimsy Male Draenei Mask", "=ds=#s1#" };
+ { 3, 20561, "", "=q1=Flimsy Male Dwarf Mask", "=ds=#s1#" };
+ { 4, 20391, "", "=q1=Flimsy Male Gnome Mask", "=ds=#s1#" };
+ { 5, 20566, "", "=q1=Flimsy Male Human Mask", "=ds=#s1#" };
+ { 6, 20564, "", "=q1=Flimsy Male Nightelf Mask", "=ds=#s1#" };
+ { 7, 34002, "", "=q1=Flimsy Male Blood Elf Mask", "=ds=#s1#" };
+ { 8, 20570, "", "=q1=Flimsy Male Orc Mask", "=ds=#s1#" };
+ { 9, 20572, "", "=q1=Flimsy Male Tauren Mask", "=ds=#s1#" };
+ { 10, 20568, "", "=q1=Flimsy Male Troll Mask", "=ds=#s1#" };
+ { 11, 20573, "", "=q1=Flimsy Male Undead Mask", "=ds=#s1#" };
+ { 17, 34001, "", "=q1=Flimsy Female Draenei Mask", "=ds=#s1#" };
+ { 18, 20562, "", "=q1=Flimsy Female Dwarf Mask", "=ds=#s1#" };
+ { 19, 20392, "", "=q1=Flimsy Female Gnome Mask", "=ds=#s1#" };
+ { 20, 20565, "", "=q1=Flimsy Female Human Mask", "=ds=#s1#" };
+ { 21, 20563, "", "=q1=Flimsy Female Nightelf Mask", "=ds=#s1#" };
+ { 22, 34000, "", "=q1=Flimsy Female Blood Elf Mask", "=ds=#s1#" };
+ { 23, 20569, "", "=q1=Flimsy Female Orc Mask", "=ds=#s1#" };
+ { 24, 20571, "", "=q1=Flimsy Female Tauren Mask", "=ds=#s1#" };
+ { 25, 20567, "", "=q1=Flimsy Female Troll Mask", "=ds=#s1#" };
+ { 26, 20574, "", "=q1=Flimsy Female Undead Mask", "=ds=#s1#" };
+};
+
+AtlasLoot_Data["HalloweenCLASSIC"] = {
+ Name = AL["Hallow's End"];
+ HallowsEnd;
+ HallowsEndMasks;
+ HorsemanCLASSIC;
+};
+
+AtlasLoot_Data["HalloweenTBC"] = {
+ Name = AL["Hallow's End"];
+ HallowsEnd;
+ HallowsEndMasks;
+ HorsemanTBC;
+};
+
+AtlasLoot_Data["HalloweenWRATH"] = {
+ Name = AL["Hallow's End"];
+ HallowsEnd;
+ HallowsEndMasks;
+ HorsemanWRATH;
+};
+
+------------------------
+--- Harvest Festival ---
+------------------------
+
+AtlasLoot_Data["HarvestFestival"] = {
+ Name = AL["Harvest Festival"];
+ {
+ Name = AL["Harvest Festival"];
+ { 1, 19697, "", "=q1=Bounty of the Harvest", "=q1=#m4#: =ds=#m20#" };
+ { 2, 20009, "", "=q1=For the Light!", "=q1=#m4#: =ds=#e10# =ec1=#m7#" };
+ { 3, 20010, "", "=q1=The Horde's Hellscream", "=q1=#m4#: =ds=#e10# =ec1=#m6#" };
+ { 5, 19995, "", "=q1=Harvest Boar", "=ds=#e3#" };
+ { 6, 19996, "", "=q1=Harvest Fish", "=ds=#e3#" };
+ { 7, 19994, "", "=q1=Harvest Fruit", "=ds=#e3#" };
+ { 8, 19997, "", "=q1=Harvest Nectar", "=ds=#e4#" };
};
+};
- AtlasLoot_Data["HalloweenTBC"] = {
- Name = AL["Hallow's End"];
- HallowsEnd;
- HallowsEndMasks;
- HorsemanTBC;
+--------------------------
+--- Love is in the Air ---
+--------------------------
+
+AtlasLoot_Data["Valentineday"] = {
+ Name = AL["Love is in the Air"];
+ {
+ Name = AL["Love is in the Air"] .. " 1";
+ { 1, 34480, "", "=q3=Romantic Picnic Basket", "=ds=#m20#, 10 #valentineday#" };
+ { 2, 21815, "", "=q1=Love Token", "=ds=", "=ds=#m20#, 1 #valentineday2#" };
+ { 3, 50163, "", "=q1=Lovely Rose", "=ds=", "=ds=#m20#, 5 #valentineday#" };
+ { 4, 22218, "", "=q1=Handful of Rose Petals", "=ds=#m20#, 2 #valentineday#" };
+ { 5, 22200, "", "=q1=Silver Shafted Arrow", "=ds=#e13#, 5 #valentineday#" };
+ { 6, 22235, "", "=q1=Truesilver Shafted Arrow", "=ds=#e13#, 40 #valentineday#" };
+ { 7, 21813, "", "=q1=Bag of Heart Candies", "=ds=#m20#, 2 #valentineday#" };
+ { 8, 21812, "", "=q1=Box of Chocolates", "=ds=#m20#, 10 #valentineday#" };
+ { 9, 50160, "", "=q1=Lovely Dress Box", "=ds=#m20#, 20 #valentineday#" };
+ { 10, 50161, "", "=q1=Dinner Suit Box", "=ds=#m20#, 20 #valentineday#" };
+ { 11, 34258, "", "=q1=Love Rocket", "=ds=#e23#, 5 #valentineday#" };
+ { 12, 22261, "", "=q1=Love Fool", "=ds=#e22#, 10 #valentineday#" };
+ { 16, 49859, "", "=q1=\"Bravado\" Cologne", "=ds=#m20#, 1 #valentineday#" };
+ { 17, 49861, "", "=q1=\"STALWART\" Cologne", "=ds=#m20#, 1 #valentineday#" };
+ { 18, 49860, "", "=q1=\"Wizardry\" Cologne", "=ds=#m20#, 1 #valentineday#" };
+ { 19, 49856, "", "=q1=\"VICTORY\" Perfume", "=ds=#m20#, 1 #valentineday#" };
+ { 20, 49858, "", "=q1=\"Forever\" Perfume", "=ds=#m20#, 1 #valentineday#" };
+ { 21, 49857, "", "=q1=\"Enchantress\" Perfume", "=ds=#m20#, 1 #valentineday#" };
+ { 23, 21815, "", "=q1=Love Token", "=ds=#m17#" };
+ { 24, 49916, "", "=q1=Lovely Charm Bracelet", "=ds=#m17#" };
};
-
- AtlasLoot_Data["HalloweenWRATH"] = {
- Name = AL["Hallow's End"];
- HallowsEnd;
- HallowsEndMasks;
- HorsemanWRATH;
+ {
+ Name = AL["Love is in the Air"] .. " 2";
+ { 1, 0, "INV_Box_02", "=q6=" .. AL["Lovely Dress Box"], "" };
+ { 2, 22279, "", "=q1=Lovely Black Dress", "=ds=#s5#" };
+ { 3, 22276, "", "=q1=Lovely Red Dress", "=ds=#s5#" };
+ { 4, 22278, "", "=q1=Lovely Blue Dress", "=ds=#s5#" };
+ { 5, 22280, "", "=q1=Lovely Purple Dress", "=ds=#s5#" };
+ { 7, 0, "INV_Box_01", "=q6=" .. AL["Dinner Suit Box"], "" };
+ { 8, 22277, "", "=q1=Red Dinner Suit", "=q1=#m4#: =ds=#s5#" };
+ { 9, 22281, "", "=q1=Blue Dinner Suit", "=q1=#m4#: =ds=#s5#" };
+ { 10, 22282, "", "=q1=Purple Dinner Suit", "=q1=#m4#: =ds=#s5#" };
+ { 16, 0, "INV_ValentinesBoxOfChocolates02", "=q6=#x17#", "" };
+ { 17, 22237, "", "=q1=Dark Desire", "=ds=#e3#" };
+ { 18, 22238, "", "=q1=Very Berry Cream", "=ds=#e3#" };
+ { 19, 22236, "", "=q1=Buttermilk Deligh", "=ds=#e3#" };
+ { 20, 22239, "", "=q1=Sweet Surprise ", "=ds=#e3#" };
+ { 22, 0, "inv_valentinescandysack", "=q6=" .. AL["Bag of Heart Candies"], "" };
+ { 23, 21816, "", "=q1=Heart Candy", "=ds=#m20#" };
+ { 24, 21817, "", "=q1=Heart Candy", "=ds=#m20#" };
+ { 25, 21818, "", "=q1=Heart Candy", "=ds=#m20#" };
+ { 26, 21819, "", "=q1=Heart Candy", "=ds=#m20#" };
+ { 27, 21820, "", "=q1=Heart Candy", "=ds=#m20#" };
+ { 28, 21821, "", "=q1=Heart Candy", "=ds=#m20#" };
+ { 29, 21822, "", "=q1=Heart Candy", "=ds=#m20#" };
+ { 30, 21823, "", "=q1=Heart Candy", "=ds=#m20#" };
};
-
- ------------------------
- --- Harvest Festival ---
- ------------------------
-
- AtlasLoot_Data["HarvestFestival"] = {
- Name = AL["Harvest Festival"];
- {
- Name = AL["Harvest Festival"];
- { 1, 19697, "", "=q1=Bounty of the Harvest", "=q1=#m4#: =ds=#m20#"};
- { 2, 20009, "", "=q1=For the Light!", "=q1=#m4#: =ds=#e10# =ec1=#m7#"};
- { 3, 20010, "", "=q1=The Horde's Hellscream", "=q1=#m4#: =ds=#e10# =ec1=#m6#"};
- { 5, 19995, "", "=q1=Harvest Boar", "=ds=#e3#"};
- { 6, 19996, "", "=q1=Harvest Fish", "=ds=#e3#"};
- { 7, 19994, "", "=q1=Harvest Fruit", "=ds=#e3#"};
- { 8, 19997, "", "=q1=Harvest Nectar", "=ds=#e4#"};
- };
+ {
+ Name = AL["Love is in the Air"] .. " 3";
+ { 1, 51804, "", "=q4=Winking Eye of Love", "=ds=#s2#" };
+ { 2, 51805, "", "=q4=Heartbreak Charm", "=ds=#s2#" };
+ { 3, 51806, "", "=q4=Shard of Pirouetting Happiness", "=ds=#s2#" };
+ { 4, 51807, "", "=q4=Sweet Perfume Broach", "=ds=#s2#" };
+ { 5, 51808, "", "=q4=Choker of the Pure Heart", "=ds=#s2#" };
+ { 7, 49715, "", "=q3=Forever-Lovely Rose", "=ds=#s1#" };
+ { 8, 50741, "", "=q3=Vile Fumigator's Mask", "=ds=#s1#" };
+ { 16, 50446, "", "=q3=Toxic Wasteling", "=ds=#e13#" };
+ { 17, 50471, "", "=q3=The Heartbreaker", "=ds=#m20#" };
+ { 19, 50250, "", "=q4=Big Love Rocket", "=ds=#e12#" };
};
+};
- --------------------------
- --- Love is in the Air ---
- --------------------------
-
- AtlasLoot_Data["Valentineday"] = {
- Name = AL["Love is in the Air"];
- {
- Name = AL["Love is in the Air"].." 1";
- { 1, 34480, "", "=q3=Romantic Picnic Basket", "=ds=#m20#, 10 #valentineday#"};
- { 2, 21815, "", "=q1=Love Token", "=ds=", "=ds=#m20#, 1 #valentineday2#"};
- { 3, 50163, "", "=q1=Lovely Rose", "=ds=", "=ds=#m20#, 5 #valentineday#"};
- { 4, 22218, "", "=q1=Handful of Rose Petals", "=ds=#m20#, 2 #valentineday#"};
- { 5, 22200, "", "=q1=Silver Shafted Arrow", "=ds=#e13#, 5 #valentineday#"};
- { 6, 22235, "", "=q1=Truesilver Shafted Arrow", "=ds=#e13#, 40 #valentineday#"};
- { 7, 21813, "", "=q1=Bag of Heart Candies", "=ds=#m20#, 2 #valentineday#"};
- { 8, 21812, "", "=q1=Box of Chocolates", "=ds=#m20#, 10 #valentineday#"};
- { 9, 50160, "", "=q1=Lovely Dress Box", "=ds=#m20#, 20 #valentineday#"};
- { 10, 50161, "", "=q1=Dinner Suit Box", "=ds=#m20#, 20 #valentineday#"};
- { 11, 34258, "", "=q1=Love Rocket", "=ds=#e23#, 5 #valentineday#"};
- { 12, 22261, "", "=q1=Love Fool", "=ds=#e22#, 10 #valentineday#"};
- { 16, 49859, "", "=q1=\"Bravado\" Cologne", "=ds=#m20#, 1 #valentineday#"};
- { 17, 49861, "", "=q1=\"STALWART\" Cologne", "=ds=#m20#, 1 #valentineday#"};
- { 18, 49860, "", "=q1=\"Wizardry\" Cologne", "=ds=#m20#, 1 #valentineday#"};
- { 19, 49856, "", "=q1=\"VICTORY\" Perfume", "=ds=#m20#, 1 #valentineday#"};
- { 20, 49858, "", "=q1=\"Forever\" Perfume", "=ds=#m20#, 1 #valentineday#"};
- { 21, 49857, "", "=q1=\"Enchantress\" Perfume", "=ds=#m20#, 1 #valentineday#"};
- { 23, 21815, "", "=q1=Love Token", "=ds=#m17#"};
- { 24, 49916, "", "=q1=Lovely Charm Bracelet", "=ds=#m17#"};
- };
- {
- Name = AL["Love is in the Air"].." 2";
- { 1, 0, "INV_Box_02", "=q6="..AL["Lovely Dress Box"], ""};
- { 2, 22279, "", "=q1=Lovely Black Dress", "=ds=#s5#"};
- { 3, 22276, "", "=q1=Lovely Red Dress", "=ds=#s5#"};
- { 4, 22278, "", "=q1=Lovely Blue Dress", "=ds=#s5#"};
- { 5, 22280, "", "=q1=Lovely Purple Dress", "=ds=#s5#"};
- { 7, 0, "INV_Box_01", "=q6="..AL["Dinner Suit Box"], ""};
- { 8, 22277, "", "=q1=Red Dinner Suit", "=q1=#m4#: =ds=#s5#"};
- { 9, 22281, "", "=q1=Blue Dinner Suit", "=q1=#m4#: =ds=#s5#"};
- { 10, 22282, "", "=q1=Purple Dinner Suit", "=q1=#m4#: =ds=#s5#"};
- { 16, 0, "INV_ValentinesBoxOfChocolates02", "=q6=#x17#", ""};
- { 17, 22237, "", "=q1=Dark Desire", "=ds=#e3#"};
- { 18, 22238, "", "=q1=Very Berry Cream", "=ds=#e3#"};
- { 19, 22236, "", "=q1=Buttermilk Deligh", "=ds=#e3#"};
- { 20, 22239, "", "=q1=Sweet Surprise ", "=ds=#e3#"};
- { 22, 0, "inv_valentinescandysack", "=q6="..AL["Bag of Heart Candies"], ""};
- { 23, 21816, "", "=q1=Heart Candy", "=ds=#m20#"};
- { 24, 21817, "", "=q1=Heart Candy", "=ds=#m20#"};
- { 25, 21818, "", "=q1=Heart Candy", "=ds=#m20#"};
- { 26, 21819, "", "=q1=Heart Candy", "=ds=#m20#"};
- { 27, 21820, "", "=q1=Heart Candy", "=ds=#m20#"};
- { 28, 21821, "", "=q1=Heart Candy", "=ds=#m20#"};
- { 29, 21822, "", "=q1=Heart Candy", "=ds=#m20#"};
- { 30, 21823, "", "=q1=Heart Candy", "=ds=#m20#"};
- };
- {
- Name = AL["Love is in the Air"].." 3";
- { 1, 51804, "", "=q4=Winking Eye of Love", "=ds=#s2#"};
- { 2, 51805, "", "=q4=Heartbreak Charm", "=ds=#s2#"};
- { 3, 51806, "", "=q4=Shard of Pirouetting Happiness", "=ds=#s2#"};
- { 4, 51807, "", "=q4=Sweet Perfume Broach", "=ds=#s2#"};
- { 5, 51808, "", "=q4=Choker of the Pure Heart", "=ds=#s2#"};
- { 7, 49715, "", "=q3=Forever-Lovely Rose", "=ds=#s1#"};
- { 8, 50741, "", "=q3=Vile Fumigator's Mask", "=ds=#s1#"};
- { 16, 50446, "", "=q3=Toxic Wasteling", "=ds=#e13#"};
- { 17, 50471, "", "=q3=The Heartbreaker", "=ds=#m20#"};
- { 19, 50250, "", "=q4=Big Love Rocket", "=ds=#e12#"};
- };
+----------------------
+--- Lunar Festival ---
+----------------------
+
+AtlasLoot_Data["LunarFestival"] = {
+ Name = AL["Lunar Festival"];
+ {
+ Name = AL["Miscellaneous"];
+ { 1, 21540, "", "=q2=Elune's Lantern", "=q1=#m4#: =ds=#m20#" };
+ { 3, 21157, "", "=q1=Festive Green Dress", "=ds=#s5#" };
+ { 4, 21538, "", "=q1=Festive Pink Dress", "=ds=#s5#" };
+ { 5, 21539, "", "=q1=Festive Purple Dress", "=ds=#s5#" };
+ { 7, 21541, "", "=q1=Festive Black Pant Suit", "=ds=#s5#" };
+ { 8, 21544, "", "=q1=Festive Blue Pant Suit", "=ds=#s5#" };
+ { 9, 21543, "", "=q1=Festive Teal Pant Suit", "=ds=#s5#" };
+ { 11, 21537, "", "=q1=Festival Dumplings", "=ds=#e3#" };
+ { 13, 21713, "", "=q1=Elune's Candle", "=ds=#m20#" };
+ { 15, 21100, "", "=q1=Coin of Ancestry", "=ds=#m17#" };
+ { 16, 0, "INV_Box_02", "=q6=#x24#", "=ds=#e23#" };
+ { 17, 21558, "", "=q1=Small Blue Rocket", "=ds=#e23#" };
+ { 18, 21559, "", "=q1=Small Green Rocket", "=ds=#e23#" };
+ { 19, 21557, "", "=q1=Small Red Rocket", "=ds=#e23#" };
+ { 20, 21561, "", "=q1=Small White Rocket", "=ds=#e23#" };
+ { 21, 21562, "", "=q1=Small Yellow Rocket", "=ds=#e23#" };
+ { 22, 21589, "", "=q1=Large Blue Rocket", "=ds=#e23#" };
+ { 23, 21590, "", "=q1=Large Green Rocket", "=ds=#e23#" };
+ { 24, 21592, "", "=q1=Large Red Rocket", "=ds=#e23#" };
+ { 25, 21593, "", "=q1=Large White Rocket", "=ds=#e23#" };
+ { 26, 21595, "", "=q1=Large Yellow Rocket", "=ds=#e23#" };
+ { 28, 0, "INV_Misc_LuckyMoneyEnvelope", "=q6=#x25#", "" };
+ { 29, 21744, "", "=q1=Lucky Rocket Cluster", "=ds=#e23#" };
+ { 30, 21745, "", "=q1=Elder's Moonstone", "=ds=#m20#" };
};
-
- ----------------------
- --- Lunar Festival ---
- ----------------------
-
- AtlasLoot_Data["LunarFestival"] = {
- Name = AL["Lunar Festival"];
- {
- Name = AL["Miscellaneous"];
- { 1, 21540, "", "=q2=Elune's Lantern", "=q1=#m4#: =ds=#m20#"};
- { 3, 21157, "", "=q1=Festive Green Dress", "=ds=#s5#"};
- { 4, 21538, "", "=q1=Festive Pink Dress", "=ds=#s5#"};
- { 5, 21539, "", "=q1=Festive Purple Dress", "=ds=#s5#"};
- { 7, 21541, "", "=q1=Festive Black Pant Suit", "=ds=#s5#"};
- { 8, 21544, "", "=q1=Festive Blue Pant Suit", "=ds=#s5#"};
- { 9, 21543, "", "=q1=Festive Teal Pant Suit", "=ds=#s5#"};
- { 11, 21537, "", "=q1=Festival Dumplings", "=ds=#e3#"};
- { 13, 21713, "", "=q1=Elune's Candle", "=ds=#m20#"};
- { 15, 21100, "", "=q1=Coin of Ancestry", "=ds=#m17#"};
- { 16, 0, "INV_Box_02", "=q6=#x24#", "=ds=#e23#"};
- { 17, 21558, "", "=q1=Small Blue Rocket", "=ds=#e23#"};
- { 18, 21559, "", "=q1=Small Green Rocket", "=ds=#e23#"};
- { 19, 21557, "", "=q1=Small Red Rocket", "=ds=#e23#"};
- { 20, 21561, "", "=q1=Small White Rocket", "=ds=#e23#"};
- { 21, 21562, "", "=q1=Small Yellow Rocket", "=ds=#e23#"};
- { 22, 21589, "", "=q1=Large Blue Rocket", "=ds=#e23#"};
- { 23, 21590, "", "=q1=Large Green Rocket", "=ds=#e23#"};
- { 24, 21592, "", "=q1=Large Red Rocket", "=ds=#e23#"};
- { 25, 21593, "", "=q1=Large White Rocket", "=ds=#e23#"};
- { 26, 21595, "", "=q1=Large Yellow Rocket", "=ds=#e23#"};
- { 28, 0, "INV_Misc_LuckyMoneyEnvelope", "=q6=#x25#", ""};
- { 29, 21744, "", "=q1=Lucky Rocket Cluster", "=ds=#e23#"};
- { 30, 21745, "", "=q1=Elder's Moonstone", "=ds=#m20#"};
- };
- {
- Name = AL["Crafting Patterns"];
- { 1, 21738, "", "=q2=Schematic: Firework Launcher ", "=ds=#p5# (225)"};
- { 3, 0, "INV_Scroll_03", "=q6=#x26#", ""};
- { 4, 21724, "", "=q2=Schematic: Small Blue Rocket", "=ds=#p5# (125)"};
- { 5, 21725, "", "=q2=Schematic: Small Green Rocket", "=ds=#p5# (125)"};
- { 6, 21726, "", "=q2=Schematic: Small Red Rocket", "=ds=#p5# (125)"};
- { 8, 0, "INV_Scroll_04", "=q6=#x27#", ""};
- { 9, 21727, "", "=q2=Schematic: Large Blue Rocket", "=ds=#p5# (175)"};
- { 10, 21728, "", "=q2=Schematic: Large Green Rocket", "=ds=#p5# (175)"};
- { 11, 21729, "", "=q2=Schematic: Large Red Rocket", "=ds=#p5# (175)"};
- { 13, 21722, "", "=q2=Pattern: Festival Dress", "=ds=#p8# (250)"};
- { 16, 21737, "", "=q2=Schematic: Cluster Launcher", "=ds=#p5# (275)"};
- { 18, 0, "INV_Scroll_05", "=q6=#x28#", ""};
- { 19, 21730, "", "=q2=Schematic: Blue Rocket Cluster", "=ds=#p5# (225)"};
- { 20, 21731, "", "=q2=Schematic: Green Rocket Cluster", "=ds=#p5# (225)"};
- { 21, 21732, "", "=q2=Schematic: Red Rocket Cluster", "=ds=#p5# (225)"};
- { 23, 0, "INV_Scroll_06", "=q6=#x29#", ""};
- { 24, 21733, "", "=q2=Schematic: Large Blue Rocket Cluster", "=ds=#p5# (275)"};
- { 25, 21734, "", "=q2=Schematic: Large Green Rocket Cluster", "=ds=#p5# (275)"};
- { 26, 21735, "", "=q2=Schematic: Large Red Rocket Cluster", "=ds=#p5# (275)"};
- { 28, 21723, "", "=q2=Pattern: Festival Suit", "=ds=#p8# (250)"};
- };
+ {
+ Name = AL["Crafting Patterns"];
+ { 1, 21738, "", "=q2=Schematic: Firework Launcher ", "=ds=#p5# (225)" };
+ { 3, 0, "INV_Scroll_03", "=q6=#x26#", "" };
+ { 4, 21724, "", "=q2=Schematic: Small Blue Rocket", "=ds=#p5# (125)" };
+ { 5, 21725, "", "=q2=Schematic: Small Green Rocket", "=ds=#p5# (125)" };
+ { 6, 21726, "", "=q2=Schematic: Small Red Rocket", "=ds=#p5# (125)" };
+ { 8, 0, "INV_Scroll_04", "=q6=#x27#", "" };
+ { 9, 21727, "", "=q2=Schematic: Large Blue Rocket", "=ds=#p5# (175)" };
+ { 10, 21728, "", "=q2=Schematic: Large Green Rocket", "=ds=#p5# (175)" };
+ { 11, 21729, "", "=q2=Schematic: Large Red Rocket", "=ds=#p5# (175)" };
+ { 13, 21722, "", "=q2=Pattern: Festival Dress", "=ds=#p8# (250)" };
+ { 16, 21737, "", "=q2=Schematic: Cluster Launcher", "=ds=#p5# (275)" };
+ { 18, 0, "INV_Scroll_05", "=q6=#x28#", "" };
+ { 19, 21730, "", "=q2=Schematic: Blue Rocket Cluster", "=ds=#p5# (225)" };
+ { 20, 21731, "", "=q2=Schematic: Green Rocket Cluster", "=ds=#p5# (225)" };
+ { 21, 21732, "", "=q2=Schematic: Red Rocket Cluster", "=ds=#p5# (225)" };
+ { 23, 0, "INV_Scroll_06", "=q6=#x29#", "" };
+ { 24, 21733, "", "=q2=Schematic: Large Blue Rocket Cluster", "=ds=#p5# (275)" };
+ { 25, 21734, "", "=q2=Schematic: Large Green Rocket Cluster", "=ds=#p5# (275)" };
+ { 26, 21735, "", "=q2=Schematic: Large Red Rocket Cluster", "=ds=#p5# (275)" };
+ { 28, 21723, "", "=q2=Pattern: Festival Suit", "=ds=#p8# (250)" };
};
+};
- -------------------------------
- --- Midsummer Fire Festival ---
- -------------------------------
+-------------------------------
+--- Midsummer Fire Festival ---
+-------------------------------
- local lordAhuneTBC = {
- Name = AL["Lord Ahune"];
- {1, 35507, "", "=q4=Amulet of Bitter Hatred", "=ds=#s2#" };
- {2, 35509, "", "=q4=Amulet of Glacial Tranquility", "=ds=#s2#" };
- {3, 35508, "", "=q4=Choker of the Arctic Flow", "=ds=#s2#" };
- {4, 35511, "", "=q4=Hailstone Pendant", "=ds=#s2#" };
- {6, 35498, "", "=q3=Formula: Enchant Weapon - Deathfrost", "=ds=#p4# (350)" };
- {7, 34955, "", "=q3=Scorched Stone", "=ds=#e13#" };
- {9, 35723, "", "=q1=Shards of Ahune", "=ds=#m2#" };
- {10, 35279, "", "=q3=Tabard of Summer Skies", "=q1=#m4#: =ds=#s7#" };
- {11, 35280, "", "=q3=Tabard of Summer Flames", "=q1=#m4#: =ds=#s7#" };
- {16, 35497, "", "=q4=Cloak of the Frigid Winds", "=ds=#s4#" };
- {17, 35496, "", "=q4=Icebound Cloak", "=ds=#s4#" };
- {18, 35494, "", "=q4=Shroud of Winter's Chill", "=ds=#s4#" };
- {19, 35495, "", "=q4=The Frost Lord's War Cloak", "=ds=#s4#" };
- {20, 35514, "", "=q4=Frostscythe of Lord Ahune", "=ds=#w9#" };
- };
+local lordAhuneTBC = {
+ Name = AL["Lord Ahune"];
+ { 1, 35507, "", "=q4=Amulet of Bitter Hatred", "=ds=#s2#" };
+ { 2, 35509, "", "=q4=Amulet of Glacial Tranquility", "=ds=#s2#" };
+ { 3, 35508, "", "=q4=Choker of the Arctic Flow", "=ds=#s2#" };
+ { 4, 35511, "", "=q4=Hailstone Pendant", "=ds=#s2#" };
+ { 6, 35498, "", "=q3=Formula: Enchant Weapon - Deathfrost", "=ds=#p4# (350)" };
+ { 7, 34955, "", "=q3=Scorched Stone", "=ds=#e13#" };
+ { 9, 35723, "", "=q1=Shards of Ahune", "=ds=#m2#" };
+ { 10, 35279, "", "=q3=Tabard of Summer Skies", "=q1=#m4#: =ds=#s7#" };
+ { 11, 35280, "", "=q3=Tabard of Summer Flames", "=q1=#m4#: =ds=#s7#" };
+ { 16, 35497, "", "=q4=Cloak of the Frigid Winds", "=ds=#s4#" };
+ { 17, 35496, "", "=q4=Icebound Cloak", "=ds=#s4#" };
+ { 18, 35494, "", "=q4=Shroud of Winter's Chill", "=ds=#s4#" };
+ { 19, 35495, "", "=q4=The Frost Lord's War Cloak", "=ds=#s4#" };
+ { 20, 35514, "", "=q4=Frostscythe of Lord Ahune", "=ds=#w9#" };
+};
- local lordAhuneWRATH = {
- Name = AL["Lord Ahune"];
- { 1, 54805, "", "=q4=Cloak of the Frigid Winds", "=ds=#s4#"};
- { 2, 54801, "", "=q4=Icebound Cloak", "=ds=#s4#"};
- { 3, 54804, "", "=q4=Shroud of Winter's Chill", "=ds=#s4#"};
- { 4, 54803, "", "=q4=The Frost Lord's Battle Shroud", "=ds=#s4#"};
- { 5, 54802, "", "=q4=The Frost Lord's War Cloak", "=ds=#s4#"};
- { 7, 35498, "", "=q3=Formula: Enchant Weapon - Deathfrost", "=ds=#p4# (350)"};
- { 9, 35723, "", "=q1=Shards of Ahune", "=ds=#m2#"};
- { 10, 35279, "", "=q3=Tabard of Summer Skies", "=q1=#m4#: =ds=#s7#"};
- { 11, 35280, "", "=q3=Tabard of Summer Flames", "=q1=#m4#: =ds=#s7#"};
- { 16, 54536, "", "=q3=Satchel of Chilled Goods", "=ds="};
- { 17, 54806, "", "=q4=Frostscythe of Lord Ahune", "=ds=#w9#"};
- { 18, 53641, "", "=q3=Ice Chip", "=ds=#e13#"};
- };
+local lordAhuneWRATH = {
+ Name = AL["Lord Ahune"];
+ { 1, 54805, "", "=q4=Cloak of the Frigid Winds", "=ds=#s4#" };
+ { 2, 54801, "", "=q4=Icebound Cloak", "=ds=#s4#" };
+ { 3, 54804, "", "=q4=Shroud of Winter's Chill", "=ds=#s4#" };
+ { 4, 54803, "", "=q4=The Frost Lord's Battle Shroud", "=ds=#s4#" };
+ { 5, 54802, "", "=q4=The Frost Lord's War Cloak", "=ds=#s4#" };
+ { 7, 35498, "", "=q3=Formula: Enchant Weapon - Deathfrost", "=ds=#p4# (350)" };
+ { 9, 35723, "", "=q1=Shards of Ahune", "=ds=#m2#" };
+ { 10, 35279, "", "=q3=Tabard of Summer Skies", "=q1=#m4#: =ds=#s7#" };
+ { 11, 35280, "", "=q3=Tabard of Summer Flames", "=q1=#m4#: =ds=#s7#" };
+ { 16, 54536, "", "=q3=Satchel of Chilled Goods", "=ds=" };
+ { 17, 54806, "", "=q4=Frostscythe of Lord Ahune", "=ds=#w9#" };
+ { 18, 53641, "", "=q3=Ice Chip", "=ds=#e13#" };
+};
- local midSummerMain = {
+local midSummerMain = {
Name = AL["Midsummer Fire Festival"];
- { 1, 34686, "", "=q3=Brazier of Dancing Flames", "350 #fireflower#"};
- { 2, 23083, "", "=q3=Captured Flame", "=ds=#e13#, 350 #fireflower#"};
- { 4, 23379, "", "=q2=Cinder Bracers", "=ds=#e22#"};
- { 6, 23246, "", "=q1=Fiery Festival Brew", "2 #fireflower#"};
- { 7, 23435, "", "=q1=Elderberry Pie", "5 #fireflower#"};
- { 8, 23327, "", "=q1=Fire-toasted Bun", "5 #fireflower#"};
- { 9, 23326, "", "=q1=Midsummer Sausage", "5 #fireflower#"};
- { 10, 23211, "", "=q1=Toasted Smorc", "5 #fireflower#"};
- { 11, 34684, "", "=q1=Handful of Summer Petals", "2 #fireflower#"};
- { 12, 23215, "", "=q1=Bag of Smorc Ingredients", "5 #fireflower#"};
- { 13, 34599, "", "=q1=Juggling Torch", "5 #fireflower#"};
- { 15, 23247, "", "=q1=Burning Blossom", "=ds=#m17#"};
- { 16, 23323, "", "=q1=Crown of the Fire Festival", "=ds=#s1#, #a1#, #m4#"};
- { 17, 23324, "", "=q1=Mantle of the Fire Festival", "=ds=#s3#, 100 #fireflower#"};
- { 18, 34685, "", "=q1=Vestment of Summer", "=ds=#s5#, 100 #fireflower#"};
- { 19, 34683, "", "=q1=Sandals of Summer", "=ds=#s11#, 200 #fireflower#"};
- }
+ { 1, 34686, "", "=q3=Brazier of Dancing Flames", "350 #fireflower#" };
+ { 2, 23083, "", "=q3=Captured Flame", "=ds=#e13#, 350 #fireflower#" };
+ { 4, 23379, "", "=q2=Cinder Bracers", "=ds=#e22#" };
+ { 6, 23246, "", "=q1=Fiery Festival Brew", "2 #fireflower#" };
+ { 7, 23435, "", "=q1=Elderberry Pie", "5 #fireflower#" };
+ { 8, 23327, "", "=q1=Fire-toasted Bun", "5 #fireflower#" };
+ { 9, 23326, "", "=q1=Midsummer Sausage", "5 #fireflower#" };
+ { 10, 23211, "", "=q1=Toasted Smorc", "5 #fireflower#" };
+ { 11, 34684, "", "=q1=Handful of Summer Petals", "2 #fireflower#" };
+ { 12, 23215, "", "=q1=Bag of Smorc Ingredients", "5 #fireflower#" };
+ { 13, 34599, "", "=q1=Juggling Torch", "5 #fireflower#" };
+ { 15, 23247, "", "=q1=Burning Blossom", "=ds=#m17#" };
+ { 16, 23323, "", "=q1=Crown of the Fire Festival", "=ds=#s1#, #a1#, #m4#" };
+ { 17, 23324, "", "=q1=Mantle of the Fire Festival", "=ds=#s3#, 100 #fireflower#" };
+ { 18, 34685, "", "=q1=Vestment of Summer", "=ds=#s5#, 100 #fireflower#" };
+ { 19, 34683, "", "=q1=Sandals of Summer", "=ds=#s11#, 200 #fireflower#" };
+}
- AtlasLoot_Data["MidsummerFestivalCLASSIC"] = {
- Name = AL["Midsummer Fire Festival"];
- midSummerMain;
+AtlasLoot_Data["MidsummerFestivalCLASSIC"] = {
+ Name = AL["Midsummer Fire Festival"];
+ midSummerMain;
+};
+
+AtlasLoot_Data["MidsummerFestivalTBC"] = {
+ Name = AL["Midsummer Fire Festival"];
+ midSummerMain;
+ lordAhuneTBC;
+};
+
+AtlasLoot_Data["MidsummerFestivalWRATH"] = {
+ Name = AL["Midsummer Fire Festival"];
+ midSummerMain;
+ lordAhuneWRATH;
+};
+
+-------------------
+--- Noblegarden ---
+-------------------
+
+AtlasLoot_Data["Noblegarden"] = {
+ Name = AL["Noblegarden"];
+ {
+ Name = AL["Noblegarden"];
+ { 2, 44793, "", "=q3=Tome of Polymorph: Rabbit", "=ds=#e10#", "100 #noblegarden#" };
+ { 3, 44794, "", "=q3=Spring Rabbit's Foot", "=ds=#e13#", "100 #noblegarden#" };
+ { 4, 44803, "", "=q1=Spring Circlet", "=ds=#s1#", "50 #noblegarden#" };
+ { 5, 19028, "", "=q1=Elegant Dress", "=ds=#s5#", "50 #noblegarden#" };
+ { 6, 44800, "", "=q1=Spring Robes", "=ds=#s5#", "50 #noblegarden#" };
+ { 7, 45073, "", "=q1=Spring Flowers", "=ds=#h1#", "50 #noblegarden#" };
+ { 8, 6833, "", "=q1=White Tuxedo Shirt", "=ds=#s6#", "25 #noblegarden#" };
+ { 9, 6835, "", "=q1=Black Tuxedo Pants", "=ds=#s11#", "25 #noblegarden#" };
+ { 10, 44792, "", "=q1=Blossoming Branch", "=ds=", "10 #noblegarden#" };
+ { 11, 44818, "", "=q1=Noblegarden Egg", "=ds=", "5 #noblegarden#" };
+ { 13, 45067, "", "=q1=Egg Basket", "=q1=#m4#: =ds=#s15#" };
+ { 14, 44791, "", "=q1=Noblegarden Chocolate", "=ds=#e3#" };
};
+};
+------------------------
+--- Pilgrim's Bounty ---
+------------------------
- AtlasLoot_Data["MidsummerFestivalTBC"] = {
- Name = AL["Midsummer Fire Festival"];
- midSummerMain;
- lordAhuneTBC;
+AtlasLoot_Data["PilgrimsBounty"] = {
+ Name = AL["Pilgrim's Bounty"];
+ {
+ Name = AL["Pilgrim's Bounty"];
+ { 1, 46809, "", "=q2=Bountiful Cookbook", "=ds=#p3# #e10# (1)" };
+ { 2, 44860, "", "=q1=Recipe: Spice Bread Stuffing", "=ds=#p3# (1)" };
+ { 3, 44862, "", "=q1=Recipe: Pumpkin Pie", "=ds=#p3# (100)" };
+ { 4, 44858, "", "=q1=Recipe: Cranberry Chutney", "=ds=#p3# (160)" };
+ { 5, 44859, "", "=q1=Recipe: Candied Sweet Potato", "=ds=#p3# (220)" };
+ { 6, 44861, "", "=q1=Recipe: Slow-Roasted Turkey", "=ds=#p3# (280)" };
+ { 7, 46888, "", "=q1=Bountiful Basket", "=ds=#e3#, #p3# (350)" };
+ { 8, 44855, "", "=q1=Teldrassil Sweet Potato", "=ds=#e3#" };
+ { 9, 44854, "", "=q1=Tangy Wetland Cranberries", "=ds=#e3#" };
+ { 10, 46784, "", "=q1=Ripe Elwynn Pumpkin", "=ds=#e3#" };
+ { 11, 44835, "", "=q1=Autumnal Herbs", "=ds=#e6#" };
+ { 12, 44853, "", "=q1=Honey", "=ds=#e6#" };
+ { 16, 44810, "", "=q3=Turkey Cage", "=q1=#m32#: =ds=#e13#" };
+ { 17, 46723, "", "=q1=Pilgrim's Hat", "=q1=#m4#: =ds=#s1#" };
+ { 18, 46800, "", "=q1=Pilgrim's Attire", "=q1=#m4#: =ds=#s5#" };
+ { 19, 44785, "", "=q1=Pilgrim's Dress", "=q1=#m4#: =ds=#s5#" };
+ { 20, 46824, "", "=q1=Pilgrim's Robe", "=q1=#m4#: =ds=#s5#" };
+ { 21, 44788, "", "=q1=Pilgrim's Boots", "=q1=#m4#: =ds=#s12#" };
+ { 22, 44844, "", "=q1=Turkey Caller", "=q1=#m4#: =ds=" };
};
+};
- AtlasLoot_Data["MidsummerFestivalWRATH"] = {
- Name = AL["Midsummer Fire Festival"];
- midSummerMain;
- lordAhuneWRATH;
+--------------------------
+--- Reaccouring Events ---
+--------------------------
+
+-------------------------------------
+--- Bash'ir Landing Skyguard Raid ---
+-------------------------------------
+
+AtlasLoot_Data["BashirLanding"] = {
+ Name = "Bash'ir Landing Skyguard";
+ {
+ Name = AL["Bash'ir Landing Skyguard Raid"];
+ { 1, 0, "INV_Box_01", "=q6=#j16#", "=q1=#n112#" };
+ { 2, 32596, "", "=q1=Unstable Flask of the Elder", "=ds=#e2#", "", "" };
+ { 3, 32600, "", "=q1=Unstable Flask of the Physician", "=ds=#e2#", "", "" };
+ { 4, 32599, "", "=q1=Unstable Flask of the Bandit", "=ds=#e2#", "", "" };
+ { 5, 32597, "", "=q1=Unstable Flask of the Soldier", "=ds=#e2#", "", "" };
+ { 7, 0, "INV_Box_01", "=q6=#j17#", "=q1=#n113#" };
+ { 8, 32634, "", "=q3=Unstable Amethyst", "=ds=#e7#", "", "" };
+ { 9, 32637, "", "=q3=Unstable Citrine", "=ds=#e7#", "", "" };
+ { 10, 32635, "", "=q3=Unstable Peridot", "=ds=#e7#", "", "" };
+ { 11, 32636, "", "=q3=Unstable Sapphire", "=ds=#e7#", "", "" };
+ { 12, 32639, "", "=q3=Unstable Talasite", "=ds=#e7#", "", "" };
+ { 13, 32638, "", "=q3=Unstable Topaz", "=ds=#e7#", "", "" };
+ { 16, 0, "INV_Box_01", "=q6=#j18#", "=q1=#n114#" };
+ { 17, 32641, "", "=q3=Imbued Unstable Diamond", "=ds=#e7#", "", "" };
+ { 18, 32640, "", "=q3=Potent Unstable Diamond", "=ds=#e7#", "", "" };
+ { 19, 32759, "", "=q1=Accelerator Module", "=ds=", "", "" };
+ { 20, 32630, "", "=q1=Small Gold Metamorphosis Geode", "=ds=", "", "" };
+ { 21, 32631, "", "=q1=Small Silver Metamorphosis Geode", "=ds=", "", "" };
+ { 22, 32627, "", "=q1=Small Copper Metamorphosis Geode", "=ds=", "", "" };
+ { 23, 32625, "", "=q1=Small Iron Metamorphosis Geode", "=ds=", "", "" };
+ { 24, 32629, "", "=q1=Large Gold Metamorphosis Geode", "=ds=", "", "" };
+ { 25, 32628, "", "=q1=Large Silver Metamorphosis Geode", "=ds=", "", "" };
+ { 26, 32626, "", "=q1=Large Copper Metamorphosis Geode", "=ds=", "", "" };
+ { 27, 32624, "", "=q1=Large Iron Metamorphosis Geode", "=ds=", "", "" };
};
+};
+----------------------
+--- Darkmoon Faire ---
+----------------------
- -------------------
- --- Noblegarden ---
- -------------------
-
- AtlasLoot_Data["Noblegarden"] = {
- Name = AL["Noblegarden"];
- {
- Name = AL["Noblegarden"];
- { 2, 44793, "", "=q3=Tome of Polymorph: Rabbit", "=ds=#e10#", "100 #noblegarden#"};
- { 3, 44794, "", "=q3=Spring Rabbit's Foot", "=ds=#e13#", "100 #noblegarden#"};
- { 4, 44803, "", "=q1=Spring Circlet", "=ds=#s1#", "50 #noblegarden#"};
- { 5, 19028, "", "=q1=Elegant Dress", "=ds=#s5#", "50 #noblegarden#"};
- { 6, 44800, "", "=q1=Spring Robes", "=ds=#s5#", "50 #noblegarden#"};
- { 7, 45073, "", "=q1=Spring Flowers", "=ds=#h1#", "50 #noblegarden#"};
- { 8, 6833, "", "=q1=White Tuxedo Shirt", "=ds=#s6#", "25 #noblegarden#"};
- { 9, 6835, "", "=q1=Black Tuxedo Pants", "=ds=#s11#", "25 #noblegarden#"};
- { 10, 44792, "", "=q1=Blossoming Branch", "=ds=", "10 #noblegarden#"};
- { 11, 44818, "", "=q1=Noblegarden Egg", "=ds=", "5 #noblegarden#"};
- { 13, 45067, "", "=q1=Egg Basket", "=q1=#m4#: =ds=#s15#"};
- { 14, 44791, "", "=q1=Noblegarden Chocolate", "=ds=#e3#"};
- };
+AtlasLoot_Data["Darkmoon"] = {
+ Name = BabbleFaction["Darkmoon Faire"];
+ {
+ Name = AL["Darkmoon Faire Rewards"];
+ { 1, 19491, "", "=q4=Amulet of the Darkmoon", "=ds=#s2#", "1200 #darkmoon#", "" };
+ { 2, 19426, "", "=q4=Orb of the Darkmoon", "=ds=#s2#", "1200 #darkmoon#", "" };
+ { 3, 19296, "", "=q2=Greater Darkmoon Prize", "40 #darkmoon#" };
+ { 4, 19297, "", "=q2=Lesser Darkmoon Prize", "12 #darkmoon#" };
+ { 5, 19298, "", "=q2=Minor Darkmoon Prize", "5 #darkmoon#" };
+ { 6, 19291, "", "=q1=Darkmoon Storage Box", "50 #darkmoon#" };
+ { 7, 19293, "", "=q1=Last Year's Mutton", "=ds=#h1#, #w6#", "50 #darkmoon#", "" };
+ { 8, 22729, "", "=q1=Schematic: Steam Tonk Controller", "=ds=#p5# (275)", "40 #darkmoon#", "" };
+ { 9, 19292, "", "=q1=Last Month's Mutton", "=ds=#h1#, #w6#", "10 #darkmoon#", "" };
+ { 10, 19295, "", "=q1=Darkmoon Flower", "=ds=#s15#", "5 #darkmoon#", "" };
+ { 12, 19182, "", "=q1=Darkmoon Faire Prize Ticket", "=ds=#m17#" };
+ { 16, 19302, "", "=q3=Darkmoon Ring", "=ds=#s13#" };
+ { 17, 19303, "", "=q2=Darkmoon Necklace", "=ds=#s2#" };
+ { 19, 11026, "", "=q1=Tree Frog Box", "=ds=#e13#" };
+ { 20, 11027, "", "=q1=Wood Frog Box", "=ds=#e13#" };
+ { 21, 19450, "", "=q1=A Jubling's Tiny Home", "=q1=#m4#: =ds=#e13#" };
};
- ------------------------
- --- Pilgrim's Bounty ---
- ------------------------
-
- AtlasLoot_Data["PilgrimsBounty"] = {
- Name = AL["Pilgrim's Bounty"];
- {
- Name = AL["Pilgrim's Bounty"];
- { 1, 46809, "", "=q2=Bountiful Cookbook", "=ds=#p3# #e10# (1)"};
- { 2, 44860, "", "=q1=Recipe: Spice Bread Stuffing", "=ds=#p3# (1)"};
- { 3, 44862, "", "=q1=Recipe: Pumpkin Pie", "=ds=#p3# (100)"};
- { 4, 44858, "", "=q1=Recipe: Cranberry Chutney", "=ds=#p3# (160)"};
- { 5, 44859, "", "=q1=Recipe: Candied Sweet Potato", "=ds=#p3# (220)"};
- { 6, 44861, "", "=q1=Recipe: Slow-Roasted Turkey", "=ds=#p3# (280)"};
- { 7, 46888, "", "=q1=Bountiful Basket", "=ds=#e3#, #p3# (350)"};
- { 8, 44855, "", "=q1=Teldrassil Sweet Potato", "=ds=#e3#"};
- { 9, 44854, "", "=q1=Tangy Wetland Cranberries", "=ds=#e3#"};
- { 10, 46784, "", "=q1=Ripe Elwynn Pumpkin", "=ds=#e3#"};
- { 11, 44835, "", "=q1=Autumnal Herbs", "=ds=#e6#"};
- { 12, 44853, "", "=q1=Honey", "=ds=#e6#"};
- { 16, 44810, "", "=q3=Turkey Cage", "=q1=#m32#: =ds=#e13#"};
- { 17, 46723, "", "=q1=Pilgrim's Hat", "=q1=#m4#: =ds=#s1#"};
- { 18, 46800, "", "=q1=Pilgrim's Attire", "=q1=#m4#: =ds=#s5#"};
- { 19, 44785, "", "=q1=Pilgrim's Dress", "=q1=#m4#: =ds=#s5#"};
- { 20, 46824, "", "=q1=Pilgrim's Robe", "=q1=#m4#: =ds=#s5#"};
- { 21, 44788, "", "=q1=Pilgrim's Boots", "=q1=#m4#: =ds=#s12#"};
- { 22, 44844, "", "=q1=Turkey Caller", "=q1=#m4#: =ds="};
- };
+ {
+ Name = AL["Low Level Decks"];
+ { 1, 37163, "", "=q2=Rogues Deck", "=ds=#m2#" };
+ { 2, 38318, "", "=q2=Darkmoon Robe", "=q1=#m4#: =ds=#s5#, #a1# =q2=#m16#" };
+ { 3, 39509, "", "=q2=Darkmoon Vest", "=q1=#m4#: =ds=#s5#, #a2# =q2=#m16#" };
+ { 4, 39507, "", "=q2=Darkmoon Chain Shirt", "=q1=#m4#: =ds=#s5#, #a3# =q2=#m16#" };
+ { 6, 37164, "", "=q3=Swords Deck", "=ds=#m2#" };
+ { 7, 39894, "", "=q3=Darkcloth Shoulders", "=q1=#m4#: =ds=#s3#, #a1# =q2=#m16#" };
+ { 8, 39895, "", "=q3=Cloaked Shoulderpads", "=q1=#m4#: =ds=#s3#, #a2# =q2=#m16#" };
+ { 9, 39897, "", "=q3=Azure Shoulderguards", "=q1=#m4#: =ds=#s3#, #a3# =q2=#m16#" };
+ { 16, 44148, "", "=q3=Mages Deck", "=ds=#m2#" };
+ { 17, 44215, "", "=q3=Darkmoon Necklace", "=q1=#m4#: =ds=#s2#" };
+ { 18, 44213, "", "=q3=Darkmoon Pendant", "=q1=#m4#: =ds=#s2#" };
+ { 21, 44158, "", "=q3=Demons Deck", "=ds=#m2#" };
+ { 22, 44217, "", "=q3=Darkmoon Dirk", "=q1=#m4#: =ds=#h1#, #w4#" };
+ { 23, 44218, "", "=q3=Darkmoon Executioner", "=q1=#m4#: =ds=#h2#, #w1#" };
+ { 24, 44219, "", "=q3=Darkmoon Magestaff", "=q1=#m4#: =ds=#w9#" };
};
-
- --------------------------
- --- Reaccouring Events ---
- --------------------------
-
- -------------------------------------
- --- Bash'ir Landing Skyguard Raid ---
- -------------------------------------
-
- AtlasLoot_Data["BashirLanding"] = {
- Name = "Bash'ir Landing Skyguard";
- {
- Name = AL["Bash'ir Landing Skyguard Raid"];
- { 1, 0, "INV_Box_01", "=q6=#j16#", "=q1=#n112#"};
- { 2, 32596, "", "=q1=Unstable Flask of the Elder", "=ds=#e2#", "", ""};
- { 3, 32600, "", "=q1=Unstable Flask of the Physician", "=ds=#e2#", "", ""};
- { 4, 32599, "", "=q1=Unstable Flask of the Bandit", "=ds=#e2#", "", ""};
- { 5, 32597, "", "=q1=Unstable Flask of the Soldier", "=ds=#e2#", "", ""};
- { 7, 0, "INV_Box_01", "=q6=#j17#", "=q1=#n113#"};
- { 8, 32634, "", "=q3=Unstable Amethyst", "=ds=#e7#", "", ""};
- { 9, 32637, "", "=q3=Unstable Citrine", "=ds=#e7#", "", ""};
- { 10, 32635, "", "=q3=Unstable Peridot", "=ds=#e7#", "", ""};
- { 11, 32636, "", "=q3=Unstable Sapphire", "=ds=#e7#", "", ""};
- { 12, 32639, "", "=q3=Unstable Talasite", "=ds=#e7#", "", ""};
- { 13, 32638, "", "=q3=Unstable Topaz", "=ds=#e7#", "", ""};
- { 16, 0, "INV_Box_01", "=q6=#j18#", "=q1=#n114#"};
- { 17, 32641, "", "=q3=Imbued Unstable Diamond", "=ds=#e7#", "", ""};
- { 18, 32640, "", "=q3=Potent Unstable Diamond", "=ds=#e7#", "", ""};
- { 19, 32759, "", "=q1=Accelerator Module", "=ds=", "", ""};
- { 20, 32630, "", "=q1=Small Gold Metamorphosis Geode", "=ds=", "", ""};
- { 21, 32631, "", "=q1=Small Silver Metamorphosis Geode", "=ds=", "", ""};
- { 22, 32627, "", "=q1=Small Copper Metamorphosis Geode", "=ds=", "", ""};
- { 23, 32625, "", "=q1=Small Iron Metamorphosis Geode", "=ds=", "", ""};
- { 24, 32629, "", "=q1=Large Gold Metamorphosis Geode", "=ds=", "", ""};
- { 25, 32628, "", "=q1=Large Silver Metamorphosis Geode", "=ds=", "", ""};
- { 26, 32626, "", "=q1=Large Copper Metamorphosis Geode", "=ds=", "", ""};
- { 27, 32624, "", "=q1=Large Iron Metamorphosis Geode", "=ds=", "", ""};
- };
- };
- ----------------------
- --- Darkmoon Faire ---
- ----------------------
-
- AtlasLoot_Data["Darkmoon"] = {
- Name = BabbleFaction["Darkmoon Faire"];
- {
- Name = AL["Darkmoon Faire Rewards"];
- { 1, 19491, "", "=q4=Amulet of the Darkmoon", "=ds=#s2#", "1200 #darkmoon#", ""};
- { 2, 19426, "", "=q4=Orb of the Darkmoon", "=ds=#s2#", "1200 #darkmoon#", ""};
- { 3, 19296, "", "=q2=Greater Darkmoon Prize", "40 #darkmoon#"};
- { 4, 19297, "", "=q2=Lesser Darkmoon Prize", "12 #darkmoon#"};
- { 5, 19298, "", "=q2=Minor Darkmoon Prize", "5 #darkmoon#"};
- { 6, 19291, "", "=q1=Darkmoon Storage Box", "50 #darkmoon#"};
- { 7, 19293, "", "=q1=Last Year's Mutton", "=ds=#h1#, #w6#", "50 #darkmoon#", ""};
- { 8, 22729, "", "=q1=Schematic: Steam Tonk Controller", "=ds=#p5# (275)", "40 #darkmoon#", ""};
- { 9, 19292, "", "=q1=Last Month's Mutton", "=ds=#h1#, #w6#", "10 #darkmoon#", ""};
- { 10, 19295, "", "=q1=Darkmoon Flower", "=ds=#s15#", "5 #darkmoon#", ""};
- { 12, 19182, "", "=q1=Darkmoon Faire Prize Ticket", "=ds=#m17#"};
- { 16, 19302, "", "=q3=Darkmoon Ring", "=ds=#s13#"};
- { 17, 19303, "", "=q2=Darkmoon Necklace", "=ds=#s2#"};
- { 19, 11026, "", "=q1=Tree Frog Box", "=ds=#e13#"};
- { 20, 11027, "", "=q1=Wood Frog Box", "=ds=#e13#"};
- { 21, 19450, "", "=q1=A Jubling's Tiny Home", "=q1=#m4#: =ds=#e13#"};
- };
- {
- Name = AL["Low Level Decks"];
- { 1, 37163, "", "=q2=Rogues Deck", "=ds=#m2#"};
- { 2, 38318, "", "=q2=Darkmoon Robe", "=q1=#m4#: =ds=#s5#, #a1# =q2=#m16#"};
- { 3, 39509, "", "=q2=Darkmoon Vest", "=q1=#m4#: =ds=#s5#, #a2# =q2=#m16#"};
- { 4, 39507, "", "=q2=Darkmoon Chain Shirt", "=q1=#m4#: =ds=#s5#, #a3# =q2=#m16#"};
- { 6, 37164, "", "=q3=Swords Deck", "=ds=#m2#"};
- { 7, 39894, "", "=q3=Darkcloth Shoulders", "=q1=#m4#: =ds=#s3#, #a1# =q2=#m16#"};
- { 8, 39895, "", "=q3=Cloaked Shoulderpads", "=q1=#m4#: =ds=#s3#, #a2# =q2=#m16#"};
- { 9, 39897, "", "=q3=Azure Shoulderguards", "=q1=#m4#: =ds=#s3#, #a3# =q2=#m16#"};
- { 16, 44148, "", "=q3=Mages Deck", "=ds=#m2#"};
- { 17, 44215, "", "=q3=Darkmoon Necklace", "=q1=#m4#: =ds=#s2#"};
- { 18, 44213, "", "=q3=Darkmoon Pendant", "=q1=#m4#: =ds=#s2#"};
- { 21, 44158, "", "=q3=Demons Deck", "=ds=#m2#"};
- { 22, 44217, "", "=q3=Darkmoon Dirk", "=q1=#m4#: =ds=#h1#, #w4#"};
- { 23, 44218, "", "=q3=Darkmoon Executioner", "=q1=#m4#: =ds=#h2#, #w1#"};
- { 24, 44219, "", "=q3=Darkmoon Magestaff", "=q1=#m4#: =ds=#w9#"};
- };
- {
- Name = AL["Original and BC Trinkets"];
- { 1, 19228, "", "=q4=Beasts Deck", "=ds=#m2#"};
- { 2, 19288, "", "=q4=Darkmoon Card: Blue Dragon", "=q1=#m4#: =ds=#s14#"};
- { 4, 19267, "", "=q4=Elementals Deck", "=ds=#m2#"};
- { 5, 19289, "", "=q4=Darkmoon Card: Maelstrom", "=q1=#m4#: =ds=#s14#"};
- { 7, 19277, "", "=q4=Portals Deck", "=ds=#m2#"};
- { 8, 19290, "", "=q4=Darkmoon Card: Twisting Nether", "=q1=#m4#: =ds=#s14#"};
- { 10, 19257, "", "=q4=Warlords Deck", "=ds=#m2#"};
- { 11, 19287, "", "=q4=Darkmoon Card: Heroism", "=q1=#m4#: =ds=#s14#"};
- { 16, 31890, "", "=q4=Blessings Deck", "=ds=#m2#"};
- { 17, 31856, "", "=q4=Darkmoon Card: Crusade", "=q1=#m4#: =ds=#s14#"};
- { 19, 31907, "", "=q4=Furies Deck", "=ds=#m2#"};
- { 20, 31858, "", "=q4=Darkmoon Card: Vengeance", "=q1=#m4#: =ds=#s14#"};
- { 22, 31914, "", "=q4=Lunacy Deck", "=ds=#m2#"};
- { 23, 31859, "", "=q4=Darkmoon Card: Madness", "=q1=#m4#: =ds=#s14#"};
- { 25, 31891, "", "=q4=Storms Deck", "=ds=#m2#"};
- { 26, 31857, "", "=q4=Darkmoon Card: Wrath", "=q1=#m4#: =ds=#s14#"};
- };
- {
- Name = AL["WotLK Trinkets"];
- { 1, 44276, "", "=q4=Chaos Deck", "=ds=#m2#"};
- { 2, 42989, "", "=q4=Darkmoon Card: Berserker!", "=q1=#m4#: =ds=#s14#"};
- { 4, 44259, "", "=q4=Prisms Deck", "=ds=#m2#"};
- { 5, 42988, "", "=q4=Darkmoon Card: Illusion", "=q1=#m4#: =ds=#s14#"};
- { 7, 44294, "", "=q4=Undeath Deck", "=ds=#m2#"};
- { 8, 42990, "", "=q4=Darkmoon Card: Death", "=q1=#m4#: =ds=#s14#"};
- { 16, 44326, "", "=q4=Nobles Deck", "=ds=#m2#"};
- { 17, 44253, "", "=q4=Darkmoon Card: Greatness", "=q1=#m4#: =ds=#s14#"};
- { 18, 42987, "", "=q4=Darkmoon Card: Greatness", "=q1=#m4#: =ds=#s14#"};
- { 19, 44254, "", "=q4=Darkmoon Card: Greatness", "=q1=#m4#: =ds=#s14#"};
- { 20, 44255, "", "=q4=Darkmoon Card: Greatness", "=q1=#m4#: =ds=#s14#"};
- };
+ {
+ Name = AL["Original and BC Trinkets"];
+ { 1, 19228, "", "=q4=Beasts Deck", "=ds=#m2#" };
+ { 2, 19288, "", "=q4=Darkmoon Card: Blue Dragon", "=q1=#m4#: =ds=#s14#" };
+ { 4, 19267, "", "=q4=Elementals Deck", "=ds=#m2#" };
+ { 5, 19289, "", "=q4=Darkmoon Card: Maelstrom", "=q1=#m4#: =ds=#s14#" };
+ { 7, 19277, "", "=q4=Portals Deck", "=ds=#m2#" };
+ { 8, 19290, "", "=q4=Darkmoon Card: Twisting Nether", "=q1=#m4#: =ds=#s14#" };
+ { 10, 19257, "", "=q4=Warlords Deck", "=ds=#m2#" };
+ { 11, 19287, "", "=q4=Darkmoon Card: Heroism", "=q1=#m4#: =ds=#s14#" };
+ { 16, 31890, "", "=q4=Blessings Deck", "=ds=#m2#" };
+ { 17, 31856, "", "=q4=Darkmoon Card: Crusade", "=q1=#m4#: =ds=#s14#" };
+ { 19, 31907, "", "=q4=Furies Deck", "=ds=#m2#" };
+ { 20, 31858, "", "=q4=Darkmoon Card: Vengeance", "=q1=#m4#: =ds=#s14#" };
+ { 22, 31914, "", "=q4=Lunacy Deck", "=ds=#m2#" };
+ { 23, 31859, "", "=q4=Darkmoon Card: Madness", "=q1=#m4#: =ds=#s14#" };
+ { 25, 31891, "", "=q4=Storms Deck", "=ds=#m2#" };
+ { 26, 31857, "", "=q4=Darkmoon Card: Wrath", "=q1=#m4#: =ds=#s14#" };
};
-
- --------------------------
- --- Elemental Invasion ---
- --------------------------
-
- AtlasLoot_Data["ElementalInvasion"] = {
- Name = AL["Elemental Invasion"];
- {
- Name = AL["Elemental Invasion"];
- { 1, 0, "INV_Box_01", "=q6=#n108#", "=q1=#j19#, #z20#"};
- { 2, 18671, "", "=q3=Baron Charr's Sceptre", "=ds=#h1#, #w6#", "", "12.18%"};
- { 3, 19268, "", "=q3=Ace of Elementals", "=ds=#e16#", "", "10.14%"};
- { 4, 18672, "", "=q2=Elemental Ember", "=ds=#s15#", "", "53.31%"};
- { 6, 0, "INV_Box_01", "=q6=#n109#", "=q1=#j20#, #z21#"};
- { 7, 18678, "", "=q3=Tempestria's Frozen Necklace", "=ds=#s2#", "", "12.33%"};
- { 8, 19268, "", "=q3=Ace of Elementals", "=ds=#e16#", "", "5.24%"};
- { 9, 21548, "", "=q3=Pattern: Stormshroud Gloves", "=ds=#p7# (300)", "", "25.00%"};
- { 10, 18679, "", "=q2=Frigid Ring", "=ds=#s13#", "", "51.01%"};
- { 16, 0, "INV_Box_01", "=q6=#n110#", "=q1=#j22#, #z22#"};
- { 17, 18673, "", "=q3=Avalanchion's Stony Hide", "=ds=#w8#", "", "14.56%"};
- { 18, 19268, "", "=q3=Ace of Elementals", "=ds=#e16#", "", "5.89%"};
- { 19, 18674, "", "=q2=Hardened Stone Band", "=ds=#s13#", "", "41.50%"};
- { 21, 0, "INV_Box_01", "=q6=#n111#", "=q1=#j21#, #z23#"};
- { 22, 18676, "", "=q3=Sash of the Windreaver", "=ds=#s10#, #a3#", "", "16.76%"};
- { 23, 19268, "", "=q3=Ace of Elementals", "=ds=#e16#", "", "9.76%"};
- { 24, 21548, "", "=q3=Pattern: Stormshroud Gloves", "=ds=#p7# (300)", "", "36.28%"};
- { 25, 18677, "", "=q2=Zephyr Cloak", "=ds=#s4#", "", "52.47%"};
- };
+ {
+ Name = AL["WotLK Trinkets"];
+ { 1, 44276, "", "=q4=Chaos Deck", "=ds=#m2#" };
+ { 2, 42989, "", "=q4=Darkmoon Card: Berserker!", "=q1=#m4#: =ds=#s14#" };
+ { 4, 44259, "", "=q4=Prisms Deck", "=ds=#m2#" };
+ { 5, 42988, "", "=q4=Darkmoon Card: Illusion", "=q1=#m4#: =ds=#s14#" };
+ { 7, 44294, "", "=q4=Undeath Deck", "=ds=#m2#" };
+ { 8, 42990, "", "=q4=Darkmoon Card: Death", "=q1=#m4#: =ds=#s14#" };
+ { 16, 44326, "", "=q4=Nobles Deck", "=ds=#m2#" };
+ { 17, 44253, "", "=q4=Darkmoon Card: Greatness", "=q1=#m4#: =ds=#s14#" };
+ { 18, 42987, "", "=q4=Darkmoon Card: Greatness", "=q1=#m4#: =ds=#s14#" };
+ { 19, 44254, "", "=q4=Darkmoon Card: Greatness", "=q1=#m4#: =ds=#s14#" };
+ { 20, 44255, "", "=q4=Darkmoon Card: Greatness", "=q1=#m4#: =ds=#s14#" };
};
+};
- ---------------------------------
- --- Gurubashi Arena Booty Run ---
- ---------------------------------
+--------------------------
+--- Elemental Invasion ---
+--------------------------
- AtlasLoot_Data["GurubashiArena"] = {
- Name = AL["Gurubashi Arena Booty Run"];
- {
- Name = AL["Gurubashi Arena Booty Run"];
- { 1, 18709, "", "=q3=Arena Wristguards", "=ds=#s8#, #a1#", "", "5.0%"};
- { 2, 18710, "", "=q3=Arena Bracers", "=ds=#s8#, #a2#", "", "6.4%"};
- { 3, 18711, "", "=q3=Arena Bands", "=ds=#s8#, #a3#", "", "6.0%"};
- { 4, 18712, "", "=q3=Arena Vambraces", "=ds=#s8#, #a4#", "", "6.8%"};
- { 16, 18706, "", "=q2=Arena Master", "=ds=#s14#, =q1=#m2#", "", "100%"};
- { 17, 19024, "", "=q3=Arena Grand Master", "=q1=#m4#: =ds=#s14#"};
- };
+AtlasLoot_Data["ElementalInvasion"] = {
+ Name = AL["Elemental Invasion"];
+ {
+ Name = AL["Elemental Invasion"];
+ { 1, 0, "INV_Box_01", "=q6=#n108#", "=q1=#j19#, #z20#" };
+ { 2, 18671, "", "=q3=Baron Charr's Sceptre", "=ds=#h1#, #w6#", "", "12.18%" };
+ { 3, 19268, "", "=q3=Ace of Elementals", "=ds=#e16#", "", "10.14%" };
+ { 4, 18672, "", "=q2=Elemental Ember", "=ds=#s15#", "", "53.31%" };
+ { 6, 0, "INV_Box_01", "=q6=#n109#", "=q1=#j20#, #z21#" };
+ { 7, 18678, "", "=q3=Tempestria's Frozen Necklace", "=ds=#s2#", "", "12.33%" };
+ { 8, 19268, "", "=q3=Ace of Elementals", "=ds=#e16#", "", "5.24%" };
+ { 9, 21548, "", "=q3=Pattern: Stormshroud Gloves", "=ds=#p7# (300)", "", "25.00%" };
+ { 10, 18679, "", "=q2=Frigid Ring", "=ds=#s13#", "", "51.01%" };
+ { 16, 0, "INV_Box_01", "=q6=#n110#", "=q1=#j22#, #z22#" };
+ { 17, 18673, "", "=q3=Avalanchion's Stony Hide", "=ds=#w8#", "", "14.56%" };
+ { 18, 19268, "", "=q3=Ace of Elementals", "=ds=#e16#", "", "5.89%" };
+ { 19, 18674, "", "=q2=Hardened Stone Band", "=ds=#s13#", "", "41.50%" };
+ { 21, 0, "INV_Box_01", "=q6=#n111#", "=q1=#j21#, #z23#" };
+ { 22, 18676, "", "=q3=Sash of the Windreaver", "=ds=#s10#, #a3#", "", "16.76%" };
+ { 23, 19268, "", "=q3=Ace of Elementals", "=ds=#e16#", "", "9.76%" };
+ { 24, 21548, "", "=q3=Pattern: Stormshroud Gloves", "=ds=#p7# (300)", "", "36.28%" };
+ { 25, 18677, "", "=q2=Zephyr Cloak", "=ds=#s4#", "", "52.47%" };
};
+};
- ------------------------------------------
- --- Stranglethorn Fishing Extravaganza ---
- ------------------------------------------
+---------------------------------
+--- Gurubashi Arena Booty Run ---
+---------------------------------
- AtlasLoot_Data["FishingExtravaganza"] = {
- Name = "Stranglethorn Fishing";
- {
- Name = AL["Stranglethorn Fishing Extravaganza"];
- { 1, 0, "INV_Box_01", "=q6=#j24#", "=q1=#j23#"};
- { 2, 19970, "", "=q3=Arcanite Fishing Pole", "=ds=#e20#"};
- { 3, 19979, "", "=q3=Hook of the Master Angler", "=ds=#s14#"};
- { 5, 0, "INV_Box_01", "=q6=#j26#", ""};
- { 6, 19805, "", "=q2=Keefer's Angelfish", "=ds=#e21#", "", ""};
- { 7, 19803, "", "=q2=Brownell's Blue Striped Racer", "=ds=#e21#", "", ""};
- { 8, 19806, "", "=q2=Dezian Queenfish", "=ds=#e21#", "", ""};
- { 9, 19808, "", "=q2=Rockhide Strongfish", "=ds=#h1#, #w6#", "", ""};
- { 20, 0, "INV_Box_01", "=q6=#j25#", ""};
- { 21, 19972, "", "=q2=Lucky Fishing Hat", "=ds=#s1#, #a1#"};
- { 22, 19969, "", "=q2=Nat Pagle's Extreme Anglin' Boots", "=ds=#s12#, #a1#"};
- { 23, 19971, "", "=q2=High Test Eternium Fishing Line", "=ds=#e20# #e17#"};
- };
+AtlasLoot_Data["GurubashiArena"] = {
+ Name = AL["Gurubashi Arena Booty Run"];
+ {
+ Name = AL["Gurubashi Arena Booty Run"];
+ { 1, 18709, "", "=q3=Arena Wristguards", "=ds=#s8#, #a1#", "", "5.0%" };
+ { 2, 18710, "", "=q3=Arena Bracers", "=ds=#s8#, #a2#", "", "6.4%" };
+ { 3, 18711, "", "=q3=Arena Bands", "=ds=#s8#, #a3#", "", "6.0%" };
+ { 4, 18712, "", "=q3=Arena Vambraces", "=ds=#s8#, #a4#", "", "6.8%" };
+ { 16, 18706, "", "=q2=Arena Master", "=ds=#s14#, =q1=#m2#", "", "100%" };
+ { 17, 19024, "", "=q3=Arena Grand Master", "=q1=#m4#: =ds=#s14#" };
};
+};
- ------------------------
- --- Triggered Events ---
- ------------------------
+------------------------------------------
+--- Stranglethorn Fishing Extravaganza ---
+------------------------------------------
- -----------------------
- --- Abyssal Council ---
- -----------------------
-
- AtlasLoot_Data["AbyssalCouncil"] = {
- Name = AL["Abyssal Council"];
- {
- Name = AL["Templars"];
- { 1, 0, "INV_Box_01", "=q6=#n96#", "=q1=#j19#"};
- { 2, 20657, "", "=q3=Crystal Tipped Stiletto", "=ds=#h1#, #w4#", "", "2.31%"};
- { 3, 20655, "", "=q2=Abyssal Cloth Handwraps", "=ds=#s9#, #a1#, =q2=#m16#", "", "13.03%"};
- { 4, 20656, "", "=q2=Abyssal Mail Sabatons", "=ds=#s12#, #a3# =q2=#m16#", "", "12.89%"};
- { 5, 20513, "", "=q2=Abyssal Crest", "=ds=#m3#", "", "100%"};
- { 7, 0, "INV_Box_01", "=q6=#n97#", "=q1=#j20#"};
- { 8, 20654, "", "=q3=Amethyst War Staff", "=ds=#w9#", "", "2.38%"};
- { 9, 20652, "", "=q2=Abyssal Cloth Slippers", "=ds=#s12#, #a1# =q2=#m16#", "", "12.94%"};
- { 10, 20653, "", "=q2=Abyssal Plate Gauntlets", "=ds=#s9#, #a4# =q2=#m16#", "", "13.61%"};
- { 11, 20513, "", "=q2=Abyssal Crest", "=ds=#m3#", "", "100%"};
- { 16, 0, "INV_Box_01", "=q6=#n98#", "=q1=#j21#"};
- { 17, 20660, "", "=q3=Stonecutting Glaive", "=ds=#w7#", "", "2.22%"};
- { 18, 20658, "", "=q2=Abyssal Leather Boots", "=ds=#s12#, #a2# =q2=#m16#", "", "13.16%"};
- { 19, 20659, "", "=q2=Abyssal Mail Handguards", "=ds=#s9#, #a3# =q2=#m16#", "", "12.64%"};
- { 20, 20513, "", "=q2=Abyssal Crest", "=ds=#m3#", "", "100%"};
- { 22, 0, "INV_Box_01", "=q6=#n99#", "=q1=#j22#"};
- { 23, 20663, "", "=q3=Deep Strike Bow", "=ds=#w2#", "", "2.55%"};
- { 24, 20661, "", "=q2=Abyssal Leather Gloves", "=ds=#s9#, #a2# =q2=#m16#", "", "13.16%"};
- { 25, 20662, "", "=q2=Abyssal Plate Greaves", "=ds=#s12#, #a4# =q2=#m16#", "", "12.93%"};
- { 26, 20513, "", "=q2=Abyssal Crest", "=ds=#m3#", "", "100%"};
- };
- {
- Name = AL["Dukes"];
- { 1, 0, "INV_Box_01", "=q6=#n100#", "=q1=#j19#"};
- { 2, 20665, "", "=q3=Abyssal Leather Leggings", "=ds=#s11#, #a2# =q2=#m16#", "", "22.50%"};
- { 3, 20666, "", "=q3=Hardened Steel Warhammer", "=ds=#h3#, #w6#", "", "30.47%"};
- { 4, 20514, "", "=q3=Abyssal Signet", "=ds=#m3#", "", "100%"};
- { 5, 20664, "", "=q2=Abyssal Cloth Sash", "=ds=#s10#, #a1# =q2=#m16#", "", "27.08%"};
- { 6, 21989, "", "=q1=Cinder of Cynders", "=ds=#m3#", "", "100%"};
- { 8, 0, "INV_Box_01", "=q6=#n101#", "=q1=#j20#"};
- { 9, 20668, "", "=q3=Abyssal Mail Legguards", "=ds=#s11#, #a3# =q2=#m16#", "", "22.40%"};
- { 10, 20669, "", "=q3=Darkstone Claymore", "=ds=#h2#, #w10#", "", "29.62%"};
- { 11, 20514, "", "=q3=Abyssal Signet", "=ds=#m3#", "", "100%"};
- { 12, 20667, "", "=q2=Abyssal Leather Belt", "=ds=#s10#, #a2# =q2=#m16#", "", "29.04%"};
- { 16, 0, "INV_Box_01", "=q6=#n102#", "=q1=#j21#"};
- { 17, 20674, "", "=q3=Abyssal Cloth Pants", "=ds=#s11#, #a1# =q2=#m16#", "", "21.83%"};
- { 18, 20675, "", "=q3=Soulrender", "=ds=#h1#, #w1#", "", "29.73%"};
- { 19, 20514, "", "=q3=Abyssal Signet", "=ds=#m3#", "", "100%"};
- { 20, 20673, "", "=q2=Abyssal Plate Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "27.11%"};
- { 23, 0, "INV_Box_01", "=q6=#n103#", "=q1=#j22#"};
- { 24, 20671, "", "=q3=Abyssal Plate Legplates", "=ds=#s11#, #a4# =q2=#m16#", "", "22.63%"};
- { 25, 20672, "", "=q3=Sparkling Crystal Wand", "=ds=#w12#", "", "28.90%"};
- { 26, 20514, "", "=q3=Abyssal Signet", "=ds=#m3#", "", "100%"};
- { 27, 20670, "", "=q2=Abyssal Mail Clutch", "=ds=#s10#, #a3# =q2=#m16#", "", "28.16%"};
- };
- {
- Name = AL["High Council"];
- { 1, 0, "INV_Box_01", "=q6=#n104#", "=q1=#j19#"};
- { 2, 20682, "", "=q4=Elemental Focus Band", "=ds=#s13#", "", "22.83%"};
- { 3, 20515, "", "=q4=Abyssal Scepter", "=ds=#m3#", "", "100%"};
- { 4, 20681, "", "=q3=Abyssal Leather Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "24.70%"};
- { 5, 20680, "", "=q3=Abyssal Mail Pauldrons", "=ds=#s3#, #a3# =q2=#m16#", "", "24.21%"};
- { 7, 0, "INV_Box_01", "=q6=#n105#", "=q1=#j20#"};
- { 8, 20685, "", "=q4=Wavefront Necklace", "=ds=#s2#", "", "24.48%"};
- { 9, 20515, "", "=q4=Abyssal Scepter", "=ds=#m3#", "", "100%"};
- { 10, 20684, "", "=q3=Abyssal Mail Armguards", "=ds=#s8#, #a3# =q2=#m16#", "", "27.68%"};
- { 11, 20683, "", "=q3=Abyssal Plate Epaulets", "=ds=#s3#, #a4# =q2=#m16#", "", "21.52%"};
- { 16, 0, "INV_Box_01", "=q6=#n106#", "=q1=#j21#"};
- { 17, 20691, "", "=q4=Windshear Cape", "=ds=#s4#", "", "22.08%"};
- { 18, 20515, "", "=q4=Abyssal Scepter", "=ds=#m3#", "", "100%"};
- { 19, 20690, "", "=q3=Abyssal Cloth Wristbands", "=ds=#s8#, #a1# =q2=#m16#", "", "23.60%"};
- { 20, 20689, "", "=q3=Abyssal Leather Shoulders", "=ds=#s3#, #a3# =q2=#m16#", "", "23.40%"};
- { 22, 0, "INV_Box_01", "=q6=#n107#", "=q1=#j22#"};
- { 23, 20688, "", "=q4=Earthen Guard", "=ds=#w8#", "", "20.64%"};
- { 24, 20515, "", "=q4=Abyssal Scepter", "=ds=#m3#", "", "100%"};
- { 25, 20686, "", "=q3=Abyssal Cloth Amice", "=ds=#s3#, #a1# =q2=#m16#", "", "23.96%"};
- { 26, 20687, "", "=q3=Abyssal Plate Vambraces", "=ds=#s8#, #a4# =q2=#m16#", "", "23.66%"};
- };
+AtlasLoot_Data["FishingExtravaganza"] = {
+ Name = "Stranglethorn Fishing";
+ {
+ Name = AL["Stranglethorn Fishing Extravaganza"];
+ { 1, 0, "INV_Box_01", "=q6=#j24#", "=q1=#j23#" };
+ { 2, 19970, "", "=q3=Arcanite Fishing Pole", "=ds=#e20#" };
+ { 3, 19979, "", "=q3=Hook of the Master Angler", "=ds=#s14#" };
+ { 5, 0, "INV_Box_01", "=q6=#j26#", "" };
+ { 6, 19805, "", "=q2=Keefer's Angelfish", "=ds=#e21#", "", "" };
+ { 7, 19803, "", "=q2=Brownell's Blue Striped Racer", "=ds=#e21#", "", "" };
+ { 8, 19806, "", "=q2=Dezian Queenfish", "=ds=#e21#", "", "" };
+ { 9, 19808, "", "=q2=Rockhide Strongfish", "=ds=#h1#, #w6#", "", "" };
+ { 20, 0, "INV_Box_01", "=q6=#j25#", "" };
+ { 21, 19972, "", "=q2=Lucky Fishing Hat", "=ds=#s1#, #a1#" };
+ { 22, 19969, "", "=q2=Nat Pagle's Extreme Anglin' Boots", "=ds=#s12#, #a1#" };
+ { 23, 19971, "", "=q2=High Test Eternium Fishing Line", "=ds=#e20# #e17#" };
};
+};
- -----------------------
- --- Ethereum Prison ---
- -----------------------
+------------------------
+--- Triggered Events ---
+------------------------
- AtlasLoot_Data["EthereumPrison"] = {
- Name = AL["Ethereum Prison"];
- {
- Name = AL["Armbreaker Huffaz"];
- { 1, 31943, "", "=q3=Ethereum Band", "=ds=#s13# =q2=#m16#", "", "10.7%"};
- { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "1.36%"};
- { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "0.4%"};
- { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "0.36%"};
- { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "1.1%"};
- { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "0.6%"};
- { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%"};
- { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "0.7%"};
- { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "0.8%"};
- { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "0.5%"};
- { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "1.0%"};
- { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "1.3%"};
- };
- {
- Name = AL["Fel Tinkerer Zortan"];
- { 1, 31573, "", "=q3=Mistshroud Boots", "=ds=#s12#, #a3# =q2=#m16#", "", "9.7%"};
- { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "0.94%"};
- { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "1.0%"};
- { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "0.94%"};
- { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "0.4%"};
- { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "0.7%"};
- { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%"};
- { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "1.0%"};
- { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "1.3%"};
- { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "1.2%"};
- { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "1.0%"};
- { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "1.2%"};
- };
- {
- Name = AL["Forgosh"];
- { 1, 31565, "", "=q3=Skystalker's Boots", "=ds=#s12#, #a2# =q2=#m16#", "", "8.5%"};
- { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "2.63%"};
- { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "0.29%"};
- { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "0.9%"};
- { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "0.7%"};
- { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "1.0%"};
- { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%"};
- { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "0.9%"};
- { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "1.9%"};
- { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "0.5%"};
- { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "1.0%"};
- { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "0.7%"};
- };
- {
- Name = AL["Gul'bor"];
- { 1, 31940, "", "=q3=Ethereum Torque", "=ds=#s2# =q2=#m16#", "", "9.5%"};
- { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "0.66%"};
- { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "0.66%"};
- { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "1.1%"};
- { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "1.1%"};
- { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "0.8%"};
- { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%"};
- { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "0.7%"};
- { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "0.9%"};
- { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "0.8%"};
- { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "0.8%"};
- { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "2.0%"};
- };
- {
- Name = AL["Malevus the Mad"];
- { 1, 31581, "", "=q3=Slatesteel Boots", "=ds=#s12#, #a4# =q2=#m16#", "", "10.5%"};
- { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "2.46%"};
- { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "0.70%"};
- { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "1.5%"};
- { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "0.7%"};
- { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "1.3%"};
- { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%"};
- { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "0.5%"};
- { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "0.8%"};
- { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "1.75%"};
- { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "0.6%"};
- { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "1.8%"};
- };
- {
- Name = AL["Porfus the Gem Gorger"];
- { 1, 31557, "", "=q3=Windchanneller's Boots", "=ds=#s12#, #a1# =q2=#m16#", "", "7.9%"};
- { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "1.89%"};
- { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "0.81%"};
- { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "1.0%"};
- { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "0.7%"};
- { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "1.1%"};
- { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%"};
- { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "0.7%"};
- { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "0.6%"};
- { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "1.8%"};
- { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "1.0%"};
- { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "1.1%"};
- };
- {
- Name = AL["Wrathbringer Laz-tarash"];
- { 1, 32520, "", "=q3=Manaforged Sphere", "=ds=#s15# =q2=#m16#", "", "10.4%"};
- { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "1.06%"};
- { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "1.06%"};
- { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "0.8%"};
- { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "1.5%"};
- { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "0.3%"};
- { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%"};
- { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "0.7%"};
- { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "0.7%"};
- { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "1.2%"};
- { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "1.1%"};
- { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "1.1%"};
- };
- {
- Name = AL["Bash'ir Landing Stasis Chambers"];
- { 1, 0, "INV_Box_01", "=q6=#n118#", ""};
- { 2, 32522, "", "=q3=Demonic Bulwark", "=ds=#w8# =q2=#m16#", "", ""};
- { 3, 31941, "", "=q2=Mark of the Nexus-King", "=ds=#m3#", "", ""};
- { 5, 0, "INV_Box_01", "=q6=#n119#", ""};
- { 6, 31577, "", "=q3=Slatesteel Shoulders", "=ds=#s3#, #a4# =q2=#m16#", "", ""};
- { 7, 31941, "", "=q2=Mark of the Nexus-King", "=ds=#m3#", "", ""};
- { 9, 0, "INV_Box_01", "=q6=#n120#", ""};
- { 10, 31569, "", "=q3=Mistshroud Shoulders", "=ds=#s3#, #a3# =q2=#m16#", "", ""};
- { 11, 31941, "", "=q2=Mark of the Nexus-King", "=ds=#m3#", "", ""};
- { 16, 0, "INV_Box_01", "=q6=#n121#", ""};
- { 17, 31553, "", "=q3=Windchanneller's Mantle", "=ds=#s3#, #a1# =q2=#m16#", "", ""};
- { 18, 31941, "", "=q2=Mark of the Nexus-King", "=ds=#m3#", "", ""};
- { 20, 0, "INV_Box_01", "=q6=#n122#", ""};
- { 21, 31561, "", "=q3=Skystalker's Shoulders", "=ds=#s3#, #a2# =q2=#m16#", "", ""};
- { 22, 31941, "", "=q2=Mark of the Nexus-King", "=ds=#m3#", "", ""};
- };
+-----------------------
+--- Abyssal Council ---
+-----------------------
+
+AtlasLoot_Data["AbyssalCouncil"] = {
+ Name = AL["Abyssal Council"];
+ {
+ Name = AL["Templars"];
+ { 1, 0, "INV_Box_01", "=q6=#n96#", "=q1=#j19#" };
+ { 2, 20657, "", "=q3=Crystal Tipped Stiletto", "=ds=#h1#, #w4#", "", "2.31%" };
+ { 3, 20655, "", "=q2=Abyssal Cloth Handwraps", "=ds=#s9#, #a1#, =q2=#m16#", "", "13.03%" };
+ { 4, 20656, "", "=q2=Abyssal Mail Sabatons", "=ds=#s12#, #a3# =q2=#m16#", "", "12.89%" };
+ { 5, 20513, "", "=q2=Abyssal Crest", "=ds=#m3#", "", "100%" };
+ { 7, 0, "INV_Box_01", "=q6=#n97#", "=q1=#j20#" };
+ { 8, 20654, "", "=q3=Amethyst War Staff", "=ds=#w9#", "", "2.38%" };
+ { 9, 20652, "", "=q2=Abyssal Cloth Slippers", "=ds=#s12#, #a1# =q2=#m16#", "", "12.94%" };
+ { 10, 20653, "", "=q2=Abyssal Plate Gauntlets", "=ds=#s9#, #a4# =q2=#m16#", "", "13.61%" };
+ { 11, 20513, "", "=q2=Abyssal Crest", "=ds=#m3#", "", "100%" };
+ { 16, 0, "INV_Box_01", "=q6=#n98#", "=q1=#j21#" };
+ { 17, 20660, "", "=q3=Stonecutting Glaive", "=ds=#w7#", "", "2.22%" };
+ { 18, 20658, "", "=q2=Abyssal Leather Boots", "=ds=#s12#, #a2# =q2=#m16#", "", "13.16%" };
+ { 19, 20659, "", "=q2=Abyssal Mail Handguards", "=ds=#s9#, #a3# =q2=#m16#", "", "12.64%" };
+ { 20, 20513, "", "=q2=Abyssal Crest", "=ds=#m3#", "", "100%" };
+ { 22, 0, "INV_Box_01", "=q6=#n99#", "=q1=#j22#" };
+ { 23, 20663, "", "=q3=Deep Strike Bow", "=ds=#w2#", "", "2.55%" };
+ { 24, 20661, "", "=q2=Abyssal Leather Gloves", "=ds=#s9#, #a2# =q2=#m16#", "", "13.16%" };
+ { 25, 20662, "", "=q2=Abyssal Plate Greaves", "=ds=#s12#, #a4# =q2=#m16#", "", "12.93%" };
+ { 26, 20513, "", "=q2=Abyssal Crest", "=ds=#m3#", "", "100%" };
};
-
- ----------------
- --- Shartuul ---
- ----------------
-
- AtlasLoot_Data["Shartuul"] = {
- Name = AL["Shartuul"];
- {
- Name = AL["Shartuul"];
- { 1, 32941, "", "=q4=Corruptor's Signet", "=ds=#s13#", "", "6.0%"};
- { 3, 32676, "", "=q4=Depleted Cloth Bracers", "=ds=#m20#", "", "5.0%"};
- { 4, 32675, "", "=q4=Depleted Mail Gauntlets", "=ds=#m20#", "", "7.0%"};
- { 5, 32677, "", "=q3=Depleted Cloak", "=ds=#m20#", "", "9.0%"};
- { 6, 32678, "", "=q3=Depleted Ring", "=ds=#m20#", "", "9.0%"};
- { 7, 32672, "", "=q3=Depleted Badge", "=ds=#m20#", "", "13.0%"};
- { 8, 32673, "", "=q3=Depleted Dagger", "=ds=#m20#", "", "6.0%"};
- { 9, 32674, "", "=q3=Depleted Sword", "=ds=#m20#", "", "14.0%"};
- { 10, 32670, "", "=q3=Depleted Two-Handed Axe", "=ds=#m20#", "", "0.02%"};
- { 11, 32671, "", "=q3=Depleted Mace", "=ds=#m20#", "", "11.0%"};
- { 12, 32679, "", "=q3=Depleted Staff", "=ds=#m20#", "", "6.0%"};
- { 16, 32942, "", "=q4=Ring of the Overseer", "=ds=#s13#", "", "1.4%"};
- { 18, 32655, "", "=q4=Crystalweave Bracers", "=ds=#s8#, #a1#"};
- { 19, 32656, "", "=q4=Crystalhide Handwraps", "=ds=#s9#, #a3#"};
- { 20, 32665, "", "=q3=Crystalweave Cape", "=ds=#s4#"};
- { 21, 32664, "", "=q3=Dreamcrystal Band", "=ds=#s13#"};
- { 22, 32658, "", "=q3=Badge of Tenacity", "=ds=#s14#"};
- { 23, 32659, "", "=q3=Crystal-Infused Shiv", "=ds=#h1#, #w4#"};
- { 24, 32660, "", "=q3=Crystalforged Sword", "=ds=#h3#, #w10#"};
- { 25, 32663, "", "=q3=Apexis Cleaver", "=ds=#h2#, #w1#"};
- { 26, 32661, "", "=q3=Apexis Crystal Mace", "=ds=#h1#, #w6#"};
- { 27, 32662, "", "=q3=Flaming Quartz Staff", "=ds=#w9#"};
- };
+ {
+ Name = AL["Dukes"];
+ { 1, 0, "INV_Box_01", "=q6=#n100#", "=q1=#j19#" };
+ { 2, 20665, "", "=q3=Abyssal Leather Leggings", "=ds=#s11#, #a2# =q2=#m16#", "", "22.50%" };
+ { 3, 20666, "", "=q3=Hardened Steel Warhammer", "=ds=#h3#, #w6#", "", "30.47%" };
+ { 4, 20514, "", "=q3=Abyssal Signet", "=ds=#m3#", "", "100%" };
+ { 5, 20664, "", "=q2=Abyssal Cloth Sash", "=ds=#s10#, #a1# =q2=#m16#", "", "27.08%" };
+ { 6, 21989, "", "=q1=Cinder of Cynders", "=ds=#m3#", "", "100%" };
+ { 8, 0, "INV_Box_01", "=q6=#n101#", "=q1=#j20#" };
+ { 9, 20668, "", "=q3=Abyssal Mail Legguards", "=ds=#s11#, #a3# =q2=#m16#", "", "22.40%" };
+ { 10, 20669, "", "=q3=Darkstone Claymore", "=ds=#h2#, #w10#", "", "29.62%" };
+ { 11, 20514, "", "=q3=Abyssal Signet", "=ds=#m3#", "", "100%" };
+ { 12, 20667, "", "=q2=Abyssal Leather Belt", "=ds=#s10#, #a2# =q2=#m16#", "", "29.04%" };
+ { 16, 0, "INV_Box_01", "=q6=#n102#", "=q1=#j21#" };
+ { 17, 20674, "", "=q3=Abyssal Cloth Pants", "=ds=#s11#, #a1# =q2=#m16#", "", "21.83%" };
+ { 18, 20675, "", "=q3=Soulrender", "=ds=#h1#, #w1#", "", "29.73%" };
+ { 19, 20514, "", "=q3=Abyssal Signet", "=ds=#m3#", "", "100%" };
+ { 20, 20673, "", "=q2=Abyssal Plate Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "27.11%" };
+ { 23, 0, "INV_Box_01", "=q6=#n103#", "=q1=#j22#" };
+ { 24, 20671, "", "=q3=Abyssal Plate Legplates", "=ds=#s11#, #a4# =q2=#m16#", "", "22.63%" };
+ { 25, 20672, "", "=q3=Sparkling Crystal Wand", "=ds=#w12#", "", "28.90%" };
+ { 26, 20514, "", "=q3=Abyssal Signet", "=ds=#m3#", "", "100%" };
+ { 27, 20670, "", "=q2=Abyssal Mail Clutch", "=ds=#s10#, #a3# =q2=#m16#", "", "28.16%" };
};
-
- ---------------
- --- Skettis ---
- ---------------
-
- AtlasLoot_Data["Skettis"] = {
- Name = AL["Skettis"];
- {
- Name = AL["Darkscreecher Akkarai"];
- { 1, 32529, "", "=q3=Heretic's Gauntlets", "=ds=#s9#, #a4#", "", "17.3%"};
- { 2, 32715, "", "=q2=Akkarai's Talons", "=ds=#m3#", "", "100%"};
- { 4, 31558, "", "=q3=Windchanneller's Bindings", "=ds=#s8#, #a1# =q2=#m16#", "", "5.3%"};
- { 5, 31555, "", "=q3=Windchanneller's Ceinture", "=ds=#s10#, #a1# =q2=#m16#", "", "4.3%"};
- { 6, 31566, "", "=q3=Skystalker's Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "6.8%"};
- { 7, 31563, "", "=q3=Skystalker's Cord", "=ds=#s10#, #a2# =q2=#m16#", "", "6.2%"};
- { 8, 31574, "", "=q3=Mistshroud Bracers", "=ds=#s8#, #a3# =q2=#m16#", "", "4.1%"};
- { 9, 31571, "", "=q3=Mistshroud Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "4.5%"};
- { 10, 31582, "", "=q3=Slatesteel Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "6.7%"};
- { 11, 31579, "", "=q3=Slatesteel Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "5.5%"};
- { 12, 32514, "", "=q3=Skettis Band", "=ds=#s13# =q2=#m16#", "", "31.5%"};
- };
- {
- Name = AL["Karrog"];
- { 1, 32533, "", "=q3=Karrog's Shard", "=ds=#s15#", "", "15.0%"};
- { 2, 32717, "", "=q2=Karrog's Spine", "=ds=#m3#", "", "100%"};
- { 4, 31558, "", "=q3=Windchanneller's Bindings", "=ds=#s8#, #a1# =q2=#m16#", "", "5.6%"};
- { 5, 31555, "", "=q3=Windchanneller's Ceinture", "=ds=#s10#, #a1# =q2=#m16#", "", "6.8%"};
- { 6, 31566, "", "=q3=Skystalker's Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "6.0%"};
- { 7, 31563, "", "=q3=Skystalker's Cord", "=ds=#s10#, #a2# =q2=#m16#", "", "8.0%"};
- { 8, 31574, "", "=q3=Mistshroud Bracers", "=ds=#s8#, #a3# =q2=#m16#", "", "5.6%"};
- { 9, 31571, "", "=q3=Mistshroud Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "3.6%"};
- { 10, 31582, "", "=q3=Slatesteel Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "4.3%"};
- { 11, 31579, "", "=q3=Slatesteel Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "5.3%"};
- { 12, 32514, "", "=q3=Skettis Band", "=ds=#s13# =q2=#m16#", "", "24.9%"};
- };
- {
- Name = AL["Gezzarak the Huntress"];
- { 1, 32531, "", "=q3=Gezzarak's Fang", "=ds=#s2#", "", "16.9%"};
- { 2, 32716, "", "=q2=Gezzarak's Claws", "=ds=#m3#", "", "100%"};
- { 4, 31558, "", "=q3=Windchanneller's Bindings", "=ds=#s8#, #a1# =q2=#m16#", "", "5.2%"};
- { 5, 31555, "", "=q3=Windchanneller's Ceinture", "=ds=#s10#, #a1# =q2=#m16#", "", "6.9%"};
- { 6, 31566, "", "=q3=Skystalker's Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "5.2%"};
- { 7, 31563, "", "=q3=Skystalker's Cord", "=ds=#s10#, #a2# =q2=#m16#", "", "4.9%"};
- { 8, 31574, "", "=q3=Mistshroud Bracers", "=ds=#s8#, #a3# =q2=#m16#", "", "5.8%"};
- { 9, 31571, "", "=q3=Mistshroud Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "5.4%"};
- { 10, 31582, "", "=q3=Slatesteel Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "6.2%"};
- { 11, 31579, "", "=q3=Slatesteel Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "4.6%"};
- { 12, 32514, "", "=q3=Skettis Band", "=ds=#s13# =q2=#m16#", "", "25.7%"};
- };
- {
- Name = AL["Vakkiz the Windrager"];
- { 1, 32532, "", "=q3=Windrager's Coils", "=ds=#s8#, #a3#", "", "18.1%"};
- { 2, 32718, "", "=q2=Vakkiz's Scale", "=ds=#m3#", "", "100%"};
- { 4, 31558, "", "=q3=Windchanneller's Bindings", "=ds=#s8#, #a1# =q2=#m16#", "", "5.0%"};
- { 5, 31555, "", "=q3=Windchanneller's Ceinture", "=ds=#s10#, #a1# =q2=#m16#", "", "4.4%"};
- { 6, 31566, "", "=q3=Skystalker's Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "4.1%"};
- { 7, 31563, "", "=q3=Skystalker's Cord", "=ds=#s10#, #a2# =q2=#m16#", "", "3.9%"};
- { 8, 31574, "", "=q3=Mistshroud Bracers", "=ds=#s8#, #a3# =q2=#m16#", "", "5.7%"};
- { 9, 31571, "", "=q3=Mistshroud Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "6.3%"};
- { 10, 31582, "", "=q3=Slatesteel Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "5.8%"};
- { 11, 31579, "", "=q3=Slatesteel Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "2.7%"};
- { 12, 32514, "", "=q3=Skettis Band", "=ds=#s13# =q2=#m16#", "", "28.7%"};
- };
- {
- Name = AL["Terokk"];
- { 1, 32540, "", "=q4=Terokk's Might", "=ds=#s4#", "", "4.6%"};
- { 2, 32541, "", "=q4=Terokk's Wisdom", "=ds=#s4#", "", "4.6%"};
- { 3, 31556, "", "=q3=Windchanneller's Leggings", "=ds=#s11#, #a1# =q2=#m16#", "", "14.3%"};
- { 4, 31564, "", "=q3=Skystalker's Leggings", "=ds=#s11#, #a2# =q2=#m16#", "", "13.9%"};
- { 5, 31572, "", "=q3=Mistshroud Pants", "=ds=#s11#, #a3# =q2=#m16#", "", "10.7%"};
- { 6, 31580, "", "=q3=Slatesteel Leggings", "=ds=#s11#, #a4# =q2=#m16#", "", "11.6%"};
- { 7, 32535, "", "=q3=Gift of the Talonpriests", "=ds=#s13#", "", "7.9%"};
- { 8, 32534, "", "=q3=Brooch of the Immortal King", "=ds=#s14#", "", "11.2%"};
- { 9, 32782, "", "=q3=Time-Lost Figurine", "=ds=#s14#", "", ""};
- { 10, 32536, "", "=q3=Terokk's Gavel", "=ds=#h1#, #w6# =q2=#m16#", "", "6.7%"};
- { 11, 32537, "", "=q3=Terokk's Gavel", "=ds=#h1#, #w6# =q2=#m16#", "", "7.9%"};
- };
- {
- Name = "Talonpriest Ishaal";
- { 1, 32523, "", "=q1=Ishaal's Almanac", "=ds=#m2#"};
- };
- {
- Name = "Hazzik's Package";
- { 1, 32687, "", "=q1=Hazzik's Package", "=ds=#m3#"};
- };
+ {
+ Name = AL["High Council"];
+ { 1, 0, "INV_Box_01", "=q6=#n104#", "=q1=#j19#" };
+ { 2, 20682, "", "=q4=Elemental Focus Band", "=ds=#s13#", "", "22.83%" };
+ { 3, 20515, "", "=q4=Abyssal Scepter", "=ds=#m3#", "", "100%" };
+ { 4, 20681, "", "=q3=Abyssal Leather Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "24.70%" };
+ { 5, 20680, "", "=q3=Abyssal Mail Pauldrons", "=ds=#s3#, #a3# =q2=#m16#", "", "24.21%" };
+ { 7, 0, "INV_Box_01", "=q6=#n105#", "=q1=#j20#" };
+ { 8, 20685, "", "=q4=Wavefront Necklace", "=ds=#s2#", "", "24.48%" };
+ { 9, 20515, "", "=q4=Abyssal Scepter", "=ds=#m3#", "", "100%" };
+ { 10, 20684, "", "=q3=Abyssal Mail Armguards", "=ds=#s8#, #a3# =q2=#m16#", "", "27.68%" };
+ { 11, 20683, "", "=q3=Abyssal Plate Epaulets", "=ds=#s3#, #a4# =q2=#m16#", "", "21.52%" };
+ { 16, 0, "INV_Box_01", "=q6=#n106#", "=q1=#j21#" };
+ { 17, 20691, "", "=q4=Windshear Cape", "=ds=#s4#", "", "22.08%" };
+ { 18, 20515, "", "=q4=Abyssal Scepter", "=ds=#m3#", "", "100%" };
+ { 19, 20690, "", "=q3=Abyssal Cloth Wristbands", "=ds=#s8#, #a1# =q2=#m16#", "", "23.60%" };
+ { 20, 20689, "", "=q3=Abyssal Leather Shoulders", "=ds=#s3#, #a3# =q2=#m16#", "", "23.40%" };
+ { 22, 0, "INV_Box_01", "=q6=#n107#", "=q1=#j22#" };
+ { 23, 20688, "", "=q4=Earthen Guard", "=ds=#w8#", "", "20.64%" };
+ { 24, 20515, "", "=q4=Abyssal Scepter", "=ds=#m3#", "", "100%" };
+ { 25, 20686, "", "=q3=Abyssal Cloth Amice", "=ds=#s3#, #a1# =q2=#m16#", "", "23.96%" };
+ { 26, 20687, "", "=q3=Abyssal Plate Vambraces", "=ds=#s8#, #a4# =q2=#m16#", "", "23.66%" };
};
+};
- -----------------------
- --- One Time Events ---
- -----------------------
+-----------------------
+--- Ethereum Prison ---
+-----------------------
- ------------------------
- --- Scourge Invasion ---
- ------------------------
+AtlasLoot_Data["EthereumPrison"] = {
+ Name = AL["Ethereum Prison"];
+ {
+ Name = AL["Armbreaker Huffaz"];
+ { 1, 31943, "", "=q3=Ethereum Band", "=ds=#s13# =q2=#m16#", "", "10.7%" };
+ { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "1.36%" };
+ { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "0.4%" };
+ { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "0.36%" };
+ { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "1.1%" };
+ { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "0.6%" };
+ { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%" };
+ { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "0.7%" };
+ { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "0.8%" };
+ { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "0.5%" };
+ { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "1.0%" };
+ { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "1.3%" };
+ };
+ {
+ Name = AL["Fel Tinkerer Zortan"];
+ { 1, 31573, "", "=q3=Mistshroud Boots", "=ds=#s12#, #a3# =q2=#m16#", "", "9.7%" };
+ { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "0.94%" };
+ { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "1.0%" };
+ { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "0.94%" };
+ { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "0.4%" };
+ { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "0.7%" };
+ { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%" };
+ { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "1.0%" };
+ { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "1.3%" };
+ { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "1.2%" };
+ { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "1.0%" };
+ { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "1.2%" };
+ };
+ {
+ Name = AL["Forgosh"];
+ { 1, 31565, "", "=q3=Skystalker's Boots", "=ds=#s12#, #a2# =q2=#m16#", "", "8.5%" };
+ { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "2.63%" };
+ { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "0.29%" };
+ { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "0.9%" };
+ { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "0.7%" };
+ { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "1.0%" };
+ { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%" };
+ { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "0.9%" };
+ { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "1.9%" };
+ { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "0.5%" };
+ { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "1.0%" };
+ { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "0.7%" };
+ };
+ {
+ Name = AL["Gul'bor"];
+ { 1, 31940, "", "=q3=Ethereum Torque", "=ds=#s2# =q2=#m16#", "", "9.5%" };
+ { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "0.66%" };
+ { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "0.66%" };
+ { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "1.1%" };
+ { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "1.1%" };
+ { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "0.8%" };
+ { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%" };
+ { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "0.7%" };
+ { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "0.9%" };
+ { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "0.8%" };
+ { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "0.8%" };
+ { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "2.0%" };
+ };
+ {
+ Name = AL["Malevus the Mad"];
+ { 1, 31581, "", "=q3=Slatesteel Boots", "=ds=#s12#, #a4# =q2=#m16#", "", "10.5%" };
+ { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "2.46%" };
+ { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "0.70%" };
+ { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "1.5%" };
+ { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "0.7%" };
+ { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "1.3%" };
+ { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%" };
+ { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "0.5%" };
+ { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "0.8%" };
+ { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "1.75%" };
+ { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "0.6%" };
+ { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "1.8%" };
+ };
+ {
+ Name = AL["Porfus the Gem Gorger"];
+ { 1, 31557, "", "=q3=Windchanneller's Boots", "=ds=#s12#, #a1# =q2=#m16#", "", "7.9%" };
+ { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "1.89%" };
+ { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "0.81%" };
+ { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "1.0%" };
+ { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "0.7%" };
+ { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "1.1%" };
+ { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%" };
+ { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "0.7%" };
+ { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "0.6%" };
+ { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "1.8%" };
+ { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "1.0%" };
+ { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "1.1%" };
+ };
+ {
+ Name = AL["Wrathbringer Laz-tarash"];
+ { 1, 32520, "", "=q3=Manaforged Sphere", "=ds=#s15# =q2=#m16#", "", "10.4%" };
+ { 3, 31939, "", "=q3=Dark Cloak", "=ds=#s4# =q2=#m16#", "", "1.06%" };
+ { 4, 31938, "", "=q3=Enigmatic Cloak", "=ds=#s4# =q2=#m16#", "", "1.06%" };
+ { 5, 31936, "", "=q3=Fiery Cloak", "=ds=#s4# =q2=#m16#", "", "0.8%" };
+ { 6, 31935, "", "=q3=Frigid Cloak", "=ds=#s4# =q2=#m16#", "", "1.5%" };
+ { 7, 31937, "", "=q3=Living Cloak", "=ds=#s4# =q2=#m16#", "", "0.3%" };
+ { 9, 31957, "", "=q2=Ethereum Prisoner I.D. Tag", "=ds=#m3#", "", "100%" };
+ { 18, 31928, "", "=q3=Dark Band", "=ds=#s13# =q2=#m16#", "", "0.7%" };
+ { 19, 31929, "", "=q3=Enigmatic Band", "=ds=#s13# =q2=#m16#", "", "0.7%" };
+ { 20, 31925, "", "=q3=Fiery Band", "=ds=#s13# =q2=#m16#", "", "1.2%" };
+ { 21, 31926, "", "=q3=Frigid Band", "=ds=#s13# =q2=#m16#", "", "1.1%" };
+ { 22, 31927, "", "=q3=Living Band", "=ds=#s13# =q2=#m16#", "", "1.1%" };
+ };
+ {
+ Name = AL["Bash'ir Landing Stasis Chambers"];
+ { 1, 0, "INV_Box_01", "=q6=#n118#", "" };
+ { 2, 32522, "", "=q3=Demonic Bulwark", "=ds=#w8# =q2=#m16#", "", "" };
+ { 3, 31941, "", "=q2=Mark of the Nexus-King", "=ds=#m3#", "", "" };
+ { 5, 0, "INV_Box_01", "=q6=#n119#", "" };
+ { 6, 31577, "", "=q3=Slatesteel Shoulders", "=ds=#s3#, #a4# =q2=#m16#", "", "" };
+ { 7, 31941, "", "=q2=Mark of the Nexus-King", "=ds=#m3#", "", "" };
+ { 9, 0, "INV_Box_01", "=q6=#n120#", "" };
+ { 10, 31569, "", "=q3=Mistshroud Shoulders", "=ds=#s3#, #a3# =q2=#m16#", "", "" };
+ { 11, 31941, "", "=q2=Mark of the Nexus-King", "=ds=#m3#", "", "" };
+ { 16, 0, "INV_Box_01", "=q6=#n121#", "" };
+ { 17, 31553, "", "=q3=Windchanneller's Mantle", "=ds=#s3#, #a1# =q2=#m16#", "", "" };
+ { 18, 31941, "", "=q2=Mark of the Nexus-King", "=ds=#m3#", "", "" };
+ { 20, 0, "INV_Box_01", "=q6=#n122#", "" };
+ { 21, 31561, "", "=q3=Skystalker's Shoulders", "=ds=#s3#, #a2# =q2=#m16#", "", "" };
+ { 22, 31941, "", "=q2=Mark of the Nexus-King", "=ds=#m3#", "", "" };
+ };
+};
- AtlasLoot_Data["ScourgeInvasionEvent"] = {
- Name = AL["Scourge Invasion"];
- {
- Name = "Page 1";
- { 1, 40601, "", "=q3=Argent Dawn Banner", "=ds=#s14#"};
- { 2, 40593, "", "=q3=Argent Tome", "=ds=#s14#"};
- { 3, 40492, "", "=q3=Argent War Horn", "=ds=#s14#"};
- { 5, 23123, "", "=q2=Blessed Wizard Oil", "=ds=#m20#"};
- { 6, 23122, "", "=q2=Consecrated Sharpening Stone", "=ds=#m20#"};
- { 8, 22999, "", "=q1=Tabard of the Argent Dawn", "=ds=#s7#"};
- { 9, 43531, "", "=q1=Argent Healing Potion", "=ds=#e2#"};
- { 10, 43530, "", "=q1=Argent Mana Potion", "=ds=#e2#"};
- { 12, 22484, "", "=q2=Necrotic Rune", "=ds=#m17#"};
- { 16, 40110, "", "=q1=Haunted Memento", "=ds=#m20#"};
- { 18, 0, "INV_Box_01", "=q6="..AL["Prince Tenris Mirkblood"], "=q5="..BabbleZone["Karazhan"]};
- { 19, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- { 20, 39769, "", "=q4=Arcanite Ripper", "=ds=#h3#, #w1#"};
- { 21, 38658, "", "=q3=Vampiric Batling", "=ds=#e13#"};
- };
- {
- Name = "Page 2";
- { 1, 0, "INV_Box_01", "=q6="..AL["Blessed Regalia of Undead Cleansing"], "=q1=#a1#"};
- { 2, 43074, "", "=q4=Blessed Mantle of Undead Cleansing", "=ds=#s3#, #a1#"};
- { 3, 43072, "", "=q4=Blessed Robe of Undead Cleansing", "=ds=#s5#, #a1#"};
- { 4, 43073, "", "=q4=Blessed Gloves of Undead Cleansing", "=ds=#s9#, #a1#"};
- { 5, 43075, "", "=q4=Blessed Trousers of Undead Cleansing", "=ds=#s11#, #a1#"};
- { 7, 0, "INV_Box_01", "=q6="..AL["Undead Slayer's Blessed Armor"], "=q1=#a2#"};
- { 8, 43077, "", "=q4=Blessed Shoulderpads of Undead Slaying", "=ds=#s3#, #a1#"};
- { 9, 43076, "", "=q4=Blessed Tunic of Undead Slaying", "=ds=#s5#, #a1#"};
- { 10, 43078, "", "=q4=Blessed Grips of Undead Slaying", "=ds=#s9#, #a1#"};
- { 11, 43079, "", "=q4=Blessed Leggings of Undead Slaying", "=ds=#s11#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Blessed Garb of the Undead Slayer"], "=q1=#a3#"};
- { 17, 43081, "", "=q4=Blessed Pauldrons of Undead Slaying", "=ds=#s3#, #a1#"};
- { 18, 43080, "", "=q4=Blessed Hauberk of Undead Slaying", "=ds=#s5#, #a1#"};
- { 19, 43082, "", "=q4=Blessed Handguards of Undead Slaying", "=ds=#s9#, #a1#"};
- { 20, 43083, "", "=q4=Blessed Greaves of Undead Slaying", "=ds=#s11#, #a1#"};
- { 22, 0, "INV_Box_01", "=q6="..AL["Blessed Battlegear of Undead Slaying"], "=q1=#a4#"};
- { 23, 43068, "", "=q4=Blessed Spaulders of Undead Slaying", "=ds=#s3#, #a1#"};
- { 24, 43069, "", "=q4=Blessed Breastplate of Undead Slaying", "=ds=#s5#, #a1#"};
- { 25, 43070, "", "=q4=Blessed Gauntlets of Undead Slaying", "=ds=#s9#, #a1#"};
- { 26, 43071, "", "=q4=Blessed Legplates of Undead Slaying", "=ds=#s11#, #a1#"};
- };
- {
- Name = "Page 3";
- { 1, 0, "INV_Box_01", "=q6=#n123#", "=q1=#z6#"};
- { 2, 23126, "", "=q3=Waistband of Balzaphon", "=ds=#s10#, #a1#", "", "27.38%"};
- { 3, 23125, "", "=q3=Chains of the Lich", "=ds=#s2#", "", "19.89%"};
- { 4, 23124, "", "=q3=Staff of Balzaphon", "=ds=#w9#", "", "24.74%"};
- { 6, 0, "INV_Box_01", "=q6=#n124#", "=q1=#z5#"};
- { 7, 23156, "", "=q3=Blackwood's Thigh", "=ds=#s15#", "", "22.60%"};
- { 8, 23132, "", "=q3=Lord Blackwood's Blade", "=ds=#h1#, #w10#", "", "23.80%"};
- { 9, 23139, "", "=q3=Lord Blackwood's Buckler", "=ds=#w8#", "", "26.91%"};
- { 11, 0, "INV_Box_01", "=q6=#n125#", "=q1=#z13#"};
- { 12, 23127, "", "=q3=Cloak of Revanchion", "=ds=#s4#", "", "23.56%"};
- { 13, 23129, "", "=q3=Bracers of Mending", "=ds=#s8#, #a1#", "", "22.67%"};
- { 14, 23128, "", "=q3=The Shadow's Grasp", "=ds=#s9#, #a1#", "", "30.67%"};
- { 16, 0, "INV_Box_01", "=q6=#n126#", "=q1=#z3# - #z28#"};
- { 17, 23170, "", "=q3=The Frozen Clutch", "=ds=#s9#, #a3#", "", "28.94%"};
- { 18, 23169, "", "=q3=Scorn's Icy Choker", "=ds=#s2#", "", "30.39%"};
- { 19, 23168, "", "=q3=Scorn's Focal Dagger", "=ds=#h3#, #w4#", "", "32.56%"};
- { 21, 0, "INV_Box_01", "=q6=#n127#", "=q1=#z26#"};
- { 22, 23173, "", "=q3=Abomination Skin Leggings", "=ds=#s11#, #a1#", "", "43.81%"};
- { 23, 23171, "", "=q3=The Axe of Severing", "=ds=#h2#, #w1#", "", "49.31%"};
- { 26, 0, "INV_Box_01", "=q6=#n128#", "=q1=#z27#"};
- { 27, 23178, "", "=q3=Mantle of Lady Falther'ess", "=ds=#s4#", "", "39.13%"};
- { 28, 23177, "", "=q3=Lady Falther'ess' Finger", "=ds=#w12#", "", "46.86%"};
- };
- };
\ No newline at end of file
+----------------
+--- Shartuul ---
+----------------
+
+AtlasLoot_Data["Shartuul"] = {
+ Name = AL["Shartuul"];
+ {
+ Name = AL["Shartuul"];
+ { 1, 32941, "", "=q4=Corruptor's Signet", "=ds=#s13#", "", "6.0%" };
+ { 3, 32676, "", "=q4=Depleted Cloth Bracers", "=ds=#m20#", "", "5.0%" };
+ { 4, 32675, "", "=q4=Depleted Mail Gauntlets", "=ds=#m20#", "", "7.0%" };
+ { 5, 32677, "", "=q3=Depleted Cloak", "=ds=#m20#", "", "9.0%" };
+ { 6, 32678, "", "=q3=Depleted Ring", "=ds=#m20#", "", "9.0%" };
+ { 7, 32672, "", "=q3=Depleted Badge", "=ds=#m20#", "", "13.0%" };
+ { 8, 32673, "", "=q3=Depleted Dagger", "=ds=#m20#", "", "6.0%" };
+ { 9, 32674, "", "=q3=Depleted Sword", "=ds=#m20#", "", "14.0%" };
+ { 10, 32670, "", "=q3=Depleted Two-Handed Axe", "=ds=#m20#", "", "0.02%" };
+ { 11, 32671, "", "=q3=Depleted Mace", "=ds=#m20#", "", "11.0%" };
+ { 12, 32679, "", "=q3=Depleted Staff", "=ds=#m20#", "", "6.0%" };
+ { 16, 32942, "", "=q4=Ring of the Overseer", "=ds=#s13#", "", "1.4%" };
+ { 18, 32655, "", "=q4=Crystalweave Bracers", "=ds=#s8#, #a1#" };
+ { 19, 32656, "", "=q4=Crystalhide Handwraps", "=ds=#s9#, #a3#" };
+ { 20, 32665, "", "=q3=Crystalweave Cape", "=ds=#s4#" };
+ { 21, 32664, "", "=q3=Dreamcrystal Band", "=ds=#s13#" };
+ { 22, 32658, "", "=q3=Badge of Tenacity", "=ds=#s14#" };
+ { 23, 32659, "", "=q3=Crystal-Infused Shiv", "=ds=#h1#, #w4#" };
+ { 24, 32660, "", "=q3=Crystalforged Sword", "=ds=#h3#, #w10#" };
+ { 25, 32663, "", "=q3=Apexis Cleaver", "=ds=#h2#, #w1#" };
+ { 26, 32661, "", "=q3=Apexis Crystal Mace", "=ds=#h1#, #w6#" };
+ { 27, 32662, "", "=q3=Flaming Quartz Staff", "=ds=#w9#" };
+ };
+};
+
+---------------
+--- Skettis ---
+---------------
+
+AtlasLoot_Data["Skettis"] = {
+ Name = AL["Skettis"];
+ {
+ Name = AL["Darkscreecher Akkarai"];
+ { 1, 32529, "", "=q3=Heretic's Gauntlets", "=ds=#s9#, #a4#", "", "17.3%" };
+ { 2, 32715, "", "=q2=Akkarai's Talons", "=ds=#m3#", "", "100%" };
+ { 4, 31558, "", "=q3=Windchanneller's Bindings", "=ds=#s8#, #a1# =q2=#m16#", "", "5.3%" };
+ { 5, 31555, "", "=q3=Windchanneller's Ceinture", "=ds=#s10#, #a1# =q2=#m16#", "", "4.3%" };
+ { 6, 31566, "", "=q3=Skystalker's Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "6.8%" };
+ { 7, 31563, "", "=q3=Skystalker's Cord", "=ds=#s10#, #a2# =q2=#m16#", "", "6.2%" };
+ { 8, 31574, "", "=q3=Mistshroud Bracers", "=ds=#s8#, #a3# =q2=#m16#", "", "4.1%" };
+ { 9, 31571, "", "=q3=Mistshroud Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "4.5%" };
+ { 10, 31582, "", "=q3=Slatesteel Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "6.7%" };
+ { 11, 31579, "", "=q3=Slatesteel Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "5.5%" };
+ { 12, 32514, "", "=q3=Skettis Band", "=ds=#s13# =q2=#m16#", "", "31.5%" };
+ };
+ {
+ Name = AL["Karrog"];
+ { 1, 32533, "", "=q3=Karrog's Shard", "=ds=#s15#", "", "15.0%" };
+ { 2, 32717, "", "=q2=Karrog's Spine", "=ds=#m3#", "", "100%" };
+ { 4, 31558, "", "=q3=Windchanneller's Bindings", "=ds=#s8#, #a1# =q2=#m16#", "", "5.6%" };
+ { 5, 31555, "", "=q3=Windchanneller's Ceinture", "=ds=#s10#, #a1# =q2=#m16#", "", "6.8%" };
+ { 6, 31566, "", "=q3=Skystalker's Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "6.0%" };
+ { 7, 31563, "", "=q3=Skystalker's Cord", "=ds=#s10#, #a2# =q2=#m16#", "", "8.0%" };
+ { 8, 31574, "", "=q3=Mistshroud Bracers", "=ds=#s8#, #a3# =q2=#m16#", "", "5.6%" };
+ { 9, 31571, "", "=q3=Mistshroud Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "3.6%" };
+ { 10, 31582, "", "=q3=Slatesteel Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "4.3%" };
+ { 11, 31579, "", "=q3=Slatesteel Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "5.3%" };
+ { 12, 32514, "", "=q3=Skettis Band", "=ds=#s13# =q2=#m16#", "", "24.9%" };
+ };
+ {
+ Name = AL["Gezzarak the Huntress"];
+ { 1, 32531, "", "=q3=Gezzarak's Fang", "=ds=#s2#", "", "16.9%" };
+ { 2, 32716, "", "=q2=Gezzarak's Claws", "=ds=#m3#", "", "100%" };
+ { 4, 31558, "", "=q3=Windchanneller's Bindings", "=ds=#s8#, #a1# =q2=#m16#", "", "5.2%" };
+ { 5, 31555, "", "=q3=Windchanneller's Ceinture", "=ds=#s10#, #a1# =q2=#m16#", "", "6.9%" };
+ { 6, 31566, "", "=q3=Skystalker's Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "5.2%" };
+ { 7, 31563, "", "=q3=Skystalker's Cord", "=ds=#s10#, #a2# =q2=#m16#", "", "4.9%" };
+ { 8, 31574, "", "=q3=Mistshroud Bracers", "=ds=#s8#, #a3# =q2=#m16#", "", "5.8%" };
+ { 9, 31571, "", "=q3=Mistshroud Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "5.4%" };
+ { 10, 31582, "", "=q3=Slatesteel Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "6.2%" };
+ { 11, 31579, "", "=q3=Slatesteel Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "4.6%" };
+ { 12, 32514, "", "=q3=Skettis Band", "=ds=#s13# =q2=#m16#", "", "25.7%" };
+ };
+ {
+ Name = AL["Vakkiz the Windrager"];
+ { 1, 32532, "", "=q3=Windrager's Coils", "=ds=#s8#, #a3#", "", "18.1%" };
+ { 2, 32718, "", "=q2=Vakkiz's Scale", "=ds=#m3#", "", "100%" };
+ { 4, 31558, "", "=q3=Windchanneller's Bindings", "=ds=#s8#, #a1# =q2=#m16#", "", "5.0%" };
+ { 5, 31555, "", "=q3=Windchanneller's Ceinture", "=ds=#s10#, #a1# =q2=#m16#", "", "4.4%" };
+ { 6, 31566, "", "=q3=Skystalker's Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "4.1%" };
+ { 7, 31563, "", "=q3=Skystalker's Cord", "=ds=#s10#, #a2# =q2=#m16#", "", "3.9%" };
+ { 8, 31574, "", "=q3=Mistshroud Bracers", "=ds=#s8#, #a3# =q2=#m16#", "", "5.7%" };
+ { 9, 31571, "", "=q3=Mistshroud Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "6.3%" };
+ { 10, 31582, "", "=q3=Slatesteel Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "5.8%" };
+ { 11, 31579, "", "=q3=Slatesteel Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "2.7%" };
+ { 12, 32514, "", "=q3=Skettis Band", "=ds=#s13# =q2=#m16#", "", "28.7%" };
+ };
+ {
+ Name = AL["Terokk"];
+ { 1, 32540, "", "=q4=Terokk's Might", "=ds=#s4#", "", "4.6%" };
+ { 2, 32541, "", "=q4=Terokk's Wisdom", "=ds=#s4#", "", "4.6%" };
+ { 3, 31556, "", "=q3=Windchanneller's Leggings", "=ds=#s11#, #a1# =q2=#m16#", "", "14.3%" };
+ { 4, 31564, "", "=q3=Skystalker's Leggings", "=ds=#s11#, #a2# =q2=#m16#", "", "13.9%" };
+ { 5, 31572, "", "=q3=Mistshroud Pants", "=ds=#s11#, #a3# =q2=#m16#", "", "10.7%" };
+ { 6, 31580, "", "=q3=Slatesteel Leggings", "=ds=#s11#, #a4# =q2=#m16#", "", "11.6%" };
+ { 7, 32535, "", "=q3=Gift of the Talonpriests", "=ds=#s13#", "", "7.9%" };
+ { 8, 32534, "", "=q3=Brooch of the Immortal King", "=ds=#s14#", "", "11.2%" };
+ { 9, 32782, "", "=q3=Time-Lost Figurine", "=ds=#s14#", "", "" };
+ { 10, 32536, "", "=q3=Terokk's Gavel", "=ds=#h1#, #w6# =q2=#m16#", "", "6.7%" };
+ { 11, 32537, "", "=q3=Terokk's Gavel", "=ds=#h1#, #w6# =q2=#m16#", "", "7.9%" };
+ };
+ {
+ Name = "Talonpriest Ishaal";
+ { 1, 32523, "", "=q1=Ishaal's Almanac", "=ds=#m2#" };
+ };
+ {
+ Name = "Hazzik's Package";
+ { 1, 32687, "", "=q1=Hazzik's Package", "=ds=#m3#" };
+ };
+};
+
+-----------------------
+--- One Time Events ---
+-----------------------
+
+------------------------
+--- Scourge Invasion ---
+------------------------
+
+AtlasLoot_Data["ScourgeInvasionEvent"] = {
+ Name = AL["Scourge Invasion"];
+ {
+ Name = "Page 1";
+ { 1, 40601, "", "=q3=Argent Dawn Banner", "=ds=#s14#" };
+ { 2, 40593, "", "=q3=Argent Tome", "=ds=#s14#" };
+ { 3, 40492, "", "=q3=Argent War Horn", "=ds=#s14#" };
+ { 5, 23123, "", "=q2=Blessed Wizard Oil", "=ds=#m20#" };
+ { 6, 23122, "", "=q2=Consecrated Sharpening Stone", "=ds=#m20#" };
+ { 8, 22999, "", "=q1=Tabard of the Argent Dawn", "=ds=#s7#" };
+ { 9, 43531, "", "=q1=Argent Healing Potion", "=ds=#e2#" };
+ { 10, 43530, "", "=q1=Argent Mana Potion", "=ds=#e2#" };
+ { 12, 22484, "", "=q2=Necrotic Rune", "=ds=#m17#" };
+ { 16, 40110, "", "=q1=Haunted Memento", "=ds=#m20#" };
+ { 18, 0, "INV_Box_01", "=q6=" .. AL["Prince Tenris Mirkblood"], "=q5=" .. BabbleZone["Karazhan"] };
+ { 19, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%" };
+ { 20, 39769, "", "=q4=Arcanite Ripper", "=ds=#h3#, #w1#" };
+ { 21, 38658, "", "=q3=Vampiric Batling", "=ds=#e13#" };
+ };
+ {
+ Name = "Page 2";
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Blessed Regalia of Undead Cleansing"], "=q1=#a1#" };
+ { 2, 43074, "", "=q4=Blessed Mantle of Undead Cleansing", "=ds=#s3#, #a1#" };
+ { 3, 43072, "", "=q4=Blessed Robe of Undead Cleansing", "=ds=#s5#, #a1#" };
+ { 4, 43073, "", "=q4=Blessed Gloves of Undead Cleansing", "=ds=#s9#, #a1#" };
+ { 5, 43075, "", "=q4=Blessed Trousers of Undead Cleansing", "=ds=#s11#, #a1#" };
+ { 7, 0, "INV_Box_01", "=q6=" .. AL["Undead Slayer's Blessed Armor"], "=q1=#a2#" };
+ { 8, 43077, "", "=q4=Blessed Shoulderpads of Undead Slaying", "=ds=#s3#, #a1#" };
+ { 9, 43076, "", "=q4=Blessed Tunic of Undead Slaying", "=ds=#s5#, #a1#" };
+ { 10, 43078, "", "=q4=Blessed Grips of Undead Slaying", "=ds=#s9#, #a1#" };
+ { 11, 43079, "", "=q4=Blessed Leggings of Undead Slaying", "=ds=#s11#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Blessed Garb of the Undead Slayer"], "=q1=#a3#" };
+ { 17, 43081, "", "=q4=Blessed Pauldrons of Undead Slaying", "=ds=#s3#, #a1#" };
+ { 18, 43080, "", "=q4=Blessed Hauberk of Undead Slaying", "=ds=#s5#, #a1#" };
+ { 19, 43082, "", "=q4=Blessed Handguards of Undead Slaying", "=ds=#s9#, #a1#" };
+ { 20, 43083, "", "=q4=Blessed Greaves of Undead Slaying", "=ds=#s11#, #a1#" };
+ { 22, 0, "INV_Box_01", "=q6=" .. AL["Blessed Battlegear of Undead Slaying"], "=q1=#a4#" };
+ { 23, 43068, "", "=q4=Blessed Spaulders of Undead Slaying", "=ds=#s3#, #a1#" };
+ { 24, 43069, "", "=q4=Blessed Breastplate of Undead Slaying", "=ds=#s5#, #a1#" };
+ { 25, 43070, "", "=q4=Blessed Gauntlets of Undead Slaying", "=ds=#s9#, #a1#" };
+ { 26, 43071, "", "=q4=Blessed Legplates of Undead Slaying", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = "Page 3";
+ { 1, 0, "INV_Box_01", "=q6=#n123#", "=q1=#z6#" };
+ { 2, 23126, "", "=q3=Waistband of Balzaphon", "=ds=#s10#, #a1#", "", "27.38%" };
+ { 3, 23125, "", "=q3=Chains of the Lich", "=ds=#s2#", "", "19.89%" };
+ { 4, 23124, "", "=q3=Staff of Balzaphon", "=ds=#w9#", "", "24.74%" };
+ { 6, 0, "INV_Box_01", "=q6=#n124#", "=q1=#z5#" };
+ { 7, 23156, "", "=q3=Blackwood's Thigh", "=ds=#s15#", "", "22.60%" };
+ { 8, 23132, "", "=q3=Lord Blackwood's Blade", "=ds=#h1#, #w10#", "", "23.80%" };
+ { 9, 23139, "", "=q3=Lord Blackwood's Buckler", "=ds=#w8#", "", "26.91%" };
+ { 11, 0, "INV_Box_01", "=q6=#n125#", "=q1=#z13#" };
+ { 12, 23127, "", "=q3=Cloak of Revanchion", "=ds=#s4#", "", "23.56%" };
+ { 13, 23129, "", "=q3=Bracers of Mending", "=ds=#s8#, #a1#", "", "22.67%" };
+ { 14, 23128, "", "=q3=The Shadow's Grasp", "=ds=#s9#, #a1#", "", "30.67%" };
+ { 16, 0, "INV_Box_01", "=q6=#n126#", "=q1=#z3# - #z28#" };
+ { 17, 23170, "", "=q3=The Frozen Clutch", "=ds=#s9#, #a3#", "", "28.94%" };
+ { 18, 23169, "", "=q3=Scorn's Icy Choker", "=ds=#s2#", "", "30.39%" };
+ { 19, 23168, "", "=q3=Scorn's Focal Dagger", "=ds=#h3#, #w4#", "", "32.56%" };
+ { 21, 0, "INV_Box_01", "=q6=#n127#", "=q1=#z26#" };
+ { 22, 23173, "", "=q3=Abomination Skin Leggings", "=ds=#s11#, #a1#", "", "43.81%" };
+ { 23, 23171, "", "=q3=The Axe of Severing", "=ds=#h2#, #w1#", "", "49.31%" };
+ { 26, 0, "INV_Box_01", "=q6=#n128#", "=q1=#z27#" };
+ { 27, 23178, "", "=q3=Mantle of Lady Falther'ess", "=ds=#s4#", "", "39.13%" };
+ { 28, 23177, "", "=q3=Lady Falther'ess' Finger", "=ds=#w12#", "", "46.86%" };
+ };
+};
diff --git a/AtlasLoot_WrathoftheLichKing/wrathofthelichking.lua b/AtlasLoot_WrathoftheLichKing/wrathofthelichking.lua
index b2498b7..a6429e2 100644
--- a/AtlasLoot_WrathoftheLichKing/wrathofthelichking.lua
+++ b/AtlasLoot_WrathoftheLichKing/wrathofthelichking.lua
@@ -85,4949 +85,4875 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
---- Emblem of Triumph Items
---- Emblem of Frost Items
- ------------------------
- --- Dungeons & Raids ---
- ------------------------
+------------------------
+--- Dungeons & Raids ---
+------------------------
- ------------
- --- Keys ---
- ------------
+------------
+--- Keys ---
+------------
- AtlasLoot_Data["WrathKeys"] = {
- { 1, 44582, "", "=q4=Key to the Focusing Iris", "=ds=#e9#"};
- { 2, 44581, "", "=q4=Heroic Key to the Focusing Iris", "=ds=#e9#"};
- { 3, 45796, "", "=q1=Celestial Planetarium Key", "=ds=#e9#"};
- { 4, 45798, "", "=q1=Heroic Celestial Planetarium Key", "=ds=#e9#"};
- { 5, 42482, "", "=q1=The Violet Hold Key", "=ds=#e9#"};
+AtlasLoot_Data["WrathKeys"] = {
+ Name = "Keys";
+ {
+ Name = "Keys";
+ { 1, 44582, "", "=q4=Key to the Focusing Iris", "=ds=#e9#" };
+ { 2, 44581, "", "=q4=Heroic Key to the Focusing Iris", "=ds=#e9#" };
+ { 3, 45796, "", "=q1=Celestial Planetarium Key", "=ds=#e9#" };
+ { 4, 45798, "", "=q1=Heroic Celestial Planetarium Key", "=ds=#e9#" };
+ { 5, 42482, "", "=q1=The Violet Hold Key", "=ds=#e9#" };
};
+};
+--------------------
+--- Utgarde Keep ---
+--------------------
- --------------------
- --- Utgarde Keep ---
- --------------------
-
- AtlasLoot_Data["UtgardeKeepKeleseth"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35572, "", "=q3=Reinforced Velvet Helm", "=ds=#s1#, #a1#", "", "28%"};
- { 3, 35571, "", "=q3=Dragon Stabler's Gauntlets", "=ds=#s9#, #a3#", "", "31%"};
- { 4, 35570, "", "=q3=Keleseth's Blade of Evocation", "=ds=#h3#, #w4#", "", "28%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37180, "", "=q3=Battlemap Hide Helm", "=ds=#s1#, #a2#", "", "21%"};
- { 19, 37178, "", "=q3=Strategist's Belt", "=ds=#s10#, #a4#", "", "22%"};
- { 20, 37179, "", "=q3=Infantry Assault Blade", "=ds=#h1#, #w10#", "", "21%"};
- { 21, 37177, "", "=q3=Wand of the San'layn", "=ds=#w12#", "", "21%"};
- Next = "UtgardeKeepSkarvald";
+AtlasLoot_Data["UtgardeKeep"] = {
+ Name = BabbleZone["Utgarde Keep"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Prince Keleseth"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35572, "", "=q3=Reinforced Velvet Helm", "=ds=#s1#, #a1#", "", "28%" };
+ { 3, 35571, "", "=q3=Dragon Stabler's Gauntlets", "=ds=#s9#, #a3#", "", "31%" };
+ { 4, 35570, "", "=q3=Keleseth's Blade of Evocation", "=ds=#h3#, #w4#", "", "28%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37180, "", "=q3=Battlemap Hide Helm", "=ds=#s1#, #a2#", "", "21%" };
+ { 19, 37178, "", "=q3=Strategist's Belt", "=ds=#s10#, #a4#", "", "22%" };
+ { 20, 37179, "", "=q3=Infantry Assault Blade", "=ds=#h1#, #w10#", "", "21%" };
+ { 21, 37177, "", "=q3=Wand of the San'layn", "=ds=#w12#", "", "21%" };
};
-
- AtlasLoot_Data["UtgardeKeepSkarvald"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35575, "", "=q3=Skarvald's Dragonskin Habergeon", "=ds=#s5#, #a2#", "", "31%"};
- { 3, 35574, "", "=q3=Chestplate of the Northern Lights", "=ds=#s5#, #a4#", "", "28%"};
- { 4, 35573, "", "=q3=Arm Blade of Augelmir", "=ds=#h3#, #w13#", "", "30%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37183, "", "=q3=Bindings of the Tunneler", "=ds=#s8#, #a2#", "", "21%"};
- { 19, 37184, "", "=q3=Dalronn's Jerkin", "=ds=#s5#, #a3#", "", "21%"};
- { 20, 37182, "", "=q3=Helmet of the Constructor", "=ds=#s1#, #a4#", "", "21%"};
- { 21, 37181, "", "=q3=Dagger of Betrayal", "=ds=#h1#, #w4#", "", "21%"};
- Prev = "UtgardeKeepKeleseth";
- Next = "UtgardeKeepIngvar";
+ {
+ Name = BabbleBoss["Skarvald the Constructor"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35575, "", "=q3=Skarvald's Dragonskin Habergeon", "=ds=#s5#, #a2#", "", "31%" };
+ { 3, 35574, "", "=q3=Chestplate of the Northern Lights", "=ds=#s5#, #a4#", "", "28%" };
+ { 4, 35573, "", "=q3=Arm Blade of Augelmir", "=ds=#h3#, #w13#", "", "30%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37183, "", "=q3=Bindings of the Tunneler", "=ds=#s8#, #a2#", "", "21%" };
+ { 19, 37184, "", "=q3=Dalronn's Jerkin", "=ds=#s5#, #a3#", "", "21%" };
+ { 20, 37182, "", "=q3=Helmet of the Constructor", "=ds=#s1#, #a4#", "", "21%" };
+ { 21, 37181, "", "=q3=Dagger of Betrayal", "=ds=#h1#, #w4#", "", "21%" };
};
-
- AtlasLoot_Data["UtgardeKeepIngvar"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35577, "", "=q3=Holistic Patchwork Breeches", "=ds=#s11#, #a2#", "", "28%"};
- { 3, 35578, "", "=q3=Overlaid Chain Spaulders", "=ds=#s3#, #a3#", "", "26%"};
- { 4, 35576, "", "=q3=Ingvar's Monolithic Cleaver", "=ds=#h2#, #w1#", "", "27%"};
- { 5, 33330, "", "=q1=Ingvar's Head", "=ds=#m3#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37194, "", "=q4=Sharp-Barbed Leather Belt", "=ds=#s10#, #a2#", "", "20%"};
- { 19, 37193, "", "=q4=Staggering Legplates", "=ds=#s11#, #a4#", "", "18%"};
- { 20, 37192, "", "=q4=Annhylde's Ring", "=ds=#s13#", "", "18%"};
- { 21, 37191, "", "=q4=Drake-Mounted Crossbow", "=ds=#w3#", "", "19%"};
- { 22, 37189, "", "=q3=Breeches of the Caller", "=ds=#s11#, #a1#", "", "19%"};
- { 23, 37188, "", "=q3=Plunderer's Helmet", "=ds=#s1#, #a3#", "", "20%"};
- { 24, 37186, "", "=q3=Unsmashable Heavy Band", "=ds=#s13#", "", "20%"};
- { 25, 37190, "", "=q3=Enraged Feral Staff", "=ds=#w9#", "", "20%"};
- { 26, 41793, "", "=q3=Design: Fierce Monarch Topaz", "=ds=#p12# (390)", "", "8%"};
- { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- Prev = "UtgardeKeepSkarvald";
- Next = "UtgardeKeepTrash";
+ {
+ Name = BabbleBoss["Ingvar the Plunderer"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35577, "", "=q3=Holistic Patchwork Breeches", "=ds=#s11#, #a2#", "", "28%" };
+ { 3, 35578, "", "=q3=Overlaid Chain Spaulders", "=ds=#s3#, #a3#", "", "26%" };
+ { 4, 35576, "", "=q3=Ingvar's Monolithic Cleaver", "=ds=#h2#, #w1#", "", "27%" };
+ { 5, 33330, "", "=q1=Ingvar's Head", "=ds=#m3#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37194, "", "=q4=Sharp-Barbed Leather Belt", "=ds=#s10#, #a2#", "", "20%" };
+ { 19, 37193, "", "=q4=Staggering Legplates", "=ds=#s11#, #a4#", "", "18%" };
+ { 20, 37192, "", "=q4=Annhylde's Ring", "=ds=#s13#", "", "18%" };
+ { 21, 37191, "", "=q4=Drake-Mounted Crossbow", "=ds=#w3#", "", "19%" };
+ { 22, 37189, "", "=q3=Breeches of the Caller", "=ds=#s11#, #a1#", "", "19%" };
+ { 23, 37188, "", "=q3=Plunderer's Helmet", "=ds=#s1#, #a3#", "", "20%" };
+ { 24, 37186, "", "=q3=Unsmashable Heavy Band", "=ds=#s13#", "", "20%" };
+ { 25, 37190, "", "=q3=Enraged Feral Staff", "=ds=#w9#", "", "20%" };
+ { 26, 41793, "", "=q3=Design: Fierce Monarch Topaz", "=ds=#p12# (390)", "", "8%" };
+ { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
};
-
- AtlasLoot_Data["UtgardeKeepTrash"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35580, "", "=q3=Skein Woven Mantle", "=ds=#s3#, #a1#", "", "1%"};
- { 3, 35579, "", "=q3=Vrykul Shackles", "=ds=#s8#, #a2#", "", "2%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 37197, "", "=q3=Tattered Castle Drape", "=ds=#s4#", "", "1%"};
- { 18, 37196, "", "=q3=Runecaster's Mantle", "=ds=#s3#, #a1#", "", "1%"};
- Prev = "UtgardeKeepSkarvald";
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35580, "", "=q3=Skein Woven Mantle", "=ds=#s3#, #a1#", "", "1%" };
+ { 3, 35579, "", "=q3=Vrykul Shackles", "=ds=#s8#, #a2#", "", "2%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 37197, "", "=q3=Tattered Castle Drape", "=ds=#s4#", "", "1%" };
+ { 18, 37196, "", "=q3=Runecaster's Mantle", "=ds=#s3#, #a1#", "", "1%" };
};
+}
- -----------------
- --- The Nexus ---
- -----------------
+-----------------
+--- The Nexus ---
+-----------------
- AtlasLoot_Data["TheNexusOrmorok"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35602, "", "=q3=Chiseled Stalagmite Pauldrons", "=ds=#s3#, #a4#", "", "30%"};
- { 3, 35603, "", "=q3=Greaves of the Blue Flight", "=ds=#s12#, #a4#", "", "32%"};
- { 4, 35601, "", "=q3=Drakonid Arm Blade", "=ds=#h4#, #w13#", "", "33%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37153, "", "=q3=Gloves of the Crystal Gardener", "=ds=#s9#, #a1#", "", "21%"};
- { 19, 37155, "", "=q3=Frozen Forest Kilt", "=ds=#s11#, #a3#", "", "22%"};
- { 20, 37152, "", "=q3=Girdle of Ice", "=ds=#s10#, #a4#", "", "22%"};
- { 21, 37151, "", "=q3=Band of Frosted Thorns", "=ds=#s13#", "", "22%"};
- Next = "TheNexusAnomalus";
+AtlasLoot_Data["TheNexus"] = {
+ Name = BabbleZone["The Nexus"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Grand Magus Telestra"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35602, "", "=q3=Chiseled Stalagmite Pauldrons", "=ds=#s3#, #a4#", "", "30%" };
+ { 3, 35603, "", "=q3=Greaves of the Blue Flight", "=ds=#s12#, #a4#", "", "32%" };
+ { 4, 35601, "", "=q3=Drakonid Arm Blade", "=ds=#h4#, #w13#", "", "33%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37153, "", "=q3=Gloves of the Crystal Gardener", "=ds=#s9#, #a1#", "", "21%" };
+ { 19, 37155, "", "=q3=Frozen Forest Kilt", "=ds=#s11#, #a3#", "", "22%" };
+ { 20, 37152, "", "=q3=Girdle of Ice", "=ds=#s10#, #a4#", "", "22%" };
+ { 21, 37151, "", "=q3=Band of Frosted Thorns", "=ds=#s13#", "", "22%" };
};
-
- AtlasLoot_Data["TheNexusAnomalus"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35599, "", "=q3=Gauntlets of Serpent Scales", "=ds=#s9#, #a3#", "", "31%"};
+ {
+ Name = BabbleBoss["Anomalus"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35599, "", "=q3=Gauntlets of Serpent Scales", "=ds=#s9#, #a3#", "", "31%" };
{ 3, 35600, "", "=q3=Cleated Ice Boots", "=ds=#s12#, #a3#", "", "29%" };
{ 4, 35598, "", "=q3=Tome of the Lore Keepers", "=ds=#s15#", "", "29%" };
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37149, "", "=q3=Helm of Anomalus", "=ds=#s1#, #a2#", "", "21%"};
- { 19, 37144, "", "=q3=Hauberk of the Arcane Wraith", "=ds=#s5#, #a3#", "", "22%"};
- { 20, 37150, "", "=q3=Rift Striders", "=ds=#s12#, #a4#", "", "22%"};
- { 21, 37141, "", "=q3=Amulet of Dazzling Light", "=ds=#s2#", "", "21%"};
- Prev = "TheNexusOrmorok";
- Next = "TheNexusTelestra";
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37149, "", "=q3=Helm of Anomalus", "=ds=#s1#, #a2#", "", "21%" };
+ { 19, 37144, "", "=q3=Hauberk of the Arcane Wraith", "=ds=#s5#, #a3#", "", "22%" };
+ { 20, 37150, "", "=q3=Rift Striders", "=ds=#s12#, #a4#", "", "22%" };
+ { 21, 37141, "", "=q3=Amulet of Dazzling Light", "=ds=#s2#", "", "21%" };
};
-
- AtlasLoot_Data["TheNexusTelestra"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
+ {
+ Name = BabbleBoss["Ormorok the Tree-Shaper"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
{ 2, 35605, "", "=q3=Belt of Draconic Runes", "=ds=#s10#, #a2#", "", "29%" };
{ 3, 35604, "", "=q3=Insulating Bindings", "=ds=#s8#, #a4#", "", "29%" };
{ 4, 35617, "", "=q3=Wand of Shimmering Scales", "=ds=#w12#", "", "28%" };
- { 6, 21524, "", "=q2=Red Winter Hat", "=ds=#s1#, #a1# =q2=#m28#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37139, "", "=q3=Spaulders of the Careless Thief", "=ds=#s3#, #a2#", "", "21%"};
+ { 6, 21524, "", "=q2=Red Winter Hat", "=ds=#s1#, #a1# =q2=#m28#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37139, "", "=q3=Spaulders of the Careless Thief", "=ds=#s3#, #a2#", "", "21%" };
{ 19, 37138, "", "=q3=Bands of Channeled Energy", "=ds=#s8#, #a3#", "", "21%" };
{ 20, 37135, "", "=q3=Arcane-Shielded Helm", "=ds=#s1#, #a4#", "", "21%" };
{ 21, 37134, "", "=q3=Telestra's Journal", "=ds=#s15#", "", "20%" };
- { 23, 21524, "", "=q2=Red Winter Hat", "=ds=#s1#, #a1# =q2=#m28#"};
- Prev = "TheNexusAnomalus";
- Next = "TheNexusKolurgStoutbeardHEROIC";
- };
-
- AtlasLoot_Data["TheNexusKolurgStoutbeardHEROIC"] = {
- { 1, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 2, 37728, "", "=q3=Cloak of the Enemy", "=ds=#s4#", "", "20%"};
- { 3, 37731, "", "=q3=Opposed Stasis Leggings", "=ds=#s11#, #a1#", "", "20%"};
- { 4, 37730, "", "=q3=Cleric's Linen Shoes", "=ds=#s12#, #a1#", "", "19%"};
- { 5, 37729, "", "=q3=Grips of Sculptured Icicles", "=ds=#s9#, #a4#", "", "20%"};
- Prev = "TheNexusTelestra";
- Next = "TheNexusKeristrasza";
- };
-
- AtlasLoot_Data["TheNexusKeristrasza"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35596, "", "=q3=Attuned Crystalline Boots", "=ds=#s12#, #a1#", "", "29%"};
- { 3, 35595, "", "=q3=Glacier Sharpened Vileblade", "=ds=#h1#, #w4#", "", "30%"};
- { 4, 35597, "", "=q3=Band of Glittering Permafrost", "=ds=#s13#", "", "30%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37172, "", "=q4=Gloves of Glistening Runes", "=ds=#s9#, #a1#", "", "19%"};
- { 19, 37170, "", "=q4=Interwoven Scale Bracers", "=ds=#s8#, #a3#", "", "20%"};
- { 20, 37171, "", "=q4=Flame-Bathed Steel Girdle", "=ds=#s10#, #a4#", "", "19%"};
- { 21, 37169, "", "=q4=War Mace of Unrequited Love", "=ds=#h3#, #w6#", "", "18%"};
- { 22, 37165, "", "=q3=Crystal-Infused Tunic", "=ds=#s5#, #a2#", "", "20%"};
- { 23, 37167, "", "=q3=Dragon Slayer's Sabatons", "=ds=#s12#, #a3#", "", "20%"};
- { 24, 37166, "", "=q3=Sphere of Red Dragon's Blood", "=ds=#s14#", "", "20%"};
- { 25, 37162, "", "=q3=Bulwark of the Noble Protector", "=ds=#w8#", "", "20%"};
- { 26, 41794, "", "=q3=Design: Deadly Monarch Topaz", "=ds=#p12# (390)", "", "9%"};
- { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- Prev = "TheNexusKolurgStoutbeardHEROIC";
- };
-
- -------------------
- --- Azjol-Nerub ---
- -------------------
-
- AtlasLoot_Data["AzjolNerubKrikthir"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35657, "", "=q3=Exquisite Spider-Silk Footwraps", "=ds=#s12#, #a1#", "", "30%"};
- { 3, 35656, "", "=q3=Aura Focused Gauntlets", "=ds=#s9#, #a4#", "", "32%"};
- { 4, 35655, "", "=q3=Cobweb Machete", "=ds=#h1#, #w4#", "", "30%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37218, "", "=q3=Stone-Worn Footwraps", "=ds=#s12#, #a1#", "", "21%"};
- { 19, 37219, "", "=q3=Custodian's Chestpiece", "=ds=#s5#, #a2#", "", "21%"};
- { 20, 37217, "", "=q3=Golden Limb Bands", "=ds=#s8#, #a4#", "", "22%"};
- { 21, 37216, "", "=q3=Facade Shield of Glyphs", "=ds=#w8#", "", "22%"};
- Next = "AzjolNerubHadronox";
- };
-
- AtlasLoot_Data["AzjolNerubHadronox"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35660, "", "=q3=Spinneret Epaulets", "=ds=#s3#, #a2#", "", "30%"};
- { 3, 35659, "", "=q3=Treads of Aspiring Heights", "=ds=#s12#, #a2#", "", "30%"};
- { 4, 35658, "", "=q3=Life-Staff of the Web Lair", "=ds=#w9#", "", "29%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37222, "", "=q3=Egg Sac Robes", "=ds=#s5#, #a1#", "", "21%"};
- { 19, 37230, "", "=q3=Grotto Mist Gloves", "=ds=#s9#, #a2#", "", "21%"};
- { 20, 37221, "", "=q3=Hollowed Mandible Legplates", "=ds=#s11#, #a3#", "", "20%"};
- { 21, 37220, "", "=q3=Essence of Gossamer", "=ds=#s14#", "", "20%"};
- Prev = "AzjolNerubKrikthir";
- Next = "AzjolNerubAnubarak";
- };
-
- AtlasLoot_Data["AzjolNerubAnubarak"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35663, "", "=q3=Charmed Silken Cord", "=ds=#s10#, #a1#", "", "29%"};
- { 3, 35662, "", "=q3=Wing Cover Girdle", "=ds=#s10#, #a3#", "", "29%"};
- { 4, 35661, "", "=q3=Signet of Arachnathid Command", "=ds=#s13#", "", "28%"};
- { 6, 43411, "", "=q1=Anub'arak's Broken Husk", "=ds=#m3#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37242, "", "=q4=Sash of the Servant", "=ds=#s10#, #a1#", "", "19%"};
- { 19, 37240, "", "=q4=Flamebeard's Bracers", "=ds=#s8#, #a4#", "", "19%"};
- { 20, 37241, "", "=q4=Ancient Aligned Girdle", "=ds=#s10#, #a4#", "", "19%"};
- { 21, 37238, "", "=q4=Rod of the Fallen Monarch", "=ds=#w12#", "", "19%"};
- { 22, 37236, "", "=q3=Insect Vestments", "=ds=#s5#, #a2#", "", "20%"};
- { 23, 37237, "", "=q3=Chitin Shell Greathelm", "=ds=#s1#, #a4#", "", "20%"};
- { 24, 37232, "", "=q3=Ring of the Traitor King", "=ds=#s13#", "", "19%"};
- { 25, 37235, "", "=q3=Crypt Lord's Deft Blade", "=ds=#h1#, #w10#", "", "21%"};
- { 26, 41796, "", "=q3=Design: Infused Twilight Opal", "=ds=#p12# (390)", "", "12%"};
- { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- Prev = "AzjolNerubHadronox";
- Next = "AzjolNerubTrash";
- };
-
- AtlasLoot_Data["AzjolNerubTrash"] = {
- { 1, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 2, 37243, "", "=q3=Treasure Seeker's Belt", "=ds=#s10#, #a2#", "", "1%"};
- { 3, 37625, "", "=q3=Web Winder Gloves", "=ds=#s9#, #a4#", "", "1%"};
- { 4, 37624, "", "=q3=Stained-Glass Shard Ring", "=ds=#s13#", "", "1%"};
- Prev = "AzjolNerubAnubarak";
- };
-
- ----------------------------------
- --- Ahn'kahet: The Old Kingdom ---
- ----------------------------------
-
- AtlasLoot_Data["AhnkahetNadox"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35607, "", "=q3=Ahn'kahar Handwraps", "=ds=#s9#, #a2#", "", "30%"};
- { 3, 35608, "", "=q3=Crawler-Emblem Belt", "=ds=#s10#, #a4#", "", "29%"};
- { 4, 35606, "", "=q3=Blade of Nadox", "=ds=#h1#, #w4#", "", "31%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37594, "", "=q3=Elder Headpiece", "=ds=#s1#, #a1#", "", "22%"};
- { 19, 37593, "", "=q3=Sprinting Shoulderpads", "=ds=#s3#, #a2#", "", "23%"};
- { 20, 37592, "", "=q3=Brood Plague Helmet", "=ds=#s1#, #a3#", "", "22%"};
- { 21, 37591, "", "=q3=Nerubian Shield Ring", "=ds=#s13#", "", "22%"};
- Next = "AhnkahetTaldaram";
- };
-
- AtlasLoot_Data["AhnkahetTaldaram"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35611, "", "=q3=Gloves of the Blood Prince", "=ds=#s9#, #a1#", "", "30%"};
- { 3, 35610, "", "=q3=Slasher's Amulet", "=ds=#s2#", "", "31%"};
- { 4, 35609, "", "=q3=Talisman of Scourge Command", "=ds=#s15#", "", "29%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37613, "", "=q3=Flame Sphere Bindings", "=ds=#s8#, #a1#", "", "21%"};
- { 19, 37614, "", "=q3=Gauntlets of the Plundering Geist", "=ds=#s9#, #a3#", "", "21%"};
- { 20, 37612, "", "=q3=Bonegrinder Breastplate", "=ds=#s5#, #a4#", "", "20%"};
- { 21, 37595, "", "=q3=Necklace of Taldaram", "=ds=#s2#", "", "21%"};
- Prev = "AhnkahetNadox";
- Next = "AhnkahetAmanitarHEROIC";
- };
-
- AtlasLoot_Data["AhnkahetAmanitarHEROIC"] = {
- { 1, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 2, 43287, "", "=q3=Silken Bridge Handwraps", "=ds=#s9#, #a1#", "", "21%"};
- { 3, 43286, "", "=q3=Legguards of Swarming Attacks", "=ds=#s11#, #a2#", "", "23%"};
- { 4, 43285, "", "=q3=Amulet of the Spell Flinger", "=ds=#s2#", "", "22%"};
- { 5, 43284, "", "=q3=Amanitar Skullbow", "=ds=#w3#", "", "22%"};
- Prev = "AhnkahetTaldaram";
- Next = "AhnkahetJedoga";
- };
-
- AtlasLoot_Data["AhnkahetJedoga"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 43278, "", "=q3=Cloak of the Darkcaster", "=ds=#s4#", "", "30%"};
- { 3, 43279, "", "=q3=Battlechest of the Twilight Cult", "=ds=#s5#, #a4#", "", "29%"};
- { 4, 43277, "", "=q3=Jedoga's Greatring", "=ds=#s13#", "", "28%"};
- { 6, 21524, "", "=q2=Red Winter Hat", "=ds=#s1#, #a1# =q2=#m28#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 43283, "", "=q3=Subterranean Waterfall Shroud", "=ds=#s4#", "", "21%"};
- { 19, 43280, "", "=q3=Faceguard of the Hammer Clan", "=ds=#s1#, #a4#", "", "21%"};
- { 20, 43282, "", "=q3=Shadowseeker's Pendant", "=ds=#s2#", "", "22%"};
- { 21, 43281, "", "=q3=Edge of Oblivion", "=ds=#h2#, #w1#", "", "22%"};
- { 23, 21524, "", "=q2=Red Winter Hat", "=ds=#s1#, #a1# =q2=#m28#"};
- Prev = "AhnkahetAmanitarHEROIC";
- Next = "AhnkahetVolazj";
- };
-
- AtlasLoot_Data["AhnkahetVolazj"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35612, "", "=q3=Mantle of Echoing Bats", "=ds=#s3#, #a1#", "", "29%"};
- { 3, 35613, "", "=q3=Pyramid Embossed Belt", "=ds=#s10#, #a2#", "", "31%"};
- { 4, 35614, "", "=q3=Volazj's Sabatons", "=ds=#s12#, #a4#", "", "31%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37622, "", "=q4=Skirt of the Old Kingdom", "=ds=#s11#, #a1#", "", "19%"};
- { 19, 37623, "", "=q4=Fiery Obelisk Handguards", "=ds=#s9#, #a3#", "", "19%"};
- { 20, 37620, "", "=q4=Bracers of the Herald", "=ds=#s8#, #a4#", "", "18%"};
- { 21, 37619, "", "=q4=Wand of Ahnkahet", "=ds=#w12#", "", "18%"};
- { 22, 37616, "", "=q3=Kilt of the Forgotten One", "=ds=#s11#, #a2#", "", "19%"};
- { 23, 37618, "", "=q3=Greaves of Ancient Evil", "=ds=#s12#, #a4#", "", "20%"};
- { 24, 37617, "", "=q3=Staff of Sinister Claws", "=ds=#w9#", "", "19%"};
- { 25, 37615, "", "=q3=Titanium Compound Bow", "=ds=#w2#", "", "19%"};
- { 26, 41790, "", "=q3=Design: Precise Scarlet Ruby", "=ds=#p12# (390)", "", "17%"};
- { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- Prev = "AhnkahetJedoga";
- Next = "AhnkahetTrash";
- };
-
- AtlasLoot_Data["AhnkahetTrash"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35616, "", "=q3=Spored Tendrils Spaulders", "=ds=#s3#, #a3#", "", "1%"};
- { 3, 35615, "", "=q3=Glowworm Cavern Bindings", "=ds=#s8#, #a3#", "", "1%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 37625, "", "=q3=Web Winder Gloves", "=ds=#s9#, #a4#", "", "1%"};
- { 18, 37624, "", "=q3=Stained-Glass Shard Ring", "=ds=#s13#", "", "1%"};
- Prev = "AhnkahetVolazj";
- };
-
- ------------------------
- --- Drak'Tharon Keep ---
- ------------------------
-
- AtlasLoot_Data["DrakTharonKeepTrollgore"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35620, "", "=q3=Berserker's Horns", "=ds=#s1#, #a2#", "", "33%"};
- { 3, 35619, "", "=q3=Infection Resistant Legguards", "=ds=#s11#, #a3#", "", "28%"};
- { 4, 35618, "", "=q3=Troll Butcherer", "=ds=#h2#, #w10#", "", "30%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37715, "", "=q3=Cowl of the Dire Troll", "=ds=#s1#, #a1#", "", "21%"};
- { 19, 37714, "", "=q3=Batrider's Cord", "=ds=#s10#, #a2#", "", "22%"};
- { 20, 37717, "", "=q3=Legs of Physical Regeneration", "=ds=#s11#, #a4#", "", "22%"};
- { 21, 37712, "", "=q3=Terrace Defence Boots", "=ds=#s12#, #a4#", "", "22%"};
- Next = "DrakTharonKeepNovos";
- };
-
- AtlasLoot_Data["DrakTharonKeepNovos"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35632, "", "=q3=Robes of Novos", "=ds=#s5#, #a1#", "", "32%"};
- { 3, 35631, "", "=q3=Crystal Pendant of Warding", "=ds=#s2#", "", "28%"};
- { 4, 35630, "", "=q3=Summoner's Stone Gavel", "=ds=#h1#, #w6#", "", "30%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37722, "", "=q3=Breastplate of Undeath", "=ds=#s5#, #a4#", "", "22%"};
- { 19, 37718, "", "=q3=Temple Crystal Fragment", "=ds=#s15#", "", "21%"};
- { 20, 37721, "", "=q3=Cursed Lich Blade", "=ds=#h3#, #w10#", "", "22%"};
- Prev = "DrakTharonKeepTrollgore";
- Next = "DrakTharonKeepKingDred";
- };
-
- AtlasLoot_Data["DrakTharonKeepKingDred"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35635, "", "=q3=Stable Master's Breeches", "=ds=#s11#, #a1#", "", "28%"};
- { 3, 35634, "", "=q3=Scabrous-Hide Helm", "=ds=#s1#, #a2#", "", "28%"};
- { 4, 35633, "", "=q3=Staff of the Great Reptile", "=ds=#w9#", "", "31%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37725, "", "=q3=Savage Wound Wrap", "=ds=#s8#, #a1#", "", "21%"};
- { 19, 37724, "", "=q3=Handler's Arm Strap", "=ds=#s8#, #a2#", "", "21%"};
- { 20, 37726, "", "=q3=King Dred's Helm", "=ds=#s1#, #a3#", "", "21%"};
- { 21, 37723, "", "=q3=Incisor Fragment", "=ds=#s14#", "", "21%"};
- Prev = "DrakTharonKeepNovos";
- Next = "DrakTharonKeepTharonja";
- };
-
- AtlasLoot_Data["DrakTharonKeepTharonja"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35638, "", "=q3=Helmet of Living Flesh", "=ds=#s1#, #a3#", "", "33%"};
- { 3, 35637, "", "=q3=Muradin's Lost Greaves", "=ds=#s11#, #a4#", "", "28%"};
- { 4, 35636, "", "=q3=Tharon'ja's Aegis", "=ds=#w8#", "", "30%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37798, "", "=q4=Overlook Handguards", "=ds=#s9#, #a1#", "", "19%"};
- { 19, 37791, "", "=q4=Leggings of the Winged Serpent", "=ds=#s11#, #a2#", "", "20%"};
- { 20, 37788, "", "=q4=Limb Regeneration Bracers", "=ds=#s8#, #a3#", "", "21%"};
- { 21, 37784, "", "=q4=Keystone Great-Ring", "=ds=#s13#", "", "19%"};
- { 22, 37735, "", "=q3=Ziggurat Imprinted Chestguard", "=ds=#s5#, #a4#", "", "21%"};
- { 23, 37732, "", "=q3=Spectral Seal of the Prophet", "=ds=#s13#", "", "20%"};
- { 24, 37734, "", "=q3=Talisman of Troll Divinity", "=ds=#s14#", "", "21%"};
- { 25, 37733, "", "=q3=Mojo Masked Crusher", "=ds=#h2#, #w6#", "", "21%"};
- { 26, 41795, "", "=q3=Design: Timeless Forest Emerald", "=ds=#p12# (390)", "", "14%"};
- { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- Prev = "DrakTharonKeepKingDred";
- Next = "DrakTharonKeepTrash";
- };
-
- AtlasLoot_Data["DrakTharonKeepTrash"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35641, "", "=q3=Scytheclaw Boots", "=ds=#s12#, #a2#", "", "1%"};
- { 3, 35640, "", "=q3=Darkweb Bindings", "=ds=#s8#, #a3#", "", "1%"};
- { 4, 35639, "", "=q3=Brighthelm of Guarding", "=ds=#s1#, #a4#", "", "1%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 37799, "", "=q3=Reanimator's Cloak", "=ds=#s4#", "", "1%"};
- { 18, 37800, "", "=q3=Aviary Guardsman's Hauberk", "=ds=#s5#, #a3#", "", "1%"};
- { 19, 37801, "", "=q3=Waistguard of the Risen Knight", "=ds=#s10#, #a4#", "", "1%"};
- Prev = "DrakTharonKeepTharonja";
- };
-
- -----------------------
- --- The Violet Hold ---
- -----------------------
-
- AtlasLoot_Data["VioletHoldErekem"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 43363, "", "=q3=Screeching Cape", "=ds=#s4#", "", "43%"};
- { 3, 43375, "", "=q3=Trousers of the Arakkoa", "=ds=#s11#, #a1#", "", "45%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 43406, "", "=q3=Cloak of the Gushing Wound", "=ds=#s4#", "", "29%"};
- { 19, 43405, "", "=q3=Sabatons of Erekem", "=ds=#s12#, #a4#", "", "29%"};
- { 20, 43407, "", "=q3=Stormstrike Mace", "=ds=#h1#, #w6#", "", "30%"};
- Next = "VioletHoldZuramat";
- };
-
- AtlasLoot_Data["VioletHoldZuramat"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 43353, "", "=q3=Void Sentry Legplates", "=ds=#s11#, #a4#", "", "44%"};
- { 3, 43358, "", "=q3=Pendant of Shadow Beams", "=ds=#s2#", "", "41%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 43403, "", "=q3=Shroud of Darkness", "=ds=#s1#, #a2#", "", "28%"};
- { 19, 43402, "", "=q3=The Obliterator Greaves", "=ds=#s12#, #a4#", "", "28%"};
- { 20, 43404, "", "=q3=Zuramat's Necklace", "=ds=#s2#", "", "28%"};
- Prev = "VioletHoldErekem";
- Next = "VioletHoldXevozz";
- };
-
- AtlasLoot_Data["VioletHoldXevozz"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35644, "", "=q3=Xevozz's Belt", "=ds=#s10#, #a3#", "", "43%"};
- { 3, 35642, "", "=q3=Riot Shield", "=ds=#w8#", "", "42%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37867, "", "=q3=Footwraps of Teleportation", "=ds=#s12#, #a1#", "", "29%"};
- { 19, 37868, "", "=q3=Girdle of the Ethereal", "=ds=#s10#, #a3#", "", "29%"};
- { 20, 37861, "", "=q3=Necklace of Arcane Spheres", "=ds=#s2#", "", "29%"};
- Prev = "VioletHoldZuramat";
- Next = "VioletHoldIchoron";
- };
-
- AtlasLoot_Data["VioletHoldIchoron"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35647, "", "=q3=Handguards of Rapid Pursuit", "=ds=#s9#, #a2#", "", "44%"};
- { 3, 35643, "", "=q3=Spaulders of Ichoron", "=ds=#s3#, #a4#", "", "40%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 43401, "", "=q3=Water-Drenched Robe", "=ds=#s5#, #a1#", "", "28%"};
- { 19, 37862, "", "=q3=Gauntlets of the Water Revenant", "=ds=#s9#, #a4#", "", "28%"};
- { 20, 37869, "", "=q3=Globule Signet", "=ds=#s13#", "", "28%"};
- Prev = "VioletHoldXevozz";
- Next = "VioletHoldMoragg";
- };
-
- AtlasLoot_Data["VioletHoldMoragg"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 43387, "", "=q3=Shoulderplates of the Beholder", "=ds=#s3#, #a4#", "", "43%"};
- { 3, 43382, "", "=q3=Band of Eyes", "=ds=#s13#", "", "43%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 43410, "", "=q3=Moragg's Chestguard", "=ds=#s5#, #a3#", "", "29%"};
- { 19, 43408, "", "=q3=Solitare of Reflecting Beams", "=ds=#s13#", "", "29%"};
- { 20, 43409, "", "=q3=Saliva Corroded Pike", "=ds=#w7#", "", "30%"};
- Prev = "VioletHoldIchoron";
- Next = "VioletHoldLavanthor";
- };
-
- AtlasLoot_Data["VioletHoldLavanthor"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35646, "", "=q3=Lava Burn Gloves", "=ds=#s9#, #a1#", "", "44%"};
- { 3, 35645, "", "=q3=Prison Warden's Shotgun", "=ds=#w5#", "", "45%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37870, "", "=q3=Twin-Headed Boots", "=ds=#s12#, #a3#", "", "30%"};
- { 19, 37872, "", "=q3=Lavanthor's Talisman", "=ds=#s14#", "", "30%"};
- { 20, 37871, "", "=q3=The Key", "=ds=#h1#, #w1#", "", "29%"};
- Prev = "VioletHoldMoragg";
- Next = "VioletHoldCyanigosa";
- };
-
- AtlasLoot_Data["VioletHoldCyanigosa"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35650, "", "=q3=Boots of the Portal Guardian", "=ds=#s12#, #a3#", "", "31%"};
- { 3, 35651, "", "=q3=Plate Claws of the Dragon", "=ds=#s9#, #a4#", "", "31%"};
- { 4, 35649, "", "=q3=Jailer's Baton", "=ds=#w9#", "", "31%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37884, "", "=q4=Azure Cloth Bindings", "=ds=#s8#, #a1#", "", "20%"};
- { 19, 37886, "", "=q4=Handgrips of the Savage Emissary", "=ds=#s9#, #a3#", "", "21%"};
- { 20, 43500, "", "=q4=Bolstered Legplates", "=ds=#s11#, #a4#", "", "20%"};
- { 21, 37883, "", "=q4=Staff of Trickery", "=ds=#w9#", "", "21%"};
- { 22, 37876, "", "=q3=Cyanigosa's Leggings", "=ds=#s11#, #a1#", "", "22%"};
- { 23, 37875, "", "=q3=Spaulders of the Violet Hold", "=ds=#s3#, #a3#", "", "21%"};
- { 24, 37874, "", "=q3=Gauntlets of Capture", "=ds=#s9#, #a4#", "", "21%"};
- { 25, 37873, "", "=q3=Mark of the War Prisoner", "=ds=#s14#", "", "20%"};
- { 26, 41791, "", "=q3=Design: Thick Autumn's Glow", "=ds=#p12# (390)", "", "9%"};
- { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- Prev = "VioletHoldLavanthor";
- Next = "VioletHoldTrash";
- };
-
- AtlasLoot_Data["VioletHoldTrash"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35654, "", "=q3=Bindings of the Bastille", "=ds=#s8#, #a1#", "", "1%"};
- { 3, 35653, "", "=q3=Dungeon Girdle", "=ds=#s10#, #a4#", "", "1%"};
- { 4, 35652, "", "=q3=Incessant Torch", "=ds=#w12#", "", "1%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 35654, "", "=q3=Bindings of the Bastille", "=ds=#s8#, #a1#", "", "1%"};
- { 18, 37890, "", "=q3=Chain Gang Legguards", "=ds=#s11#, #a2#", "", "1%"};
- { 19, 37891, "", "=q3=Cast Iron Shackles", "=ds=#s8#, #a4#", "", "1%"};
- { 20, 35653, "", "=q3=Dungeon Girdle", "=ds=#s10#, #a4#", "", "1%"};
- { 21, 37889, "", "=q3=Prison Manifest", "=ds=#s15#", "", "1%"};
- { 22, 35652, "", "=q3=Incessant Torch", "=ds=#w12#", "", "1%"};
- Prev = "VioletHoldCyanigosa";
- };
-
- ---------------
- --- Gundrak ---
- ---------------
-
- AtlasLoot_Data["GundrakSladran"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35584, "", "=q3=Embroidered Gown of Zul'drak", "=ds=#s5#, #a1#", "", "28%"};
- { 3, 35585, "", "=q3=Cannibal's Legguards", "=ds=#s11#, #a3#", "", "29%"};
- { 4, 35583, "", "=q3=Witch Doctor's Wildstaff", "=ds=#w9#", "", "28%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37629, "", "=q3=Slithering Slippers", "=ds=#s12#, #a1#", "", "21%"};
- { 19, 37628, "", "=q3=Slad'ran's Coiled Cord", "=ds=#s10#, #a3#", "", "20%"};
- { 20, 37627, "", "=q3=Snake Den Spaulders", "=ds=#s3#, #a4#", "", "20%"};
- { 21, 37626, "", "=q3=Wand of Sseratus", "=ds=#w12#", "", "20%"};
- Next = "GundrakColossus";
- };
-
- AtlasLoot_Data["GundrakColossus"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35591, "", "=q3=Shoulderguards of the Ice Troll", "=ds=#s3#, #a2#", "", "25%"};
- { 3, 35592, "", "=q3=Hauberk of Totemic Mastery", "=ds=#s5#, #a3#", "", "26%"};
- { 4, 35590, "", "=q3=Drakkari Hunting Bow", "=ds=#w2#", "", "26%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37637, "", "=q3=Living Mojo Belt", "=ds=#s10#, #a1#", "", "20%"};
- { 19, 37636, "", "=q3=Helm of Cheated Fate", "=ds=#s1#, #a2#", "", "21%"};
- { 20, 37634, "", "=q3=Bracers of the Divine Elemental", "=ds=#s8#, #a2#", "", "20%"};
- { 21, 37635, "", "=q3=Pauldrons of the Colossus", "=ds=#s3#, #a4#", "", "20%"};
- Prev = "GundrakSladran";
- Next = "GundrakMoorabi";
- };
-
- AtlasLoot_Data["GundrakMoorabi"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35588, "", "=q3=Forlorn Breastplate of War", "=ds=#s5#, #a4#", "", "29%"};
- { 3, 35589, "", "=q3=Arcane Focal Signet", "=ds=#s13#", "", "29%"};
- { 4, 35587, "", "=q3=Frozen Scepter of Necromancy", "=ds=#h3#, #w6#", "", "30%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37630, "", "=q3=Shroud of Moorabi", "=ds=#s4#", "", "21%"};
- { 19, 37633, "", "=q3=Ground Tremor Helm", "=ds=#s1#, #a4#", "", "22%"};
- { 20, 37632, "", "=q3=Mojo Frenzy Greaves", "=ds=#s12#, #a4#", "", "22%"};
- { 21, 37631, "", "=q3=Fist of the Deity", "=ds=#h3#, #w13#", "", "22%"};
- Prev = "GundrakColossus";
- Next = "GundrakEckHEROIC";
- };
-
- AtlasLoot_Data["GundrakEckHEROIC"] = {
- { 1, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 2, 43313, "", "=q3=Leggings of the Ruins Dweller", "=ds=#s11#, #a1#", "", "23%"};
- { 3, 43312, "", "=q3=Gorloc Muddy Footwraps", "=ds=#s12#, #a2#", "", "23%"};
- { 4, 43311, "", "=q3=Helmet of the Shrine", "=ds=#s1#, #a3#", "", "22%"};
- { 5, 43310, "", "=q3=Engraved Chestplate of Eck", "=ds=#s5#, #a4#", "", "23%"};
- Prev = "GundrakMoorabi";
- Next = "GundrakGaldarah";
- };
-
- AtlasLoot_Data["GundrakGaldarah"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 43305, "", "=q3=Shroud of Akali", "=ds=#s4#", "", "28%"};
- { 3, 43309, "", "=q3=Amulet of the Stampede", "=ds=#s2#", "", "31%"};
- { 4, 43306, "", "=q3=Gal'darah's Signet", "=ds=#s13#", "", "30%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37643, "", "=q4=Sash of Blood Removal", "=ds=#s10#, #a2#", "", "19%"};
- { 19, 37644, "", "=q4=Gored Hide Legguards", "=ds=#s11#, #a2#", "", "19%"};
- { 20, 37645, "", "=q4=Horn-Tipped Gauntlets", "=ds=#s9#, #a4#", "", "19%"};
- { 21, 37642, "", "=q4=Hemorrhaging Circle", "=ds=#s13#", "", "18%"};
- { 22, 37641, "", "=q3=Arcane Flame Altar-Garb", "=ds=#s5#, #a1#", "", "19%"};
- { 23, 37640, "", "=q3=Boots of Transformation", "=ds=#s12#, #a2#", "", "20%"};
- { 24, 37639, "", "=q3=Grips of the Beast God", "=ds=#s9#, #a3#", "", "20%"};
- { 25, 37638, "", "=q3=Offering of Sacrifice", "=ds=#s14#", "", "20%"};
- { 26, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- Prev = "GundrakEckHEROIC";
- Next = "GundrakTrash";
- };
-
- AtlasLoot_Data["GundrakTrash"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35594, "", "=q3=Snowmelt Silken Cinch", "=ds=#s10#, #a1#", "", "2%"};
- { 3, 35593, "", "=q3=Steel Bear Trap Bracers", "=ds=#s8#, #a4#", "", "1%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 37647, "", "=q3=Cloak of Bloodied Waters", "=ds=#s4#", "", "1%"};
- { 18, 37648, "", "=q3=Belt of Tasseled Lanterns", "=ds=#s10#, #a3#", "", "1%"};
- { 19, 37646, "", "=q3=Burning Skull Pendant", "=ds=#s2#", "", "1%"};
- Prev = "GundrakGaldarah";
- };
-
- ----------------------
- --- Halls of Stone ---
- ----------------------
-
- AtlasLoot_Data["HallsofStoneMaiden"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 38614, "", "=q3=Embrace of Sorrow", "=ds=#s4#", "", "28%"};
- { 3, 38613, "", "=q3=Chain of Fiery Orbs", "=ds=#s2#", "", "29%"};
- { 4, 38611, "", "=q3=Ringlet of Repose", "=ds=#s13#", "", "29%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 38616, "", "=q3=Maiden's Girdle", "=ds=#s10#, #a2#", "", "21%"};
- { 19, 38615, "", "=q3=Lightning-Charged Gloves", "=ds=#s9#, #a3#", "", "21%"};
- { 20, 38617, "", "=q3=Woeful Band", "=ds=#s13#", "", "22%"};
- { 21, 38618, "", "=q3=Hammer of Grief", "=ds=#h2#, #w6#", "", "22%"};
- Next = "HallsofStoneKrystallus";
- };
-
- AtlasLoot_Data["HallsofStoneKrystallus"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35673, "", "=q3=Leggings of Burning Gleam", "=ds=#s11#, #a1#", "", "29%"};
- { 3, 35672, "", "=q3=Hollow Geode Helm", "=ds=#s1#, #a3#", "", "30%"};
- { 4, 35670, "", "=q3=Brann's Lost Mining Helmet", "=ds=#s1#, #a4#", "", "26%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37652, "", "=q3=Spaulders of Krystallus", "=ds=#s3#, #a2#", "", "28%"};
- { 19, 37650, "", "=q3=Shardling Legguards", "=ds=#s11#, #a4#", "", "27%"};
- { 20, 37651, "", "=q3=The Prospector's Prize", "=ds=#s13#", "", "27%"};
- Prev = "HallsofStoneMaiden";
- Next = "HallsofStoneTribunal";
- };
-
- AtlasLoot_Data["HallsofStoneTribunal"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35677, "", "=q3=Cosmos Vestments", "=ds=#s5#, #a2#", "", "25%"};
- { 3, 35676, "", "=q3=Constellation Leggings", "=ds=#s11#, #a2#", "", "26%"};
- { 4, 35675, "", "=q3=Linked Armor of the Sphere", "=ds=#s5#, #a3#", "", "24%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37655, "", "=q3=Mantle of the Tribunal", "=ds=#s3#, #a1#", "", "16%"};
- { 19, 37656, "", "=q3=Raging Construct Bands", "=ds=#s8#, #a3#", "", "16%"};
- { 20, 37654, "", "=q3=Sabatons of the Ages", "=ds=#s12#, #a3#", "", "14%"};
- { 21, 37653, "", "=q3=Sword of Justice", "=ds=#h2#, #w10#", "", "16%"};
- Prev = "HallsofStoneKrystallus";
- Next = "HallsofStoneSjonnir";
- };
-
- AtlasLoot_Data["HallsofStoneSjonnir"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35679, "", "=q3=Static Cowl", "=ds=#s1#, #a1#", "", "28%"};
- { 3, 35678, "", "=q3=Ironshaper's Legplates", "=ds=#s11#, #a4#", "", "28%"};
- { 4, 35680, "", "=q3=Amulet of Wills", "=ds=#s2#", "", "29%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37669, "", "=q4=Leggings of the Stone Halls", "=ds=#s11#, #a3#", "", "18%"};
- { 19, 37668, "", "=q4=Bands of the Stoneforge", "=ds=#s8#, #a4#", "", "18%"};
- { 20, 37670, "", "=q4=Sjonnir's Girdle", "=ds=#s10#, #a4#", "", "18%"};
- { 21, 37667, "", "=q4=The Fleshshaper", "=ds=#h1#, #w4#", "", "18%"};
- { 22, 37666, "", "=q3=Boots of the Whirling Mist", "=ds=#s12#, #a2#", "", "19%"};
- { 23, 37658, "", "=q3=Sun-Emblazoned Chestplate", "=ds=#s5#, #a4#", "", "19%"};
- { 24, 37657, "", "=q3=Spark of Life", "=ds=#s14#", "", "19%"};
- { 25, 37660, "", "=q3=Forge Ember", "=ds=#s14#", "", "18%"};
- { 26, 41792, "", "=q3=Design: Deft Monarch Topaz", "=ds=#p12# (390)", "", "15%"};
- { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- Prev = "HallsofStoneTribunal";
- Next = "HallsofStoneTrash";
- };
-
- AtlasLoot_Data["HallsofStoneTrash"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 35682, "", "=q3=Rune Giant Bindings", "=ds=#s8#, #a1#", "", "0.44%"};
- { 3, 35683, "", "=q3=Palladium Ring", "=ds=#s13#", "", "0.46%"};
- { 4, 35681, "", "=q3=Unrelenting Blade", "=ds=#h1#, #w4#", "", "0.41%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 37673, "", "=q3=Dark Runic Mantle", "=ds=#s3#, #a1#", "", "1%"};
- { 18, 37672, "", "=q3=Patina-Coated Breastplate", "=ds=#s5#, #a4#", "", "1%"};
- { 19, 37671, "", "=q3=Refined Ore Gloves", "=ds=#s9#, #a4#", "", "1%"};
- Prev = "HallsofStoneSjonnir";
- };
-
- --------------------------
- --- Halls of Lightning ---
- --------------------------
-
- AtlasLoot_Data["HallsofLightningBjarngrim"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 36982, "", "=q3=Mantle of Electrical Charges", "=ds=#s3#, #a1#", "", "22%"};
- { 3, 36979, "", "=q3=Bjarngrim Family Signet", "=ds=#s13#", "", "22%"};
- { 4, 36980, "", "=q3=Hewn Sparring Quarterstaff", "=ds=#w9#", "", "22%"};
- { 5, 36981, "", "=q3=Hardened Vrykul Throwing Axe", "=ds=#w11#", "", "23%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37825, "", "=q3=Traditionally Dyed Handguards", "=ds=#s9#, #a1#", "", "21%"};
- { 19, 37818, "", "=q3=Patroller's War-Kilt", "=ds=#s11#, #a3#", "", "21%"};
- { 20, 37814, "", "=q3=Iron Dwarf Smith Pauldrons", "=ds=#s3#, #a4#", "", "21%"};
- { 21, 37826, "", "=q3=The General's Steel Girdle", "=ds=#s10#, #a4#", "", "22%"};
- Next = "HallsofLightningVolkhan";
- };
-
- AtlasLoot_Data["HallsofLightningVolkhan"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 36983, "", "=q3=Cape of Seething Steam", "=ds=#s4#", "", "22%"};
- { 3, 36985, "", "=q3=Volkhan's Hood", "=ds=#s1#, #a1#", "", "23%"};
- { 4, 36986, "", "=q3=Kilt of Molten Golems", "=ds=#s11#, #a3#", "", "22%"};
- { 5, 36984, "", "=q3=Eternally Folded Blade", "=ds=#h1#, #w10#", "", "22%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37840, "", "=q3=Shroud of Reverberation", "=ds=#s4#", "", "21%"};
- { 19, 37843, "", "=q3=Giant-Hair Woven Gloves", "=ds=#s9#, #a1#", "", "21%"};
- { 20, 37842, "", "=q3=Belt of Vivacity", "=ds=#s10#, #a2#", "", "21%"};
- { 21, 37841, "", "=q3=Slag Footguards", "=ds=#s12#, #a2#", "", "21%"};
- Prev = "HallsofLightningBjarngrim";
- Next = "HallsofLightningIonar";
- };
-
- AtlasLoot_Data["HallsofLightningIonar"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 39536, "", "=q3=Thundercloud Grasps", "=ds=#s9#, #a1#", "", "22%"};
- { 3, 39657, "", "=q3=Tornado Cuffs", "=ds=#s8#, #a3#", "", "21%"};
- { 4, 39534, "", "=q3=Pauldrons of the Lightning Revenant", "=ds=#s3#, #a4#", "", "21%"};
- { 5, 39535, "", "=q3=Ionar's Girdle", "=ds=#s10#, #a4#", "", "21%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37846, "", "=q3=Charged-Bolt Grips", "=ds=#s9#, #a2#", "", "20%"};
- { 19, 37845, "", "=q3=Cord of Swirling Winds", "=ds=#s10#, #a3#", "", "21%"};
- { 20, 37826, "", "=q3=The General's Steel Girdle", "=ds=#s10#, #a4#", "", "22%"};
- { 21, 37844, "", "=q3=Winged Talisman", "=ds=#s14#", "", "21%"};
- Prev = "HallsofLightningVolkhan";
- Next = "HallsofLightningLoken";
- };
-
- AtlasLoot_Data["HallsofLightningLoken"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 36991, "", "=q3=Raiments of the Titans", "=ds=#s5#, #a1#", "", "22%"};
- { 3, 36996, "", "=q3=Hood of the Furtive Assassin", "=ds=#s1#, #a2#", "", "22%"};
- { 4, 36992, "", "=q3=Leather-Braced Chain Leggings", "=ds=#s11#, #a3#", "", "22%"};
- { 5, 36995, "", "=q3=Fists of Loken", "=ds=#s9#, #a4#", "", "22%"};
- { 6, 36988, "", "=q3=Chaotic Spiral Amulet", "=ds=#s2#", "", "22%"};
- { 7, 36993, "", "=q3=Seal of the Pantheon", "=ds=#s14#", "", "18%"};
- { 8, 36994, "", "=q3=Projectile Activator", "=ds=#w5#", "", "21%"};
- { 9, 36989, "", "=q3=Ancient Measuring Rod", "=ds=#w12#", "", "21%"};
- { 10, 41799, "", "=q3=Design: Eternal Earthsiege Diamond", "=ds=#p12# (420)", "", "11%"};
- { 12, 43151, "", "=q1=Loken's Tongue", "=ds=#m3#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37854, "", "=q4=Woven Bracae Leggings", "=ds=#s11#, #a1#", "", "18%"};
- { 19, 37853, "", "=q4=Advanced Tooled-Leather Bands", "=ds=#s8#, #a2#", "", "18%"};
- { 20, 37855, "", "=q4=Mail Girdle of the Audient Earth", "=ds=#s10#, #a3#", "", "19%"};
- { 21, 37852, "", "=q4=Colossal Skull-Clad Cleaver", "=ds=#h2#, #w1#", "", "18%"};
- { 22, 37851, "", "=q3=Ornate Woolen Stola", "=ds=#s5#, #a1#", "", "19%"};
- { 23, 37850, "", "=q3=Flowing Sash of Order", "=ds=#s10#, #a1#", "", "19%"};
- { 24, 37849, "", "=q3=Planetary Helm", "=ds=#s1#, #a4#", "", "19%"};
- { 25, 37848, "", "=q3=Lightning Giant Staff", "=ds=#w9#", "", "18%"};
- { 26, 41799, "", "=q3=Design: Eternal Earthsiege Diamond", "=ds=#p12# (420)", "", "11%"};
- { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- Prev = "HallsofLightningIonar";
- Next = "HallsofLightningTrash";
- };
-
- AtlasLoot_Data["HallsofLightningTrash"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 36997, "", "=q3=Sash of the Hardened Watcher", "=ds=#s10#, #a1#", "", "1%"};
- { 3, 37000, "", "=q3=Storming Vortex Bracers", "=ds=#s8#, #a2#", "", "1%"};
- { 4, 36999, "", "=q3=Boots of the Terrestrial Guardian", "=ds=#s12#, #a3#", "", "1%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 37858, "", "=q3=Awakened Handguards", "=ds=#s9#, #a2#", "", "1%"};
- { 18, 37857, "", "=q3=Helm of the Lightning Halls", "=ds=#s1#, #a3#", "", "1%"};
- { 19, 37856, "", "=q3=Librarian's Paper Cutter", "=ds=#h1#, #w4#", "", "1%"};
- Prev = "HallsofLightningLoken";
- };
-
- ---------------------------------------
- --- Caverns of Time: Old Stratholme ---
- ---------------------------------------
-
- AtlasLoot_Data["CoTStratholmeMeathook"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 37083, "", "=q3=Kilt of Sewn Flesh", "=ds=#s11#, #a2#", "", "23%"};
- { 3, 37082, "", "=q3=Slaughterhouse Sabatons", "=ds=#s12#, #a4#", "", "22%"};
- { 4, 37079, "", "=q3=Enchanted Wire Stitching", "=ds=#s13#", "", "23%"};
- { 5, 37081, "", "=q3=Meathook's Slicer", "=ds=#h1#, #w10#", "", "22%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37680, "", "=q3=Belt of Unified Souls", "=ds=#s10#, #a1#", "", "22%"};
- { 19, 37678, "", "=q3=Bile-Cured Gloves", "=ds=#s9#, #a2#", "", "22%"};
- { 20, 37679, "", "=q3=Spaulders of the Abomination", "=ds=#s3#, #a3#", "", "21%"};
- { 21, 37675, "", "=q3=Legplates of Steel Implants", "=ds=#s11#, #a4#", "", "23%"};
- Next = "CoTStratholmeSalramm";
- };
-
- AtlasLoot_Data["CoTStratholmeSalramm"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 37084, "", "=q3=Flowing Cloak of Command", "=ds=#s4#", "", "22%"};
- { 3, 37095, "", "=q3=Waistband of the Thuzadin", "=ds=#s10#, #a3#", "", "23%"};
- { 4, 37088, "", "=q3=Spiked Metal Cilice", "=ds=#s10#, #a4#", "", "22%"};
- { 5, 37086, "", "=q3=Tome of Salramm", "=ds=#s15#", "", "23%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37684, "", "=q3=Forgotten Shadow Hood", "=ds=#s1#, #a1#", "", "22%"};
- { 19, 37682, "", "=q3=Bindings of Dark Will", "=ds=#s8#, #a4#", "", "22%"};
- { 20, 37683, "", "=q3=Necromancer's Amulet", "=ds=#s2#", "", "22%"};
- { 21, 37681, "", "=q3=Gavel of the Fleshcrafter", "=ds=#h3#, #w6#", "", "22%"};
- Prev = "CoTStratholmeMeathook";
- Next = "CoTStratholmeEpoch";
- };
-
- AtlasLoot_Data["CoTStratholmeEpoch"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 37106, "", "=q3=Ouroboros Belt", "=ds=#s10#, #a2#", "", "23%"};
- { 3, 37105, "", "=q3=Treads of Altered History", "=ds=#s12#, #a3#", "", "24%"};
- { 4, 37096, "", "=q3=Necklace of the Chrono-Lord", "=ds=#s2#", "", "22%"};
- { 5, 37099, "", "=q3=Sempiternal Staff", "=ds=#w9#", "", "22%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37687, "", "=q3=Gloves of Distorted Time", "=ds=#s9#, #a1#", "", "23%"};
- { 19, 37686, "", "=q3=Cracked Epoch Grasps", "=ds=#s9#, #a3#", "", "23%"};
- { 20, 37688, "", "=q3=Legplates of the Infinite Drakonid", "=ds=#s11#, #a4#", "", "23%"};
- { 21, 37685, "", "=q3=Mobius Band", "=ds=#s13#", "", "23%"};
- Prev = "CoTStratholmeSalramm";
- Next = "CoTStratholmeInfiniteCorruptorHEROIC";
- };
-
- AtlasLoot_Data["CoTStratholmeInfiniteCorruptorHEROIC"] = {
- { 1, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 2, 43951, "", "=q4=Reins of the Bronze Drake", "=ds=#e12#", "", "100%"};
- Prev = "CoTStratholmeEpoch";
- Next = "CoTStratholmeMalGanis";
- };
-
- AtlasLoot_Data["CoTStratholmeMalGanis"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 37113, "", "=q3=Demonic Fabric Bands", "=ds=#s8#, #a1#", "", "16%"};
- { 3, 37114, "", "=q3=Gloves of Northern Lordaeron", "=ds=#s9#, #a2#", "", "19%"};
- { 4, 37110, "", "=q3=Gauntlets of Dark Conversion", "=ds=#s9#, #a3#", "", "18%"};
- { 5, 37109, "", "=q3=Discarded Silver Hand Spaulders", "=ds=#s3#, #a4#", "", "18%"};
- { 6, 37111, "", "=q3=Soul Preserver", "=ds=#s14#", "", "14%"};
- { 7, 37108, "", "=q3=Dreadlord's Blade", "=ds=#h2#, #w10#", "", "16%"};
- { 8, 37112, "", "=q3=Beguiling Scepter", "=ds=#h3#, #w6#", "", "19%"};
- { 9, 37107, "", "=q3=Leeka's Shield", "=ds=#w8#", "", "18%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37696, "", "=q4=Plague-Infected Bracers", "=ds=#s8#, #a2#", "", "11%"};
- { 19, 37695, "", "=q4=Legguards of Nature's Power", "=ds=#s11#, #a3#", "", "11%"};
- { 20, 37694, "", "=q4=Band of Guile", "=ds=#s13#", "", "11%"};
- { 21, 37693, "", "=q4=Greed", "=ds=#h3#, #w13#", "", "11%"};
- { 22, 43085, "", "=q4=Royal Crest of Lordaeron", "=ds=#w8#", "", "10%"};
- { 23, 37691, "", "=q3=Mantle of Deceit", "=ds=#s3#, #a1#", "", "14%"};
- { 24, 37690, "", "=q3=Pauldrons of Destiny", "=ds=#s3#, #a4#", "", "14%"};
- { 25, 37689, "", "=q3=Pendant of the Nathrezim", "=ds=#s2#", "", "14%"};
- { 26, 37692, "", "=q3=Pierce's Pistol", "=ds=#w5#", "", "14%"};
- { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- Prev = "CoTStratholmeInfiniteCorruptorHEROIC";
- Next = "CoTStratholmeTrash";
- };
-
- AtlasLoot_Data["CoTStratholmeTrash"] = {
- { 1, 37117, "", "=q3=King's Square Bracers", "=ds=#s8#, #a2#", "", "1%"};
- { 2, 37116, "", "=q3=Epaulets of Market Row", "=ds=#s3#, #a3#", "", "1%"};
- { 3, 37115, "", "=q3=Crusader's Square Pauldrons", "=ds=#s3#, #a4#", "", "1%"};
- Prev = "CoTStratholmeMalGanis";
- };
-
- ------------------------
- --- Utgarde Pinnacle ---
- ------------------------
-
- AtlasLoot_Data["UPSorrowgrave"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 37043, "", "=q3=Tear-Linked Gauntlets", "=ds=#s9#, #a3#", "", "24%"};
- { 3, 37040, "", "=q3=Svala's Bloodied Shackles", "=ds=#s8#, #a4#", "", "23%"};
- { 4, 37037, "", "=q3=Ritualistic Athame", "=ds=#h1#, #w4#", "", "22%"};
- { 5, 37038, "", "=q3=Brazier Igniter", "=ds=#w12#", "", "21%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37370, "", "=q3=Cuffs of the Trussed Hall", "=ds=#s8#, #a1#", "", "21%"};
- { 19, 37369, "", "=q3=Sorrowgrave's Breeches", "=ds=#s11#, #a1#", "", "22%"};
- { 20, 37368, "", "=q3=Silent Spectator Shoulderpads", "=ds=#s3#, #a2#", "", "22%"};
- { 21, 37367, "", "=q3=Echoing Stompers", "=ds=#s12#, #a4#", "", "22%"};
- Next = "UPPalehoof";
- };
-
- AtlasLoot_Data["UPPalehoof"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 37048, "", "=q3=Shroud of Resurrection", "=ds=#s4#", "", "24%"};
- { 3, 37052, "", "=q3=Reanimated Armor", "=ds=#s5#, #a4#", "", "21%"};
- { 4, 37051, "", "=q3=Seal of Valgarde", "=ds=#s15#", "", "21%"};
- { 5, 37050, "", "=q3=Trophy Gatherer", "=ds=#w2#", "", "24%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37374, "", "=q3=Ravenous Leggings of the Furbolg", "=ds=#s11#, #a2#", "", "22%"};
- { 19, 37373, "", "=q3=Massive Spaulders of the Jormungar", "=ds=#s3#, #a3#", "", "21%"};
- { 20, 37376, "", "=q3=Ferocious Pauldrons of the Rhino", "=ds=#s3#, #a4#", "", "21%"};
- { 21, 37371, "", "=q3=Ring of the Frenzied Wolvar", "=ds=#s13#", "", "22%"};
- Prev = "UPSorrowgrave";
- Next = "UPSkadi";
- };
-
- AtlasLoot_Data["UPSkadi"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 37055, "", "=q3=Silken Amice of the Ymirjar", "=ds=#s3#, #a1#", "", "23%"};
- { 3, 37057, "", "=q3=Drake Rider's Tunic", "=ds=#s5#, #a2#", "", "23%"};
- { 4, 37056, "", "=q3=Harpooner's Striders", "=ds=#s12#, #a4#", "", "22%"};
- { 5, 37053, "", "=q3=Amulet of Deflected Blows", "=ds=#s2#", "", "20%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 44151, "", "=q4=Reins of the Blue Proto-Drake", "=ds=#e12#", "", "1%"};
- { 19, 37389, "", "=q3=Crenelation Leggings", "=ds=#s11#, #a2#", "", "21%"};
- { 20, 37379, "", "=q3=Skadi's Iron Belt", "=ds=#s10#, #a4#", "", "22%"};
- { 21, 37377, "", "=q3=Netherbreath Spellblade", "=ds=#h3#, #w4#", "", "21%"};
- { 22, 37384, "", "=q3=Staff of Wayward Principles", "=ds=#w9#", "", "21%"};
- Prev = "UPPalehoof";
- Next = "UPYmiron";
- };
-
- AtlasLoot_Data["UPYmiron"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 37067, "", "=q3=Ceremonial Pyre Mantle", "=ds=#s3#, #a2#", "", "19%"};
- { 3, 37062, "", "=q3=Crown of Forgotten Kings", "=ds=#s1#, #a4#", "", "21%"};
- { 4, 37066, "", "=q3=Ancient Royal Legguards", "=ds=#s11#, #a4#", "", "23%"};
- { 5, 37058, "", "=q3=Signet of Ranulf", "=ds=#s13#", "", "22%"};
- { 6, 37064, "", "=q3=Vestige of Haldor", "=ds=#s14#", "", "24%"};
- { 7, 37060, "", "=q3=Jeweled Coronation Sword", "=ds=#h3#, #w10#", "", "20%"};
- { 8, 37065, "", "=q3=Ymiron's Blade", "=ds=#h1#, #w10#", "", "20%"};
- { 9, 37061, "", "=q3=Tor's Crest", "=ds=#w8#", "", "23%"};
- { 10, 41797, "", "=q3=Design: Austere Earthsiege Diamond", "=ds=#p12# (420)", "", "10%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37408, "", "=q4=Girdle of Bane", "=ds=#s10#, #a1#", "", "19%"};
- { 19, 37409, "", "=q4=Gilt-Edged Leather Gauntlets", "=ds=#s9#, #a2#", "", "19%"};
- { 20, 37407, "", "=q4=Sovereign's Belt", "=ds=#s10#, #a3#", "", "20%"};
- { 21, 37401, "", "=q4=Red Sword of Courage", "=ds=#h1#, #w10#", "", "18%"};
- { 22, 37398, "", "=q3=Mantle of Discarded Ways", "=ds=#s3#, #a3#", "", "20%"};
- { 23, 37395, "", "=q3=Ornamented Plate Regalia", "=ds=#s5#, #a4#", "", "20%"};
- { 24, 37397, "", "=q3=Gold Amulet of Kings", "=ds=#s2#", "", "20%"};
- { 25, 37390, "", "=q3=Meteorite Whetstone", "=ds=#s14#", "", "20%"};
- { 26, 41797, "", "=q3=Design: Austere Earthsiege Diamond", "=ds=#p12# (420)", "", "10%"};
- { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- Prev = "UPSkadi";
- Next = "UPTrash";
- };
-
- AtlasLoot_Data["UPTrash"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 37070, "", "=q3=Tundra Wolf Boots", "=ds=#s12#, #a2#", "", "2%"};
- { 3, 37069, "", "=q3=Dragonflayer Seer's Bindings", "=ds=#s8#, #a3#", "", "1%"};
- { 4, 37068, "", "=q3=Berserker's Sabatons", "=ds=#s12#, #a4#", "", "3%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 37587, "", "=q3=Ymirjar Physician's Robe", "=ds=#s5#, #a2#", "", "1%"};
- { 18, 37590, "", "=q3=Bands of Fading Light", "=ds=#s8#, #a4#", "", "1%"};
- { 19, 37410, "", "=q3=Tracker's Balanced Knives", "=ds=#w11#", "", "1%"};
- Prev = "UPYmiron";
- };
-
- ------------------
- --- The Oculus ---
- ------------------
-
- AtlasLoot_Data["OcuDrakos"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 36945, "", "=q3=Verdisa's Cuffs of Dreaming", "=ds=#s8#, #a1#", "", "21%"};
- { 3, 36946, "", "=q3=Runic Cage Chestpiece", "=ds=#s5#, #a3#", "", "23%"};
- { 4, 36943, "", "=q3=Timeless Beads of Eternos", "=ds=#s2#", "", "21%"};
- { 5, 36944, "", "=q3=Lifeblade of Belgaristrasz", "=ds=#h1#, #w4#", "", "25%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37258, "", "=q3=Drakewing Raiments", "=ds=#s5#, #a1#", "", "22%"};
- { 19, 37256, "", "=q3=Scaled Armor of Drakos", "=ds=#s5#, #a3#", "", "23%"};
- { 20, 37257, "", "=q3=Band of Torture", "=ds=#s13#", "", "23%"};
- { 21, 37255, "", "=q3=The Interrogator", "=ds=#h1#, #w10#", "", "23%"};
- Next = "OcuCloudstrider";
- };
-
- AtlasLoot_Data["OcuCloudstrider"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 36947, "", "=q3=Centrifuge Core Cloak", "=ds=#s4#", "", "21%"};
- { 3, 36949, "", "=q3=Gloves of the Azure-Lord", "=ds=#s9#, #a1#", "", "21%"};
- { 4, 36948, "", "=q3=Horned Helm of Varos", "=ds=#s1#, #a2#", "", "22%"};
- { 5, 36950, "", "=q3=Wing Commander's Breastplate", "=ds=#s5#, #a4#", "", "23%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37261, "", "=q3=Gloves of Radiant Light", "=ds=#s9#, #a2#", "", "22%"};
- { 19, 37262, "", "=q3=Azure Ringmail Leggings", "=ds=#s11#, #a3#", "", "21%"};
- { 20, 37263, "", "=q3=Legplates of the Oculus Guardian", "=ds=#s11#, #a4#", "", "21%"};
- { 21, 37260, "", "=q3=Cloudstrider's Waraxe", "=ds=#h1#, #w1#", "", "21%"};
- Prev = "OcuDrakos";
- Next = "OcuUrom";
- };
-
- AtlasLoot_Data["OcuUrom"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 36954, "", "=q3=The Conjurer's Slippers", "=ds=#s12#, #a1#", "", "21%"};
- { 3, 36951, "", "=q3=Sidestepping Handguards", "=ds=#s9#, #a2#", "", "20%"};
- { 4, 36953, "", "=q3=Spaulders of Skillful Maneuvers", "=ds=#s3#, #a3#", "", "21%"};
- { 5, 36952, "", "=q3=Girdle of Obscuring", "=ds=#s10#, #a4#", "", "18%"};
- { 7, 21525, "", "=q2=Green Winter Hat", "=ds=#s1#, #a1# =q2=#m28#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37289, "", "=q3=Sash of Phantasmal Images", "=ds=#s10#, #a1#", "", "18%"};
- { 19, 37288, "", "=q3=Catalytic Bands", "=ds=#s8#, #a4#", "", "18%"};
- { 20, 37195, "", "=q3=Band of Enchanted Growth", "=ds=#s13#", "", "20%"};
- { 21, 37264, "", "=q3=Pendulum of Telluric Currents", "=ds=#s14#", "", "20%"};
- { 23, 21525, "", "=q2=Green Winter Hat", "=ds=#s1#, #a1# =q2=#m28#"};
- Prev = "OcuCloudstrider";
- Next = "OcuEregos";
- };
-
- AtlasLoot_Data["OcuEregos"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 36973, "", "=q3=Vestments of the Scholar", "=ds=#s5#, #a1#", "", "18%"};
- { 3, 36971, "", "=q3=Headguard of Westrift", "=ds=#s1#, #a3#", "", "17%"};
- { 4, 36969, "", "=q3=Helm of the Ley-Guardian", "=ds=#s1#, #a4#", "", "14%"};
- { 5, 36974, "", "=q3=Eredormu's Ornamented Chestguard", "=ds=#s5#, #a4#", "", "18%"};
- { 6, 36961, "", "=q3=Dragonflight Great-Ring", "=ds=#s13#", "", "17%"};
- { 7, 36972, "", "=q3=Tome of Arcane Phenomena", "=ds=#s14#", "", "15%"};
- { 8, 36962, "", "=q3=Wyrmclaw Battleaxe", "=ds=#h2#, #w1#", "", "17%"};
- { 9, 36975, "", "=q3=Malygos's Favor", "=ds=#w9#", "", "17%"};
- { 10, 41798, "", "=q3=Design: Bracing Earthsiege Diamond", "=ds=#p12# (420)", "", "7%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 37361, "", "=q4=Cuffs of Winged Levitation", "=ds=#s8#, #a1#", "", "14%"};
- { 19, 37363, "", "=q4=Gauntlets of Dragon Wrath", "=ds=#s9#, #a4#", "", "13%"};
- { 20, 37362, "", "=q4=Leggings of Protective Auras", "=ds=#s11#, #a4#", "", "13%"};
- { 21, 37360, "", "=q4=Staff of Draconic Combat", "=ds=#w9#", "", "14%"};
- { 22, 37291, "", "=q3=Ancient Dragon Spirit Cape", "=ds=#s4#", "", "14%"};
- { 23, 37294, "", "=q3=Crown of Unbridled Magic", "=ds=#s1#, #a1#", "", "14%"};
- { 24, 37293, "", "=q3=Mask of the Watcher", "=ds=#s1#, #a2#", "", "15%"};
- { 25, 37292, "", "=q3=Ley-Guardian's Legguards", "=ds=#s11#, #a4#", "", "15%"};
- { 26, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- { 28, 52676, "", "=q2=Cache of the Ley-Guardian", "=ds="..AL["Random Heroic Reward"]};
- Prev = "OcuUrom";
- Next = "OcuTrash";
- };
-
- AtlasLoot_Data["OcuTrash"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 36978, "", "=q3=Ley-Whelphide Belt", "=ds=#s10#, #a2#", "", "0.45%"};
- { 3, 36977, "", "=q3=Bindings of the Construct", "=ds=#s8#, #a4#", "", "1%"};
- { 4, 36976, "", "=q3=Ring-Lord's Leggings", "=ds=#s11#, #a1#", "", "1%"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 37366, "", "=q3=Drake-Champion's Bracers", "=ds=#s8#, #a2#", "", "1%"};
- { 18, 37365, "", "=q3=Bands of the Sky Ring", "=ds=#s8#, #a3#", "", "1%"};
- { 19, 37290, "", "=q3=Dragon Prow Amulet", "=ds=#s2#", "", "1%"};
- { 20, 37364, "", "=q3=Frostbridge Orb", "=ds=#s15#", "", "1%"};
- Prev = "OcuEregos";
- };
-
- -------------------------
- --- Vault of Archavon ---
- -------------------------
-
- AtlasLoot_Data["VaultofArchavonArchavon1"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 2, 39492, "", "=q4=Heroes' Frostfire Robe", "=ds=#s5#, #a1#"};
- { 3, 39495, "", "=q4=Heroes' Frostfire Gloves", "=ds=#s9#, #a1#"};
- { 4, 39493, "", "=q4=Heroes' Frostfire Leggings", "=ds=#s11#, #a1#"};
- { 6, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 7, 39515, "", "=q4=Heroes' Robe of Faith", "=ds=#s5#, #a1#"};
- { 8, 39519, "", "=q4=Heroes' Gloves of Faith", "=ds=#s9#, #a1#"};
- { 9, 39517, "", "=q4=Heroes' Leggings of Faith", "=ds=#s11#, #a1#"};
- { 11, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 12, 39523, "", "=q4=Heroes' Raiments of Faith", "=ds=#s5#, #a1#"};
- { 13, 39530, "", "=q4=Heroes' Handwraps of Faith", "=ds=#s9#, #a1#"};
- { 14, 39528, "", "=q4=Heroes' Pants of Faith", "=ds=#s11#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 17, 41950, "", "=q4=Hateful Gladiator's Silk Raiment", "=ds=#s5#, #a1#"};
- { 18, 41969, "", "=q4=Hateful Gladiator's Silk Handguards", "=ds=#s9#, #a1#"};
- { 19, 41957, "", "=q4=Hateful Gladiator's Silk Trousers", "=ds=#s11#, #a1#"};
- { 21, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 22, 41857, "", "=q4=Hateful Gladiator's Mooncloth Robe", "=ds=#s5#, #a1#"};
- { 23, 41872, "", "=q4=Hateful Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#"};
- { 24, 41862, "", "=q4=Hateful Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#"};
- { 26, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 27, 41919, "", "=q4=Hateful Gladiator's Satin Robe", "=ds=#s5#, #a1#"};
- { 28, 41938, "", "=q4=Hateful Gladiator's Satin Gloves", "=ds=#s9#, #a1#"};
- { 29, 41925, "", "=q4=Hateful Gladiator's Satin Leggings", "=ds=#s11#, #a1#"};
- Next = "VaultofArchavonArchavon2";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon2"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 2, 39497, "", "=q4=Heroes' Plagueheart Robe", "=ds=#s5#, #a1#"};
- { 3, 39500, "", "=q4=Heroes' Plagueheart Gloves", "=ds=#s9#, #a1#"};
- { 4, 39498, "", "=q4=Heroes' Plagueheart Leggings", "=ds=#s11#, #a1#"};
- { 6, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 7, 39547, "", "=q4=Heroes' Dreamwalker Vestments", "=ds=#s5#, #a2#"};
- { 8, 39544, "", "=q4=Heroes' Dreamwalker Gloves", "=ds=#s9#, #a2#"};
- { 9, 39546, "", "=q4=Heroes' Dreamwalker Trousers", "=ds=#s11#, #a2#"};
- { 11, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 12, 39554, "", "=q4=Heroes' Dreamwalker Raiments", "=ds=#s5#, #a2#"};
- { 13, 39557, "", "=q4=Heroes' Dreamwalker Handgrips", "=ds=#s9#, #a2#"};
- { 14, 39555, "", "=q4=Heroes' Dreamwalker Legguards", "=ds=#s11#, #a2#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 17, 42001, "", "=q4=Hateful Gladiator's Felweave Raiment", "=ds=#s5#, #a1#"};
- { 18, 42015, "", "=q4=Hateful Gladiator's Felweave Handguards", "=ds=#s9#, #a1#"};
- { 19, 42003, "", "=q4=Hateful Gladiator's Felweave Trousers", "=ds=#s11#, #a1#"};
- { 21, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 22, 41314, "", "=q4=Hateful Gladiator's Wyrmhide Robes", "=ds=#s5#, #a2#"};
- { 23, 41291, "", "=q4=Hateful Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#"};
- { 24, 41302, "", "=q4=Hateful Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#"};
- { 26, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 27, 41659, "", "=q4=Hateful Gladiator's Dragonhide Robes", "=ds=#s5#, #a2#"};
- { 28, 41771, "", "=q4=Hateful Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#"};
- { 29, 41665, "", "=q4=Hateful Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#"};
- Prev = "VaultofArchavonArchavon1";
- Next = "VaultofArchavonArchavon3";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon3"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 2, 39538, "", "=q4=Heroes' Dreamwalker Robe", "=ds=#s5#, #a2#"};
- { 3, 39543, "", "=q4=Heroes' Dreamwalker Handguards", "=ds=#s9#, #a2#"};
- { 4, 39539, "", "=q4=Heroes' Dreamwalker Leggings", "=ds=#s11#, #a2#"};
- { 6, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 7, 39558, "", "=q4=Heroes' Bonescythe Breastplate", "=ds=#s5#, #a2#"};
- { 8, 39560, "", "=q4=Heroes' Bonescythe Gauntlets", "=ds=#s9#, #a2#"};
- { 9, 39564, "", "=q4=Heroes' Bonescythe Legplates", "=ds=#s11#, #a2#"};
- { 11, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 12, 39579, "", "=q4=Heroes' Crypstalker Tunic", "=ds=#s5#, #a3#"};
- { 13, 39582, "", "=q4=Heroes' Crypstalker Handguards", "=ds=#s9#, #a3#"};
- { 14, 39580, "", "=q4=Heroes' Crypstalker Legguards", "=ds=#s11#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 17, 41308, "", "=q4=Hateful Gladiator's Kodohide Robes", "=ds=#s5#, #a2#"};
- { 18, 41284, "", "=q4=Hateful Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#"};
- { 19, 41296, "", "=q4=Hateful Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#"};
- { 21, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 22, 41648, "", "=q4=Hateful Gladiator's Leather Tunic", "=ds=#s5#, #a2#"};
- { 23, 41765, "", "=q4=Hateful Gladiator's Leather Gloves", "=ds=#s9#, #a2#"};
- { 24, 41653, "", "=q4=Hateful Gladiator's Leather Legguards", "=ds=#s11#, #a2#"};
- { 26, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 27, 41085, "", "=q4=Hateful Gladiator's Chain Armor", "=ds=#s5#, #a3#"};
- { 28, 41141, "", "=q4=Hateful Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#"};
- { 29, 41203, "", "=q4=Hateful Gladiator's Chain Leggings", "=ds=#s11#, #a3#"};
- Prev = "VaultofArchavonArchavon2";
- Next = "VaultofArchavonArchavon4";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon4"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 2, 39592, "", "=q4=Heroes' Earthshatter Hauberk", "=ds=#s5#, #a3#"};
- { 3, 39593, "", "=q4=Heroes' Earthshatter Gloves", "=ds=#s9#, #a3#"};
- { 4, 39595, "", "=q4=Heroes' Earthshatter Kilt", "=ds=#s11#, #a3#"};
- { 6, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 7, 39597, "", "=q4=Heroes' Earthshatter Chestguard", "=ds=#s5#, #a3#"};
- { 8, 39601, "", "=q4=Heroes' Earthshatter Grips", "=ds=#s9#, #a3#"};
- { 9, 39603, "", "=q4=Heroes' Earthshatter War-Kilt", "=ds=#s11#, #a3#"};
- { 11, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 12, 39588, "", "=q4=Heroes' Earthshatter Tunic", "=ds=#s5#, #a3#"};
- { 13, 39591, "", "=q4=Heroes' Earthshatter Handguards", "=ds=#s9#, #a3#"};
- { 14, 39589, "", "=q4=Heroes' Earthshatter Legguards", "=ds=#s11#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 17, 40989, "", "=q4=Hateful Gladiator's Mail Armor", "=ds=#s5#, #a3#"};
- { 18, 41005, "", "=q4=Hateful Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#"};
- { 19, 41031, "", "=q4=Hateful Gladiator's Mail Leggings", "=ds=#s11#, #a3#"};
- { 21, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 22, 41079, "", "=q4=Hateful Gladiator's Linked Armor", "=ds=#s5#, #a3#"};
- { 23, 41135, "", "=q4=Hateful Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#"};
- { 24, 41162, "", "=q4=Hateful Gladiator's Linked Leggings", "=ds=#s11#, #a3#"};
- { 26, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 27, 40988, "", "=q4=Hateful Gladiator's Ringmail Armor", "=ds=#s5#, #a3#"};
- { 28, 40999, "", "=q4=Hateful Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#"};
- { 29, 41025, "", "=q4=Hateful Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#"};
- Prev = "VaultofArchavonArchavon3";
- Next = "VaultofArchavonArchavon5";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon5"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 2, 39617, "", "=q4=Heroes' Scourgeborne Battleplate", "=ds=#s5#, #a4#"};
- { 3, 39618, "", "=q4=Heroes' Scourgeborne Gauntlets", "=ds=#s9#, #a4#"};
- { 4, 39620, "", "=q4=Heroes' Scourgeborne Legplates", "=ds=#s11#, #a4#"};
- { 6, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 7, 39623, "", "=q4=Heroes' Scourgeborne Chestguard", "=ds=#s5#, #a4#"};
- { 8, 39624, "", "=q4=Heroes' Scourgeborne Handguards", "=ds=#s9#, #a4#"};
- { 9, 39626, "", "=q4=Heroes' Scourgeborne Legguards", "=ds=#s11#, #a4#"};
- { 11, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 12, 39629, "", "=q4=Heroes' Redemption Tunic", "=ds=#s5#, #a4#"};
- { 13, 39632, "", "=q4=Heroes' Redemption Gloves", "=ds=#s9#, #a4#"};
- { 14, 39630, "", "=q4=Heroes' Redemption Greaves", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 17, 40781, "", "=q4=Hateful Gladiator's Dreadplate Chestpiece", "=ds=#s5#, #a4#"};
- { 18, 40803, "", "=q4=Hateful Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#"};
- { 19, 40841, "", "=q4=Hateful Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#"};
- { 26, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 27, 40904, "", "=q4=Hateful Gladiator's Ornamented Chestguard", "=ds=#s5#, #a4#"};
- { 28, 40925, "", "=q4=Hateful Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#"};
- { 29, 40937, "", "=q4=Hateful Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonArchavon4";
- Next = "VaultofArchavonArchavon6";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon6"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 2, 39633, "", "=q4=Heroes' Redemption Chestpiece", "=ds=#s5#, #a4#"};
- { 3, 39634, "", "=q4=Heroes' Redemption Gauntlets", "=ds=#s9#, #a4#"};
- { 4, 39636, "", "=q4=Heroes' Redemption Legplates", "=ds=#s11#, #a4#"};
- { 6, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 7, 39638, "", "=q4=Heroes' Redemption Breastplate", "=ds=#s5#, #a4#"};
- { 8, 39639, "", "=q4=Heroes' Redemption Handguards", "=ds=#s9#, #a4#"};
- { 9, 39641, "", "=q4=Heroes' Redemption Legguards", "=ds=#s11#, #a4#"};
- { 11, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 12, 39606, "", "=q4=Heroes' Dreadnaught Battleplate", "=ds=#s5#, #a4#"};
- { 13, 39609, "", "=q4=Heroes' Dreadnaught Gauntlets", "=ds=#s9#, #a4#"};
- { 14, 39607, "", "=q4=Heroes' Dreadnaught Legplates", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 17, 40782, "", "=q4=Hateful Gladiator's Scaled Chestpiece", "=ds=#s5#, #a4#"};
- { 18, 40802, "", "=q4=Hateful Gladiator's Scaled Gauntlets", "=ds=#s11#, #a4#"};
- { 19, 40842, "", "=q4=Hateful Gladiator's Scaled Legguards", "=ds=#s11#, #a4#"};
- { 26, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 27, 40783, "", "=q4=Hateful Gladiator's Plate Chestpiece", "=ds=#s5#, #a4#"};
- { 28, 40801, "", "=q4=Hateful Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#"};
- { 29, 40840, "", "=q4=Hateful Gladiator's Plate Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonArchavon5";
- Next = "VaultofArchavonArchavon7";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon7"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- { 2, 39611, "", "=q4=Heroes' Dreadnaught Breastplate", "=ds=#s5#, #a4#"};
- { 3, 39622, "", "=q4=Heroes' Dreadnaught Handguards", "=ds=#s9#, #a4#"};
- { 4, 39612, "", "=q4=Heroes' Dreadnaught Legguards", "=ds=#s11#, #a4#"};
- { 6, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 7, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", ""};
- { 8, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", ""};
- Prev = "VaultofArchavonArchavon6";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon125Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 2, 40418, "", "=q4=Valorous Frostfire Robe", "=ds=#s5#, #a1#"};
- { 3, 40415, "", "=q4=Valorous Frostfire Gloves", "=ds=#s9#, #a1#"};
- { 4, 40417, "", "=q4=Valorous Frostfire Leggings", "=ds=#s11#, #a1#"};
- { 6, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 7, 40449, "", "=q4=Valorous Robe of Faith", "=ds=#s5#, #a1#"};
- { 8, 40445, "", "=q4=Valorous Gloves of Faith", "=ds=#s9#, #a1#"};
- { 9, 40448, "", "=q4=Valorous Leggings of Faith", "=ds=#s11#, #a1#"};
- { 11, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 12, 40458, "", "=q4=Valorous Raiments of Faith", "=ds=#s5#, #a1#"};
- { 13, 40454, "", "=q4=Valorous Handwraps of Faith", "=ds=#s9#, #a1#"};
- { 14, 40457, "", "=q4=Valorous Pants of Faith", "=ds=#s11#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 17, 41951, "", "=q4=Deadly Gladiator's Silk Raiment", "=ds=#s5#, #a1#"};
- { 18, 41970, "", "=q4=Deadly Gladiator's Silk Handguards", "=ds=#s9#, #a1#"};
- { 19, 41958, "", "=q4=Deadly Gladiator's Silk Trousers", "=ds=#s11#, #a1#"};
- { 21, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 22, 41858, "", "=q4=Deadly Gladiator's Mooncloth Robe", "=ds=#s5#, #a1#"};
- { 23, 41873, "", "=q4=Deadly Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#"};
- { 24, 41863, "", "=q4=Deadly Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#"};
- { 26, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 27, 41920, "", "=q4=Deadly Gladiator's Satin Robe", "=ds=#s5#, #a1#"};
- { 28, 41939, "", "=q4=Deadly Gladiator's Satin Gloves", "=ds=#s9#, #a1#"};
- { 29, 41926, "", "=q4=Deadly Gladiator's Satin Leggings", "=ds=#s11#, #a1#"};
- Next = "VaultofArchavonArchavon225Man";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon225Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 2, 40423, "", "=q4=Valorous Plagueheart Robe", "=ds=#s5#, #a1#"};
- { 3, 40420, "", "=q4=Valorous Plagueheart Gloves", "=ds=#s9#, #a1#"};
- { 4, 40422, "", "=q4=Valorous Plagueheart Leggings", "=ds=#s11#, #a1#"};
- { 6, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 7, 40469, "", "=q4=Valorous Dreamwalker Vestments", "=ds=#s5#, #a2#"};
- { 8, 40466, "", "=q4=Valorous Dreamwalker Gloves", "=ds=#s9#, #a2#"};
- { 9, 40468, "", "=q4=Valorous Dreamwalker Trousers", "=ds=#s11#, #a2#"};
- { 11, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 12, 40471, "", "=q4=Valorous Dreamwalker Raiments", "=ds=#s5#, #a2#"};
- { 13, 40472, "", "=q4=Valorous Dreamwalker Handgrips", "=ds=#s9#, #a2#"};
- { 14, 40493, "", "=q4=Valorous Dreamwalker Legguards", "=ds=#s11#, #a2#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 17, 41997, "", "=q4=Deadly Gladiator's Felweave Raiment", "=ds=#s5#, #a1#"};
- { 18, 42016, "", "=q4=Deadly Gladiator's Felweave Handguards", "=ds=#s9#, #a1#"};
- { 19, 42004, "", "=q4=Deadly Gladiator's Felweave Trousers", "=ds=#s11#, #a1#"};
- { 21, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 22, 41315, "", "=q4=Deadly Gladiator's Wyrmhide Robes", "=ds=#s5#, #a2#"};
- { 23, 41292, "", "=q4=Deadly Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#"};
- { 24, 41303, "", "=q4=Deadly Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#"};
- { 26, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 27, 41660, "", "=q4=Deadly Gladiator's Dragonhide Robes", "=ds=#s5#, #a2#"};
- { 28, 41772, "", "=q4=Deadly Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#"};
- { 29, 41666, "", "=q4=Deadly Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#"};
- Prev = "VaultofArchavonArchavon125Man";
- Next = "VaultofArchavonArchavon325Man";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon325Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 2, 40463, "", "=q4=Valorous Dreamwalker Robe", "=ds=#s5#, #a2#"};
- { 3, 40460, "", "=q4=Valorous Dreamwalker Handguards", "=ds=#s9#, #a2#"};
- { 4, 40462, "", "=q4=Valorous Dreamwalker Leggings", "=ds=#s11#, #a2#"};
- { 6, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 7, 40495, "", "=q4=Valorous Bonescythe Breastplate", "=ds=#s5#, #a2#"};
- { 8, 40496, "", "=q4=Valorous Bonescythe Gauntlets", "=ds=#s9#, #a2#"};
- { 9, 40500, "", "=q4=Valorous Bonescythe Legplates", "=ds=#s11#, #a2#"};
- { 11, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 12, 40503, "", "=q4=Valorous Crypstalker Tunic", "=ds=#s5#, #a3#"};
- { 13, 40504, "", "=q4=Valorous Crypstalker Handguards", "=ds=#s9#, #a3#"};
- { 14, 40506, "", "=q4=Valorous Crypstalker Legguards", "=ds=#s11#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 17, 41309, "", "=q4=Deadly Gladiator's Kodohide Robes", "=ds=#s5#, #a2#"};
- { 18, 41286, "", "=q4=Deadly Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#"};
- { 19, 41297, "", "=q4=Deadly Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#"};
- { 21, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 22, 41649, "", "=q4=Deadly Gladiator's Leather Tunic", "=ds=#s5#, #a2#"};
- { 23, 41766, "", "=q4=Deadly Gladiator's Leather Gloves", "=ds=#s9#, #a2#"};
- { 24, 41654, "", "=q4=Deadly Gladiator's Leather Legguards", "=ds=#s11#, #a2#"};
- { 26, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 27, 41086, "", "=q4=Deadly Gladiator's Chain Armor", "=ds=#s5#, #a3#"};
- { 28, 41142, "", "=q4=Deadly Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#"};
- { 29, 41204, "", "=q4=Deadly Gladiator's Chain Leggings", "=ds=#s11#, #a3#"};
- Prev = "VaultofArchavonArchavon225Man";
- Next = "VaultofArchavonArchavon425Man";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon425Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 2, 40514, "", "=q4=Valorous Earthshatter Hauberk", "=ds=#s5#, #a3#"};
- { 3, 40515, "", "=q4=Valorous Earthshatter Gloves", "=ds=#s9#, #a3#"};
- { 4, 40517, "", "=q4=Valorous Earthshatter Kilt", "=ds=#s11#, #a3#"};
- { 6, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 7, 40523, "", "=q4=Valorous Earthshatter Chestguard", "=ds=#s5#, #a3#"};
- { 8, 40520, "", "=q4=Valorous Earthshatter Grips", "=ds=#s9#, #a3#"};
- { 9, 40522, "", "=q4=Valorous Earthshatter War-Kilt", "=ds=#s11#, #a3#"};
- { 11, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 12, 40508, "", "=q4=Valorous Earthshatter Tunic", "=ds=#s5#, #a3#"};
- { 13, 40509, "", "=q4=Valorous Earthshatter Handguards", "=ds=#s9#, #a3#"};
- { 14, 40512, "", "=q4=Valorous Earthshatter Legguards", "=ds=#s11#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 17, 40991, "", "=q4=Deadly Gladiator's Mail Armor", "=ds=#s5#, #a3#"};
- { 18, 41006, "", "=q4=Deadly Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#"};
- { 19, 41032, "", "=q4=Deadly Gladiator's Mail Leggings", "=ds=#s11#, #a3#"};
- { 21, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 22, 41080, "", "=q4=Deadly Gladiator's Linked Armor", "=ds=#s5#, #a3#"};
- { 23, 41136, "", "=q4=Deadly Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#"};
- { 24, 41198, "", "=q4=Deadly Gladiator's Linked Leggings", "=ds=#s11#, #a3#"};
- { 26, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 27, 40990, "", "=q4=Deadly Gladiator's Ringmail Armor", "=ds=#s5#, #a3#"};
- { 28, 41000, "", "=q4=Deadly Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#"};
- { 29, 41026, "", "=q4=Deadly Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#"};
- Prev = "VaultofArchavonArchavon325Man";
- Next = "VaultofArchavonArchavon525Man";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon525Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 2, 40550, "", "=q4=Valorous Scourgeborne Battleplate", "=ds=#s5#, #a4#"};
- { 3, 40552, "", "=q4=Valorous Scourgeborne Gauntlets", "=ds=#s9#, #a4#"};
- { 4, 40556, "", "=q4=Valorous Scourgeborne Legplates", "=ds=#s11#, #a4#"};
- { 6, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 7, 40559, "", "=q4=Valorous Scourgeborne Chestguard", "=ds=#s5#, #a4#"};
- { 8, 40563, "", "=q4=Valorous Scourgeborne Handguards", "=ds=#s9#, #a4#"};
- { 9, 40567, "", "=q4=Valorous Scourgeborne Legguards", "=ds=#s11#, #a4#"};
- { 11, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 12, 40569, "", "=q4=Valorous Redemption Tunic", "=ds=#s5#, #a4#"};
- { 13, 40570, "", "=q4=Valorous Redemption Gloves", "=ds=#s9#, #a4#"};
- { 14, 40572, "", "=q4=Valorous Redemption Greaves", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 17, 40784, "", "=q4=Deadly Gladiator's Dreadplate Chestpiece", "=ds=#s5#, #a4#"};
- { 18, 40806, "", "=q4=Deadly Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#"};
- { 19, 40845, "", "=q4=Deadly Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#"};
- { 26, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 27, 40905, "", "=q4=Deadly Gladiator's Ornamented Chestguard", "=ds=#s5#, #a4#"};
- { 28, 40926, "", "=q4=Deadly Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#"};
- { 29, 40938, "", "=q4=Deadly Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonArchavon425Man";
- Next = "VaultofArchavonArchavon625Man";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon625Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 2, 40574, "", "=q4=Valorous Redemption Chestpiece", "=ds=#s5#, #a4#"};
- { 3, 40575, "", "=q4=Valorous Redemption Gauntlets", "=ds=#s9#, #a4#"};
- { 4, 40577, "", "=q4=Valorous Redemption Legplates", "=ds=#s11#, #a4#"};
- { 6, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 7, 40579, "", "=q4=Valorous Redemption Breastplate", "=ds=#s5#, #a4#"};
- { 8, 40580, "", "=q4=Valorous Redemption Handguards", "=ds=#s9#, #a4#"};
- { 9, 40583, "", "=q4=Valorous Redemption Legguards", "=ds=#s11#, #a4#"};
- { 11, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 12, 40525, "", "=q4=Valorous Dreadnaught Battleplate", "=ds=#s5#, #a4#"};
- { 13, 40527, "", "=q4=Valorous Dreadnaught Gauntlets", "=ds=#s9#, #a4#"};
- { 14, 40529, "", "=q4=Valorous Dreadnaught Legplates", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 17, 40785, "", "=q4=Deadly Gladiator's Scaled Chestpiece", "=ds=#s5#, #a4#"};
- { 18, 40805, "", "=q4=Deadly Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#"};
- { 19, 40846, "", "=q4=Deadly Gladiator's Scaled Legguards", "=ds=#s11#, #a4#"};
- { 26, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 27, 40786, "", "=q4=Deadly Gladiator's Plate Chestpiece", "=ds=#s5#, #a4#"};
- { 28, 40804, "", "=q4=Deadly Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#"};
- { 29, 40844, "", "=q4=Deadly Gladiator's Plate Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonArchavon525Man";
- Next = "VaultofArchavonArchavon725Man";
- };
-
- AtlasLoot_Data["VaultofArchavonArchavon725Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- { 2, 40544, "", "=q4=Valorous Dreadnaught Breastplate", "=ds=#s5#, #a4#"};
- { 3, 40545, "", "=q4=Valorous Dreadnaught Handguards", "=ds=#s9#, #a4#"};
- { 4, 40547, "", "=q4=Valorous Dreadnaught Legguards", "=ds=#s11#, #a4#"};
- { 6, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 7, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", ""};
- { 8, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", ""};
- Prev = "VaultofArchavonArchavon625Man";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon1"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 2, 46131, "", "=q4=Valorous Kirin'dor Gauntlets", "=ds=#s9#, #a1#"};
- { 3, 45367, "", "=q4=Valorous Kirin'dor Leggings", "=ds=#s11#, #a1#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 6, 45387, "", "=q4=Valorous Gloves of Sanctification", "=ds=#s9#, #a1#"};
- { 7, 45388, "", "=q4=Valorous Leggings of Sanctification", "=ds=#s11#, #a1#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 10, 45392, "", "=q4=Valorous Handwraps of Sanctification", "=ds=#s9#, #a1#"};
- { 11, 45394, "", "=q4=Valorous Pants of Sanctification", "=ds=#s11#, #a1#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 14, 45419, "", "=q4=Valorous Deathbringer Gloves", "=ds=#s9#, #a1#"};
- { 15, 45420, "", "=q4=Valorous Deathbringer Leggings", "=ds=#s11#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 17, 41970, "", "=q4=Deadly Gladiator's Silk Handguards", "=ds=#s9#, #a1#"};
- { 18, 41958, "", "=q4=Deadly Gladiator's Silk Trousers", "=ds=#s11#, #a1#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 21, 41873, "", "=q4=Deadly Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#"};
- { 22, 41863, "", "=q4=Deadly Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 25, 41939, "", "=q4=Deadly Gladiator's Satin Gloves", "=ds=#s9#, #a1#"};
- { 26, 41926, "", "=q4=Deadly Gladiator's Satin Leggings", "=ds=#s11#, #a1#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 29, 42016, "", "=q4=Deadly Gladiator's Felweave Handguards", "=ds=#s9#, #a1#"};
- { 30, 42004, "", "=q4=Deadly Gladiator's Felweave Trousers", "=ds=#s11#, #a1#"};
- Next = "VaultofArchavonEmalon2";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon2"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 2, 45351, "", "=q4=Valorous Nightsong Gloves", "=ds=#s9#, #a2#"};
- { 3, 45353, "", "=q4=Valorous Nightsong Trousers", "=ds=#s11#, #a2#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 6, 45355, "", "=q4=Valorous Nightsong Handgrips", "=ds=#s9#, #a2#"};
- { 7, 45357, "", "=q4=Valorous Nightsong Legguards", "=ds=#s11#, #a2#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 10, 45345, "", "=q4=Valorous Nightsong Handguards", "=ds=#s9#, #a2#"};
- { 11, 45347, "", "=q4=Valorous Nightsong Leggings", "=ds=#s11#, #a2#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 14, 45397, "", "=q4=Valorous Terrorblade Gauntlets", "=ds=#s9#, #a2#"};
- { 15, 45399, "", "=q4=Valorous Terrorblade Legplates", "=ds=#s11#, #a2#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 17, 41292, "", "=q4=Deadly Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#"};
- { 18, 41303, "", "=q4=Deadly Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 21, 41772, "", "=q4=Deadly Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#"};
- { 22, 41666, "", "=q4=Deadly Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 25, 41286, "", "=q4=Deadly Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#"};
- { 26, 41297, "", "=q4=Deadly Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 29, 41766, "", "=q4=Deadly Gladiator's Leather Gloves", "=ds=#s9#, #a2#"};
- { 30, 41654, "", "=q4=Deadly Gladiator's Leather Legguards", "=ds=#s11#, #a2#"};
- Prev = "VaultofArchavonEmalon1";
- Next = "VaultofArchavonEmalon3";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon3"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 2, 45360, "", "=q4=Valorous Scourgestalker Handguards", "=ds=#s9#, #a3#"};
- { 3, 45362, "", "=q4=Valorous Scourgestalker Legguards", "=ds=#s11#, #a3#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 6, 45406, "", "=q4=Valorous Worldbreaker Gloves", "=ds=#s9#, #a3#"};
- { 7, 45409, "", "=q4=Valorous Worldbreaker Kilt", "=ds=#s11#, #a3#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 10, 45414, "", "=q4=Valorous Worldbreaker Grips", "=ds=#s9#, #a3#"};
- { 11, 45416, "", "=q4=Valorous Worldbreaker War-Kilt", "=ds=#s11#, #a3#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 14, 45401, "", "=q4=Valorous Worldbreaker Handguards", "=ds=#s9#, #a3#"};
- { 15, 45403, "", "=q4=Valorous Worldbreaker Legguards", "=ds=#s11#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 17, 41142, "", "=q4=Deadly Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#"};
- { 18, 41204, "", "=q4=Deadly Gladiator's Chain Leggings", "=ds=#s11#, #a3#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 21, 41006, "", "=q4=Deadly Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#"};
- { 22, 41032, "", "=q4=Deadly Gladiator's Mail Leggings", "=ds=#s11#, #a3#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 25, 41136, "", "=q4=Deadly Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#"};
- { 26, 41198, "", "=q4=Deadly Gladiator's Linked Leggings", "=ds=#s11#, #a3#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 29, 41000, "", "=q4=Deadly Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#"};
- { 30, 41026, "", "=q4=Deadly Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#"};
- Prev = "VaultofArchavonEmalon2";
- Next = "VaultofArchavonEmalon4";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon4"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 2, 45341, "", "=q4=Valorous Darkruned Gauntlets", "=ds=#s9#, #a4#"};
- { 3, 45343, "", "=q4=Valorous Darkruned Legplates", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 6, 45337, "", "=q4=Valorous Darkruned Handguards", "=ds=#s9#, #a4#"};
- { 7, 45338, "", "=q4=Valorous Darkruned Legguards", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 10, 45370, "", "=q4=Valorous Aegis Gloves", "=ds=#s9#, #a4#"};
- { 11, 45371, "", "=q4=Valorous Aegis Greaves", "=ds=#s11#, #a4#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 14, 45376, "", "=q4=Valorous Aegis Gauntlets", "=ds=#s9#, #a4#"};
- { 15, 45379, "", "=q4=Valorous Aegis Legplates", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 17, 40806, "", "=q4=Deadly Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#"};
- { 18, 40845, "", "=q4=Deadly Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 25, 40926, "", "=q4=Deadly Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#"};
- { 26, 40938, "", "=q4=Deadly Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 29, 40805, "", "=q4=Deadly Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#"};
- { 30, 40846, "", "=q4=Deadly Gladiator's Scaled Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonEmalon3";
- Next = "VaultofArchavonEmalon5";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon5"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 2, 45383, "", "=q4=Valorous Aegis Handguards", "=ds=#s9#, #a4#"};
- { 3, 45384, "", "=q4=Valorous Aegis Legguards", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 6, 45430, "", "=q4=Valorous Siegebreaker Gauntlets", "=ds=#s9#, #a4#"};
- { 7, 45432, "", "=q4=Valorous Siegebreaker Legplates", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- { 10, 45426, "", "=q4=Valorous Siegebreaker Handguards", "=ds=#s9#, #a4#"};
- { 11, 45427, "", "=q4=Valorous Siegebreaker Legguards", "=ds=#s11#, #a4#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 21, 40804, "", "=q4=Deadly Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#"};
- { 22, 40844, "", "=q4=Deadly Gladiator's Plate Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonEmalon4";
- Next = "VaultofArchavonEmalon6";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon6"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Cloth"]};
- { 2, 41908, "", "=q4=Deadly Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#"};
- { 3, 41897, "", "=q4=Deadly Gladiator's Cord of Dominance", "=ds=#s10#, #a1#"};
- { 4, 41902, "", "=q4=Deadly Gladiator's Treads of Dominance", "=ds=#s12#, #a1#"};
- { 6, 41892, "", "=q4=Deadly Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#"};
- { 7, 41880, "", "=q4=Deadly Gladiator's Cord of Salvation", "=ds=#s10#, #a1#"};
- { 8, 41884, "", "=q4=Deadly Gladiator's Treads of Salvation", "=ds=#s12#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Leather"]};
- { 17, 41639, "", "=q4=Deadly Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#"};
- { 18, 41629, "", "=q4=Deadly Gladiator's Belt of Dominance", "=ds=#s10#, #a2#"};
- { 19, 41634, "", "=q4=Deadly Gladiator's Boots of Dominance", "=ds=#s12#, #a2#"};
- { 21, 41624, "", "=q4=Deadly Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#"};
- { 22, 41616, "", "=q4=Deadly Gladiator's Belt of Salvation", "=ds=#s10#, #a2#"};
- { 23, 41620, "", "=q4=Deadly Gladiator's Boots of Salvation", "=ds=#s12#, #a2#"};
- { 25, 41839, "", "=q4=Deadly Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#"};
- { 26, 41831, "", "=q4=Deadly Gladiator's Belt of Triumph", "=ds=#s10#, #a2#"};
- { 27, 41835, "", "=q4=Deadly Gladiator's Boots of Triumph", "=ds=#s12#, #a2#"};
- Prev = "VaultofArchavonEmalon5";
- Next = "VaultofArchavonEmalon7";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon7"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Mail"]};
- { 2, 41064, "", "=q4=Deadly Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#"};
- { 3, 41069, "", "=q4=Deadly Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#"};
- { 4, 41074, "", "=q4=Deadly Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#"};
- { 6, 41059, "", "=q4=Deadly Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#"};
- { 7, 41048, "", "=q4=Deadly Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#"};
- { 8, 41054, "", "=q4=Deadly Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#"};
- { 10, 41224, "", "=q4=Deadly Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#"};
- { 11, 41234, "", "=q4=Deadly Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#"};
- { 12, 41229, "", "=q4=Deadly Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Plate"]};
- { 17, 40982, "", "=q4=Deadly Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#"};
- { 18, 40974, "", "=q4=Deadly Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#"};
- { 19, 40975, "", "=q4=Deadly Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#"};
- { 21, 40888, "", "=q4=Deadly Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#"};
- { 22, 40879, "", "=q4=Deadly Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#"};
- { 23, 40880, "", "=q4=Deadly Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#"};
- Prev = "VaultofArchavonEmalon6";
- Next = "VaultofArchavonEmalon8";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon8"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Back"]};
- { 2, 42064, "", "=q4=Deadly Gladiator's Cloak of Ascendancy", "=ds=#s4#"};
- { 3, 42066, "", "=q4=Deadly Gladiator's Cloak of Deliverance", "=ds=#s4#"};
- { 4, 42062, "", "=q4=Deadly Gladiator's Cloak of Dominance", "=ds=#s4#"};
- { 5, 42065, "", "=q4=Deadly Gladiator's Cloak of Salvation", "=ds=#s4#"};
- { 6, 42063, "", "=q4=Deadly Gladiator's Cloak of Subjugation", "=ds=#s4#"};
- { 7, 42067, "", "=q4=Deadly Gladiator's Cloak of Triumph", "=ds=#s4#"};
- { 8, 42068, "", "=q4=Deadly Gladiator's Cloak of Victory", "=ds=#s4#"};
- { 11, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", ""};
- { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", ""};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Neck"]};
- { 17, 42030, "", "=q4=Deadly Gladiator's Pendant of Ascendancy", "=ds=#s2#"};
- { 18, 42032, "", "=q4=Deadly Gladiator's Pendant of Deliverance", "=ds=#s2#"};
- { 19, 42029, "", "=q4=Deadly Gladiator's Pendant of Dominance", "=ds=#s2#"};
- { 20, 42033, "", "=q4=Deadly Gladiator's Pendant of Salvation", "=ds=#s2#"};
- { 21, 42031, "", "=q4=Deadly Gladiator's Pendant of Subjugation", "=ds=#s2#"};
- { 22, 42027, "", "=q4=Deadly Gladiator's Pendant of Triumph", "=ds=#s2#"};
- { 23, 42028, "", "=q4=Deadly Gladiator's Pendant of Victory", "=ds=#s2#"};
- { 26, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Ring"]};
- { 27, 42114, "", "=q4=Deadly Gladiator's Band of Ascendancy", "=ds=#s13#"};
- { 28, 42115, "", "=q4=Deadly Gladiator's Band of Victory", "=ds=#s13#"};
- Prev = "VaultofArchavonEmalon7";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon125Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 2, 46132, "", "=q4=Conqueror's Kirin'dor Gauntlets", "=ds=#s9#, #a1#"};
- { 3, 46133, "", "=q4=Conqueror's Kirin'dor Leggings", "=ds=#s11#, #a1#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 6, 46188, "", "=q4=Conqueror's Gloves of Sanctification", "=ds=#s9#, #a1#"};
- { 7, 46195, "", "=q4=Conqueror's Leggings of Sanctification", "=ds=#s11#, #a1#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 10, 46163, "", "=q4=Conqueror's Handwraps of Sanctification", "=ds=#s9#, #a1#"};
- { 11, 46170, "", "=q4=Conqueror's Pants of Sanctification", "=ds=#s11#, #a1#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 14, 46135, "", "=q4=Conqueror's Deathbringer Gloves", "=ds=#s9#, #a1#"};
- { 15, 46139, "", "=q4=Conqueror's Deathbringer Leggings", "=ds=#s11#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 17, 41971, "", "=q4=Furious Gladiator's Silk Handguards", "=ds=#s9#, #a1#"};
- { 18, 41959, "", "=q4=Furious Gladiator's Silk Trousers", "=ds=#s11#, #a1#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 21, 41874, "", "=q4=Furious Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#"};
- { 22, 41864, "", "=q4=Furious Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 25, 41940, "", "=q4=Furious Gladiator's Satin Gloves", "=ds=#s9#, #a1#"};
- { 26, 41927, "", "=q4=Furious Gladiator's Satin Leggings", "=ds=#s11#, #a1#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 29, 42017, "", "=q4=Furious Gladiator's Felweave Handguards", "=ds=#s9#, #a1#"};
- { 30, 42005, "", "=q4=Furious Gladiator's Felweave Trousers", "=ds=#s11#, #a1#"};
- Next = "VaultofArchavonEmalon225Man";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon225Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 2, 46189, "", "=q4=Conqueror's Nightsong Gloves", "=ds=#s9#, #a2#"};
- { 3, 46192, "", "=q4=Conqueror's Nightsong Trousers", "=ds=#s11#, #a2#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 6, 46158, "", "=q4=Conqueror's Nightsong Handgrips", "=ds=#s9#, #a2#"};
- { 7, 46160, "", "=q4=Conqueror's Nightsong Legguards", "=ds=#s11#, #a2#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 10, 46183, "", "=q4=Conqueror's Nightsong Handguards", "=ds=#s9#, #a2#"};
- { 11, 46185, "", "=q4=Conqueror's Nightsong Leggings", "=ds=#s11#, #a2#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 14, 46124, "", "=q4=Conqueror's Terrorblade Gauntlets", "=ds=#s9#, #a2#"};
- { 15, 46126, "", "=q4=Conqueror's Terrorblade Legplates", "=ds=#s11#, #a2#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 17, 41293, "", "=q4=Furious Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#"};
- { 18, 41304, "", "=q4=Furious Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 21, 41773, "", "=q4=Furious Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#"};
- { 22, 41667, "", "=q4=Furious Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 25, 41287, "", "=q4=Furious Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#"};
- { 26, 41298, "", "=q4=Furious Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 29, 41767, "", "=q4=Furious Gladiator's Leather Gloves", "=ds=#s9#, #a2#"};
- { 30, 41655, "", "=q4=Furious Gladiator's Leather Legguards", "=ds=#s11#, #a2#"};
- Prev = "VaultofArchavonEmalon125Man";
- Next = "VaultofArchavonEmalon325Man";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon325Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 2, 46142, "", "=q4=Conqueror's Scourgestalker Handguards", "=ds=#s9#, #a3#"};
- { 3, 46144, "", "=q4=Conqueror's Scourgestalker Legguards", "=ds=#s11#, #a3#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 6, 46207, "", "=q4=Conqueror's Worldbreaker Gloves", "=ds=#s9#, #a3#"};
- { 7, 46210, "", "=q4=Conqueror's Worldbreaker Kilt", "=ds=#s11#, #a3#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 10, 46200, "", "=q4=Conqueror's Worldbreaker Grips", "=ds=#s9#, #a3#"};
- { 11, 46208, "", "=q4=Conqueror's Worldbreaker War-Kilt", "=ds=#s11#, #a3#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 14, 46199, "", "=q4=Conqueror's Worldbreaker Handguards", "=ds=#s9#, #a3#"};
- { 15, 46202, "", "=q4=Conqueror's Worldbreaker Legguards", "=ds=#s11#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 17, 41143, "", "=q4=Furious Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#"};
- { 18, 41205, "", "=q4=Furious Gladiator's Chain Leggings", "=ds=#s11#, #a3#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 21, 41007, "", "=q4=Furious Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#"};
- { 22, 41033, "", "=q4=Furious Gladiator's Mail Leggings", "=ds=#s11#, #a3#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 25, 41137, "", "=q4=Furious Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#"};
- { 26, 41199, "", "=q4=Furious Gladiator's Linked Leggings", "=ds=#s11#, #a3#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 29, 41001, "", "=q4=Furious Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#"};
- { 30, 41027, "", "=q4=Furious Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#"};
- Prev = "VaultofArchavonEmalon225Man";
- Next = "VaultofArchavonEmalon425Man";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon425Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 2, 46113, "", "=q4=Conqueror's Darkruned Gauntlets", "=ds=#s9#, #a4#"};
- { 3, 46116, "", "=q4=Conqueror's Darkruned Legplates", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 6, 46119, "", "=q4=Conqueror's Darkruned Handguards", "=ds=#s9#, #a4#"};
- { 7, 46121, "", "=q4=Conqueror's Darkruned Legguards", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 10, 46179, "", "=q4=Conqueror's Aegis Gloves", "=ds=#s9#, #a4#"};
- { 11, 46181, "", "=q4=Conqueror's Aegis Greaves", "=ds=#s11#, #a4#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 14, 46155, "", "=q4=Conqueror's Aegis Gauntlets", "=ds=#s9#, #a4#"};
- { 15, 46153, "", "=q4=Conqueror's Aegis Legplates", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 17, 40809, "", "=q4=Furious Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#"};
- { 18, 40848, "", "=q4=Furious Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 25, 40927, "", "=q4=Furious Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#"};
- { 26, 40939, "", "=q4=Furious Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 29, 40808, "", "=q4=Furious Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#"};
- { 30, 40849, "", "=q4=Furious Gladiator's Scaled Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonEmalon325Man";
- Next = "VaultofArchavonEmalon525Man";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon525Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 2, 46174, "", "=q4=Conqueror's Aegis Handguards", "=ds=#s9#, #a4#"};
- { 3, 46176, "", "=q4=Conqueror's Aegis Legguards", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 6, 46148, "", "=q4=Conqueror's Siegebreaker Gauntlets", "=ds=#s9#, #a4#"};
- { 7, 46150, "", "=q4=Conqueror's Siegebreaker Legplates", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- { 10, 46164, "", "=q4=Conqueror's Siegebreaker Handguards", "=ds=#s9#, #a4#"};
- { 11, 46169, "", "=q4=Conqueror's Siegebreaker Legguards", "=ds=#s11#, #a4#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 21, 40807, "", "=q4=Furious Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#"};
- { 22, 40847, "", "=q4=Furious Gladiator's Plate Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonEmalon425Man";
- Next = "VaultofArchavonEmalon625Man";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon625Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Cloth"]};
- { 2, 41909, "", "=q4=Furious Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#"};
- { 3, 41898, "", "=q4=Furious Gladiator's Cord of Dominance", "=ds=#s10#, #a1#"};
- { 4, 41903, "", "=q4=Furious Gladiator's Slippers of Dominance", "=ds=#s12#, #a1#"};
- { 6, 41893, "", "=q4=Furious Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#"};
- { 7, 41881, "", "=q4=Furious Gladiator's Cord of Salvation", "=ds=#s10#, #a1#"};
- { 8, 41885, "", "=q4=Furious Gladiator's Slippers of Salvation", "=ds=#s12#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Leather"]};
- { 17, 41640, "", "=q4=Furious Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#"};
- { 18, 41630, "", "=q4=Furious Gladiator's Belt of Dominance", "=ds=#s10#, #a2#"};
- { 19, 41635, "", "=q4=Furious Gladiator's Boots of Dominance", "=ds=#s12#, #a2#"};
- { 21, 41625, "", "=q4=Furious Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#"};
- { 22, 41617, "", "=q4=Furious Gladiator's Belt of Salvation", "=ds=#s10#, #a2#"};
- { 23, 41621, "", "=q4=Furious Gladiator's Boots of Salvation", "=ds=#s12#, #a2#"};
- { 25, 41840, "", "=q4=Furious Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#"};
- { 26, 41832, "", "=q4=Furious Gladiator's Belt of Triumph", "=ds=#s10#, #a2#"};
- { 27, 41836, "", "=q4=Furious Gladiator's Boots of Triumph", "=ds=#s12#, #a2#"};
- Prev = "VaultofArchavonEmalon525Man";
- Next = "VaultofArchavonEmalon725Man";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon725Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Mail"]};
- { 2, 41065, "", "=q4=Furious Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#"};
- { 3, 41070, "", "=q4=Furious Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#"};
- { 4, 41075, "", "=q4=Furious Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#"};
- { 6, 41060, "", "=q4=Furious Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#"};
- { 7, 41051, "", "=q4=Furious Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#"};
- { 8, 41055, "", "=q4=Furious Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#"};
- { 10, 41225, "", "=q4=Furious Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#"};
- { 11, 41235, "", "=q4=Furious Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#"};
- { 12, 41230, "", "=q4=Furious Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Plate"]};
- { 17, 40983, "", "=q4=Furious Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#"};
- { 18, 40976, "", "=q4=Furious Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#"};
- { 19, 40977, "", "=q4=Furious Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#"};
- { 21, 40889, "", "=q4=Furious Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#"};
- { 22, 40881, "", "=q4=Furious Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#"};
- { 23, 40882, "", "=q4=Furious Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#"};
- Prev = "VaultofArchavonEmalon625Man";
- Next = "VaultofArchavonEmalon825Man";
- };
-
- AtlasLoot_Data["VaultofArchavonEmalon825Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Back"]};
- { 2, 42071, "", "=q4=Furious Gladiator's Cloak of Ascendancy", "=ds=#s4#"};
- { 3, 42073, "", "=q4=Furious Gladiator's Cloak of Deliverance", "=ds=#s4#"};
- { 4, 42069, "", "=q4=Furious Gladiator's Cloak of Dominance", "=ds=#s4#"};
- { 5, 42072, "", "=q4=Furious Gladiator's Cloak of Salvation", "=ds=#s4#"};
- { 6, 42070, "", "=q4=Furious Gladiator's Cloak of Subjugation", "=ds=#s4#"};
- { 7, 42074, "", "=q4=Furious Gladiator's Cloak of Triumph", "=ds=#s4#"};
- { 8, 42075, "", "=q4=Furious Gladiator's Cloak of Victory", "=ds=#s4#"};
- { 11, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", ""};
- { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", ""};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Neck"]};
- { 17, 42037, "", "=q4=Furious Gladiator's Pendant of Ascendancy", "=ds=#s2#"};
- { 18, 42039, "", "=q4=Furious Gladiator's Pendant of Deliverance", "=ds=#s2#"};
- { 19, 42036, "", "=q4=Furious Gladiator's Pendant of Dominance", "=ds=#s2#"};
- { 20, 42040, "", "=q4=Furious Gladiator's Pendant of Salvation", "=ds=#s2#"};
- { 21, 42038, "", "=q4=Furious Gladiator's Pendant of Subjugation", "=ds=#s2#"};
- { 22, 46373, "", "=q4=Furious Gladiator's Pendant of Sundering", "=ds=#s2#"};
- { 23, 42034, "", "=q4=Furious Gladiator's Pendant of Triumph", "=ds=#s2#"};
- { 24, 42035, "", "=q4=Furious Gladiator's Pendant of Victory", "=ds=#s2#"};
- { 26, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Ring"]};
- { 27, 42116, "", "=q4=Furious Gladiator's Band of Dominance", "=ds=#s13#"};
- { 28, 42117, "", "=q4=Furious Gladiator's Band of Triumph", "=ds=#s13#"};
- Prev = "VaultofArchavonEmalon725Man";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon1_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 2, 47752, "", "=q4=Khadgar's Gauntlets of Conquest", "=ds=#s9#, #a1#"};
- { 3, 47750, "", "=q4=Khadgar's Leggings of Conquest", "=ds=#s11#, #a1#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 6, 47982, "", "=q4=Velen's Gloves of Conquest", "=ds=#s9#, #a1#"};
- { 7, 47980, "", "=q4=Velen's Leggings of Conquest", "=ds=#s11#, #a1#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 10, 48072, "", "=q4=Velen's Handwraps of Conquest", "=ds=#s9#, #a1#"};
- { 11, 48074, "", "=q4=Velen's Pants of Conquest", "=ds=#s11#, #a1#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 14, 47783, "", "=q4=Kel'Thuzad's Gloves of Conquest", "=ds=#s9#, #a1#"};
- { 15, 47785, "", "=q4=Kel'Thuzad's Leggings of Conquest", "=ds=#s11#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 17, 41971, "", "=q4=Furious Gladiator's Silk Handguards", "=ds=#s9#, #a1#"};
- { 18, 41959, "", "=q4=Furious Gladiator's Silk Trousers", "=ds=#s11#, #a1#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 21, 41874, "", "=q4=Furious Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#"};
- { 22, 41864, "", "=q4=Furious Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 25, 41940, "", "=q4=Furious Gladiator's Satin Gloves", "=ds=#s9#, #a1#"};
- { 26, 41927, "", "=q4=Furious Gladiator's Satin Leggings", "=ds=#s11#, #a1#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 29, 42017, "", "=q4=Furious Gladiator's Felweave Handguards", "=ds=#s9#, #a1#"};
- { 30, 42005, "", "=q4=Furious Gladiator's Felweave Trousers", "=ds=#s11#, #a1#"};
- Next = "VaultofArchavonKoralon2_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon2_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 2, 48162, "", "=q4=Stormrage's Gloves of Conquest", "=ds=#s9#, #a2#"};
- { 3, 48160, "", "=q4=Stormrage's Trousers of Conquest", "=ds=#s11#, #a2#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 6, 48213, "", "=q4=Stormrage's Handgrips of Conquest", "=ds=#s9#, #a2#"};
- { 7, 48215, "", "=q4=Stormrage's Legguards of Conquest", "=ds=#s11#, #a2#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 10, 48132, "", "=q4=Stormrage's Handguards of Conquest", "=ds=#s9#, #a2#"};
- { 11, 48130, "", "=q4=Stormrage's Leggings of Conquest", "=ds=#s11#, #a2#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 14, 48222, "", "=q4=VanCleef's Gauntlets of Conquest", "=ds=#s9#, #a2#"};
- { 15, 48220, "", "=q4=VanCleef's Legplates of Conquest", "=ds=#s11#, #a2#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 17, 41293, "", "=q4=Furious Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#"};
- { 18, 41304, "", "=q4=Furious Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 21, 41773, "", "=q4=Furious Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#"};
- { 22, 41667, "", "=q4=Furious Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 25, 41287, "", "=q4=Furious Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#"};
- { 26, 41298, "", "=q4=Furious Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 29, 41767, "", "=q4=Furious Gladiator's Leather Gloves", "=ds=#s9#, #a2#"};
- { 30, 41655, "", "=q4=Furious Gladiator's Leather Legguards", "=ds=#s11#, #a2#"};
- Prev = "VaultofArchavonKoralon1_A";
- Next = "VaultofArchavonKoralon3_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon3_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 2, 48254, "", "=q4=Windrunner's Handguards of Conquest", "=ds=#s9#, #a3#"};
- { 3, 48252, "", "=q4=Windrunner's Legguards of Conquest", "=ds=#s11#, #a3#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 6, 48312, "", "=q4=Nobundo's Gloves of Conquest", "=ds=#s9#, #a3#"};
- { 7, 48314, "", "=q4=Nobundo's Kilt of Conquest", "=ds=#s11#, #a3#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 10, 48342, "", "=q4=Nobundo's Grips of Conquest", "=ds=#s9#, #a3#"};
- { 11, 48344, "", "=q4=Nobundo's War-Kilt of Conquest", "=ds=#s11#, #a3#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 14, 48284, "", "=q4=Nobundo's Handguards of Conquest", "=ds=#s9#, #a3#"};
- { 15, 48282, "", "=q4=Nobundo's Legguards of Conquest", "=ds=#s11#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 17, 41143, "", "=q4=Furious Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#"};
- { 18, 41205, "", "=q4=Furious Gladiator's Chain Leggings", "=ds=#s11#, #a3#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 21, 41007, "", "=q4=Furious Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#"};
- { 22, 41033, "", "=q4=Furious Gladiator's Mail Leggings", "=ds=#s11#, #a3#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 25, 41137, "", "=q4=Furious Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#"};
- { 26, 41199, "", "=q4=Furious Gladiator's Linked Leggings", "=ds=#s11#, #a3#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 29, 41001, "", "=q4=Furious Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#"};
- { 30, 41027, "", "=q4=Furious Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#"};
- Prev = "VaultofArchavonKoralon2_A";
- Next = "VaultofArchavonKoralon4_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon4_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 2, 48480, "", "=q4=Thassarian's Gauntlets of Conquest", "=ds=#s9#, #a4#"};
- { 3, 48476, "", "=q4=Thassarian's Legplates of Conquest", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 6, 48537, "", "=q4=Thassarian's Handguards of Conquest", "=ds=#s9#, #a4#"};
- { 7, 48533, "", "=q4=Thassarian's Legguards of Conquest", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 10, 48574, "", "=q4=Turalyon's Gloves of Conquest", "=ds=#s9#, #a4#"};
- { 11, 48568, "", "=q4=Turalyon's Greaves of Conquest", "=ds=#s11#, #a4#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 14, 48603, "", "=q4=Turalyon's Gauntlets of Conquest", "=ds=#s9#, #a4#"};
- { 15, 48605, "", "=q4=Turalyon's Legplates of Conquest", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 17, 40809, "", "=q4=Furious Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#"};
- { 18, 40848, "", "=q4=Furious Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 25, 40927, "", "=q4=Furious Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#"};
- { 26, 40939, "", "=q4=Furious Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 29, 40808, "", "=q4=Furious Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#"};
- { 30, 40849, "", "=q4=Furious Gladiator's Scaled Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonKoralon3_A";
- Next = "VaultofArchavonKoralon5_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon5_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 2, 48633, "", "=q4=Turalyon's Handguards of Conquest", "=ds=#s9#, #a4#"};
- { 3, 48635, "", "=q4=Turalyon's Legguards of Conquest","=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 6, 48375, "", "=q4=Wrynn's Gauntlets of Conquest", "=ds=#s9#, #a4#"};
- { 7, 48373, "", "=q4=Wrynn's Legplates of Conquest", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- { 10, 48449, "", "=q4=Wrynn's Handguards of Conquest", "=ds=#s9#, #a4#"};
- { 11, 48445, "", "=q4=Wrynn's Legguards of Conquest", "=ds=#s11#, #a4#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 21, 40807, "", "=q4=Furious Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#"};
- { 22, 40847, "", "=q4=Furious Gladiator's Plate Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonKoralon4_A";
- Next = "VaultofArchavonKoralon6_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon6_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Cloth"]};
- { 2, 41909, "", "=q4=Furious Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#"};
- { 3, 41898, "", "=q4=Furious Gladiator's Cord of Dominance", "=ds=#s10#, #a1#"};
- { 4, 41903, "", "=q4=Furious Gladiator's Slippers of Dominance", "=ds=#s12#, #a1#"};
- { 6, 41893, "", "=q4=Furious Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#"};
- { 7, 41881, "", "=q4=Furious Gladiator's Cord of Salvation", "=ds=#s10#, #a1#"};
- { 8, 41885, "", "=q4=Furious Gladiator's Slippers of Salvation", "=ds=#s12#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Leather"]};
- { 17, 41640, "", "=q4=Furious Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#"};
- { 18, 41630, "", "=q4=Furious Gladiator's Belt of Dominance", "=ds=#s10#, #a2#"};
- { 19, 41635, "", "=q4=Furious Gladiator's Boots of Dominance", "=ds=#s12#, #a2#"};
- { 21, 41625, "", "=q4=Furious Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#"};
- { 22, 41617, "", "=q4=Furious Gladiator's Belt of Salvation", "=ds=#s10#, #a2#"};
- { 23, 41621, "", "=q4=Furious Gladiator's Boots of Salvation", "=ds=#s12#, #a2#"};
- { 25, 41840, "", "=q4=Furious Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#"};
- { 26, 41832, "", "=q4=Furious Gladiator's Belt of Triumph", "=ds=#s10#, #a2#"};
- { 27, 41836, "", "=q4=Furious Gladiator's Boots of Triumph", "=ds=#s12#, #a2#"};
- Prev = "VaultofArchavonKoralon5_A";
- Next = "VaultofArchavonKoralon7_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon7_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Mail"]};
- { 2, 41065, "", "=q4=Furious Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#"};
- { 3, 41070, "", "=q4=Furious Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#"};
- { 4, 41075, "", "=q4=Furious Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#"};
- { 6, 41060, "", "=q4=Furious Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#"};
- { 7, 41051, "", "=q4=Furious Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#"};
- { 8, 41055, "", "=q4=Furious Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#"};
- { 10, 41225, "", "=q4=Furious Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#"};
- { 11, 41235, "", "=q4=Furious Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#"};
- { 12, 41230, "", "=q4=Furious Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Plate"]};
- { 17, 40983, "", "=q4=Furious Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#"};
- { 18, 40976, "", "=q4=Furious Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#"};
- { 19, 40977, "", "=q4=Furious Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#"};
- { 21, 40889, "", "=q4=Furious Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#"};
- { 22, 40881, "", "=q4=Furious Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#"};
- { 23, 40882, "", "=q4=Furious Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#"};
- Prev = "VaultofArchavonKoralon6_A";
- Next = "VaultofArchavonKoralon8_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon8_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Back"]};
- { 2, 42071, "", "=q4=Furious Gladiator's Cloak of Ascendancy", "=ds=#s4#"};
- { 3, 42073, "", "=q4=Furious Gladiator's Cloak of Deliverance", "=ds=#s4#"};
- { 4, 42069, "", "=q4=Furious Gladiator's Cloak of Dominance", "=ds=#s4#"};
- { 5, 42072, "", "=q4=Furious Gladiator's Cloak of Salvation", "=ds=#s4#"};
- { 6, 42070, "", "=q4=Furious Gladiator's Cloak of Subjugation", "=ds=#s4#"};
- { 7, 42074, "", "=q4=Furious Gladiator's Cloak of Triumph", "=ds=#s4#"};
- { 8, 42075, "", "=q4=Furious Gladiator's Cloak of Victory", "=ds=#s4#"};
- { 11, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", ""};
- { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", ""};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Neck"]};
- { 17, 42037, "", "=q4=Furious Gladiator's Pendant of Ascendancy", "=ds=#s2#"};
- { 18, 42039, "", "=q4=Furious Gladiator's Pendant of Deliverance", "=ds=#s2#"};
- { 19, 42036, "", "=q4=Furious Gladiator's Pendant of Dominance", "=ds=#s2#"};
- { 20, 42040, "", "=q4=Furious Gladiator's Pendant of Salvation", "=ds=#s2#"};
- { 21, 42038, "", "=q4=Furious Gladiator's Pendant of Subjugation", "=ds=#s2#"};
- { 22, 46373, "", "=q4=Furious Gladiator's Pendant of Sundering", "=ds=#s2#"};
- { 23, 42034, "", "=q4=Furious Gladiator's Pendant of Triumph", "=ds=#s2#"};
- { 24, 42035, "", "=q4=Furious Gladiator's Pendant of Victory", "=ds=#s2#"};
- { 26, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Ring"]};
- { 27, 42116, "", "=q4=Furious Gladiator's Band of Dominance", "=ds=#s13#"};
- { 28, 42117, "", "=q4=Furious Gladiator's Band of Triumph", "=ds=#s13#"};
- Prev = "VaultofArchavonKoralon7_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon125Man_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 2, 47753, "", "=q4=Khadgar's Gauntlets of Triumph", "=ds=#s9#, #a1#"};
- { 3, 47755, "", "=q4=Khadgar's Leggings of Triumph", "=ds=#s11#, #a1#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 6, 47983, "", "=q4=Velen's Gloves of Triumph", "=ds=#s9#, #a1#"};
- { 7, 47985, "", "=q4=Velen's Leggings of Triumph", "=ds=#s11#, #a1#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 10, 48077, "", "=q4=Velen's Handwraps of Triumph", "=ds=#s9#, #a1#"};
- { 11, 48079, "", "=q4=Velen's Pants of Triumph", "=ds=#s11#, #a1#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 14, 47782, "", "=q4=Kel'Thuzad's Gloves of Triumph", "=ds=#s9#, #a1#"};
- { 15, 47780, "", "=q4=Kel'Thuzad's Leggings of Triumph", "=ds=#s11#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 17, 41972, "", "=q4=Relentless Gladiator's Silk Handguards", "=ds=#s9#, #a1#"};
- { 18, 41960, "", "=q4=Relentless Gladiator's Silk Trousers", "=ds=#s11#, #a1#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 21, 41875, "", "=q4=Relentless Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#"};
- { 22, 41865, "", "=q4=Relentless Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 25, 41941, "", "=q4=Relentless Gladiator's Satin Gloves", "=ds=#s9#, #a1#"};
- { 26, 41928, "", "=q4=Relentless Gladiator's Satin Leggings", "=ds=#s11#, #a1#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 29, 42018, "", "=q4=Relentless Gladiator's Felweave Handguards", "=ds=#s9#, #a1#"};
- { 30, 42006, "", "=q4=Relentless Gladiator's Felweave Trousers", "=ds=#s11#, #a1#"};
- Next = "VaultofArchavonKoralon225Man_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon225Man_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 2, 48163, "", "=q4=Stormrage's Gloves of Triumph", "=ds=#s9#, #a2#"};
- { 3, 48165, "", "=q4=Stormrage's Trousers of Triumph", "=ds=#s11#, #a2#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 6, 48212, "", "=q4=Stormrage's Handgrips of Triumph", "=ds=#s9#, #a2#"};
- { 7, 48210, "", "=q4=Stormrage's Legguards of Triumph", "=ds=#s11#, #a2#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 10, 48133, "", "=q4=Stormrage's Handguards of Triumph", "=ds=#s9#, #a2#"};
- { 11, 48135, "", "=q4=Stormrage's Leggings of Triumph", "=ds=#s11#, #a2#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 14, 48224, "", "=q4=VanCleef's Gauntlets of Triumph", "=ds=#s9#, #a2#"};
- { 15, 48226, "", "=q4=VanCleef's Legplates of Triumph", "=ds=#s11#, #a2#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 17, 41294, "", "=q4=Relentless Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#"};
- { 18, 41305, "", "=q4=Relentless Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 21, 41774, "", "=q4=Relentless Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#"};
- { 22, 41668, "", "=q4=Relentless Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 25, 41288, "", "=q4=Relentless Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#"};
- { 26, 41299, "", "=q4=Relentless Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 29, 41768, "", "=q4=Relentless Gladiator's Leather Gloves", "=ds=#s9#, #a2#"};
- { 30, 41656, "", "=q4=Relentless Gladiator's Leather Legguards", "=ds=#s11#, #a2#"};
- Prev = "VaultofArchavonKoralon125Man_A";
- Next = "VaultofArchavonKoralon325Man_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon325Man_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 2, 48256, "", "=q4=Windrunner's Handguards of Triumph", "=ds=#s9#, #a3#"};
- { 3, 48258, "", "=q4=Windrunner's Legguards of Triumph", "=ds=#s11#, #a3#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 6, 48317, "", "=q4=Nobundo's Gloves of Triumph", "=ds=#s9#, #a3#"};
- { 7, 48319, "", "=q4=Nobundo's Kilt of Triumph", "=ds=#s11#, #a3#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 10, 48347, "", "=q4=Nobundo's Grips of Triumph", "=ds=#s9#, #a3#"};
- { 11, 48349, "", "=q4=Nobundo's War-Kilt of Triumph", "=ds=#s11#, #a3#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 14, 48286, "", "=q4=Nobundo's Handguards of Triumph", "=ds=#s9#, #a3#"};
- { 15, 48288, "", "=q4=Nobundo's Legguards of Triumph", "=ds=#s11#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 17, 41144, "", "=q4=Relentless Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#"};
- { 18, 41206, "", "=q4=Relentless Gladiator's Chain Leggings", "=ds=#s11#, #a3#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 21, 41008, "", "=q4=Relentless Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#"};
- { 22, 41034, "", "=q4=Relentless Gladiator's Mail Leggings", "=ds=#s11#, #a3#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 25, 41138, "", "=q4=Relentless Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#"};
- { 26, 41200, "", "=q4=Relentless Gladiator's Linked Leggings", "=ds=#s11#, #a3#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 29, 41002, "", "=q4=Relentless Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#"};
- { 30, 41028, "", "=q4=Relentless Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#"};
- Prev = "VaultofArchavonKoralon225Man_A";
- Next = "VaultofArchavonKoralon425Man_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon425Man_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 2, 48482, "", "=q4=Thassarian's Gauntlets of Triumph", "=ds=#s9#, #a4#"};
- { 3, 48484, "", "=q4=Thassarian's Legplates of Triumph", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 6, 48539, "", "=q4=Thassarian's Handguards of Triumph", "=ds=#s9#, #a4#"};
- { 7, 48541, "", "=q4=Thassarian's Legguards of Triumph", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 10, 48576, "", "=q4=Turalyon's Gloves of Triumph", "=ds=#s9#, #a4#"};
- { 11, 48578, "", "=q4=Turalyon's Greaves of Triumph", "=ds=#s11#, #a4#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 14, 48608, "", "=q4=Turalyon's Gauntlets of Triumph", "=ds=#s9#, #a4#"};
- { 15, 48610, "", "=q4=Turalyon's Legplates of Triumph", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 17, 40811, "", "=q4=Relentless Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#"};
- { 18, 40851, "", "=q4=Relentless Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 25, 40928, "", "=q4=Relentless Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#"};
- { 26, 40940, "", "=q4=Relentless Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 29, 40812, "", "=q4=Relentless Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#"};
- { 30, 40852, "", "=q4=Relentless Gladiator's Scaled Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonKoralon325Man_A";
- Next = "VaultofArchavonKoralon525Man_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon525Man_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 2, 48640, "", "=q4=Turalyon's Handguards of Triumph", "=ds=#s9#, #a4#"};
- { 3, 48638, "", "=q4=Turalyon's Legguards of Triumph", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 6, 48377, "", "=q4=Wrynn's Gauntlets of Triumph", "=ds=#s9#, #a4#"};
- { 7, 48379, "", "=q4=Wrynn's Legplates of Triumph", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- { 10, 48452, "", "=q4=Wrynn's Handguards of Triumph", "=ds=#s9#, #a4#"};
- { 11, 48446, "", "=q4=Wrynn's Legguards of Triumph", "=ds=#s11#, #a4#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 21, 40810, "", "=q4=Relentless Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#"};
- { 22, 40850, "", "=q4=Relentless Gladiator's Plate Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonKoralon425Man_A";
- Next = "VaultofArchavonKoralon625Man_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon625Man_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Cloth"]};
- { 2, 41910, "", "=q4=Relentless Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#"};
- { 3, 41899, "", "=q4=Relentless Gladiator's Cord of Dominance", "=ds=#s10#, #a1#"};
- { 4, 41904, "", "=q4=Relentless Gladiator's Treads of Dominance", "=ds=#s12#, #a1#"};
- { 6, 41894, "", "=q4=Relentless Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#"};
- { 7, 41882, "", "=q4=Relentless Gladiator's Cord of Salvation", "=ds=#s10#, #a1#"};
- { 8, 41886, "", "=q4=Relentless Gladiator's Treads of Salvation", "=ds=#s12#, #a1#"};
- { 10, 49181, "", "=q4=Relentless Gladiator's Cuffs of Alacrity", "=ds=#s8#, #a1#"};
- { 11, 49179, "", "=q4=Relentless Gladiator's Cord of Alacrity", "=ds=#s10#, #a1#"};
- { 12, 49183, "", "=q4=Relentless Gladiator's Treads of Alacrity", "=ds=#s12#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Leather"]};
- { 17, 41641, "", "=q4=Relentless Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#"};
- { 18, 41631, "", "=q4=Relentless Gladiator's Belt of Dominance", "=ds=#s10#, #a2#"};
- { 19, 41636, "", "=q4=Relentless Gladiator's Boots of Dominance", "=ds=#s12#, #a2#"};
- { 21, 41626, "", "=q4=Relentless Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#"};
- { 22, 41618, "", "=q4=Relentless Gladiator's Belt of Salvation", "=ds=#s10#, #a2#"};
- { 23, 41622, "", "=q4=Relentless Gladiator's Boots of Salvation", "=ds=#s12#, #a2#"};
- { 25, 41841, "", "=q4=Relentless Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#"};
- { 26, 41833, "", "=q4=Relentless Gladiator's Belt of Triumph", "=ds=#s10#, #a2#"};
- { 27, 41837, "", "=q4=Relentless Gladiator's Boots of Triumph", "=ds=#s12#, #a2#"};
- Prev = "VaultofArchavonKoralon525Man_A";
- Next = "VaultofArchavonKoralon725Man_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon725Man_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Mail"]};
- { 2, 41066, "", "=q4=Relentless Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#"};
- { 3, 41071, "", "=q4=Relentless Gladiator's Waistguard of Dominance","=ds=#s10#, #a3#"};
- { 4, 41076, "", "=q4=Relentless Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#"};
- { 6, 41061, "", "=q4=Relentless Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#"};
- { 7, 41052, "", "=q4=Relentless Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#"};
- { 8, 41056, "", "=q4=Relentless Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#"};
- { 10, 41226, "", "=q4=Relentless Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#"};
- { 11, 41236, "", "=q4=Relentless Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#"};
- { 12, 41231, "", "=q4=Relentless Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Plate"]};
- { 17, 40984, "", "=q4=Relentless Gladiator's Bracers of Salvation","=ds=#s8#, #a4#"};
- { 18, 40978, "", "=q4=Relentless Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#"};
- { 19, 40979, "", "=q4=Relentless Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#"};
- { 21, 40890, "", "=q4=Relentless Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#"};
- { 22, 40883, "", "=q4=Relentless Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#"};
- { 23, 40884, "", "=q4=Relentless Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#"};
- Prev = "VaultofArchavonKoralon625Man_A";
- Next = "VaultofArchavonKoralon825Man_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon825Man_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Back"]};
- { 2, 42078, "", "=q4=Relentless Gladiator's Cloak of Ascendancy", "=ds=#s4#"};
- { 3, 42080, "", "=q4=Relentless Gladiator's Cloak of Deliverance", "=ds=#s4#"};
- { 4, 42076, "", "=q4=Relentless Gladiator's Cloak of Dominance", "=ds=#s4#"};
- { 5, 42079, "", "=q4=Relentless Gladiator's Cloak of Salvation", "=ds=#s4#"};
- { 6, 42077, "", "=q4=Relentless Gladiator's Cloak of Subjugation", "=ds=#s4#"};
- { 7, 42081, "", "=q4=Relentless Gladiator's Cloak of Triumph", "=ds=#s4#"};
- { 8, 42082, "", "=q4=Relentless Gladiator's Cloak of Victory", "=ds=#s4#"};
- { 11, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", ""};
- { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", ""};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Neck"]};
- { 17, 42044, "", "=q4=Relentless Gladiator's Pendant of Ascendancy", "=ds=#s2#"};
- { 18, 42046, "", "=q4=Relentless Gladiator's Pendant of Deliverance", "=ds=#s2#"};
- { 19, 42043, "", "=q4=Relentless Gladiator's Pendant of Dominance", "=ds=#s2#"};
- { 20, 42047, "", "=q4=Relentless Gladiator's Pendant of Salvation", "=ds=#s2#"};
- { 21, 42045, "", "=q4=Relentless Gladiator's Pendant of Subjugation", "=ds=#s2#"};
- { 22, 46374, "", "=q4=Relentless Gladiator's Pendant of Sundering", "=ds=#s2#"};
- { 23, 42041, "", "=q4=Relentless Gladiator's Pendant of Triumph", "=ds=#s2#"};
- { 24, 42042, "", "=q4=Relentless Gladiator's Pendant of Victory", "=ds=#s2#"};
- { 26, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Ring"]};
- { 27, 42118, "", "=q4=Relentless Gladiator's Band of Ascendancy", "=ds=#s13#"};
- { 28, 42119, "", "=q4=Relentless Gladiator's Band of Victory", "=ds=#s13#"};
- Prev = "VaultofArchavonKoralon725Man_A";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon1_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 2, 47773, "", "=q4=Sunstrider's Gauntlets of Conquest", "=ds=#s9#, #a1#"};
- { 3, 47775, "", "=q4=Sunstrider's Leggings of Conquest", "=ds=#s11#, #a1#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 6, 48067, "", "=q4=Zabra's Gloves of Conquest", "=ds=#s9#, #a1#"};
- { 7, 48069, "", "=q4=Zabra's Leggings of Conquest", "=ds=#s11#, #a1#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 10, 48097, "", "=q4=Zabra's Handwraps of Conquest", "=ds=#s9#, #a1#"};
- { 11, 48099, "", "=q4=Zabra's Pants of Conquest", "=ds=#s11#, #a1#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 14, 47802, "", "=q4=Gul'dan's Gloves of Conquest", "=ds=#s9#, #a1#"};
- { 15, 47800, "", "=q4=Gul'dan's Leggings of Conquest", "=ds=#s11#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 17, 41971, "", "=q4=Furious Gladiator's Silk Handguards", "=ds=#s9#, #a1#"};
- { 18, 41959, "", "=q4=Furious Gladiator's Silk Trousers", "=ds=#s11#, #a1#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 21, 41874, "", "=q4=Furious Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#"};
- { 22, 41864, "", "=q4=Furious Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 25, 41940, "", "=q4=Furious Gladiator's Satin Gloves", "=ds=#s9#, #a1#"};
- { 26, 41927, "", "=q4=Furious Gladiator's Satin Leggings", "=ds=#s11#, #a1#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 29, 42017, "", "=q4=Furious Gladiator's Felweave Handguards", "=ds=#s9#, #a1#"};
- { 30, 42005, "", "=q4=Furious Gladiator's Felweave Trousers", "=ds=#s11#, #a1#"};
- Next = "VaultofArchavonKoralon2_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon2_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 2, 48183, "", "=q4=Runetotem's Gloves of Conquest", "=ds=#s9#, #a2#"};
- { 3, 48185, "", "=q4=Runetotem's Trousers of Conquest", "=ds=#s11#, #a2#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 6, 48192, "", "=q4=Runetotem's Handgrips of Conquest", "=ds=#s9#, #a2#"};
- { 7, 48190, "", "=q4=Runetotem's Legguards of Conquest", "=ds=#s11#, #a2#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 10, 48153, "", "=q4=Runetotem's Handguards of Conquest", "=ds=#s9#, #a2#"};
- { 11, 48155, "", "=q4=Runetotem's Leggings of Conquest", "=ds=#s11#, #a2#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 14, 48244, "", "=q4=Garona's Gauntlets of Conquest", "=ds=#s9#, #a2#"};
- { 15, 48246, "", "=q4=Garona's Legplates of Conquest", "=ds=#s11#, #a2#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 17, 41293, "", "=q4=Furious Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#"};
- { 18, 41304, "", "=q4=Furious Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 21, 41773, "", "=q4=Furious Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#"};
- { 22, 41667, "", "=q4=Furious Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 25, 41287, "", "=q4=Furious Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#"};
- { 26, 41298, "", "=q4=Furious Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 29, 41767, "", "=q4=Furious Gladiator's Leather Gloves", "=ds=#s9#, #a2#"};
- { 30, 41655, "", "=q4=Furious Gladiator's Leather Legguards", "=ds=#s11#, #a2#"};
- Prev = "VaultofArchavonKoralon1_H";
- Next = "VaultofArchavonKoralon3_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon3_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 2, 48276, "", "=q4=Windrunner's Handguards of Conquest", "=ds=#s9#, #a3#"};
- { 3, 48278, "", "=q4=Windrunner's Legguards of Conquest", "=ds=#s11#, #a3#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 6, 48337, "", "=q4=Thrall's Gloves of Conquest", "=ds=#s9#, #a3#"};
- { 7, 48339, "", "=q4=Thrall's Kilt of Conquest", "=ds=#s11#, #a3#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 10, 48367, "", "=q4=Thrall's Grips of Conquest", "=ds=#s9#, #a3#"};
- { 11, 48369, "", "=q4=Thrall's War-Kilt of Conquest", "=ds=#s11#, #a3#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 14, 48296, "", "=q4=Thrall's Handguards of Conquest", "=ds=#s9#, #a3#"};
- { 15, 48298, "", "=q4=Thrall's Legguards of Conquest", "=ds=#s11#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 17, 41143, "", "=q4=Furious Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#"};
- { 18, 41205, "", "=q4=Furious Gladiator's Chain Leggings", "=ds=#s11#, #a3#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 21, 41007, "", "=q4=Furious Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#"};
- { 22, 41033, "", "=q4=Furious Gladiator's Mail Leggings", "=ds=#s11#, #a3#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 25, 41137, "", "=q4=Furious Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#"};
- { 26, 41199, "", "=q4=Furious Gladiator's Linked Leggings", "=ds=#s11#, #a3#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 29, 41001, "", "=q4=Furious Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#"};
- { 30, 41027, "", "=q4=Furious Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#"};
- Prev = "VaultofArchavonKoralon2_H";
- Next = "VaultofArchavonKoralon4_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon4_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 2, 48502, "", "=q4=Koltira's Gauntlets of Conquest", "=ds=#s9#, #a4#"};
- { 3, 48504, "", "=q4=Koltira's Legplates of Conquest", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 6, 48559, "", "=q4=Koltira's Handguards of Conquest", "=ds=#s9#, #a4#"};
- { 7, 48561, "", "=q4=Koltira's Legguards of Conquest", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 10, 48598, "", "=q4=Liadrin's Gloves of Conquest", "=ds=#s9#, #a4#"};
- { 11, 48596, "", "=q4=Liadrin's Greaves of Conquest", "=ds=#s11#, #a4#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 14, 48630, "", "=q4=Liadrin's Gauntlets of Conquest", "=ds=#s9#, #a4#"};
- { 15, 48628, "", "=q4=Liadrin's Legplates of Conquest", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 17, 40809, "", "=q4=Furious Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#"};
- { 18, 40848, "", "=q4=Furious Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 25, 40927, "", "=q4=Furious Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#"};
- { 26, 40939, "", "=q4=Furious Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 29, 40808, "", "=q4=Furious Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#"};
- { 30, 40849, "", "=q4=Furious Gladiator's Scaled Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonKoralon3_H";
- Next = "VaultofArchavonKoralon5_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon5_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 2, 48653, "", "=q4=Liadrin's Handguards of Conquest", "=ds=#s9#, #a4#"};
- { 3, 48655, "", "=q4=Liadrin's Legguards of Conquest", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 6, 48387, "", "=q4=Hellscream's Gauntlets of Conquest", "=ds=#s9#, #a4#"};
- { 7, 48389, "", "=q4=Hellscream's Legplates of Conquest", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- { 10, 48457, "", "=q4=Hellscream's Handguards of Conquest", "=ds=#s9#, #a4#"};
- { 11, 48459, "", "=q4=Hellscream's Legguards of Conquest", "=ds=#s11#, #a4#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 21, 40807, "", "=q4=Furious Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#"};
- { 22, 40847, "", "=q4=Furious Gladiator's Plate Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonKoralon4_H";
- Next = "VaultofArchavonKoralon6_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon6_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Cloth"]};
- { 2, 41909, "", "=q4=Furious Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#"};
- { 3, 41898, "", "=q4=Furious Gladiator's Cord of Dominance", "=ds=#s10#, #a1#"};
- { 4, 41903, "", "=q4=Furious Gladiator's Slippers of Dominance", "=ds=#s12#, #a1#"};
- { 6, 41893, "", "=q4=Furious Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#"};
- { 7, 41881, "", "=q4=Furious Gladiator's Cord of Salvation", "=ds=#s10#, #a1#"};
- { 8, 41885, "", "=q4=Furious Gladiator's Slippers of Salvation", "=ds=#s12#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Leather"]};
- { 17, 41640, "", "=q4=Furious Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#"};
- { 18, 41630, "", "=q4=Furious Gladiator's Belt of Dominance", "=ds=#s10#, #a2#"};
- { 19, 41635, "", "=q4=Furious Gladiator's Boots of Dominance", "=ds=#s12#, #a2#"};
- { 21, 41625, "", "=q4=Furious Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#"};
- { 22, 41617, "", "=q4=Furious Gladiator's Belt of Salvation", "=ds=#s10#, #a2#"};
- { 23, 41621, "", "=q4=Furious Gladiator's Boots of Salvation", "=ds=#s12#, #a2#"};
- { 25, 41840, "", "=q4=Furious Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#"};
- { 26, 41832, "", "=q4=Furious Gladiator's Belt of Triumph", "=ds=#s10#, #a2#"};
- { 27, 41836, "", "=q4=Furious Gladiator's Boots of Triumph", "=ds=#s12#, #a2#"};
- Prev = "VaultofArchavonKoralon5_H";
- Next = "VaultofArchavonKoralon7_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon7_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Mail"]};
- { 2, 41065, "", "=q4=Furious Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#"};
- { 3, 41070, "", "=q4=Furious Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#"};
- { 4, 41075, "", "=q4=Furious Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#"};
- { 6, 41060, "", "=q4=Furious Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#"};
- { 7, 41051, "", "=q4=Furious Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#"};
- { 8, 41055, "", "=q4=Furious Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#"};
- { 10, 41225, "", "=q4=Furious Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#"};
- { 11, 41235, "", "=q4=Furious Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#"};
- { 12, 41230, "", "=q4=Furious Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Plate"]};
- { 17, 40983, "", "=q4=Furious Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#"};
- { 18, 40976, "", "=q4=Furious Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#"};
- { 19, 40977, "", "=q4=Furious Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#"};
- { 21, 40889, "", "=q4=Furious Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#"};
- { 22, 40881, "", "=q4=Furious Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#"};
- { 23, 40882, "", "=q4=Furious Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#"};
- Prev = "VaultofArchavonKoralon6_H";
- Next = "VaultofArchavonKoralon8_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon8_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Back"]};
- { 2, 42071, "", "=q4=Furious Gladiator's Cloak of Ascendancy", "=ds=#s4#"};
- { 3, 42073, "", "=q4=Furious Gladiator's Cloak of Deliverance", "=ds=#s4#"};
- { 4, 42069, "", "=q4=Furious Gladiator's Cloak of Dominance", "=ds=#s4#"};
- { 5, 42072, "", "=q4=Furious Gladiator's Cloak of Salvation", "=ds=#s4#"};
- { 6, 42070, "", "=q4=Furious Gladiator's Cloak of Subjugation", "=ds=#s4#"};
- { 7, 42074, "", "=q4=Furious Gladiator's Cloak of Triumph", "=ds=#s4#"};
- { 8, 42075, "", "=q4=Furious Gladiator's Cloak of Victory", "=ds=#s4#"};
- { 11, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", ""};
- { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", ""};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Neck"]};
- { 17, 42037, "", "=q4=Furious Gladiator's Pendant of Ascendancy", "=ds=#s2#"};
- { 18, 42039, "", "=q4=Furious Gladiator's Pendant of Deliverance", "=ds=#s2#"};
- { 19, 42036, "", "=q4=Furious Gladiator's Pendant of Dominance", "=ds=#s2#"};
- { 20, 42040, "", "=q4=Furious Gladiator's Pendant of Salvation", "=ds=#s2#"};
- { 21, 42038, "", "=q4=Furious Gladiator's Pendant of Subjugation", "=ds=#s2#"};
- { 22, 46373, "", "=q4=Furious Gladiator's Pendant of Sundering", "=ds=#s2#"};
- { 23, 42034, "", "=q4=Furious Gladiator's Pendant of Triumph", "=ds=#s2#"};
- { 24, 42035, "", "=q4=Furious Gladiator's Pendant of Victory", "=ds=#s2#"};
- { 26, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Ring"]};
- { 27, 42116, "", "=q4=Furious Gladiator's Band of Dominance", "=ds=#s13#"};
- { 28, 42117, "", "=q4=Furious Gladiator's Band of Triumph", "=ds=#s13#"};
- Prev = "VaultofArchavonKoralon7_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon125Man_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 2, 47772, "", "=q4=Sunstrider's Gauntlets of Triumph", "=ds=#s9#, #a1#"};
- { 3, 47770, "", "=q4=Sunstrider's Leggings of Triumph", "=ds=#s11#, #a1#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 6, 48066, "", "=q4=Zabra's Gloves of Triumph", "=ds=#s9#, #a1#"};
- { 7, 48064, "", "=q4=Zabra's Leggings of Triumph", "=ds=#s11#, #a1#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 10, 48096, "", "=q4=Zabra's Handwraps of Triumph", "=ds=#s9#, #a1#"};
- { 11, 48094, "", "=q4=Zabra's Pants of Triumph", "=ds=#s11#, #a1#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 14, 47803, "", "=q4=Gul'dan's Gloves of Triumph", "=ds=#s9#, #a1#"};
- { 15, 47805, "", "=q4=Gul'dan's Leggings of Triumph", "=ds=#s11#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 17, 41972, "", "=q4=Relentless Gladiator's Silk Handguards", "=ds=#s9#, #a1#"};
- { 18, 41960, "", "=q4=Relentless Gladiator's Silk Trousers", "=ds=#s11#, #a1#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 21, 41875, "", "=q4=Relentless Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#"};
- { 22, 41865, "", "=q4=Relentless Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 25, 41941, "", "=q4=Relentless Gladiator's Satin Gloves", "=ds=#s9#, #a1#"};
- { 26, 41928, "", "=q4=Relentless Gladiator's Satin Leggings", "=ds=#s11#, #a1#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 29, 42018, "", "=q4=Relentless Gladiator's Felweave Handguards", "=ds=#s9#, #a1#"};
- { 30, 42006, "", "=q4=Relentless Gladiator's Felweave Trousers", "=ds=#s11#, #a1#"};
- Next = "VaultofArchavonKoralon225Man_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon225Man_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 2, 48182, "", "=q4=Runetotem's Gloves of Triumph", "=ds=#s9#, #a2#"};
- { 3, 48180, "", "=q4=Runetotem's Trousers of Triumph", "=ds=#s11#, #a2#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 6, 48193, "", "=q4=Runetotem's Handgrips of Triumph", "=ds=#s9#, #a2#"};
- { 7, 48195, "", "=q4=Runetotem's Legguards of Triumph", "=ds=#s11#, #a2#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 10, 48152, "", "=q4=Runetotem's Handguards of Triumph", "=ds=#s9#, #a2#"};
- { 11, 48150, "", "=q4=Runetotem's Leggings of Triumph", "=ds=#s11#, #a2#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 14, 48241, "", "=q4=Garona's Gauntlets of Triumph", "=ds=#s9#, #a2#"};
- { 15, 48239, "", "=q4=Garona's Legplates of Triumph", "=ds=#s11#, #a2#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 17, 41294, "", "=q4=Relentless Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#"};
- { 18, 41305, "", "=q4=Relentless Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 21, 41774, "", "=q4=Relentless Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#"};
- { 22, 41668, "", "=q4=Relentless Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 25, 41288, "", "=q4=Relentless Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#"};
- { 26, 41299, "", "=q4=Relentless Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 29, 41768, "", "=q4=Relentless Gladiator's Leather Gloves", "=ds=#s9#, #a2#"};
- { 30, 41656, "", "=q4=Relentless Gladiator's Leather Legguards", "=ds=#s11#, #a2#"};
- Prev = "VaultofArchavonKoralon125Man_H";
- Next = "VaultofArchavonKoralon325Man_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon325Man_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 2, 48273, "", "=q4=Windrunner's Handguards of Triumph", "=ds=#s9#, #a3#"};
- { 3, 48271, "", "=q4=Windrunner's Legguards of Triumph", "=ds=#s11#, #a3#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 6, 48334, "", "=q4=Thrall's Gloves of Triumph", "=ds=#s9#, #a3#"};
- { 7, 48332, "", "=q4=Thrall's Kilt of Triumph", "=ds=#s11#, #a3#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 10, 48364, "", "=q4=Thrall's Grips of Triumph", "=ds=#s9#, #a3#"};
- { 11, 48362, "", "=q4=Thrall's War-Kilt of Triumph", "=ds=#s11#, #a3#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 14, 48301, "", "=q4=Thrall's Handguards of Triumph", "=ds=#s9#, #a3#"};
- { 15, 48303, "", "=q4=Thrall's Legguards of Triumph", "=ds=#s11#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 17, 41144, "", "=q4=Relentless Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#"};
- { 18, 41206, "", "=q4=Relentless Gladiator's Chain Leggings", "=ds=#s11#, #a3#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 21, 41008, "", "=q4=Relentless Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#"};
- { 22, 41034, "", "=q4=Relentless Gladiator's Mail Leggings", "=ds=#s11#, #a3#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 25, 41138, "", "=q4=Relentless Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#"};
- { 26, 41200, "", "=q4=Relentless Gladiator's Linked Leggings", "=ds=#s11#, #a3#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 29, 41002, "", "=q4=Relentless Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#"};
- { 30, 41028, "", "=q4=Relentless Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#"};
- Prev = "VaultofArchavonKoralon225Man_H";
- Next = "VaultofArchavonKoralon425Man_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon425Man_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 2, 48499, "", "=q4=Koltira's Gauntlets of Triumph", "=ds=#s9#, #a4#"};
- { 3, 48497, "", "=q4=Koltira's Legplates of Triumph", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 6, 48556, "", "=q4=Koltira's Handguards of Triumph", "=ds=#s9#, #a4#"};
- { 7, 48554, "", "=q4=Koltira's Legguards of Triumph", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 10, 48593, "", "=q4=Liadrin's Gloves of Triumph", "=ds=#s9#, #a4#"};
- { 11, 48591, "", "=q4=Liadrin's Greaves of Triumph", "=ds=#s11#, #a4#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 14, 48625, "", "=q4=Liadrin's Gauntlets of Triumph", "=ds=#s9#, #a4#"};
- { 15, 48623, "", "=q4=Liadrin's Legplates of Triumph", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 17, 40811, "", "=q4=Relentless Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#"};
- { 18, 40851, "", "=q4=Relentless Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 25, 40928, "", "=q4=Relentless Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#"};
- { 26, 40940, "", "=q4=Relentless Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 29, 40812, "", "=q4=Relentless Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#"};
- { 30, 40852, "", "=q4=Relentless Gladiator's Scaled Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonKoralon325Man_H";
- Next = "VaultofArchavonKoralon525Man_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon525Man_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 2, 48658, "", "=q4=Liadrin's Handguards of Triumph", "=ds=#s9#, #a4#"};
- { 3, 48660, "", "=q4=Liadrin's Legguards of Triumph", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 6, 48392, "", "=q4=Hellscream's Gauntlets of Triumph", "=ds=#s9#, #a4#"};
- { 7, 48394, "", "=q4=Hellscream's Legplates of Triumph", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- { 10, 48462, "", "=q4=Hellscream's Handguards of Triumph", "=ds=#s9#, #a4#"};
- { 11, 48464, "", "=q4=Hellscream's Legguards of Triumph", "=ds=#s11#, #a4#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 21, 40810, "", "=q4=Relentless Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#"};
- { 22, 40850, "", "=q4=Relentless Gladiator's Plate Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonKoralon425Man_H";
- Next = "VaultofArchavonKoralon625Man_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon625Man_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Cloth"]};
- { 2, 41910, "", "=q4=Relentless Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#"};
- { 3, 41899, "", "=q4=Relentless Gladiator's Cord of Dominance", "=ds=#s19#, #a1#"};
- { 4, 41904, "", "=q4=Relentless Gladiator's Treads of Dominance", "=ds=#s12#, #a1#"};
- { 6, 41894, "", "=q4=Relentless Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#"};
- { 7, 41882, "", "=q4=Relentless Gladiator's Cord of Salvation", "=ds=#s10#, #a1#"};
- { 8, 41886, "", "=q4=Relentless Gladiator's Treads of Salvation", "=ds=#s12#, #a1#"};
- { 10, 49181, "", "=q4=Relentless Gladiator's Cuffs of Alacrity", "=ds=#s8#, #a1#"};
- { 11, 49179, "", "=q4=Relentless Gladiator's Cord of Alacrity", "=ds=#s10#, #a1#"};
- { 12, 49183, "", "=q4=Relentless Gladiator's Treads of Alacrity", "=ds=#s12#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Leather"]};
- { 17, 41641, "", "=q4=Relentless Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#"};
- { 18, 41631, "", "=q4=Relentless Gladiator's Belt of Dominance", "=ds=#s10#, #a2#"};
- { 19, 41636, "", "=q4=Relentless Gladiator's Boots of Dominance", "=ds=#s12#, #a2#"};
- { 21, 41626, "", "=q4=Relentless Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#"};
- { 22, 41618, "", "=q4=Relentless Gladiator's Belt of Salvation", "=ds=#s10#, #a2#"};
- { 23, 41622, "", "=q4=Relentless Gladiator's Boots of Salvation", "=ds=#s12#, #a2#"};
- { 25, 41841, "", "=q4=Relentless Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#"};
- { 26, 41833, "", "=q4=Relentless Gladiator's Belt of Triumph", "=ds=#s10#, #a2#"};
- { 27, 41837, "", "=q4=Relentless Gladiator's Boots of Triumph", "=ds=#s12#, #a2#"};
- Prev = "VaultofArchavonKoralon525Man_H";
- Next = "VaultofArchavonKoralon725Man_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon725Man_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Mail"]};
- { 2, 41066, "", "=q4=Relentless Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#"};
- { 3, 41071, "", "=q4=Relentless Gladiator's Waistguard of Dominance","=ds=#s10#, #a3#"};
- { 4, 41076, "", "=q4=Relentless Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#"};
- { 6, 41061, "", "=q4=Relentless Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#"};
- { 7, 41052, "", "=q4=Relentless Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#"};
- { 8, 41056, "", "=q4=Relentless Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#"};
- { 10, 41226, "", "=q4=Relentless Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#"};
- { 11, 41236, "", "=q4=Relentless Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#"};
- { 12, 41231, "", "=q4=Relentless Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Plate"]};
- { 17, 40984, "", "=q4=Relentless Gladiator's Bracers of Salvation","=ds=#s8#, #a4#"};
- { 18, 40978, "", "=q4=Relentless Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#"};
- { 19, 40979, "", "=q4=Relentless Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#"};
- { 21, 40890, "", "=q4=Relentless Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#"};
- { 22, 40883, "", "=q4=Relentless Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#"};
- { 23, 40884, "", "=q4=Relentless Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#"};
- Prev = "VaultofArchavonKoralon625Man_H";
- Next = "VaultofArchavonKoralon825Man_H";
- };
-
- AtlasLoot_Data["VaultofArchavonKoralon825Man_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Back"]};
- { 2, 42078, "", "=q4=Relentless Gladiator's Cloak of Ascendancy", "=ds=#s4#"};
- { 3, 42080, "", "=q4=Relentless Gladiator's Cloak of Deliverance", "=ds=#s4#"};
- { 4, 42076, "", "=q4=Relentless Gladiator's Cloak of Dominance", "=ds=#s4#"};
- { 5, 42079, "", "=q4=Relentless Gladiator's Cloak of Salvation", "=ds=#s4#"};
- { 6, 42077, "", "=q4=Relentless Gladiator's Cloak of Subjugation", "=ds=#s4#"};
- { 7, 42081, "", "=q4=Relentless Gladiator's Cloak of Triumph", "=ds=#s4#"};
- { 8, 42082, "", "=q4=Relentless Gladiator's Cloak of Victory", "=ds=#s4#"};
- { 11, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", ""};
- { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", ""};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Neck"]};
- { 17, 42044, "", "=q4=Relentless Gladiator's Pendant of Ascendancy", "=ds=#s2#"};
- { 18, 42046, "", "=q4=Relentless Gladiator's Pendant of Deliverance", "=ds=#s2#"};
- { 19, 42043, "", "=q4=Relentless Gladiator's Pendant of Dominance", "=ds=#s2#"};
- { 20, 42047, "", "=q4=Relentless Gladiator's Pendant of Salvation", "=ds=#s2#"};
- { 21, 42045, "", "=q4=Relentless Gladiator's Pendant of Subjugation", "=ds=#s2#"};
- { 22, 46374, "", "=q4=Relentless Gladiator's Pendant of Sundering", "=ds=#s2#"};
- { 23, 42041, "", "=q4=Relentless Gladiator's Pendant of Triumph", "=ds=#s2#"};
- { 24, 42042, "", "=q4=Relentless Gladiator's Pendant of Victory", "=ds=#s2#"};
- { 26, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Ring"]};
- { 27, 42118, "", "=q4=Relentless Gladiator's Band of Ascendancy", "=ds=#s13#"};
- { 28, 42119, "", "=q4=Relentless Gladiator's Band of Victory", "=ds=#s13#"};
- Prev = "VaultofArchavonKoralon725Man_H";
- };
-
- AtlasLoot_Data["VaultofArchavonToravon1"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 2, 50275, "", "=q4=Bloodmage Gloves", "=ds=#s9#, #a1#"};
- { 3, 50277, "", "=q4=Bloodmage Leggings", "=ds=#s11#, #a1#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 6, 50766, "", "=q4=Crimson Acolyte Gloves", "=ds=#s9#, #a1#"};
- { 7, 50769, "", "=q4=Crimson Acolyte Leggings", "=ds=#s11#, #a1#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 10, 50391, "", "=q4=Crimson Acolyte Handwraps", "=ds=#s9#, #a1#"};
- { 11, 50393, "", "=q4=Crimson Acolyte Pants", "=ds=#s11#, #a1#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 14, 50240, "", "=q4=Dark Coven Gloves", "=ds=#s9#, #a1#"};
- { 15, 50242, "", "=q4=Dark Coven Leggings", "=ds=#s11#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 17, 41972, "", "=q4=Relentless Gladiator's Silk Handguards", "=ds=#s9#, #a1#"};
- { 18, 41960, "", "=q4=Relentless Gladiator's Silk Trousers", "=ds=#s11#, #a1#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 21, 41875, "", "=q4=Relentless Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#"};
- { 22, 41865, "", "=q4=Relentless Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 25, 41941, "", "=q4=Relentless Gladiator's Satin Gloves", "=ds=#s9#, #a1#"};
- { 26, 41928, "", "=q4=Relentless Gladiator's Satin Leggings", "=ds=#s11#, #a1#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 29, 42018, "", "=q4=Relentless Gladiator's Felweave Handguards", "=ds=#s9#, #a1#"};
- { 30, 42006, "", "=q4=Relentless Gladiator's Felweave Trousers", "=ds=#s11#, #a1#"};
- Next = "VaultofArchavonToravon2";
- };
-
- AtlasLoot_Data["VaultofArchavonToravon2"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 2, 50822, "", "=q4=Lasherweave's Gloves", "=ds=#s9#, #a2#"};
- { 3, 50820, "", "=q4=Lasherweave's Trousers", "=ds=#s11#, #a2#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 6, 50827, "", "=q4=Lasherweave's Handgrips", "=ds=#s9#, #a2#"};
- { 7, 50825, "", "=q4=Lasherweave's Legguards", "=ds=#s11#, #a2#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
+ { 23, 21524, "", "=q2=Red Winter Hat", "=ds=#s1#, #a1# =q2=#m28#" };
+ };
+ {
+ Name = BabbleBoss["Commander Kolurg"];
+ { 1, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 2, 37728, "", "=q3=Cloak of the Enemy", "=ds=#s4#", "", "20%" };
+ { 3, 37731, "", "=q3=Opposed Stasis Leggings", "=ds=#s11#, #a1#", "", "20%" };
+ { 4, 37730, "", "=q3=Cleric's Linen Shoes", "=ds=#s12#, #a1#", "", "19%" };
+ { 5, 37729, "", "=q3=Grips of Sculptured Icicles", "=ds=#s9#, #a4#", "", "20%" };
+ };
+ {
+ Name = BabbleBoss["Keristrasza"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35596, "", "=q3=Attuned Crystalline Boots", "=ds=#s12#, #a1#", "", "29%" };
+ { 3, 35595, "", "=q3=Glacier Sharpened Vileblade", "=ds=#h1#, #w4#", "", "30%" };
+ { 4, 35597, "", "=q3=Band of Glittering Permafrost", "=ds=#s13#", "", "30%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37172, "", "=q4=Gloves of Glistening Runes", "=ds=#s9#, #a1#", "", "19%" };
+ { 19, 37170, "", "=q4=Interwoven Scale Bracers", "=ds=#s8#, #a3#", "", "20%" };
+ { 20, 37171, "", "=q4=Flame-Bathed Steel Girdle", "=ds=#s10#, #a4#", "", "19%" };
+ { 21, 37169, "", "=q4=War Mace of Unrequited Love", "=ds=#h3#, #w6#", "", "18%" };
+ { 22, 37165, "", "=q3=Crystal-Infused Tunic", "=ds=#s5#, #a2#", "", "20%" };
+ { 23, 37167, "", "=q3=Dragon Slayer's Sabatons", "=ds=#s12#, #a3#", "", "20%" };
+ { 24, 37166, "", "=q3=Sphere of Red Dragon's Blood", "=ds=#s14#", "", "20%" };
+ { 25, 37162, "", "=q3=Bulwark of the Noble Protector", "=ds=#w8#", "", "20%" };
+ { 26, 41794, "", "=q3=Design: Deadly Monarch Topaz", "=ds=#p12# (390)", "", "9%" };
+ { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
+ };
+}
+
+-------------------
+--- Azjol-Nerub ---
+-------------------
+
+AtlasLoot_Data["AzjolNerub"] = {
+ Name = BabbleZone["Azjol-Nerub"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Krik'thir the Gatewatcher"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35657, "", "=q3=Exquisite Spider-Silk Footwraps", "=ds=#s12#, #a1#", "", "30%" };
+ { 3, 35656, "", "=q3=Aura Focused Gauntlets", "=ds=#s9#, #a4#", "", "32%" };
+ { 4, 35655, "", "=q3=Cobweb Machete", "=ds=#h1#, #w4#", "", "30%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37218, "", "=q3=Stone-Worn Footwraps", "=ds=#s12#, #a1#", "", "21%" };
+ { 19, 37219, "", "=q3=Custodian's Chestpiece", "=ds=#s5#, #a2#", "", "21%" };
+ { 20, 37217, "", "=q3=Golden Limb Bands", "=ds=#s8#, #a4#", "", "22%" };
+ { 21, 37216, "", "=q3=Facade Shield of Glyphs", "=ds=#w8#", "", "22%" };
+ };
+ {
+ Name = BabbleBoss["Hadronox"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35660, "", "=q3=Spinneret Epaulets", "=ds=#s3#, #a2#", "", "30%" };
+ { 3, 35659, "", "=q3=Treads of Aspiring Heights", "=ds=#s12#, #a2#", "", "30%" };
+ { 4, 35658, "", "=q3=Life-Staff of the Web Lair", "=ds=#w9#", "", "29%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37222, "", "=q3=Egg Sac Robes", "=ds=#s5#, #a1#", "", "21%" };
+ { 19, 37230, "", "=q3=Grotto Mist Gloves", "=ds=#s9#, #a2#", "", "21%" };
+ { 20, 37221, "", "=q3=Hollowed Mandible Legplates", "=ds=#s11#, #a3#", "", "20%" };
+ { 21, 37220, "", "=q3=Essence of Gossamer", "=ds=#s14#", "", "20%" };
+ };
+ {
+ Name = BabbleBoss["Anub'arak"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35663, "", "=q3=Charmed Silken Cord", "=ds=#s10#, #a1#", "", "29%" };
+ { 3, 35662, "", "=q3=Wing Cover Girdle", "=ds=#s10#, #a3#", "", "29%" };
+ { 4, 35661, "", "=q3=Signet of Arachnathid Command", "=ds=#s13#", "", "28%" };
+ { 6, 43411, "", "=q1=Anub'arak's Broken Husk", "=ds=#m3#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37242, "", "=q4=Sash of the Servant", "=ds=#s10#, #a1#", "", "19%" };
+ { 19, 37240, "", "=q4=Flamebeard's Bracers", "=ds=#s8#, #a4#", "", "19%" };
+ { 20, 37241, "", "=q4=Ancient Aligned Girdle", "=ds=#s10#, #a4#", "", "19%" };
+ { 21, 37238, "", "=q4=Rod of the Fallen Monarch", "=ds=#w12#", "", "19%" };
+ { 22, 37236, "", "=q3=Insect Vestments", "=ds=#s5#, #a2#", "", "20%" };
+ { 23, 37237, "", "=q3=Chitin Shell Greathelm", "=ds=#s1#, #a4#", "", "20%" };
+ { 24, 37232, "", "=q3=Ring of the Traitor King", "=ds=#s13#", "", "19%" };
+ { 25, 37235, "", "=q3=Crypt Lord's Deft Blade", "=ds=#h1#, #w10#", "", "21%" };
+ { 26, 41796, "", "=q3=Design: Infused Twilight Opal", "=ds=#p12# (390)", "", "12%" };
+ { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 2, 37243, "", "=q3=Treasure Seeker's Belt", "=ds=#s10#, #a2#", "", "1%" };
+ { 3, 37625, "", "=q3=Web Winder Gloves", "=ds=#s9#, #a4#", "", "1%" };
+ { 4, 37624, "", "=q3=Stained-Glass Shard Ring", "=ds=#s13#", "", "1%" };
+ };
+}
+
+----------------------------------
+--- Ahn'kahet: The Old Kingdom ---
+----------------------------------
+
+AtlasLoot_Data["Ahnkahet"] = {
+ Name = BabbleZone["Ahn'kahet: The Old Kingdom"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Elder Nadox"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35607, "", "=q3=Ahn'kahar Handwraps", "=ds=#s9#, #a2#", "", "30%" };
+ { 3, 35608, "", "=q3=Crawler-Emblem Belt", "=ds=#s10#, #a4#", "", "29%" };
+ { 4, 35606, "", "=q3=Blade of Nadox", "=ds=#h1#, #w4#", "", "31%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37594, "", "=q3=Elder Headpiece", "=ds=#s1#, #a1#", "", "22%" };
+ { 19, 37593, "", "=q3=Sprinting Shoulderpads", "=ds=#s3#, #a2#", "", "23%" };
+ { 20, 37592, "", "=q3=Brood Plague Helmet", "=ds=#s1#, #a3#", "", "22%" };
+ { 21, 37591, "", "=q3=Nerubian Shield Ring", "=ds=#s13#", "", "22%" };
+ };
+ {
+ Name = BabbleBoss["Prince Taldaram"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35611, "", "=q3=Gloves of the Blood Prince", "=ds=#s9#, #a1#", "", "30%" };
+ { 3, 35610, "", "=q3=Slasher's Amulet", "=ds=#s2#", "", "31%" };
+ { 4, 35609, "", "=q3=Talisman of Scourge Command", "=ds=#s15#", "", "29%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37613, "", "=q3=Flame Sphere Bindings", "=ds=#s8#, #a1#", "", "21%" };
+ { 19, 37614, "", "=q3=Gauntlets of the Plundering Geist", "=ds=#s9#, #a3#", "", "21%" };
+ { 20, 37612, "", "=q3=Bonegrinder Breastplate", "=ds=#s5#, #a4#", "", "20%" };
+ { 21, 37595, "", "=q3=Necklace of Taldaram", "=ds=#s2#", "", "21%" };
+ };
+ {
+ Name = BabbleBoss["Amanitar"] .. " (" .. AL["Heroic"] .. ")";
+ { 1, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 2, 43287, "", "=q3=Silken Bridge Handwraps", "=ds=#s9#, #a1#", "", "21%" };
+ { 3, 43286, "", "=q3=Legguards of Swarming Attacks", "=ds=#s11#, #a2#", "", "23%" };
+ { 4, 43285, "", "=q3=Amulet of the Spell Flinger", "=ds=#s2#", "", "22%" };
+ { 5, 43284, "", "=q3=Amanitar Skullbow", "=ds=#w3#", "", "22%" };
+ };
+ {
+ Name = BabbleBoss["Jedoga Shadowseeker"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 43278, "", "=q3=Cloak of the Darkcaster", "=ds=#s4#", "", "30%" };
+ { 3, 43279, "", "=q3=Battlechest of the Twilight Cult", "=ds=#s5#, #a4#", "", "29%" };
+ { 4, 43277, "", "=q3=Jedoga's Greatring", "=ds=#s13#", "", "28%" };
+ { 6, 21524, "", "=q2=Red Winter Hat", "=ds=#s1#, #a1# =q2=#m28#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 43283, "", "=q3=Subterranean Waterfall Shroud", "=ds=#s4#", "", "21%" };
+ { 19, 43280, "", "=q3=Faceguard of the Hammer Clan", "=ds=#s1#, #a4#", "", "21%" };
+ { 20, 43282, "", "=q3=Shadowseeker's Pendant", "=ds=#s2#", "", "22%" };
+ { 21, 43281, "", "=q3=Edge of Oblivion", "=ds=#h2#, #w1#", "", "22%" };
+ { 23, 21524, "", "=q2=Red Winter Hat", "=ds=#s1#, #a1# =q2=#m28#" };
+ };
+ {
+ Name = BabbleBoss["Herald Volazj"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35612, "", "=q3=Mantle of Echoing Bats", "=ds=#s3#, #a1#", "", "29%" };
+ { 3, 35613, "", "=q3=Pyramid Embossed Belt", "=ds=#s10#, #a2#", "", "31%" };
+ { 4, 35614, "", "=q3=Volazj's Sabatons", "=ds=#s12#, #a4#", "", "31%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37622, "", "=q4=Skirt of the Old Kingdom", "=ds=#s11#, #a1#", "", "19%" };
+ { 19, 37623, "", "=q4=Fiery Obelisk Handguards", "=ds=#s9#, #a3#", "", "19%" };
+ { 20, 37620, "", "=q4=Bracers of the Herald", "=ds=#s8#, #a4#", "", "18%" };
+ { 21, 37619, "", "=q4=Wand of Ahnkahet", "=ds=#w12#", "", "18%" };
+ { 22, 37616, "", "=q3=Kilt of the Forgotten One", "=ds=#s11#, #a2#", "", "19%" };
+ { 23, 37618, "", "=q3=Greaves of Ancient Evil", "=ds=#s12#, #a4#", "", "20%" };
+ { 24, 37617, "", "=q3=Staff of Sinister Claws", "=ds=#w9#", "", "19%" };
+ { 25, 37615, "", "=q3=Titanium Compound Bow", "=ds=#w2#", "", "19%" };
+ { 26, 41790, "", "=q3=Design: Precise Scarlet Ruby", "=ds=#p12# (390)", "", "17%" };
+ { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35616, "", "=q3=Spored Tendrils Spaulders", "=ds=#s3#, #a3#", "", "1%" };
+ { 3, 35615, "", "=q3=Glowworm Cavern Bindings", "=ds=#s8#, #a3#", "", "1%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 37625, "", "=q3=Web Winder Gloves", "=ds=#s9#, #a4#", "", "1%" };
+ { 18, 37624, "", "=q3=Stained-Glass Shard Ring", "=ds=#s13#", "", "1%" };
+ };
+}
+
+------------------------
+--- Drak'Tharon Keep ---
+------------------------
+
+AtlasLoot_Data["DrakTharonKeep"] = {
+ Name = BabbleZone["Drak'Tharon Keep"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Trollgore"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35620, "", "=q3=Berserker's Horns", "=ds=#s1#, #a2#", "", "33%" };
+ { 3, 35619, "", "=q3=Infection Resistant Legguards", "=ds=#s11#, #a3#", "", "28%" };
+ { 4, 35618, "", "=q3=Troll Butcherer", "=ds=#h2#, #w10#", "", "30%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37715, "", "=q3=Cowl of the Dire Troll", "=ds=#s1#, #a1#", "", "21%" };
+ { 19, 37714, "", "=q3=Batrider's Cord", "=ds=#s10#, #a2#", "", "22%" };
+ { 20, 37717, "", "=q3=Legs of Physical Regeneration", "=ds=#s11#, #a4#", "", "22%" };
+ { 21, 37712, "", "=q3=Terrace Defence Boots", "=ds=#s12#, #a4#", "", "22%" };
+ };
+ {
+ Name = BabbleBoss["Novos the Summoner"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35632, "", "=q3=Robes of Novos", "=ds=#s5#, #a1#", "", "32%" };
+ { 3, 35631, "", "=q3=Crystal Pendant of Warding", "=ds=#s2#", "", "28%" };
+ { 4, 35630, "", "=q3=Summoner's Stone Gavel", "=ds=#h1#, #w6#", "", "30%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37722, "", "=q3=Breastplate of Undeath", "=ds=#s5#, #a4#", "", "22%" };
+ { 19, 37718, "", "=q3=Temple Crystal Fragment", "=ds=#s15#", "", "21%" };
+ { 20, 37721, "", "=q3=Cursed Lich Blade", "=ds=#h3#, #w10#", "", "22%" };
+ };
+ {
+ Name = BabbleBoss["King Dred"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35635, "", "=q3=Stable Master's Breeches", "=ds=#s11#, #a1#", "", "28%" };
+ { 3, 35634, "", "=q3=Scabrous-Hide Helm", "=ds=#s1#, #a2#", "", "28%" };
+ { 4, 35633, "", "=q3=Staff of the Great Reptile", "=ds=#w9#", "", "31%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37725, "", "=q3=Savage Wound Wrap", "=ds=#s8#, #a1#", "", "21%" };
+ { 19, 37724, "", "=q3=Handler's Arm Strap", "=ds=#s8#, #a2#", "", "21%" };
+ { 20, 37726, "", "=q3=King Dred's Helm", "=ds=#s1#, #a3#", "", "21%" };
+ { 21, 37723, "", "=q3=Incisor Fragment", "=ds=#s14#", "", "21%" };
+ };
+ {
+ Name = BabbleBoss["The Prophet Tharon'ja"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35638, "", "=q3=Helmet of Living Flesh", "=ds=#s1#, #a3#", "", "33%" };
+ { 3, 35637, "", "=q3=Muradin's Lost Greaves", "=ds=#s11#, #a4#", "", "28%" };
+ { 4, 35636, "", "=q3=Tharon'ja's Aegis", "=ds=#w8#", "", "30%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37798, "", "=q4=Overlook Handguards", "=ds=#s9#, #a1#", "", "19%" };
+ { 19, 37791, "", "=q4=Leggings of the Winged Serpent", "=ds=#s11#, #a2#", "", "20%" };
+ { 20, 37788, "", "=q4=Limb Regeneration Bracers", "=ds=#s8#, #a3#", "", "21%" };
+ { 21, 37784, "", "=q4=Keystone Great-Ring", "=ds=#s13#", "", "19%" };
+ { 22, 37735, "", "=q3=Ziggurat Imprinted Chestguard", "=ds=#s5#, #a4#", "", "21%" };
+ { 23, 37732, "", "=q3=Spectral Seal of the Prophet", "=ds=#s13#", "", "20%" };
+ { 24, 37734, "", "=q3=Talisman of Troll Divinity", "=ds=#s14#", "", "21%" };
+ { 25, 37733, "", "=q3=Mojo Masked Crusher", "=ds=#h2#, #w6#", "", "21%" };
+ { 26, 41795, "", "=q3=Design: Timeless Forest Emerald", "=ds=#p12# (390)", "", "14%" };
+ { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35641, "", "=q3=Scytheclaw Boots", "=ds=#s12#, #a2#", "", "1%" };
+ { 3, 35640, "", "=q3=Darkweb Bindings", "=ds=#s8#, #a3#", "", "1%" };
+ { 4, 35639, "", "=q3=Brighthelm of Guarding", "=ds=#s1#, #a4#", "", "1%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 37799, "", "=q3=Reanimator's Cloak", "=ds=#s4#", "", "1%" };
+ { 18, 37800, "", "=q3=Aviary Guardsman's Hauberk", "=ds=#s5#, #a3#", "", "1%" };
+ { 19, 37801, "", "=q3=Waistguard of the Risen Knight", "=ds=#s10#, #a4#", "", "1%" };
+ };
+}
+
+-----------------------
+--- The Violet Hold ---
+-----------------------
+
+AtlasLoot_Data["TheVioletHold"] = {
+ Name = BabbleZone["The Violet Hold"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Erekem"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 43363, "", "=q3=Screeching Cape", "=ds=#s4#", "", "43%" };
+ { 3, 43375, "", "=q3=Trousers of the Arakkoa", "=ds=#s11#, #a1#", "", "45%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 43406, "", "=q3=Cloak of the Gushing Wound", "=ds=#s4#", "", "29%" };
+ { 19, 43405, "", "=q3=Sabatons of Erekem", "=ds=#s12#, #a4#", "", "29%" };
+ { 20, 43407, "", "=q3=Stormstrike Mace", "=ds=#h1#, #w6#", "", "30%" };
+ };
+ {
+ Name = BabbleBoss["Zuramat the Obliterator"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 43353, "", "=q3=Void Sentry Legplates", "=ds=#s11#, #a4#", "", "44%" };
+ { 3, 43358, "", "=q3=Pendant of Shadow Beams", "=ds=#s2#", "", "41%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 43403, "", "=q3=Shroud of Darkness", "=ds=#s1#, #a2#", "", "28%" };
+ { 19, 43402, "", "=q3=The Obliterator Greaves", "=ds=#s12#, #a4#", "", "28%" };
+ { 20, 43404, "", "=q3=Zuramat's Necklace", "=ds=#s2#", "", "28%" };
+ };
+ {
+ Name = BabbleBoss["Xevozz"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35644, "", "=q3=Xevozz's Belt", "=ds=#s10#, #a3#", "", "43%" };
+ { 3, 35642, "", "=q3=Riot Shield", "=ds=#w8#", "", "42%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37867, "", "=q3=Footwraps of Teleportation", "=ds=#s12#, #a1#", "", "29%" };
+ { 19, 37868, "", "=q3=Girdle of the Ethereal", "=ds=#s10#, #a3#", "", "29%" };
+ { 20, 37861, "", "=q3=Necklace of Arcane Spheres", "=ds=#s2#", "", "29%" };
+ };
+ {
+ Name = BabbleBoss["Ichoron"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35647, "", "=q3=Handguards of Rapid Pursuit", "=ds=#s9#, #a2#", "", "44%" };
+ { 3, 35643, "", "=q3=Spaulders of Ichoron", "=ds=#s3#, #a4#", "", "40%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 43401, "", "=q3=Water-Drenched Robe", "=ds=#s5#, #a1#", "", "28%" };
+ { 19, 37862, "", "=q3=Gauntlets of the Water Revenant", "=ds=#s9#, #a4#", "", "28%" };
+ { 20, 37869, "", "=q3=Globule Signet", "=ds=#s13#", "", "28%" };
+ };
+ {
+ Name = BabbleBoss["Moragg"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 43387, "", "=q3=Shoulderplates of the Beholder", "=ds=#s3#, #a4#", "", "43%" };
+ { 3, 43382, "", "=q3=Band of Eyes", "=ds=#s13#", "", "43%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 43410, "", "=q3=Moragg's Chestguard", "=ds=#s5#, #a3#", "", "29%" };
+ { 19, 43408, "", "=q3=Solitare of Reflecting Beams", "=ds=#s13#", "", "29%" };
+ { 20, 43409, "", "=q3=Saliva Corroded Pike", "=ds=#w7#", "", "30%" };
+ };
+ {
+ Name = BabbleBoss["Lavanthor"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35646, "", "=q3=Lava Burn Gloves", "=ds=#s9#, #a1#", "", "44%" };
+ { 3, 35645, "", "=q3=Prison Warden's Shotgun", "=ds=#w5#", "", "45%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37870, "", "=q3=Twin-Headed Boots", "=ds=#s12#, #a3#", "", "30%" };
+ { 19, 37872, "", "=q3=Lavanthor's Talisman", "=ds=#s14#", "", "30%" };
+ { 20, 37871, "", "=q3=The Key", "=ds=#h1#, #w1#", "", "29%" };
+ };
+ {
+ Name = BabbleBoss["Cyanigosa"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35650, "", "=q3=Boots of the Portal Guardian", "=ds=#s12#, #a3#", "", "31%" };
+ { 3, 35651, "", "=q3=Plate Claws of the Dragon", "=ds=#s9#, #a4#", "", "31%" };
+ { 4, 35649, "", "=q3=Jailer's Baton", "=ds=#w9#", "", "31%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37884, "", "=q4=Azure Cloth Bindings", "=ds=#s8#, #a1#", "", "20%" };
+ { 19, 37886, "", "=q4=Handgrips of the Savage Emissary", "=ds=#s9#, #a3#", "", "21%" };
+ { 20, 43500, "", "=q4=Bolstered Legplates", "=ds=#s11#, #a4#", "", "20%" };
+ { 21, 37883, "", "=q4=Staff of Trickery", "=ds=#w9#", "", "21%" };
+ { 22, 37876, "", "=q3=Cyanigosa's Leggings", "=ds=#s11#, #a1#", "", "22%" };
+ { 23, 37875, "", "=q3=Spaulders of the Violet Hold", "=ds=#s3#, #a3#", "", "21%" };
+ { 24, 37874, "", "=q3=Gauntlets of Capture", "=ds=#s9#, #a4#", "", "21%" };
+ { 25, 37873, "", "=q3=Mark of the War Prisoner", "=ds=#s14#", "", "20%" };
+ { 26, 41791, "", "=q3=Design: Thick Autumn's Glow", "=ds=#p12# (390)", "", "9%" };
+ { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35654, "", "=q3=Bindings of the Bastille", "=ds=#s8#, #a1#", "", "1%" };
+ { 3, 35653, "", "=q3=Dungeon Girdle", "=ds=#s10#, #a4#", "", "1%" };
+ { 4, 35652, "", "=q3=Incessant Torch", "=ds=#w12#", "", "1%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 35654, "", "=q3=Bindings of the Bastille", "=ds=#s8#, #a1#", "", "1%" };
+ { 18, 37890, "", "=q3=Chain Gang Legguards", "=ds=#s11#, #a2#", "", "1%" };
+ { 19, 37891, "", "=q3=Cast Iron Shackles", "=ds=#s8#, #a4#", "", "1%" };
+ { 20, 35653, "", "=q3=Dungeon Girdle", "=ds=#s10#, #a4#", "", "1%" };
+ { 21, 37889, "", "=q3=Prison Manifest", "=ds=#s15#", "", "1%" };
+ { 22, 35652, "", "=q3=Incessant Torch", "=ds=#w12#", "", "1%" };
+ };
+}
+
+---------------
+--- Gundrak ---
+---------------
+
+AtlasLoot_Data["Gundrak"] = {
+ Name = BabbleZone["Gundrak"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Slad'ran"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35584, "", "=q3=Embroidered Gown of Zul'drak", "=ds=#s5#, #a1#", "", "28%" };
+ { 3, 35585, "", "=q3=Cannibal's Legguards", "=ds=#s11#, #a3#", "", "29%" };
+ { 4, 35583, "", "=q3=Witch Doctor's Wildstaff", "=ds=#w9#", "", "28%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37629, "", "=q3=Slithering Slippers", "=ds=#s12#, #a1#", "", "21%" };
+ { 19, 37628, "", "=q3=Slad'ran's Coiled Cord", "=ds=#s10#, #a3#", "", "20%" };
+ { 20, 37627, "", "=q3=Snake Den Spaulders", "=ds=#s3#, #a4#", "", "20%" };
+ { 21, 37626, "", "=q3=Wand of Sseratus", "=ds=#w12#", "", "20%" };
+ };
+ {
+ Name = BabbleBoss["Drakkari Colossus"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35591, "", "=q3=Shoulderguards of the Ice Troll", "=ds=#s3#, #a2#", "", "25%" };
+ { 3, 35592, "", "=q3=Hauberk of Totemic Mastery", "=ds=#s5#, #a3#", "", "26%" };
+ { 4, 35590, "", "=q3=Drakkari Hunting Bow", "=ds=#w2#", "", "26%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37637, "", "=q3=Living Mojo Belt", "=ds=#s10#, #a1#", "", "20%" };
+ { 19, 37636, "", "=q3=Helm of Cheated Fate", "=ds=#s1#, #a2#", "", "21%" };
+ { 20, 37634, "", "=q3=Bracers of the Divine Elemental", "=ds=#s8#, #a2#", "", "20%" };
+ { 21, 37635, "", "=q3=Pauldrons of the Colossus", "=ds=#s3#, #a4#", "", "20%" };
+ };
+ {
+ Name = BabbleBoss["Moorabi"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35588, "", "=q3=Forlorn Breastplate of War", "=ds=#s5#, #a4#", "", "29%" };
+ { 3, 35589, "", "=q3=Arcane Focal Signet", "=ds=#s13#", "", "29%" };
+ { 4, 35587, "", "=q3=Frozen Scepter of Necromancy", "=ds=#h3#, #w6#", "", "30%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37630, "", "=q3=Shroud of Moorabi", "=ds=#s4#", "", "21%" };
+ { 19, 37633, "", "=q3=Ground Tremor Helm", "=ds=#s1#, #a4#", "", "22%" };
+ { 20, 37632, "", "=q3=Mojo Frenzy Greaves", "=ds=#s12#, #a4#", "", "22%" };
+ { 21, 37631, "", "=q3=Fist of the Deity", "=ds=#h3#, #w13#", "", "22%" };
+ };
+ {
+ Name = BabbleBoss["Eck the Ferocious"] .. " (" .. AL["Heroic"] .. ")";
+ { 1, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 2, 43313, "", "=q3=Leggings of the Ruins Dweller", "=ds=#s11#, #a1#", "", "23%" };
+ { 3, 43312, "", "=q3=Gorloc Muddy Footwraps", "=ds=#s12#, #a2#", "", "23%" };
+ { 4, 43311, "", "=q3=Helmet of the Shrine", "=ds=#s1#, #a3#", "", "22%" };
+ { 5, 43310, "", "=q3=Engraved Chestplate of Eck", "=ds=#s5#, #a4#", "", "23%" };
+ };
+ {
+ Name = BabbleBoss["Gal'darah"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 43305, "", "=q3=Shroud of Akali", "=ds=#s4#", "", "28%" };
+ { 3, 43309, "", "=q3=Amulet of the Stampede", "=ds=#s2#", "", "31%" };
+ { 4, 43306, "", "=q3=Gal'darah's Signet", "=ds=#s13#", "", "30%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37643, "", "=q4=Sash of Blood Removal", "=ds=#s10#, #a2#", "", "19%" };
+ { 19, 37644, "", "=q4=Gored Hide Legguards", "=ds=#s11#, #a2#", "", "19%" };
+ { 20, 37645, "", "=q4=Horn-Tipped Gauntlets", "=ds=#s9#, #a4#", "", "19%" };
+ { 21, 37642, "", "=q4=Hemorrhaging Circle", "=ds=#s13#", "", "18%" };
+ { 22, 37641, "", "=q3=Arcane Flame Altar-Garb", "=ds=#s5#, #a1#", "", "19%" };
+ { 23, 37640, "", "=q3=Boots of Transformation", "=ds=#s12#, #a2#", "", "20%" };
+ { 24, 37639, "", "=q3=Grips of the Beast God", "=ds=#s9#, #a3#", "", "20%" };
+ { 25, 37638, "", "=q3=Offering of Sacrifice", "=ds=#s14#", "", "20%" };
+ { 26, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35594, "", "=q3=Snowmelt Silken Cinch", "=ds=#s10#, #a1#", "", "2%" };
+ { 3, 35593, "", "=q3=Steel Bear Trap Bracers", "=ds=#s8#, #a4#", "", "1%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 37647, "", "=q3=Cloak of Bloodied Waters", "=ds=#s4#", "", "1%" };
+ { 18, 37648, "", "=q3=Belt of Tasseled Lanterns", "=ds=#s10#, #a3#", "", "1%" };
+ { 19, 37646, "", "=q3=Burning Skull Pendant", "=ds=#s2#", "", "1%" };
+ };
+}
+
+----------------------
+--- Halls of Stone ---
+----------------------
+
+AtlasLoot_Data["HallsofStone"] = {
+ Name = BabbleZone["Halls of Stone"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Maiden of Grief"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 38614, "", "=q3=Embrace of Sorrow", "=ds=#s4#", "", "28%" };
+ { 3, 38613, "", "=q3=Chain of Fiery Orbs", "=ds=#s2#", "", "29%" };
+ { 4, 38611, "", "=q3=Ringlet of Repose", "=ds=#s13#", "", "29%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 38616, "", "=q3=Maiden's Girdle", "=ds=#s10#, #a2#", "", "21%" };
+ { 19, 38615, "", "=q3=Lightning-Charged Gloves", "=ds=#s9#, #a3#", "", "21%" };
+ { 20, 38617, "", "=q3=Woeful Band", "=ds=#s13#", "", "22%" };
+ { 21, 38618, "", "=q3=Hammer of Grief", "=ds=#h2#, #w6#", "", "22%" };
+ };
+ {
+ Name = BabbleBoss["Krystallus"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35673, "", "=q3=Leggings of Burning Gleam", "=ds=#s11#, #a1#", "", "29%" };
+ { 3, 35672, "", "=q3=Hollow Geode Helm", "=ds=#s1#, #a3#", "", "30%" };
+ { 4, 35670, "", "=q3=Brann's Lost Mining Helmet", "=ds=#s1#, #a4#", "", "26%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37652, "", "=q3=Spaulders of Krystallus", "=ds=#s3#, #a2#", "", "28%" };
+ { 19, 37650, "", "=q3=Shardling Legguards", "=ds=#s11#, #a4#", "", "27%" };
+ { 20, 37651, "", "=q3=The Prospector's Prize", "=ds=#s13#", "", "27%" };
+ };
+ {
+ Name = BabbleBoss["The Tribunal of Ages"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35677, "", "=q3=Cosmos Vestments", "=ds=#s5#, #a2#", "", "25%" };
+ { 3, 35676, "", "=q3=Constellation Leggings", "=ds=#s11#, #a2#", "", "26%" };
+ { 4, 35675, "", "=q3=Linked Armor of the Sphere", "=ds=#s5#, #a3#", "", "24%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37655, "", "=q3=Mantle of the Tribunal", "=ds=#s3#, #a1#", "", "16%" };
+ { 19, 37656, "", "=q3=Raging Construct Bands", "=ds=#s8#, #a3#", "", "16%" };
+ { 20, 37654, "", "=q3=Sabatons of the Ages", "=ds=#s12#, #a3#", "", "14%" };
+ { 21, 37653, "", "=q3=Sword of Justice", "=ds=#h2#, #w10#", "", "16%" };
+ };
+ {
+ Name = BabbleBoss["Sjonnir The Ironshaper"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35679, "", "=q3=Static Cowl", "=ds=#s1#, #a1#", "", "28%" };
+ { 3, 35678, "", "=q3=Ironshaper's Legplates", "=ds=#s11#, #a4#", "", "28%" };
+ { 4, 35680, "", "=q3=Amulet of Wills", "=ds=#s2#", "", "29%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37669, "", "=q4=Leggings of the Stone Halls", "=ds=#s11#, #a3#", "", "18%" };
+ { 19, 37668, "", "=q4=Bands of the Stoneforge", "=ds=#s8#, #a4#", "", "18%" };
+ { 20, 37670, "", "=q4=Sjonnir's Girdle", "=ds=#s10#, #a4#", "", "18%" };
+ { 21, 37667, "", "=q4=The Fleshshaper", "=ds=#h1#, #w4#", "", "18%" };
+ { 22, 37666, "", "=q3=Boots of the Whirling Mist", "=ds=#s12#, #a2#", "", "19%" };
+ { 23, 37658, "", "=q3=Sun-Emblazoned Chestplate", "=ds=#s5#, #a4#", "", "19%" };
+ { 24, 37657, "", "=q3=Spark of Life", "=ds=#s14#", "", "19%" };
+ { 25, 37660, "", "=q3=Forge Ember", "=ds=#s14#", "", "18%" };
+ { 26, 41792, "", "=q3=Design: Deft Monarch Topaz", "=ds=#p12# (390)", "", "15%" };
+ { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 35682, "", "=q3=Rune Giant Bindings", "=ds=#s8#, #a1#", "", "0.44%" };
+ { 3, 35683, "", "=q3=Palladium Ring", "=ds=#s13#", "", "0.46%" };
+ { 4, 35681, "", "=q3=Unrelenting Blade", "=ds=#h1#, #w4#", "", "0.41%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 37673, "", "=q3=Dark Runic Mantle", "=ds=#s3#, #a1#", "", "1%" };
+ { 18, 37672, "", "=q3=Patina-Coated Breastplate", "=ds=#s5#, #a4#", "", "1%" };
+ { 19, 37671, "", "=q3=Refined Ore Gloves", "=ds=#s9#, #a4#", "", "1%" };
+ };
+}
+
+--------------------------
+--- Halls of Lightning ---
+--------------------------
+
+AtlasLoot_Data["HallsofLightning"] = {
+ Name = BabbleZone["Halls of Lightning"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["General Bjarngrim"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 36982, "", "=q3=Mantle of Electrical Charges", "=ds=#s3#, #a1#", "", "22%" };
+ { 3, 36979, "", "=q3=Bjarngrim Family Signet", "=ds=#s13#", "", "22%" };
+ { 4, 36980, "", "=q3=Hewn Sparring Quarterstaff", "=ds=#w9#", "", "22%" };
+ { 5, 36981, "", "=q3=Hardened Vrykul Throwing Axe", "=ds=#w11#", "", "23%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37825, "", "=q3=Traditionally Dyed Handguards", "=ds=#s9#, #a1#", "", "21%" };
+ { 19, 37818, "", "=q3=Patroller's War-Kilt", "=ds=#s11#, #a3#", "", "21%" };
+ { 20, 37814, "", "=q3=Iron Dwarf Smith Pauldrons", "=ds=#s3#, #a4#", "", "21%" };
+ { 21, 37826, "", "=q3=The General's Steel Girdle", "=ds=#s10#, #a4#", "", "22%" };
+ };
+ {
+ Name = BabbleBoss["Volkhan"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 36983, "", "=q3=Cape of Seething Steam", "=ds=#s4#", "", "22%" };
+ { 3, 36985, "", "=q3=Volkhan's Hood", "=ds=#s1#, #a1#", "", "23%" };
+ { 4, 36986, "", "=q3=Kilt of Molten Golems", "=ds=#s11#, #a3#", "", "22%" };
+ { 5, 36984, "", "=q3=Eternally Folded Blade", "=ds=#h1#, #w10#", "", "22%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37840, "", "=q3=Shroud of Reverberation", "=ds=#s4#", "", "21%" };
+ { 19, 37843, "", "=q3=Giant-Hair Woven Gloves", "=ds=#s9#, #a1#", "", "21%" };
+ { 20, 37842, "", "=q3=Belt of Vivacity", "=ds=#s10#, #a2#", "", "21%" };
+ { 21, 37841, "", "=q3=Slag Footguards", "=ds=#s12#, #a2#", "", "21%" };
+ };
+ {
+ Name = BabbleBoss["Ionar"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 39536, "", "=q3=Thundercloud Grasps", "=ds=#s9#, #a1#", "", "22%" };
+ { 3, 39657, "", "=q3=Tornado Cuffs", "=ds=#s8#, #a3#", "", "21%" };
+ { 4, 39534, "", "=q3=Pauldrons of the Lightning Revenant", "=ds=#s3#, #a4#", "", "21%" };
+ { 5, 39535, "", "=q3=Ionar's Girdle", "=ds=#s10#, #a4#", "", "21%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37846, "", "=q3=Charged-Bolt Grips", "=ds=#s9#, #a2#", "", "20%" };
+ { 19, 37845, "", "=q3=Cord of Swirling Winds", "=ds=#s10#, #a3#", "", "21%" };
+ { 20, 37826, "", "=q3=The General's Steel Girdle", "=ds=#s10#, #a4#", "", "22%" };
+ { 21, 37844, "", "=q3=Winged Talisman", "=ds=#s14#", "", "21%" };
+ };
+ {
+ Name = BabbleBoss["Loken"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 36991, "", "=q3=Raiments of the Titans", "=ds=#s5#, #a1#", "", "22%" };
+ { 3, 36996, "", "=q3=Hood of the Furtive Assassin", "=ds=#s1#, #a2#", "", "22%" };
+ { 4, 36992, "", "=q3=Leather-Braced Chain Leggings", "=ds=#s11#, #a3#", "", "22%" };
+ { 5, 36995, "", "=q3=Fists of Loken", "=ds=#s9#, #a4#", "", "22%" };
+ { 6, 36988, "", "=q3=Chaotic Spiral Amulet", "=ds=#s2#", "", "22%" };
+ { 7, 36993, "", "=q3=Seal of the Pantheon", "=ds=#s14#", "", "18%" };
+ { 8, 36994, "", "=q3=Projectile Activator", "=ds=#w5#", "", "21%" };
+ { 9, 36989, "", "=q3=Ancient Measuring Rod", "=ds=#w12#", "", "21%" };
+ { 10, 41799, "", "=q3=Design: Eternal Earthsiege Diamond", "=ds=#p12# (420)", "", "11%" };
+ { 12, 43151, "", "=q1=Loken's Tongue", "=ds=#m3#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37854, "", "=q4=Woven Bracae Leggings", "=ds=#s11#, #a1#", "", "18%" };
+ { 19, 37853, "", "=q4=Advanced Tooled-Leather Bands", "=ds=#s8#, #a2#", "", "18%" };
+ { 20, 37855, "", "=q4=Mail Girdle of the Audient Earth", "=ds=#s10#, #a3#", "", "19%" };
+ { 21, 37852, "", "=q4=Colossal Skull-Clad Cleaver", "=ds=#h2#, #w1#", "", "18%" };
+ { 22, 37851, "", "=q3=Ornate Woolen Stola", "=ds=#s5#, #a1#", "", "19%" };
+ { 23, 37850, "", "=q3=Flowing Sash of Order", "=ds=#s10#, #a1#", "", "19%" };
+ { 24, 37849, "", "=q3=Planetary Helm", "=ds=#s1#, #a4#", "", "19%" };
+ { 25, 37848, "", "=q3=Lightning Giant Staff", "=ds=#w9#", "", "18%" };
+ { 26, 41799, "", "=q3=Design: Eternal Earthsiege Diamond", "=ds=#p12# (420)", "", "11%" };
+ { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 36997, "", "=q3=Sash of the Hardened Watcher", "=ds=#s10#, #a1#", "", "1%" };
+ { 3, 37000, "", "=q3=Storming Vortex Bracers", "=ds=#s8#, #a2#", "", "1%" };
+ { 4, 36999, "", "=q3=Boots of the Terrestrial Guardian", "=ds=#s12#, #a3#", "", "1%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 37858, "", "=q3=Awakened Handguards", "=ds=#s9#, #a2#", "", "1%" };
+ { 18, 37857, "", "=q3=Helm of the Lightning Halls", "=ds=#s1#, #a3#", "", "1%" };
+ { 19, 37856, "", "=q3=Librarian's Paper Cutter", "=ds=#h1#, #w4#", "", "1%" };
+ };
+}
+
+---------------------------------------
+--- Caverns of Time: Old Stratholme ---
+---------------------------------------
+
+AtlasLoot_Data["CoTStratholme"] = {
+ Name = BabbleZone["Caverns of Time"] .. ": " .. BabbleZone["The Culling of Stratholme"];
+ DisplayName = BabbleZone["The Culling of Stratholme"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Meathook"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 37083, "", "=q3=Kilt of Sewn Flesh", "=ds=#s11#, #a2#", "", "23%" };
+ { 3, 37082, "", "=q3=Slaughterhouse Sabatons", "=ds=#s12#, #a4#", "", "22%" };
+ { 4, 37079, "", "=q3=Enchanted Wire Stitching", "=ds=#s13#", "", "23%" };
+ { 5, 37081, "", "=q3=Meathook's Slicer", "=ds=#h1#, #w10#", "", "22%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37680, "", "=q3=Belt of Unified Souls", "=ds=#s10#, #a1#", "", "22%" };
+ { 19, 37678, "", "=q3=Bile-Cured Gloves", "=ds=#s9#, #a2#", "", "22%" };
+ { 20, 37679, "", "=q3=Spaulders of the Abomination", "=ds=#s3#, #a3#", "", "21%" };
+ { 21, 37675, "", "=q3=Legplates of Steel Implants", "=ds=#s11#, #a4#", "", "23%" };
+ };
+ {
+ Name = BabbleBoss["Salramm the Fleshcrafter"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 37084, "", "=q3=Flowing Cloak of Command", "=ds=#s4#", "", "22%" };
+ { 3, 37095, "", "=q3=Waistband of the Thuzadin", "=ds=#s10#, #a3#", "", "23%" };
+ { 4, 37088, "", "=q3=Spiked Metal Cilice", "=ds=#s10#, #a4#", "", "22%" };
+ { 5, 37086, "", "=q3=Tome of Salramm", "=ds=#s15#", "", "23%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37684, "", "=q3=Forgotten Shadow Hood", "=ds=#s1#, #a1#", "", "22%" };
+ { 19, 37682, "", "=q3=Bindings of Dark Will", "=ds=#s8#, #a4#", "", "22%" };
+ { 20, 37683, "", "=q3=Necromancer's Amulet", "=ds=#s2#", "", "22%" };
+ { 21, 37681, "", "=q3=Gavel of the Fleshcrafter", "=ds=#h3#, #w6#", "", "22%" };
+ };
+ {
+ Name = BabbleBoss["Chrono-Lord Epoch"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 37106, "", "=q3=Ouroboros Belt", "=ds=#s10#, #a2#", "", "23%" };
+ { 3, 37105, "", "=q3=Treads of Altered History", "=ds=#s12#, #a3#", "", "24%" };
+ { 4, 37096, "", "=q3=Necklace of the Chrono-Lord", "=ds=#s2#", "", "22%" };
+ { 5, 37099, "", "=q3=Sempiternal Staff", "=ds=#w9#", "", "22%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37687, "", "=q3=Gloves of Distorted Time", "=ds=#s9#, #a1#", "", "23%" };
+ { 19, 37686, "", "=q3=Cracked Epoch Grasps", "=ds=#s9#, #a3#", "", "23%" };
+ { 20, 37688, "", "=q3=Legplates of the Infinite Drakonid", "=ds=#s11#, #a4#", "", "23%" };
+ { 21, 37685, "", "=q3=Mobius Band", "=ds=#s13#", "", "23%" };
+ };
+ {
+ Name = BabbleBoss["Infinite Corruptor"] .. " (" .. AL["Heroic"] .. ")";
+ { 1, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 2, 43951, "", "=q4=Reins of the Bronze Drake", "=ds=#e12#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Mal'Ganis"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 37113, "", "=q3=Demonic Fabric Bands", "=ds=#s8#, #a1#", "", "16%" };
+ { 3, 37114, "", "=q3=Gloves of Northern Lordaeron", "=ds=#s9#, #a2#", "", "19%" };
+ { 4, 37110, "", "=q3=Gauntlets of Dark Conversion", "=ds=#s9#, #a3#", "", "18%" };
+ { 5, 37109, "", "=q3=Discarded Silver Hand Spaulders", "=ds=#s3#, #a4#", "", "18%" };
+ { 6, 37111, "", "=q3=Soul Preserver", "=ds=#s14#", "", "14%" };
+ { 7, 37108, "", "=q3=Dreadlord's Blade", "=ds=#h2#, #w10#", "", "16%" };
+ { 8, 37112, "", "=q3=Beguiling Scepter", "=ds=#h3#, #w6#", "", "19%" };
+ { 9, 37107, "", "=q3=Leeka's Shield", "=ds=#w8#", "", "18%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37696, "", "=q4=Plague-Infected Bracers", "=ds=#s8#, #a2#", "", "11%" };
+ { 19, 37695, "", "=q4=Legguards of Nature's Power", "=ds=#s11#, #a3#", "", "11%" };
+ { 20, 37694, "", "=q4=Band of Guile", "=ds=#s13#", "", "11%" };
+ { 21, 37693, "", "=q4=Greed", "=ds=#h3#, #w13#", "", "11%" };
+ { 22, 43085, "", "=q4=Royal Crest of Lordaeron", "=ds=#w8#", "", "10%" };
+ { 23, 37691, "", "=q3=Mantle of Deceit", "=ds=#s3#, #a1#", "", "14%" };
+ { 24, 37690, "", "=q3=Pauldrons of Destiny", "=ds=#s3#, #a4#", "", "14%" };
+ { 25, 37689, "", "=q3=Pendant of the Nathrezim", "=ds=#s2#", "", "14%" };
+ { 26, 37692, "", "=q3=Pierce's Pistol", "=ds=#w5#", "", "14%" };
+ { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 37117, "", "=q3=King's Square Bracers", "=ds=#s8#, #a2#", "", "1%" };
+ { 2, 37116, "", "=q3=Epaulets of Market Row", "=ds=#s3#, #a3#", "", "1%" };
+ { 3, 37115, "", "=q3=Crusader's Square Pauldrons", "=ds=#s3#, #a4#", "", "1%" };
+ };
+}
+
+------------------------
+--- Utgarde Pinnacle ---
+------------------------
+
+AtlasLoot_Data["UtgardePinnacle"] = {
+ Name = BabbleZone["Utgarde Pinnacle"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Skadi the Ruthless"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 37043, "", "=q3=Tear-Linked Gauntlets", "=ds=#s9#, #a3#", "", "24%" };
+ { 3, 37040, "", "=q3=Svala's Bloodied Shackles", "=ds=#s8#, #a4#", "", "23%" };
+ { 4, 37037, "", "=q3=Ritualistic Athame", "=ds=#h1#, #w4#", "", "22%" };
+ { 5, 37038, "", "=q3=Brazier Igniter", "=ds=#w12#", "", "21%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37370, "", "=q3=Cuffs of the Trussed Hall", "=ds=#s8#, #a1#", "", "21%" };
+ { 19, 37369, "", "=q3=Sorrowgrave's Breeches", "=ds=#s11#, #a1#", "", "22%" };
+ { 20, 37368, "", "=q3=Silent Spectator Shoulderpads", "=ds=#s3#, #a2#", "", "22%" };
+ { 21, 37367, "", "=q3=Echoing Stompers", "=ds=#s12#, #a4#", "", "22%" };
+ };
+ {
+ Name = BabbleBoss["King Ymiron"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 37048, "", "=q3=Shroud of Resurrection", "=ds=#s4#", "", "24%" };
+ { 3, 37052, "", "=q3=Reanimated Armor", "=ds=#s5#, #a4#", "", "21%" };
+ { 4, 37051, "", "=q3=Seal of Valgarde", "=ds=#s15#", "", "21%" };
+ { 5, 37050, "", "=q3=Trophy Gatherer", "=ds=#w2#", "", "24%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37374, "", "=q3=Ravenous Leggings of the Furbolg", "=ds=#s11#, #a2#", "", "22%" };
+ { 19, 37373, "", "=q3=Massive Spaulders of the Jormungar", "=ds=#s3#, #a3#", "", "21%" };
+ { 20, 37376, "", "=q3=Ferocious Pauldrons of the Rhino", "=ds=#s3#, #a4#", "", "21%" };
+ { 21, 37371, "", "=q3=Ring of the Frenzied Wolvar", "=ds=#s13#", "", "22%" };
+ };
+ {
+ Name = BabbleBoss["Svala Sorrowgrave"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 37055, "", "=q3=Silken Amice of the Ymirjar", "=ds=#s3#, #a1#", "", "23%" };
+ { 3, 37057, "", "=q3=Drake Rider's Tunic", "=ds=#s5#, #a2#", "", "23%" };
+ { 4, 37056, "", "=q3=Harpooner's Striders", "=ds=#s12#, #a4#", "", "22%" };
+ { 5, 37053, "", "=q3=Amulet of Deflected Blows", "=ds=#s2#", "", "20%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 44151, "", "=q4=Reins of the Blue Proto-Drake", "=ds=#e12#", "", "1%" };
+ { 19, 37389, "", "=q3=Crenelation Leggings", "=ds=#s11#, #a2#", "", "21%" };
+ { 20, 37379, "", "=q3=Skadi's Iron Belt", "=ds=#s10#, #a4#", "", "22%" };
+ { 21, 37377, "", "=q3=Netherbreath Spellblade", "=ds=#h3#, #w4#", "", "21%" };
+ { 22, 37384, "", "=q3=Staff of Wayward Principles", "=ds=#w9#", "", "21%" };
+ };
+ {
+ Name = BabbleBoss["Gortok Palehoof"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 37067, "", "=q3=Ceremonial Pyre Mantle", "=ds=#s3#, #a2#", "", "19%" };
+ { 3, 37062, "", "=q3=Crown of Forgotten Kings", "=ds=#s1#, #a4#", "", "21%" };
+ { 4, 37066, "", "=q3=Ancient Royal Legguards", "=ds=#s11#, #a4#", "", "23%" };
+ { 5, 37058, "", "=q3=Signet of Ranulf", "=ds=#s13#", "", "22%" };
+ { 6, 37064, "", "=q3=Vestige of Haldor", "=ds=#s14#", "", "24%" };
+ { 7, 37060, "", "=q3=Jeweled Coronation Sword", "=ds=#h3#, #w10#", "", "20%" };
+ { 8, 37065, "", "=q3=Ymiron's Blade", "=ds=#h1#, #w10#", "", "20%" };
+ { 9, 37061, "", "=q3=Tor's Crest", "=ds=#w8#", "", "23%" };
+ { 10, 41797, "", "=q3=Design: Austere Earthsiege Diamond", "=ds=#p12# (420)", "", "10%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37408, "", "=q4=Girdle of Bane", "=ds=#s10#, #a1#", "", "19%" };
+ { 19, 37409, "", "=q4=Gilt-Edged Leather Gauntlets", "=ds=#s9#, #a2#", "", "19%" };
+ { 20, 37407, "", "=q4=Sovereign's Belt", "=ds=#s10#, #a3#", "", "20%" };
+ { 21, 37401, "", "=q4=Red Sword of Courage", "=ds=#h1#, #w10#", "", "18%" };
+ { 22, 37398, "", "=q3=Mantle of Discarded Ways", "=ds=#s3#, #a3#", "", "20%" };
+ { 23, 37395, "", "=q3=Ornamented Plate Regalia", "=ds=#s5#, #a4#", "", "20%" };
+ { 24, 37397, "", "=q3=Gold Amulet of Kings", "=ds=#s2#", "", "20%" };
+ { 25, 37390, "", "=q3=Meteorite Whetstone", "=ds=#s14#", "", "20%" };
+ { 26, 41797, "", "=q3=Design: Austere Earthsiege Diamond", "=ds=#p12# (420)", "", "10%" };
+ { 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 37070, "", "=q3=Tundra Wolf Boots", "=ds=#s12#, #a2#", "", "2%" };
+ { 3, 37069, "", "=q3=Dragonflayer Seer's Bindings", "=ds=#s8#, #a3#", "", "1%" };
+ { 4, 37068, "", "=q3=Berserker's Sabatons", "=ds=#s12#, #a4#", "", "3%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 37587, "", "=q3=Ymirjar Physician's Robe", "=ds=#s5#, #a2#", "", "1%" };
+ { 18, 37590, "", "=q3=Bands of Fading Light", "=ds=#s8#, #a4#", "", "1%" };
+ { 19, 37410, "", "=q3=Tracker's Balanced Knives", "=ds=#w11#", "", "1%" };
+ };
+}
+
+------------------
+--- The Oculus ---
+------------------
+
+AtlasLoot_Data["TheOculus"] = {
+ Name = BabbleZone["The Oculus"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Drakos the Interrogator"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 36945, "", "=q3=Verdisa's Cuffs of Dreaming", "=ds=#s8#, #a1#", "", "21%" };
+ { 3, 36946, "", "=q3=Runic Cage Chestpiece", "=ds=#s5#, #a3#", "", "23%" };
+ { 4, 36943, "", "=q3=Timeless Beads of Eternos", "=ds=#s2#", "", "21%" };
+ { 5, 36944, "", "=q3=Lifeblade of Belgaristrasz", "=ds=#h1#, #w4#", "", "25%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37258, "", "=q3=Drakewing Raiments", "=ds=#s5#, #a1#", "", "22%" };
+ { 19, 37256, "", "=q3=Scaled Armor of Drakos", "=ds=#s5#, #a3#", "", "23%" };
+ { 20, 37257, "", "=q3=Band of Torture", "=ds=#s13#", "", "23%" };
+ { 21, 37255, "", "=q3=The Interrogator", "=ds=#h1#, #w10#", "", "23%" };
+ };
+ {
+ Name = BabbleBoss["Mage-Lord Urom"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 36947, "", "=q3=Centrifuge Core Cloak", "=ds=#s4#", "", "21%" };
+ { 3, 36949, "", "=q3=Gloves of the Azure-Lord", "=ds=#s9#, #a1#", "", "21%" };
+ { 4, 36948, "", "=q3=Horned Helm of Varos", "=ds=#s1#, #a2#", "", "22%" };
+ { 5, 36950, "", "=q3=Wing Commander's Breastplate", "=ds=#s5#, #a4#", "", "23%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37261, "", "=q3=Gloves of Radiant Light", "=ds=#s9#, #a2#", "", "22%" };
+ { 19, 37262, "", "=q3=Azure Ringmail Leggings", "=ds=#s11#, #a3#", "", "21%" };
+ { 20, 37263, "", "=q3=Legplates of the Oculus Guardian", "=ds=#s11#, #a4#", "", "21%" };
+ { 21, 37260, "", "=q3=Cloudstrider's Waraxe", "=ds=#h1#, #w1#", "", "21%" };
+ };
+ {
+ Name = BabbleBoss["Varos Cloudstrider"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 36954, "", "=q3=The Conjurer's Slippers", "=ds=#s12#, #a1#", "", "21%" };
+ { 3, 36951, "", "=q3=Sidestepping Handguards", "=ds=#s9#, #a2#", "", "20%" };
+ { 4, 36953, "", "=q3=Spaulders of Skillful Maneuvers", "=ds=#s3#, #a3#", "", "21%" };
+ { 5, 36952, "", "=q3=Girdle of Obscuring", "=ds=#s10#, #a4#", "", "18%" };
+ { 7, 21525, "", "=q2=Green Winter Hat", "=ds=#s1#, #a1# =q2=#m28#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37289, "", "=q3=Sash of Phantasmal Images", "=ds=#s10#, #a1#", "", "18%" };
+ { 19, 37288, "", "=q3=Catalytic Bands", "=ds=#s8#, #a4#", "", "18%" };
+ { 20, 37195, "", "=q3=Band of Enchanted Growth", "=ds=#s13#", "", "20%" };
+ { 21, 37264, "", "=q3=Pendulum of Telluric Currents", "=ds=#s14#", "", "20%" };
+ { 23, 21525, "", "=q2=Green Winter Hat", "=ds=#s1#, #a1# =q2=#m28#" };
+ };
+ {
+ Name = BabbleBoss["Ley-Guardian Eregos"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 36973, "", "=q3=Vestments of the Scholar", "=ds=#s5#, #a1#", "", "18%" };
+ { 3, 36971, "", "=q3=Headguard of Westrift", "=ds=#s1#, #a3#", "", "17%" };
+ { 4, 36969, "", "=q3=Helm of the Ley-Guardian", "=ds=#s1#, #a4#", "", "14%" };
+ { 5, 36974, "", "=q3=Eredormu's Ornamented Chestguard", "=ds=#s5#, #a4#", "", "18%" };
+ { 6, 36961, "", "=q3=Dragonflight Great-Ring", "=ds=#s13#", "", "17%" };
+ { 7, 36972, "", "=q3=Tome of Arcane Phenomena", "=ds=#s14#", "", "15%" };
+ { 8, 36962, "", "=q3=Wyrmclaw Battleaxe", "=ds=#h2#, #w1#", "", "17%" };
+ { 9, 36975, "", "=q3=Malygos's Favor", "=ds=#w9#", "", "17%" };
+ { 10, 41798, "", "=q3=Design: Bracing Earthsiege Diamond", "=ds=#p12# (420)", "", "7%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 37361, "", "=q4=Cuffs of Winged Levitation", "=ds=#s8#, #a1#", "", "14%" };
+ { 19, 37363, "", "=q4=Gauntlets of Dragon Wrath", "=ds=#s9#, #a4#", "", "13%" };
+ { 20, 37362, "", "=q4=Leggings of Protective Auras", "=ds=#s11#, #a4#", "", "13%" };
+ { 21, 37360, "", "=q4=Staff of Draconic Combat", "=ds=#w9#", "", "14%" };
+ { 22, 37291, "", "=q3=Ancient Dragon Spirit Cape", "=ds=#s4#", "", "14%" };
+ { 23, 37294, "", "=q3=Crown of Unbridled Magic", "=ds=#s1#, #a1#", "", "14%" };
+ { 24, 37293, "", "=q3=Mask of the Watcher", "=ds=#s1#, #a2#", "", "15%" };
+ { 25, 37292, "", "=q3=Ley-Guardian's Legguards", "=ds=#s11#, #a4#", "", "15%" };
+ { 26, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
+ { 28, 52676, "", "=q2=Cache of the Ley-Guardian", "=ds=" .. AL["Random Heroic Reward"] };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 36978, "", "=q3=Ley-Whelphide Belt", "=ds=#s10#, #a2#", "", "0.45%" };
+ { 3, 36977, "", "=q3=Bindings of the Construct", "=ds=#s8#, #a4#", "", "1%" };
+ { 4, 36976, "", "=q3=Ring-Lord's Leggings", "=ds=#s11#, #a1#", "", "1%" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 37366, "", "=q3=Drake-Champion's Bracers", "=ds=#s8#, #a2#", "", "1%" };
+ { 18, 37365, "", "=q3=Bands of the Sky Ring", "=ds=#s8#, #a3#", "", "1%" };
+ { 19, 37290, "", "=q3=Dragon Prow Amulet", "=ds=#s2#", "", "1%" };
+ { 20, 37364, "", "=q3=Frostbridge Orb", "=ds=#s15#", "", "1%" };
+ };
+};
+
+--------------------------
+--- The Forge of Souls ---
+--------------------------
+
+AtlasLoot_Data["ForgeofSouls"] = {
+ Name = BabbleZone["The Forge of Souls"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Bronjahm"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 49788, "", "=q4=Cold Sweat Grips", "=ds=#s9#, #a1#" };
+ { 3, 49785, "", "=q4=Bewildering Shoulderpads", "=ds=#s3#, #a2#" };
+ { 4, 49786, "", "=q4=Robes of the Cheating Heart", "=ds=#s5#, #a2#" };
+ { 5, 49787, "", "=q4=Seven Stormy Mornings", "=ds=#s8#, #a3#" };
+ { 6, 49784, "", "=q4=Minister's Number One Legplates", "=ds=#s11#, #a4#" };
+ { 7, 49783, "", "=q4=Lucky Old Sun", "=ds=#h1#, #w6#" };
+ { 9, 50317, "", "=q4=Papa's New Bag", "=ds=#e1#" };
+ { 10, 50316, "", "=q4=Papa's Brand New Bag", "=ds=#e1#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 50193, "", "=q4=Very Fashionable Shoulders", "=ds=#s3#, #a1#" };
+ { 18, 50197, "", "=q4=Eyes of Bewilderment", "=ds=#s1#, #a3#" };
+ { 19, 50194, "", "=q4=Weeping Gauntlets", "=ds=#s9#, #a4#" };
+ { 20, 50196, "", "=q4=Love's Prisoner", "=ds=#s2#" };
+ { 21, 50191, "", "=q4=Nighttime", "=ds=#h1#, #w1#" };
+ { 22, 50169, "", "=q4=Papa's Brand New Knife", "=ds=#w11#" };
+ { 24, 50317, "", "=q4=Papa's New Bag", "=ds=#e1#" };
+ { 25, 50316, "", "=q4=Papa's Brand New Bag", "=ds=#e1#" };
+ };
+ {
+ Name = BabbleBoss["Devourer of Souls"];
+ { 1, 49792, "", "=q4=Accursed Crawling Cape", "=ds=#s4#" };
+ { 2, 49796, "", "=q4=Essence of Anger", "=ds=#s10#, #a1#" };
+ { 3, 49798, "", "=q4=Soul Screaming Boots", "=ds=#s12#, #a3#" };
+ { 4, 49791, "", "=q4=Lost Reliquary Chestguard", "=ds=#s5#, #a4#" };
+ { 5, 49797, "", "=q4=Brace Guards of the Starless Night", "=ds=#s8#, #a4#" };
+ { 6, 49794, "", "=q4=Legplates of Frozen Granite", "=ds=#s11#, #a4#" };
+ { 7, 49795, "", "=q4=Sollerets of Suffering", "=ds=#s12#, #a4#" };
+ { 16, 49799, "", "=q4=Coil of Missing Gems", "=ds=#s2#" };
+ { 17, 49800, "", "=q4=Spiteful Signet", "=ds=#s13#" };
+ { 19, 49789, "", "=q4=Heartshiver", "=ds=#h1#, #w4#" };
+ { 20, 49790, "", "=q4=Blood Boil Lancet", "=ds=#w9#" };
+ { 21, 49793, "", "=q4=Tower of the Mouldering Corpse", "=ds=#w9#" };
+ };
+ {
+ Name = BabbleBoss["Devourer of Souls"];
+ { 1, 50213, "", "=q4=Mord'rethar Robes", "=ds=#s5#, #a1#" };
+ { 2, 50206, "", "=q4=Frayed Scoundrel's Cap", "=ds=#s1#, #a2#" };
+ { 3, 50212, "", "=q4=Essence of Desire", "=ds=#s9#, #a2#" };
+ { 4, 50214, "", "=q4=Helm of the Spirit Shock", "=ds=#s1#, #a3#" };
+ { 5, 50209, "", "=q4=Essence of Suffering", "=ds=#s8#, #a3#" };
+ { 6, 50208, "", "=q4=Pauldrons of the Devourer", "=ds=#s3#, #a4#" };
+ { 7, 50207, "", "=q4=Black Spire Sabatons", "=ds=#s12#, #a4#" };
+ { 8, 50215, "", "=q4=Recovered Reliquary Boots", "=ds=#s12#, #a4#" };
+ { 16, 50211, "", "=q4=Arcane Loops of Anger", "=ds=#s2#" };
+ { 17, 50198, "", "=q4=Needle-Encrusted Scorpion", "=ds=#s14#" };
+ { 19, 50203, "", "=q4=Blood Weeper", "=ds=#h1#, #w4#" };
+ { 20, 50210, "", "=q4=Seethe", "=ds=#h3#, #w10#" };
+ };
+}
+
+--------------------
+--- Pit of Saron ---
+--------------------
+
+AtlasLoot_Data["PitofSaron"] = {
+ Name = BabbleZone["Pit of Saron"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Forgemaster Garfrost"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 49805, "", "=q4=Ice-Steeped Sandals", "=ds=#s12#, #a1#" };
+ { 3, 49806, "", "=q4=Flayer's Black Belt", "=ds=#s10#, #a2#" };
+ { 4, 49804, "", "=q4=Polished Mirror Helm", "=ds=#s1#, #a3#" };
+ { 5, 49803, "", "=q4=Ring of Carnelian and Bone", "=ds=#s13#" };
+ { 6, 49802, "", "=q4=Garfrost's Two-Ton Hammer", "=ds=#h2#, #w6#" };
+ { 7, 49801, "", "=q4=Unspeakable Secret", "=ds=#w9#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 50233, "", "=q4=Spurned Val'kyr Shoulderguards", "=ds=#s3#, #a3#" };
+ { 18, 50234, "", "=q4=Shoulderplates of Frozen Blood", "=ds=#s3#, #a4#" };
+ { 19, 50230, "", "=q4=Malykriss Vambraces", "=ds=#s8#, #a4#" };
+ { 20, 50229, "", "=q4=Legguards of the Frosty Depths", "=ds=#s11#, #a4#" };
+ { 21, 50228, "", "=q4=Barbed Ymirheim Choker", "=ds=#s2#" };
+ { 22, 50227, "", "=q4=Surgeon's Needle", "=ds=#h3#, #w4#" };
+ };
+ {
+ Name = AL["Krick and Ick"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 49809, "", "=q4=Wristguards of Subterranean Moss", "=ds=#s8#, #a1#" };
+ { 3, 49810, "", "=q4=Scabrous Zombie Leather Belt", "=ds=#s10#, #a3#" };
+ { 4, 49811, "", "=q4=Black Dragonskin Breeches", "=ds=#s11#, #a3#" };
+ { 5, 49808, "", "=q4=Bent Gold Belt", "=ds=#s10#, #a4#" };
+ { 6, 49812, "", "=q4=Purloined Wedding Ring", "=ds=#s13#" };
+ { 7, 49807, "", "=q4=Krick's Beetle Stabber", "=ds=#h1#, #w4#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 50266, "", "=q4=Ancient Polar Bear Hide", "=ds=#s5#, #a1#" };
+ { 18, 50263, "", "=q4=Braid of Salt and Fire", "=ds=#s10#, #a1#" };
+ { 19, 50264, "", "=q4=Chewed Leather Wristguards", "=ds=#s8#, #a2#" };
+ { 20, 50265, "", "=q4=Blackened Ghoul Skin Leggings", "=ds=#s11#, #a3#" };
+ { 21, 50235, "", "=q4=Ick's Rotting Thumb", "=ds=#s14#" };
+ { 22, 50262, "", "=q4=Felglacier Bolter", "=ds=#w3#" };
+ };
+ {
+ Name = BabbleBoss["Scourgelord Tyrannus"];
+ { 1, 49823, "", "=q4=Cloak of the Fallen Cardinal", "=ds=#s4#" };
+ { 2, 49825, "", "=q4=Palebone Robes", "=ds=#s5#, #a1#" };
+ { 3, 49822, "", "=q4=Rimewoven Silks", "=ds=#s11#, #a1#" };
+ { 4, 49817, "", "=q4=Shaggy Wyrmleather Leggings", "=ds=#s11#, #a2#" };
+ { 5, 49824, "", "=q4=Horns of the Spurned Val'kyr", "=ds=#s1#, #a3#" };
+ { 6, 49826, "", "=q4=Shroud of Rime", "=ds=#s5#, #a3#" };
+ { 7, 49820, "", "=q4=Gondria's Spectral Bracer", "=ds=#s8#, #a3#" };
+ { 8, 49819, "", "=q4=Skeleton Lord's Cranium", "=ds=#s1#, #a4#" };
+ { 9, 49816, "", "=q4=Scourgelord's Frigid Chestplate", "=ds=#s5#, #a4#" };
+ { 16, 49818, "", "=q4=Painfully Sharp Choker", "=ds=#s2#" };
+ { 18, 49821, "", "=q4=Protector of Frigid Souls", "=ds=#w8#" };
+ { 19, 49813, "", "=q4=Rimebane Rifle", "=ds=#w5#" };
+ };
+ {
+ Name = BabbleBoss["Scourgelord Tyrannus"];
+ { 1, 50286, "", "=q4=Prelate's Snowshoes", "=ds=#s12#, #a1#" };
+ { 2, 50269, "", "=q4=Fleshwerk Leggings", "=ds=#s11#, #a2#" };
+ { 3, 50270, "", "=q4=Belt of Rotted Fingernails", "=ds=#s10#, #a3#" };
+ { 4, 50283, "", "=q4=Mudslide Boots", "=ds=#s12#, #a3#" };
+ { 5, 50272, "", "=q4=Frost Wyrm Ribcage", "=ds=#s5#, #a4#" };
+ { 6, 50285, "", "=q4=Icebound Bronze Cuirass", "=ds=#s5#, #a4#" };
+ { 7, 50284, "", "=q4=Rusty Frozen Fingerguards", "=ds=#s9#, #a4#" };
+ { 16, 50271, "", "=q4=Band of Stained Souls", "=ds=#s13#" };
+ { 17, 50259, "", "=q4=Nevermelting Ice Crystal", "=ds=#s14#" };
+ { 19, 50268, "", "=q4=Rimefang's Claw", "=ds=#h1#, #w10#" };
+ { 20, 50267, "", "=q4=Tyrannical Beheader", "=ds=#h2#, #w1#" };
+ { 21, 50273, "", "=q4=Engraved Gargoyle Femur", "=ds=#w9#" };
+ };
+}
+
+---------------------------
+--- Halls of Reflection ---
+---------------------------
+
+AtlasLoot_Data["HallsofReflection"] = {
+ Name = BabbleZone["Halls of Reflection"];
+ Type = "WrathDungeon";
+ {
+ Name = BabbleBoss["Falric"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 49832, "", "=q4=Eerie Runeblade Polisher", "=ds=#s4#" };
+ { 3, 49828, "", "=q4=Marwyn's Macabre Fingertips", "=ds=#s9#, #a1#" };
+ { 4, 49830, "", "=q4=Fallen Sentry's Hood", "=ds=#s1#, #a2#" };
+ { 5, 49831, "", "=q4=Muddied Boots of Brill", "=ds=#s12#, #a3#" };
+ { 6, 49829, "", "=q4=Valonforth's Tarnished Pauldrons", "=ds=#s3#, #a4#" };
+ { 7, 49827, "", "=q4=Ghoulslicer", "=ds=#h1#, #w10#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 50292, "", "=q4=Bracer of Worn Molars", "=ds=#s8#, #a1#" };
+ { 18, 50293, "", "=q4=Spaulders of Black Betrayal", "=ds=#s3#, #a2#" };
+ { 19, 50295, "", "=q4=Spiked Toestompers", "=ds=#s12#, #a3#" };
+ { 20, 50294, "", "=q4=Chestpiece of High Treason", "=ds=#s5#, #a4#" };
+ { 21, 50290, "", "=q4=Falric's Wrist-Chopper", "=ds=#h1#, #w1#" };
+ { 22, 50291, "", "=q4=Soulsplinter", "=ds=#w12#" };
+ };
+ {
+ Name = BabbleBoss["Marwyn"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 49834, "", "=q4=Frayed Abomination Stitching Shoulders", "=ds=#s3#, #a1#" };
+ { 3, 49838, "", "=q4=Carpal Tunnelers", "=ds=#s9#, #a2#" };
+ { 4, 49837, "", "=q4=Mitts of Burning Hail", "=ds=#s9#, #a3#" };
+ { 5, 49836, "", "=q4=Frostsworn Bone Leggings", "=ds=#s11#, #a3#" };
+ { 6, 49833, "", "=q4=Splintered Icecrown Parapet", "=ds=#h3#, #w10#" };
+ { 7, 49835, "", "=q4=Splintered Door of the Citadel", "=ds=#w8#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 50298, "", "=q4=Sightless Crown of Ulmaas", "=ds=#s1#, #a1#" };
+ { 18, 50299, "", "=q4=Suspiciously Soft Gloves", "=ds=#s9#, #a1#" };
+ { 19, 50300, "", "=q4=Choking Hauberk", "=ds=#s5#, #a2#" };
+ { 20, 50297, "", "=q4=Frostsworn Bone Chestpiece", "=ds=#s5#, #a3#" };
+ { 21, 50260, "", "=q4=Ephemeral Snowflake", "=ds=#s14#" };
+ { 22, 50296, "", "=q4=Orca-Hunter's Harpoon", "=ds=#w7#" };
+ };
+ {
+ Name = BabbleBoss["The Lich King"];
+ { 1, 49842, "", "=q4=Tapestry of the Frozen Throne", "=ds=#s4#" };
+ { 2, 49849, "", "=q4=Tattered Glacial-Woven Hood", "=ds=#s1#, #a1#" };
+ { 3, 49848, "", "=q4=Grim Lasher Shoulderguards", "=ds=#s3#, #a2#" };
+ { 4, 49841, "", "=q4=Blackened Geist Ribs", "=ds=#s5#, #a2#" };
+ { 5, 49847, "", "=q4=Legguards of Untimely Demise", "=ds=#s11#, #a3#" };
+ { 6, 49851, "", "=q4=Greathelm of the Silver Hand", "=ds=#s1#, #a4#" };
+ { 7, 49843, "", "=q4=Crystalline Citadel Gauntlets", "=ds=#s9#, #a4#" };
+ { 16, 49846, "", "=q4=Chilled Heart of the Glacier", "=ds=#h3#, #w4#" };
+ { 17, 49839, "", "=q4=Mourning Malice", "=ds=#h2#, #w10#" };
+ { 18, 49840, "", "=q4=Hate-Forged Cleaver", "=ds=#h1#, #w1#" };
+ { 19, 49845, "", "=q4=Bone Golem Scapula", "=ds=#h3#, #w6#" };
+ { 20, 49844, "", "=q4=Crypt Fiend Slayer", "=ds=#w2#" };
+ };
+ {
+ Name = BabbleBoss["The Lich King"];
+ { 1, 50314, "", "=q4=Strip of Remorse", "=ds=#s10#, #a1#" };
+ { 2, 50312, "", "=q4=Chestguard of Broken Branches", "=ds=#s5#, #a2#" };
+ { 3, 50308, "", "=q4=Blighted Leather Footpads", "=ds=#s12#, #a2#" };
+ { 4, 50304, "", "=q4=Hoarfrost Gauntlets", "=ds=#s9#, #a3#" };
+ { 5, 50311, "", "=q4=Second Helm of the Executioner", "=ds=#s1#, #a4#" };
+ { 6, 50305, "", "=q4=Grinning Skull Boots", "=ds=#s12#, #a4#" };
+ { 8, 50310, "", "=q4=Fossilized Ammonite Choker", "=ds=#s2#" };
+ { 9, 50313, "", "=q4=Oath of Empress Zoe", "=ds=#s13#" };
+ { 10, 50306, "", "=q4=The Lady's Promise", "=ds=#s13#" };
+ { 11, 50309, "", "=q4=Shriveled Heart", "=ds=#s15#" };
+ { 16, 50302, "", "=q4=Liar's Tongue", "=ds=#h1#, #w10#" };
+ { 17, 50303, "", "=q4=Black Icicle", "=ds=#h1#, #w6#" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 49854, "", "=q4=Mantle of Tattered Feathers", "=ds=#s3#, #a1#" };
+ { 3, 49855, "", "=q4=Plated Grips of Korth'azz", "=ds=#s9#, #a4#" };
+ { 4, 49853, "", "=q4=Titanium Links of Lore", "=ds=#s10#, #a4#" };
+ { 5, 49852, "", "=q4=Coffin Nail", "=ds=#w12#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 50318, "", "=q4=Ghostly Wristwraps", "=ds=#s8#, #a2#" };
+ { 18, 50315, "", "=q4=Seven-Fingered Claws", "=ds=#h3#, #w13#" };
+ { 19, 50319, "", "=q4=Unsharpened Ice Razor", "=ds=#h1#, #w4#" };
+ { 21, 50380, "", "=q4=Battered Hilt", "=ds=#m2#" };
+ { 22, 50379, "", "=q4=Battered Hilt", "=ds=#m2#" };
+ { 23, 50047, "", "=q4=Quel'Delar, Lens of the Mind", "=q1=#m4#: =ds=#h3#, #w10#" };
+ { 24, 50046, "", "=q4=Quel'Delar, Cunning of the Shadows", "=q1=#m4#: =ds=#h1#, #w10#" };
+ { 25, 50049, "", "=q4=Quel'Delar, Ferocity of the Scorned", "=q1=#m4#: =ds=#h2#, #w10#" };
+ { 26, 50048, "", "=q4=Quel'Delar, Might of the Faithful", "=q1=#m4#: =ds=#h2#, #w10#" };
+ { 27, 50051, "", "=q4=Hammer of Purified Flame", "=q1=#m4#: =ds=#h3#, #w6#" };
+ { 28, 50050, "", "=q4=Cudgel of Furious Justice", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 29, 50052, "", "=q4=Lightborn Spire", "=q1=#m4#: =ds=#h2#, #w6#" };
+ };
+}
+
+
+-----------------------------
+--- Trial of the Champion ---
+-----------------------------
+
+AtlasLoot_Data["TrialoftheChampion"] = {
+ Name = BabbleZone["Trial of the Champion"];
+ Type = "WrathDungeon";
+ {
+ Name = AL["Faction Champions"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 47173, "", "=q4=Bindings of the Wicked", "=ds=#s8#, #a1#" };
+ { 3, 47170, "", "=q4=Belt of Fierce Competition", "=ds=#s10#, #a2#" };
+ { 4, 47174, "", "=q4=Binding of the Tranquil Glade", "=ds=#s10#, #a2#" };
+ { 5, 47175, "", "=q4=Scale Boots of the Outlander", "=ds=#s12#, #a3#" };
+ { 6, 47172, "", "=q4=Helm of the Bested Gallant", "=ds=#s1#, #a4#" };
+ { 7, 47171, "", "=q4=Legguards of Abandoned Fealty", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 47249, "", "=q4=Leggings of the Snowy Bramble", "=ds=#s11#, #a2#" };
+ { 19, 47248, "", "=q4=Treads of Dismal Fortune", "=ds=#s12#, #a2#" };
+ { 20, 47250, "", "=q4=Pauldrons of the Deafening Gale", "=ds=#s3#, #a3#" };
+ { 21, 47244, "", "=q4=Chestguard of the Ravenous Fiend", "=ds=#s5#, #a3#" };
+ { 22, 47243, "", "=q4=Mark of the Relentless", "=ds=#s13#" };
+ { 23, 47493, "", "=q4=Edge of Ruin", "=ds=#h2#, #w1#" };
+ { 24, 44990, "", "=q1=Champion's Seal", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Argent Confessor Paletress"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 47181, "", "=q4=Belt of the Churning Blaze", "=ds=#s10#, #a1#" };
+ { 3, 47218, "", "=q4=The Confessor's Binding", "=ds=#s10#, #a1#" };
+ { 4, 47185, "", "=q4=Leggings of the Haggard Apprentice", "=ds=#s11#, #a1#" };
+ { 5, 47217, "", "=q4=Gaze of the Somber Keeper", "=ds=#s1#, #a2#" };
+ { 6, 47177, "", "=q4=Gloves of the Argent Fanatic", "=ds=#s9#, #a2#" };
+ { 7, 47178, "", "=q4=Carapace of Grim Visions", "=ds=#s5#, #a3#" };
+ { 8, 47211, "", "=q4=Wristguards of Ceaseless Regret", "=ds=#s8#, #a3#" };
+ { 9, 47176, "", "=q4=Breastplate of the Imperial Joust", "=ds=#s5#, #a4#" };
+ { 10, 47212, "", "=q4=Mercy's Hold", "=ds=#s9#, #a4#" };
+ { 11, 47219, "", "=q4=Brilliant Hailstone Amulet", "=ds=#s2#" };
+ { 12, 47213, "", "=q4=Abyssal Rune", "=ds=#s14#" };
+ { 13, 47214, "", "=q4=Banner of Victory", "=ds=#s14#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 47498, "", "=q4=Gloves of Dismal Fortune", "=ds=#s9#, #a2#" };
+ { 19, 47496, "", "=q4=Armbands of the Wary Lookout", "=ds=#s8#, #a2#" };
+ { 20, 47245, "", "=q4=Pauldrons of Concealed Loathing", "=ds=#s3#, #a3#" };
+ { 21, 47497, "", "=q4=Helm of the Crestfallen Challenger", "=ds=#s1#, #a4#" };
+ { 22, 47514, "", "=q4=Regal Aurous Shoulderplates", "=ds=#s3#, #a4#" };
+ { 23, 47510, "", "=q4=Trueheart Girdle", "=ds=#s10#, #a4#" };
+ { 24, 47495, "", "=q4=Legplates of Relentless Onslaught", "=ds=#s11#, #a4#" };
+ { 25, 47511, "", "=q4=Plated Greaves of Providence", "=ds=#s12#, #a4#" };
+ { 26, 47494, "", "=q4=Ancient Pendant of Arathor", "=ds=#s2#" };
+ { 27, 47512, "", "=q4=Sinner's Confession", "=ds=#s13#" };
+ { 28, 47500, "", "=q4=Peacekeeper Blade", "=ds=#h1#, #w10#" };
+ { 29, 47522, "", "=q4=Marrowstrike", "=ds=#w7#" };
+ { 30, 44990, "", "=q1=Champion's Seal", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Eadric the Pure"];
+ { 1, 0, "INV_Box_01", "=q6=#j1#", "" };
+ { 2, 47181, "", "=q4=Belt of the Churning Blaze", "=ds=#s10#, #a1#" };
+ { 3, 47185, "", "=q4=Leggings of the Haggard Apprentice", "=ds=#s11#, #a1#" };
+ { 4, 47210, "", "=q4=Mantle of Gnarled Overgrowth", "=ds=#s3#, #a2#" };
+ { 5, 47177, "", "=q4=Gloves of the Argent Fanatic", "=ds=#s9#, #a2#" };
+ { 6, 47202, "", "=q4=Leggings of Brazen Trespass", "=ds=#s11#, #a2#" };
+ { 7, 47178, "", "=q4=Carapace of Grim Visions", "=ds=#s5#, #a3#" };
+ { 8, 47176, "", "=q4=Breastplate of the Imperial Joust", "=ds=#s5#, #a4#" };
+ { 9, 47197, "", "=q4=Gauntlets of the Stouthearted Crusader", "=ds=#s9#, #a4#" };
+ { 10, 47201, "", "=q4=Boots of Heartfelt Repentance", "=ds=#s12#, #a4#" };
+ { 11, 47199, "", "=q4=Greaves of the Grand Paladin", "=ds=#s12#, #a4#" };
+ { 12, 47200, "", "=q4=Signet of Purity", "=ds=#s13#" };
+ { 13, 47213, "", "=q4=Abyssal Rune", "=ds=#s14#" };
+ { 16, 0, "INV_Box_01", "=q6=#j3#", "" };
+ { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 18, 47501, "", "=q4=Kurisu's Indecision", "=ds=#s4#" };
+ { 19, 47496, "", "=q4=Armbands of the Wary Lookout", "=ds=#s8#, #a2#" };
+ { 20, 47498, "", "=q4=Gloves of Dismal Fortune", "=ds=#s9#, #a2#" };
+ { 21, 47504, "", "=q4=Barkhide Treads", "=ds=#s12#, #a2#" };
+ { 22, 47497, "", "=q4=Helm of the Crestfallen Challenger", "=ds=#s1#, #a4#" };
+ { 23, 47502, "", "=q4=Majestic Silversmith Shoulderplates", "=ds=#s3#, #a4#" };
+ { 24, 47495, "", "=q4=Legplates of Relentless Onslaught", "=ds=#s11#, #a4#" };
+ { 25, 47503, "", "=q4=Legplates of the Argent Armistice", "=ds=#s11#, #a4#" };
+ { 26, 47494, "", "=q4=Ancient Pendant of Arathor", "=ds=#s2#" };
+ { 27, 47500, "", "=q4=Peacekeeper Blade", "=ds=#h1#, #w10#" };
+ { 28, 47509, "", "=q4=Mariel's Sorrow", "=ds=#h3#, #w6#" };
+ { 29, 47508, "", "=q4=Aledar's Battlestar", "=ds=#h1#, #w6#" };
+ { 30, 44990, "", "=q1=Champion's Seal", "=ds=#e15#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["The Black Knight"];
+ { 1, 47232, "", "=q4=Drape of the Undefeated", "=ds=#s4#" };
+ { 2, 47226, "", "=q4=Mantle of Inconsolable Fear", "=ds=#s3#, #a1#" };
+ { 3, 47230, "", "=q4=Handwraps of Surrendered Hope", "=ds=#s9#, #a1#" };
+ { 4, 47221, "", "=q4=Shoulderpads of the Infamous Knave", "=ds=#s3#, #a2#" };
+ { 5, 47231, "", "=q4=Belt of Merciless Cruelty", "=ds=#s10#, #a3#" };
+ { 6, 47228, "", "=q4=Leggings of the Bloodless Knight", "=ds=#s11#, #a3#" };
+ { 7, 47220, "", "=q4=Helm of the Violent Fray", "=ds=#s1#, #a4#" };
+ { 8, 47229, "", "=q4=Girdle of Arrogant Downfall", "=ds=#s10#, #a4#" };
+ { 9, 47227, "", "=q4=Girdle of the Pallid Knight", "=ds=#s10#, #a4#" };
+ { 16, 47222, "", "=q4=Uruka's Band of Zeal", "=ds=#s13#" };
+ { 17, 47215, "", "=q4=Tears of the Vanquished", "=ds=#s14#" };
+ { 18, 47216, "", "=q4=The Black Heart", "=ds=#s14#" };
+ };
+ {
+ Name = BabbleBoss["The Black Knight"] .. " (" .. AL["Heroic"] .. ")";
+ { 1, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 2, 47564, "", "=q4=Gaze of the Unknown", "=ds=#s1#, #a1#" };
+ { 3, 47527, "", "=q4=Embrace of Madness", "=ds=#s5#, #a1#" };
+ { 4, 47560, "", "=q4=Boots of the Crackling Flame", "=ds=#s12#, #a1#" };
+ { 5, 47529, "", "=q4=Mask of Distant Memory", "=ds=#s1#, #a2#" };
+ { 6, 47561, "", "=q4=Gloves of the Dark Exile", "=ds=#s9#, #a3#" };
+ { 7, 47563, "", "=q4=Girdle of the Dauntless Conqueror", "=ds=#s10#, #a3#" };
+ { 8, 47565, "", "=q4=Vambraces of Unholy Command", "=ds=#s8#, #a4#" };
+ { 9, 47567, "", "=q4=Gauntlets of Revelation", "=ds=#s9#, #a4#" };
+ { 10, 47562, "", "=q4=Symbol of Redemption", "=ds=#s2#" };
+ { 11, 47566, "", "=q4=The Warlord's Depravity", "=ds=#s2#" };
+ { 16, 47569, "", "=q4=Spectral Kris", "=ds=#h3#, #w4#" };
+ { 17, 49682, "", "=q4=Black Knight's Rondel", "=ds=#h1#, #w4#" };
+ { 18, 47568, "", "=q4=True-aim Long Rifle", "=ds=#w5#" };
+ { 20, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%" };
+ { 22, 44990, "", "=q1=Champion's Seal", "=ds=#e15#", "", "100%" };
+ };
+};
+
+-------------------------
+--- Vault of Archavon ---
+-------------------------
+
+AtlasLoot_Data["VaultofArchavon"] = {
+ Name = BabbleZone["Vault of Archavon"];
+ Type = "WrathRaid";
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 2, 39492, "", "=q4=Heroes' Frostfire Robe", "=ds=#s5#, #a1#" };
+ { 3, 39495, "", "=q4=Heroes' Frostfire Gloves", "=ds=#s9#, #a1#" };
+ { 4, 39493, "", "=q4=Heroes' Frostfire Leggings", "=ds=#s11#, #a1#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 7, 39515, "", "=q4=Heroes' Robe of Faith", "=ds=#s5#, #a1#" };
+ { 8, 39519, "", "=q4=Heroes' Gloves of Faith", "=ds=#s9#, #a1#" };
+ { 9, 39517, "", "=q4=Heroes' Leggings of Faith", "=ds=#s11#, #a1#" };
+ { 11, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 12, 39523, "", "=q4=Heroes' Raiments of Faith", "=ds=#s5#, #a1#" };
+ { 13, 39530, "", "=q4=Heroes' Handwraps of Faith", "=ds=#s9#, #a1#" };
+ { 14, 39528, "", "=q4=Heroes' Pants of Faith", "=ds=#s11#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 17, 41950, "", "=q4=Hateful Gladiator's Silk Raiment", "=ds=#s5#, #a1#" };
+ { 18, 41969, "", "=q4=Hateful Gladiator's Silk Handguards", "=ds=#s9#, #a1#" };
+ { 19, 41957, "", "=q4=Hateful Gladiator's Silk Trousers", "=ds=#s11#, #a1#" };
+ { 21, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 22, 41857, "", "=q4=Hateful Gladiator's Mooncloth Robe", "=ds=#s5#, #a1#" };
+ { 23, 41872, "", "=q4=Hateful Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#" };
+ { 24, 41862, "", "=q4=Hateful Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 27, 41919, "", "=q4=Hateful Gladiator's Satin Robe", "=ds=#s5#, #a1#" };
+ { 28, 41938, "", "=q4=Hateful Gladiator's Satin Gloves", "=ds=#s9#, #a1#" };
+ { 29, 41925, "", "=q4=Hateful Gladiator's Satin Leggings", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 2, 39497, "", "=q4=Heroes' Plagueheart Robe", "=ds=#s5#, #a1#" };
+ { 3, 39500, "", "=q4=Heroes' Plagueheart Gloves", "=ds=#s9#, #a1#" };
+ { 4, 39498, "", "=q4=Heroes' Plagueheart Leggings", "=ds=#s11#, #a1#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 7, 39547, "", "=q4=Heroes' Dreamwalker Vestments", "=ds=#s5#, #a2#" };
+ { 8, 39544, "", "=q4=Heroes' Dreamwalker Gloves", "=ds=#s9#, #a2#" };
+ { 9, 39546, "", "=q4=Heroes' Dreamwalker Trousers", "=ds=#s11#, #a2#" };
+ { 11, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 12, 39554, "", "=q4=Heroes' Dreamwalker Raiments", "=ds=#s5#, #a2#" };
+ { 13, 39557, "", "=q4=Heroes' Dreamwalker Handgrips", "=ds=#s9#, #a2#" };
+ { 14, 39555, "", "=q4=Heroes' Dreamwalker Legguards", "=ds=#s11#, #a2#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 17, 42001, "", "=q4=Hateful Gladiator's Felweave Raiment", "=ds=#s5#, #a1#" };
+ { 18, 42015, "", "=q4=Hateful Gladiator's Felweave Handguards", "=ds=#s9#, #a1#" };
+ { 19, 42003, "", "=q4=Hateful Gladiator's Felweave Trousers", "=ds=#s11#, #a1#" };
+ { 21, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 22, 41314, "", "=q4=Hateful Gladiator's Wyrmhide Robes", "=ds=#s5#, #a2#" };
+ { 23, 41291, "", "=q4=Hateful Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#" };
+ { 24, 41302, "", "=q4=Hateful Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 27, 41659, "", "=q4=Hateful Gladiator's Dragonhide Robes", "=ds=#s5#, #a2#" };
+ { 28, 41771, "", "=q4=Hateful Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#" };
+ { 29, 41665, "", "=q4=Hateful Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 2, 39538, "", "=q4=Heroes' Dreamwalker Robe", "=ds=#s5#, #a2#" };
+ { 3, 39543, "", "=q4=Heroes' Dreamwalker Handguards", "=ds=#s9#, #a2#" };
+ { 4, 39539, "", "=q4=Heroes' Dreamwalker Leggings", "=ds=#s11#, #a2#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 7, 39558, "", "=q4=Heroes' Bonescythe Breastplate", "=ds=#s5#, #a2#" };
+ { 8, 39560, "", "=q4=Heroes' Bonescythe Gauntlets", "=ds=#s9#, #a2#" };
+ { 9, 39564, "", "=q4=Heroes' Bonescythe Legplates", "=ds=#s11#, #a2#" };
+ { 11, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 12, 39579, "", "=q4=Heroes' Crypstalker Tunic", "=ds=#s5#, #a3#" };
+ { 13, 39582, "", "=q4=Heroes' Crypstalker Handguards", "=ds=#s9#, #a3#" };
+ { 14, 39580, "", "=q4=Heroes' Crypstalker Legguards", "=ds=#s11#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 17, 41308, "", "=q4=Hateful Gladiator's Kodohide Robes", "=ds=#s5#, #a2#" };
+ { 18, 41284, "", "=q4=Hateful Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#" };
+ { 19, 41296, "", "=q4=Hateful Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#" };
+ { 21, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 22, 41648, "", "=q4=Hateful Gladiator's Leather Tunic", "=ds=#s5#, #a2#" };
+ { 23, 41765, "", "=q4=Hateful Gladiator's Leather Gloves", "=ds=#s9#, #a2#" };
+ { 24, 41653, "", "=q4=Hateful Gladiator's Leather Legguards", "=ds=#s11#, #a2#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 27, 41085, "", "=q4=Hateful Gladiator's Chain Armor", "=ds=#s5#, #a3#" };
+ { 28, 41141, "", "=q4=Hateful Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#" };
+ { 29, 41203, "", "=q4=Hateful Gladiator's Chain Leggings", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 2, 39592, "", "=q4=Heroes' Earthshatter Hauberk", "=ds=#s5#, #a3#" };
+ { 3, 39593, "", "=q4=Heroes' Earthshatter Gloves", "=ds=#s9#, #a3#" };
+ { 4, 39595, "", "=q4=Heroes' Earthshatter Kilt", "=ds=#s11#, #a3#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 7, 39597, "", "=q4=Heroes' Earthshatter Chestguard", "=ds=#s5#, #a3#" };
+ { 8, 39601, "", "=q4=Heroes' Earthshatter Grips", "=ds=#s9#, #a3#" };
+ { 9, 39603, "", "=q4=Heroes' Earthshatter War-Kilt", "=ds=#s11#, #a3#" };
+ { 11, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 12, 39588, "", "=q4=Heroes' Earthshatter Tunic", "=ds=#s5#, #a3#" };
+ { 13, 39591, "", "=q4=Heroes' Earthshatter Handguards", "=ds=#s9#, #a3#" };
+ { 14, 39589, "", "=q4=Heroes' Earthshatter Legguards", "=ds=#s11#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 17, 40989, "", "=q4=Hateful Gladiator's Mail Armor", "=ds=#s5#, #a3#" };
+ { 18, 41005, "", "=q4=Hateful Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#" };
+ { 19, 41031, "", "=q4=Hateful Gladiator's Mail Leggings", "=ds=#s11#, #a3#" };
+ { 21, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 22, 41079, "", "=q4=Hateful Gladiator's Linked Armor", "=ds=#s5#, #a3#" };
+ { 23, 41135, "", "=q4=Hateful Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#" };
+ { 24, 41162, "", "=q4=Hateful Gladiator's Linked Leggings", "=ds=#s11#, #a3#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 27, 40988, "", "=q4=Hateful Gladiator's Ringmail Armor", "=ds=#s5#, #a3#" };
+ { 28, 40999, "", "=q4=Hateful Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#" };
+ { 29, 41025, "", "=q4=Hateful Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 2, 39617, "", "=q4=Heroes' Scourgeborne Battleplate", "=ds=#s5#, #a4#" };
+ { 3, 39618, "", "=q4=Heroes' Scourgeborne Gauntlets", "=ds=#s9#, #a4#" };
+ { 4, 39620, "", "=q4=Heroes' Scourgeborne Legplates", "=ds=#s11#, #a4#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["Tanking"] };
+ { 7, 39623, "", "=q4=Heroes' Scourgeborne Chestguard", "=ds=#s5#, #a4#" };
+ { 8, 39624, "", "=q4=Heroes' Scourgeborne Handguards", "=ds=#s9#, #a4#" };
+ { 9, 39626, "", "=q4=Heroes' Scourgeborne Legguards", "=ds=#s11#, #a4#" };
+ { 11, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 12, 39629, "", "=q4=Heroes' Redemption Tunic", "=ds=#s5#, #a4#" };
+ { 13, 39632, "", "=q4=Heroes' Redemption Gloves", "=ds=#s9#, #a4#" };
+ { 14, 39630, "", "=q4=Heroes' Redemption Greaves", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 17, 40781, "", "=q4=Hateful Gladiator's Dreadplate Chestpiece", "=ds=#s5#, #a4#" };
+ { 18, 40803, "", "=q4=Hateful Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#" };
+ { 19, 40841, "", "=q4=Hateful Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 27, 40904, "", "=q4=Hateful Gladiator's Ornamented Chestguard", "=ds=#s5#, #a4#" };
+ { 28, 40925, "", "=q4=Hateful Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#" };
+ { 29, 40937, "", "=q4=Hateful Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 2, 39633, "", "=q4=Heroes' Redemption Chestpiece", "=ds=#s5#, #a4#" };
+ { 3, 39634, "", "=q4=Heroes' Redemption Gauntlets", "=ds=#s9#, #a4#" };
+ { 4, 39636, "", "=q4=Heroes' Redemption Legplates", "=ds=#s11#, #a4#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Protection"] };
+ { 7, 39638, "", "=q4=Heroes' Redemption Breastplate", "=ds=#s5#, #a4#" };
+ { 8, 39639, "", "=q4=Heroes' Redemption Handguards", "=ds=#s9#, #a4#" };
+ { 9, 39641, "", "=q4=Heroes' Redemption Legguards", "=ds=#s11#, #a4#" };
+ { 11, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 12, 39606, "", "=q4=Heroes' Dreadnaught Battleplate", "=ds=#s5#, #a4#" };
+ { 13, 39609, "", "=q4=Heroes' Dreadnaught Gauntlets", "=ds=#s9#, #a4#" };
+ { 14, 39607, "", "=q4=Heroes' Dreadnaught Legplates", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 17, 40782, "", "=q4=Hateful Gladiator's Scaled Chestpiece", "=ds=#s5#, #a4#" };
+ { 18, 40802, "", "=q4=Hateful Gladiator's Scaled Gauntlets", "=ds=#s11#, #a4#" };
+ { 19, 40842, "", "=q4=Hateful Gladiator's Scaled Legguards", "=ds=#s11#, #a4#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 27, 40783, "", "=q4=Hateful Gladiator's Plate Chestpiece", "=ds=#s5#, #a4#" };
+ { 28, 40801, "", "=q4=Hateful Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#" };
+ { 29, 40840, "", "=q4=Hateful Gladiator's Plate Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["Protection"] };
+ { 2, 39611, "", "=q4=Heroes' Dreadnaught Breastplate", "=ds=#s5#, #a4#" };
+ { 3, 39622, "", "=q4=Heroes' Dreadnaught Handguards", "=ds=#s9#, #a4#" };
+ { 4, 39612, "", "=q4=Heroes' Dreadnaught Legguards", "=ds=#s11#, #a4#" };
+ { 6, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 7, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", "" };
+ { 8, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", "" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 2, 40418, "", "=q4=Valorous Frostfire Robe", "=ds=#s5#, #a1#" };
+ { 3, 40415, "", "=q4=Valorous Frostfire Gloves", "=ds=#s9#, #a1#" };
+ { 4, 40417, "", "=q4=Valorous Frostfire Leggings", "=ds=#s11#, #a1#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 7, 40449, "", "=q4=Valorous Robe of Faith", "=ds=#s5#, #a1#" };
+ { 8, 40445, "", "=q4=Valorous Gloves of Faith", "=ds=#s9#, #a1#" };
+ { 9, 40448, "", "=q4=Valorous Leggings of Faith", "=ds=#s11#, #a1#" };
+ { 11, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 12, 40458, "", "=q4=Valorous Raiments of Faith", "=ds=#s5#, #a1#" };
+ { 13, 40454, "", "=q4=Valorous Handwraps of Faith", "=ds=#s9#, #a1#" };
+ { 14, 40457, "", "=q4=Valorous Pants of Faith", "=ds=#s11#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 17, 41951, "", "=q4=Deadly Gladiator's Silk Raiment", "=ds=#s5#, #a1#" };
+ { 18, 41970, "", "=q4=Deadly Gladiator's Silk Handguards", "=ds=#s9#, #a1#" };
+ { 19, 41958, "", "=q4=Deadly Gladiator's Silk Trousers", "=ds=#s11#, #a1#" };
+ { 21, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 22, 41858, "", "=q4=Deadly Gladiator's Mooncloth Robe", "=ds=#s5#, #a1#" };
+ { 23, 41873, "", "=q4=Deadly Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#" };
+ { 24, 41863, "", "=q4=Deadly Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 27, 41920, "", "=q4=Deadly Gladiator's Satin Robe", "=ds=#s5#, #a1#" };
+ { 28, 41939, "", "=q4=Deadly Gladiator's Satin Gloves", "=ds=#s9#, #a1#" };
+ { 29, 41926, "", "=q4=Deadly Gladiator's Satin Leggings", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 2, 40423, "", "=q4=Valorous Plagueheart Robe", "=ds=#s5#, #a1#" };
+ { 3, 40420, "", "=q4=Valorous Plagueheart Gloves", "=ds=#s9#, #a1#" };
+ { 4, 40422, "", "=q4=Valorous Plagueheart Leggings", "=ds=#s11#, #a1#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 7, 40469, "", "=q4=Valorous Dreamwalker Vestments", "=ds=#s5#, #a2#" };
+ { 8, 40466, "", "=q4=Valorous Dreamwalker Gloves", "=ds=#s9#, #a2#" };
+ { 9, 40468, "", "=q4=Valorous Dreamwalker Trousers", "=ds=#s11#, #a2#" };
+ { 11, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 12, 40471, "", "=q4=Valorous Dreamwalker Raiments", "=ds=#s5#, #a2#" };
+ { 13, 40472, "", "=q4=Valorous Dreamwalker Handgrips", "=ds=#s9#, #a2#" };
+ { 14, 40493, "", "=q4=Valorous Dreamwalker Legguards", "=ds=#s11#, #a2#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 17, 41997, "", "=q4=Deadly Gladiator's Felweave Raiment", "=ds=#s5#, #a1#" };
+ { 18, 42016, "", "=q4=Deadly Gladiator's Felweave Handguards", "=ds=#s9#, #a1#" };
+ { 19, 42004, "", "=q4=Deadly Gladiator's Felweave Trousers", "=ds=#s11#, #a1#" };
+ { 21, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 22, 41315, "", "=q4=Deadly Gladiator's Wyrmhide Robes", "=ds=#s5#, #a2#" };
+ { 23, 41292, "", "=q4=Deadly Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#" };
+ { 24, 41303, "", "=q4=Deadly Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 27, 41660, "", "=q4=Deadly Gladiator's Dragonhide Robes", "=ds=#s5#, #a2#" };
+ { 28, 41772, "", "=q4=Deadly Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#" };
+ { 29, 41666, "", "=q4=Deadly Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 2, 40463, "", "=q4=Valorous Dreamwalker Robe", "=ds=#s5#, #a2#" };
+ { 3, 40460, "", "=q4=Valorous Dreamwalker Handguards", "=ds=#s9#, #a2#" };
+ { 4, 40462, "", "=q4=Valorous Dreamwalker Leggings", "=ds=#s11#, #a2#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 7, 40495, "", "=q4=Valorous Bonescythe Breastplate", "=ds=#s5#, #a2#" };
+ { 8, 40496, "", "=q4=Valorous Bonescythe Gauntlets", "=ds=#s9#, #a2#" };
+ { 9, 40500, "", "=q4=Valorous Bonescythe Legplates", "=ds=#s11#, #a2#" };
+ { 11, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 12, 40503, "", "=q4=Valorous Crypstalker Tunic", "=ds=#s5#, #a3#" };
+ { 13, 40504, "", "=q4=Valorous Crypstalker Handguards", "=ds=#s9#, #a3#" };
+ { 14, 40506, "", "=q4=Valorous Crypstalker Legguards", "=ds=#s11#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 17, 41309, "", "=q4=Deadly Gladiator's Kodohide Robes", "=ds=#s5#, #a2#" };
+ { 18, 41286, "", "=q4=Deadly Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#" };
+ { 19, 41297, "", "=q4=Deadly Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#" };
+ { 21, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 22, 41649, "", "=q4=Deadly Gladiator's Leather Tunic", "=ds=#s5#, #a2#" };
+ { 23, 41766, "", "=q4=Deadly Gladiator's Leather Gloves", "=ds=#s9#, #a2#" };
+ { 24, 41654, "", "=q4=Deadly Gladiator's Leather Legguards", "=ds=#s11#, #a2#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 27, 41086, "", "=q4=Deadly Gladiator's Chain Armor", "=ds=#s5#, #a3#" };
+ { 28, 41142, "", "=q4=Deadly Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#" };
+ { 29, 41204, "", "=q4=Deadly Gladiator's Chain Leggings", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 2, 40514, "", "=q4=Valorous Earthshatter Hauberk", "=ds=#s5#, #a3#" };
+ { 3, 40515, "", "=q4=Valorous Earthshatter Gloves", "=ds=#s9#, #a3#" };
+ { 4, 40517, "", "=q4=Valorous Earthshatter Kilt", "=ds=#s11#, #a3#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 7, 40523, "", "=q4=Valorous Earthshatter Chestguard", "=ds=#s5#, #a3#" };
+ { 8, 40520, "", "=q4=Valorous Earthshatter Grips", "=ds=#s9#, #a3#" };
+ { 9, 40522, "", "=q4=Valorous Earthshatter War-Kilt", "=ds=#s11#, #a3#" };
+ { 11, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 12, 40508, "", "=q4=Valorous Earthshatter Tunic", "=ds=#s5#, #a3#" };
+ { 13, 40509, "", "=q4=Valorous Earthshatter Handguards", "=ds=#s9#, #a3#" };
+ { 14, 40512, "", "=q4=Valorous Earthshatter Legguards", "=ds=#s11#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 17, 40991, "", "=q4=Deadly Gladiator's Mail Armor", "=ds=#s5#, #a3#" };
+ { 18, 41006, "", "=q4=Deadly Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#" };
+ { 19, 41032, "", "=q4=Deadly Gladiator's Mail Leggings", "=ds=#s11#, #a3#" };
+ { 21, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 22, 41080, "", "=q4=Deadly Gladiator's Linked Armor", "=ds=#s5#, #a3#" };
+ { 23, 41136, "", "=q4=Deadly Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#" };
+ { 24, 41198, "", "=q4=Deadly Gladiator's Linked Leggings", "=ds=#s11#, #a3#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 27, 40990, "", "=q4=Deadly Gladiator's Ringmail Armor", "=ds=#s5#, #a3#" };
+ { 28, 41000, "", "=q4=Deadly Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#" };
+ { 29, 41026, "", "=q4=Deadly Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 2, 40550, "", "=q4=Valorous Scourgeborne Battleplate", "=ds=#s5#, #a4#" };
+ { 3, 40552, "", "=q4=Valorous Scourgeborne Gauntlets", "=ds=#s9#, #a4#" };
+ { 4, 40556, "", "=q4=Valorous Scourgeborne Legplates", "=ds=#s11#, #a4#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["Tanking"] };
+ { 7, 40559, "", "=q4=Valorous Scourgeborne Chestguard", "=ds=#s5#, #a4#" };
+ { 8, 40563, "", "=q4=Valorous Scourgeborne Handguards", "=ds=#s9#, #a4#" };
+ { 9, 40567, "", "=q4=Valorous Scourgeborne Legguards", "=ds=#s11#, #a4#" };
+ { 11, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 12, 40569, "", "=q4=Valorous Redemption Tunic", "=ds=#s5#, #a4#" };
+ { 13, 40570, "", "=q4=Valorous Redemption Gloves", "=ds=#s9#, #a4#" };
+ { 14, 40572, "", "=q4=Valorous Redemption Greaves", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 17, 40784, "", "=q4=Deadly Gladiator's Dreadplate Chestpiece", "=ds=#s5#, #a4#" };
+ { 18, 40806, "", "=q4=Deadly Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#" };
+ { 19, 40845, "", "=q4=Deadly Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 27, 40905, "", "=q4=Deadly Gladiator's Ornamented Chestguard", "=ds=#s5#, #a4#" };
+ { 28, 40926, "", "=q4=Deadly Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#" };
+ { 29, 40938, "", "=q4=Deadly Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 2, 40574, "", "=q4=Valorous Redemption Chestpiece", "=ds=#s5#, #a4#" };
+ { 3, 40575, "", "=q4=Valorous Redemption Gauntlets", "=ds=#s9#, #a4#" };
+ { 4, 40577, "", "=q4=Valorous Redemption Legplates", "=ds=#s11#, #a4#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Protection"] };
+ { 7, 40579, "", "=q4=Valorous Redemption Breastplate", "=ds=#s5#, #a4#" };
+ { 8, 40580, "", "=q4=Valorous Redemption Handguards", "=ds=#s9#, #a4#" };
+ { 9, 40583, "", "=q4=Valorous Redemption Legguards", "=ds=#s11#, #a4#" };
+ { 11, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 12, 40525, "", "=q4=Valorous Dreadnaught Battleplate", "=ds=#s5#, #a4#" };
+ { 13, 40527, "", "=q4=Valorous Dreadnaught Gauntlets", "=ds=#s9#, #a4#" };
+ { 14, 40529, "", "=q4=Valorous Dreadnaught Legplates", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 17, 40785, "", "=q4=Deadly Gladiator's Scaled Chestpiece", "=ds=#s5#, #a4#" };
+ { 18, 40805, "", "=q4=Deadly Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#" };
+ { 19, 40846, "", "=q4=Deadly Gladiator's Scaled Legguards", "=ds=#s11#, #a4#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 27, 40786, "", "=q4=Deadly Gladiator's Plate Chestpiece", "=ds=#s5#, #a4#" };
+ { 28, 40804, "", "=q4=Deadly Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#" };
+ { 29, 40844, "", "=q4=Deadly Gladiator's Plate Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Archavon the Stone Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["Protection"] };
+ { 2, 40544, "", "=q4=Valorous Dreadnaught Breastplate", "=ds=#s5#, #a4#" };
+ { 3, 40545, "", "=q4=Valorous Dreadnaught Handguards", "=ds=#s9#, #a4#" };
+ { 4, 40547, "", "=q4=Valorous Dreadnaught Legguards", "=ds=#s11#, #a4#" };
+ { 6, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 7, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", "" };
+ { 8, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", "" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 2, 46131, "", "=q4=Valorous Kirin'dor Gauntlets", "=ds=#s9#, #a1#" };
+ { 3, 45367, "", "=q4=Valorous Kirin'dor Leggings", "=ds=#s11#, #a1#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 6, 45387, "", "=q4=Valorous Gloves of Sanctification", "=ds=#s9#, #a1#" };
+ { 7, 45388, "", "=q4=Valorous Leggings of Sanctification", "=ds=#s11#, #a1#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 10, 45392, "", "=q4=Valorous Handwraps of Sanctification", "=ds=#s9#, #a1#" };
+ { 11, 45394, "", "=q4=Valorous Pants of Sanctification", "=ds=#s11#, #a1#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 14, 45419, "", "=q4=Valorous Deathbringer Gloves", "=ds=#s9#, #a1#" };
+ { 15, 45420, "", "=q4=Valorous Deathbringer Leggings", "=ds=#s11#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 17, 41970, "", "=q4=Deadly Gladiator's Silk Handguards", "=ds=#s9#, #a1#" };
+ { 18, 41958, "", "=q4=Deadly Gladiator's Silk Trousers", "=ds=#s11#, #a1#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 21, 41873, "", "=q4=Deadly Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#" };
+ { 22, 41863, "", "=q4=Deadly Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 25, 41939, "", "=q4=Deadly Gladiator's Satin Gloves", "=ds=#s9#, #a1#" };
+ { 26, 41926, "", "=q4=Deadly Gladiator's Satin Leggings", "=ds=#s11#, #a1#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 29, 42016, "", "=q4=Deadly Gladiator's Felweave Handguards", "=ds=#s9#, #a1#" };
+ { 30, 42004, "", "=q4=Deadly Gladiator's Felweave Trousers", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 2, 45351, "", "=q4=Valorous Nightsong Gloves", "=ds=#s9#, #a2#" };
+ { 3, 45353, "", "=q4=Valorous Nightsong Trousers", "=ds=#s11#, #a2#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 6, 45355, "", "=q4=Valorous Nightsong Handgrips", "=ds=#s9#, #a2#" };
+ { 7, 45357, "", "=q4=Valorous Nightsong Legguards", "=ds=#s11#, #a2#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 10, 45345, "", "=q4=Valorous Nightsong Handguards", "=ds=#s9#, #a2#" };
+ { 11, 45347, "", "=q4=Valorous Nightsong Leggings", "=ds=#s11#, #a2#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 14, 45397, "", "=q4=Valorous Terrorblade Gauntlets", "=ds=#s9#, #a2#" };
+ { 15, 45399, "", "=q4=Valorous Terrorblade Legplates", "=ds=#s11#, #a2#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 17, 41292, "", "=q4=Deadly Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#" };
+ { 18, 41303, "", "=q4=Deadly Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 21, 41772, "", "=q4=Deadly Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#" };
+ { 22, 41666, "", "=q4=Deadly Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 25, 41286, "", "=q4=Deadly Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#" };
+ { 26, 41297, "", "=q4=Deadly Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 29, 41766, "", "=q4=Deadly Gladiator's Leather Gloves", "=ds=#s9#, #a2#" };
+ { 30, 41654, "", "=q4=Deadly Gladiator's Leather Legguards", "=ds=#s11#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 2, 45360, "", "=q4=Valorous Scourgestalker Handguards", "=ds=#s9#, #a3#" };
+ { 3, 45362, "", "=q4=Valorous Scourgestalker Legguards", "=ds=#s11#, #a3#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 6, 45406, "", "=q4=Valorous Worldbreaker Gloves", "=ds=#s9#, #a3#" };
+ { 7, 45409, "", "=q4=Valorous Worldbreaker Kilt", "=ds=#s11#, #a3#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 10, 45414, "", "=q4=Valorous Worldbreaker Grips", "=ds=#s9#, #a3#" };
+ { 11, 45416, "", "=q4=Valorous Worldbreaker War-Kilt", "=ds=#s11#, #a3#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 14, 45401, "", "=q4=Valorous Worldbreaker Handguards", "=ds=#s9#, #a3#" };
+ { 15, 45403, "", "=q4=Valorous Worldbreaker Legguards", "=ds=#s11#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 17, 41142, "", "=q4=Deadly Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#" };
+ { 18, 41204, "", "=q4=Deadly Gladiator's Chain Leggings", "=ds=#s11#, #a3#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 21, 41006, "", "=q4=Deadly Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#" };
+ { 22, 41032, "", "=q4=Deadly Gladiator's Mail Leggings", "=ds=#s11#, #a3#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 25, 41136, "", "=q4=Deadly Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#" };
+ { 26, 41198, "", "=q4=Deadly Gladiator's Linked Leggings", "=ds=#s11#, #a3#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 29, 41000, "", "=q4=Deadly Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#" };
+ { 30, 41026, "", "=q4=Deadly Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 2, 45341, "", "=q4=Valorous Darkruned Gauntlets", "=ds=#s9#, #a4#" };
+ { 3, 45343, "", "=q4=Valorous Darkruned Legplates", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["Tanking"] };
+ { 6, 45337, "", "=q4=Valorous Darkruned Handguards", "=ds=#s9#, #a4#" };
+ { 7, 45338, "", "=q4=Valorous Darkruned Legguards", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 10, 45370, "", "=q4=Valorous Aegis Gloves", "=ds=#s9#, #a4#" };
+ { 11, 45371, "", "=q4=Valorous Aegis Greaves", "=ds=#s11#, #a4#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 14, 45376, "", "=q4=Valorous Aegis Gauntlets", "=ds=#s9#, #a4#" };
+ { 15, 45379, "", "=q4=Valorous Aegis Legplates", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 17, 40806, "", "=q4=Deadly Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#" };
+ { 18, 40845, "", "=q4=Deadly Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 25, 40926, "", "=q4=Deadly Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#" };
+ { 26, 40938, "", "=q4=Deadly Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 29, 40805, "", "=q4=Deadly Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#" };
+ { 30, 40846, "", "=q4=Deadly Gladiator's Scaled Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Protection"] };
+ { 2, 45383, "", "=q4=Valorous Aegis Handguards", "=ds=#s9#, #a4#" };
+ { 3, 45384, "", "=q4=Valorous Aegis Legguards", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 6, 45430, "", "=q4=Valorous Siegebreaker Gauntlets", "=ds=#s9#, #a4#" };
+ { 7, 45432, "", "=q4=Valorous Siegebreaker Legplates", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["Protection"] };
+ { 10, 45426, "", "=q4=Valorous Siegebreaker Handguards", "=ds=#s9#, #a4#" };
+ { 11, 45427, "", "=q4=Valorous Siegebreaker Legguards", "=ds=#s11#, #a4#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 21, 40804, "", "=q4=Deadly Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#" };
+ { 22, 40844, "", "=q4=Deadly Gladiator's Plate Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Cloth"] };
+ { 2, 41908, "", "=q4=Deadly Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#" };
+ { 3, 41897, "", "=q4=Deadly Gladiator's Cord of Dominance", "=ds=#s10#, #a1#" };
+ { 4, 41902, "", "=q4=Deadly Gladiator's Treads of Dominance", "=ds=#s12#, #a1#" };
+ { 6, 41892, "", "=q4=Deadly Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#" };
+ { 7, 41880, "", "=q4=Deadly Gladiator's Cord of Salvation", "=ds=#s10#, #a1#" };
+ { 8, 41884, "", "=q4=Deadly Gladiator's Treads of Salvation", "=ds=#s12#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Leather"] };
+ { 17, 41639, "", "=q4=Deadly Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#" };
+ { 18, 41629, "", "=q4=Deadly Gladiator's Belt of Dominance", "=ds=#s10#, #a2#" };
+ { 19, 41634, "", "=q4=Deadly Gladiator's Boots of Dominance", "=ds=#s12#, #a2#" };
+ { 21, 41624, "", "=q4=Deadly Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#" };
+ { 22, 41616, "", "=q4=Deadly Gladiator's Belt of Salvation", "=ds=#s10#, #a2#" };
+ { 23, 41620, "", "=q4=Deadly Gladiator's Boots of Salvation", "=ds=#s12#, #a2#" };
+ { 25, 41839, "", "=q4=Deadly Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#" };
+ { 26, 41831, "", "=q4=Deadly Gladiator's Belt of Triumph", "=ds=#s10#, #a2#" };
+ { 27, 41835, "", "=q4=Deadly Gladiator's Boots of Triumph", "=ds=#s12#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Mail"] };
+ { 2, 41064, "", "=q4=Deadly Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#" };
+ { 3, 41069, "", "=q4=Deadly Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#" };
+ { 4, 41074, "", "=q4=Deadly Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#" };
+ { 6, 41059, "", "=q4=Deadly Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#" };
+ { 7, 41048, "", "=q4=Deadly Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#" };
+ { 8, 41054, "", "=q4=Deadly Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#" };
+ { 10, 41224, "", "=q4=Deadly Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#" };
+ { 11, 41234, "", "=q4=Deadly Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#" };
+ { 12, 41229, "", "=q4=Deadly Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Plate"] };
+ { 17, 40982, "", "=q4=Deadly Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#" };
+ { 18, 40974, "", "=q4=Deadly Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#" };
+ { 19, 40975, "", "=q4=Deadly Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#" };
+ { 21, 40888, "", "=q4=Deadly Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#" };
+ { 22, 40879, "", "=q4=Deadly Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#" };
+ { 23, 40880, "", "=q4=Deadly Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Back"] };
+ { 2, 42064, "", "=q4=Deadly Gladiator's Cloak of Ascendancy", "=ds=#s4#" };
+ { 3, 42066, "", "=q4=Deadly Gladiator's Cloak of Deliverance", "=ds=#s4#" };
+ { 4, 42062, "", "=q4=Deadly Gladiator's Cloak of Dominance", "=ds=#s4#" };
+ { 5, 42065, "", "=q4=Deadly Gladiator's Cloak of Salvation", "=ds=#s4#" };
+ { 6, 42063, "", "=q4=Deadly Gladiator's Cloak of Subjugation", "=ds=#s4#" };
+ { 7, 42067, "", "=q4=Deadly Gladiator's Cloak of Triumph", "=ds=#s4#" };
+ { 8, 42068, "", "=q4=Deadly Gladiator's Cloak of Victory", "=ds=#s4#" };
+ { 11, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", "" };
+ { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", "" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Neck"] };
+ { 17, 42030, "", "=q4=Deadly Gladiator's Pendant of Ascendancy", "=ds=#s2#" };
+ { 18, 42032, "", "=q4=Deadly Gladiator's Pendant of Deliverance", "=ds=#s2#" };
+ { 19, 42029, "", "=q4=Deadly Gladiator's Pendant of Dominance", "=ds=#s2#" };
+ { 20, 42033, "", "=q4=Deadly Gladiator's Pendant of Salvation", "=ds=#s2#" };
+ { 21, 42031, "", "=q4=Deadly Gladiator's Pendant of Subjugation", "=ds=#s2#" };
+ { 22, 42027, "", "=q4=Deadly Gladiator's Pendant of Triumph", "=ds=#s2#" };
+ { 23, 42028, "", "=q4=Deadly Gladiator's Pendant of Victory", "=ds=#s2#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Ring"] };
+ { 27, 42114, "", "=q4=Deadly Gladiator's Band of Ascendancy", "=ds=#s13#" };
+ { 28, 42115, "", "=q4=Deadly Gladiator's Band of Victory", "=ds=#s13#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 2, 46132, "", "=q4=Conqueror's Kirin'dor Gauntlets", "=ds=#s9#, #a1#" };
+ { 3, 46133, "", "=q4=Conqueror's Kirin'dor Leggings", "=ds=#s11#, #a1#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 6, 46188, "", "=q4=Conqueror's Gloves of Sanctification", "=ds=#s9#, #a1#" };
+ { 7, 46195, "", "=q4=Conqueror's Leggings of Sanctification", "=ds=#s11#, #a1#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 10, 46163, "", "=q4=Conqueror's Handwraps of Sanctification", "=ds=#s9#, #a1#" };
+ { 11, 46170, "", "=q4=Conqueror's Pants of Sanctification", "=ds=#s11#, #a1#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 14, 46135, "", "=q4=Conqueror's Deathbringer Gloves", "=ds=#s9#, #a1#" };
+ { 15, 46139, "", "=q4=Conqueror's Deathbringer Leggings", "=ds=#s11#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 17, 41971, "", "=q4=Furious Gladiator's Silk Handguards", "=ds=#s9#, #a1#" };
+ { 18, 41959, "", "=q4=Furious Gladiator's Silk Trousers", "=ds=#s11#, #a1#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 21, 41874, "", "=q4=Furious Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#" };
+ { 22, 41864, "", "=q4=Furious Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 25, 41940, "", "=q4=Furious Gladiator's Satin Gloves", "=ds=#s9#, #a1#" };
+ { 26, 41927, "", "=q4=Furious Gladiator's Satin Leggings", "=ds=#s11#, #a1#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 29, 42017, "", "=q4=Furious Gladiator's Felweave Handguards", "=ds=#s9#, #a1#" };
+ { 30, 42005, "", "=q4=Furious Gladiator's Felweave Trousers", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 2, 46189, "", "=q4=Conqueror's Nightsong Gloves", "=ds=#s9#, #a2#" };
+ { 3, 46192, "", "=q4=Conqueror's Nightsong Trousers", "=ds=#s11#, #a2#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 6, 46158, "", "=q4=Conqueror's Nightsong Handgrips", "=ds=#s9#, #a2#" };
+ { 7, 46160, "", "=q4=Conqueror's Nightsong Legguards", "=ds=#s11#, #a2#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 10, 46183, "", "=q4=Conqueror's Nightsong Handguards", "=ds=#s9#, #a2#" };
+ { 11, 46185, "", "=q4=Conqueror's Nightsong Leggings", "=ds=#s11#, #a2#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 14, 46124, "", "=q4=Conqueror's Terrorblade Gauntlets", "=ds=#s9#, #a2#" };
+ { 15, 46126, "", "=q4=Conqueror's Terrorblade Legplates", "=ds=#s11#, #a2#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 17, 41293, "", "=q4=Furious Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#" };
+ { 18, 41304, "", "=q4=Furious Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 21, 41773, "", "=q4=Furious Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#" };
+ { 22, 41667, "", "=q4=Furious Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 25, 41287, "", "=q4=Furious Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#" };
+ { 26, 41298, "", "=q4=Furious Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 29, 41767, "", "=q4=Furious Gladiator's Leather Gloves", "=ds=#s9#, #a2#" };
+ { 30, 41655, "", "=q4=Furious Gladiator's Leather Legguards", "=ds=#s11#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 2, 46142, "", "=q4=Conqueror's Scourgestalker Handguards", "=ds=#s9#, #a3#" };
+ { 3, 46144, "", "=q4=Conqueror's Scourgestalker Legguards", "=ds=#s11#, #a3#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 6, 46207, "", "=q4=Conqueror's Worldbreaker Gloves", "=ds=#s9#, #a3#" };
+ { 7, 46210, "", "=q4=Conqueror's Worldbreaker Kilt", "=ds=#s11#, #a3#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 10, 46200, "", "=q4=Conqueror's Worldbreaker Grips", "=ds=#s9#, #a3#" };
+ { 11, 46208, "", "=q4=Conqueror's Worldbreaker War-Kilt", "=ds=#s11#, #a3#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 14, 46199, "", "=q4=Conqueror's Worldbreaker Handguards", "=ds=#s9#, #a3#" };
+ { 15, 46202, "", "=q4=Conqueror's Worldbreaker Legguards", "=ds=#s11#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 17, 41143, "", "=q4=Furious Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#" };
+ { 18, 41205, "", "=q4=Furious Gladiator's Chain Leggings", "=ds=#s11#, #a3#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 21, 41007, "", "=q4=Furious Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#" };
+ { 22, 41033, "", "=q4=Furious Gladiator's Mail Leggings", "=ds=#s11#, #a3#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 25, 41137, "", "=q4=Furious Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#" };
+ { 26, 41199, "", "=q4=Furious Gladiator's Linked Leggings", "=ds=#s11#, #a3#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 29, 41001, "", "=q4=Furious Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#" };
+ { 30, 41027, "", "=q4=Furious Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 2, 46113, "", "=q4=Conqueror's Darkruned Gauntlets", "=ds=#s9#, #a4#" };
+ { 3, 46116, "", "=q4=Conqueror's Darkruned Legplates", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["Tanking"] };
+ { 6, 46119, "", "=q4=Conqueror's Darkruned Handguards", "=ds=#s9#, #a4#" };
+ { 7, 46121, "", "=q4=Conqueror's Darkruned Legguards", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 10, 46179, "", "=q4=Conqueror's Aegis Gloves", "=ds=#s9#, #a4#" };
+ { 11, 46181, "", "=q4=Conqueror's Aegis Greaves", "=ds=#s11#, #a4#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 14, 46155, "", "=q4=Conqueror's Aegis Gauntlets", "=ds=#s9#, #a4#" };
+ { 15, 46153, "", "=q4=Conqueror's Aegis Legplates", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 17, 40809, "", "=q4=Furious Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#" };
+ { 18, 40848, "", "=q4=Furious Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 25, 40927, "", "=q4=Furious Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#" };
+ { 26, 40939, "", "=q4=Furious Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 29, 40808, "", "=q4=Furious Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#" };
+ { 30, 40849, "", "=q4=Furious Gladiator's Scaled Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Protection"] };
+ { 2, 46174, "", "=q4=Conqueror's Aegis Handguards", "=ds=#s9#, #a4#" };
+ { 3, 46176, "", "=q4=Conqueror's Aegis Legguards", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 6, 46148, "", "=q4=Conqueror's Siegebreaker Gauntlets", "=ds=#s9#, #a4#" };
+ { 7, 46150, "", "=q4=Conqueror's Siegebreaker Legplates", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["Protection"] };
+ { 10, 46164, "", "=q4=Conqueror's Siegebreaker Handguards", "=ds=#s9#, #a4#" };
+ { 11, 46169, "", "=q4=Conqueror's Siegebreaker Legguards", "=ds=#s11#, #a4#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 21, 40807, "", "=q4=Furious Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#" };
+ { 22, 40847, "", "=q4=Furious Gladiator's Plate Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Cloth"] };
+ { 2, 41909, "", "=q4=Furious Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#" };
+ { 3, 41898, "", "=q4=Furious Gladiator's Cord of Dominance", "=ds=#s10#, #a1#" };
+ { 4, 41903, "", "=q4=Furious Gladiator's Slippers of Dominance", "=ds=#s12#, #a1#" };
+ { 6, 41893, "", "=q4=Furious Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#" };
+ { 7, 41881, "", "=q4=Furious Gladiator's Cord of Salvation", "=ds=#s10#, #a1#" };
+ { 8, 41885, "", "=q4=Furious Gladiator's Slippers of Salvation", "=ds=#s12#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Leather"] };
+ { 17, 41640, "", "=q4=Furious Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#" };
+ { 18, 41630, "", "=q4=Furious Gladiator's Belt of Dominance", "=ds=#s10#, #a2#" };
+ { 19, 41635, "", "=q4=Furious Gladiator's Boots of Dominance", "=ds=#s12#, #a2#" };
+ { 21, 41625, "", "=q4=Furious Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#" };
+ { 22, 41617, "", "=q4=Furious Gladiator's Belt of Salvation", "=ds=#s10#, #a2#" };
+ { 23, 41621, "", "=q4=Furious Gladiator's Boots of Salvation", "=ds=#s12#, #a2#" };
+ { 25, 41840, "", "=q4=Furious Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#" };
+ { 26, 41832, "", "=q4=Furious Gladiator's Belt of Triumph", "=ds=#s10#, #a2#" };
+ { 27, 41836, "", "=q4=Furious Gladiator's Boots of Triumph", "=ds=#s12#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Mail"] };
+ { 2, 41065, "", "=q4=Furious Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#" };
+ { 3, 41070, "", "=q4=Furious Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#" };
+ { 4, 41075, "", "=q4=Furious Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#" };
+ { 6, 41060, "", "=q4=Furious Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#" };
+ { 7, 41051, "", "=q4=Furious Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#" };
+ { 8, 41055, "", "=q4=Furious Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#" };
+ { 10, 41225, "", "=q4=Furious Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#" };
+ { 11, 41235, "", "=q4=Furious Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#" };
+ { 12, 41230, "", "=q4=Furious Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Plate"] };
+ { 17, 40983, "", "=q4=Furious Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#" };
+ { 18, 40976, "", "=q4=Furious Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#" };
+ { 19, 40977, "", "=q4=Furious Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#" };
+ { 21, 40889, "", "=q4=Furious Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#" };
+ { 22, 40881, "", "=q4=Furious Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#" };
+ { 23, 40882, "", "=q4=Furious Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Emalon the Storm Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Back"] };
+ { 2, 42071, "", "=q4=Furious Gladiator's Cloak of Ascendancy", "=ds=#s4#" };
+ { 3, 42073, "", "=q4=Furious Gladiator's Cloak of Deliverance", "=ds=#s4#" };
+ { 4, 42069, "", "=q4=Furious Gladiator's Cloak of Dominance", "=ds=#s4#" };
+ { 5, 42072, "", "=q4=Furious Gladiator's Cloak of Salvation", "=ds=#s4#" };
+ { 6, 42070, "", "=q4=Furious Gladiator's Cloak of Subjugation", "=ds=#s4#" };
+ { 7, 42074, "", "=q4=Furious Gladiator's Cloak of Triumph", "=ds=#s4#" };
+ { 8, 42075, "", "=q4=Furious Gladiator's Cloak of Victory", "=ds=#s4#" };
+ { 11, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", "" };
+ { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", "" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Neck"] };
+ { 17, 42037, "", "=q4=Furious Gladiator's Pendant of Ascendancy", "=ds=#s2#" };
+ { 18, 42039, "", "=q4=Furious Gladiator's Pendant of Deliverance", "=ds=#s2#" };
+ { 19, 42036, "", "=q4=Furious Gladiator's Pendant of Dominance", "=ds=#s2#" };
+ { 20, 42040, "", "=q4=Furious Gladiator's Pendant of Salvation", "=ds=#s2#" };
+ { 21, 42038, "", "=q4=Furious Gladiator's Pendant of Subjugation", "=ds=#s2#" };
+ { 22, 46373, "", "=q4=Furious Gladiator's Pendant of Sundering", "=ds=#s2#" };
+ { 23, 42034, "", "=q4=Furious Gladiator's Pendant of Triumph", "=ds=#s2#" };
+ { 24, 42035, "", "=q4=Furious Gladiator's Pendant of Victory", "=ds=#s2#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Ring"] };
+ { 27, 42116, "", "=q4=Furious Gladiator's Band of Dominance", "=ds=#s13#" };
+ { 28, 42117, "", "=q4=Furious Gladiator's Band of Triumph", "=ds=#s13#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 2, 47752, "", "=q4=Khadgar's Gauntlets of Conquest", "=ds=#s9#, #a1#" };
+ { 3, 47750, "", "=q4=Khadgar's Leggings of Conquest", "=ds=#s11#, #a1#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 6, 47982, "", "=q4=Velen's Gloves of Conquest", "=ds=#s9#, #a1#" };
+ { 7, 47980, "", "=q4=Velen's Leggings of Conquest", "=ds=#s11#, #a1#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 10, 48072, "", "=q4=Velen's Handwraps of Conquest", "=ds=#s9#, #a1#" };
+ { 11, 48074, "", "=q4=Velen's Pants of Conquest", "=ds=#s11#, #a1#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 14, 47783, "", "=q4=Kel'Thuzad's Gloves of Conquest", "=ds=#s9#, #a1#" };
+ { 15, 47785, "", "=q4=Kel'Thuzad's Leggings of Conquest", "=ds=#s11#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 17, 41971, "", "=q4=Furious Gladiator's Silk Handguards", "=ds=#s9#, #a1#" };
+ { 18, 41959, "", "=q4=Furious Gladiator's Silk Trousers", "=ds=#s11#, #a1#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 21, 41874, "", "=q4=Furious Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#" };
+ { 22, 41864, "", "=q4=Furious Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 25, 41940, "", "=q4=Furious Gladiator's Satin Gloves", "=ds=#s9#, #a1#" };
+ { 26, 41927, "", "=q4=Furious Gladiator's Satin Leggings", "=ds=#s11#, #a1#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 29, 42017, "", "=q4=Furious Gladiator's Felweave Handguards", "=ds=#s9#, #a1#" };
+ { 30, 42005, "", "=q4=Furious Gladiator's Felweave Trousers", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 2, 48162, "", "=q4=Stormrage's Gloves of Conquest", "=ds=#s9#, #a2#" };
+ { 3, 48160, "", "=q4=Stormrage's Trousers of Conquest", "=ds=#s11#, #a2#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 6, 48213, "", "=q4=Stormrage's Handgrips of Conquest", "=ds=#s9#, #a2#" };
+ { 7, 48215, "", "=q4=Stormrage's Legguards of Conquest", "=ds=#s11#, #a2#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 10, 48132, "", "=q4=Stormrage's Handguards of Conquest", "=ds=#s9#, #a2#" };
+ { 11, 48130, "", "=q4=Stormrage's Leggings of Conquest", "=ds=#s11#, #a2#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 14, 48222, "", "=q4=VanCleef's Gauntlets of Conquest", "=ds=#s9#, #a2#" };
+ { 15, 48220, "", "=q4=VanCleef's Legplates of Conquest", "=ds=#s11#, #a2#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 17, 41293, "", "=q4=Furious Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#" };
+ { 18, 41304, "", "=q4=Furious Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 21, 41773, "", "=q4=Furious Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#" };
+ { 22, 41667, "", "=q4=Furious Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 25, 41287, "", "=q4=Furious Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#" };
+ { 26, 41298, "", "=q4=Furious Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 29, 41767, "", "=q4=Furious Gladiator's Leather Gloves", "=ds=#s9#, #a2#" };
+ { 30, 41655, "", "=q4=Furious Gladiator's Leather Legguards", "=ds=#s11#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 2, 48254, "", "=q4=Windrunner's Handguards of Conquest", "=ds=#s9#, #a3#" };
+ { 3, 48252, "", "=q4=Windrunner's Legguards of Conquest", "=ds=#s11#, #a3#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 6, 48312, "", "=q4=Nobundo's Gloves of Conquest", "=ds=#s9#, #a3#" };
+ { 7, 48314, "", "=q4=Nobundo's Kilt of Conquest", "=ds=#s11#, #a3#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 10, 48342, "", "=q4=Nobundo's Grips of Conquest", "=ds=#s9#, #a3#" };
+ { 11, 48344, "", "=q4=Nobundo's War-Kilt of Conquest", "=ds=#s11#, #a3#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 14, 48284, "", "=q4=Nobundo's Handguards of Conquest", "=ds=#s9#, #a3#" };
+ { 15, 48282, "", "=q4=Nobundo's Legguards of Conquest", "=ds=#s11#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 17, 41143, "", "=q4=Furious Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#" };
+ { 18, 41205, "", "=q4=Furious Gladiator's Chain Leggings", "=ds=#s11#, #a3#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 21, 41007, "", "=q4=Furious Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#" };
+ { 22, 41033, "", "=q4=Furious Gladiator's Mail Leggings", "=ds=#s11#, #a3#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 25, 41137, "", "=q4=Furious Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#" };
+ { 26, 41199, "", "=q4=Furious Gladiator's Linked Leggings", "=ds=#s11#, #a3#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 29, 41001, "", "=q4=Furious Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#" };
+ { 30, 41027, "", "=q4=Furious Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 2, 48480, "", "=q4=Thassarian's Gauntlets of Conquest", "=ds=#s9#, #a4#" };
+ { 3, 48476, "", "=q4=Thassarian's Legplates of Conquest", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["Tanking"] };
+ { 6, 48537, "", "=q4=Thassarian's Handguards of Conquest", "=ds=#s9#, #a4#" };
+ { 7, 48533, "", "=q4=Thassarian's Legguards of Conquest", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 10, 48574, "", "=q4=Turalyon's Gloves of Conquest", "=ds=#s9#, #a4#" };
+ { 11, 48568, "", "=q4=Turalyon's Greaves of Conquest", "=ds=#s11#, #a4#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 14, 48603, "", "=q4=Turalyon's Gauntlets of Conquest", "=ds=#s9#, #a4#" };
+ { 15, 48605, "", "=q4=Turalyon's Legplates of Conquest", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 17, 40809, "", "=q4=Furious Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#" };
+ { 18, 40848, "", "=q4=Furious Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 25, 40927, "", "=q4=Furious Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#" };
+ { 26, 40939, "", "=q4=Furious Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 29, 40808, "", "=q4=Furious Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#" };
+ { 30, 40849, "", "=q4=Furious Gladiator's Scaled Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Protection"] };
+ { 2, 48633, "", "=q4=Turalyon's Handguards of Conquest", "=ds=#s9#, #a4#" };
+ { 3, 48635, "", "=q4=Turalyon's Legguards of Conquest", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 6, 48375, "", "=q4=Wrynn's Gauntlets of Conquest", "=ds=#s9#, #a4#" };
+ { 7, 48373, "", "=q4=Wrynn's Legplates of Conquest", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["Protection"] };
+ { 10, 48449, "", "=q4=Wrynn's Handguards of Conquest", "=ds=#s9#, #a4#" };
+ { 11, 48445, "", "=q4=Wrynn's Legguards of Conquest", "=ds=#s11#, #a4#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 21, 40807, "", "=q4=Furious Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#" };
+ { 22, 40847, "", "=q4=Furious Gladiator's Plate Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Cloth"] };
+ { 2, 41909, "", "=q4=Furious Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#" };
+ { 3, 41898, "", "=q4=Furious Gladiator's Cord of Dominance", "=ds=#s10#, #a1#" };
+ { 4, 41903, "", "=q4=Furious Gladiator's Slippers of Dominance", "=ds=#s12#, #a1#" };
+ { 6, 41893, "", "=q4=Furious Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#" };
+ { 7, 41881, "", "=q4=Furious Gladiator's Cord of Salvation", "=ds=#s10#, #a1#" };
+ { 8, 41885, "", "=q4=Furious Gladiator's Slippers of Salvation", "=ds=#s12#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Leather"] };
+ { 17, 41640, "", "=q4=Furious Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#" };
+ { 18, 41630, "", "=q4=Furious Gladiator's Belt of Dominance", "=ds=#s10#, #a2#" };
+ { 19, 41635, "", "=q4=Furious Gladiator's Boots of Dominance", "=ds=#s12#, #a2#" };
+ { 21, 41625, "", "=q4=Furious Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#" };
+ { 22, 41617, "", "=q4=Furious Gladiator's Belt of Salvation", "=ds=#s10#, #a2#" };
+ { 23, 41621, "", "=q4=Furious Gladiator's Boots of Salvation", "=ds=#s12#, #a2#" };
+ { 25, 41840, "", "=q4=Furious Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#" };
+ { 26, 41832, "", "=q4=Furious Gladiator's Belt of Triumph", "=ds=#s10#, #a2#" };
+ { 27, 41836, "", "=q4=Furious Gladiator's Boots of Triumph", "=ds=#s12#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Mail"] };
+ { 2, 41065, "", "=q4=Furious Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#" };
+ { 3, 41070, "", "=q4=Furious Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#" };
+ { 4, 41075, "", "=q4=Furious Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#" };
+ { 6, 41060, "", "=q4=Furious Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#" };
+ { 7, 41051, "", "=q4=Furious Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#" };
+ { 8, 41055, "", "=q4=Furious Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#" };
+ { 10, 41225, "", "=q4=Furious Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#" };
+ { 11, 41235, "", "=q4=Furious Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#" };
+ { 12, 41230, "", "=q4=Furious Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Plate"] };
+ { 17, 40983, "", "=q4=Furious Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#" };
+ { 18, 40976, "", "=q4=Furious Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#" };
+ { 19, 40977, "", "=q4=Furious Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#" };
+ { 21, 40889, "", "=q4=Furious Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#" };
+ { 22, 40881, "", "=q4=Furious Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#" };
+ { 23, 40882, "", "=q4=Furious Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Back"] };
+ { 2, 42071, "", "=q4=Furious Gladiator's Cloak of Ascendancy", "=ds=#s4#" };
+ { 3, 42073, "", "=q4=Furious Gladiator's Cloak of Deliverance", "=ds=#s4#" };
+ { 4, 42069, "", "=q4=Furious Gladiator's Cloak of Dominance", "=ds=#s4#" };
+ { 5, 42072, "", "=q4=Furious Gladiator's Cloak of Salvation", "=ds=#s4#" };
+ { 6, 42070, "", "=q4=Furious Gladiator's Cloak of Subjugation", "=ds=#s4#" };
+ { 7, 42074, "", "=q4=Furious Gladiator's Cloak of Triumph", "=ds=#s4#" };
+ { 8, 42075, "", "=q4=Furious Gladiator's Cloak of Victory", "=ds=#s4#" };
+ { 11, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", "" };
+ { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", "" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Neck"] };
+ { 17, 42037, "", "=q4=Furious Gladiator's Pendant of Ascendancy", "=ds=#s2#" };
+ { 18, 42039, "", "=q4=Furious Gladiator's Pendant of Deliverance", "=ds=#s2#" };
+ { 19, 42036, "", "=q4=Furious Gladiator's Pendant of Dominance", "=ds=#s2#" };
+ { 20, 42040, "", "=q4=Furious Gladiator's Pendant of Salvation", "=ds=#s2#" };
+ { 21, 42038, "", "=q4=Furious Gladiator's Pendant of Subjugation", "=ds=#s2#" };
+ { 22, 46373, "", "=q4=Furious Gladiator's Pendant of Sundering", "=ds=#s2#" };
+ { 23, 42034, "", "=q4=Furious Gladiator's Pendant of Triumph", "=ds=#s2#" };
+ { 24, 42035, "", "=q4=Furious Gladiator's Pendant of Victory", "=ds=#s2#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Ring"] };
+ { 27, 42116, "", "=q4=Furious Gladiator's Band of Dominance", "=ds=#s13#" };
+ { 28, 42117, "", "=q4=Furious Gladiator's Band of Triumph", "=ds=#s13#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 2, 47753, "", "=q4=Khadgar's Gauntlets of Triumph", "=ds=#s9#, #a1#" };
+ { 3, 47755, "", "=q4=Khadgar's Leggings of Triumph", "=ds=#s11#, #a1#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 6, 47983, "", "=q4=Velen's Gloves of Triumph", "=ds=#s9#, #a1#" };
+ { 7, 47985, "", "=q4=Velen's Leggings of Triumph", "=ds=#s11#, #a1#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 10, 48077, "", "=q4=Velen's Handwraps of Triumph", "=ds=#s9#, #a1#" };
+ { 11, 48079, "", "=q4=Velen's Pants of Triumph", "=ds=#s11#, #a1#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 14, 47782, "", "=q4=Kel'Thuzad's Gloves of Triumph", "=ds=#s9#, #a1#" };
+ { 15, 47780, "", "=q4=Kel'Thuzad's Leggings of Triumph", "=ds=#s11#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 17, 41972, "", "=q4=Relentless Gladiator's Silk Handguards", "=ds=#s9#, #a1#" };
+ { 18, 41960, "", "=q4=Relentless Gladiator's Silk Trousers", "=ds=#s11#, #a1#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 21, 41875, "", "=q4=Relentless Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#" };
+ { 22, 41865, "", "=q4=Relentless Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 25, 41941, "", "=q4=Relentless Gladiator's Satin Gloves", "=ds=#s9#, #a1#" };
+ { 26, 41928, "", "=q4=Relentless Gladiator's Satin Leggings", "=ds=#s11#, #a1#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 29, 42018, "", "=q4=Relentless Gladiator's Felweave Handguards", "=ds=#s9#, #a1#" };
+ { 30, 42006, "", "=q4=Relentless Gladiator's Felweave Trousers", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 2, 48163, "", "=q4=Stormrage's Gloves of Triumph", "=ds=#s9#, #a2#" };
+ { 3, 48165, "", "=q4=Stormrage's Trousers of Triumph", "=ds=#s11#, #a2#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 6, 48212, "", "=q4=Stormrage's Handgrips of Triumph", "=ds=#s9#, #a2#" };
+ { 7, 48210, "", "=q4=Stormrage's Legguards of Triumph", "=ds=#s11#, #a2#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 10, 48133, "", "=q4=Stormrage's Handguards of Triumph", "=ds=#s9#, #a2#" };
+ { 11, 48135, "", "=q4=Stormrage's Leggings of Triumph", "=ds=#s11#, #a2#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 14, 48224, "", "=q4=VanCleef's Gauntlets of Triumph", "=ds=#s9#, #a2#" };
+ { 15, 48226, "", "=q4=VanCleef's Legplates of Triumph", "=ds=#s11#, #a2#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 17, 41294, "", "=q4=Relentless Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#" };
+ { 18, 41305, "", "=q4=Relentless Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 21, 41774, "", "=q4=Relentless Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#" };
+ { 22, 41668, "", "=q4=Relentless Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 25, 41288, "", "=q4=Relentless Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#" };
+ { 26, 41299, "", "=q4=Relentless Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 29, 41768, "", "=q4=Relentless Gladiator's Leather Gloves", "=ds=#s9#, #a2#" };
+ { 30, 41656, "", "=q4=Relentless Gladiator's Leather Legguards", "=ds=#s11#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 2, 48256, "", "=q4=Windrunner's Handguards of Triumph", "=ds=#s9#, #a3#" };
+ { 3, 48258, "", "=q4=Windrunner's Legguards of Triumph", "=ds=#s11#, #a3#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 6, 48317, "", "=q4=Nobundo's Gloves of Triumph", "=ds=#s9#, #a3#" };
+ { 7, 48319, "", "=q4=Nobundo's Kilt of Triumph", "=ds=#s11#, #a3#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 10, 48347, "", "=q4=Nobundo's Grips of Triumph", "=ds=#s9#, #a3#" };
+ { 11, 48349, "", "=q4=Nobundo's War-Kilt of Triumph", "=ds=#s11#, #a3#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 14, 48286, "", "=q4=Nobundo's Handguards of Triumph", "=ds=#s9#, #a3#" };
+ { 15, 48288, "", "=q4=Nobundo's Legguards of Triumph", "=ds=#s11#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 17, 41144, "", "=q4=Relentless Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#" };
+ { 18, 41206, "", "=q4=Relentless Gladiator's Chain Leggings", "=ds=#s11#, #a3#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 21, 41008, "", "=q4=Relentless Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#" };
+ { 22, 41034, "", "=q4=Relentless Gladiator's Mail Leggings", "=ds=#s11#, #a3#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 25, 41138, "", "=q4=Relentless Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#" };
+ { 26, 41200, "", "=q4=Relentless Gladiator's Linked Leggings", "=ds=#s11#, #a3#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 29, 41002, "", "=q4=Relentless Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#" };
+ { 30, 41028, "", "=q4=Relentless Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 2, 48482, "", "=q4=Thassarian's Gauntlets of Triumph", "=ds=#s9#, #a4#" };
+ { 3, 48484, "", "=q4=Thassarian's Legplates of Triumph", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["Tanking"] };
+ { 6, 48539, "", "=q4=Thassarian's Handguards of Triumph", "=ds=#s9#, #a4#" };
+ { 7, 48541, "", "=q4=Thassarian's Legguards of Triumph", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 10, 48576, "", "=q4=Turalyon's Gloves of Triumph", "=ds=#s9#, #a4#" };
+ { 11, 48578, "", "=q4=Turalyon's Greaves of Triumph", "=ds=#s11#, #a4#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 14, 48608, "", "=q4=Turalyon's Gauntlets of Triumph", "=ds=#s9#, #a4#" };
+ { 15, 48610, "", "=q4=Turalyon's Legplates of Triumph", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 17, 40811, "", "=q4=Relentless Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#" };
+ { 18, 40851, "", "=q4=Relentless Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 25, 40928, "", "=q4=Relentless Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#" };
+ { 26, 40940, "", "=q4=Relentless Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 29, 40812, "", "=q4=Relentless Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#" };
+ { 30, 40852, "", "=q4=Relentless Gladiator's Scaled Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Protection"] };
+ { 2, 48640, "", "=q4=Turalyon's Handguards of Triumph", "=ds=#s9#, #a4#" };
+ { 3, 48638, "", "=q4=Turalyon's Legguards of Triumph", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 6, 48377, "", "=q4=Wrynn's Gauntlets of Triumph", "=ds=#s9#, #a4#" };
+ { 7, 48379, "", "=q4=Wrynn's Legplates of Triumph", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["Protection"] };
+ { 10, 48452, "", "=q4=Wrynn's Handguards of Triumph", "=ds=#s9#, #a4#" };
+ { 11, 48446, "", "=q4=Wrynn's Legguards of Triumph", "=ds=#s11#, #a4#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 21, 40810, "", "=q4=Relentless Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#" };
+ { 22, 40850, "", "=q4=Relentless Gladiator's Plate Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Cloth"] };
+ { 2, 41910, "", "=q4=Relentless Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#" };
+ { 3, 41899, "", "=q4=Relentless Gladiator's Cord of Dominance", "=ds=#s10#, #a1#" };
+ { 4, 41904, "", "=q4=Relentless Gladiator's Treads of Dominance", "=ds=#s12#, #a1#" };
+ { 6, 41894, "", "=q4=Relentless Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#" };
+ { 7, 41882, "", "=q4=Relentless Gladiator's Cord of Salvation", "=ds=#s10#, #a1#" };
+ { 8, 41886, "", "=q4=Relentless Gladiator's Treads of Salvation", "=ds=#s12#, #a1#" };
+ { 10, 49181, "", "=q4=Relentless Gladiator's Cuffs of Alacrity", "=ds=#s8#, #a1#" };
+ { 11, 49179, "", "=q4=Relentless Gladiator's Cord of Alacrity", "=ds=#s10#, #a1#" };
+ { 12, 49183, "", "=q4=Relentless Gladiator's Treads of Alacrity", "=ds=#s12#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Leather"] };
+ { 17, 41641, "", "=q4=Relentless Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#" };
+ { 18, 41631, "", "=q4=Relentless Gladiator's Belt of Dominance", "=ds=#s10#, #a2#" };
+ { 19, 41636, "", "=q4=Relentless Gladiator's Boots of Dominance", "=ds=#s12#, #a2#" };
+ { 21, 41626, "", "=q4=Relentless Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#" };
+ { 22, 41618, "", "=q4=Relentless Gladiator's Belt of Salvation", "=ds=#s10#, #a2#" };
+ { 23, 41622, "", "=q4=Relentless Gladiator's Boots of Salvation", "=ds=#s12#, #a2#" };
+ { 25, 41841, "", "=q4=Relentless Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#" };
+ { 26, 41833, "", "=q4=Relentless Gladiator's Belt of Triumph", "=ds=#s10#, #a2#" };
+ { 27, 41837, "", "=q4=Relentless Gladiator's Boots of Triumph", "=ds=#s12#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Mail"] };
+ { 2, 41066, "", "=q4=Relentless Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#" };
+ { 3, 41071, "", "=q4=Relentless Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#" };
+ { 4, 41076, "", "=q4=Relentless Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#" };
+ { 6, 41061, "", "=q4=Relentless Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#" };
+ { 7, 41052, "", "=q4=Relentless Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#" };
+ { 8, 41056, "", "=q4=Relentless Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#" };
+ { 10, 41226, "", "=q4=Relentless Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#" };
+ { 11, 41236, "", "=q4=Relentless Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#" };
+ { 12, 41231, "", "=q4=Relentless Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Plate"] };
+ { 17, 40984, "", "=q4=Relentless Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#" };
+ { 18, 40978, "", "=q4=Relentless Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#" };
+ { 19, 40979, "", "=q4=Relentless Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#" };
+ { 21, 40890, "", "=q4=Relentless Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#" };
+ { 22, 40883, "", "=q4=Relentless Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#" };
+ { 23, 40884, "", "=q4=Relentless Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Back"] };
+ { 2, 42078, "", "=q4=Relentless Gladiator's Cloak of Ascendancy", "=ds=#s4#" };
+ { 3, 42080, "", "=q4=Relentless Gladiator's Cloak of Deliverance", "=ds=#s4#" };
+ { 4, 42076, "", "=q4=Relentless Gladiator's Cloak of Dominance", "=ds=#s4#" };
+ { 5, 42079, "", "=q4=Relentless Gladiator's Cloak of Salvation", "=ds=#s4#" };
+ { 6, 42077, "", "=q4=Relentless Gladiator's Cloak of Subjugation", "=ds=#s4#" };
+ { 7, 42081, "", "=q4=Relentless Gladiator's Cloak of Triumph", "=ds=#s4#" };
+ { 8, 42082, "", "=q4=Relentless Gladiator's Cloak of Victory", "=ds=#s4#" };
+ { 11, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", "" };
+ { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", "" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Neck"] };
+ { 17, 42044, "", "=q4=Relentless Gladiator's Pendant of Ascendancy", "=ds=#s2#" };
+ { 18, 42046, "", "=q4=Relentless Gladiator's Pendant of Deliverance", "=ds=#s2#" };
+ { 19, 42043, "", "=q4=Relentless Gladiator's Pendant of Dominance", "=ds=#s2#" };
+ { 20, 42047, "", "=q4=Relentless Gladiator's Pendant of Salvation", "=ds=#s2#" };
+ { 21, 42045, "", "=q4=Relentless Gladiator's Pendant of Subjugation", "=ds=#s2#" };
+ { 22, 46374, "", "=q4=Relentless Gladiator's Pendant of Sundering", "=ds=#s2#" };
+ { 23, 42041, "", "=q4=Relentless Gladiator's Pendant of Triumph", "=ds=#s2#" };
+ { 24, 42042, "", "=q4=Relentless Gladiator's Pendant of Victory", "=ds=#s2#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Ring"] };
+ { 27, 42118, "", "=q4=Relentless Gladiator's Band of Ascendancy", "=ds=#s13#" };
+ { 28, 42119, "", "=q4=Relentless Gladiator's Band of Victory", "=ds=#s13#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 2, 47773, "", "=q4=Sunstrider's Gauntlets of Conquest", "=ds=#s9#, #a1#" };
+ { 3, 47775, "", "=q4=Sunstrider's Leggings of Conquest", "=ds=#s11#, #a1#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 6, 48067, "", "=q4=Zabra's Gloves of Conquest", "=ds=#s9#, #a1#" };
+ { 7, 48069, "", "=q4=Zabra's Leggings of Conquest", "=ds=#s11#, #a1#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 10, 48097, "", "=q4=Zabra's Handwraps of Conquest", "=ds=#s9#, #a1#" };
+ { 11, 48099, "", "=q4=Zabra's Pants of Conquest", "=ds=#s11#, #a1#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 14, 47802, "", "=q4=Gul'dan's Gloves of Conquest", "=ds=#s9#, #a1#" };
+ { 15, 47800, "", "=q4=Gul'dan's Leggings of Conquest", "=ds=#s11#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 17, 41971, "", "=q4=Furious Gladiator's Silk Handguards", "=ds=#s9#, #a1#" };
+ { 18, 41959, "", "=q4=Furious Gladiator's Silk Trousers", "=ds=#s11#, #a1#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 21, 41874, "", "=q4=Furious Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#" };
+ { 22, 41864, "", "=q4=Furious Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 25, 41940, "", "=q4=Furious Gladiator's Satin Gloves", "=ds=#s9#, #a1#" };
+ { 26, 41927, "", "=q4=Furious Gladiator's Satin Leggings", "=ds=#s11#, #a1#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 29, 42017, "", "=q4=Furious Gladiator's Felweave Handguards", "=ds=#s9#, #a1#" };
+ { 30, 42005, "", "=q4=Furious Gladiator's Felweave Trousers", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 2, 48183, "", "=q4=Runetotem's Gloves of Conquest", "=ds=#s9#, #a2#" };
+ { 3, 48185, "", "=q4=Runetotem's Trousers of Conquest", "=ds=#s11#, #a2#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 6, 48192, "", "=q4=Runetotem's Handgrips of Conquest", "=ds=#s9#, #a2#" };
+ { 7, 48190, "", "=q4=Runetotem's Legguards of Conquest", "=ds=#s11#, #a2#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 10, 48153, "", "=q4=Runetotem's Handguards of Conquest", "=ds=#s9#, #a2#" };
+ { 11, 48155, "", "=q4=Runetotem's Leggings of Conquest", "=ds=#s11#, #a2#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 14, 48244, "", "=q4=Garona's Gauntlets of Conquest", "=ds=#s9#, #a2#" };
+ { 15, 48246, "", "=q4=Garona's Legplates of Conquest", "=ds=#s11#, #a2#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 17, 41293, "", "=q4=Furious Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#" };
+ { 18, 41304, "", "=q4=Furious Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 21, 41773, "", "=q4=Furious Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#" };
+ { 22, 41667, "", "=q4=Furious Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 25, 41287, "", "=q4=Furious Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#" };
+ { 26, 41298, "", "=q4=Furious Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 29, 41767, "", "=q4=Furious Gladiator's Leather Gloves", "=ds=#s9#, #a2#" };
+ { 30, 41655, "", "=q4=Furious Gladiator's Leather Legguards", "=ds=#s11#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 2, 48276, "", "=q4=Windrunner's Handguards of Conquest", "=ds=#s9#, #a3#" };
+ { 3, 48278, "", "=q4=Windrunner's Legguards of Conquest", "=ds=#s11#, #a3#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 6, 48337, "", "=q4=Thrall's Gloves of Conquest", "=ds=#s9#, #a3#" };
+ { 7, 48339, "", "=q4=Thrall's Kilt of Conquest", "=ds=#s11#, #a3#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 10, 48367, "", "=q4=Thrall's Grips of Conquest", "=ds=#s9#, #a3#" };
+ { 11, 48369, "", "=q4=Thrall's War-Kilt of Conquest", "=ds=#s11#, #a3#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 14, 48296, "", "=q4=Thrall's Handguards of Conquest", "=ds=#s9#, #a3#" };
+ { 15, 48298, "", "=q4=Thrall's Legguards of Conquest", "=ds=#s11#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 17, 41143, "", "=q4=Furious Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#" };
+ { 18, 41205, "", "=q4=Furious Gladiator's Chain Leggings", "=ds=#s11#, #a3#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 21, 41007, "", "=q4=Furious Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#" };
+ { 22, 41033, "", "=q4=Furious Gladiator's Mail Leggings", "=ds=#s11#, #a3#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 25, 41137, "", "=q4=Furious Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#" };
+ { 26, 41199, "", "=q4=Furious Gladiator's Linked Leggings", "=ds=#s11#, #a3#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 29, 41001, "", "=q4=Furious Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#" };
+ { 30, 41027, "", "=q4=Furious Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 2, 48502, "", "=q4=Koltira's Gauntlets of Conquest", "=ds=#s9#, #a4#" };
+ { 3, 48504, "", "=q4=Koltira's Legplates of Conquest", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["Tanking"] };
+ { 6, 48559, "", "=q4=Koltira's Handguards of Conquest", "=ds=#s9#, #a4#" };
+ { 7, 48561, "", "=q4=Koltira's Legguards of Conquest", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 10, 48598, "", "=q4=Liadrin's Gloves of Conquest", "=ds=#s9#, #a4#" };
+ { 11, 48596, "", "=q4=Liadrin's Greaves of Conquest", "=ds=#s11#, #a4#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 14, 48630, "", "=q4=Liadrin's Gauntlets of Conquest", "=ds=#s9#, #a4#" };
+ { 15, 48628, "", "=q4=Liadrin's Legplates of Conquest", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 17, 40809, "", "=q4=Furious Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#" };
+ { 18, 40848, "", "=q4=Furious Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 25, 40927, "", "=q4=Furious Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#" };
+ { 26, 40939, "", "=q4=Furious Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 29, 40808, "", "=q4=Furious Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#" };
+ { 30, 40849, "", "=q4=Furious Gladiator's Scaled Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Protection"] };
+ { 2, 48653, "", "=q4=Liadrin's Handguards of Conquest", "=ds=#s9#, #a4#" };
+ { 3, 48655, "", "=q4=Liadrin's Legguards of Conquest", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 6, 48387, "", "=q4=Hellscream's Gauntlets of Conquest", "=ds=#s9#, #a4#" };
+ { 7, 48389, "", "=q4=Hellscream's Legplates of Conquest", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["Protection"] };
+ { 10, 48457, "", "=q4=Hellscream's Handguards of Conquest", "=ds=#s9#, #a4#" };
+ { 11, 48459, "", "=q4=Hellscream's Legguards of Conquest", "=ds=#s11#, #a4#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 21, 40807, "", "=q4=Furious Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#" };
+ { 22, 40847, "", "=q4=Furious Gladiator's Plate Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Cloth"] };
+ { 2, 41909, "", "=q4=Furious Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#" };
+ { 3, 41898, "", "=q4=Furious Gladiator's Cord of Dominance", "=ds=#s10#, #a1#" };
+ { 4, 41903, "", "=q4=Furious Gladiator's Slippers of Dominance", "=ds=#s12#, #a1#" };
+ { 6, 41893, "", "=q4=Furious Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#" };
+ { 7, 41881, "", "=q4=Furious Gladiator's Cord of Salvation", "=ds=#s10#, #a1#" };
+ { 8, 41885, "", "=q4=Furious Gladiator's Slippers of Salvation", "=ds=#s12#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Leather"] };
+ { 17, 41640, "", "=q4=Furious Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#" };
+ { 18, 41630, "", "=q4=Furious Gladiator's Belt of Dominance", "=ds=#s10#, #a2#" };
+ { 19, 41635, "", "=q4=Furious Gladiator's Boots of Dominance", "=ds=#s12#, #a2#" };
+ { 21, 41625, "", "=q4=Furious Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#" };
+ { 22, 41617, "", "=q4=Furious Gladiator's Belt of Salvation", "=ds=#s10#, #a2#" };
+ { 23, 41621, "", "=q4=Furious Gladiator's Boots of Salvation", "=ds=#s12#, #a2#" };
+ { 25, 41840, "", "=q4=Furious Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#" };
+ { 26, 41832, "", "=q4=Furious Gladiator's Belt of Triumph", "=ds=#s10#, #a2#" };
+ { 27, 41836, "", "=q4=Furious Gladiator's Boots of Triumph", "=ds=#s12#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Mail"] };
+ { 2, 41065, "", "=q4=Furious Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#" };
+ { 3, 41070, "", "=q4=Furious Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#" };
+ { 4, 41075, "", "=q4=Furious Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#" };
+ { 6, 41060, "", "=q4=Furious Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#" };
+ { 7, 41051, "", "=q4=Furious Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#" };
+ { 8, 41055, "", "=q4=Furious Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#" };
+ { 10, 41225, "", "=q4=Furious Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#" };
+ { 11, 41235, "", "=q4=Furious Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#" };
+ { 12, 41230, "", "=q4=Furious Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Plate"] };
+ { 17, 40983, "", "=q4=Furious Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#" };
+ { 18, 40976, "", "=q4=Furious Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#" };
+ { 19, 40977, "", "=q4=Furious Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#" };
+ { 21, 40889, "", "=q4=Furious Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#" };
+ { 22, 40881, "", "=q4=Furious Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#" };
+ { 23, 40882, "", "=q4=Furious Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Back"] };
+ { 2, 42071, "", "=q4=Furious Gladiator's Cloak of Ascendancy", "=ds=#s4#" };
+ { 3, 42073, "", "=q4=Furious Gladiator's Cloak of Deliverance", "=ds=#s4#" };
+ { 4, 42069, "", "=q4=Furious Gladiator's Cloak of Dominance", "=ds=#s4#" };
+ { 5, 42072, "", "=q4=Furious Gladiator's Cloak of Salvation", "=ds=#s4#" };
+ { 6, 42070, "", "=q4=Furious Gladiator's Cloak of Subjugation", "=ds=#s4#" };
+ { 7, 42074, "", "=q4=Furious Gladiator's Cloak of Triumph", "=ds=#s4#" };
+ { 8, 42075, "", "=q4=Furious Gladiator's Cloak of Victory", "=ds=#s4#" };
+ { 11, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", "" };
+ { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", "" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Neck"] };
+ { 17, 42037, "", "=q4=Furious Gladiator's Pendant of Ascendancy", "=ds=#s2#" };
+ { 18, 42039, "", "=q4=Furious Gladiator's Pendant of Deliverance", "=ds=#s2#" };
+ { 19, 42036, "", "=q4=Furious Gladiator's Pendant of Dominance", "=ds=#s2#" };
+ { 20, 42040, "", "=q4=Furious Gladiator's Pendant of Salvation", "=ds=#s2#" };
+ { 21, 42038, "", "=q4=Furious Gladiator's Pendant of Subjugation", "=ds=#s2#" };
+ { 22, 46373, "", "=q4=Furious Gladiator's Pendant of Sundering", "=ds=#s2#" };
+ { 23, 42034, "", "=q4=Furious Gladiator's Pendant of Triumph", "=ds=#s2#" };
+ { 24, 42035, "", "=q4=Furious Gladiator's Pendant of Victory", "=ds=#s2#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Ring"] };
+ { 27, 42116, "", "=q4=Furious Gladiator's Band of Dominance", "=ds=#s13#" };
+ { 28, 42117, "", "=q4=Furious Gladiator's Band of Triumph", "=ds=#s13#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 2, 47772, "", "=q4=Sunstrider's Gauntlets of Triumph", "=ds=#s9#, #a1#" };
+ { 3, 47770, "", "=q4=Sunstrider's Leggings of Triumph", "=ds=#s11#, #a1#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 6, 48066, "", "=q4=Zabra's Gloves of Triumph", "=ds=#s9#, #a1#" };
+ { 7, 48064, "", "=q4=Zabra's Leggings of Triumph", "=ds=#s11#, #a1#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 10, 48096, "", "=q4=Zabra's Handwraps of Triumph", "=ds=#s9#, #a1#" };
+ { 11, 48094, "", "=q4=Zabra's Pants of Triumph", "=ds=#s11#, #a1#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 14, 47803, "", "=q4=Gul'dan's Gloves of Triumph", "=ds=#s9#, #a1#" };
+ { 15, 47805, "", "=q4=Gul'dan's Leggings of Triumph", "=ds=#s11#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 17, 41972, "", "=q4=Relentless Gladiator's Silk Handguards", "=ds=#s9#, #a1#" };
+ { 18, 41960, "", "=q4=Relentless Gladiator's Silk Trousers", "=ds=#s11#, #a1#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 21, 41875, "", "=q4=Relentless Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#" };
+ { 22, 41865, "", "=q4=Relentless Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 25, 41941, "", "=q4=Relentless Gladiator's Satin Gloves", "=ds=#s9#, #a1#" };
+ { 26, 41928, "", "=q4=Relentless Gladiator's Satin Leggings", "=ds=#s11#, #a1#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 29, 42018, "", "=q4=Relentless Gladiator's Felweave Handguards", "=ds=#s9#, #a1#" };
+ { 30, 42006, "", "=q4=Relentless Gladiator's Felweave Trousers", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 2, 48182, "", "=q4=Runetotem's Gloves of Triumph", "=ds=#s9#, #a2#" };
+ { 3, 48180, "", "=q4=Runetotem's Trousers of Triumph", "=ds=#s11#, #a2#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 6, 48193, "", "=q4=Runetotem's Handgrips of Triumph", "=ds=#s9#, #a2#" };
+ { 7, 48195, "", "=q4=Runetotem's Legguards of Triumph", "=ds=#s11#, #a2#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 10, 48152, "", "=q4=Runetotem's Handguards of Triumph", "=ds=#s9#, #a2#" };
+ { 11, 48150, "", "=q4=Runetotem's Leggings of Triumph", "=ds=#s11#, #a2#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 14, 48241, "", "=q4=Garona's Gauntlets of Triumph", "=ds=#s9#, #a2#" };
+ { 15, 48239, "", "=q4=Garona's Legplates of Triumph", "=ds=#s11#, #a2#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 17, 41294, "", "=q4=Relentless Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#" };
+ { 18, 41305, "", "=q4=Relentless Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 21, 41774, "", "=q4=Relentless Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#" };
+ { 22, 41668, "", "=q4=Relentless Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 25, 41288, "", "=q4=Relentless Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#" };
+ { 26, 41299, "", "=q4=Relentless Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 29, 41768, "", "=q4=Relentless Gladiator's Leather Gloves", "=ds=#s9#, #a2#" };
+ { 30, 41656, "", "=q4=Relentless Gladiator's Leather Legguards", "=ds=#s11#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 2, 48273, "", "=q4=Windrunner's Handguards of Triumph", "=ds=#s9#, #a3#" };
+ { 3, 48271, "", "=q4=Windrunner's Legguards of Triumph", "=ds=#s11#, #a3#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 6, 48334, "", "=q4=Thrall's Gloves of Triumph", "=ds=#s9#, #a3#" };
+ { 7, 48332, "", "=q4=Thrall's Kilt of Triumph", "=ds=#s11#, #a3#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 10, 48364, "", "=q4=Thrall's Grips of Triumph", "=ds=#s9#, #a3#" };
+ { 11, 48362, "", "=q4=Thrall's War-Kilt of Triumph", "=ds=#s11#, #a3#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 14, 48301, "", "=q4=Thrall's Handguards of Triumph", "=ds=#s9#, #a3#" };
+ { 15, 48303, "", "=q4=Thrall's Legguards of Triumph", "=ds=#s11#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 17, 41144, "", "=q4=Relentless Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#" };
+ { 18, 41206, "", "=q4=Relentless Gladiator's Chain Leggings", "=ds=#s11#, #a3#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 21, 41008, "", "=q4=Relentless Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#" };
+ { 22, 41034, "", "=q4=Relentless Gladiator's Mail Leggings", "=ds=#s11#, #a3#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 25, 41138, "", "=q4=Relentless Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#" };
+ { 26, 41200, "", "=q4=Relentless Gladiator's Linked Leggings", "=ds=#s11#, #a3#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 29, 41002, "", "=q4=Relentless Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#" };
+ { 30, 41028, "", "=q4=Relentless Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 2, 48499, "", "=q4=Koltira's Gauntlets of Triumph", "=ds=#s9#, #a4#" };
+ { 3, 48497, "", "=q4=Koltira's Legplates of Triumph", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["Tanking"] };
+ { 6, 48556, "", "=q4=Koltira's Handguards of Triumph", "=ds=#s9#, #a4#" };
+ { 7, 48554, "", "=q4=Koltira's Legguards of Triumph", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 10, 48593, "", "=q4=Liadrin's Gloves of Triumph", "=ds=#s9#, #a4#" };
+ { 11, 48591, "", "=q4=Liadrin's Greaves of Triumph", "=ds=#s11#, #a4#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 14, 48625, "", "=q4=Liadrin's Gauntlets of Triumph", "=ds=#s9#, #a4#" };
+ { 15, 48623, "", "=q4=Liadrin's Legplates of Triumph", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 17, 40811, "", "=q4=Relentless Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#" };
+ { 18, 40851, "", "=q4=Relentless Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 25, 40928, "", "=q4=Relentless Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#" };
+ { 26, 40940, "", "=q4=Relentless Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 29, 40812, "", "=q4=Relentless Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#" };
+ { 30, 40852, "", "=q4=Relentless Gladiator's Scaled Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Protection"] };
+ { 2, 48658, "", "=q4=Liadrin's Handguards of Triumph", "=ds=#s9#, #a4#" };
+ { 3, 48660, "", "=q4=Liadrin's Legguards of Triumph", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 6, 48392, "", "=q4=Hellscream's Gauntlets of Triumph", "=ds=#s9#, #a4#" };
+ { 7, 48394, "", "=q4=Hellscream's Legplates of Triumph", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["Protection"] };
+ { 10, 48462, "", "=q4=Hellscream's Handguards of Triumph", "=ds=#s9#, #a4#" };
+ { 11, 48464, "", "=q4=Hellscream's Legguards of Triumph", "=ds=#s11#, #a4#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 21, 40810, "", "=q4=Relentless Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#" };
+ { 22, 40850, "", "=q4=Relentless Gladiator's Plate Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Cloth"] };
+ { 2, 41910, "", "=q4=Relentless Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#" };
+ { 3, 41899, "", "=q4=Relentless Gladiator's Cord of Dominance", "=ds=#s19#, #a1#" };
+ { 4, 41904, "", "=q4=Relentless Gladiator's Treads of Dominance", "=ds=#s12#, #a1#" };
+ { 6, 41894, "", "=q4=Relentless Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#" };
+ { 7, 41882, "", "=q4=Relentless Gladiator's Cord of Salvation", "=ds=#s10#, #a1#" };
+ { 8, 41886, "", "=q4=Relentless Gladiator's Treads of Salvation", "=ds=#s12#, #a1#" };
+ { 10, 49181, "", "=q4=Relentless Gladiator's Cuffs of Alacrity", "=ds=#s8#, #a1#" };
+ { 11, 49179, "", "=q4=Relentless Gladiator's Cord of Alacrity", "=ds=#s10#, #a1#" };
+ { 12, 49183, "", "=q4=Relentless Gladiator's Treads of Alacrity", "=ds=#s12#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Leather"] };
+ { 17, 41641, "", "=q4=Relentless Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#" };
+ { 18, 41631, "", "=q4=Relentless Gladiator's Belt of Dominance", "=ds=#s10#, #a2#" };
+ { 19, 41636, "", "=q4=Relentless Gladiator's Boots of Dominance", "=ds=#s12#, #a2#" };
+ { 21, 41626, "", "=q4=Relentless Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#" };
+ { 22, 41618, "", "=q4=Relentless Gladiator's Belt of Salvation", "=ds=#s10#, #a2#" };
+ { 23, 41622, "", "=q4=Relentless Gladiator's Boots of Salvation", "=ds=#s12#, #a2#" };
+ { 25, 41841, "", "=q4=Relentless Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#" };
+ { 26, 41833, "", "=q4=Relentless Gladiator's Belt of Triumph", "=ds=#s10#, #a2#" };
+ { 27, 41837, "", "=q4=Relentless Gladiator's Boots of Triumph", "=ds=#s12#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Mail"] };
+ { 2, 41066, "", "=q4=Relentless Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#" };
+ { 3, 41071, "", "=q4=Relentless Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#" };
+ { 4, 41076, "", "=q4=Relentless Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#" };
+ { 6, 41061, "", "=q4=Relentless Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#" };
+ { 7, 41052, "", "=q4=Relentless Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#" };
+ { 8, 41056, "", "=q4=Relentless Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#" };
+ { 10, 41226, "", "=q4=Relentless Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#" };
+ { 11, 41236, "", "=q4=Relentless Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#" };
+ { 12, 41231, "", "=q4=Relentless Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Plate"] };
+ { 17, 40984, "", "=q4=Relentless Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#" };
+ { 18, 40978, "", "=q4=Relentless Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#" };
+ { 19, 40979, "", "=q4=Relentless Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#" };
+ { 21, 40890, "", "=q4=Relentless Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#" };
+ { 22, 40883, "", "=q4=Relentless Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#" };
+ { 23, 40884, "", "=q4=Relentless Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Koralon the Flame Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Back"] };
+ { 2, 42078, "", "=q4=Relentless Gladiator's Cloak of Ascendancy", "=ds=#s4#" };
+ { 3, 42080, "", "=q4=Relentless Gladiator's Cloak of Deliverance", "=ds=#s4#" };
+ { 4, 42076, "", "=q4=Relentless Gladiator's Cloak of Dominance", "=ds=#s4#" };
+ { 5, 42079, "", "=q4=Relentless Gladiator's Cloak of Salvation", "=ds=#s4#" };
+ { 6, 42077, "", "=q4=Relentless Gladiator's Cloak of Subjugation", "=ds=#s4#" };
+ { 7, 42081, "", "=q4=Relentless Gladiator's Cloak of Triumph", "=ds=#s4#" };
+ { 8, 42082, "", "=q4=Relentless Gladiator's Cloak of Victory", "=ds=#s4#" };
+ { 11, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%" };
+ { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", "" };
+ { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", "" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Neck"] };
+ { 17, 42044, "", "=q4=Relentless Gladiator's Pendant of Ascendancy", "=ds=#s2#" };
+ { 18, 42046, "", "=q4=Relentless Gladiator's Pendant of Deliverance", "=ds=#s2#" };
+ { 19, 42043, "", "=q4=Relentless Gladiator's Pendant of Dominance", "=ds=#s2#" };
+ { 20, 42047, "", "=q4=Relentless Gladiator's Pendant of Salvation", "=ds=#s2#" };
+ { 21, 42045, "", "=q4=Relentless Gladiator's Pendant of Subjugation", "=ds=#s2#" };
+ { 22, 46374, "", "=q4=Relentless Gladiator's Pendant of Sundering", "=ds=#s2#" };
+ { 23, 42041, "", "=q4=Relentless Gladiator's Pendant of Triumph", "=ds=#s2#" };
+ { 24, 42042, "", "=q4=Relentless Gladiator's Pendant of Victory", "=ds=#s2#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Ring"] };
+ { 27, 42118, "", "=q4=Relentless Gladiator's Band of Ascendancy", "=ds=#s13#" };
+ { 28, 42119, "", "=q4=Relentless Gladiator's Band of Victory", "=ds=#s13#" };
+ };
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 2, 50275, "", "=q4=Bloodmage Gloves", "=ds=#s9#, #a1#" };
+ { 3, 50277, "", "=q4=Bloodmage Leggings", "=ds=#s11#, #a1#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 6, 50766, "", "=q4=Crimson Acolyte Gloves", "=ds=#s9#, #a1#" };
+ { 7, 50769, "", "=q4=Crimson Acolyte Leggings", "=ds=#s11#, #a1#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 10, 50391, "", "=q4=Crimson Acolyte Handwraps", "=ds=#s9#, #a1#" };
+ { 11, 50393, "", "=q4=Crimson Acolyte Pants", "=ds=#s11#, #a1#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 14, 50240, "", "=q4=Dark Coven Gloves", "=ds=#s9#, #a1#" };
+ { 15, 50242, "", "=q4=Dark Coven Leggings", "=ds=#s11#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 17, 41972, "", "=q4=Relentless Gladiator's Silk Handguards", "=ds=#s9#, #a1#" };
+ { 18, 41960, "", "=q4=Relentless Gladiator's Silk Trousers", "=ds=#s11#, #a1#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 21, 41875, "", "=q4=Relentless Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#" };
+ { 22, 41865, "", "=q4=Relentless Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 25, 41941, "", "=q4=Relentless Gladiator's Satin Gloves", "=ds=#s9#, #a1#" };
+ { 26, 41928, "", "=q4=Relentless Gladiator's Satin Leggings", "=ds=#s11#, #a1#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 29, 42018, "", "=q4=Relentless Gladiator's Felweave Handguards", "=ds=#s9#, #a1#" };
+ { 30, 42006, "", "=q4=Relentless Gladiator's Felweave Trousers", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 2, 50822, "", "=q4=Lasherweave's Gloves", "=ds=#s9#, #a2#" };
+ { 3, 50820, "", "=q4=Lasherweave's Trousers", "=ds=#s11#, #a2#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 6, 50827, "", "=q4=Lasherweave's Handgrips", "=ds=#s9#, #a2#" };
+ { 7, 50825, "", "=q4=Lasherweave's Legguards", "=ds=#s11#, #a2#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
{ 10, 50107, "", "=q4=Lasherweave's Gauntlets", "=ds=#s9#, #a2#" };
- { 11, 50109, "", "=q4=Lasherweave's Legplates", "=ds=#s11#, #a2#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 14, 50088, "", "=q4=Shadowblade Gauntlets", "=ds=#s9#, #a2#"};
- { 15, 50090, "", "=q4=Shadowblade Legplates", "=ds=#s11#, #a2#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 17, 41294, "", "=q4=Relentless Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#"};
- { 18, 41305, "", "=q4=Relentless Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 21, 41774, "", "=q4=Relentless Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#"};
- { 22, 41668, "", "=q4=Relentless Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 25, 41288, "", "=q4=Relentless Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#"};
- { 26, 41299, "", "=q4=Relentless Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 29, 41768, "", "=q4=Relentless Gladiator's Leather Gloves", "=ds=#s9#, #a2#"};
- { 30, 41656, "", "=q4=Relentless Gladiator's Leather Legguards", "=ds=#s11#, #a2#"};
- Prev = "VaultofArchavonToravon1";
- Next = "VaultofArchavonToravon3";
+ { 11, 50109, "", "=q4=Lasherweave's Legplates", "=ds=#s11#, #a2#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 14, 50088, "", "=q4=Shadowblade Gauntlets", "=ds=#s9#, #a2#" };
+ { 15, 50090, "", "=q4=Shadowblade Legplates", "=ds=#s11#, #a2#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 17, 41294, "", "=q4=Relentless Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#" };
+ { 18, 41305, "", "=q4=Relentless Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 21, 41774, "", "=q4=Relentless Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#" };
+ { 22, 41668, "", "=q4=Relentless Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 25, 41288, "", "=q4=Relentless Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#" };
+ { 26, 41299, "", "=q4=Relentless Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 29, 41768, "", "=q4=Relentless Gladiator's Leather Gloves", "=ds=#s9#, #a2#" };
+ { 30, 41656, "", "=q4=Relentless Gladiator's Leather Legguards", "=ds=#s11#, #a2#" };
};
-
- AtlasLoot_Data["VaultofArchavonToravon3"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 2, 50114, "", "=q4=Ahn'Kahar Blood Hunter's Handguards", "=ds=#s9#, #a3#"};
- { 3, 50116, "", "=q4=Ahn'Kahar Blood Hunter's Legguards", "=ds=#s11#, #a3#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 6, 50842, "", "=q4=Frost Witch's Gloves", "=ds=#s9#, #a3#"};
- { 7, 50844, "", "=q4=Frost Witch's Kilt", "=ds=#s11#, #a3#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 10, 50831, "", "=q4=Frost Witch's Grips", "=ds=#s9#, #a3#"};
- { 11, 50833, "", "=q4=Frost Witch's War-Kilt", "=ds=#s11#, #a3#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 14, 50836, "", "=q4=Frost Witch's Handguards", "=ds=#s9#, #a3#"};
- { 15, 50838, "", "=q4=Frost Witch's Legguards", "=ds=#s11#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 17, 41144, "", "=q4=Relentless Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#"};
- { 18, 41206, "", "=q4=Relentless Gladiator's Chain Leggings", "=ds=#s11#, #a3#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 21, 41008, "", "=q4=Relentless Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#"};
- { 22, 41034, "", "=q4=Relentless Gladiator's Mail Leggings", "=ds=#s11#, #a3#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 25, 41138, "", "=q4=Relentless Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#"};
- { 26, 41200, "", "=q4=Relentless Gladiator's Linked Leggings", "=ds=#s11#, #a3#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 29, 41002, "", "=q4=Relentless Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#"};
- { 30, 41028, "", "=q4=Relentless Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#"};
- Prev = "VaultofArchavonToravon2";
- Next = "VaultofArchavonToravon4";
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 2, 50114, "", "=q4=Ahn'Kahar Blood Hunter's Handguards", "=ds=#s9#, #a3#" };
+ { 3, 50116, "", "=q4=Ahn'Kahar Blood Hunter's Legguards", "=ds=#s11#, #a3#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 6, 50842, "", "=q4=Frost Witch's Gloves", "=ds=#s9#, #a3#" };
+ { 7, 50844, "", "=q4=Frost Witch's Kilt", "=ds=#s11#, #a3#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 10, 50831, "", "=q4=Frost Witch's Grips", "=ds=#s9#, #a3#" };
+ { 11, 50833, "", "=q4=Frost Witch's War-Kilt", "=ds=#s11#, #a3#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 14, 50836, "", "=q4=Frost Witch's Handguards", "=ds=#s9#, #a3#" };
+ { 15, 50838, "", "=q4=Frost Witch's Legguards", "=ds=#s11#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 17, 41144, "", "=q4=Relentless Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#" };
+ { 18, 41206, "", "=q4=Relentless Gladiator's Chain Leggings", "=ds=#s11#, #a3#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 21, 41008, "", "=q4=Relentless Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#" };
+ { 22, 41034, "", "=q4=Relentless Gladiator's Mail Leggings", "=ds=#s11#, #a3#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 25, 41138, "", "=q4=Relentless Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#" };
+ { 26, 41200, "", "=q4=Relentless Gladiator's Linked Leggings", "=ds=#s11#, #a3#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 29, 41002, "", "=q4=Relentless Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#" };
+ { 30, 41028, "", "=q4=Relentless Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#" };
};
-
- AtlasLoot_Data["VaultofArchavonToravon4"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 2, 50095, "", "=q4=Scourgelord Gauntlets", "=ds=#s9#, #a4#"};
- { 3, 50097, "", "=q4=Scourgelord Legplates", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 6, 50856, "", "=q4=Scourgelord Handguards", "=ds=#s9#, #a4#"};
- { 7, 50854, "", "=q4=Scourgelord Legguards", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 10, 50868, "", "=q4=Lightsworn Gloves", "=ds=#s9#, #a4#"};
- { 11, 50866, "", "=q4=Lightsworn Greaves", "=ds=#s11#, #a4#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 14, 50327, "", "=q4=Lightsworn Gauntlets", "=ds=#s9#, #a4#"};
- { 15, 50325, "", "=q4=Lightsworn Legplates", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 17, 40811, "", "=q4=Relentless Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#"};
- { 18, 40851, "", "=q4=Relentless Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 25, 40928, "", "=q4=Relentless Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#"};
- { 26, 40940, "", "=q4=Relentless Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 29, 40812, "", "=q4=Relentless Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#"};
- { 30, 40852, "", "=q4=Relentless Gladiator's Scaled Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonToravon3";
- Next = "VaultofArchavonToravon5";
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 2, 50095, "", "=q4=Scourgelord Gauntlets", "=ds=#s9#, #a4#" };
+ { 3, 50097, "", "=q4=Scourgelord Legplates", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["Tanking"] };
+ { 6, 50856, "", "=q4=Scourgelord Handguards", "=ds=#s9#, #a4#" };
+ { 7, 50854, "", "=q4=Scourgelord Legguards", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 10, 50868, "", "=q4=Lightsworn Gloves", "=ds=#s9#, #a4#" };
+ { 11, 50866, "", "=q4=Lightsworn Greaves", "=ds=#s11#, #a4#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 14, 50327, "", "=q4=Lightsworn Gauntlets", "=ds=#s9#, #a4#" };
+ { 15, 50325, "", "=q4=Lightsworn Legplates", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 17, 40811, "", "=q4=Relentless Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#" };
+ { 18, 40851, "", "=q4=Relentless Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 25, 40928, "", "=q4=Relentless Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#" };
+ { 26, 40940, "", "=q4=Relentless Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 29, 40812, "", "=q4=Relentless Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#" };
+ { 30, 40852, "", "=q4=Relentless Gladiator's Scaled Legguards", "=ds=#s11#, #a4#" };
};
-
- AtlasLoot_Data["VaultofArchavonToravon5"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 2, 50863, "", "=q4=Lightsworn Handguards", "=ds=#s9#, #a4#"};
- { 3, 50861, "", "=q4=Lightsworn Legguards", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 6, 50079, "", "=q4=Ymirjar Lord's Gauntlets", "=ds=#s9#, #a4#"};
- { 7, 50081, "", "=q4=Ymirjar Lord's Legplates", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- { 10, 50849, "", "=q4=Ymirjar Lord's Handguards", "=ds=#s9#, #a4#"};
- { 11, 50847, "", "=q4=Ymirjar Lord's Legguards", "=ds=#s11#, #a4#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 21, 40810, "", "=q4=Relentless Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#"};
- { 22, 40850, "", "=q4=Relentless Gladiator's Plate Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonToravon4";
- Next = "VaultofArchavonToravon6";
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Protection"] };
+ { 2, 50863, "", "=q4=Lightsworn Handguards", "=ds=#s9#, #a4#" };
+ { 3, 50861, "", "=q4=Lightsworn Legguards", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 6, 50079, "", "=q4=Ymirjar Lord's Gauntlets", "=ds=#s9#, #a4#" };
+ { 7, 50081, "", "=q4=Ymirjar Lord's Legplates", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["Protection"] };
+ { 10, 50849, "", "=q4=Ymirjar Lord's Handguards", "=ds=#s9#, #a4#" };
+ { 11, 50847, "", "=q4=Ymirjar Lord's Legguards", "=ds=#s11#, #a4#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 21, 40810, "", "=q4=Relentless Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#" };
+ { 22, 40850, "", "=q4=Relentless Gladiator's Plate Legguards", "=ds=#s11#, #a4#" };
};
-
- AtlasLoot_Data["VaultofArchavonToravon6"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Cloth"]};
- { 2, 41910, "", "=q4=Relentless Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#"};
- { 3, 41899, "", "=q4=Relentless Gladiator's Cord of Dominance", "=ds=#s10#, #a1#"};
- { 4, 41904, "", "=q4=Relentless Gladiator's Treads of Dominance", "=ds=#s12#, #a1#"};
- { 6, 41894, "", "=q4=Relentless Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#"};
- { 7, 41882, "", "=q4=Relentless Gladiator's Cord of Salvation", "=ds=#s10#, #a1#"};
- { 8, 41886, "", "=q4=Relentless Gladiator's Treads of Salvation", "=ds=#s12#, #a1#"};
- { 10, 49181, "", "=q4=Relentless Gladiator's Cuffs of Alacrity", "=ds=#s8#, #a1#"};
- { 11, 49179, "", "=q4=Relentless Gladiator's Cord of Alacrity", "=ds=#s10#, #a1#"};
- { 12, 49183, "", "=q4=Relentless Gladiator's Treads of Alacrity", "=ds=#s12#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Leather"]};
- { 17, 41641, "", "=q4=Relentless Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#"};
- { 18, 41631, "", "=q4=Relentless Gladiator's Belt of Dominance", "=ds=#s10#, #a2#"};
- { 19, 41636, "", "=q4=Relentless Gladiator's Boots of Dominance", "=ds=#s12#, #a2#"};
- { 21, 41626, "", "=q4=Relentless Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#"};
- { 22, 41618, "", "=q4=Relentless Gladiator's Belt of Salvation", "=ds=#s10#, #a2#"};
- { 23, 41622, "", "=q4=Relentless Gladiator's Boots of Salvation", "=ds=#s12#, #a2#"};
- { 25, 41841, "", "=q4=Relentless Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#"};
- { 26, 41833, "", "=q4=Relentless Gladiator's Belt of Triumph", "=ds=#s10#, #a2#"};
- { 27, 41837, "", "=q4=Relentless Gladiator's Boots of Triumph", "=ds=#s12#, #a2#"};
- Prev = "VaultofArchavonToravon5";
- Next = "VaultofArchavonToravon7";
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Cloth"] };
+ { 2, 41910, "", "=q4=Relentless Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#" };
+ { 3, 41899, "", "=q4=Relentless Gladiator's Cord of Dominance", "=ds=#s10#, #a1#" };
+ { 4, 41904, "", "=q4=Relentless Gladiator's Treads of Dominance", "=ds=#s12#, #a1#" };
+ { 6, 41894, "", "=q4=Relentless Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#" };
+ { 7, 41882, "", "=q4=Relentless Gladiator's Cord of Salvation", "=ds=#s10#, #a1#" };
+ { 8, 41886, "", "=q4=Relentless Gladiator's Treads of Salvation", "=ds=#s12#, #a1#" };
+ { 10, 49181, "", "=q4=Relentless Gladiator's Cuffs of Alacrity", "=ds=#s8#, #a1#" };
+ { 11, 49179, "", "=q4=Relentless Gladiator's Cord of Alacrity", "=ds=#s10#, #a1#" };
+ { 12, 49183, "", "=q4=Relentless Gladiator's Treads of Alacrity", "=ds=#s12#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Leather"] };
+ { 17, 41641, "", "=q4=Relentless Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#" };
+ { 18, 41631, "", "=q4=Relentless Gladiator's Belt of Dominance", "=ds=#s10#, #a2#" };
+ { 19, 41636, "", "=q4=Relentless Gladiator's Boots of Dominance", "=ds=#s12#, #a2#" };
+ { 21, 41626, "", "=q4=Relentless Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#" };
+ { 22, 41618, "", "=q4=Relentless Gladiator's Belt of Salvation", "=ds=#s10#, #a2#" };
+ { 23, 41622, "", "=q4=Relentless Gladiator's Boots of Salvation", "=ds=#s12#, #a2#" };
+ { 25, 41841, "", "=q4=Relentless Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#" };
+ { 26, 41833, "", "=q4=Relentless Gladiator's Belt of Triumph", "=ds=#s10#, #a2#" };
+ { 27, 41837, "", "=q4=Relentless Gladiator's Boots of Triumph", "=ds=#s12#, #a2#" };
};
-
- AtlasLoot_Data["VaultofArchavonToravon7"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Mail"]};
- { 2, 41066, "", "=q4=Relentless Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#"};
- { 3, 41071, "", "=q4=Relentless Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#"};
- { 4, 41076, "", "=q4=Relentless Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#"};
- { 6, 41061, "", "=q4=Relentless Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#"};
- { 7, 41052, "", "=q4=Relentless Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#"};
- { 8, 41056, "", "=q4=Relentless Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#"};
- { 10, 41226, "", "=q4=Relentless Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#"};
- { 11, 41236, "", "=q4=Relentless Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#"};
- { 12, 41231, "", "=q4=Relentless Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Plate"]};
- { 17, 40984, "", "=q4=Relentless Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#"};
- { 18, 40978, "", "=q4=Relentless Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#"};
- { 19, 40979, "", "=q4=Relentless Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#"};
- { 21, 40890, "", "=q4=Relentless Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#"};
- { 22, 40883, "", "=q4=Relentless Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#"};
- { 23, 40884, "", "=q4=Relentless Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#"};
- Prev = "VaultofArchavonToravon6";
- Next = "VaultofArchavonToravon8";
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Mail"] };
+ { 2, 41066, "", "=q4=Relentless Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#" };
+ { 3, 41071, "", "=q4=Relentless Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#" };
+ { 4, 41076, "", "=q4=Relentless Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#" };
+ { 6, 41061, "", "=q4=Relentless Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#" };
+ { 7, 41052, "", "=q4=Relentless Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#" };
+ { 8, 41056, "", "=q4=Relentless Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#" };
+ { 10, 41226, "", "=q4=Relentless Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#" };
+ { 11, 41236, "", "=q4=Relentless Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#" };
+ { 12, 41231, "", "=q4=Relentless Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Plate"] };
+ { 17, 40984, "", "=q4=Relentless Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#" };
+ { 18, 40978, "", "=q4=Relentless Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#" };
+ { 19, 40979, "", "=q4=Relentless Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#" };
+ { 21, 40890, "", "=q4=Relentless Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#" };
+ { 22, 40883, "", "=q4=Relentless Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#" };
+ { 23, 40884, "", "=q4=Relentless Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#" };
};
-
- AtlasLoot_Data["VaultofArchavonToravon8"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Back"]};
- { 2, 42078, "", "=q4=Relentless Gladiator's Cloak of Ascendancy", "=ds=#s4#"};
- { 3, 42080, "", "=q4=Relentless Gladiator's Cloak of Deliverance", "=ds=#s4#"};
- { 4, 42076, "", "=q4=Relentless Gladiator's Cloak of Dominance", "=ds=#s4#"};
- { 5, 42079, "", "=q4=Relentless Gladiator's Cloak of Salvation", "=ds=#s4#"};
- { 6, 42077, "", "=q4=Relentless Gladiator's Cloak of Subjugation", "=ds=#s4#"};
- { 7, 42081, "", "=q4=Relentless Gladiator's Cloak of Triumph", "=ds=#s4#"};
- { 8, 42082, "", "=q4=Relentless Gladiator's Cloak of Victory", "=ds=#s4#"};
- { 11, 49426, "", "=q4=Emblem of Frost", "=ds=#e15#", "", "100%"};
- { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", ""};
- { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", ""};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Neck"]};
- { 17, 42044, "", "=q4=Relentless Gladiator's Pendant of Ascendancy", "=ds=#s2#"};
- { 18, 42046, "", "=q4=Relentless Gladiator's Pendant of Deliverance", "=ds=#s2#"};
- { 19, 42043, "", "=q4=Relentless Gladiator's Pendant of Dominance", "=ds=#s2#"};
- { 20, 42047, "", "=q4=Relentless Gladiator's Pendant of Salvation", "=ds=#s2#"};
- { 21, 42045, "", "=q4=Relentless Gladiator's Pendant of Subjugation", "=ds=#s2#"};
- { 22, 46374, "", "=q4=Relentless Gladiator's Pendant of Sundering", "=ds=#s2#"};
- { 23, 42041, "", "=q4=Relentless Gladiator's Pendant of Triumph", "=ds=#s2#"};
- { 24, 42042, "", "=q4=Relentless Gladiator's Pendant of Victory", "=ds=#s2#"};
- { 26, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Ring"]};
- { 27, 42118, "", "=q4=Relentless Gladiator's Band of Ascendancy", "=ds=#s13#"};
- { 28, 42119, "", "=q4=Relentless Gladiator's Band of Victory", "=ds=#s13#"};
- Prev = "VaultofArchavonToravon7";
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Back"] };
+ { 2, 42078, "", "=q4=Relentless Gladiator's Cloak of Ascendancy", "=ds=#s4#" };
+ { 3, 42080, "", "=q4=Relentless Gladiator's Cloak of Deliverance", "=ds=#s4#" };
+ { 4, 42076, "", "=q4=Relentless Gladiator's Cloak of Dominance", "=ds=#s4#" };
+ { 5, 42079, "", "=q4=Relentless Gladiator's Cloak of Salvation", "=ds=#s4#" };
+ { 6, 42077, "", "=q4=Relentless Gladiator's Cloak of Subjugation", "=ds=#s4#" };
+ { 7, 42081, "", "=q4=Relentless Gladiator's Cloak of Triumph", "=ds=#s4#" };
+ { 8, 42082, "", "=q4=Relentless Gladiator's Cloak of Victory", "=ds=#s4#" };
+ { 11, 49426, "", "=q4=Emblem of Frost", "=ds=#e15#", "", "100%" };
+ { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", "" };
+ { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", "" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Neck"] };
+ { 17, 42044, "", "=q4=Relentless Gladiator's Pendant of Ascendancy", "=ds=#s2#" };
+ { 18, 42046, "", "=q4=Relentless Gladiator's Pendant of Deliverance", "=ds=#s2#" };
+ { 19, 42043, "", "=q4=Relentless Gladiator's Pendant of Dominance", "=ds=#s2#" };
+ { 20, 42047, "", "=q4=Relentless Gladiator's Pendant of Salvation", "=ds=#s2#" };
+ { 21, 42045, "", "=q4=Relentless Gladiator's Pendant of Subjugation", "=ds=#s2#" };
+ { 22, 46374, "", "=q4=Relentless Gladiator's Pendant of Sundering", "=ds=#s2#" };
+ { 23, 42041, "", "=q4=Relentless Gladiator's Pendant of Triumph", "=ds=#s2#" };
+ { 24, 42042, "", "=q4=Relentless Gladiator's Pendant of Victory", "=ds=#s2#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Ring"] };
+ { 27, 42118, "", "=q4=Relentless Gladiator's Band of Ascendancy", "=ds=#s13#" };
+ { 28, 42119, "", "=q4=Relentless Gladiator's Band of Victory", "=ds=#s13#" };
};
-
- AtlasLoot_Data["VaultofArchavonToravon125Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 2, 51159, "", "=q4=Sanctified Bloodmage Gloves", "=ds=#s9#, #a1#"};
- { 3, 51157, "", "=q4=Sanctified Bloodmage Leggings", "=ds=#s11#, #a1#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 6, 51179, "", "=q4=Sanctified Crimson Acolyte Gloves", "=ds=#s9#, #a1#"};
- { 7, 51177, "", "=q4=Sanctified Crimson Acolyte Leggings", "=ds=#s11#, #a1#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 10, 51183, "", "=q4=Sanctified Crimson Acolyte Handwraps", "=ds=#s9#, #a1#"};
- { 11, 51181, "", "=q4=Sanctified Crimson Acolyte Pants", "=ds=#s11#, #a1#"};
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 14, 51209, "", "=q4=Sanctified Dark Coven Gloves", "=ds=#s9#, #a1#"};
- { 15, 51207, "", "=q4=Sanctified Dark Coven Leggings", "=ds=#s11#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 17, 51464, "", "=q4=Wrathful Gladiator's Silk Handguards", "=ds=#s9#, #a1#"};
- { 18, 51466, "", "=q4=Wrathful Gladiator's Silk Trousers", "=ds=#s11#, #a1#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 21, 51483, "", "=q4=Wrathful Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#"};
- { 22, 51485, "", "=q4=Wrathful Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 25, 51488, "", "=q4=Wrathful Gladiator's Satin Gloves", "=ds=#s9#, #a1#"};
- { 26, 51490, "", "=q4=Wrathful Gladiator's Satin Leggings", "=ds=#s11#, #a1#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 29, 51537, "", "=q4=Wrathful Gladiator's Felweave Handguards", "=ds=#s9#, #a1#"};
- { 30, 51539, "", "=q4=Wrathful Gladiator's Felweave Trousers", "=ds=#s11#, #a1#"};
- Next = "VaultofArchavonToravon225Man";
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 2, 51159, "", "=q4=Sanctified Bloodmage Gloves", "=ds=#s9#, #a1#" };
+ { 3, 51157, "", "=q4=Sanctified Bloodmage Leggings", "=ds=#s11#, #a1#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 6, 51179, "", "=q4=Sanctified Crimson Acolyte Gloves", "=ds=#s9#, #a1#" };
+ { 7, 51177, "", "=q4=Sanctified Crimson Acolyte Leggings", "=ds=#s11#, #a1#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 10, 51183, "", "=q4=Sanctified Crimson Acolyte Handwraps", "=ds=#s9#, #a1#" };
+ { 11, 51181, "", "=q4=Sanctified Crimson Acolyte Pants", "=ds=#s11#, #a1#" };
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 14, 51209, "", "=q4=Sanctified Dark Coven Gloves", "=ds=#s9#, #a1#" };
+ { 15, 51207, "", "=q4=Sanctified Dark Coven Leggings", "=ds=#s11#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["MAGE"], "" };
+ { 17, 51464, "", "=q4=Wrathful Gladiator's Silk Handguards", "=ds=#s9#, #a1#" };
+ { 18, 51466, "", "=q4=Wrathful Gladiator's Silk Trousers", "=ds=#s11#, #a1#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Holy"] };
+ { 21, 51483, "", "=q4=Wrathful Gladiator's Mooncloth Gloves", "=ds=#s9#, #a1#" };
+ { 22, 51485, "", "=q4=Wrathful Gladiator's Mooncloth Leggings", "=ds=#s11#, #a1#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5=" .. AL["Shadow"] };
+ { 25, 51488, "", "=q4=Wrathful Gladiator's Satin Gloves", "=ds=#s9#, #a1#" };
+ { 26, 51490, "", "=q4=Wrathful Gladiator's Satin Leggings", "=ds=#s11#, #a1#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "" };
+ { 29, 51537, "", "=q4=Wrathful Gladiator's Felweave Handguards", "=ds=#s9#, #a1#" };
+ { 30, 51539, "", "=q4=Wrathful Gladiator's Felweave Trousers", "=ds=#s11#, #a1#" };
};
-
- AtlasLoot_Data["VaultofArchavonToravon225Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
{ 2, 51148, "", "=q4=Sanctified Lasherweave's Gloves", "=ds=#s9#, #a2#" };
{ 3, 51146, "", "=q4=Sanctified Lasherweave's Trousers", "=ds=#s11#, #a2#" };
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
{ 6, 51144, "", "=q4=Sanctified Lasherweave's Handgrips", "=ds=#s9#, #a2#" };
{ 7, 51142, "", "=q4=Sanctified Lasherweave's Legguards", "=ds=#s11#, #a2#" };
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
{ 10, 51138, "", "=q4=Sanctified Lasherweave's Gauntlets", "=ds=#s9#, #a2#" };
{ 11, 51136, "", "=q4=Sanctified Lasherweave's Legplates", "=ds=#s11#, #a2#" };
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 14, 51188, "", "=q4=Sanctified Shadowblade Gauntlets", "=ds=#s9#, #a2#"};
- { 15, 51186, "", "=q4=Sanctified Shadowblade Legplates", "=ds=#s11#, #a2#"};
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Balance"]};
- { 17, 51434, "", "=q4=Wrathful Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#"};
- { 18, 51436, "", "=q4=Wrathful Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Feral"]};
- { 21, 51426, "", "=q4=Wrathful Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#"};
- { 22, 51428, "", "=q4=Wrathful Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5="..AL["Restoration"]};
- { 25, 51420, "", "=q4=Wrathful Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#"};
- { 26, 51422, "", "=q4=Wrathful Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 29, 51493, "", "=q4=Wrathful Gladiator's Leather Gloves", "=ds=#s9#, #a2#"};
- { 30, 51495, "", "=q4=Wrathful Gladiator's Leather Legguards", "=ds=#s11#, #a2#"};
- Prev = "VaultofArchavonToravon125Man";
- Next = "VaultofArchavonToravon325Man";
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 14, 51188, "", "=q4=Sanctified Shadowblade Gauntlets", "=ds=#s9#, #a2#" };
+ { 15, 51186, "", "=q4=Sanctified Shadowblade Legplates", "=ds=#s11#, #a2#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Balance"] };
+ { 17, 51434, "", "=q4=Wrathful Gladiator's Wyrmhide Gloves", "=ds=#s9#, #a2#" };
+ { 18, 51436, "", "=q4=Wrathful Gladiator's Wyrmhide Legguards", "=ds=#s11#, #a2#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Feral"] };
+ { 21, 51426, "", "=q4=Wrathful Gladiator's Dragonhide Gloves", "=ds=#s9#, #a2#" };
+ { 22, 51428, "", "=q4=Wrathful Gladiator's Dragonhide Legguards", "=ds=#s11#, #a2#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DRUID"], "=q5=" .. AL["Restoration"] };
+ { 25, 51420, "", "=q4=Wrathful Gladiator's Kodohide Gloves", "=ds=#s9#, #a2#" };
+ { 26, 51422, "", "=q4=Wrathful Gladiator's Kodohide Legguards", "=ds=#s11#, #a2#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "" };
+ { 29, 51493, "", "=q4=Wrathful Gladiator's Leather Gloves", "=ds=#s9#, #a2#" };
+ { 30, 51495, "", "=q4=Wrathful Gladiator's Leather Legguards", "=ds=#s11#, #a2#" };
};
-
- AtlasLoot_Data["VaultofArchavonToravon325Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 2, 51154, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Handguards", "=ds=#s9#, #a3#"};
- { 3, 51152, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Legguards", "=ds=#s11#, #a3#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 2, 51154, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Handguards", "=ds=#s9#, #a3#" };
+ { 3, 51152, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Legguards", "=ds=#s11#, #a3#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
{ 6, 51201, "", "=q4=Sanctified Frost Witch's Gloves", "=ds=#s9#, #a3#" };
{ 7, 51203, "", "=q4=Sanctified Frost Witch's Kilt", "=ds=#s11#, #a3#" };
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
{ 10, 51196, "", "=q4=Sanctified Frost Witch's Grips", "=ds=#s9#, #a3#" };
{ 11, 51198, "", "=q4=Sanctified Frost Witch's War-Kilt", "=ds=#s11#, #a3#" };
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
{ 14, 51191, "", "=q4=Sanctified Frost Witch's Handguards", "=ds=#s9#, #a3#" };
{ 15, 51193, "", "=q4=Sanctified Frost Witch's Legguards", "=ds=#s11#, #a3#" };
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 17, 51459, "", "=q4=Wrathful Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#"};
- { 18, 51461, "", "=q4=Wrathful Gladiator's Chain Leggings", "=ds=#s11#, #a3#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 21, 51510, "", "=q4=Wrathful Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#"};
- { 22, 51512, "", "=q4=Wrathful Gladiator's Mail Leggings", "=ds=#s11#, #a3#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 25, 51504, "", "=q4=Wrathful Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#"};
- { 26, 51506, "", "=q4=Wrathful Gladiator's Linked Leggings", "=ds=#s11#, #a3#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 29, 51498, "", "=q4=Wrathful Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#"};
- { 30, 51500, "", "=q4=Wrathful Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#"};
- Prev = "VaultofArchavonToravon225Man";
- Next = "VaultofArchavonToravon425Man";
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "" };
+ { 17, 51459, "", "=q4=Wrathful Gladiator's Chain Gauntlets", "=ds=#s9#, #a3#" };
+ { 18, 51461, "", "=q4=Wrathful Gladiator's Chain Leggings", "=ds=#s11#, #a3#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Elemental"] };
+ { 21, 51510, "", "=q4=Wrathful Gladiator's Mail Gauntlets", "=ds=#s9#, #a3#" };
+ { 22, 51512, "", "=q4=Wrathful Gladiator's Mail Leggings", "=ds=#s11#, #a3#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Enhancement"] };
+ { 25, 51504, "", "=q4=Wrathful Gladiator's Linked Gauntlets", "=ds=#s9#, #a3#" };
+ { 26, 51506, "", "=q4=Wrathful Gladiator's Linked Leggings", "=ds=#s11#, #a3#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5=" .. AL["Restoration"] };
+ { 29, 51498, "", "=q4=Wrathful Gladiator's Ringmail Gauntlets", "=ds=#s9#, #a3#" };
+ { 30, 51500, "", "=q4=Wrathful Gladiator's Ringmail Leggings", "=ds=#s11#, #a3#" };
};
-
- AtlasLoot_Data["VaultofArchavonToravon425Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 2, 51128, "", "=q4=Sanctified Scourgelord Gauntlets", "=ds=#s9#, #a4#"};
- { 3, 51126, "", "=q4=Sanctified Scourgelord Legplates", "=ds=#s11#, #a4#"};
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["Tanking"]};
- { 6, 51132, "", "=q4=Sanctified Scourgelord Handguards", "=ds=#s9#, #a4#"};
- { 7, 51131, "", "=q4=Sanctified Scourgelord Legguards", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 2, 51128, "", "=q4=Sanctified Scourgelord Gauntlets", "=ds=#s9#, #a4#" };
+ { 3, 51126, "", "=q4=Sanctified Scourgelord Legplates", "=ds=#s11#, #a4#" };
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["Tanking"] };
+ { 6, 51132, "", "=q4=Sanctified Scourgelord Handguards", "=ds=#s9#, #a4#" };
+ { 7, 51131, "", "=q4=Sanctified Scourgelord Legguards", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
{ 10, 51169, "", "=q4=Sanctified Lightsworn Gloves", "=ds=#s9#, #a4#" };
{ 11, 51168, "", "=q4=Sanctified Lightsworn Greaves", "=ds=#s11#, #a4#" };
- { 13, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
+ { 13, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
{ 14, 51163, "", "=q4=Sanctified Lightsworn Gauntlets", "=ds=#s9#, #a4#" };
{ 15, 51161, "", "=q4=Sanctified Lightsworn Legplates", "=ds=#s11#, #a4#" };
- { 16, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5="..AL["DPS"]};
- { 17, 51414, "", "=q4=Wrathful Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#"};
- { 18, 51416, "", "=q4=Wrathful Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#"};
- { 24, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 25, 51469, "", "=q4=Wrathful Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#"};
- { 26, 51471, "", "=q4=Wrathful Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#"};
- { 28, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 29, 51475, "", "=q4=Wrathful Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#"};
- { 30, 51477, "", "=q4=Wrathful Gladiator's Scaled Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonToravon325Man";
- Next = "VaultofArchavonToravon525Man";
+ { 16, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], "=q5=" .. AL["DPS"] };
+ { 17, 51414, "", "=q4=Wrathful Gladiator's Dreadplate Gauntlets", "=ds=#s9#, #a4#" };
+ { 18, 51416, "", "=q4=Wrathful Gladiator's Dreadplate Legguards", "=ds=#s11#, #a4#" };
+ { 24, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Holy"] };
+ { 25, 51469, "", "=q4=Wrathful Gladiator's Ornamented Gloves", "=ds=#s9#, #a4#" };
+ { 26, 51471, "", "=q4=Wrathful Gladiator's Ornamented Legplates", "=ds=#s11#, #a4#" };
+ { 28, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Retribution"] };
+ { 29, 51475, "", "=q4=Wrathful Gladiator's Scaled Gauntlets", "=ds=#s9#, #a4#" };
+ { 30, 51477, "", "=q4=Wrathful Gladiator's Scaled Legguards", "=ds=#s11#, #a4#" };
};
-
- AtlasLoot_Data["VaultofArchavonToravon525Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5=" .. AL["Protection"] };
{ 2, 51172, "", "=q4=Sanctified Lightsworn Handguards", "=ds=#s9#, #a4#" };
{ 3, 51171, "", "=q4=Sanctified Lightsworn Legguards", "=ds=#s11#, #a4#" };
- { 5, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 6, 51213, "", "=q4=Ymirjar Lord's Gauntlets", "=ds=#s9#, #a4#"};
- { 7, 51211, "", "=q4=Ymirjar Lord's Legplates", "=ds=#s11#, #a4#"};
- { 9, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Protection"]};
- { 10, 51217, "", "=q4=Ymirjar Lord's Handguards", "=ds=#s9#, #a4#"};
- { 11, 51216, "", "=q4=Ymirjar Lord's Legguards", "=ds=#s11#, #a4#"};
- { 20, 0, "INV_Box_01", "=q6="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["DPS"]};
- { 21, 51542, "", "=q4=Wrathful Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#"};
- { 22, 51544, "", "=q4=Wrathful Gladiator's Plate Legguards", "=ds=#s11#, #a4#"};
- Prev = "VaultofArchavonToravon425Man";
- Next = "VaultofArchavonToravon625Man";
- };
-
- AtlasLoot_Data["VaultofArchavonToravon625Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Cloth"]};
- { 2, 51329, "", "=q4=Wrathful Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#"};
- { 3, 51327, "", "=q4=Wrathful Gladiator's Cord of Dominance", "=ds=#s10#, #a1#"};
- { 4, 51328, "", "=q4=Wrathful Gladiator's Treads of Dominance", "=ds=#s12#, #a1#"};
- { 6, 51367, "", "=q4=Wrathful Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#"};
- { 7, 51365, "", "=q4=Wrathful Gladiator's Cord of Salvation", "=ds=#s10#, #a1#"};
- { 8, 51366, "", "=q4=Wrathful Gladiator's Treads of Salvation", "=ds=#s12#, #a1#"};
- { 10, 51339, "", "=q4=Wrathful Gladiator's Cuffs of Alacrity", "=ds=#s8#, #a1#"};
- { 11, 51337, "", "=q4=Wrathful Gladiator's Cord of Alacrity", "=ds=#s10#, #a1#"};
- { 12, 51338, "", "=q4=Wrathful Gladiator's Treads of Alacrity", "=ds=#s12#, #a1#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Leather"]};
- { 17, 51345, "", "=q4=Wrathful Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#"};
- { 18, 51343, "", "=q4=Wrathful Gladiator's Belt of Dominance", "=ds=#s10#, #a2#"};
- { 19, 51344, "", "=q4=Wrathful Gladiator's Boots of Dominance", "=ds=#s12#, #a2#"};
- { 21, 51342, "", "=q4=Wrathful Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#"};
- { 22, 51340, "", "=q4=Wrathful Gladiator's Belt of Salvation", "=ds=#s10#, #a2#"};
- { 23, 51341, "", "=q4=Wrathful Gladiator's Boots of Salvation", "=ds=#s12#, #a2#"};
- { 25, 51370, "", "=q4=Wrathful Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#"};
- { 26, 51368, "", "=q4=Wrathful Gladiator's Belt of Triumph", "=ds=#s10#, #a2#"};
- { 27, 51369, "", "=q4=Wrathful Gladiator's Boots of Triumph", "=ds=#s12#, #a2#"};
- Prev = "VaultofArchavonToravon525Man";
- Next = "VaultofArchavonToravon725Man";
- };
-
- AtlasLoot_Data["VaultofArchavonToravon725Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Mail"]};
- { 2, 51376, "", "=q4=Wrathful Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#"};
- { 3, 51374, "", "=q4=Wrathful Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#"};
- { 4, 51375, "", "=q4=Wrathful Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#"};
- { 6, 51373, "", "=q4=Wrathful Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#"};
- { 7, 51371, "", "=q4=Wrathful Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#"};
- { 8, 51372, "", "=q4=Wrathful Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#"};
- { 10, 51352, "", "=q4=Wrathful Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#"};
- { 11, 51350, "", "=q4=Wrathful Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#"};
- { 12, 51351, "", "=q4=Wrathful Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Plate"]};
- { 17, 51361, "", "=q4=Wrathful Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#"};
- { 18, 51359, "", "=q4=Wrathful Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#"};
- { 19, 51360, "", "=q4=Wrathful Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#"};
- { 21, 51364, "", "=q4=Wrathful Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#"};
- { 22, 51362, "", "=q4=Wrathful Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#"};
- { 23, 51363, "", "=q4=Wrathful Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#"};
- Prev = "VaultofArchavonToravon625Man";
- Next = "VaultofArchavonToravon825Man";
- };
-
- AtlasLoot_Data["VaultofArchavonToravon825Man"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Back"]};
- { 2, 51334, "", "=q4=Wrathful Gladiator's Cloak of Ascendancy", "=ds=#s4#"};
- { 3, 51348, "", "=q4=Wrathful Gladiator's Cloak of Deliverance", "=ds=#s4#"};
- { 4, 51330, "", "=q4=Wrathful Gladiator's Cloak of Dominance", "=ds=#s4#"};
- { 5, 51346, "", "=q4=Wrathful Gladiator's Cloak of Salvation", "=ds=#s4#"};
- { 6, 51332, "", "=q4=Wrathful Gladiator's Cloak of Subjugation", "=ds=#s4#"};
- { 7, 51354, "", "=q4=Wrathful Gladiator's Cloak of Triumph", "=ds=#s4#"};
- { 8, 51356, "", "=q4=Wrathful Gladiator's Cloak of Victory", "=ds=#s4#"};
- { 11, 49426, "", "=q4=Emblem of Frost", "=ds=#e15#", "", "100%"};
- { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", ""};
- { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", ""};
- { 16, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Neck"]};
- { 17, 51335, "", "=q4=Wrathful Gladiator's Pendant of Ascendancy", "=ds=#s2#"};
- { 18, 51349, "", "=q4=Wrathful Gladiator's Pendant of Deliverance", "=ds=#s2#"};
- { 19, 51331, "", "=q4=Wrathful Gladiator's Pendant of Dominance", "=ds=#s2#"};
- { 20, 51347, "", "=q4=Wrathful Gladiator's Pendant of Salvation", "=ds=#s2#"};
- { 21, 51333, "", "=q4=Wrathful Gladiator's Pendant of Subjugation", "=ds=#s2#"};
- { 22, 51353, "", "=q4=Wrathful Gladiator's Pendant of Sundering", "=ds=#s2#"};
- { 23, 51355, "", "=q4=Wrathful Gladiator's Pendant of Triumph", "=ds=#s2#"};
- { 24, 51357, "", "=q4=Wrathful Gladiator's Pendant of Victory", "=ds=#s2#"};
- { 26, 0, "INV_Box_01", "=q6="..AL["PvP Non-Set Epics"], "=q5="..BabbleInventory["Ring"]};
- { 27, 51336, "", "=q4=Wrathful Gladiator's Band of Dominance", "=ds=#s13#"};
- { 28, 51358, "", "=q4=Wrathful Gladiator's Band of Triumph", "=ds=#s13#"};
- Prev = "VaultofArchavonToravon725Man";
- };
-
- -----------------
- --- Naxxramas ---
- -----------------
-
- -------------------------
- --- Construct Quarter ---
- -------------------------
-
- AtlasLoot_Data["Naxx80Patchwerk"] = {
- { 1, 39272, "", "=q4=Drape of Surgery", "=ds=#s4#", "", "10%"};
- { 2, 39273, "", "=q4=Sullen Cloth Boots", "=ds=#s12#, #a1#", "", "10%"};
- { 3, 39275, "", "=q4=Contagion Gloves", "=ds=#s9#, #a2#", "", "10%"};
- { 4, 39274, "", "=q4=Retcher's Shoulderpads", "=ds=#s3#, #a3#", "", "10%"};
- { 5, 39267, "", "=q4=Abomination Shoulderblades", "=ds=#s3#, #a4#", "", "13%"};
- { 6, 39262, "", "=q4=Gauntlets of Combined Strength", "=ds=#s9#, #a4#", "", "24%"};
- { 7, 39261, "", "=q4=Tainted Girdle of Mending", "=ds=#s10#, #a4#", "", "13%"};
- { 8, 39271, "", "=q4=Blade of Dormant Memories", "=ds=#h3#, #w4#", "", "10%"};
- { 9, 39270, "", "=q4=Hatestrike", "=ds=#h1#, #w10#", "", "13%"};
- Next = "Naxx80Grobbulus";
- };
-
- AtlasLoot_Data["Naxx80Patchwerk25Man"] = {
- { 1, 40271, "", "=q4=Sash of Solitude", "=ds=#s10#, #a1#", "", "19%"};
- { 2, 40269, "", "=q4=Boots of Persuasion", "=ds=#s12#, #a1#", "", "9%"};
- { 3, 40260, "", "=q4=Belt of the Tortured", "=ds=#s10#, #a2#", "", "9%"};
- { 4, 40270, "", "=q4=Boots of Septic Wounds", "=ds=#s12#, #a2#", "", "9%"};
- { 5, 40262, "", "=q4=Gloves of Calculated Risk", "=ds=#s9#, #a3#", "", "9%"};
- { 6, 40272, "", "=q4=Girdle of the Gambit", "=ds=#s10#, #a3#", "", "9%"};
- { 7, 40261, "", "=q4=Crude Discolored Battlegrips", "=ds=#s9#, #a4#", "", "9%"};
- { 8, 40263, "", "=q4=Fleshless Girdle", "=ds=#s10#. #a4#", "", "19%"};
- { 9, 40259, "", "=q4=Waistguard of Divine Grace", "=ds=#s10#, #a4#", "", "9%"};
- { 10, 40071, "", "=q4=Chains of Adoration", "=ds=#s2#", "", "11%"};
- { 11, 40065, "", "=q4=Fool's Trial", "=ds=#s2#", "", "11%"};
- { 12, 40069, "", "=q4=Heritage", "=ds=#s2#", "", "11%"};
- { 13, 40064, "", "=q4=Thunderstorm Amulet", "=ds=#s2#", "", "11%"};
- { 14, 40080, "", "=q4=Lost Jewel", "=ds=#s13#", "", "11%"};
- { 15, 40075, "", "=q4=Ruthlessness", "=ds=#s13#", "", "11%"};
- { 16, 40107, "", "=q4=Sand-Worn Band", "=ds=#s13#", "", "11%"};
- { 17, 40074, "", "=q4=Strong-Handed Ring", "=ds=#s13#", "", "12%"};
- { 18, 40273, "", "=q4=Surplus Limb", "=ds=#s15#", "", "9%"};
- { 19, 40267, "", "=q4=Totem of Hex", "=ds=#s16#, #w15#", "", "9%"};
- { 20, 40268, "", "=q4=Libram of Tolerance", "=ds=#s16#, #w16#", "", "19%"};
- { 21, 40264, "", "=q4=Split Greathammer", "=ds=#h1#, #w6#", "", "9%"};
- { 22, 40266, "", "=q4=Hero's Surrender", "=ds=#w8#", "", "9%"};
- { 23, 40265, "", "=q4=Arrowsong", "=ds=#w2#", "", "19%"};
- Next = "Naxx80Grobbulus25Man";
- };
-
- AtlasLoot_Data["Naxx80Grobbulus"] = {
- { 1, 39284, "", "=q4=Miasma Mantle", "=ds=#s3#, #a1#", "", "18%"};
- { 2, 39285, "", "=q4=Handgrips of Turmoil", "=ds=#s9#, #a1#", "", "10%"};
- { 3, 39283, "", "=q4=Putrescent Bands", "=ds=#s8#, #a2#", "", "10%"};
- { 4, 39279, "", "=q4=Blistered Belt of Decay", "=ds=#s10#, #a2#", "", "9%"};
- { 5, 39278, "", "=q4=Bands of Anxiety", "=ds=#s8#, #a3#", "", "9%"};
- { 6, 39280, "", "=q4=Leggings of Innumerable Barbs", "=ds=#s11#, #a4#", "", "10%"};
- { 7, 39282, "", "=q4=Bone-Linked Amulet", "=ds=#s2#", "", "10%"};
- { 8, 39277, "", "=q4=Sealing Ring of Grobbulus", "=ds=#s13#", "", "9%"};
- { 9, 39281, "", "=q4=Infection Repulser", "=ds=#h3#, #w6#", "", "19%"};
- { 10, 39276, "", "=q4=The Skull of Ruin", "=ds=#w8#", "", "9%"};
- Prev = "Naxx80Patchwerk";
- Next = "Naxx80Gluth1";
- };
-
- AtlasLoot_Data["Naxx80Grobbulus25Man"] = {
- { 1, 40250, "", "=q4=Aged Winter Cloak", "=ds=#s4#", "", "11%"};
- { 2, 40254, "", "=q4=Cloak of Averted Crisis", "=ds=#s4#", "", "11%"};
- { 3, 40252, "", "=q4=Cloak of the Shadowed Sun", "=ds=#s4#", "", "11%"};
- { 4, 40253, "", "=q4=Shawl of the Old Maid", "=ds=#s4#", "", "11%"};
- { 5, 40251, "", "=q4=Shroud of Luminosity", "=ds=#s4#", "", "11%"};
- { 6, 40287, "", "=q4=Cowl of Vanity", "=ds=#s1#, #a1#", "", "19%"};
- { 7, 40286, "", "=q4=Mantle of the Corrupted", "=ds=#s3#, #a1#", "", "1%"};
- { 8, 40351, "", "=q4=Mantle of the Fatigued Sage", "=ds=#s3#, #a1#", "", "19%"};
- { 9, 40289, "", "=q4=Sympathetic Amice", "=ds=#s3#, #a1#", "", "9%"};
- { 10, 40277, "", "=q4=Tunic of Indulgence", "=ds=#s5#, #a2#", "", "18%"};
- { 11, 40285, "", "=q4=Desecrated Past", "=ds=#s11#, #a2#", "", "9%"};
- { 12, 40288, "", "=q4=Spaulders of Incoherence", "=ds=#s3#, #a3#", "", "19%"};
- { 13, 40283, "", "=q4=Fallout Impervious Tunic", "=ds=#s5#, #a3#", "", "9%"};
- { 14, 40282, "", "=q4=Slime Stream Bands", "=ds=#s8#, #a3#", "", "9%"};
- { 15, 40275, "", "=q4=Depraved Linked Belt", "=ds=#s10#, #a3#", "", "9%"};
- { 16, 40279, "", "=q4=Chestguard of the Exhausted", "=ds=#s5#, #a4#", "", "9%"};
- { 17, 40274, "", "=q4=Bracers of Liberation", "=ds=#s8#, #a4#", "", "18%"};
- { 18, 40278, "", "=q4=Girdle of Chivalry", "=ds=#s10#, #a4#", "", "9%"};
- { 19, 40257, "", "=q4=Defender's Code", "=ds=#s14#", "", "11%"};
- { 20, 40255, "", "=q4=Dying Curse", "=ds=#s14#", "", "11%"};
- { 21, 40258, "", "=q4=Forethought Talisman", "=ds=#s14#", "", "11%"};
- { 22, 40256, "", "=q4=Grim Toll", "=ds=#s14#", "", "11%"};
- { 23, 40281, "", "=q4=Twilight Mist", "=ds=#h1#, #w4#", "", "19%"};
- { 24, 40280, "", "=q4=Origin of Nightmares", "=ds=#w9#", "", "9%"};
- { 25, 40284, "", "=q4=Plague Igniter", "=ds=#w12#", "", "9%"};
- Prev = "Naxx80Patchwerk25Man";
- Next = "Naxx80Gluth125Man";
- };
-
- AtlasLoot_Data["Naxx80Gluth1"] = {
- { 1, 39272, "", "=q4=Drape of Surgery", "=ds=#s4#", "", "10%"};
- { 2, 39284, "", "=q4=Miasma Mantle", "=ds=#s3#, #a1#", "", "18%"};
- { 3, 39396, "", "=q4=Gown of Blaumeux", "=ds=#s5#, #a1#", "", "0.43%"};
- { 4, 39309, "", "=q4=Leggings of the Instructor", "=ds=#s11#, #a1#", "", "10%"};
- { 5, 39237, "", "=q4=Spaulders of Resumed Battle", "=ds=#s3#, #a2#", "", "10%"};
- { 6, 39279, "", "=q4=Blistered Belt of Decay", "=ds=#s10#, #a2#", "", "9%"};
- { 7, 39191, "", "=q4=Splint-Bound Leggings", "=ds=#s11#, #a2#", "", "11%"};
- { 8, 39215, "", "=q4=Boots of the Follower", "=ds=#s12#, #a2#", "", "11%"};
- { 9, 39294, "", "=q4=Arc-Scorched Helmet", "=ds=#s1#, #a3#", "", "9%"};
- { 10, 39248, "", "=q4=Tunic of the Lost Pack", "=ds=#s5#, #a3#", "", "10%"};
- { 11, 39194, "", "=q4=Rusted-Link Spiked Gauntlets", "=ds=#s9#, #a3#", "", "10%"};
- { 12, 39251, "", "=q4=Necrogenic Belt", "=ds=#s10#, #a3#", "", "10%"};
- { 13, 39379, "", "=q4=Spectral Rider's Girdle", "=ds=#s10#, #a3#", "", "10%"};
- { 14, 39188, "", "=q4=Chivalric Chestguard", "=ds=#s5#, #a4#", "", "10%"};
- { 15, 39345, "", "=q4=Girdle of the Ascended Phantom", "=ds=#s10#, #a4#", "", "20%"};
- { 16, 39146, "", "=q4=Collar of Dissolution", "=ds=#s2#", "", "10%"};
- { 17, 39232, "", "=q4=Pendant of Lost Vocations", "=ds=#s2#", "", "10%"};
- { 18, 39193, "", "=q4=Band of Neglected Pleas", "=ds=#s13#", "", "11%"};
- { 19, 39388, "", "=q4=Spirit-World Glass", "=ds=#s14#", "", "10%"};
- { 20, 39200, "", "=q4=Grieving Spellblade", "=ds=#h3#, #w10#", "", "11%"};
- { 21, 39344, "", "=q4=Slayer of the Lifeless", "=ds=#h1#, #w10#", "", "10%"};
- { 22, 39281, "", "=q4=Infection Repulser", "=ds=#h3#, #w6#", "", "19%"};
- { 23, 39394, "", "=q4=Charmed Cierge", "=ds=#w9#", "", "0.44%"};
- Prev = "Naxx80Grobbulus";
- Next = "Naxx80Gluth2";
- };
-
- AtlasLoot_Data["Naxx80Gluth2"] = {
- { 1, 40622, "", "=q4=Spaulders of the Lost Conqueror", "=ds=#e15#", "", "29%"};
- { 2, 40623, "", "=q4=Spaulders of the Lost Protector", "=ds=#e15#", "", "30%"};
- { 3, 40624, "", "=q4=Spaulders of the Lost Vanquisher", "=ds=#e15#", "", "38%"};
- { 4, 40610, "", "=q4=Chestguard of the Lost Conqueror", "=ds=#e15#", "", "9%"};
- { 5, 40611, "", "=q4=Chestguard of the Lost Protector", "=ds=#e15#", "", "9%"};
- { 6, 40612, "", "=q4=Chestguard of the Lost Vanquisher", "=ds=#e15#", "", "12%"};
- { 7, 40619, "", "=q4=Leggings of the Lost Conqueror", "=ds=#e15#", "", "27%"};
- { 8, 40620, "", "=q4=Leggings of the Lost Protector", "=ds=#e15#", "", "28%"};
- { 9, 40621, "", "=q4=Leggings of the Lost Vanquisher", "=ds=#e15#", "", "36%"};
- Prev = "Naxx80Gluth1";
- Next = "Naxx80Thaddius";
- };
-
- AtlasLoot_Data["Naxx80Gluth125Man"] = {
- { 1, 40247, "", "=q4=Cowl of Innocent Delight", "=ds=#s1#, #a1#", "", "9%"};
- { 2, 40289, "", "=q4=Sympathetic Amice", "=ds=#s3#, #a1#", "", "9%"};
- { 3, 40602, "", "=q4=Robes of Mutation", "=ds=#s5#, #a1#", "", "19%"};
- { 4, 39733, "", "=q4=Gloves of Token Respect", "=ds=#s9#, #a1#", "", "19%"};
- { 5, 40303, "", "=q4=Wraps of the Persecuted", "=ds=#s9#, #a1#", "", "9%"};
- { 6, 40326, "", "=q4=Boots of Forlorn Wishes", "=ds=#s12#, #a1#", "", "20%"};
- { 7, 40296, "", "=q4=Cover of Silence", "=ds=#s1#, #a2#", "", "8%"};
- { 8, 39768, "", "=q4=Cowl of the Perished", "=ds=#s1#, #a2#", "", "9%"};
- { 9, 40319, "", "=q4=Chestpiece of Suspicion", "=ds=#s5#, #a2#", "", "9%"};
- { 10, 40260, "", "=q4=Belt of the Tortured", "=ds=#s10#, #a2#", "", "9%"};
- { 11, 40205, "", "=q4=Stalk-Skin Belt", "=ds=#s10#, #a2#", "", "9%"};
- { 12, 40270, "", "=q4=Boots of Septic Wounds", "=ds=#s12#, #a2#", "", "9%"};
- { 13, 40193, "", "=q4=Tunic of Masked Suffering", "=ds=#s5#, #a3#", "", "20%"};
- { 14, 40209, "", "=q4=Bindings of the Decrepit", "=ds=#s8#, #a3#", "", "9%"};
- { 15, 40302, "", "=q4=Benefactor's Gauntlets", "=ds=#s9#, #a3#", "", "8%"};
- { 16, 39718, "", "=q4=Corpse Scarab Handguards", "=ds=#s9#, #a3#", "", "9%"};
- { 17, 40242, "", "=q4=Grotesque Handgrips", "=ds=#s9#, #a3#", "", "19%"};
- { 18, 39760, "", "=q4=Helm of Diminished Pride", "=ds=#s1#, #a4#", "", "18%"};
- { 19, 40185, "", "=q4=Shoulderguards of Opportunity", "=ds=#s3#, #a4#", "", "9%"};
- { 20, 40203, "", "=q4=Breastplate of Tormented Rage", "=ds=#s5#, #a4#", "", "18%"};
- { 21, 40332, "", "=q4=Abetment Bracers", "=ds=#s8#, #a4#", "", "19%"};
- { 22, 40188, "", "=q4=Gauntlets of the Disobediant", "=ds=#s9#, #a4#", "", "9%"};
- { 23, 40259, "", "=q4=Waistguard of Divine Grace", "=ds=#s10#, #a4#", "", "9%"};
- { 24, 40204, "", "=q4=Legguards of the Apostle", "=ds=#s11#, #a4#", "", "9%"};
- { 25, 39717, "", "=q4=Inexorable Sabatons", "=ds=#s12#, #a4#", "", "23%"};
- { 26, 40206, "", "=q4=Iron-Spring Jumpers", "=ds=#s12#, #a4#", "", "9%"};
- { 27, 40297, "", "=q4=Sabatons of Endurance", "=ds=#s12#, #a4#", "", "17%"};
- { 28, 40350, "", "=q4=Urn of Lost Memories", "=ds=#s15#", "", "1%"};
- { 29, 40191, "", "=q4=Libram of Radiance", "=ds=#s16#, #w16#", "", "9%"};
- Prev = "Naxx80Grobbulus25Man";
- Next = "Naxx80Gluth225Man";
- };
-
- AtlasLoot_Data["Naxx80Gluth225Man"] = {
- { 1, 40281, "", "=q4=Twilight Mist", "=ds=#h1#, #w4#", "", "19%"};
- { 2, 39714, "", "=q4=Webbed Death", "=ds=#h1#, #w4#", "", "24%"};
- { 3, 39730, "", "=q4=Widow's Fury", "=ds=#h1#, #w10#", "", "9%"};
- { 4, 40343, "", "=q4=Armageddon", "=ds=#h2#, #w10#", "", "1%"};
- { 5, 40239, "", "=q4=The Hand of Nerub", "=ds=#h4#, #w13#", "", "19%"};
- { 6, 40280, "", "=q4=Origin of Nightmares", "=ds=#w9#", "", "9%"};
- { 7, 39716, "", "=q4=Shield of Assimilation", "=ds=#w8#", "", "24%"};
- { 8, 40265, "", "=q4=Arrowsong", "=ds=#w2#", "", "19%"};
- { 9, 40346, "", "=q4=Final Voyage", "=ds=#w3#", "", "1%"};
- { 16, 40637, "", "=q4=Mantle of the Lost Conqueror", "=ds=#e15#", "", "57%"};
- { 17, 40638, "", "=q4=Mantle of the Lost Protector", "=ds=#e15#", "", "58%"};
- { 18, 40639, "", "=q4=Mantle of the Lost Vanquisher", "=ds=#e15#", "", "76%"};
- { 19, 40625, "", "=q4=Breastplate of the Lost Conqueror", "=ds=#e15#", "", "17%"};
- { 20, 40626, "", "=q4=Breastplate of the Lost Protector", "=ds=#e15#", "", "19%"};
- { 21, 40627, "", "=q4=Breastplate of the Lost Vanquisher", "=ds=#e15#", "", "24%"};
- { 22, 40634, "", "=q4=Legplates of the Lost Conqueror", "=ds=#e15#", "", "56%"};
- { 23, 40635, "", "=q4=Legplates of the Lost Protector", "=ds=#e15#", "", "58%"};
- { 24, 40636, "", "=q4=Legplates of the Lost Vanquisher", "=ds=#e15#", "", "76%"};
- Prev = "Naxx80Gluth125Man";
- Next = "Naxx80Thaddius25Man";
- };
-
- AtlasLoot_Data["Naxx80Thaddius"] = {
- { 1, 39295, "", "=q4=Cowl of Sheet Lightning", "=ds=#s1#, #a1#", "", "9%"};
- { 2, 39294, "", "=q4=Arc-Scorched Helmet", "=ds=#s1#, #a3#", "", "9%"};
- { 3, 39293, "", "=q4=Blackened Legplates of Feugen", "=ds=#s11#, #a4#", "", "9%"};
- { 4, 39292, "", "=q4=Repelling Charge", "=ds=#s14#", "", "9%"};
- { 5, 39291, "", "=q4=Torment of the Banished", "=ds=#h1#, #w10#", "", "9%"};
- { 16, 40619, "", "=q4=Leggings of the Lost Conqueror", "=ds=#e15#", "", "27%"};
- { 17, 40620, "", "=q4=Leggings of the Lost Protector", "=ds=#e15#", "", "28%"};
- { 18, 40621, "", "=q4=Leggings of the Lost Vanquisher", "=ds=#e15#", "", "36%"};
- Prev = "Naxx80Gluth2";
- };
-
- AtlasLoot_Data["Naxx80Thaddius25Man"] = {
- { 1, 40303, "", "=q4=Wraps of the Persecuted", "=ds=#s9#, #a1#", "", "9%"};
- { 2, 40301, "", "=q4=Cincture of Polarity", "=ds=#s10#, #a1#", "", "9%"};
- { 3, 40296, "", "=q4=Cover of Silence", "=ds=#s1#, #a2#", "", "8%"};
- { 4, 40304, "", "=q4=Headpiece of Fungal Bloom", "=ds=#s1#, #a2#", "", "9%"};
- { 5, 40299, "", "=q4=Pauldrons of the Abandoned", "=ds=#s3#, #a3#", "", "9%"};
- { 6, 40302, "", "=q4=Benefactor's Gauntlets", "=ds=#s9#, #a3#", "", "8%"};
- { 7, 40298, "", "=q4=Faceguard of the Succumbed", "=ds=#s1#, #a4#", "", "9%"};
- { 8, 40294, "", "=q4=Riveted Abomination Leggings", "=ds=#s11#, #a4#", "", "8%"};
- { 9, 40297, "", "=q4=Sabatons of Endurance", "=ds=#s12#, #a4#", "", "17%"};
- { 10, 40300, "", "=q4=Spire of Sunset", "=ds=#w9#", "", "9%"};
- { 16, 40634, "", "=q4=Legplates of the Lost Conqueror", "=ds=#e15#", "", "56%"};
- { 17, 40635, "", "=q4=Legplates of the Lost Protector", "=ds=#e15#", "", "58%"};
- { 18, 40636, "", "=q4=Legplates of the Lost Vanquisher", "=ds=#e15#", "", "76%"};
- Prev = "Naxx80Gluth225Man";
- };
-
- ------------------------
- --- Arachnid Quarter ---
- ------------------------
-
- AtlasLoot_Data["Naxx80AnubRekhan"] = {
- { 1, 39192, "", "=q4=Gloves of Dark Gestures", "=ds=#s9#, #a1#", "", "10%"};
- { 2, 39190, "", "=q4=Agonal Sash", "=ds=#s10#, #a1#", "", "10%"};
- { 3, 39191, "", "=q4=Splint-Bound Leggings", "=ds=#s11#, #a2#", "", "11%"};
- { 4, 39189, "", "=q4=Boots of Persistence", "=ds=#s12#, #a3#", "", "10%"};
- { 5, 39188, "", "=q4=Chivalric Chestguard", "=ds=#s5#, #a4#", "", "10%"};
- { 6, 39139, "", "=q4=Ravaging Sabatons", "=ds=#s12#, #a4#", "", "11%"};
- { 7, 39146, "", "=q4=Collar of Dissolution", "=ds=#s2#", "", "10%"};
- { 8, 39193, "", "=q4=Band of Neglected Pleas", "=ds=#s13#", "", "11%"};
- { 9, 39141, "", "=q4=Deflection Band", "=ds=#s13#", "", "10%"};
- { 10, 39140, "", "=q4=Knife of Incision", "=ds=#h1#, #w4#", "", "11%"};
- Next = "Naxx80Faerlina";
- };
-
- AtlasLoot_Data["Naxx80AnubRekhan25Man"] = {
- { 1, 39719, "", "=q4=Mantle of the Locusts", "=ds=#s3#, #a1#", "", "9%"};
- { 2, 39721, "", "=q4=Sash of the Parlor", "=ds=#s10#, #a1#", "", "19%"};
- { 3, 39720, "", "=q4=Leggings of Atrophy", "=ds=#s11#, #a1#", "", "9%"};
- { 4, 39722, "", "=q4=Swarm Bindings", "=ds=#s8#, #a2#", "", "9%"};
- { 5, 39701, "", "=q4=Dawnwalkers", "=ds=#s12#, #a2#", "", "19%"};
- { 6, 39702, "", "=q4=Arachnoid Gold Band", "=ds=#s8#, #a3#", "", "8%"};
- { 7, 39718, "", "=q4=Corpse Scarab Handguards", "=ds=#s9#, #a3#", "", "9%"};
- { 8, 39704, "", "=q4=Pauldrons of Unnatural Death", "=ds=#s3#, #a4#", "", "19%"};
- { 9, 39703, "", "=q4=Rescinding Grips", "=ds=#s9#, #a4#", "", "19%"};
- { 10, 39717, "", "=q4=Inexorable Sabatons", "=ds=#s12#, #a4#", "", "23%"};
- { 11, 39706, "", "=q4=Sabatons of Sudden Reprisal", "=ds=#s12#, #a4#", "", "9%"};
- { 12, 40071, "", "=q4=Chains of Adoration", "=ds=#s2#", "", "11%"};
- { 13, 40065, "", "=q4=Fool's Trial", "=ds=#s2#", "", "11%"};
- { 14, 40069, "", "=q4=Heritage", "=ds=#s2#", "", "11%"};
- { 15, 40064, "", "=q4=Thunderstorm Amulet", "=ds=#s2#", "", "11%"};
- { 16, 40080, "", "=q4=Lost Jewel", "=ds=#s13#", "", "11%"};
- { 17, 40075, "", "=q4=Ruthlessness", "=ds=#s13#", "", "11%"};
- { 18, 40107, "", "=q4=Sand-Worn Band", "=ds=#s13#", "", "11%"};
- { 19, 40074, "", "=q4=Strong-Handed Ring", "=ds=#s13#", "", "12%"};
- { 20, 39714, "", "=q4=Webbed Death", "=ds=#h1#, #w4#", "", "24%"};
- { 21, 40208, "", "=q4=Cryptfiend's Bite", "=ds=#w7#", "", "10%"};
- { 22, 39716, "", "=q4=Shield of Assimilation", "=ds=#w8#", "", "24%"};
- { 23, 39712, "", "=q4=Gemmed Wand of the Nerubians", "=ds=#w12#", "", "24%"};
- Next = "Naxx80Faerlina25Man";
- };
-
- AtlasLoot_Data["Naxx80Faerlina"] = {
- { 1, 39216, "", "=q4=Sash of Mortal Desire", "=ds=#s10#, #a1#", "", "10%"};
- { 2, 39215, "", "=q4=Boots of the Follower", "=ds=#s12#, #a2#", "", "11%"};
- { 3, 39196, "", "=q4=Boots of the Worshiper", "=ds=#s12#, #a2#", "", "11%"};
- { 4, 39217, "", "=q4=Avenging Combat Leggings", "=ds=#s11#, #a3#", "", "11%"};
- { 5, 39194, "", "=q4=Rusted-Link Spiked Gauntlets", "=ds=#s9#, #a3#", "", "10%"};
- { 6, 39198, "", "=q4=Frostblight Pauldrons", "=ds=#s3#, #a4#", "", "10%"};
- { 7, 39195, "", "=q4=Bracers of Lost Sentiments", "=ds=#s8#, #a4#", "", "11%"};
- { 8, 39197, "", "=q4=Gauntlets of the Master", "=ds=#s9#, #a4#", "", "10%"};
- { 9, 39199, "", "=q4=Watchful Eye", "=ds=#s15#", "", "11%"};
- { 10, 39200, "", "=q4=Grieving Spellblade", "=ds=#h3#, #w10#", "", "11%"};
- Prev = "Naxx80AnubRekhan";
- Next = "Naxx80Maexxna";
- };
-
- AtlasLoot_Data["Naxx80Faerlina25Man"] = {
- { 1, 39732, "", "=q4=Faerlina's Madness", "=ds=#s1#, #a1#", "", "8%"};
- { 2, 39731, "", "=q4=Punctilious Bindings", "=ds=#s8#, #a1#", "", "9%"};
- { 3, 39733, "", "=q4=Gloves of Token Respect", "=ds=#s9#, #a1#", "", "19%"};
- { 4, 39735, "", "=q4=Belt of False Dignity", "=ds=#s10#, #a1#", "", "9%"};
- { 5, 39756, "", "=q4=Tunic of Prejudice", "=ds=#s5#, #a2#", "", "19%"};
- { 6, 39727, "", "=q4=Dislocating Handguards", "=ds=#s9#, #a2#", "", "10%"};
- { 7, 39724, "", "=q4=Cult's Chestguard", "=ds=#s5#, #a3#"};
- { 8, 39734, "", "=q4=Atonement Greaves", "=ds=#s12#, #a3#", "", "8%"};
- { 9, 39723, "", "=q4=Fire-Scorched Greathelm", "=ds=#s1#, #a4#", "", "23%"};
- { 10, 39725, "", "=q4=Epaulets of the Grieving Servant", "=ds=#s3#, #a4#", "", "11%"};
- { 11, 39729, "", "=q4=Bracers of the Tyrant", "=ds=#s8#, #a4#", "", "8%"};
- { 12, 39726, "", "=q4=Callous-Hearted Gauntlets", "=ds=#s9#, #a4#", "", "24%"};
- { 13, 40071, "", "=q4=Chains of Adoration", "=ds=#s2#", "", "11%"};
- { 14, 40065, "", "=q4=Fool's Trial", "=ds=#s2#", "", "11%"};
- { 15, 40069, "", "=q4=Heritage", "=ds=#s2#", "", "11%"};
- { 16, 40064, "", "=q4=Thunderstorm Amulet", "=ds=#s2#", "", "11%"};
- { 17, 40080, "", "=q4=Lost Jewel", "=ds=#s13#", "", "11%"};
- { 18, 40075, "", "=q4=Ruthlessness", "=ds=#s13#", "", "11%"};
- { 19, 40107, "", "=q4=Sand-Worn Band", "=ds=#s13#", "", "11%"};
- { 20, 40108, "", "=q4=Seized Beauty", "=ds=#s13#", "", "11%"};
- { 21, 40074, "", "=q4=Strong-Handed Ring", "=ds=#s13#", "", "12%"};
- { 22, 39757, "", "=q4=Idol of Worship", "=ds=#s16#, #w14#", "", "9%"};
- { 23, 39728, "", "=q4=Totem of Misery", "=ds=#s16#, #w15#", "", "9%"};
- { 24, 39730, "", "=q4=Widow's Fury", "=ds=#h1#, #w10#", "", "9%"};
- Prev = "Naxx80AnubRekhan25Man";
- Next = "Naxx80Maexxna25Man";
- };
-
- AtlasLoot_Data["Naxx80Maexxna"] = {
- { 1, 39225, "", "=q4=Cloak of Armed Strife", "=ds=#s4#", "", "10%"};
- { 2, 39230, "", "=q4=Spaulders of the Monstrosity", "=ds=#s3#, #a2#", "", "11%"};
- { 3, 39224, "", "=q4=Leggings of Discord", "=ds=#s11#, #a2#", "", "10%"};
- { 4, 39228, "", "=q4=Web Cocoon Grips", "=ds=#s9#, #a4#", "", "10%"};
- { 5, 39232, "", "=q4=Pendant of Lost Vocations", "=ds=#s2#", "", "10%"};
- { 6, 39231, "", "=q4=Timeworn Silken Band", "=ds=#s13#", "", "10%"};
- { 7, 39229, "", "=q4=Embrace of the Spider", "=ds=#s14#", "", "11%"};
- { 8, 39226, "", "=q4=Maexxna's Femur", "=ds=#h1#, #w6#", "", "10%"};
- { 9, 39221, "", "=q4=Wraith Spear", "=ds=#w7#", "", "10%"};
- { 10, 39233, "", "=q4=Aegis of Damnation", "=ds=#w8#", "", "10%"};
- Prev = "Naxx80Faerlina";
- };
-
- AtlasLoot_Data["Naxx80Maexxna25Man"] = {
- { 1, 40250, "", "-q4-Aged Winter Cloak", "=ds=#s4#", "", "11%"};
- { 2, 40254, "", "=q4=Cloak of Averted Crisis", "=ds=#s4#", "", "11%"};
- { 3, 40252, "", "=q4=Cloak of the Shadowed Sun", "=ds=#s4#", "", "11%"};
- { 4, 40253, "", "=q4=Shawl of the Old Maid", "=ds=#s4#", "", "11%"};
- { 5, 40251, "", "=q4=Shroud of Luminosity", "=ds=#s4#", "", "11%"};
- { 6, 40062, "", "=q4=Digested Silken Robes", "=ds=#s5#, #a1#", "", "9%"};
- { 7, 40060, "", "=q4=Distorted Limbs", "=ds=#s11#, #a1#", "", "9%"};
- { 8, 39768, "", "=q4=Cowl of the Perished", "=ds=#s1#, #a2#", "", "9%"};
- { 9, 40063, "", "=q4=Mantle of Shattered Kinship", "=ds=#s3#, #a2#", "", "9%"};
- { 10, 39765, "", "=q4=Sinner's Bindings", "=ds=#s8#, #a2#", "", "19%"};
- { 11, 39761, "", "=q4=Infectious Skitterer Leggings", "=ds=#s11#, #a2#", "", "8%"};
- { 12, 40061, "", "=q4=Quivering Tunic", "=ds=#s5#, #a3#", "", "19%"};
- { 13, 39762, "", "=q4=Torn Web Wrapping", "=ds=#s10#, #a3#", "", "9%"};
- { 14, 39760, "", "=q4=Helm of Diminished Pride", "=ds=#s1#, #a4#", "", "18%"};
- { 15, 39767, "", "=q4=Undiminished Battleplate", "=ds=#s5#, #a4#", "", "9%"};
- { 16, 39764, "", "=q4=Bindings of the Hapless Prey", "=ds=#s8#, #a4#", "", "9%"};
- { 17, 39759, "", "=q4=Ablative Chitin Girdle", "=ds=#s10#, #a4#", "", "8%"};
- { 18, 40257, "", "=q4=Defender's Code", "=ds=#s14#", "", "11%"};
- { 19, 40255, "", "=q4=Dying Curse", "=ds=#s14#", "", "11%"};
- { 20, 40258, "", "=q4=Forethought Talisman", "=ds=#s14#", "", "11%"};
- { 21, 40256, "", "=q4=Grim Toll", "=ds=#s14#", "", "11%"};
- { 22, 39766, "", "=q4=Matriarch's Spawn", "=ds=#s15#", "", "19%"};
- { 23, 39763, "", "=q4=Wraith Strike", "=ds=#h3#, #w13#", "", "9%"};
- { 24, 39758, "", "=q4=The Jawbone", "=ds=#h2#, #w6#", "", "9%"};
- Prev = "Naxx80Faerlina25Man";
- };
-
- ------------------------
- --- Military Quarter ---
- ------------------------
-
- AtlasLoot_Data["Naxx80Razuvious"] = {
- { 1, 39297, "", "=q4=Cloak of Darkening", "=ds=#s4#", "", "10%"};
- { 2, 39310, "", "=q4=Mantle of the Extensive Mind", "=ds=#s3#, #a1#", "", "10%"};
- { 3, 39309, "", "=q4=Leggings of the Instructor", "=ds=#s11#, #a1#", "", "10%"};
- { 4, 39299, "", "=q4=Rapid Attack Gloves", "=ds=#s9#, #a2#", "", "10%"};
- { 5, 39308, "", "=q4=Girdle of Lenience", "=ds=#s10#, #a2#", "", "10%"};
- { 6, 39307, "", "=q4=Iron Rings of Endurance", "=ds=#s8#, #a3#", "", "10%"};
- { 7, 39306, "", "=q4=Plated Gloves of Relief", "=ds=#s9#, #a4#", "", "10%"};
- { 8, 39298, "", "=q4=Waistguard of the Tutor", "=ds=#s10#, #a4#", "", "10%"};
- { 9, 39311, "", "=q4=Scepter of Murmuring Spirits", "=ds=#s15#", "", "10%"};
- { 10, 39296, "", "=q4=Accursed Bow of the Elite", "=ds=#w2#", "", "10%"};
- Next = "Naxx80Gothik";
- };
-
- AtlasLoot_Data["Naxx80Razuvious25Man"] = {
- { 1, 40325, "", "=q4=Bindings of the Expansive Mind", "=ds=#s8#, #a1#", "", "9%"};
- { 2, 40326, "", "=q4=Boots of Forlorn Wishes", "=ds=#s12#, #a1#", "", "20%"};
- { 3, 40305, "", "=q4=Spaulders of Egotism", "=ds=#s3#, #a2#", "", "8%"};
- { 4, 40319, "", "=q4=Chestpiece of Suspicion", "=ds=#s5#, #a2#", "", "9%"};
- { 5, 40323, "", "=q4=Esteemed Bindings", "=ds=#s8#, #a2#", "", "9%"};
- { 6, 40315, "", "=q4=Shoulderpads of Secret Arts", "=ds=#s3#, #a3#", "", "9%"};
- { 7, 40324, "", "=q4=Bands of Mutual Respect", "=ds=#s8#, #a3#", "", "9%"};
- { 8, 40327, "", "=q4=Girdle of Recuperation", "=ds=#s10#, #a3#", "", "9%"};
- { 9, 40306, "", "=q4=Bracers of the Unholy Knight", "=ds=#s8#, #a4#", "", "9%"};
- { 10, 40316, "", "=q4=Gauntlets of Guiding Touch", "=ds=#s9#, #a4#", "", "9%"};
- { 11, 40317, "", "=q4=Girdle of Razuvious", "=ds=#s10#, #a4#", "", "9%"};
- { 12, 40318, "", "=q4=Legplates of Double Strikes", "=ds=#s11#, #a4#", "", "9%"};
- { 13, 40320, "", "=q4=Faithful Steel Sabatons", "=ds=#s12#, #a4#", "", "9%"};
- { 14, 40071, "", "=q4=Chains of Adoration", "=ds=#s2#", "", "11%"};
- { 15, 40065, "", "=q4=Fool's Trial", "=ds=#s2#", "", "11%"};
- { 16, 40069, "", "=q4=Heritage", "=ds=#s2#", "", "11%"};
- { 17, 40064, "", "=q4=Thunderstorm Amulet", "=ds=#s2#", "", "11%"};
- { 18, 40080, "", "=q4=Lost Jewel", "=ds=#s13#", "", "11%"};
- { 19, 40075, "", "=q4=Ruthlessness", "=ds=#s13#", "", "11%"};
- { 20, 40107, "", "=q4=Sand-Worn Band", "=ds=#s13#", "", "11%"};
- { 21, 40074, "", "=q4=Strong-Handed Ring", "=ds=#s13#", "", "12%"};
- { 22, 40321, "", "=q4=Idol of the Shooting Star", "=ds=#s16#, #w14#", "", "9%"};
- { 23, 40322, "", "=q4=Totem of Dueling", "=ds=#s16#, #w15#", "", "9%"};
- Next = "Naxx80Gothik25Man";
- };
-
- AtlasLoot_Data["Naxx80Gothik"] = {
- { 1, 39390, "", "=q4=Resurgent Phantom Bindings", "=ds=#s8#, #a1#", "", "10%"};
- { 2, 39386, "", "=q4=Tunic of Dislocation", "=ds=#s5#, #a2#", "", "19%"};
- { 3, 39391, "", "=q4=Heinous Mail Chestguard", "=ds=#s5#, #a3#", "", "11%"};
- { 4, 39379, "", "=q4=Spectral Rider's Girdle", "=ds=#s10#, #a3#", "", "10%"};
- { 5, 39345, "", "=q4=Girdle of the Ascended Phantom", "=ds=#s10#, #a4#", "", "20%"};
- { 6, 39369, "", "=q4=Sabatons of Deathlike Gloom", "=ds=#s12#, #a4#", "", "10%"};
- { 7, 39392, "", "=q4=Veiled Amulet of Life", "=ds=#s2#", "", "10%"};
- { 8, 39389, "", "=q4=Signet of the Malevolent", "=ds=#s2#", "", "10%"};
- { 9, 39388, "", "=q4=Spirit-World Glass", "=ds=#s14#", "", "10%"};
- { 10, 39344, "", "=q4=Slayer of the Lifeless", "=ds=#h1#, #w10#", "", "10%"};
- Prev = "Naxx80Razuvious";
- Next = "Naxx80FourHorsemen";
- };
-
- AtlasLoot_Data["Naxx80Gothik25Man"] = {
- { 1, 40250, "", "-q4-Aged Winter Cloak", "=ds=#s4#", "", "11%"};
- { 2, 40254, "", "=q4=Cloak of Averted Crisis", "=ds=#s4#", "", "11%"};
- { 3, 40252, "", "=q4=Cloak of the Shadowed Sun", "=ds=#s4#", "", "11%"};
- { 4, 40253, "", "=q4=Shawl of the Old Maid", "=ds=#s4#", "", "11%"};
- { 5, 40251, "", "=q4=Shroud of Luminosity", "=ds=#s4#", "", "11%"};
- { 6, 40339, "", "=q4=Gothik's Cowl", "=ds=#s1#, #a1#", "", "19%"};
- { 7, 40338, "", "=q4=Bindings of Yearning", "=ds=#s8#, #a1#", "", "19%"};
- { 8, 40329, "", "=q4=Hood of the Exodus", "=ds=#s1#, #a2#", "", "9%"};
- { 9, 40341, "", "=q4=Shackled Cinch", "=ds=#s10#, #a2#", "", "9%"};
- { 10, 40333, "", "=q4=Leggings of Fleeting Moments", "=ds=#s11#, #a2#", "", "9%"};
- { 11, 40340, "", "=q4=Helm of Unleashed Energy", "=ds=#s1#, #a3#", "", "9%"};
- { 12, 40331, "", "=q4=Leggings of Failed Escape", "=ds=#s11#, #a3#", "", "9%"};
- { 13, 40328, "", "=q4=Helm of Vital Protection", "=ds=#s1#, #a4#", "", "9%"};
- { 14, 40334, "", "=q4=Burdened Shoulderplates", "=ds=#s3#, #a4#", "", "9%"};
- { 15, 40332, "", "=q4=Abetment Bracers", "=ds=#s8#, #a4#", "", "19%"};
- { 16, 40330, "", "=q4=Bracers of Unrelenting Attack", "=ds=#s8#, #a4#", "", "9%"};
- { 17, 40257, "", "=q4=Defender's Code", "=ds=#s14#", "", "11%"};
- { 18, 40255, "", "=q4=Dying Curse", "=ds=#s14#", "", "11%"};
- { 19, 40258, "", "=q4=Forethought Talisman", "=ds=#s14#", "", "11%"};
- { 20, 40256, "", "=q4=Grim Toll", "=ds=#s14#", "", "11%"};
- { 21, 40342, "", "=q4=Idol of Awakening", "=ds=#s16#, #w14#", "", "9%"};
- { 22, 40337, "", "=q4=Libram of Resurgence", "=ds=#s16#, #w16#", "", "19%"};
- { 23, 40336, "", "=q4=Life and Death", "=ds=#h3#, #w10#", "", "19%"};
- { 24, 40335, "", "=q4=Touch of Horror", "=ds=#w12#", "", "9%"};
- Prev = "Naxx80Razuvious25Man";
- Next = "Naxx80FourHorsemen25Man";
- };
-
- AtlasLoot_Data["Naxx80FourHorsemen"] = {
- { 1, 39396, "", "=q4=Gown of Blaumeux", "=ds=#s5#, #a1#", "", "12%"};
- { 2, 39397, "", "=q4=Pauldrons of Havoc", "=ds=#s3#, #a3#", "", "12%"};
- { 3, 39395, "", "=q4=Thane's Tainted Greathelm", "=ds=#s1#, #a4#", "", "12%"};
- { 4, 39393, "", "=q4=Claymore of Ancient Power", "=ds=#h2#, #w10#", "", "12%"};
- { 5, 39394, "", "=q4=Charmed Cierge", "=ds=#w9#", "", "12%"};
- { 16, 40610, "", "=q4=Chestguard of the Lost Conqueror", "=ds=#e15#", "", "18%"};
- { 17, 40611, "", "=q4=Chestguard of the Lost Protector", "=ds=#e15#", "", "19%"};
- { 18, 40612, "", "=q4=Chestguard of the Lost Vanquisher", "=ds=#e15#", "", "25%"};
- Prev = "Naxx80Gothik";
- };
-
- AtlasLoot_Data["Naxx80FourHorsemen25Man"] = {
- { 1, 40349, "", "=q4=Gloves of Peaceful Death", "=ds=#s9#, #a2#", "", "11%"};
- { 2, 40344, "", "=q4=Helm of the Grave", "=ds=#s1#, #a3#", "", "10%"};
- { 3, 40352, "", "=q4=Leggings of Voracious Shadows", "=ds=#s11#, #a3#", "", "10%"};
- { 4, 40347, "", "=q4=Zeliek's Gauntlets", "=ds=#s9#, #a4#", "", "8%"};
- { 5, 40350, "", "=q4=Urn of Lost Memories", "=ds=#s15#", "", "10%"};
- { 6, 40345, "", "=q4=Broken Promise", "=ds=#h1#, #w10#", "", "10%"};
- { 8, 40343, "", "=q4=Armageddon", "=ds=#h2#, #w10#", "", "9%"};
- { 7, 40348, "", "=q4=Damnation", "=ds=#w9#", "", "10%"};
- { 9, 40346, "", "=q4=Final Voyage", "=ds=#w3#", "", "10%"};
- { 16, 40625, "", "=q4=Breastplate of the Lost Conqueror", "=ds=#e15#", "", "30%"};
- { 17, 40626, "", "=q4=Breastplate of the Lost Protector", "=ds=#e15#", "", "30%"};
- { 18, 40627, "", "=q4=Breastplate of the Lost Vanquisher", "=ds=#e15#", "", "40%"};
- Prev = "Naxx80Gothik25Man";
- };
-
- ----------------------
- --- Plague Quarter ---
- ----------------------
-
- AtlasLoot_Data["Naxx80Noth"] = {
- { 1, 39241, "", "=q4=Dark Shroud of the Scourge", "=ds=#s4#", "", "10%"};
- { 2, 39242, "", "=q4=Robes of Hoarse Breaths", "=ds=#s5#, #a1#", "", "10%"};
- { 3, 39240, "", "=q4=Noth's Curse", "=ds=#s1#, #a2#", "", "10%"};
- { 4, 39237, "", "=q4=Spaulders of Resumed Battle", "=ds=#s3#, #a2#", "", "10%"};
- { 5, 39243, "", "=q4=Handgrips of the Foredoomed", "=ds=#s9#, #a3#", "", "10%"};
- { 6, 39236, "", "=q4=Trespasser's Boots", "=ds=#s12#, #a3#", "", "10%"};
- { 7, 39239, "", "=q4=Chestplate of the Risen Soldier", "=ds=#s5#, #a4#", "", "10%"};
- { 8, 39235, "", "=q4=Bone-Framed Bracers", "=ds=#s8#, #a4#", "", "10%"};
- { 9, 39234, "", "=q4=Plague-Impervious Boots", "=ds=#s12#, #a4#", "", "10%"};
- { 10, 39244, "", "=q4=Ring of the Fated", "=ds=#s13#", "", "10%"};
- Next = "Naxx80Heigan";
- };
-
- AtlasLoot_Data["Naxx80Noth25Man"] = {
- { 1, 40602, "", "=q4=Robes of Mutation", "=ds=#s5#, #a1#", "", "19%"};
- { 2, 40198, "", "=q4=Bands of Impurity", "=ds=#s8#, #a1#", "", "9%"};
- { 3, 40197, "", "=q4=Gloves of the Fallen Wizard", "=ds=#s9#, #a1#", "", "9%"};
- { 4, 40186, "", "=q4=Thrusting Bands", "=ds=#s8#, #a2#", "", "9%"};
- { 5, 40200, "", "=q4=Belt of Potent Chanting", "=ds=#s10#, #a2#", "", "9%"};
- { 6, 40193, "", "=q4=Tunic of Masked Suffering", "=ds=#s5#, #a3#", "", "20%"};
- { 7, 40196, "", "=q4=Legguards of the Undisturbed", "=ds=#s11#, #a3#", "", "9%"};
- { 8, 40184, "", "=q4=Crippled Treads", "=ds=#s12#, #a3#", "", "9%"};
- { 9, 40185, "", "=q4=Shoulderguards of Opportunity", "=ds=#s3#, #a4#", "", "9%"};
- { 10, 40188, "", "=q4=Gauntlets of the Disobediant", "=ds=#s9#, #a4#", "", "9%"};
- { 11, 40187, "", "=q4=Poignant Sabatons", "=ds=#s12#, #a4#", "", "9%"};
- { 12, 40071, "", "=q4=Chains of Adoration", "=ds=#s2#", "", "11%"};
- { 13, 40065, "", "=q4=Fool's Trial", "=ds=#s2#", "", "11%"};
- { 14, 40069, "", "=q4=Heritage", "=ds=#s2#", "", "11%"};
- { 15, 40064, "", "=q4=Thunderstorm Amulet", "=ds=#s2#", "", "11%"};
- { 16, 40080, "", "=q4=Lost Jewel", "=ds=#s13#", "", "11%"};
- { 17, 40075, "", "=q4=Ruthlessness", "=ds=#s13#", "", "11%"};
- { 18, 40107, "", "=q4=Sand-Worn Band", "=ds=#s13#", "", "11%"};
- { 29, 40074, "", "=q4=Strong-Handed Ring", "=ds=#s13#", "", "12%"};
- { 20, 40192, "", "=q4=Accursed Spine", "=ds=#s15#", "", "9%"};
- { 21, 40191, "", "=q4=Libram of Radiance", "=ds=#s16#, #w16#", "", "9%"};
- { 22, 40189, "", "=q4=Angry Dread", "=ds=#h1#, #w6#", "", "19%"};
- { 23, 40190, "", "=q4=Spinning Fate", "=ds=#w11#", "", "9%"};
- Next = "Naxx80Heigan25Man";
- };
-
- AtlasLoot_Data["Naxx80Heigan"] = {
- { 1, 39252, "", "=q4=Preceptor's Bindings", "=ds=#s8#, #a1#", "", "9%"};
- { 2, 39254, "", "=q4=Saltarello Shoes", "=ds=#s12#, #a1#", "", "10%"};
- { 3, 39247, "", "=q4=Cuffs of Dark Shadows", "=ds=#s8#, #a2#", "", "9%"};
- { 4, 39248, "", "=q4=Tunic of the Lost Pack", "=ds=#s5#, #a3#", "", "10%"};
- { 5, 39251, "", "=q4=Necrogenic Belt", "=ds=#s10#, #a3#", "", "10%"};
- { 6, 39249, "", "=q4=Shoulderplates of Bloodshed", "=ds=#s3#, #a4#", "", "9%"};
- { 7, 39246, "", "=q4=Amulet of Autopsy", "=ds=#s2#", "", "9%"};
- { 8, 39250, "", "=q4=Ring of Holy Cleansing", "=ds=#s13#", "", "10%"};
- { 9, 39245, "", "=q4=Demise", "=ds=#h2#, #w6#", "", "9%"};
- { 10, 39255, "", "=q4=Staff of the Plague Beast", "=ds=#w9#", "", "9%"};
- Prev = "Naxx80Noth";
- Next = "Naxx80Loatheb";
- };
-
- AtlasLoot_Data["Naxx80Heigan25Man"] = {
- { 1, 40250, "", "=q4=Aged Winter Cloak", "=ds=#s4#", "", "11%"};
- { 2, 40254, "", "=q4=Cloak of Averted Crisis", "=ds=#s4#", "", "11%"};
- { 3, 40252, "", "=q4=Cloak of the Shadowed Sun", "=ds=#s4#", "", "11%"};
- { 4, 40253, "", "=q4=Shawl of the Old Maid", "=ds=#s4#", "", "11%"};
- { 5, 40251, "", "=q4=Shroud of Luminosity", "=ds=#s4#", "", "11%"};
- { 6, 40234, "", "=q4=Heigan's Putrid Vestments", "=ds=#s5#, #a1#", "", "9%"};
- { 7, 40236, "", "=q4=Serene Echoes", "=ds=#s12#, #a1#", "", "19%"};
- { 8, 40238, "", "=q4=Gloves of the Dancing Bear", "=ds=#s9#, #a2#", "", "9%"};
- { 9, 40205, "", "=q4=Stalk-Skin Belt", "=ds=#s10#, #a2#", "", "9%"};
- { 10, 40235, "", "=q4=Helm of Pilgrimage", "=ds=#s1#, #a3#", "", "10%"};
- { 11, 40209, "", "=q4=Bindings of the Decrepit", "=ds=#s8#, #a3#", "", "9%"};
- { 12, 40201, "", "=q4=Leggings of Colossal Strides", "=ds=#s11#, #a3#", "", "9%"};
- { 13, 40237, "", "=q4=Eruption-Scared Boots", "=ds=#s12#, #a3#", "", "10%"};
- { 14, 40203, "", "=q4=Breastplate of Tormented Rage", "=ds=#s5#, #a4#", "", "18%"};
- { 15, 40210, "", "=q4=Chestguard of Bitter Charms", "=ds=#s5#, #a4#", "", "9%"};
- { 16, 40204, "", "=q4=Legguards of the Apostle", "=ds=#s11#, #a4#", "", "9%"};
- { 17, 40206, "", "=q4=Iron-Spring Jumpers", "=ds=#s12#, #a4#", "", "9%"};
- { 18, 40257, "", "=q4=Defender's Code", "=ds=#s14#", "", "11%"};
- { 19, 40255, "", "=q4=Dying Curse", "=ds=#s14#", "", "11%"};
- { 20, 40258, "", "=q4=Forethought Talisman", "=ds=#s14#", "", "11%"};
- { 21, 40256, "", "=q4=Grim Toll", "=ds=#s14#", "", "11%"};
- { 22, 40207, "", "=q4=Sigil of Awareness", "=ds=#s16#, #w21#", "", "9%"};
- { 23, 40208, "", "=q4=Cryptfiend's Bite", "=ds=#w7#", "", "10%"};
- { 24, 40233, "", "=q4=The Undeath Carrier", "=ds=#w9#", "", "9%"};
- Prev = "Naxx80Noth25Man";
- Next = "Naxx80Loatheb25Man";
- };
-
- AtlasLoot_Data["Naxx80Loatheb"] = {
- { 1, 39259, "", "=q4=Fungi-Stained Coverings", "=ds=#s5#, #a2#", "", "10%"};
- { 2, 39260, "", "=q4=Helm of the Corrupted Mind", "=ds=#s1#, #a4#", "", "10%"};
- { 3, 39258, "", "=q4=Legplates of Inescapable Death", "=ds=#s11#, #a4#", "", "10%"};
- { 4, 39257, "", "=q4=Loatheb's Shadow", "=ds=#s14#", "", "10%"};
- { 5, 39256, "", "=q4=Sulfur Stave", "=ds=#w9#", "", "10%"};
- { 16, 40622, "", "=q4=Spaulders of the Lost Conqueror", "=ds=#e15#", "", "29%"};
- { 17, 40623, "", "=q4=Spaulders of the Lost Protector", "=ds=#e15#", "", "30%"};
- { 18, 40624, "", "=q4=Spaulders of the Lost Vanquisher", "=ds=#e15#", "", "38%"};
- Prev = "Naxx80Heigan";
- };
-
- AtlasLoot_Data["Naxx80Loatheb25Man"] = {
- { 1, 40247, "", "=q4=Cowl of Innocent Delight", "=ds=#s1#, #a1#", "", "9%"};
- { 2, 40246, "", "=q4=Boots of Impetuous Ideals", "=ds=#s12#, #a1#", "", "9%"};
- { 3, 40249, "", "=q4=Vest of Vitality", "=ds=#s5#, #a2#", "", "10%"};
- { 4, 40243, "", "=q4=Footwraps of Vile Deceit", "=ds=#s12#, #a2#", "", "10%"};
- { 5, 40242, "", "=q4=Grotesque Handgrips", "=ds=#s9#, #a3#", "", "19%"};
- { 6, 40241, "", "=q4=Girdle of Unity", "=ds=#s10#, #a4#", "", "10%"};
- { 7, 40240, "", "=q4=Greaves of Turbulence", "=ds=#s11#, #a4#", "", "9%"};
- { 8, 40244, "", "=q4=The Impossible Dream", "=ds=#h3#, #w6#", "", "10%"};
- { 9, 40239, "", "=q4=The Hand of Nerub", "=ds=#h4#, #w13#", "", "19%"};
- { 10, 40245, "", "=q4=Fading Glow", "=ds=#w12#", "", "10%"};
- { 16, 40637, "", "=q4=Mantle of the Lost Conqueror", "=ds=#e15#", "", "57%"};
- { 17, 40638, "", "=q4=Mantle of the Lost Protector", "=ds=#e15#", "", "58%"};
- { 18, 40639, "", "=q4=Mantle of the Lost Vanquisher", "=ds=#e15#", "", "76%"};
- Prev = "Naxx80Heigan25Man";
- };
-
- ----------------------
- --- Frostwyrm Lair ---
- ----------------------
-
- AtlasLoot_Data["Naxx80Sapphiron"] = {
- { 1, 39415, "", "=q4=Shroud of the Citadel", "=ds=#s4#", "", "19%"};
- { 2, 39404, "", "=q4=Cloak of Mastery", "=ds=#s4#", "", "18%"};
- { 3, 39409, "", "=q4=Cowl of Winged Fear", "=ds=#s1#, #a1#", "", "18%"};
- { 4, 39408, "", "=q4=Leggings of Sapphiron", "=ds=#s11#, #a1#", "", "19%"};
- { 5, 39399, "", "=q4=Helm of the Vast Legions", "=ds=#s1#, #a2#", "", "17%"};
- { 6, 39405, "", "=q4=Helmet of the Inner Sanctum", "=ds=#s1#, #a3#", "", "18%"};
- { 7, 39403, "", "=q4=Helm of the Unsubmissive", "=ds=#s1#, #a4#", "", "17%"};
- { 8, 39398, "", "=q4=Massive Skeletal Ribcage", "=ds=#s5#, #a4#", "", "19%"};
- { 9, 39401, "", "=q4=Circle of Death", "=ds=#s13#", "", "19%"};
- { 10, 39407, "", "=q4=Circle of Life", "=ds=#s13#", "", "18%"};
- { 11, 44569, "", "=q4=Key to the Focusing Iris", "=ds=#m2#", "", "91%"};
- { 12, 44582, "", "=q4=Key to the Focusing Iris", "=q1=#m4#: =ds=#e9#"};
- Next = "Naxx80KelThuzad";
- };
-
- AtlasLoot_Data["Naxx80Sapphiron25Man"] = {
- { 1, 40381, "", "=q4=Sympathy", "=ds=#s5#, #a1#", "", "19%"};
- { 2, 40380, "", "=q4=Gloves of Grandeur", "=ds=#s9#, #a1#", "", "18%"};
- { 3, 40376, "", "=q4=Legwraps of the Defeated Dragon", "=ds=#s11#, #a1#", "", "19%"};
- { 4, 40362, "", "=q4=Gloves of Fast Reactions", "=ds=#s9#, #a2#", "", "17%"};
- { 5, 40379, "", "=q4=Legguards of the Boneyard", "=ds=#s11#, #a2#", "", "19%"};
- { 6, 40367, "", "=q4=Boots of the Great Construct", "=ds=#s12#, #a3#", "", "18%"};
- { 7, 40366, "", "=q4=Platehelm of the Great Wyrm", "=ds=#s1#, #a4#", "", "18%"};
- { 8, 40377, "", "=q4=Noble Birthright Pauldrons", "=ds=#s3#, #a4#", "", "18%"};
- { 9, 40365, "", "=q4=Breastplate of Frozen Pain", "=ds=#s5#, #a4#", "", "19%"};
- { 10, 40363, "", "=q4= Bone-Inlaid Legguards", "=ds=#s11#, #a4#", "", "18%"};
- { 11, 40378, "", "=q4=Ceaseless Pity", "=ds=#s2#", "", "19%"};
- { 12, 40374, "", "=q4=Cosmic Lights", "=ds=#s2#", "", "19%"};
- { 13, 40369, "", "=q4=Icy Blast Amulet", "=ds=#s2#", "", "18%"};
- { 14, 40370, "", "=q4=Gatekeeper", "=ds=#s13#", "", "18%"};
- { 15, 40375, "", "=q4=Ring of Decaying Beauty", "=ds=#s13#", "", "20%"};
- { 16, 40371, "", "=q4=Bandit's Insignia", "=ds=#s14#", "", "18%"};
- { 17, 40373, "", "=q4=Extract of Necromatic Power", "=ds=#s14#", "", "18%"};
- { 18, 40372, "", "=q4=Rune of Repulsion", "=ds=#s14#", "", "19%"};
- { 19, 40382, "", "=q4=Soul of the Dead", "=ds=#s14#", "", "20%"};
- { 20, 40368, "", "=q4=Murder", "=ds=#h1#, #w4#", "", "19%"};
- { 22, 44577, "", "=q4=Heroic Key to the Focusing Iris", "=ds=#m2#", "", "92%"};
- { 23, 44581, "", "=q4=Heroic Key to the Focusing Iris", "=q1=#m4#: =ds=#e9#"};
- Next = "Naxx80KelThuzad25Man";
- };
-
- AtlasLoot_Data["Naxx80KelThuzad"] = {
- { 1, 39425, "", "=q4=Cloak of the Dying", "=ds=#s4#", "", "19%"};
- { 2, 39421, "", "=q4=Gem of Imprisoned Vassals", "=ds=#s2#", "", "19%"};
- { 3, 39416, "", "=q4=Kel'Thuzad's Reach", "=ds=#h3#, #w13#", "", "18%"};
- { 4, 39424, "", "=q4=The Soulblade", "=ds=#h3#, #w4#", "", "19%"};
- { 5, 39420, "", "=q4=Anarchy", "=ds=#h1#, #w4#", "", "18%"};
- { 6, 39417, "", "=q4=Death's Bite", "=ds=#h2#, #w1#", "", "18%"};
- { 7, 39423, "", "=q4=Hammer of the Astral Plane", "=ds=#h3#, #w6#", "", "18%"};
- { 8, 39422, "", "=q4=Staff of the Plaguehound", "=ds=#w9#", "", "19%"};
- { 9, 39426, "", "=q4=Wand of the Archlich", "=ds=#w12#", "", "19%"};
- { 10, 39419, "", "=q4=Nerubian Conquerer", "=ds=#w5#", "", "19%"};
- { 16, 40616, "", "=q4=Helm of the Lost Conqueror", "=ds=#e15#", "", "28%"};
- { 17, 40617, "", "=q4=Helm of the Lost Protector", "=ds=#e15#", "", "28%"};
- { 18, 40618, "", "=q4=Helm of the Lost Vanquisher", "=ds=#e15#", "", "38%"};
- Prev = "Naxx80Sapphiron";
- Next = "Naxx80Trash";
- };
-
- AtlasLoot_Data["Naxx80KelThuzad25Man"] = {
- { 1, 40405, "", "=q4=Cape of the Unworthy Wizard", "=ds=#s4#", "", "18%"};
- { 2, 40403, "", "=q4=Drape of the Deadly Foe", "=ds=#s4#", "", "18%"};
- { 3, 40398, "", "=q4=Leggings of Mortal Arrogance", "=ds=#s11#, #a1#", "", "18%"};
- { 4, 40387, "", "=q4=Boundless Ambition", "=ds=#s2#", "", "18%"};
- { 5, 40399, "", "=q4=Signet of Manifested Pain", "=ds=#s13#", "", "17%"};
- { 6, 40383, "", "=q4=Calamity's Grasp", "=ds=#h3#, #w13#", "", "18%"};
- { 7, 40386, "", "=q4=Sinister Revenge", "=ds=#h1#, #w4#", "", "17%"};
- { 8, 40396, "", "=q4=The Turning Tide", "=ds=#h3#, #w10#", "", "18%"};
- { 9, 40402, "", "=q4=Last Laugh", "=ds=#h1#, #w1#", "", "18%"};
- { 10, 40384, "", "=q4=Betrayer of Humanity", "=ds=#h2#, #w1#", "", "17%"};
- { 11, 40395, "", "=q4=Torch of Holy Fire", "=ds=#h3#, #w6#", "", "18%"};
- { 12, 40388, "", "=q4=Journey's End", "=ds=#w9#", "", "18%"};
- { 13, 40401, "", "=q4=Voice of Reason", "=ds=#w8#", "", "17%"};
- { 14, 40400, "", "=q4=Wall of Terror", "=ds=#w8#", "", "18%"};
- { 15, 40385, "", "=q4=Envoy of Mortality", "=ds=#w5#", "", "17%"};
- { 16, 40631, "", "=q4=Crown of the Lost Conqueror", "=ds=#e15#", "", "54%"};
- { 17, 40632, "", "=q4=Crown of the Lost Protector", "=ds=#e15#", "", "57%"};
- { 18, 40633, "", "=q4=Crown of the Lost Vanquisher", "=ds=#e15#", "", "73%"};
- Prev = "Naxx80Sapphiron25Man";
- Next = "Naxx80Trash25Man";
- };
-
- AtlasLoot_Data["Naxx80Trash"] = {
- { 1, 39467, "", "=q4=Minion Bracers", "=ds=#s8#, #a4#", "", "1%"};
- { 2, 39472, "", "=q4=Chain of Latent Energies", "=ds=#s2#", "", "1%"};
- { 3, 39470, "", "=q4=Medallion of the Disgraced", "=ds=#s2#", "", "1%"};
- { 4, 39427, "", "=q4=Omen of Ruin", "=ds=#h1#, #w4#", "", "1%"};
- { 5, 39468, "", "=q4=The Stray", "=ds=#h4#, #w13#", "", "1%"};
- { 6, 39473, "", "=q4=Contortion", "=ds=#w12#", "", "1%"};
- Prev = "Naxx80KelThuzad";
- };
-
- AtlasLoot_Data["Naxx80Trash25Man"] = {
- { 1, 40410, "", "=q4=Shadow of the Ghoul", "=ds=#s4#", "", "1%"};
- { 2, 40409, "", "=q4=Boots of the Escaped Captive", "=ds=#s12#, #a2#", "", "1%"};
- { 3, 40414, "", "=q4=Shoulderguards of the Undaunted", "=ds=#s3#, #a4#", "", "1%"};
- { 4, 40412, "", "=q4=Ousted Bead Necklace", "=ds=#s2#", "", "1%"};
- { 5, 40408, "", "=q4=Haunting Call", "=ds=#h3#, #w4#", "", "1%"};
- { 6, 40407, "", "=q4=Silent Crusader", "=ds=#h1#, #w10#", "", "1%"};
- { 7, 40406, "", "=q4=Inevitable Defeat", "=ds=#h2#, #w6#", "", "1%"};
- Prev = "Naxx80KelThuzad25Man";
- };
-
- ------------------------
- --- Obsidian Sanctum ---
- ------------------------
-
- AtlasLoot_Data["Sartharion"] = {
- { 1, 40428, "", "=q4=Titan's Outlook", "=ds=#s1#, #a4#", "", "18%"};
- { 2, 40427, "", "=q4=Circle of Arcane Streams", "=ds=#s2#", "", "18%"};
- { 3, 40426, "", "=q4=Signet of the Accord", "=ds=#s13#", "", "19%"};
- { 4, 40433, "", "=q4=Wyrmrest Band", "=ds=#s13#", "", "7%"};
- { 5, 40430, "", "=q4=Majestic Dragon Figurine", "=ds=#s14#", "", "18%"};
- { 6, 40429, "", "=q4=Crimson Steel", "=ds=#h3#, #w13#", "", "18%"};
- { 7, 43345, "", "=q4=Dragon Hide Bag", "=ds=#e1#", "", "100%"};
- { 8, 43347, "", "=q4=Satchel of Spoils", "", "", "100%"};
- { 10, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["One Drake Left"]};
- { 11, 43988, "", "=q4=Gale-Proof Cloak", "=ds=#s4#", "", "1%"};
- { 12, 43990, "", "=q4=Blade-Scarred Tunic", "=ds=#s5#, #a2#", "", "2%"};
- { 13, 43991, "", "=q4=Legguards of Composure", "=ds=#s11#, #a2#", "", "1%"};
- { 14, 43989, "", "=q4=Remembrance Girdle", "=ds=#s10#, #a4#", "", "2%"};
- { 15, 43992, "", "=q4=Volitant Amulet", "=ds=#s2#", "", "2%"};
- { 16, 40613, "", "=q4=Gloves of the Lost Conqueror", "=ds=#e15#", "", "28%"};
- { 17, 40614, "", "=q4=Gloves of the Lost Protector", "=ds=#e15#", "", "29%"};
- { 18, 40615, "", "=q4=Gloves of the Lost Vanquisher", "=ds=#e15#", "", "37%"};
- { 20, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["Two Drakes Left"]};
- { 21, 43995, "", "=q4=Enamored Cowl", "=ds=#s1#, #a1#", "", "0.00%"};
- { 22, 43998, "", "=q4=Chestguard of Flagrant Prowess", "=ds=#s5#, #a3#"};
- { 23, 43996, "", "=q4=Sabatons of Firmament", "=ds=#s12#, #a3#"};
- { 24, 43994, "", "=q4=Belabored Legplates", "=ds=#s11#, #a4#"};
- { 25, 43993, "", "=q4=Greatring of Collision", "=ds=#s13#"};
- { 27, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["Three Drakes Left"]};
- { 28, 43986, "", "=q4=Reins of the Black Drake", "=ds=#e12#", "", "100%"};
- };
-
- AtlasLoot_Data["Sartharion25Man"] = {
- { 1, 40437, "", "=q4=Concealment Shoulderpads", "=ds=#s3#, #a2#", "", "16%"};
- { 2, 40439, "", "=q4=Mantle of the Eternal Sentinel", "=ds=#s3#, #a2#", "", "19%"};
- { 3, 40451, "", "=q4=Hyaline Helm of the Sniper", "=ds=#s1#, #a3#", "", "16%"};
- { 4, 40438, "", "=q4=Council Chamber Epaulets", "=ds=#s3#, #a3#", "", "19%"};
- { 5, 40453, "", "=q4=Chestplate of the Great Aspects", "=ds=#s5#, #a4#", "", "17%"};
- { 6, 40446, "", "=q4=Dragon Brood Legguards", "=ds=#s11#, #a4#", "", "17%"};
- { 7, 40433, "", "=q4=Wyrmrest Band", "=ds=#s13#", "", "7%"};
- { 8, 40431, "", "=q4=Fury of the Five Flights", "=ds=#s14#", "", "17%"};
- { 9, 40432, "", "=q4=Illustration of the Dragon Soul", "=ds=#s14#", "", "19%"};
- { 10, 40455, "", "=q4=Staff of Restraint", "=ds=#w9#", "", "19%"};
- { 11, 43345, "", "=q4=Dragon Hide Bag", "=ds=#e1#", "", "100%"};
- { 12, 43346, "", "=q4=Large Satchel of Spoils", "", "", "100%"};
- { 13, 40628, "", "=q4=Gauntlets of the Lost Conqueror", "=ds=#e15#", "", "51%"};
- { 14, 40629, "", "=q4=Gauntlets of the Lost Protector", "=ds=#e15#", "", "53%"};
- { 15, 40630, "", "=q4=Gauntlets of the Lost Vanquisher", "=ds=#e15#", "", "67%"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["One Drake Left"]};
- { 17, 44002, "", "=q4=The Sanctum's Flowing Vestments", "=ds=#s5#, #a1#", "", "7%"};
- { 18, 44003, "", "=q4=Upstanding Spaulders", "=ds=#s3#, #a3#", "", "7%"};
- { 19, 44004, "", "=q4=Bountiful Gauntlets", "=ds=#s9#, #a3#", "", "6%"};
- { 20, 44000, "", "=q4=Dragonstorm Breastplate", "=ds=#s5#, #a4#", "", "6%"};
- { 22, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["Two Drakes Left"]};
- { 23, 44005, "", "=q4=Pennant Cloak", "=ds=#s4#", "", "3%"};
- { 24, 44008, "", "=q4=Unsullied Cuffs", "=ds=#s8#, #a1#", "", "3%"};
- { 25, 44007, "", "=q4=Headpiece of Reconciliation", "=ds=#s1#, #a2#", "", "3%"};
- { 26, 44011, "", "=q4=Leggings of the Honored", "=ds=#s11#, #a2#", "", "3%"};
- { 27, 44006, "", "=q4=Obsidian Greathelm", "=ds=#s1#, #a4#", "", "3%"};
- { 29, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["Three Drakes Left"]};
- { 30, 43954, "", "=q4=Reins of the Twilight Drake", "=ds=#e12#", "", "100%"};
- };
-
- ---------------------------
- --- The Eye of Eternity ---
- ---------------------------
-
- AtlasLoot_Data["Malygos"] = {
- { 1, 40526, "", "=q4=Gown of the Spell-Weaver", "=ds=#s5#, #a1#", "", "12%"};
- { 2, 40519, "", "=q4=Footsteps of Malygos", "=ds=#s12#, #a2#", "", "12%"};
- { 3, 40511, "", "=q4=Focusing Energy Epaulets", "=ds=#s3#, #a4#", "", "13%"};
- { 4, 40486, "", "=q4=Necklace of the Glittering Chamber", "=ds=#s2#", "", "12%"};
- { 5, 40474, "", "=q4=Surge Needle Ring", "=ds=#s13#", "", "10%"};
- { 6, 40491, "", "=q4=Hailstorm", "=ds=#h1#, #w10#", "", "11%"};
- { 7, 40488, "", "=q4=Ice Spire Scepter", "=ds=#h3#, #w6#", "", "12%"};
- { 8, 40489, "", "=q4=Greatstaff of the Nexus", "=ds=#w9#", "", "12%"};
- { 9, 40497, "", "=q4=Black Ice", "=ds=#w7#", "", "10%"};
- { 10, 40475, "", "=q4=Barricade of Eternity", "=ds=#w8#", "", "11%"};
- { 11, 43952, "", "=q4=Reins of the Azure Drake", "=ds=#e12#", "", "1%"};
- { 13, 44569, "", "=q4=Key to the Focusing Iris", "=ds=#m3#", "", "91%"};
- { 16, 44650, "", "=q1=Heart of Magic", "=ds=#m3#", "", "100%"};
- { 17, 44658, "", "=q4=Chain of the Ancient Wyrm", "=q1=#m4#: =ds=#s2#"};
- { 18, 44660, "", "=q4=Drakescale Collar", "=q1=#m4#: =ds=#s2#"};
- { 19, 44659, "", "=q4=Pendant of the Dragonsworn", "=q1=#m4#: =ds=#s2#"};
- { 20, 44657, "", "=q4=Torque of the Red Dragonflight", "=q1=#m4#: =ds=#s2#"};
- };
-
- AtlasLoot_Data["Malygos25Man"] = {
- { 1, 40562, "", "=q4=Hood of Rationality", "=ds=#s1#, #a1#", "", "9%"};
- { 2, 40555, "", "=q4=Mantle of Dissemination", "=ds=#s3#, #a1#", "", "9%"};
- { 3, 40194, "", "=q4=Blanketing Robes of Snow", "=ds=#s5#, #a1#", "", "9%"};
- { 4, 40561, "", "=q4=Leash of Heedless Magic", "=ds=#s10#, #a1#", "", "9%"};
- { 5, 40560, "", "=q4=Leggings of the Wanton Spellcaster", "=ds=#s11#, #a1#", "", "10%"};
- { 6, 40558, "", "=q4=Arcanic Tramplers", "=ds=#s12#, #a1#", "", "7%"};
- { 7, 40594, "", "=q4=Spaulders of Catatonia", "=ds=#s3#, #a2#", "", "10%"};
- { 8, 40539, "", "=q4=Chestguard of the Recluse", "=ds=#s5#, #a2#", "", "8%"};
- { 9, 40541, "", "=q4=Frosted Adroit Handguards", "=ds=#s9#, #a2#", "", "9%"};
- { 10, 40566, "", "=q4=Unravelling Strands of Sanity", "=ds=#s10#, #a2#", "", "11%"};
- { 11, 40543, "", "=q4=Blue Aspect Helm", "=ds=#s1#, #a3#", "", "9%"};
- { 12, 40588, "", "=q4=Tunic of the Artifact Guardian", "=ds=#s5#, #a3#", "", "9%"};
- { 13, 40564, "", "=q4=Winter Spectacle Gloves", "=ds=#s9#, #a3#", "", "9%"};
- { 14, 40549, "", "=q4=Boots of the Renewed Flight", "=ds=#s12#, #a3#", "", "8%"};
- { 15, 40590, "", "=q4=Elevated Lair Pauldrons", "=ds=#s3#, #a4#", "", "9%"};
- { 16, 40589, "", "=q4=Legplates of Sovereignty", "=ds=#s11#, #a4#", "", "9%"};
- { 17, 40592, "", "=q4=Boots of Healing Energies", "=ds=#s12#, #a4#", "", "10%"};
- { 18, 40591, "", "=q4=Melancholy Sabatons", "=ds=#s12#, #a4#", "", "9%"};
- { 19, 40532, "", "=q4=Living Ice Crystals", "=ds=#s14#", "", "9%"};
- { 20, 40531, "", "=q4=Mark of Norgannon", "=ds=#s14#", "", "8%"};
- { 21, 43952, "", "=q4=Reins of the Azure Drake", "=ds=#e12#", "", "1%"};
- { 23, 44577, "", "=q4=Heroic Key to the Focusing Iris", "=ds=#m3#", "", "92%"};
- { 25, 44650, "", "=q1=Heart of Magic", "=ds=#m3#", "", "100%"};
- { 26, 44664, "", "=q4=Favor of the Dragon Queen", "=q1=#m4#: =ds=#s2#"};
- { 27, 44662, "", "=q4=Life-Binder's Locket", "=q1=#m4#: =ds=#s2#"};
- { 28, 44665, "", "=q4=Nexus War Champion Beads", "=q1=#m4#: =ds=#s2#"};
- { 29, 44661, "", "=q4=Wyrmrest Necklace of Power", "=q1=#m4#: =ds=#s2#"};
- };
-
- --------------
- --- Ulduar ---
- --------------
-
- AtlasLoot_Data["UlduarLeviathan"] = {
- { 1, 45289, "", "=q4=Lifespark Visage", "=ds=#s1#, #a1#", "", "22%"};
- { 2, 45291, "", "=q4=Combustion Bracers", "=ds=#s8#, #a1#", "", "17%"};
- { 3, 45288, "", "=q4=Firestrider Chestguard", "=ds=#s5#, #a3#", "", "22%"};
- { 4, 45283, "", "=q4=Flamewatch Armguards", "=ds=#s8#, #a4#", "", "19%"};
- { 5, 45285, "", "=q4=Might of the Leviathan", "=ds=#s2#", "", "18%"};
- { 6, 45292, "", "=q4=Energy Siphon", "=ds=#s14#", "", "18%"};
- { 7, 45286, "", "=q4=Pyrite Infuser", "=ds=#s14#", "", "17%"};
- { 8, 45284, "", "=q4=Kinetic Ripper", "=ds=#h4#, #w13#", "", "19%"};
- { 9, 45287, "", "=q4=Firesoul", "=ds=#h3#, #w10#", "", "17%"};
- { 10, 45282, "", "=q4=Ironsoul", "=ds=#h2#, #w6#", "", "19%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 45293, "", "=q4=Handguards of Potent Cures", "=ds=#s9#, #a2#", "", "0.18%"};
- { 18, 45300, "", "=q4=Mantle of Fiery Vengeance", "=ds=#s3#, #a3#"};
- { 19, 45295, "", "=q4=Gilded Steel Legplates", "=ds=#s11#, #a4#", "", "0.25%"};
- { 20, 45297, "", "=q4=Shimmering Seal", "=ds=#s13#", "", "0.11%"};
- { 21, 45296, "", "=q4=Twirling Blades", "=ds=#w11#", "", "0.36%"};
- Next = "UlduarRazorscale";
- };
-
- AtlasLoot_Data["UlduarLeviathan25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45117, "", "=q4=Constructor's Handwraps", "=ds=#s9#, #a1#", "", "19%"};
- { 5, 45119, "", "=q4=Embrace of the Leviathan", "=ds=#s10#, #a1#", "", "20%"};
- { 6, 45108, "", "=q4=Mechanist's Bindings", "=ds=#s8#, #a2#", "", "19%"};
- { 7, 45118, "", "=q4=Steamworker's Goggles", "=ds=#s1#, #a3#", "", "20%"};
- { 8, 45109, "", "=q4=Gloves of the Fiery Behemoth", "=ds=#s9#, #a3#", "", "18%"};
- { 9, 45107, "", "=q4=Iron Riveted War Helm", "=ds=#s1#, #a4#", "", "17%"};
- { 10, 45111, "", "=q4=Mimiron's Inferno Couplings", "=ds=#s8#, #a4#", "", "18%"};
- { 11, 45116, "", "=q4=Freya's Choker of Warding", "=ds=#s2#", "", "19%"};
- { 12, 45113, "", "=q4=Glowing Ring of Reclamation", "=ds=#s13#", "", "19%"};
- { 13, 45106, "", "=q4=Strength of the Automaton", "=ds=#s13#", "", "16%"};
- { 14, 45112, "", "=q4=The Leviathan's Coil", "=ds=#s13#", "", "19%"};
- { 15, 45115, "", "=q4=Overcharged Fuel Rod", "=ds=#s15#", "", "18%"};
- { 16, 45114, "", "=q4=Steamcaller's Totem", "=ds=#s16#, #w15#", "", "18%"};
- { 17, 45110, "", "=q4=Titanguard", "=ds=#h1#, #w10#", "", "18%"};
- { 18, 45086, "", "=q4=Rising Sun", "=ds=#w11#", "", "18%"};
- { 20, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 21, 45135, "", "=q4=Boots of Fiery Resolution", "=ds=#s12#, #a1#", "", "0.27%"};
- { 22, 45136, "", "=q4=Shoulderpads of Dormant Energies", "=ds=#s3#, #a2#"};
- { 23, 45134, "", "=q4=Plated Leggings of Ruination", "=ds=#s11#, #a4#"};
- { 24, 45133, "", "=q4=Pendant of Fiery Havoc", "=ds=#s2#"};
- { 25, 45132, "", "=q4=Golden Saronite Dragon", "=ds=#h3#, #w13#", "", "0.11%"};
- Next = "UlduarRazorscale25Man";
- };
-
- AtlasLoot_Data["UlduarRazorscale"] = {
- { 1, 45306, "", "=q4=Binding of the Dragon Matriarch", "=ds=#s10#, #a1#", "", "20%"};
- { 2, 45302, "", "=q4=Treads of the Invader", "=ds=#s12#, #a2#", "", "19%"};
- { 3, 45301, "", "=q4=Bracers of the Smothering Inferno", "=ds=#s8#, #a3#", "", "20%"};
- { 4, 45307, "", "=q4=Ironscale Leggings", "=ds=#s11#, #a3#", "", "20%"};
- { 5, 45299, "", "=q4=Dragonsteel Faceplate", "=ds=#s1#, #a4#", "", "19%"};
- { 6, 45305, "", "=q4=Breastplate of the Afterlife", "=ds=#s5#, #a4#", "", "19%"};
- { 7, 45304, "", "=q4=Stormtempered Girdle", "=ds=#s10#, #a4#", "", "19%"};
- { 8, 45303, "", "=q4=Band of Draconic Guile", "=ds=#s13#", "", "20%"};
- { 9, 45308, "", "=q4=Eye of the Broodmother", "=ds=#s14#", "", "21%"};
- { 10, 45298, "", "=q4=Razorscale Talon", "=ds=#h1#, #w10#", "", "20%"};
- Prev = "UlduarLeviathan";
- Next = "UlduarIgnis";
- };
-
- AtlasLoot_Data["UlduarRazorscale25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45138, "", "=q4=Drape of the Drakerider", "=ds=#s4#", "", "20%"};
- { 5, 45150, "", "=q4=Collar of the Wyrmhunter", "=ds=#s1#, #a1#", "", "20%"};
- { 6, 45146, "", "=q4=Shackles of the Odalisque", "=ds=#s8#, #a1#", "", "20%"};
- { 7, 45149, "", "=q4=Bracers of the Broodmother", "=ds=#s8#, #a2#", "", "21%"};
- { 8, 45141, "", "=q4=Proto-hide Leggings", "=ds=#s11#, #a2#", "", "19%"};
- { 9, 45151, "", "=q4=Belt of the Fallen Wyrm", "=ds=#s10#, #a3#", "", "19%"};
- { 10, 45143, "", "=q4=Saronite Mesh Legguards", "=ds=#s11#, #a3#", "", "20%"};
- { 11, 45140, "", "=q4=Razorscale Shoulderguards", "=ds=#s3#, #a4#", "", "19%"};
- { 12, 45139, "", "=q4=Dragonslayer's Brace", "=ds=#s10#, #a4#", "", "19%"};
- { 13, 45148, "", "=q4=Living Flame", "=ds=#s14#", "", "19%"};
- { 14, 45510, "", "=q4=Libram of Discord", "=ds=#s16#, #w16#", "", "19%"};
- { 15, 45144, "", "=q4=Sigil of Deflection", "=ds=#s16#, #w21#", "", "19%"};
- { 16, 45142, "", "=q4=Remorse", "=ds=#h1#, #w10#", "", "19%"};
- { 17, 45147, "", "=q4=Guiding Star", "=ds=#h3#, #w6#", "", "19%"};
- { 18, 45137, "", "=q4=Veranus' Bane", "=ds=#w5#", "", "18%"};
- Prev = "UlduarLeviathan25Man";
- Next = "UlduarIgnis25Man";
- };
-
- AtlasLoot_Data["UlduarIgnis"] = {
- { 1, 45317, "", "=q4=Shawl of the Caretaker", "=ds=#s4#", "", "20%"};
- { 2, 45318, "", "=q4=Drape of Fuming Anger", "=ds=#s4#", "", "19%"};
- { 3, 45312, "", "=q4=Gloves of Smoldering Touch", "=ds=#s9#, #a2#", "", "20%"};
- { 4, 45316, "", "=q4=Armbraces of the Vibrant Flame", "=ds=#s8#, #a3#", "", "19%"};
- { 5, 45321, "", "=q4=Pauldrons of Tempered Will", "=ds=#s3#, #a4#", "", "21%"};
- { 6, 45310, "", "=q4=Gauntlets of the Iron Furnace", "=ds=#s9#, #a4#", "", "20%"};
- { 7, 45313, "", "=q4=Furnace Stone", "=ds=#s14#", "", "19%"};
- { 8, 45314, "", "=q4=Igniter Rod", "=ds=#s15#", "", "19%"};
- { 9, 45311, "", "=q4=Relentless Edge", "=ds=#w7#", "", "20%"};
- { 10, 45309, "", "=q4=Rifle of the Platinum Guard", "=ds=#w5#", "", "19%"};
- Prev = "UlduarRazorscale";
- Next = "UlduarDeconstructor";
- };
-
- AtlasLoot_Data["UlduarIgnis25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45186, "", "=q4=Soot-Covered Mantle", "=ds=#s3#, #a1#", "", "18%"};
- { 5, 45185, "", "=q4=Flamewrought Cinch", "=ds=#s10#, #a2#", "", "20%"};
- { 6, 45162, "", "=q4=Flamestalker Boots", "=ds=#s12#, #a2#", "", "18%"};
- { 7, 45164, "", "=q4=Helm of the Furnace Master", "=ds=#s1#, #a3#", "", "19%"};
- { 8, 45187, "", "=q4=Wristguards of the Firetender", "=ds=#s8#, #a3#", "", "19%"};
- { 9, 45167, "", "=q4=Lifeforge Breastplate", "=ds=#s5#, #a4#", "", "19%"};
- { 10, 45161, "", "=q4=Girdle of Embers", "=ds=#s10#, #a4#", "", "19%"};
- { 11, 45166, "", "=q4=Charred Saronite Greaves", "=ds=#s12#, #a4#", "", "20%"};
- { 12, 45157, "", "=q4=Cindershard Ring", "=ds=#s13#", "", "20%"};
- { 13, 45168, "", "=q4=Pyrelight Circle", "=ds=#s13#", "", "20%"};
- { 14, 45158, "", "=q4=Heart of Iron", "=ds=#s14#", "", "19%"};
- { 15, 45169, "", "=q4=Totem of the Dancing Flame", "=ds=#s16#, #w15#", "", "21%"};
- { 16, 45165, "", "=q4=Worldcarver", "=ds=#h2#, #w1#", "", "19%"};
- { 17, 45171, "", "=q4=Intensity", "=ds=#w9#", "", "20%"};
- { 18, 45170, "", "=q4=Scepter of Creation", "=ds=#w12#", "", "21%"};
- Prev = "UlduarRazorscale25Man";
- Next = "UlduarDeconstructor25Man";
- };
-
- AtlasLoot_Data["UlduarDeconstructor"] = {
- { 1, 45694, "", "=q4=Conductive Cord", "=ds=#s10#, #a1#", "", "21%"};
- { 2, 45677, "", "=q4=Treacherous Shoulderpads", "=ds=#s3#, #a2#", "", "19%"};
- { 3, 45686, "", "=q4=Vest of the Glowing Crescent", "=ds=#s5#, #a2#", "", "21%"};
- { 4, 45687, "", "=q4=Helm of Veiled Energies", "=ds=#s1#, #a3#", "", "21%"};
- { 5, 45679, "", "=q4=Gloves of Taut Grip", "=ds=#s9#, #a3#", "", "19%"};
- { 6, 45676, "", "=q4=Chestplate of Vicious Potency", "=ds=#s5#, #a4#", "", "19%"};
- { 7, 45680, "", "=q4=Armbands of the Construct", "=ds=#s8#, #a4#", "", "18%"};
- { 8, 45675, "", "=q4=Power Enhancing Loop", "=ds=#s13#", "", "20%"};
- { 9, 45685, "", "=q4=Plasma Foil", "=ds=#h3#, #w4#", "", "22%"};
- { 10, 45682, "", "=q4=Pulsing Spellshield", "=ds=#w8#", "", "14%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 45869, "", "=q4=Fluxing Energy Coils", "=ds=#s8#, #a2#", "", "3%"};
- { 18, 45867, "", "=q4=Breastplate of the Stoneshaper", "=ds=#s5#, #a3#", "", "2%"};
- { 19, 45871, "", "=q4=Seal of Ulduar", "=ds=#s13#", "", "2%"};
- { 20, 45868, "", "=q4=Aesir's Edge", "=ds=#h2#, #w10#", "", "2%"};
- { 21, 45870, "", "=q4=Magnetized Projectile Emitter", "=ds=#w5#", "", "3%"};
- Prev = "UlduarIgnis";
- Next = "UlduarIronCouncil";
- };
-
- AtlasLoot_Data["UlduarDeconstructor25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45253, "", "=q4=Mantle of Wavering Calm", "=ds=#s3#, #a1#", "", "19%"};
- { 5, 45258, "", "=q4=Sandals of Rash Temperament", "=ds=#s12#, #a1#", "", "19%"};
- { 6, 45260, "", "=q4=Boots of Hasty Revival", "=ds=#s12#, #a2#", "", "21%"};
- { 7, 45259, "", "=q4=Quartz-studded Harness", "=ds=#s5#, #a3#", "", "18%"};
- { 8, 45249, "", "=q4=Brass-lined Boots", "=ds=#s12#, #a3#", "", "18%"};
- { 9, 45251, "", "=q4=Shoulderplates of the Deconstructor", "=ds=#s3#, #a4#", "", "18%"};
- { 10, 45252, "", "=q4=Horologist's Wristguards", "=ds=#s8#, #a4#", "", "19%"};
- { 11, 45248, "", "=q4=Clockwork Legplates", "=ds=#s11#, #a4#", "", "19%"};
- { 12, 45250, "", "=q4=Crazed Construct Ring", "=ds=#s13#", "", "18%"};
- { 13, 45247, "", "=q4=Signet of the Earthshaker", "=ds=#s13#", "", "20%"};
- { 14, 45254, "", "=q4=Sigil of the Vengeful Heart", "=ds=#s16#, #w21#", "", "20%"};
- { 15, 45255, "", "=q4=Thunderfall Totem", "=ds=#s16#, #w15#", "", "20%"};
- { 16, 45246, "", "=q4=Golem-Shard Sticker", "=ds=#h1#, #w4#", "", "19%"};
- { 17, 45256, "", "=q4=Twisted Visage", "=ds=#w9#", "", "19%"};
- { 18, 45257, "", "=q4=Quartz Crystal Wand", "=ds=#w12#", "", "20%"};
- { 20, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 21, 45446, "", "=q4=Grasps of Reason", "=ds=#s8#, #a1#", "", "0.16%"};
- { 22, 45444, "", "=q4=Gloves of the Steady Hand", "=ds=#s9#, #a3#", "", "0.29%"};
- { 23, 45445, "", "=q4=Breastplate of the Devoted", "=ds=#s5#, #a4#", "", "0.16%"};
- { 24, 45443, "", "=q4=Charm of Meticulous Timing", "=ds=#s2#", "", "0.15%"};
- { 25, 45442, "", "=q4=Sorthalis, Hammer of the Watchers", "=ds=#h1#, #w6#", "", "0.28%"};
- Prev = "UlduarIgnis25Man";
- Next = "UlduarIronCouncil25Man";
- };
-
- AtlasLoot_Data["UlduarIronCouncil"] = {
- { 1, 45322, "", "=q4=Cloak of the Iron Council", "=ds=#s4#", "", "18%"};
- { 2, 45423, "", "=q4=Runetouch Handwraps", "=ds=#s8#, #a1#", "", "24%"};
- { 3, 45324, "", "=q4=Leggings of Swift Reflexes", "=ds=#s11#, #a2#", "", "19%"};
- { 4, 45378, "", "=q4=Boots of the Petrified Forest", "=ds=#s12#, #a2#", "", "17%"};
- { 5, 45329, "", "=q4=Circlet of True Sight", "=ds=#s1#, #a3#", "", "19%"};
- { 6, 45333, "", "=q4=Belt of the Iron Servant", "=ds=#s10#, #a3#", "", "22%"};
- { 7, 45330, "", "=q4=Greaves of Iron Intensity", "=ds=#s12#, #a4#", "", "23%"};
- { 8, 45418, "", "=q4=Lady Maye's Sapphire Ring", "=ds=#s13#", "", "21%"};
- { 9, 45332, "", "=q4=Stormtip", "=ds=#h3#, #w4#", "", "23%"};
- { 10, 45331, "", "=q4=Rune-Etched Nightblade", "=ds=#h1#, #w10#", "", "19%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 45455, "", "=q4=Belt of the Crystal Tree", "=ds=#s10#, #a2#", "", "19%"};
- { 18, 45447, "", "=q4=Watchful Eye", "=ds=#s2#", "", "18%"};
- { 19, 45456, "", "=q4=Loop of the Agile", "=ds=#s13#", "", "16%"};
- { 20, 45449, "", "=q4=The Masticator", "=ds=#h3#, #w13#", "", "18%"};
- { 21, 45448, "", "=q4=Perilous Bite", "=ds=#h1#, #w4#", "", "17%"};
- { 22, 45506, "", "=q4=Archivum Data Disc", "=ds=#m2#", "", "91%"};
- Prev = "UlduarDeconstructor";
- Next = "UlduarKologarn";
- };
-
- AtlasLoot_Data["UlduarIronCouncil25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45224, "", "=q4=Drape of the Lithe", "=ds=#s4#", "", "19%"};
- { 5, 45240, "", "=q4=Raiments of the Iron Council", "=ds=#s5#, #a1#", "", "24%"};
- { 6, 45238, "", "=q4=Overload Legwraps", "=ds=#s11#, #a1#", "", "20%"};
- { 7, 45237, "", "=q4=Phaelia's Vestments of the Sprouting Seed", "=ds=#s5#, #a2#", "", "23%"};
- { 8, 45232, "", "=q4=Runed Ironhide Boots", "=ds=#s12#, #a2#", "", "22%"};
- { 9, 45227, "", "=q4=Iron-studded Mantle", "=ds=#s3#, #a3#", "", "22%"};
- { 10, 45239, "", "=q4=Runeshaper's Gloves", "=ds=#s9#, #a3#", "", "20%"};
- { 11, 45226, "", "=q4=Ancient Iron Heaume", "=ds=#s1#, #a4#", "", "20%"};
- { 12, 45225, "", "=q4=Steelbreaker's Embrace", "=ds=#s5#, #a4#", "", "19%"};
- { 13, 45228, "", "=q4=Handguards of the Enclave", "=ds=#s9#, #a4#", "", "21%"};
- { 14, 45193, "", "=q4=Insurmountable Fervor", "=ds=#s2#", "", "19%"};
- { 15, 45236, "", "=q4=Unblinking Eye", "=ds=#s2#", "", "19%"};
- { 16, 45235, "", "=q4=Radiant Seal", "=ds=#s13#", "", "20%"};
- { 17, 45233, "", "=q4=Rune Edge", "=ds=#h2#, #w10#", "", "20%"};
- { 18, 45234, "", "=q4=Rapture", "=ds=#w9#", "", "19%"};
- { 20, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 21, 45242, "", "=q4=Drape of Mortal Downfall", "=ds=#s4#", "", "21%"};
- { 22, 45245, "", "=q4=Shoulderpads of the Intruder", "=ds=#s3#, #a2#", "", "14%"};
- { 23, 45244, "", "=q4=Greaves of Swift Vengeance", "=ds=#s12#, #a3#", "", "9%"};
- { 24, 45241, "", "=q4=Belt of Colossal Rage", "=ds=#s10#, #a4#", "", "15%"};
- { 25, 45243, "", "=q4=Sapphire Amulet of Renewal", "=ds=#s2#", "", "10%"};
- { 26, 45607, "", "=q4=Fang of Oblivion", "=ds=#h1#, #w4#", "", "18%"};
- { 27, 45857, "", "=q4=Archivum Data Disc", "=ds=#m2#", "", "94%"};
- Prev = "UlduarDeconstructor25Man";
- Next = "UlduarKologarn25Man";
- };
-
- AtlasLoot_Data["UlduarKologarn"] = {
- { 1, 45704, "", "=q4=Shawl of the Shattered Giant", "=ds=#s4#", "", "19%"};
- { 2, 45701, "", "=q4=Greaves of the Earthbinder", "=ds=#s12#, #a3#", "", "21%"};
- { 3, 45697, "", "=q4=Shoulderguards of the Solemn Watch", "=ds=#s3#, #a4#", "", "18%"};
- { 4, 45698, "", "=q4=Sabatons of the Iron Watcher", "=ds=#s12#, #a4#", "", "18%"};
- { 5, 45696, "", "=q4=Mark of the Unyielding", "=ds=#s2#", "", "19%"};
- { 6, 45699, "", "=q4=Pendant of the Piercing Glare", "=ds=#s2#", "", "17%"};
- { 7, 45702, "", "=q4=Emerald Signet Ring", "=ds=#s13#", "", "18%"};
- { 8, 45703, "", "=q4=Spark of Hope", "=ds=#s14#", "", "17%"};
- { 9, 45700, "", "=q4=Stoneguard", "=ds=#h1#, #w10#", "", "19%"};
- { 10, 45695, "", "=q4=Spire of Withering Dreams", "=ds=#w9#", "", "21%"};
- Prev = "UlduarIronCouncil";
- Next = "UlduarAlgalon";
- };
-
- AtlasLoot_Data["UlduarKologarn25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45272, "", "=q4=Robes of the Umbral Brute", "=ds=#s5#, #a1#", "", "20%"};
- { 5, 45275, "", "=q4=Bracers of Unleashed Magic", "=ds=#s8#, #a1#", "", "18%"};
- { 6, 45273, "", "=q4=Handwraps of Plentiful Recovery", "=ds=#s9#, #a1#", "", "18%"};
- { 7, 45265, "", "=q4=Shoulderpads of the Monolith", "=ds=#s3#, #a2#", "", "16%"};
- { 8, 45274, "", "=q4=Leggings of the Stoneweaver", "=ds=#s11#, #a3#", "", "14%"};
- { 9, 45264, "", "=q4=Decimator's Armguards", "=ds=#s8#, #a4#", "", "16%"};
- { 10, 45269, "", "=q4=Unfaltering Armguards", "=ds=#s8#, #a4#", "", "16%"};
- { 11, 45268, "", "=q4=Gloves of the Pythonic Guardian", "=ds=#s9#, #a4#", "", "18%"};
- { 12, 45267, "", "=q4=Saronite Plated Legguards", "=ds=#s11#, #a4#", "", "18%"};
- { 13, 45262, "", "=q4=Necklace of Unerring Mettle", "=ds=#s2#", "", "18%"};
- { 14, 45263, "", "=q4=Wrathstone", "=ds=#s14#", "", "18%"};
- { 15, 45271, "", "=q4=Ironmender", "=ds=#s15#", "", "17%"};
- { 16, 45270, "", "=q4=Idol of the Crying Wind", "=ds=#s16#, #w14#", "", "17%"};
- { 17, 45266, "", "=q4=Malice", "=ds=#h1#, #w10#", "", "18%"};
- { 18, 45261, "", "=q4=Giant's Bane", "=ds=#w5#", "", "16%"};
- Prev = "UlduarIronCouncil25Man";
- Next = "UlduarAlgalon25Man";
- };
-
- AtlasLoot_Data["UlduarAlgalon"] = {
- { 1, 46042, "", "=q4=Drape of the Messenger", "=ds=#s4#"};
- { 2, 46045, "", "=q4=Pulsar Gloves", "=ds=#s9#, #a1#", "", "40%"};
- { 3, 46050, "", "=q4=Starlight Treads", "=ds=#s12#, #a1#"};
- { 4, 46043, "", "=q4=Gloves of the Endless Dark", "=ds=#s9#, #a2#"};
- { 5, 46049, "", "=q4=Zodiac Leggings", "=ds=#s11#, #a2#"};
- { 6, 46044, "", "=q4=Observer's Mantle", "=ds=#s3#, #a3#"};
- { 7, 46037, "", "=q4=Shoulderplates of the Celestial Watch", "=ds=#s3#, #a4#"};
- { 8, 46039, "", "=q4=Breastplate of the Timeless", "=ds=#s5#, #a4#"};
- { 9, 46041, "", "=q4=Starfall Girdle", "=ds=#s10#, #a4#"};
- { 10, 46047, "", "=q4=Pendant of the Somber Witness", "=ds=#s2#"};
- { 11, 46040, "", "=q4=Strength of the Heavens", "=ds=#s2#", "", "40%"};
- { 12, 46048, "", "=q4=Band of Lights", "=ds=#s13#"};
- { 13, 46046, "", "=q4=Nebula Band", "=ds=#s13#"};
- { 14, 46038, "", "=q4=Dark Matter", "=ds=#s14#"};
- { 15, 46051, "", "=q4=Meteorite Crystal", "=ds=#s14#", "", "40%"};
- { 16, 46052, "", "=q4=Reply-Code Alpha", "=ds=#m2#", "", "100%"};
- { 17, 46320, "", "=q4=Drape of the Skyherald", "=q1=#m4#: =ds=#s4#"};
- { 18, 46321, "", "=q4=Sunglimmer Drape", "=q1=#m4#: =ds=#s4#"};
- { 19, 46322, "", "=q4=Brann's Sealing Ring", "=q1=#m4#: =ds=#s13#"};
- { 20, 46323, "", "=q4=Starshine Signet", "=q1=#m4#: =ds=#s13#"};
- Prev = "UlduarKologarn";
- Next = "UlduarAuriaya";
- };
-
- AtlasLoot_Data["UlduarAlgalon25Man"] = {
- { 1, 45665, "", "=q4=Pharos Gloves", "=ds=#s9#, #a1#", "", "40%"};
- { 2, 45619, "", "=q4=Starwatcher's Binding", "=ds=#s10#, #a1#", "", ""};
- { 3, 45611, "", "=q4=Solar Bindings", "=ds=#s8#, #a2#", "", "40%"};
- { 4, 45616, "", "=q4=Star-beaded Clutch", "=ds=#s10#, #a2#"};
- { 5, 45610, "", "=q4=Boundless Gaze", "=ds=#s1#, #a3#"};
- { 6, 45615, "", "=q4=Planewalker Treads", "=ds=#s12#, #a3#"};
- { 7, 45594, "", "=q4=Legplates of the Endless Void", "=ds=#s11#, #a4#", "", "20%"};
- { 8, 45599, "", "=q4=Sabatons of Lifeless Night", "=ds=#s12#, #a4#"};
- { 9, 45617, "", "=q4=Cosmos", "=ds=#s15#"};
- { 10, 45620, "", "=q4=Starshard Edge", "=ds=#h3#, #w4#"};
- { 11, 45607, "", "=q4=Fang of Oblivion", "=ds=#h1#, #w4#", "", "18%"};
- { 12, 45612, "", "=q4=Constellus", "=ds=#h3#, #w6#", "", "11%"};
- { 13, 45613, "", "=q4=Dreambinder", "=ds=#w9#", "", "1%"};
- { 14, 45587, "", "=q4=Bulwark of Algalon", "=ds=#w8#"};
- { 15, 45570, "", "=q4=Skyforge Crossbow", "=ds=#w3#", "", "1%"};
- { 16, 45609, "", "=q4=Comet's Trail", "=ds=#s14#"};
- { 18, 46053, "", "=q4=Reply-Code Alpha", "=ds=#m2#", "", "100%"};
- { 19, 45588, "", "=q4=Drape of the Skyborn", "=q1=#m4#: =ds=#s4#"};
- { 20, 45618, "", "=q4=Sunglimmer Cloak", "=q1=#m4#: =ds=#s4#"};
- { 21, 45608, "", "=q4=Brann's Signet Ring", "=q1=#m4#: =ds=#s13#"};
- { 22, 45614, "", "=q4=Starshine Circle", "=q1=#m4#: =ds=#s13#"};
- Prev = "UlduarKologarn25Man";
- Next = "UlduarAuriaya25Man";
- };
-
- AtlasLoot_Data["UlduarAuriaya"] = {
- { 1, 45832, "", "=q4=Mantle of the Preserver", "=ds=#s3#, #a1#", "", "19%"};
- { 2, 45865, "", "=q4=Raiments of the Corrupted", "=ds=#s5#, #a1#", "", "20%"};
- { 3, 45864, "", "=q4=Cover of the Keepers", "=ds=#s1#, #a2#", "", "20%"};
- { 4, 45709, "", "=q4=Nimble Climber's Belt", "=ds=#s10#, #a2#", "", "19%"};
- { 5, 45711, "", "=q4=Ironaya's Discarded Mantle", "=ds=#s3#, #a3#", "", "19%"};
- { 6, 45712, "", "=q4=Chestplate of Titanic Fury", "=ds=#s5#, #a4#", "", "20%"};
- { 7, 45708, "", "=q4=Archaedas' Lost Legplates", "=ds=#s11#, #a4#", "", "20%"};
- { 8, 45866, "", "=q4=Elemental Focus Stone", "=ds=#s14#", "", "19%"};
- { 9, 45707, "", "=q4=Shieldwall of the Breaker", "=ds=#w8#", "", "19%"};
- { 10, 45713, "", "=q4=Nurturing Touch", "=ds=#w12#", "", "21%"};
- Prev = "UlduarAlgalon";
- Next = "UlduarHodir";
- };
-
- AtlasLoot_Data["UlduarAuriaya25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45319, "", "=q4=Cloak of the Makers", "=ds=#s4#", "", "19%"};
- { 5, 45435, "", "=q4=Cowl of the Absolute", "=ds=#s1#, #a1#", "", "19%"};
- { 6, 45441, "", "=q4=Sandals of the Ancient Keeper", "=ds=#s12#, #a1#", "", "20%"};
- { 7, 45439, "", "=q4=Unwavering Stare", "=ds=#s1#, #a2#", "", "20%"};
- { 8, 45325, "", "=q4=Gloves of the Stonereaper", "=ds=#s9#, #a2#", "", "20%"};
- { 9, 45440, "", "=q4=Amice of the Stoic Watch", "=ds=#s3#, #a3#", "", "20%"};
- { 10, 45320, "", "=q4=Shoulderplates of the Eternal", "=ds=#s3#, #a4#", "", "20%"};
- { 11, 45334, "", "=q4=Unbreakable Chestguard", "=ds=#s5#, #a4#", "", "18%"};
- { 12, 45434, "", "=q4=Greaves of the Rockmender", "=ds=#s12#, #a4#", "", "20%"};
- { 13, 45326, "", "=q4=Platinum Band of the Aesir", "=ds=#s13#", "", "19%"};
- { 14, 45438, "", "=q4=Ring of the Faithful Servant", "=ds=#s13#", "", "19%"};
- { 15, 45436, "", "=q4=Libram of the Resolute", "=ds=#s16#, #w16#", "", "20%"};
- { 16, 45437, "", "=q4=Runescribed Blade", "=ds=#h3#, #w10#", "", "20%"};
- { 17, 45315, "", "=q4=Stonerender", "=ds=#h1#, #w6#", "", "19%"};
- { 18, 45327, "", "=q4=Siren's Cry", "=ds=#w2#", "", "20%"};
- Prev = "UlduarAlgalon25Man";
- Next = "UlduarHodir25Man";
- };
-
- AtlasLoot_Data["UlduarHodir"] = {
- { 1, 45873, "", "=q4=Winter's Frigid Embrace", "=ds=#s4#", "", "15%"};
- { 2, 45464, "", "=q4=Cowl of Icy Breaths", "=ds=#s1#, #a1#", "", "20%"};
- { 3, 45874, "", "=q4=Signet of Winter", "=ds=#s13#", "", "16%"};
- { 4, 45458, "", "=q4=Stormedge", "=ds=#h2#, #w1#", "", "17%"};
- { 5, 45872, "", "=q4=Avalanche", "=ds=#w2#", "", "22%"};
- { 7, 45650, "", "=q4=Leggings of the Wayward Conqueror", "=ds=#e15#", "", "29%"};
- { 8, 45651, "", "=q4=Leggings of the Wayward Protector", "=ds=#e15#", "", "29%"};
- { 9, 45652, "", "=q4=Leggings of the Wayward Vanquisher", "=ds=#e15#", "", "34%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 45888, "", "=q4=Bitter Cold Armguards", "=ds=#s8#, #a4#", "", "18%"};
- { 18, 45876, "", "=q4=Shiver", "=ds=#h1#, #w6#", "", "16%"};
- { 19, 45886, "", "=q4=Icecore Staff", "=ds=#w9#", "", "20%"};
- { 20, 45887, "", "=q4=Ice Layered Barrier", "=ds=#w8#", "", "18%"};
- { 21, 45877, "", "=q4=The Boreal Guard", "=ds=#w8#", "", "17%"};
- { 23, 45786, "", "=q1=Hodir's Sigil", "=ds=#m3#", "", "23%"};
- Prev = "UlduarAuriaya";
- Next = "UlduarThorim";
- };
-
- AtlasLoot_Data["UlduarHodir25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45453, "", "=q4=Winter's Icy Embrace", "=ds=#s5#, #a2#", "", "16%"};
- { 5, 45454, "", "=q4=Frost-bound Chain Bracers", "=ds=#s8#, #a3#", "", "18%"};
- { 6, 45452, "", "=q4=Frostplate Greaves", "=ds=#s11#, #a4#", "", "16%"};
- { 7, 45451, "", "=q4=Frozen Loop", "=ds=#s13#", "", "15%"};
- { 8, 45450, "", "=q4=Northern Barrier", "=ds=#w8#", "", "19%"};
- { 10, 45632, "", "=q4=Breastplate of the Wayward Conqueror", "=ds=#e15#", "", "52%"};
- { 11, 45633, "", "=q4=Breastplate of the Wayward Protector", "=ds=#e15#", "", "50%"};
- { 12, 45634, "", "=q4=Breastplate of the Wayward Vanquisher", "=ds=#e15#", "", "71%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 45461, "", "=q4=Drape of Icy Intent", "=ds=#s4#", "", "19%"};
- { 18, 45462, "", "=q4=Gloves of the Frozen Glade", "=ds=#s9#, #a2#", "", "10%"};
- { 19, 45460, "", "=q4=Bindings of Winter Gale", "=ds=#s8#, #a3#", "", "12%"};
- { 20, 45459, "", "=q4=Frigid Strength of Hodir", "=ds=#s2#", "", "13%"};
- { 21, 45612, "", "=q4=Constellus", "=ds=#h3#, #w6#", "", "11%"};
- { 22, 45457, "", "=q4=Staff of Endless Winter", "=ds=#w9#", "", "19%"};
- { 24, 45815, "", "=q1=Hodir's Sigil", "=ds=#m3#", "", "21%"};
- Prev = "UlduarAuriaya25Man";
- Next = "UlduarThorim25Man";
- };
-
- AtlasLoot_Data["UlduarThorim"] = {
- { 1, 45893, "", "=q4=Guise of the Midgard Serpent", "=ds=#s1#, #a2#", "", "19%"};
- { 2, 45927, "", "=q4=Handwraps of Resonance", "=ds=#s9#, #a1#", "", "17%"};
- { 3, 45894, "", "=q4=Leggings of Unstable Discharge", "=ds=#s11#, #a1#", "", "17%"};
- { 4, 45895, "", "=q4=Belt of the Blood Pit", "=ds=#s10#, #a3#", "", "18%"};
- { 5, 45892, "", "=q4=Legacy of Thunder", "=ds=#h1# #w6#", "", "18%"};
- { 7, 45659, "", "=q4=Spaulders of the Wayward Conqueror", "=ds=#e15#", "", "25%"};
- { 8, 45660, "", "=q4=Spaulders of the Wayward Protector", "=ds=#e15#", "", "28%"};
- { 9, 45661, "", "=q4=Spaulders of the Wayward Vanquisher", "=ds=#e15#", "", "34%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 45928, "", "=q4=Gauntlets of the Thunder God", "=ds=#s9#, #a4#", "", "5%"};
- { 18, 45933, "", "=q4=Pendant of the Shallow Grave", "=ds=#s2#", "", "4%"};
- { 19, 45931, "", "=q4=Mjolnir Runestone", "=ds=#s14#", "", "5%"};
- { 20, 45929, "", "=q4=Sif's Remembrance", "=ds=#s14#", "", "4%"};
- { 21, 45930, "", "=q4=Combatant's Bootblade", "=ds=#h1# #w4#", "", "5%"};
- { 23, 45784, "", "=q1=Thorim's Sigil", "=ds=#m3#", "", "5%"};
- Prev = "UlduarHodir";
- Next = "UlduarFreya";
- };
-
- AtlasLoot_Data["UlduarThorim25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45468, "", "=q4=Leggings of Lost Love", "=ds=#s11#, #a1#", "", "17%"};
- { 5, 45467, "", "=q4=Belt of the Betrayed", "=ds=#s10#, #a3#", "", "17%"};
- { 6, 45469, "", "=q4=Sif's Promise", "=ds=#s13#", "", "14%"};
- { 7, 45466, "", "=q4=Scale of Fates", "=ds=#s14#", "", "17%"};
- { 8, 45463, "", "=q4=Vulmir, the Northern Tempest", "=ds=#h1# #w6#", "", "18%"};
- { 10, 45638, "", "=q4=Crown of the Wayward Conqueror", "=ds=#e15#", "", "50%"};
- { 11, 45639, "", "=q4=Crown of the Wayward Protector", "=ds=#e15#", "", "57%"};
- { 12, 45640, "", "=q4=Crown of the Wayward Vanquisher", "=ds=#e15#", "", "71%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 45473, "", "=q4=Embrace of the Gladiator", "=ds=#s5#, #a2#", "", "2%"};
- { 18, 45474, "", "=q4=Pauldrons of the Combatant", "=ds=#s3#, #a3#", "", "2%"};
- { 19, 45472, "", "=q4=Warhelm of the Champion", "=ds=#s1#, #a4#", "", "1%"};
- { 20, 45471, "", "=q4=Fate's Clutch", "=ds=#s13#", "", "1%"};
- { 21, 45570, "", "=q4=Skyforge Crossbow", "=ds=#w3#", "", "1%"};
- { 22, 45470, "", "=q4=Wisdom's Hold", "=ds=#w8#", "", "2%"};
- { 24, 45817, "", "=q1=Thorim's Sigil", "=ds=#m3#", "", "3%"};
- Prev = "UlduarHodir25Man";
- Next = "UlduarFreya25Man";
- };
-
- AtlasLoot_Data["UlduarFreya"] = {
- { 1, 45940, "", "=q4=Tunic of the Limber Stalker", "=ds=#s5#, #a2#", "", "15%"};
- { 2, 45941, "", "=q4=Chestguard of the Lasher", "=ds=#s5#, #a3#", "", "15%"};
- { 3, 45935, "", "=q4=Ironbark Faceguard", "=ds=#s1#, #a4#", "", "17%"};
- { 4, 45936, "", "=q4=Legplates of Flourishing Resolve", "=ds=#s11#, #a4#", "", "15%"};
- { 5, 45934, "", "=q4=Unraveling Reach", "=ds=#w9#", "", "18%"};
- { 7, 45644, "", "=q4=Gloves of the Wayward Conqueror", "=ds=#e15#", "", "25%"};
- { 8, 45645, "", "=q4=Gloves of the Wayward Protector", "=ds=#e15#", "", "23%"};
- { 9, 45646, "", "=q4=Gloves of the Wayward Vanquisher", "=ds=#e15#", "", "30%"};
- { 11, 46110, "", "=q3=Alchemist's Cache", "=ds=#p1# (425)", "", "66%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 45943, "", "=q4=Gloves of Whispering Winds", "=ds=#s9#, #a3#", "", "2%"};
- { 18, 45945, "", "=q4=Seed of Budding Carnage", "=ds=#s2#", "", "2%"};
- { 19, 45946, "", "=q4=Fire Orchid Signet", "=ds=#s13#", "", "2%"};
- { 20, 45947, "", "=q4=Serilas, Blood Blade of Invar One-Arm", "=ds=#h1# #w10#", "", "2%"};
- { 21, 45294, "", "=q4=Petrified Ivy Sprig", "=ds=#w12#", "", "1%"};
- { 23, 45788, "", "=q1=Freya's Sigil", "=ds=#m3#", "", "4%"};
- Prev = "UlduarThorim";
- Next = "UlduarMimiron";
- };
-
- AtlasLoot_Data["UlduarFreya25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45483, "", "=q4=Boots of the Servant", "=ds=#s12#, #a1#", "", "15%"};
- { 5, 45482, "", "=q4=Leggings of the Lifetender", "=ds=#s11#, #a2#", "", "17%"};
- { 6, 45481, "", "=q4=Gauntlets of Ruthless Reprisal", "=ds=#s9#, #a4#", "", "16%"};
- { 7, 45480, "", "=q4=Nymph Heart Charm", "=ds=#s2#", "", "13%"};
- { 8, 45479, "", "=q4=The Lifebinder", "=ds=#w9#", "", "19%"};
- { 10, 45653, "", "=q4=Legplates of the Wayward Conqueror", "=ds=#e15#", "", "43%"};
- { 11, 45654, "", "=q4=Legplates of the Wayward Protector", "=ds=#e15#", "", "52%"};
- { 12, 45655, "", "=q4=Legplates of the Wayward Vanquisher", "=ds=#e15#", "", "69%"};
- { 14, 46110, "", "=q3=Alchemist's Cache", "=ds=#p1# (425)", "", "66%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 45486, "", "=q4=Drape of the Sullen Goddess", "=ds=#s4#"};
- { 18, 45488, "", "=q4=Leggings of the Enslaved Idol", "=ds=#s11#, #a1#", "", "0.13%"};
- { 19, 45487, "", "=q4=Handguards of Revitalization", "=ds=#s9#, #a4#", "", "0.34%"};
- { 20, 45485, "", "=q4=Bronze Pendant of the Vanir", "=ds=#s2#"};
- { 21, 45484, "", "=q4=Bladetwister", "=ds=#h1#, #w4#", "", "0.27%"};
- { 22, 45613, "", "=q4=Dreambinder", "=ds=#w9#", "", "1%"};
- { 24, 45814, "", "=q1=Freya's Sigil", "=ds=#m3#", "", "0.27%"};
- Prev = "UlduarThorim25Man";
- Next = "UlduarMimiron25Man";
- };
-
- AtlasLoot_Data["UlduarMimiron"] = {
- { 1, 45973, "", "=q4=Stylish Power Cape", "=ds=#s4#", "", "19%"};
- { 2, 45976, "", "=q4=Static Charge Handwraps", "=ds=#s9#, #a1#", "", "20%"};
- { 3, 45974, "", "=q4=Shoulderguards of Assimilation", "=ds=#s3#, #a2#", "", "75%"};
- { 4, 45975, "", "=q4=Cable of the Metrognome", "=ds=#s10#, #a4#", "", "11%"};
- { 5, 45972, "", "=q4=Pulse Baton", "=ds=#h3#, #w6#", "", "0.13%"};
- { 7, 45647, "", "=q4=Helm of the Wayward Conqueror", "=ds=#e15#", "", "28%"};
- { 8, 45648, "", "=q4=Helm of the Wayward Protector", "=ds=#e15#", "", "75%"};
- { 9, 45649, "", "=q4=Helm of the Wayward Vanquisher", "=ds=#e15#", "", "37%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 45993, "", "=q4=Mimiron's Flight Goggles", "=ds=#s1#, #a2#", "", "1%"};
- { 18, 45989, "", "=q4=Tempered Mercury Greaves", "=ds=#s12#, #a3#", "", "0.34%"};
- { 19, 45982, "", "=q4=Fused Alloy Legplates", "=ds=#s11#, #a4#", "", "0.34%"};
- { 20, 45988, "", "=q4=Greaves of the Iron Army", "=ds=#s12#, #a4#"};
- { 21, 45990, "", "=q4=Fusion Blade", "=ds=#h1#, #w10#", "", "0.13%"};
- { 23, 45787, "", "=q1=Mimiron's Sigil", "=ds=#m3#", "", "2%"};
- Prev = "UlduarFreya";
- Next = "UlduarVezax";
- };
-
- AtlasLoot_Data["UlduarMimiron25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45493, "", "=q4=Asimov's Drape", "=ds=#s4#", "", "11%"};
- { 5, 45492, "", "=q4=Malleable Steelweave Mantle", "=ds=#s3#, #a2#", "", "25%"};
- { 6, 45491, "", "=q4=Waistguard of the Creator", "=ds=#s10#, #a2#", "", "17%"};
- { 7, 45490, "", "=q4=Pandora's Plea", "=ds=#s14#", "", "17%"};
- { 8, 45489, "", "=q4=Insanity's Grip", "=ds=#h3#, #w13#", "", "15%"};
- { 10, 45641, "", "=q4=Gauntlets of the Wayward Conqueror", "=ds=#e15#", "", "45%"};
- { 11, 45642, "", "=q4=Gauntlets of the Wayward Protector", "=ds=#e15#", "", "50%"};
- { 12, 45643, "", "=q4=Gauntlets of the Wayward Vanquisher", "=ds=#e15#", "", "68%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 45496, "", "=q4=Titanskin Cloak", "=ds=#s4#", "", "0.33%"};
- { 18, 45497, "", "=q4=Crown of Luminescence", "=ds=#s1#, #a1#"};
- { 19, 45663, "", "=q4=Armbands of Bedlam", "=ds=#s8#, #a4#"};
- { 20, 45495, "", "=q4=Conductive Seal", "=ds=#s13#"};
- { 21, 45494, "", "=q4=Delirium's Touch", "=ds=#h4#, #w13#"};
- { 22, 45620, "", "=q4=Starshard Edge", "=ds=#h3#, #w4#"};
- { 24, 45816, "", "=q1=Mimiron's Sigil", "=ds=#m3#", "", "0.16%"};
- Prev = "UlduarFreya25Man";
- Next = "UlduarVezax25Man";
- };
-
- AtlasLoot_Data["UlduarVezax"] = {
- { 1, 46014, "", "=q4=Saronite Animus Cloak", "=ds=#s4#", "", "22%"};
- { 2, 46013, "", "=q4=Underworld Mantle", "=ds=#s3#, #a1#", "", "20%"};
- { 3, 46012, "", "=q4=Vestments of the Piercing Light", "=ds=#s5#, #a1#", "", "20%"};
- { 4, 46009, "", "=q4=Bindings of the Depths", "=ds=#s8#, #a2#", "", "17%"};
- { 5, 46346, "", "=q4=Boots of Unsettled Prey", "=ds=#s12#, #a3#", "", "6%"};
- { 6, 45997, "", "=q4=Gauntlets of the Wretched", "=ds=#s9#, #a4#", "", "17%"};
- { 7, 46008, "", "=q4=Choker of the Abyss", "=ds=#s2#", "", "18%"};
- { 8, 46015, "", "=q4=Pendant of Endless Despair", "=ds=#s2#", "", "18%"};
- { 9, 46010, "", "=q4=Darkstone Ring", "=ds=#s13#", "", "21%"};
- { 10, 46011, "", "=q4=Shadowbite", "=ds=#h1#, #w4#", "", "19%"};
- { 11, 45996, "", "=q4=Hoperender", "=ds=#w7#", "", "22%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 46032, "", "=q4=Drape of the Faceless General", "=ds=#s4#", "", "2%"};
- { 18, 46034, "", "=q4=Leggings of Profound Darkness", "=ds=#s11#, #a1#", "", "3%"};
- { 19, 46036, "", "=q4=Void Sabre", "=ds=#h1#, #w10#", "", "2%"};
- { 20, 46035, "", "=q4=Aesuga, Hand of the Ardent Champion", "=ds=#h1#, #w6#", "", "3%"};
- { 21, 46033, "", "=q4=Tortured Earth", "=ds=#w9#", "", "4%"};
- Prev = "UlduarMimiron";
- Next = "UlduarYoggSaron";
- };
-
- AtlasLoot_Data["UlduarVezax25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45514, "", "=q4=Mantle of the Unknowing", "=ds=#s3#, #a1#", "", "20%"};
- { 5, 45508, "", "=q4=Belt of the Darkspeaker", "=ds=#s10#, #a1#", "", "21%"};
- { 6, 45512, "", "=q4=Grips of the Unbroken", "=ds=#s9#, #a2#", "", "19%"};
- { 7, 45504, "", "=q4=Darkcore Leggings", "=ds=#s11#, #a3#", "", "18%"};
- { 8, 45513, "", "=q4=Boots of the Forgotten Depths", "=ds=#s12#, #a3#", "", "18%"};
- { 9, 45502, "", "=q4=Helm of the Faceless", "=ds=#s1#, #a4#", "", "19%"};
- { 10, 45505, "", "=q4=Belt of Clinging Hope", "=ds=#s10#, #a4#", "", "19%"};
- { 11, 45501, "", "=q4=Boots of the Underdweller", "=ds=#s12#, #a4#", "", "17%"};
- { 12, 45503, "", "=q4=Metallic Loop of the Sufferer", "=ds=#s13#", "", "20%"};
- { 13, 45515, "", "=q4=Ring of the Vacant Eye", "=ds=#s13#", "", "21%"};
- { 14, 45507, "", "=q4=The General's Heart", "=ds=#s14#", "", "20%"};
- { 15, 45509, "", "=q4=Idol of the Corruptor", "=ds=#s16#, #w14#", "", "17%"};
- { 16, 45145, "", "=q4=Libram of the Sacred Shield", "=ds=#s16#, #w16#", "", "19%"};
- { 17, 45498, "", "=q4=Lotrafen, Spear of the Damned", "=ds=#w7#", "", "20%"};
- { 18, 45511, "", "=q4=Scepter of Lost Souls", "=ds=#w12#", "", "19%"};
- { 20, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 21, 45520, "", "=q4=Handwraps of the Vigilant", "=ds=#s9#, #a1#", "", "0.32%"};
- { 22, 45519, "", "=q4=Vestments of the Blind Denizen", "=ds=#s5#, #a2#", "", "0.32%"};
- { 23, 45517, "", "=q4=Pendulum of Infinity", "=ds=#s2#", "", "0.36%"};
- { 24, 45518, "", "=q4=Flare of the Heavens", "=ds=#s14#"};
- { 25, 45516, "", "=q4=Voldrethar, Dark Blade of Oblivion", "=ds=#h2#, #w10#"};
- Prev = "UlduarMimiron25Man";
- Next = "UlduarYoggSaron25Man";
- };
-
- AtlasLoot_Data["UlduarYoggSaron"] = {
- { 1, 46030, "", "=q4=Treads of the Dragon Council", "=ds=#s12#, #a1#", "", "17%"};
- { 2, 46019, "", "=q4=Leggings of the Insatiable", "=ds=#s11#, #a3#", "", "12%"};
- { 3, 46028, "", "=q4=Faceguard of the Eyeless Horror", "=ds=#s1#, #a4#", "", "17%"};
- { 4, 46022, "", "=q4=Pendant of a Thousand Maws", "=ds=#s2#", "", "8%"};
- { 5, 46021, "", "=q4=Royal Seal of King Llane", "=ds=#s14#", "", "12%"};
- { 6, 46024, "", "=q4=Kingsbane", "=ds=#h1#, #w4#", "", "10%"};
- { 7, 46016, "", "=q4=Abaddon", "=ds=#h2#, #w10#", "", "17%"};
- { 8, 46031, "", "=q4=Touch of Madness", "=ds=#h1#, #w1#", "", "25%"};
- { 9, 46025, "", "=q4=Devotion", "=ds=#w9#", "", "23%"};
- { 10, 46018, "", "=q4=Deliverance", "=ds=#w3#", "", "35%"};
- { 12, 45635, "", "=q4=Chestguard of the Wayward Conqueror", "=ds=#e15#", "", "52%"};
- { 13, 45636, "", "=q4=Chestguard of the Wayward Protector", "=ds=#e15#", "", "50%"};
- { 14, 45637, "", "=q4=Chestguard of the Wayward Vanquisher", "=ds=#e15#", "", "27%"};
- { 16, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 17, 46068, "", "=q4=Amice of Inconceivable Horror", "=ds=#s3#, #a1#"};
- { 18, 46095, "", "=q4=Soul-Devouring Cinch", "=ds=#s10#, #a2#"};
- { 19, 46096, "", "=q4=Signet of Soft Lament", "=ds=#s13#"};
- { 20, 46097, "", "=q4=Caress of Insanity", "=ds=#h1#, #w6#"};
- { 21, 46067, "", "=q4=Hammer of Crushing Whispers", "=ds=#h2#, #w6#"};
- { 23, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["Alone in the Darkness"]};
- { 24, 46312, "", "=q4=Vanquished Clutches of Yogg-Saron", "=ds=#s14#", "", "100%"};
- Prev = "UlduarVezax";
- Next = "UlduarTrash";
- };
-
- AtlasLoot_Data["UlduarYoggSaron25Man"] = {
- { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%"};
- { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 4, 45529, "", "=q4=Shawl of Haunted Memories", "=ds=#s4#", "", "25%"};
- { 5, 45532, "", "=q4=Cowl of Dark Whispers", "=ds=#s1#, #a1#", "", "17%"};
- { 6, 45523, "", "=q4=Garona's Guise", "=ds=#s1#, #a2#", "", "18%"};
- { 7, 45524, "", "=q4=Chestguard of Insidious Intent", "=ds=#s5#, #a3#", "", "13%"};
- { 8, 45531, "", "=q4=Chestguard of the Fallen God", "=ds=#s5#, #a3#", "", "16%"};
- { 9, 45525, "", "=q4=Godbane Signet", "=ds=#s13#", "", "11%"};
- { 10, 45530, "", "=q4=Sanity's Bond", "=ds=#s13#", "", "18%"};
- { 11, 45522, "", "=q4=Blood of the Old God", "=ds=#s14#", "", "20%"};
- { 12, 45527, "", "=q4=Soulscribe", "=ds=#h3#, #w4#", "", "9%"};
- { 13, 45521, "", "=q4=Earthshaper", "=ds=#h2#, #w6#", "", "15%"};
- { 16, 45656, "", "=q4=Mantle of the Wayward Conqueror", "=ds=#e15#", "", "59%"};
- { 17, 45657, "", "=q4=Mantle of the Wayward Protector", "=ds=#e15#", "", "54%"};
- { 18, 45658, "", "=q4=Mantle of the Wayward Vanquisher", "=ds=#e15#", "", "66%"};
- { 20, 0, "INV_Box_01", "=q6=#j53#", ""};
- { 21, 45537, "", "=q4=Treads of the False Oracle", "=ds=#s12#, #a1#", "", "1%"};
- { 22, 45536, "", "=q4=Legguards of Cunning Deception", "=ds=#s11#, #a2#", "", "1%"};
- { 23, 45534, "", "=q4=Seal of the Betrayed King", "=ds=#s13#"};
- { 24, 45535, "", "=q4=Show of Faith", "=ds=#s14#"};
- { 25, 45533, "", "=q4=Dark Edge of Depravity", "=ds=#h2#, #w1#", "", "1%"};
- { 27, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["Alone in the Darkness"]};
- { 28, 45693, "", "=q4=Mimiron's Head", "=ds=#e12#", "", "100%"};
- Prev = "UlduarVezax25Man";
- Next = "UlduarTrash25Man";
- };
-
- AtlasLoot_Data["UlduarTrash"] = {
- { 1, 46341, "", "=q4=Drape of the Spellweaver", "=ds=#s4#", "", "2%"};
- { 2, 46347, "", "=q4=Cloak of the Dormant Blaze", "=ds=#s4#", "", "2%"};
- { 3, 46344, "", "=q4=Iceshear Mantle", "=ds=#s3#, #a1#", "", "2%"};
- { 4, 46346, "", "=q4=Boots of Unsettled Prey", "=ds=#s12#, #a3#", "", "6%"};
- { 5, 46345, "", "=q4=Bracers of Righteous Reformation", "=ds=#s8#, #a4#", "", "2%"};
- { 6, 46340, "", "=q4=Adamant Handguards", "=ds=#s9#, #a4#", "", "2%"};
- { 7, 46343, "", "=q4=Fervor of the Protectorate", "=ds=#s2#", "", "2%"};
- { 8, 46339, "", "=q4=Mimiron's Repeater", "=ds=#w5#", "", "2%"};
- { 9, 46351, "", "=q4=Bloodcrush Cudgel", "=ds=#h1# #w6#", "", "2%"};
- { 10, 46350, "", "=q4=Pillar of Fortitude", "=ds=#w9#", "", "2%"};
- { 11, 46342, "", "=q4=Golemheart Longbow", "=ds=#w2#", "", "2%"};
- Prev = "UlduarYoggSaron";
- Next = "UlduarPatterns";
- };
-
- AtlasLoot_Data["UlduarTrash25Man"] = {
- { 1, 45541, "", "=q4=Shroud of Alteration", "=ds=#s4#", "", "2%"};
- { 2, 45549, "", "=q4=Grips of Chaos", "=ds=#s8#, #a1#", "", "3%"};
- { 3, 45547, "", "=q4=Relic Hunter's Cord", "=ds=#s10#, #a2#", "", "3%"};
- { 4, 45548, "", "=q4=Belt of the Sleeper", "=ds=#s10#, #a2#", "", "2%"};
- { 5, 45543, "", "=q4=Shoulders of Misfortune", "=ds=#s3#, #a3#", "", "2%"};
- { 6, 45544, "", "=q4=Leggings of the Tortured Earth", "=ds=#s11#, #a3#", "", "2%"};
- { 7, 45542, "", "=q4=Greaves of the Stonewarder", "=ds=#s12#, #a4#", "", "2%"};
- { 8, 45540, "", "=q4=Bladebearer's Signet", "=ds=#s13#", "", "2%"};
- { 9, 45539, "", "=q4=Pendant of Focused Energies", "=ds=#s2#", "", "6%"};
- { 10, 45538, "", "=q4=Titanstone Pendant", "=ds=#s2#", "", "3%"};
- { 11, 46138, "", "=q4=Idol of the Flourishing Life", "=ds=#s16#, #w14#", "", "6%"};
- { 12, 45605, "", "=q4=Daschal's Bite", "=ds=#h1# #w4#", "", "2%"};
- Prev = "UlduarYoggSaron25Man";
- Next = "UlduarPatterns";
- };
-
- AtlasLoot_Data["UlduarPatterns"] = {
- { 1, 45089, "", "=q4=Plans: Battlelord's Plate Boots", "=ds=#p2# (450)"};
- { 2, 45088, "", "=q4=Plans: Belt of the Titans", "=ds=#p2# (450)"};
- { 3, 45092, "", "=q4=Plans: Indestructible Plate Girdle", "=ds=#p2# (450)"};
- { 4, 45090, "", "=q4=Plans: Plate Girdle of Righteousness", "=ds=#p2# (450)"};
- { 5, 45093, "", "=q4=Plans: Spiked Deathdealers", "=ds=#p2# (450)"};
- { 6, 46027, "", "=q4=Formula: Enchant Weapon - Blade Ward", "=ds=#p4# (450)"};
- { 7, 46348, "", "=q4=Formula: Enchant Weapon - Blood Draining", "=ds=#p4# (450)"};
- { 8, 45100, "", "=q4=Pattern: Belt of Arctic Life", "=ds=#p7# (450)"};
- { 9, 45094, "", "=q4=Pattern: Belt of Dragons", "=ds=#p7# (450)"};
- { 10, 45096, "", "=q4=Pattern: Blue Belt of Chaos", "=ds=#p7# (450)"};
- { 11, 45095, "", "=q4=Pattern: Boots of Living Scale", "=ds=#p7# (450)"};
- { 12, 45101, "", "=q4=Pattern: Boots of Wintry Endurance", "=ds=#p7# (450)"};
- { 13, 45098, "", "=q4=Pattern: Death-warmed Belt", "=ds=#p7# (450)"};
- { 14, 45099, "", "=q4=Pattern: Footpads of Silence", "=ds=#p7# (450)"};
- { 15, 45097, "", "=q4=Pattern: Lightning Grounded Boots", "=ds=#p7# (450)"};
- { 16, 45104, "", "=q4=Pattern: Cord of the White Dawn", "=ds=#p8# (450)"};
- { 17, 45102, "", "=q4=Pattern: Sash of Ancient Power", "=ds=#p8# (450)"};
- { 18, 45105, "", "=q4=Pattern: Savior's Slippers", "=ds=#p8# (450)"};
- { 19, 45103, "", "=q4=Pattern: Spellslinger's Slippers", "=ds=#p8# (450)"};
- { 30, 45087, "", "=q3=Runed Orb", "=ds=#e8#"};
- };
-
- -----------------------------
- --- Trial of the Champion ---
- -----------------------------
-
- AtlasLoot_Data["TrialoftheChampionChampions"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 47173, "", "=q4=Bindings of the Wicked", "=ds=#s8#, #a1#"};
- { 3, 47170, "", "=q4=Belt of Fierce Competition", "=ds=#s10#, #a2#"};
- { 4, 47174, "", "=q4=Binding of the Tranquil Glade", "=ds=#s10#, #a2#"};
- { 5, 47175, "", "=q4=Scale Boots of the Outlander", "=ds=#s12#, #a3#"};
- { 6, 47172, "", "=q4=Helm of the Bested Gallant", "=ds=#s1#, #a4#"};
- { 7, 47171, "", "=q4=Legguards of Abandoned Fealty", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 47249, "", "=q4=Leggings of the Snowy Bramble", "=ds=#s11#, #a2#"};
- { 19, 47248, "", "=q4=Treads of Dismal Fortune", "=ds=#s12#, #a2#"};
- { 20, 47250, "", "=q4=Pauldrons of the Deafening Gale", "=ds=#s3#, #a3#"};
- { 21, 47244, "", "=q4=Chestguard of the Ravenous Fiend", "=ds=#s5#, #a3#"};
- { 22, 47243, "", "=q4=Mark of the Relentless", "=ds=#s13#"};
- { 23, 47493, "", "=q4=Edge of Ruin", "=ds=#h2#, #w1#"};
- { 24, 44990, "", "=q1=Champion's Seal", "=ds=#e15#", "", "100%"};
- Next = "TrialoftheChampionConfessorPaletress";
- };
-
- AtlasLoot_Data["TrialoftheChampionConfessorPaletress"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 47181, "", "=q4=Belt of the Churning Blaze", "=ds=#s10#, #a1#"};
- { 3, 47218, "", "=q4=The Confessor's Binding", "=ds=#s10#, #a1#"};
- { 4, 47185, "", "=q4=Leggings of the Haggard Apprentice", "=ds=#s11#, #a1#"};
- { 5, 47217, "", "=q4=Gaze of the Somber Keeper", "=ds=#s1#, #a2#"};
- { 6, 47177, "", "=q4=Gloves of the Argent Fanatic", "=ds=#s9#, #a2#"};
- { 7, 47178, "", "=q4=Carapace of Grim Visions", "=ds=#s5#, #a3#"};
- { 8, 47211, "", "=q4=Wristguards of Ceaseless Regret", "=ds=#s8#, #a3#"};
- { 9, 47176, "", "=q4=Breastplate of the Imperial Joust", "=ds=#s5#, #a4#"};
- { 10, 47212, "", "=q4=Mercy's Hold", "=ds=#s9#, #a4#"};
- { 11, 47219, "", "=q4=Brilliant Hailstone Amulet", "=ds=#s2#"};
- { 12, 47213, "", "=q4=Abyssal Rune", "=ds=#s14#"};
- { 13, 47214, "", "=q4=Banner of Victory", "=ds=#s14#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 47498, "", "=q4=Gloves of Dismal Fortune", "=ds=#s9#, #a2#"};
- { 19, 47496, "", "=q4=Armbands of the Wary Lookout", "=ds=#s8#, #a2#"};
- { 20, 47245, "", "=q4=Pauldrons of Concealed Loathing", "=ds=#s3#, #a3#"};
- { 21, 47497, "", "=q4=Helm of the Crestfallen Challenger", "=ds=#s1#, #a4#"};
- { 22, 47514, "", "=q4=Regal Aurous Shoulderplates", "=ds=#s3#, #a4#"};
- { 23, 47510, "", "=q4=Trueheart Girdle", "=ds=#s10#, #a4#"};
- { 24, 47495, "", "=q4=Legplates of Relentless Onslaught", "=ds=#s11#, #a4#"};
- { 25, 47511, "", "=q4=Plated Greaves of Providence", "=ds=#s12#, #a4#"};
- { 26, 47494, "", "=q4=Ancient Pendant of Arathor", "=ds=#s2#"};
- { 27, 47512, "", "=q4=Sinner's Confession", "=ds=#s13#"};
- { 28, 47500, "", "=q4=Peacekeeper Blade", "=ds=#h1#, #w10#"};
- { 29, 47522, "", "=q4=Marrowstrike", "=ds=#w7#"};
- { 30, 44990, "", "=q1=Champion's Seal", "=ds=#e15#", "", "100%"};
- Prev = "TrialoftheChampionChampions";
- Next = "TrialoftheChampionEadricthePure";
- };
-
- AtlasLoot_Data["TrialoftheChampionEadricthePure"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 47181, "", "=q4=Belt of the Churning Blaze", "=ds=#s10#, #a1#"};
- { 3, 47185, "", "=q4=Leggings of the Haggard Apprentice", "=ds=#s11#, #a1#"};
- { 4, 47210, "", "=q4=Mantle of Gnarled Overgrowth", "=ds=#s3#, #a2#"};
- { 5, 47177, "", "=q4=Gloves of the Argent Fanatic", "=ds=#s9#, #a2#"};
- { 6, 47202, "", "=q4=Leggings of Brazen Trespass", "=ds=#s11#, #a2#"};
- { 7, 47178, "", "=q4=Carapace of Grim Visions", "=ds=#s5#, #a3#"};
- { 8, 47176, "", "=q4=Breastplate of the Imperial Joust", "=ds=#s5#, #a4#"};
- { 9, 47197, "", "=q4=Gauntlets of the Stouthearted Crusader", "=ds=#s9#, #a4#"};
- { 10, 47201, "", "=q4=Boots of Heartfelt Repentance", "=ds=#s12#, #a4#"};
- { 11, 47199, "", "=q4=Greaves of the Grand Paladin", "=ds=#s12#, #a4#"};
- { 12, 47200, "", "=q4=Signet of Purity", "=ds=#s13#"};
- { 13, 47213, "", "=q4=Abyssal Rune", "=ds=#s14#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 18, 47501, "", "=q4=Kurisu's Indecision", "=ds=#s4#"};
- { 19, 47496, "", "=q4=Armbands of the Wary Lookout", "=ds=#s8#, #a2#"};
- { 20, 47498, "", "=q4=Gloves of Dismal Fortune", "=ds=#s9#, #a2#"};
- { 21, 47504, "", "=q4=Barkhide Treads", "=ds=#s12#, #a2#"};
- { 22, 47497, "", "=q4=Helm of the Crestfallen Challenger", "=ds=#s1#, #a4#"};
- { 23, 47502, "", "=q4=Majestic Silversmith Shoulderplates", "=ds=#s3#, #a4#"};
- { 24, 47495, "", "=q4=Legplates of Relentless Onslaught", "=ds=#s11#, #a4#"};
- { 25, 47503, "", "=q4=Legplates of the Argent Armistice", "=ds=#s11#, #a4#"};
- { 26, 47494, "", "=q4=Ancient Pendant of Arathor", "=ds=#s2#"};
- { 27, 47500, "", "=q4=Peacekeeper Blade", "=ds=#h1#, #w10#"};
- { 28, 47509, "", "=q4=Mariel's Sorrow", "=ds=#h3#, #w6#"};
- { 29, 47508, "", "=q4=Aledar's Battlestar", "=ds=#h1#, #w6#"};
- { 30, 44990, "", "=q1=Champion's Seal", "=ds=#e15#", "", "100%"};
- Prev = "TrialoftheChampionConfessorPaletress";
- Next = "TrialoftheChampionBlackKnight";
- };
-
- AtlasLoot_Data["TrialoftheChampionBlackKnight"] = {
- { 1, 47232, "", "=q4=Drape of the Undefeated", "=ds=#s4#"};
- { 2, 47226, "", "=q4=Mantle of Inconsolable Fear", "=ds=#s3#, #a1#"};
- { 3, 47230, "", "=q4=Handwraps of Surrendered Hope", "=ds=#s9#, #a1#"};
- { 4, 47221, "", "=q4=Shoulderpads of the Infamous Knave", "=ds=#s3#, #a2#"};
- { 5, 47231, "", "=q4=Belt of Merciless Cruelty", "=ds=#s10#, #a3#"};
- { 6, 47228, "", "=q4=Leggings of the Bloodless Knight", "=ds=#s11#, #a3#"};
- { 7, 47220, "", "=q4=Helm of the Violent Fray", "=ds=#s1#, #a4#"};
- { 8, 47229, "", "=q4=Girdle of Arrogant Downfall", "=ds=#s10#, #a4#"};
- { 9, 47227, "", "=q4=Girdle of the Pallid Knight", "=ds=#s10#, #a4#"};
- { 16, 47222, "", "=q4=Uruka's Band of Zeal", "=ds=#s13#"};
- { 17, 47215, "", "=q4=Tears of the Vanquished", "=ds=#s14#"};
- { 18, 47216, "", "=q4=The Black Heart", "=ds=#s14#"};
- Prev = "TrialoftheChampionEadricthePure";
- };
-
- AtlasLoot_Data["TrialoftheChampionBlackKnightHEROIC"] = {
- { 1, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
- { 2, 47564, "", "=q4=Gaze of the Unknown", "=ds=#s1#, #a1#"};
- { 3, 47527, "", "=q4=Embrace of Madness", "=ds=#s5#, #a1#"};
- { 4, 47560, "", "=q4=Boots of the Crackling Flame", "=ds=#s12#, #a1#"};
- { 5, 47529, "", "=q4=Mask of Distant Memory", "=ds=#s1#, #a2#"};
- { 6, 47561, "", "=q4=Gloves of the Dark Exile", "=ds=#s9#, #a3#"};
- { 7, 47563, "", "=q4=Girdle of the Dauntless Conqueror", "=ds=#s10#, #a3#"};
- { 8, 47565, "", "=q4=Vambraces of Unholy Command", "=ds=#s8#, #a4#"};
- { 9, 47567, "", "=q4=Gauntlets of Revelation", "=ds=#s9#, #a4#"};
- { 10, 47562, "", "=q4=Symbol of Redemption", "=ds=#s2#"};
- { 11, 47566, "", "=q4=The Warlord's Depravity", "=ds=#s2#"};
- { 16, 47569, "", "=q4=Spectral Kris", "=ds=#h3#, #w4#"};
- { 17, 49682, "", "=q4=Black Knight's Rondel", "=ds=#h1#, #w4#"};
- { 18, 47568, "", "=q4=True-aim Long Rifle", "=ds=#w5#"};
- { 20, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
- { 22, 44990, "", "=q1=Champion's Seal", "=ds=#e15#", "", "100%"};
- Prev = "TrialoftheChampionEadricthePure";
- };
-
- -----------------------------
- --- Trial of the Crusader ---
- -----------------------------
-
- AtlasLoot_Data["TrialoftheCrusaderNorthrendBeasts_A"] = {
- { 1, 47617, "", "=q4=Icehowl Cinch", "=ds=#s10#, #a1#"};
- { 2, 47613, "", "=q4=Shoulderpads of the Glacial Wilds", "=ds=#s3#, #a2#"};
- { 3, 47608, "", "=q4=Acidmaw Boots", "=ds=#s12#, #a2#"};
- { 4, 47616, "", "=q4=Shoulderguards of the Spirit Walker", "=ds=#s3#, #a3#"};
- { 5, 47610, "", "=q4=Armbands of the Northern Stalker", "=ds=#s8#, #a3#"};
- { 6, 47611, "", "=q4=Dreadscale Armguards", "=ds=#s8#, #a4#"};
- { 7, 47609, "", "=q4=Gauntlets of Rising Anger", "=ds=#s9#, #a4#"};
- { 8, 47615, "", "=q4=Belt of the Frozen Reach", "=ds=#s10#, #a4#"};
- { 9, 47614, "", "=q4=Girdle of the Impaler", "=ds=#s10#, #a4#"};
- { 16, 47607, "", "=q4=Collar of Ceaseless Torment", "=ds=#s2#"};
- { 17, 47578, "", "=q4=Carnivorous Band", "=ds=#s13#"};
- { 19, 47612, "", "=q4=Rod of Imprisoned Souls", "=ds=#w12#"};
- Next = "TrialoftheCrusaderLordJaraxxus_A";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderNorthrendBeasts_H"] = {
- { 1, 47855, "", "=q4=Icehowl Binding", "=ds=#s10#, #a1#"};
- { 2, 47857, "", "=q4=Pauldrons of the Glacial Wilds", "=ds=#s3#, #a2#"};
- { 3, 47853, "", "=q4=Acidmaw Treads", "=ds=#s12#, #a2#"};
- { 4, 47860, "", "=q4=Pauldrons of the Spirit Walker", "=ds=#s3#, #a3#"};
- { 5, 47850, "", "=q4=Bracers of the Northern Stalker", "=ds=#s8#, #a3#"};
- { 6, 47852, "", "=q4=Dreadscale Bracers", "=ds=#s8#, #a4#"};
- { 7, 47851, "", "=q4=Gauntlets of Mounting Anger", "=ds=#s9#, #a4#"};
- { 8, 47859, "", "=q4=Belt of the Impaler", "=ds=#s10#, #a4#"};
- { 9, 47858, "", "=q4=Girdle of the Frozen Reach", "=ds=#s10#, #a4#"};
- { 16, 47849, "", "=q4=Collar of Unending Torment", "=ds=#s2#"};
- { 17, 47854, "", "=q4=Gormok's Band", "=ds=#s13#"};
- { 19, 47856, "", "=q4=Scepter of Imprisoned Souls", "=ds=#w12#"};
- Next = "TrialoftheCrusaderLordJaraxxus_H";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderNorthrendBeasts25Man_A"] = {
- { 1, 46970, "", "=q4=Drape of the Untamed Predator", "=ds=#s4#"};
- { 2, 46976, "", "=q4=Shawl of the Refreshing Winds", "=ds=#s4#"};
- { 3, 46992, "", "=q4=Flowing Vestments of Ascent", "=ds=#s5#, #a1#"};
- { 4, 46972, "", "=q4=Cord of the Tenebrous Mist", "=ds=#s10#, #a1#"};
- { 5, 46974, "", "=q4=Leggings of the Broken Beast", "=ds=#s11#, #a2#"};
- { 6, 46988, "", "=q4=Boots of the Unrelenting Storm", "=ds=#s12#, #a2#"};
- { 7, 46960, "", "=q4=Breastplate of Cruel Intent", "=ds=#s5#, #a3#"};
- { 8, 46990, "", "=q4=Belt of the Ice Burrower", "=ds=#s10#, #a3#"};
- { 9, 46962, "", "=q4=Chestplate of the Towering Monstrosity", "=ds=#s5#, #a4#"};
- { 10, 46961, "", "=q4=Boneshatter Armplates", "=ds=#s8#, #a4#"};
- { 11, 46985, "", "=q4=Boots of the Courageous", "=ds=#s12#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 46959, "", "=q4=Band of the Violent Temperment", "=ds=#s13#"};
- { 20, 46979, "", "=q4=Blade of Tarasque", "=ds=#h3#, #w4#"};
- { 21, 46958, "", "=q4=Steel Bladebreaker", "=ds=#h1#, #w4#"};
- { 22, 46963, "", "=q4=Crystal Plated Vanguard", "=ds=#w8#"};
- Next = "TrialoftheCrusaderLordJaraxxus25Man_A";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderNorthrendBeasts25Man_H"] = {
- { 1, 47257, "", "=q4=Cloak of the Untamed Predator", "=ds=#s4#"};
- { 2, 47256, "", "=q4=Drape of the Refreshing Winds", "=ds=#s4#"};
- { 3, 47264, "", "=q4=Flowing Robes of Ascent", "=ds=#s5#, #a1#"};
- { 4, 47258, "", "=q4=Belt of the Tenebrous Mist", "=ds=#s10#, #a1#"};
- { 5, 47259, "", "=q4=Legwraps of the Broken Beast", "=ds=#s11#, #a2#"};
- { 6, 47262, "", "=q4=Boots of the Harsh Winter", "=ds=#s12#, #a2#"};
- { 7, 47251, "", "=q4=Cuirass of Cruel Intent", "=ds=#s5#, #a3#"};
- { 8, 47265, "", "=q4=Binding of the Ice Burrower", "=ds=#s10#, #a3#"};
- { 9, 47254, "", "=q4=Hauberk of the Towering Monstrosity", "=ds=#s5#, #a4#"};
- { 10, 47253, "", "=q4=Boneshatter Vambraces", "=ds=#s8#, #a4#"};
- { 11, 47263, "", "=q4=Sabatons of the Courageous", "=ds=#s12#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47252, "", "=q4=Ring of the Violent Temperament", "=ds=#s13#"};
- { 20, 47261, "", "=q4=Barb of Tarasque", "=ds=#h3#, #w4#"};
- { 21, 47255, "", "=q4=Stygian Bladebreaker", "=ds=#h1#, #w4#"};
- { 22, 47260, "", "=q4=Forlorn Barrier", "=ds=#w8#"};
- Next = "TrialoftheCrusaderLordJaraxxus25Man_A";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderLordJaraxxus_A"] = {
- { 1, 47663, "", "=q4=Felspark Bindings", "=ds=#s8#, #a1#"};
- { 2, 47620, "", "=q4=Leggings of the Demonic Messenger", "=ds=#s11#, #a1#"};
- { 3, 47669, "", "=q4=Belt of the Winter Solstice", "=ds=#s10#, #a2#"};
- { 4, 47621, "", "=q4=Girdle of the Farseer", "=ds=#s10#, #a3#"};
- { 5, 49235, "", "=q4=Boots of Tortured Space", "=ds=#s12#, #a3#"};
- { 6, 47683, "", "=q4=Sentinel Scouting Greaves", "=ds=#s12#, #a3#"};
- { 7, 47680, "", "=q4=Armguards of the Nether Lord", "=ds=#s8#, #a4#"};
- { 8, 47711, "", "=q4=Girdle of the Nether Champion", "=ds=#s10#, #a4#"};
- { 16, 47619, "", "=q4=Amulet of Binding Elements", "=ds=#s2#"};
- { 17, 47679, "", "=q4=Endurance of the Infernal", "=ds=#s2#"};
- { 18, 47618, "", "=q4=Firestorm Ring", "=ds=#s13#"};
- { 19, 47703, "", "=q4=Planestalker Signet", "=ds=#s13#"};
- { 21, 47676, "", "=q4=Dirk of the Night Watch", "=ds=#h1#, #w4#"};
- Prev = "TrialoftheCrusaderNorthrendBeasts_A";
- Next = "TrialoftheCrusaderFactionChampions_A";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderLordJaraxxus_H"] = {
- { 1, 47861, "", "=q4=Felspark Bracers", "=ds=#s8#, #a1#"};
- { 2, 47865, "", "=q4=Legwraps of the Demonic Messenger", "=ds=#s11#, #a1#"};
- { 3, 47863, "", "=q4=Belt of the Bloodhoof Emissary", "=ds=#s10#, #a2#"};
- { 4, 47866, "", "=q4=Darkspear Ritual Binding", "=ds=#s10#, #a3#"};
- { 5, 49236, "", "=q4=Sabatons of Tortured Space", "=ds=#s12#, #a3#"};
- { 6, 47867, "", "=q4=Warsong Poacher's Greaves", "=ds=#s12#, #a3#"};
- { 7, 47869, "", "=q4=Armplates of the Nether Lord", "=ds=#s8#, #a4#"};
- { 8, 47870, "", "=q4=Belt of the Nether Champion", "=ds=#s10#, #a4#"};
- { 16, 47872, "", "=q4=Fortitude of the Infernal", "=ds=#s2#"};
- { 17, 47864, "", "=q4=Pendant of Binding Elements", "=ds=#s2#"};
- { 18, 47862, "", "=q4=Firestorm Band", "=ds=#s13#"};
- { 19, 47868, "", "=q4=Planestalker Band", "=ds=#s13#"};
- { 21, 47871, "", "=q4=Orcish Deathblade", "=ds=#h1#, #w4#"};
- Prev = "TrialoftheCrusaderNorthrendBeasts_H";
- Next = "TrialoftheCrusaderFactionChampions_H";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderLordJaraxxus25Man_A"] = {
- { 1, 47042, "", "=q4=Pride of the Eredar", "=ds=#s4#"};
- { 2, 47051, "", "=q4=Leggings of the Soothing Touch", "=ds=#s11#, #a1#"};
- { 3, 47000, "", "=q4=Cuirass of Calamitous Fate", "=ds=#s5#, #a2#"};
- { 4, 47055, "", "=q4=Bracers of the Autumn Willow", "=ds=#s8#, #a2#"};
- { 5, 47056, "", "=q4=Bracers of Cloudy Omen", "=ds=#s8#, #a3#"};
- { 6, 46999, "", "=q4=Bloodbath Belt", "=ds=#s10#, #a4#"};
- { 7, 47057, "", "=q4=Legplates of Failing Light", "=ds=#s11#, #a4#"};
- { 8, 47052, "", "=q4=Legguards of Feverish Dedication", "=ds=#s11#, #a4#"};
- { 9, 46997, "", "=q4=Dawnbreaker Greaves", "=ds=#s12#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47043, "", "=q4=Charge of the Demon Lord", "=ds=#s2#"};
- { 19, 47223, "", "=q4=Ring of the Darkmender", "=ds=#s13#"};
- { 20, 47041, "", "=q4=Solace of the Defeated", "=ds=#s14#"};
- { 21, 47053, "", "=q4=Symbol of Transgression", "=ds=#s15#"};
- { 23, 46996, "", "=q4=Lionhead Slasher", "=ds=#h1#, #w1#"};
- { 24, 46994, "", "=q4=Talonstrike", "=ds=#w3#"};
- Prev = "TrialoftheCrusaderNorthrendBeasts25Man_A";
- Next = "TrialoftheCrusaderFactionChampions25Man_A";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderLordJaraxxus25Man_H"] = {
- { 1, 47275, "", "=q4=Pride of the Demon Lord", "=ds=#s4#"};
- { 2, 47274, "", "=q4=Pants of the Soothing Touch", "=ds=#s11#, #a1#"};
- { 3, 47270, "", "=q4=Vest of Calamitous Fate", "=ds=#s5#, #a2#"};
- { 4, 47277, "", "=q4=Bindings of the Autumn Willow", "=ds=#s8#, #a2#"};
- { 5, 47280, "", "=q4=Wristwraps of Cloudy Omen", "=ds=#s8#, #a3#"};
- { 6, 47268, "", "=q4=Bloodbath Girdle", "=ds=#s10#, #a4#"};
- { 7, 47279, "", "=q4=Leggings of Failing Light", "=ds=#s11#, #a4#"};
- { 8, 47273, "", "=q4=Legplates of Feverish Dedication", "=ds=#s11#, #a4#"};
- { 9, 47269, "", "=q4=Dawnbreaker Sabatons", "=ds=#s12#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47272, "", "=q4=Charge of the Eredar", "=ds=#s2#"};
- { 19, 47278, "", "=q4=Circle of the Darkmender", "=ds=#s13#"};
- { 20, 47271, "", "=q4=Solace of the Fallen", "=ds=#s14#"};
- { 21, 47276, "", "=q4=Talisman of Heedless Sins", "=ds=#s15#"};
- { 23, 47266, "", "=q4=Blood Fury", "=ds=#h1#, #w1#"};
- { 24, 47267, "", "=q4=Death's Head Crossbow", "=ds=#w3#"};
- Prev = "TrialoftheCrusaderNorthrendBeasts25Man_H";
- Next = "TrialoftheCrusaderFactionChampions25Man_H";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderFactionChampions_A"] = {
- { 1, 47721, "", "=q4=Sandals of the Silver Magus", "=ds=#s12#, #a1#"};
- { 2, 47719, "", "=q4=Gloves of the Silver Assassin", "=ds=#s9#, #a2#"};
- { 3, 47718, "", "=q4=Helm of the Silver Ranger", "=ds=#s1#, #a3#"};
- { 4, 47717, "", "=q4=Faceplate of the Silver Champion", "=ds=#s1#, #a4#"};
- { 5, 47720, "", "=q4=Pauldrons of the Silver Defender", "=ds=#s3#, #a4#"};
- { 7, 47728, "", "=q4=Binding Light", "=ds=#s14#"};
- { 8, 47727, "", "=q4=Fervor of the Frostborn", "=ds=#s14#"};
- { 9, 47726, "", "=q4=Talisman of Volatile Power", "=ds=#s14#"};
- { 10, 47725, "", "=q4=Victor's Call", "=ds=#s14#"};
- { 16, 47724, "", "=q4=Blade of the Silver Disciple", "=ds=#h1#, #w4#"};
- Prev = "TrialoftheCrusaderLordJaraxxus_A";
- Next = "TrialoftheCrusaderTwinValkyrs_A";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderFactionChampions_H"] = {
- { 1, 47873, "", "=q4=Sunreaver Magus' Sandals", "=ds=#s12#, #a1#"};
- { 2, 47878, "", "=q4=Sunreaver Assassin's Gloves", "=ds=#s9#, #a2#"};
- { 3, 47875, "", "=q4=Sunreaver Ranger's Helm", "=ds=#s1#, #a3#"};
- { 4, 47876, "", "=q4=Sunreaver Champion's Faceplate", "=ds=#s1#, #a4#"};
- { 5, 47877, "", "=q4=Sunreaver Defender's Pauldrons", "=ds=#s3#, #a4#"};
- { 7, 47880, "", "=q4=Binding Stone", "=ds=#s14#"};
- { 8, 47882, "", "=q4=Eitrigg's Oath", "=ds=#s14#"};
- { 9, 47879, "", "=q4=Fetish of Volatile Power", "=ds=#s14#"};
- { 10, 47881, "", "=q4=Vengeance of the Forsaken", "=ds=#s14#"};
- { 16, 47874, "", "=q4=Sunreaver Disciple's Blade", "=ds=#h1#, #w4#"};
- Prev = "TrialoftheCrusaderLordJaraxxus_H";
- Next = "TrialoftheCrusaderTwinValkyrs_H";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderFactionChampions25Man_A"] = {
- { 1, 47089, "", "=q4=Cloak of Displacement", "=ds=#s4#"};
- { 2, 47081, "", "=q4=Cord of Biting Cold", "=ds=#s10#, #a1#"};
- { 3, 47092, "", "=q4=Boots of the Mourning Widow", "=ds=#s12#, #a1#"};
- { 4, 47094, "", "=q4=Vestments of the Shattered Fellowship", "=ds=#s5#, #a2#"};
- { 5, 47071, "", "=q4=Treads of the Icewalker", "=ds=#s12#, #a2#"};
- { 6, 47073, "", "=q4=Bracers of the Untold Massacre", "=ds=#s8#, #a3#"};
- { 7, 47083, "", "=q4=Legguards of Concealed Hatred", "=ds=#s11#, #a3#"};
- { 8, 47090, "", "=q4=Boots of Tremoring Earth", "=ds=#s12#, #a3#"};
- { 9, 47082, "", "=q4=Chestplate of the Frostborn Hero", "=ds=#s5#, #a4#"};
- { 10, 47093, "", "=q4=Vambraces of the Broken Bond", "=ds=#s8#, #a4#"};
- { 11, 47072, "", "=q4=Girdle of Bloodied Scars", "=ds=#s10#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47070, "", "=q4=Ring of Callous Aggression", "=ds=#s13#"};
- { 19, 47080, "", "=q4=Satrina's Impeding Scarab", "=ds=#s14#"};
- { 21, 47069, "", "=q4=Justicebringer", "=ds=#h2#, #w1#"};
- { 22, 47079, "", "=q4=Bastion of Purity", "=ds=#w8#"};
- Prev = "TrialoftheCrusaderLordJaraxxus25Man_A";
- Next = "TrialoftheCrusaderTwinValkyrs25Man_A";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderFactionChampions25Man_H"] = {
- { 1, 47291, "", "=q4=Shroud of Displacement", "=ds=#s4#"};
- { 2, 47286, "", "=q4=Belt of Biting Cold", "=ds=#s10#, #a1#"};
- { 3, 47293, "", "=q4=Sandals of the Mourning Widow", "=ds=#s12#, #a1#"};
- { 4, 47292, "", "=q4=Robes of the Shattered Fellowship", "=ds=#s5#, #a2#"};
- { 5, 47284, "", "=q4=Icewalker Treads", "=ds=#s12#, #a2#"};
- { 6, 47281, "", "=q4=Bracers of the Silent Massacre", "=ds=#s8#, #a3#"};
- { 7, 47289, "", "=q4=Leggings of Concealed Hatred", "=ds=#s11#, #a3#"};
- { 8, 47295, "", "=q4=Sabatons of Tremoring Earth", "=ds=#s12#, #a3#"};
- { 9, 47288, "", "=q4=Chestplate of the Frostwolf Hero", "=ds=#s5#, #a4#"};
- { 10, 47294, "", "=q4=Bracers of the Broken Bond", "=ds=#s8#, #a4#"};
- { 11, 47283, "", "=q4=Belt of Bloodied Scars", "=ds=#s10#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47282, "", "=q4=Band of Callous Aggression", "=ds=#s13#"};
- { 19, 47290, "", "=q4=Juggernaut's Vitality", "=ds=#s14#"};
- { 21, 47285, "", "=q4=Dual-blade Butcher", "=ds=#h2#, #w1#"};
- { 22, 47287, "", "=q4=Bastion of Resolve", "=ds=#w8#"};
- Prev = "TrialoftheCrusaderLordJaraxxus_H25Man";
- Next = "TrialoftheCrusaderTwinValkyrs_H25Man";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderTwinValkyrs_A"] = {
- { 1, 47745, "", "=q4=Gloves of Looming Shadow", "=ds=#s9#, #a1#"};
- { 2, 49231, "", "=q4=Boots of the Grieving Soul", "=ds=#s12#, #a1#"};
- { 3, 47746, "", "=q4=Helm of the Snowy Grotto", "=ds=#s1#, #a2#"};
- { 4, 47739, "", "=q4=Armor of Shifting Shadows", "=ds=#s5#, #a2#"};
- { 5, 47744, "", "=q4=Gloves of the Azure Prophet", "=ds=#s9#, #a3#"};
- { 6, 47738, "", "=q4=Sabatons of the Lingering Vortex", "=ds=#s12#, #a4#"};
- { 8, 47747, "", "=q4=Darkbane Pendant", "=ds=#s2#"};
- { 9, 47700, "", "=q4=Loop of the Twin Val'kyr", "=ds=#s13#"};
- { 10, 47742, "", "=q4=Chalice of Benedictus", "=ds=#s15#"};
- { 16, 47736, "", "=q4=Icefall Blade", "=ds=#h1#, #w4#"};
- { 17, 47737, "", "=q4=Reckoning", "=ds=#h2#, #w10#"};
- { 18, 47743, "", "=q4=Enlightenment", "=ds=#w9#"};
- { 19, 47740, "", "=q4=The Diplomat", "=ds=#w5#"};
- Prev = "TrialoftheCrusaderFactionChampions_A";
- Next = "TrialoftheCrusaderAnubarak_A";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderTwinValkyrs_H"] = {
- { 1, 47889, "", "=q4=Looming Shadow Wraps", "=ds=#s9#, #a1#"};
- { 2, 49232, "", "=q4=Sandals of the Grieving Soul", "=ds=#s12#, #a1#"};
- { 3, 47891, "", "=q4=Helm of the High Mesa", "=ds=#s1#, #a2#"};
- { 4, 47887, "", "=q4=Vest of Shifting Shadows", "=ds=#s5#, #a2#"};
- { 5, 47893, "", "=q4=Sen'jin Ritualist Gloves", "=ds=#s9#, #a3#"};
- { 6, 47885, "", "=q4=Greaves of the Lingering Vortex", "=ds=#s12#, #a4#"};
- { 8, 47890, "", "=q4=Darkbane Amulet", "=ds=#s2#"};
- { 9, 47888, "", "=q4=Band of the Twin Val'kyr", "=ds=#s13#"};
- { 10, 47913, "", "=q4=Lightbane Focus", "=ds=#s15#"};
- { 16, 47886, "", "=q4=Nemesis Blade", "=ds=#h1#, #w4#"};
- { 17, 47884, "", "=q4=Edge of Agony", "=ds=#h2#, #w10#"};
- { 18, 47892, "", "=q4=Illumination", "=ds=#w9#"};
- { 19, 47883, "", "=q4=Widebarrel Flintlock", "=ds=#w5#"};
- Prev = "TrialoftheCrusaderFactionChampions_H";
- Next = "TrialoftheCrusaderAnubarak_H";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderTwinValkyrs25Man_A"] = {
- { 1, 47126, "", "=q4=Skyweaver Robes", "=ds=#s5#, #a1#"};
- { 2, 47141, "", "=q4=Bindings of Dark Essence", "=ds=#s8#, #a1#"};
- { 3, 47107, "", "=q4=Belt of the Merciless Killer", "=ds=#s10#, #a2#"};
- { 4, 47140, "", "=q4=Cord of Pale Thorns", "=ds=#s10#, #a2#"};
- { 5, 47106, "", "=q4=Sabatons of Ruthless Judgment", "=ds=#s12#, #a3#"};
- { 6, 47142, "", "=q4=Breastplate of the Frozen Lake", "=ds=#s5#, #a4#"};
- { 7, 47108, "", "=q4=Bracers of the Shieldmaiden", "=ds=#s8#, #a4#"};
- { 8, 47121, "", "=q4=Legguards of Ascension", "=ds=#s11#, #a4#"};
- { 10, 47116, "", "=q4=The Arbiter's Muse", "=ds=#s2#"};
- { 11, 47105, "", "=q4=The Executioner's Malice", "=ds=#s2#"};
- { 12, 47139, "", "=q4=Wail of the Val'kyr", "=ds=#s2#"};
- { 13, 47115, "", "=q4=Death's Verdict", "=ds=#s14#"};
- { 14, 47138, "", "=q4=Chalice of Searing Light", "=ds=#s15#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47104, "", "=q4=Twin Spike", "=ds=#h1#, #w4#"};
- { 19, 47114, "", "=q4=Lupine Longstaff", "=ds=#w9#"};
- Prev = "TrialoftheCrusaderFactionChampions25Man_A";
- Next = "TrialoftheCrusaderAnubarak25Man_A";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderTwinValkyrs25Man_H"] = {
- { 1, 47301, "", "=q4=Skyweaver Vestments", "=ds=#s5#, #a1#"};
- { 2, 47306, "", "=q4=Dark Essence Bindings", "=ds=#s8#, #a1#"};
- { 3, 47308, "", "=q4=Belt of Pale Thorns", "=ds=#s10#, #a2#"};
- { 4, 47299, "", "=q4=Belt of the Pitiless Killer", "=ds=#s10#, #a2#"};
- { 5, 47296, "", "=q4=Greaves of Ruthless Judgment", "=ds=#s12#, #a3#"};
- { 6, 47310, "", "=q4=Chestplate of the Frozen Lake", "=ds=#s5#, #a4#"};
- { 7, 47298, "", "=q4=Armguards of the Shieldmaiden", "=ds=#s8#, #a4#"};
- { 8, 47304, "", "=q4=Legplates of Ascension", "=ds=#s11#, #a4#"};
- { 10, 47307, "", "=q4=Cry of the Val'kyr", "=ds=#s2#"};
- { 11, 47305, "", "=q4=Legionnaire's Gorget", "=ds=#s2#"};
- { 12, 47297, "", "=q4=The Executioner's Vice", "=ds=#s2#"};
- { 13, 47303, "", "=q4=Death's Choice", "=ds=#s14#"};
- { 14, 47309, "", "=q4=Mystifying Charm", "=ds=#s15#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47300, "", "=q4=Gouge of the Frigid Heart", "=ds=#h1#, #w4#"};
- { 19, 47302, "", "=q4=Twin's Pact", "=ds=#w9#"};
- Prev = "TrialoftheCrusaderFactionChampions25Man_H";
- Next = "TrialoftheCrusaderAnubarak25Man_H";
- };
-
- AtlasLoot_Data["TrialoftheCrusaderAnubarak_A"] = {
- { 1, 47838, "", "=q4=Vestments of the Sleepless", "=ds=#s5#, #a1#"};
+ { 5, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 6, 51213, "", "=q4=Ymirjar Lord's Gauntlets", "=ds=#s9#, #a4#" };
+ { 7, 51211, "", "=q4=Ymirjar Lord's Legplates", "=ds=#s11#, #a4#" };
+ { 9, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["Protection"] };
+ { 10, 51217, "", "=q4=Ymirjar Lord's Handguards", "=ds=#s9#, #a4#" };
+ { 11, 51216, "", "=q4=Ymirjar Lord's Legguards", "=ds=#s11#, #a4#" };
+ { 20, 0, "INV_Box_01", "=q6=" .. LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5=" .. AL["DPS"] };
+ { 21, 51542, "", "=q4=Wrathful Gladiator's Plate Gauntlets", "=ds=#s9#, #a4#" };
+ { 22, 51544, "", "=q4=Wrathful Gladiator's Plate Legguards", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Cloth"] };
+ { 2, 51329, "", "=q4=Wrathful Gladiator's Cuffs of Dominance", "=ds=#s8#, #a1#" };
+ { 3, 51327, "", "=q4=Wrathful Gladiator's Cord of Dominance", "=ds=#s10#, #a1#" };
+ { 4, 51328, "", "=q4=Wrathful Gladiator's Treads of Dominance", "=ds=#s12#, #a1#" };
+ { 6, 51367, "", "=q4=Wrathful Gladiator's Cuffs of Salvation", "=ds=#s8#, #a1#" };
+ { 7, 51365, "", "=q4=Wrathful Gladiator's Cord of Salvation", "=ds=#s10#, #a1#" };
+ { 8, 51366, "", "=q4=Wrathful Gladiator's Treads of Salvation", "=ds=#s12#, #a1#" };
+ { 10, 51339, "", "=q4=Wrathful Gladiator's Cuffs of Alacrity", "=ds=#s8#, #a1#" };
+ { 11, 51337, "", "=q4=Wrathful Gladiator's Cord of Alacrity", "=ds=#s10#, #a1#" };
+ { 12, 51338, "", "=q4=Wrathful Gladiator's Treads of Alacrity", "=ds=#s12#, #a1#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Leather"] };
+ { 17, 51345, "", "=q4=Wrathful Gladiator's Armwraps of Dominance", "=ds=#s8#, #a2#" };
+ { 18, 51343, "", "=q4=Wrathful Gladiator's Belt of Dominance", "=ds=#s10#, #a2#" };
+ { 19, 51344, "", "=q4=Wrathful Gladiator's Boots of Dominance", "=ds=#s12#, #a2#" };
+ { 21, 51342, "", "=q4=Wrathful Gladiator's Armwraps of Salvation", "=ds=#s8#, #a2#" };
+ { 22, 51340, "", "=q4=Wrathful Gladiator's Belt of Salvation", "=ds=#s10#, #a2#" };
+ { 23, 51341, "", "=q4=Wrathful Gladiator's Boots of Salvation", "=ds=#s12#, #a2#" };
+ { 25, 51370, "", "=q4=Wrathful Gladiator's Armwraps of Triumph", "=ds=#s8#, #a2#" };
+ { 26, 51368, "", "=q4=Wrathful Gladiator's Belt of Triumph", "=ds=#s10#, #a2#" };
+ { 27, 51369, "", "=q4=Wrathful Gladiator's Boots of Triumph", "=ds=#s12#, #a2#" };
+ };
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Mail"] };
+ { 2, 51376, "", "=q4=Wrathful Gladiator's Wristguards of Dominance", "=ds=#s8#, #a3#" };
+ { 3, 51374, "", "=q4=Wrathful Gladiator's Waistguard of Dominance", "=ds=#s10#, #a3#" };
+ { 4, 51375, "", "=q4=Wrathful Gladiator's Sabatons of Dominance", "=ds=#s12#, #a3#" };
+ { 6, 51373, "", "=q4=Wrathful Gladiator's Wristguards of Salvation", "=ds=#s8#, #a3#" };
+ { 7, 51371, "", "=q4=Wrathful Gladiator's Waistguard of Salvation", "=ds=#s10#, #a3#" };
+ { 8, 51372, "", "=q4=Wrathful Gladiator's Sabatons of Salvation", "=ds=#s12#, #a3#" };
+ { 10, 51352, "", "=q4=Wrathful Gladiator's Wristguards of Triumph", "=ds=#s8#, #a3#" };
+ { 11, 51350, "", "=q4=Wrathful Gladiator's Waistguard of Triumph", "=ds=#s10#, #a3#" };
+ { 12, 51351, "", "=q4=Wrathful Gladiator's Sabatons of Triumph", "=ds=#s12#, #a3#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Plate"] };
+ { 17, 51361, "", "=q4=Wrathful Gladiator's Bracers of Salvation", "=ds=#s8#, #a4#" };
+ { 18, 51359, "", "=q4=Wrathful Gladiator's Girdle of Salvation", "=ds=#s10#, #a4#" };
+ { 19, 51360, "", "=q4=Wrathful Gladiator's Greaves of Salvation", "=ds=#s12#, #a4#" };
+ { 21, 51364, "", "=q4=Wrathful Gladiator's Bracers of Triumph", "=ds=#s8#, #a4#" };
+ { 22, 51362, "", "=q4=Wrathful Gladiator's Girdle of Triumph", "=ds=#s10#, #a4#" };
+ { 23, 51363, "", "=q4=Wrathful Gladiator's Greaves of Triumph", "=ds=#s12#, #a4#" };
+ };
+ {
+ Name = BabbleBoss["Toravon the Ice Watcher"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Back"] };
+ { 2, 51334, "", "=q4=Wrathful Gladiator's Cloak of Ascendancy", "=ds=#s4#" };
+ { 3, 51348, "", "=q4=Wrathful Gladiator's Cloak of Deliverance", "=ds=#s4#" };
+ { 4, 51330, "", "=q4=Wrathful Gladiator's Cloak of Dominance", "=ds=#s4#" };
+ { 5, 51346, "", "=q4=Wrathful Gladiator's Cloak of Salvation", "=ds=#s4#" };
+ { 6, 51332, "", "=q4=Wrathful Gladiator's Cloak of Subjugation", "=ds=#s4#" };
+ { 7, 51354, "", "=q4=Wrathful Gladiator's Cloak of Triumph", "=ds=#s4#" };
+ { 8, 51356, "", "=q4=Wrathful Gladiator's Cloak of Victory", "=ds=#s4#" };
+ { 11, 49426, "", "=q4=Emblem of Frost", "=ds=#e15#", "", "100%" };
+ { 12, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", "" };
+ { 13, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", "" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Neck"] };
+ { 17, 51335, "", "=q4=Wrathful Gladiator's Pendant of Ascendancy", "=ds=#s2#" };
+ { 18, 51349, "", "=q4=Wrathful Gladiator's Pendant of Deliverance", "=ds=#s2#" };
+ { 19, 51331, "", "=q4=Wrathful Gladiator's Pendant of Dominance", "=ds=#s2#" };
+ { 20, 51347, "", "=q4=Wrathful Gladiator's Pendant of Salvation", "=ds=#s2#" };
+ { 21, 51333, "", "=q4=Wrathful Gladiator's Pendant of Subjugation", "=ds=#s2#" };
+ { 22, 51353, "", "=q4=Wrathful Gladiator's Pendant of Sundering", "=ds=#s2#" };
+ { 23, 51355, "", "=q4=Wrathful Gladiator's Pendant of Triumph", "=ds=#s2#" };
+ { 24, 51357, "", "=q4=Wrathful Gladiator's Pendant of Victory", "=ds=#s2#" };
+ { 26, 0, "INV_Box_01", "=q6=" .. AL["PvP Non-Set Epics"], "=q5=" .. BabbleInventory["Ring"] };
+ { 27, 51336, "", "=q4=Wrathful Gladiator's Band of Dominance", "=ds=#s13#" };
+ { 28, 51358, "", "=q4=Wrathful Gladiator's Band of Triumph", "=ds=#s13#" };
+ };
+};
+
+-----------------
+--- Naxxramas ---
+-----------------
+
+-------------------------
+--- Construct Quarter ---
+-------------------------
+
+AtlasLoot_Data["Naxxramas80"] = {
+ Name = BabbleZone["Naxxramas"];
+ Type = "WrathRaid";
+ {
+ Name = BabbleBoss["Patchwerk"];
+ { 1, 39272, "", "=q4=Drape of Surgery", "=ds=#s4#", "", "10%" };
+ { 2, 39273, "", "=q4=Sullen Cloth Boots", "=ds=#s12#, #a1#", "", "10%" };
+ { 3, 39275, "", "=q4=Contagion Gloves", "=ds=#s9#, #a2#", "", "10%" };
+ { 4, 39274, "", "=q4=Retcher's Shoulderpads", "=ds=#s3#, #a3#", "", "10%" };
+ { 5, 39267, "", "=q4=Abomination Shoulderblades", "=ds=#s3#, #a4#", "", "13%" };
+ { 6, 39262, "", "=q4=Gauntlets of Combined Strength", "=ds=#s9#, #a4#", "", "24%" };
+ { 7, 39261, "", "=q4=Tainted Girdle of Mending", "=ds=#s10#, #a4#", "", "13%" };
+ { 8, 39271, "", "=q4=Blade of Dormant Memories", "=ds=#h3#, #w4#", "", "10%" };
+ { 9, 39270, "", "=q4=Hatestrike", "=ds=#h1#, #w10#", "", "13%" };
+ };
+ {
+ Name = BabbleBoss["Patchwerk"];
+ { 1, 40271, "", "=q4=Sash of Solitude", "=ds=#s10#, #a1#", "", "19%" };
+ { 2, 40269, "", "=q4=Boots of Persuasion", "=ds=#s12#, #a1#", "", "9%" };
+ { 3, 40260, "", "=q4=Belt of the Tortured", "=ds=#s10#, #a2#", "", "9%" };
+ { 4, 40270, "", "=q4=Boots of Septic Wounds", "=ds=#s12#, #a2#", "", "9%" };
+ { 5, 40262, "", "=q4=Gloves of Calculated Risk", "=ds=#s9#, #a3#", "", "9%" };
+ { 6, 40272, "", "=q4=Girdle of the Gambit", "=ds=#s10#, #a3#", "", "9%" };
+ { 7, 40261, "", "=q4=Crude Discolored Battlegrips", "=ds=#s9#, #a4#", "", "9%" };
+ { 8, 40263, "", "=q4=Fleshless Girdle", "=ds=#s10#. #a4#", "", "19%" };
+ { 9, 40259, "", "=q4=Waistguard of Divine Grace", "=ds=#s10#, #a4#", "", "9%" };
+ { 10, 40071, "", "=q4=Chains of Adoration", "=ds=#s2#", "", "11%" };
+ { 11, 40065, "", "=q4=Fool's Trial", "=ds=#s2#", "", "11%" };
+ { 12, 40069, "", "=q4=Heritage", "=ds=#s2#", "", "11%" };
+ { 13, 40064, "", "=q4=Thunderstorm Amulet", "=ds=#s2#", "", "11%" };
+ { 14, 40080, "", "=q4=Lost Jewel", "=ds=#s13#", "", "11%" };
+ { 15, 40075, "", "=q4=Ruthlessness", "=ds=#s13#", "", "11%" };
+ { 16, 40107, "", "=q4=Sand-Worn Band", "=ds=#s13#", "", "11%" };
+ { 17, 40074, "", "=q4=Strong-Handed Ring", "=ds=#s13#", "", "12%" };
+ { 18, 40273, "", "=q4=Surplus Limb", "=ds=#s15#", "", "9%" };
+ { 19, 40267, "", "=q4=Totem of Hex", "=ds=#s16#, #w15#", "", "9%" };
+ { 20, 40268, "", "=q4=Libram of Tolerance", "=ds=#s16#, #w16#", "", "19%" };
+ { 21, 40264, "", "=q4=Split Greathammer", "=ds=#h1#, #w6#", "", "9%" };
+ { 22, 40266, "", "=q4=Hero's Surrender", "=ds=#w8#", "", "9%" };
+ { 23, 40265, "", "=q4=Arrowsong", "=ds=#w2#", "", "19%" };
+ };
+ {
+ Name = BabbleBoss["Grobbulus"];
+ { 1, 39284, "", "=q4=Miasma Mantle", "=ds=#s3#, #a1#", "", "18%" };
+ { 2, 39285, "", "=q4=Handgrips of Turmoil", "=ds=#s9#, #a1#", "", "10%" };
+ { 3, 39283, "", "=q4=Putrescent Bands", "=ds=#s8#, #a2#", "", "10%" };
+ { 4, 39279, "", "=q4=Blistered Belt of Decay", "=ds=#s10#, #a2#", "", "9%" };
+ { 5, 39278, "", "=q4=Bands of Anxiety", "=ds=#s8#, #a3#", "", "9%" };
+ { 6, 39280, "", "=q4=Leggings of Innumerable Barbs", "=ds=#s11#, #a4#", "", "10%" };
+ { 7, 39282, "", "=q4=Bone-Linked Amulet", "=ds=#s2#", "", "10%" };
+ { 8, 39277, "", "=q4=Sealing Ring of Grobbulus", "=ds=#s13#", "", "9%" };
+ { 9, 39281, "", "=q4=Infection Repulser", "=ds=#h3#, #w6#", "", "19%" };
+ { 10, 39276, "", "=q4=The Skull of Ruin", "=ds=#w8#", "", "9%" };
+ };
+ {
+ Name = BabbleBoss["Grobbulus"];
+ { 1, 40250, "", "=q4=Aged Winter Cloak", "=ds=#s4#", "", "11%" };
+ { 2, 40254, "", "=q4=Cloak of Averted Crisis", "=ds=#s4#", "", "11%" };
+ { 3, 40252, "", "=q4=Cloak of the Shadowed Sun", "=ds=#s4#", "", "11%" };
+ { 4, 40253, "", "=q4=Shawl of the Old Maid", "=ds=#s4#", "", "11%" };
+ { 5, 40251, "", "=q4=Shroud of Luminosity", "=ds=#s4#", "", "11%" };
+ { 6, 40287, "", "=q4=Cowl of Vanity", "=ds=#s1#, #a1#", "", "19%" };
+ { 7, 40286, "", "=q4=Mantle of the Corrupted", "=ds=#s3#, #a1#", "", "1%" };
+ { 8, 40351, "", "=q4=Mantle of the Fatigued Sage", "=ds=#s3#, #a1#", "", "19%" };
+ { 9, 40289, "", "=q4=Sympathetic Amice", "=ds=#s3#, #a1#", "", "9%" };
+ { 10, 40277, "", "=q4=Tunic of Indulgence", "=ds=#s5#, #a2#", "", "18%" };
+ { 11, 40285, "", "=q4=Desecrated Past", "=ds=#s11#, #a2#", "", "9%" };
+ { 12, 40288, "", "=q4=Spaulders of Incoherence", "=ds=#s3#, #a3#", "", "19%" };
+ { 13, 40283, "", "=q4=Fallout Impervious Tunic", "=ds=#s5#, #a3#", "", "9%" };
+ { 14, 40282, "", "=q4=Slime Stream Bands", "=ds=#s8#, #a3#", "", "9%" };
+ { 15, 40275, "", "=q4=Depraved Linked Belt", "=ds=#s10#, #a3#", "", "9%" };
+ { 16, 40279, "", "=q4=Chestguard of the Exhausted", "=ds=#s5#, #a4#", "", "9%" };
+ { 17, 40274, "", "=q4=Bracers of Liberation", "=ds=#s8#, #a4#", "", "18%" };
+ { 18, 40278, "", "=q4=Girdle of Chivalry", "=ds=#s10#, #a4#", "", "9%" };
+ { 19, 40257, "", "=q4=Defender's Code", "=ds=#s14#", "", "11%" };
+ { 20, 40255, "", "=q4=Dying Curse", "=ds=#s14#", "", "11%" };
+ { 21, 40258, "", "=q4=Forethought Talisman", "=ds=#s14#", "", "11%" };
+ { 22, 40256, "", "=q4=Grim Toll", "=ds=#s14#", "", "11%" };
+ { 23, 40281, "", "=q4=Twilight Mist", "=ds=#h1#, #w4#", "", "19%" };
+ { 24, 40280, "", "=q4=Origin of Nightmares", "=ds=#w9#", "", "9%" };
+ { 25, 40284, "", "=q4=Plague Igniter", "=ds=#w12#", "", "9%" };
+ };
+ {
+ Name = BabbleBoss["Gluth"];
+ { 1, 39272, "", "=q4=Drape of Surgery", "=ds=#s4#", "", "10%" };
+ { 2, 39284, "", "=q4=Miasma Mantle", "=ds=#s3#, #a1#", "", "18%" };
+ { 3, 39396, "", "=q4=Gown of Blaumeux", "=ds=#s5#, #a1#", "", "0.43%" };
+ { 4, 39309, "", "=q4=Leggings of the Instructor", "=ds=#s11#, #a1#", "", "10%" };
+ { 5, 39237, "", "=q4=Spaulders of Resumed Battle", "=ds=#s3#, #a2#", "", "10%" };
+ { 6, 39279, "", "=q4=Blistered Belt of Decay", "=ds=#s10#, #a2#", "", "9%" };
+ { 7, 39191, "", "=q4=Splint-Bound Leggings", "=ds=#s11#, #a2#", "", "11%" };
+ { 8, 39215, "", "=q4=Boots of the Follower", "=ds=#s12#, #a2#", "", "11%" };
+ { 9, 39294, "", "=q4=Arc-Scorched Helmet", "=ds=#s1#, #a3#", "", "9%" };
+ { 10, 39248, "", "=q4=Tunic of the Lost Pack", "=ds=#s5#, #a3#", "", "10%" };
+ { 11, 39194, "", "=q4=Rusted-Link Spiked Gauntlets", "=ds=#s9#, #a3#", "", "10%" };
+ { 12, 39251, "", "=q4=Necrogenic Belt", "=ds=#s10#, #a3#", "", "10%" };
+ { 13, 39379, "", "=q4=Spectral Rider's Girdle", "=ds=#s10#, #a3#", "", "10%" };
+ { 14, 39188, "", "=q4=Chivalric Chestguard", "=ds=#s5#, #a4#", "", "10%" };
+ { 15, 39345, "", "=q4=Girdle of the Ascended Phantom", "=ds=#s10#, #a4#", "", "20%" };
+ { 16, 39146, "", "=q4=Collar of Dissolution", "=ds=#s2#", "", "10%" };
+ { 17, 39232, "", "=q4=Pendant of Lost Vocations", "=ds=#s2#", "", "10%" };
+ { 18, 39193, "", "=q4=Band of Neglected Pleas", "=ds=#s13#", "", "11%" };
+ { 19, 39388, "", "=q4=Spirit-World Glass", "=ds=#s14#", "", "10%" };
+ { 20, 39200, "", "=q4=Grieving Spellblade", "=ds=#h3#, #w10#", "", "11%" };
+ { 21, 39344, "", "=q4=Slayer of the Lifeless", "=ds=#h1#, #w10#", "", "10%" };
+ { 22, 39281, "", "=q4=Infection Repulser", "=ds=#h3#, #w6#", "", "19%" };
+ { 23, 39394, "", "=q4=Charmed Cierge", "=ds=#w9#", "", "0.44%" };
+ };
+ {
+ Name = BabbleBoss["Gluth"];
+ { 1, 40622, "", "=q4=Spaulders of the Lost Conqueror", "=ds=#e15#", "", "29%" };
+ { 2, 40623, "", "=q4=Spaulders of the Lost Protector", "=ds=#e15#", "", "30%" };
+ { 3, 40624, "", "=q4=Spaulders of the Lost Vanquisher", "=ds=#e15#", "", "38%" };
+ { 4, 40610, "", "=q4=Chestguard of the Lost Conqueror", "=ds=#e15#", "", "9%" };
+ { 5, 40611, "", "=q4=Chestguard of the Lost Protector", "=ds=#e15#", "", "9%" };
+ { 6, 40612, "", "=q4=Chestguard of the Lost Vanquisher", "=ds=#e15#", "", "12%" };
+ { 7, 40619, "", "=q4=Leggings of the Lost Conqueror", "=ds=#e15#", "", "27%" };
+ { 8, 40620, "", "=q4=Leggings of the Lost Protector", "=ds=#e15#", "", "28%" };
+ { 9, 40621, "", "=q4=Leggings of the Lost Vanquisher", "=ds=#e15#", "", "36%" };
+ };
+ {
+ Name = BabbleBoss["Gluth"];
+ { 1, 40247, "", "=q4=Cowl of Innocent Delight", "=ds=#s1#, #a1#", "", "9%" };
+ { 2, 40289, "", "=q4=Sympathetic Amice", "=ds=#s3#, #a1#", "", "9%" };
+ { 3, 40602, "", "=q4=Robes of Mutation", "=ds=#s5#, #a1#", "", "19%" };
+ { 4, 39733, "", "=q4=Gloves of Token Respect", "=ds=#s9#, #a1#", "", "19%" };
+ { 5, 40303, "", "=q4=Wraps of the Persecuted", "=ds=#s9#, #a1#", "", "9%" };
+ { 6, 40326, "", "=q4=Boots of Forlorn Wishes", "=ds=#s12#, #a1#", "", "20%" };
+ { 7, 40296, "", "=q4=Cover of Silence", "=ds=#s1#, #a2#", "", "8%" };
+ { 8, 39768, "", "=q4=Cowl of the Perished", "=ds=#s1#, #a2#", "", "9%" };
+ { 9, 40319, "", "=q4=Chestpiece of Suspicion", "=ds=#s5#, #a2#", "", "9%" };
+ { 10, 40260, "", "=q4=Belt of the Tortured", "=ds=#s10#, #a2#", "", "9%" };
+ { 11, 40205, "", "=q4=Stalk-Skin Belt", "=ds=#s10#, #a2#", "", "9%" };
+ { 12, 40270, "", "=q4=Boots of Septic Wounds", "=ds=#s12#, #a2#", "", "9%" };
+ { 13, 40193, "", "=q4=Tunic of Masked Suffering", "=ds=#s5#, #a3#", "", "20%" };
+ { 14, 40209, "", "=q4=Bindings of the Decrepit", "=ds=#s8#, #a3#", "", "9%" };
+ { 15, 40302, "", "=q4=Benefactor's Gauntlets", "=ds=#s9#, #a3#", "", "8%" };
+ { 16, 39718, "", "=q4=Corpse Scarab Handguards", "=ds=#s9#, #a3#", "", "9%" };
+ { 17, 40242, "", "=q4=Grotesque Handgrips", "=ds=#s9#, #a3#", "", "19%" };
+ { 18, 39760, "", "=q4=Helm of Diminished Pride", "=ds=#s1#, #a4#", "", "18%" };
+ { 19, 40185, "", "=q4=Shoulderguards of Opportunity", "=ds=#s3#, #a4#", "", "9%" };
+ { 20, 40203, "", "=q4=Breastplate of Tormented Rage", "=ds=#s5#, #a4#", "", "18%" };
+ { 21, 40332, "", "=q4=Abetment Bracers", "=ds=#s8#, #a4#", "", "19%" };
+ { 22, 40188, "", "=q4=Gauntlets of the Disobediant", "=ds=#s9#, #a4#", "", "9%" };
+ { 23, 40259, "", "=q4=Waistguard of Divine Grace", "=ds=#s10#, #a4#", "", "9%" };
+ { 24, 40204, "", "=q4=Legguards of the Apostle", "=ds=#s11#, #a4#", "", "9%" };
+ { 25, 39717, "", "=q4=Inexorable Sabatons", "=ds=#s12#, #a4#", "", "23%" };
+ { 26, 40206, "", "=q4=Iron-Spring Jumpers", "=ds=#s12#, #a4#", "", "9%" };
+ { 27, 40297, "", "=q4=Sabatons of Endurance", "=ds=#s12#, #a4#", "", "17%" };
+ { 28, 40350, "", "=q4=Urn of Lost Memories", "=ds=#s15#", "", "1%" };
+ { 29, 40191, "", "=q4=Libram of Radiance", "=ds=#s16#, #w16#", "", "9%" };
+ };
+ {
+ Name = BabbleBoss["Gluth"];
+ { 1, 40281, "", "=q4=Twilight Mist", "=ds=#h1#, #w4#", "", "19%" };
+ { 2, 39714, "", "=q4=Webbed Death", "=ds=#h1#, #w4#", "", "24%" };
+ { 3, 39730, "", "=q4=Widow's Fury", "=ds=#h1#, #w10#", "", "9%" };
+ { 4, 40343, "", "=q4=Armageddon", "=ds=#h2#, #w10#", "", "1%" };
+ { 5, 40239, "", "=q4=The Hand of Nerub", "=ds=#h4#, #w13#", "", "19%" };
+ { 6, 40280, "", "=q4=Origin of Nightmares", "=ds=#w9#", "", "9%" };
+ { 7, 39716, "", "=q4=Shield of Assimilation", "=ds=#w8#", "", "24%" };
+ { 8, 40265, "", "=q4=Arrowsong", "=ds=#w2#", "", "19%" };
+ { 9, 40346, "", "=q4=Final Voyage", "=ds=#w3#", "", "1%" };
+ { 16, 40637, "", "=q4=Mantle of the Lost Conqueror", "=ds=#e15#", "", "57%" };
+ { 17, 40638, "", "=q4=Mantle of the Lost Protector", "=ds=#e15#", "", "58%" };
+ { 18, 40639, "", "=q4=Mantle of the Lost Vanquisher", "=ds=#e15#", "", "76%" };
+ { 19, 40625, "", "=q4=Breastplate of the Lost Conqueror", "=ds=#e15#", "", "17%" };
+ { 20, 40626, "", "=q4=Breastplate of the Lost Protector", "=ds=#e15#", "", "19%" };
+ { 21, 40627, "", "=q4=Breastplate of the Lost Vanquisher", "=ds=#e15#", "", "24%" };
+ { 22, 40634, "", "=q4=Legplates of the Lost Conqueror", "=ds=#e15#", "", "56%" };
+ { 23, 40635, "", "=q4=Legplates of the Lost Protector", "=ds=#e15#", "", "58%" };
+ { 24, 40636, "", "=q4=Legplates of the Lost Vanquisher", "=ds=#e15#", "", "76%" };
+ };
+ {
+ Name = BabbleBoss["Thaddius"];
+ { 1, 39295, "", "=q4=Cowl of Sheet Lightning", "=ds=#s1#, #a1#", "", "9%" };
+ { 2, 39294, "", "=q4=Arc-Scorched Helmet", "=ds=#s1#, #a3#", "", "9%" };
+ { 3, 39293, "", "=q4=Blackened Legplates of Feugen", "=ds=#s11#, #a4#", "", "9%" };
+ { 4, 39292, "", "=q4=Repelling Charge", "=ds=#s14#", "", "9%" };
+ { 5, 39291, "", "=q4=Torment of the Banished", "=ds=#h1#, #w10#", "", "9%" };
+ { 16, 40619, "", "=q4=Leggings of the Lost Conqueror", "=ds=#e15#", "", "27%" };
+ { 17, 40620, "", "=q4=Leggings of the Lost Protector", "=ds=#e15#", "", "28%" };
+ { 18, 40621, "", "=q4=Leggings of the Lost Vanquisher", "=ds=#e15#", "", "36%" };
+ };
+ {
+ Name = BabbleBoss["Thaddius"];
+ { 1, 40303, "", "=q4=Wraps of the Persecuted", "=ds=#s9#, #a1#", "", "9%" };
+ { 2, 40301, "", "=q4=Cincture of Polarity", "=ds=#s10#, #a1#", "", "9%" };
+ { 3, 40296, "", "=q4=Cover of Silence", "=ds=#s1#, #a2#", "", "8%" };
+ { 4, 40304, "", "=q4=Headpiece of Fungal Bloom", "=ds=#s1#, #a2#", "", "9%" };
+ { 5, 40299, "", "=q4=Pauldrons of the Abandoned", "=ds=#s3#, #a3#", "", "9%" };
+ { 6, 40302, "", "=q4=Benefactor's Gauntlets", "=ds=#s9#, #a3#", "", "8%" };
+ { 7, 40298, "", "=q4=Faceguard of the Succumbed", "=ds=#s1#, #a4#", "", "9%" };
+ { 8, 40294, "", "=q4=Riveted Abomination Leggings", "=ds=#s11#, #a4#", "", "8%" };
+ { 9, 40297, "", "=q4=Sabatons of Endurance", "=ds=#s12#, #a4#", "", "17%" };
+ { 10, 40300, "", "=q4=Spire of Sunset", "=ds=#w9#", "", "9%" };
+ { 16, 40634, "", "=q4=Legplates of the Lost Conqueror", "=ds=#e15#", "", "56%" };
+ { 17, 40635, "", "=q4=Legplates of the Lost Protector", "=ds=#e15#", "", "58%" };
+ { 18, 40636, "", "=q4=Legplates of the Lost Vanquisher", "=ds=#e15#", "", "76%" };
+ };
+ {
+ Name = BabbleBoss["Anub'Rekhan"];
+ { 1, 39192, "", "=q4=Gloves of Dark Gestures", "=ds=#s9#, #a1#", "", "10%" };
+ { 2, 39190, "", "=q4=Agonal Sash", "=ds=#s10#, #a1#", "", "10%" };
+ { 3, 39191, "", "=q4=Splint-Bound Leggings", "=ds=#s11#, #a2#", "", "11%" };
+ { 4, 39189, "", "=q4=Boots of Persistence", "=ds=#s12#, #a3#", "", "10%" };
+ { 5, 39188, "", "=q4=Chivalric Chestguard", "=ds=#s5#, #a4#", "", "10%" };
+ { 6, 39139, "", "=q4=Ravaging Sabatons", "=ds=#s12#, #a4#", "", "11%" };
+ { 7, 39146, "", "=q4=Collar of Dissolution", "=ds=#s2#", "", "10%" };
+ { 8, 39193, "", "=q4=Band of Neglected Pleas", "=ds=#s13#", "", "11%" };
+ { 9, 39141, "", "=q4=Deflection Band", "=ds=#s13#", "", "10%" };
+ { 10, 39140, "", "=q4=Knife of Incision", "=ds=#h1#, #w4#", "", "11%" };
+ };
+ {
+ Name = BabbleBoss["Anub'Rekhan"];
+ { 1, 39719, "", "=q4=Mantle of the Locusts", "=ds=#s3#, #a1#", "", "9%" };
+ { 2, 39721, "", "=q4=Sash of the Parlor", "=ds=#s10#, #a1#", "", "19%" };
+ { 3, 39720, "", "=q4=Leggings of Atrophy", "=ds=#s11#, #a1#", "", "9%" };
+ { 4, 39722, "", "=q4=Swarm Bindings", "=ds=#s8#, #a2#", "", "9%" };
+ { 5, 39701, "", "=q4=Dawnwalkers", "=ds=#s12#, #a2#", "", "19%" };
+ { 6, 39702, "", "=q4=Arachnoid Gold Band", "=ds=#s8#, #a3#", "", "8%" };
+ { 7, 39718, "", "=q4=Corpse Scarab Handguards", "=ds=#s9#, #a3#", "", "9%" };
+ { 8, 39704, "", "=q4=Pauldrons of Unnatural Death", "=ds=#s3#, #a4#", "", "19%" };
+ { 9, 39703, "", "=q4=Rescinding Grips", "=ds=#s9#, #a4#", "", "19%" };
+ { 10, 39717, "", "=q4=Inexorable Sabatons", "=ds=#s12#, #a4#", "", "23%" };
+ { 11, 39706, "", "=q4=Sabatons of Sudden Reprisal", "=ds=#s12#, #a4#", "", "9%" };
+ { 12, 40071, "", "=q4=Chains of Adoration", "=ds=#s2#", "", "11%" };
+ { 13, 40065, "", "=q4=Fool's Trial", "=ds=#s2#", "", "11%" };
+ { 14, 40069, "", "=q4=Heritage", "=ds=#s2#", "", "11%" };
+ { 15, 40064, "", "=q4=Thunderstorm Amulet", "=ds=#s2#", "", "11%" };
+ { 16, 40080, "", "=q4=Lost Jewel", "=ds=#s13#", "", "11%" };
+ { 17, 40075, "", "=q4=Ruthlessness", "=ds=#s13#", "", "11%" };
+ { 18, 40107, "", "=q4=Sand-Worn Band", "=ds=#s13#", "", "11%" };
+ { 19, 40074, "", "=q4=Strong-Handed Ring", "=ds=#s13#", "", "12%" };
+ { 20, 39714, "", "=q4=Webbed Death", "=ds=#h1#, #w4#", "", "24%" };
+ { 21, 40208, "", "=q4=Cryptfiend's Bite", "=ds=#w7#", "", "10%" };
+ { 22, 39716, "", "=q4=Shield of Assimilation", "=ds=#w8#", "", "24%" };
+ { 23, 39712, "", "=q4=Gemmed Wand of the Nerubians", "=ds=#w12#", "", "24%" };
+ };
+ {
+ Name = BabbleBoss["Grand Widow Faerlina"];
+ { 1, 39216, "", "=q4=Sash of Mortal Desire", "=ds=#s10#, #a1#", "", "10%" };
+ { 2, 39215, "", "=q4=Boots of the Follower", "=ds=#s12#, #a2#", "", "11%" };
+ { 3, 39196, "", "=q4=Boots of the Worshiper", "=ds=#s12#, #a2#", "", "11%" };
+ { 4, 39217, "", "=q4=Avenging Combat Leggings", "=ds=#s11#, #a3#", "", "11%" };
+ { 5, 39194, "", "=q4=Rusted-Link Spiked Gauntlets", "=ds=#s9#, #a3#", "", "10%" };
+ { 6, 39198, "", "=q4=Frostblight Pauldrons", "=ds=#s3#, #a4#", "", "10%" };
+ { 7, 39195, "", "=q4=Bracers of Lost Sentiments", "=ds=#s8#, #a4#", "", "11%" };
+ { 8, 39197, "", "=q4=Gauntlets of the Master", "=ds=#s9#, #a4#", "", "10%" };
+ { 9, 39199, "", "=q4=Watchful Eye", "=ds=#s15#", "", "11%" };
+ { 10, 39200, "", "=q4=Grieving Spellblade", "=ds=#h3#, #w10#", "", "11%" };
+ };
+ {
+ Name = BabbleBoss["Grand Widow Faerlina"];
+ { 1, 39732, "", "=q4=Faerlina's Madness", "=ds=#s1#, #a1#", "", "8%" };
+ { 2, 39731, "", "=q4=Punctilious Bindings", "=ds=#s8#, #a1#", "", "9%" };
+ { 3, 39733, "", "=q4=Gloves of Token Respect", "=ds=#s9#, #a1#", "", "19%" };
+ { 4, 39735, "", "=q4=Belt of False Dignity", "=ds=#s10#, #a1#", "", "9%" };
+ { 5, 39756, "", "=q4=Tunic of Prejudice", "=ds=#s5#, #a2#", "", "19%" };
+ { 6, 39727, "", "=q4=Dislocating Handguards", "=ds=#s9#, #a2#", "", "10%" };
+ { 7, 39724, "", "=q4=Cult's Chestguard", "=ds=#s5#, #a3#" };
+ { 8, 39734, "", "=q4=Atonement Greaves", "=ds=#s12#, #a3#", "", "8%" };
+ { 9, 39723, "", "=q4=Fire-Scorched Greathelm", "=ds=#s1#, #a4#", "", "23%" };
+ { 10, 39725, "", "=q4=Epaulets of the Grieving Servant", "=ds=#s3#, #a4#", "", "11%" };
+ { 11, 39729, "", "=q4=Bracers of the Tyrant", "=ds=#s8#, #a4#", "", "8%" };
+ { 12, 39726, "", "=q4=Callous-Hearted Gauntlets", "=ds=#s9#, #a4#", "", "24%" };
+ { 13, 40071, "", "=q4=Chains of Adoration", "=ds=#s2#", "", "11%" };
+ { 14, 40065, "", "=q4=Fool's Trial", "=ds=#s2#", "", "11%" };
+ { 15, 40069, "", "=q4=Heritage", "=ds=#s2#", "", "11%" };
+ { 16, 40064, "", "=q4=Thunderstorm Amulet", "=ds=#s2#", "", "11%" };
+ { 17, 40080, "", "=q4=Lost Jewel", "=ds=#s13#", "", "11%" };
+ { 18, 40075, "", "=q4=Ruthlessness", "=ds=#s13#", "", "11%" };
+ { 19, 40107, "", "=q4=Sand-Worn Band", "=ds=#s13#", "", "11%" };
+ { 20, 40108, "", "=q4=Seized Beauty", "=ds=#s13#", "", "11%" };
+ { 21, 40074, "", "=q4=Strong-Handed Ring", "=ds=#s13#", "", "12%" };
+ { 22, 39757, "", "=q4=Idol of Worship", "=ds=#s16#, #w14#", "", "9%" };
+ { 23, 39728, "", "=q4=Totem of Misery", "=ds=#s16#, #w15#", "", "9%" };
+ { 24, 39730, "", "=q4=Widow's Fury", "=ds=#h1#, #w10#", "", "9%" };
+ };
+ {
+ Name = BabbleBoss["Maexxna"];
+ { 1, 39225, "", "=q4=Cloak of Armed Strife", "=ds=#s4#", "", "10%" };
+ { 2, 39230, "", "=q4=Spaulders of the Monstrosity", "=ds=#s3#, #a2#", "", "11%" };
+ { 3, 39224, "", "=q4=Leggings of Discord", "=ds=#s11#, #a2#", "", "10%" };
+ { 4, 39228, "", "=q4=Web Cocoon Grips", "=ds=#s9#, #a4#", "", "10%" };
+ { 5, 39232, "", "=q4=Pendant of Lost Vocations", "=ds=#s2#", "", "10%" };
+ { 6, 39231, "", "=q4=Timeworn Silken Band", "=ds=#s13#", "", "10%" };
+ { 7, 39229, "", "=q4=Embrace of the Spider", "=ds=#s14#", "", "11%" };
+ { 8, 39226, "", "=q4=Maexxna's Femur", "=ds=#h1#, #w6#", "", "10%" };
+ { 9, 39221, "", "=q4=Wraith Spear", "=ds=#w7#", "", "10%" };
+ { 10, 39233, "", "=q4=Aegis of Damnation", "=ds=#w8#", "", "10%" };
+ };
+ {
+ Name = BabbleBoss["Maexxna"];
+ { 1, 40250, "", "-q4-Aged Winter Cloak", "=ds=#s4#", "", "11%" };
+ { 2, 40254, "", "=q4=Cloak of Averted Crisis", "=ds=#s4#", "", "11%" };
+ { 3, 40252, "", "=q4=Cloak of the Shadowed Sun", "=ds=#s4#", "", "11%" };
+ { 4, 40253, "", "=q4=Shawl of the Old Maid", "=ds=#s4#", "", "11%" };
+ { 5, 40251, "", "=q4=Shroud of Luminosity", "=ds=#s4#", "", "11%" };
+ { 6, 40062, "", "=q4=Digested Silken Robes", "=ds=#s5#, #a1#", "", "9%" };
+ { 7, 40060, "", "=q4=Distorted Limbs", "=ds=#s11#, #a1#", "", "9%" };
+ { 8, 39768, "", "=q4=Cowl of the Perished", "=ds=#s1#, #a2#", "", "9%" };
+ { 9, 40063, "", "=q4=Mantle of Shattered Kinship", "=ds=#s3#, #a2#", "", "9%" };
+ { 10, 39765, "", "=q4=Sinner's Bindings", "=ds=#s8#, #a2#", "", "19%" };
+ { 11, 39761, "", "=q4=Infectious Skitterer Leggings", "=ds=#s11#, #a2#", "", "8%" };
+ { 12, 40061, "", "=q4=Quivering Tunic", "=ds=#s5#, #a3#", "", "19%" };
+ { 13, 39762, "", "=q4=Torn Web Wrapping", "=ds=#s10#, #a3#", "", "9%" };
+ { 14, 39760, "", "=q4=Helm of Diminished Pride", "=ds=#s1#, #a4#", "", "18%" };
+ { 15, 39767, "", "=q4=Undiminished Battleplate", "=ds=#s5#, #a4#", "", "9%" };
+ { 16, 39764, "", "=q4=Bindings of the Hapless Prey", "=ds=#s8#, #a4#", "", "9%" };
+ { 17, 39759, "", "=q4=Ablative Chitin Girdle", "=ds=#s10#, #a4#", "", "8%" };
+ { 18, 40257, "", "=q4=Defender's Code", "=ds=#s14#", "", "11%" };
+ { 19, 40255, "", "=q4=Dying Curse", "=ds=#s14#", "", "11%" };
+ { 20, 40258, "", "=q4=Forethought Talisman", "=ds=#s14#", "", "11%" };
+ { 21, 40256, "", "=q4=Grim Toll", "=ds=#s14#", "", "11%" };
+ { 22, 39766, "", "=q4=Matriarch's Spawn", "=ds=#s15#", "", "19%" };
+ { 23, 39763, "", "=q4=Wraith Strike", "=ds=#h3#, #w13#", "", "9%" };
+ { 24, 39758, "", "=q4=The Jawbone", "=ds=#h2#, #w6#", "", "9%" };
+ };
+ {
+ Name = BabbleBoss["Instructor Razuvious"];
+ { 1, 39297, "", "=q4=Cloak of Darkening", "=ds=#s4#", "", "10%" };
+ { 2, 39310, "", "=q4=Mantle of the Extensive Mind", "=ds=#s3#, #a1#", "", "10%" };
+ { 3, 39309, "", "=q4=Leggings of the Instructor", "=ds=#s11#, #a1#", "", "10%" };
+ { 4, 39299, "", "=q4=Rapid Attack Gloves", "=ds=#s9#, #a2#", "", "10%" };
+ { 5, 39308, "", "=q4=Girdle of Lenience", "=ds=#s10#, #a2#", "", "10%" };
+ { 6, 39307, "", "=q4=Iron Rings of Endurance", "=ds=#s8#, #a3#", "", "10%" };
+ { 7, 39306, "", "=q4=Plated Gloves of Relief", "=ds=#s9#, #a4#", "", "10%" };
+ { 8, 39298, "", "=q4=Waistguard of the Tutor", "=ds=#s10#, #a4#", "", "10%" };
+ { 9, 39311, "", "=q4=Scepter of Murmuring Spirits", "=ds=#s15#", "", "10%" };
+ { 10, 39296, "", "=q4=Accursed Bow of the Elite", "=ds=#w2#", "", "10%" };
+ };
+ {
+ Name = BabbleBoss["Instructor Razuvious"];
+ { 1, 40325, "", "=q4=Bindings of the Expansive Mind", "=ds=#s8#, #a1#", "", "9%" };
+ { 2, 40326, "", "=q4=Boots of Forlorn Wishes", "=ds=#s12#, #a1#", "", "20%" };
+ { 3, 40305, "", "=q4=Spaulders of Egotism", "=ds=#s3#, #a2#", "", "8%" };
+ { 4, 40319, "", "=q4=Chestpiece of Suspicion", "=ds=#s5#, #a2#", "", "9%" };
+ { 5, 40323, "", "=q4=Esteemed Bindings", "=ds=#s8#, #a2#", "", "9%" };
+ { 6, 40315, "", "=q4=Shoulderpads of Secret Arts", "=ds=#s3#, #a3#", "", "9%" };
+ { 7, 40324, "", "=q4=Bands of Mutual Respect", "=ds=#s8#, #a3#", "", "9%" };
+ { 8, 40327, "", "=q4=Girdle of Recuperation", "=ds=#s10#, #a3#", "", "9%" };
+ { 9, 40306, "", "=q4=Bracers of the Unholy Knight", "=ds=#s8#, #a4#", "", "9%" };
+ { 10, 40316, "", "=q4=Gauntlets of Guiding Touch", "=ds=#s9#, #a4#", "", "9%" };
+ { 11, 40317, "", "=q4=Girdle of Razuvious", "=ds=#s10#, #a4#", "", "9%" };
+ { 12, 40318, "", "=q4=Legplates of Double Strikes", "=ds=#s11#, #a4#", "", "9%" };
+ { 13, 40320, "", "=q4=Faithful Steel Sabatons", "=ds=#s12#, #a4#", "", "9%" };
+ { 14, 40071, "", "=q4=Chains of Adoration", "=ds=#s2#", "", "11%" };
+ { 15, 40065, "", "=q4=Fool's Trial", "=ds=#s2#", "", "11%" };
+ { 16, 40069, "", "=q4=Heritage", "=ds=#s2#", "", "11%" };
+ { 17, 40064, "", "=q4=Thunderstorm Amulet", "=ds=#s2#", "", "11%" };
+ { 18, 40080, "", "=q4=Lost Jewel", "=ds=#s13#", "", "11%" };
+ { 19, 40075, "", "=q4=Ruthlessness", "=ds=#s13#", "", "11%" };
+ { 20, 40107, "", "=q4=Sand-Worn Band", "=ds=#s13#", "", "11%" };
+ { 21, 40074, "", "=q4=Strong-Handed Ring", "=ds=#s13#", "", "12%" };
+ { 22, 40321, "", "=q4=Idol of the Shooting Star", "=ds=#s16#, #w14#", "", "9%" };
+ { 23, 40322, "", "=q4=Totem of Dueling", "=ds=#s16#, #w15#", "", "9%" };
+ };
+ {
+ Name = BabbleBoss["Gothik the Harvester"];
+ { 1, 39390, "", "=q4=Resurgent Phantom Bindings", "=ds=#s8#, #a1#", "", "10%" };
+ { 2, 39386, "", "=q4=Tunic of Dislocation", "=ds=#s5#, #a2#", "", "19%" };
+ { 3, 39391, "", "=q4=Heinous Mail Chestguard", "=ds=#s5#, #a3#", "", "11%" };
+ { 4, 39379, "", "=q4=Spectral Rider's Girdle", "=ds=#s10#, #a3#", "", "10%" };
+ { 5, 39345, "", "=q4=Girdle of the Ascended Phantom", "=ds=#s10#, #a4#", "", "20%" };
+ { 6, 39369, "", "=q4=Sabatons of Deathlike Gloom", "=ds=#s12#, #a4#", "", "10%" };
+ { 7, 39392, "", "=q4=Veiled Amulet of Life", "=ds=#s2#", "", "10%" };
+ { 8, 39389, "", "=q4=Signet of the Malevolent", "=ds=#s2#", "", "10%" };
+ { 9, 39388, "", "=q4=Spirit-World Glass", "=ds=#s14#", "", "10%" };
+ { 10, 39344, "", "=q4=Slayer of the Lifeless", "=ds=#h1#, #w10#", "", "10%" };
+ };
+ {
+ Name = BabbleBoss["Gothik the Harvester"];
+ { 1, 40250, "", "-q4-Aged Winter Cloak", "=ds=#s4#", "", "11%" };
+ { 2, 40254, "", "=q4=Cloak of Averted Crisis", "=ds=#s4#", "", "11%" };
+ { 3, 40252, "", "=q4=Cloak of the Shadowed Sun", "=ds=#s4#", "", "11%" };
+ { 4, 40253, "", "=q4=Shawl of the Old Maid", "=ds=#s4#", "", "11%" };
+ { 5, 40251, "", "=q4=Shroud of Luminosity", "=ds=#s4#", "", "11%" };
+ { 6, 40339, "", "=q4=Gothik's Cowl", "=ds=#s1#, #a1#", "", "19%" };
+ { 7, 40338, "", "=q4=Bindings of Yearning", "=ds=#s8#, #a1#", "", "19%" };
+ { 8, 40329, "", "=q4=Hood of the Exodus", "=ds=#s1#, #a2#", "", "9%" };
+ { 9, 40341, "", "=q4=Shackled Cinch", "=ds=#s10#, #a2#", "", "9%" };
+ { 10, 40333, "", "=q4=Leggings of Fleeting Moments", "=ds=#s11#, #a2#", "", "9%" };
+ { 11, 40340, "", "=q4=Helm of Unleashed Energy", "=ds=#s1#, #a3#", "", "9%" };
+ { 12, 40331, "", "=q4=Leggings of Failed Escape", "=ds=#s11#, #a3#", "", "9%" };
+ { 13, 40328, "", "=q4=Helm of Vital Protection", "=ds=#s1#, #a4#", "", "9%" };
+ { 14, 40334, "", "=q4=Burdened Shoulderplates", "=ds=#s3#, #a4#", "", "9%" };
+ { 15, 40332, "", "=q4=Abetment Bracers", "=ds=#s8#, #a4#", "", "19%" };
+ { 16, 40330, "", "=q4=Bracers of Unrelenting Attack", "=ds=#s8#, #a4#", "", "9%" };
+ { 17, 40257, "", "=q4=Defender's Code", "=ds=#s14#", "", "11%" };
+ { 18, 40255, "", "=q4=Dying Curse", "=ds=#s14#", "", "11%" };
+ { 19, 40258, "", "=q4=Forethought Talisman", "=ds=#s14#", "", "11%" };
+ { 20, 40256, "", "=q4=Grim Toll", "=ds=#s14#", "", "11%" };
+ { 21, 40342, "", "=q4=Idol of Awakening", "=ds=#s16#, #w14#", "", "9%" };
+ { 22, 40337, "", "=q4=Libram of Resurgence", "=ds=#s16#, #w16#", "", "19%" };
+ { 23, 40336, "", "=q4=Life and Death", "=ds=#h3#, #w10#", "", "19%" };
+ { 24, 40335, "", "=q4=Touch of Horror", "=ds=#w12#", "", "9%" };
+ };
+ {
+ Name = BabbleBoss["The Four Horsemen"];
+ { 1, 39396, "", "=q4=Gown of Blaumeux", "=ds=#s5#, #a1#", "", "12%" };
+ { 2, 39397, "", "=q4=Pauldrons of Havoc", "=ds=#s3#, #a3#", "", "12%" };
+ { 3, 39395, "", "=q4=Thane's Tainted Greathelm", "=ds=#s1#, #a4#", "", "12%" };
+ { 4, 39393, "", "=q4=Claymore of Ancient Power", "=ds=#h2#, #w10#", "", "12%" };
+ { 5, 39394, "", "=q4=Charmed Cierge", "=ds=#w9#", "", "12%" };
+ { 16, 40610, "", "=q4=Chestguard of the Lost Conqueror", "=ds=#e15#", "", "18%" };
+ { 17, 40611, "", "=q4=Chestguard of the Lost Protector", "=ds=#e15#", "", "19%" };
+ { 18, 40612, "", "=q4=Chestguard of the Lost Vanquisher", "=ds=#e15#", "", "25%" };
+ };
+ {
+ Name = BabbleBoss["The Four Horsemen"];
+ { 1, 40349, "", "=q4=Gloves of Peaceful Death", "=ds=#s9#, #a2#", "", "11%" };
+ { 2, 40344, "", "=q4=Helm of the Grave", "=ds=#s1#, #a3#", "", "10%" };
+ { 3, 40352, "", "=q4=Leggings of Voracious Shadows", "=ds=#s11#, #a3#", "", "10%" };
+ { 4, 40347, "", "=q4=Zeliek's Gauntlets", "=ds=#s9#, #a4#", "", "8%" };
+ { 5, 40350, "", "=q4=Urn of Lost Memories", "=ds=#s15#", "", "10%" };
+ { 6, 40345, "", "=q4=Broken Promise", "=ds=#h1#, #w10#", "", "10%" };
+ { 8, 40343, "", "=q4=Armageddon", "=ds=#h2#, #w10#", "", "9%" };
+ { 7, 40348, "", "=q4=Damnation", "=ds=#w9#", "", "10%" };
+ { 9, 40346, "", "=q4=Final Voyage", "=ds=#w3#", "", "10%" };
+ { 16, 40625, "", "=q4=Breastplate of the Lost Conqueror", "=ds=#e15#", "", "30%" };
+ { 17, 40626, "", "=q4=Breastplate of the Lost Protector", "=ds=#e15#", "", "30%" };
+ { 18, 40627, "", "=q4=Breastplate of the Lost Vanquisher", "=ds=#e15#", "", "40%" };
+ };
+ {
+ Name = BabbleBoss["Noth the Plaguebringer"];
+ { 1, 39241, "", "=q4=Dark Shroud of the Scourge", "=ds=#s4#", "", "10%" };
+ { 2, 39242, "", "=q4=Robes of Hoarse Breaths", "=ds=#s5#, #a1#", "", "10%" };
+ { 3, 39240, "", "=q4=Noth's Curse", "=ds=#s1#, #a2#", "", "10%" };
+ { 4, 39237, "", "=q4=Spaulders of Resumed Battle", "=ds=#s3#, #a2#", "", "10%" };
+ { 5, 39243, "", "=q4=Handgrips of the Foredoomed", "=ds=#s9#, #a3#", "", "10%" };
+ { 6, 39236, "", "=q4=Trespasser's Boots", "=ds=#s12#, #a3#", "", "10%" };
+ { 7, 39239, "", "=q4=Chestplate of the Risen Soldier", "=ds=#s5#, #a4#", "", "10%" };
+ { 8, 39235, "", "=q4=Bone-Framed Bracers", "=ds=#s8#, #a4#", "", "10%" };
+ { 9, 39234, "", "=q4=Plague-Impervious Boots", "=ds=#s12#, #a4#", "", "10%" };
+ { 10, 39244, "", "=q4=Ring of the Fated", "=ds=#s13#", "", "10%" };
+ };
+ {
+ Name = BabbleBoss["Noth the Plaguebringer"];
+ { 1, 40602, "", "=q4=Robes of Mutation", "=ds=#s5#, #a1#", "", "19%" };
+ { 2, 40198, "", "=q4=Bands of Impurity", "=ds=#s8#, #a1#", "", "9%" };
+ { 3, 40197, "", "=q4=Gloves of the Fallen Wizard", "=ds=#s9#, #a1#", "", "9%" };
+ { 4, 40186, "", "=q4=Thrusting Bands", "=ds=#s8#, #a2#", "", "9%" };
+ { 5, 40200, "", "=q4=Belt of Potent Chanting", "=ds=#s10#, #a2#", "", "9%" };
+ { 6, 40193, "", "=q4=Tunic of Masked Suffering", "=ds=#s5#, #a3#", "", "20%" };
+ { 7, 40196, "", "=q4=Legguards of the Undisturbed", "=ds=#s11#, #a3#", "", "9%" };
+ { 8, 40184, "", "=q4=Crippled Treads", "=ds=#s12#, #a3#", "", "9%" };
+ { 9, 40185, "", "=q4=Shoulderguards of Opportunity", "=ds=#s3#, #a4#", "", "9%" };
+ { 10, 40188, "", "=q4=Gauntlets of the Disobediant", "=ds=#s9#, #a4#", "", "9%" };
+ { 11, 40187, "", "=q4=Poignant Sabatons", "=ds=#s12#, #a4#", "", "9%" };
+ { 12, 40071, "", "=q4=Chains of Adoration", "=ds=#s2#", "", "11%" };
+ { 13, 40065, "", "=q4=Fool's Trial", "=ds=#s2#", "", "11%" };
+ { 14, 40069, "", "=q4=Heritage", "=ds=#s2#", "", "11%" };
+ { 15, 40064, "", "=q4=Thunderstorm Amulet", "=ds=#s2#", "", "11%" };
+ { 16, 40080, "", "=q4=Lost Jewel", "=ds=#s13#", "", "11%" };
+ { 17, 40075, "", "=q4=Ruthlessness", "=ds=#s13#", "", "11%" };
+ { 18, 40107, "", "=q4=Sand-Worn Band", "=ds=#s13#", "", "11%" };
+ { 29, 40074, "", "=q4=Strong-Handed Ring", "=ds=#s13#", "", "12%" };
+ { 20, 40192, "", "=q4=Accursed Spine", "=ds=#s15#", "", "9%" };
+ { 21, 40191, "", "=q4=Libram of Radiance", "=ds=#s16#, #w16#", "", "9%" };
+ { 22, 40189, "", "=q4=Angry Dread", "=ds=#h1#, #w6#", "", "19%" };
+ { 23, 40190, "", "=q4=Spinning Fate", "=ds=#w11#", "", "9%" };
+ };
+ {
+ Name = BabbleBoss["Heigan the Unclean"];
+ { 1, 39252, "", "=q4=Preceptor's Bindings", "=ds=#s8#, #a1#", "", "9%" };
+ { 2, 39254, "", "=q4=Saltarello Shoes", "=ds=#s12#, #a1#", "", "10%" };
+ { 3, 39247, "", "=q4=Cuffs of Dark Shadows", "=ds=#s8#, #a2#", "", "9%" };
+ { 4, 39248, "", "=q4=Tunic of the Lost Pack", "=ds=#s5#, #a3#", "", "10%" };
+ { 5, 39251, "", "=q4=Necrogenic Belt", "=ds=#s10#, #a3#", "", "10%" };
+ { 6, 39249, "", "=q4=Shoulderplates of Bloodshed", "=ds=#s3#, #a4#", "", "9%" };
+ { 7, 39246, "", "=q4=Amulet of Autopsy", "=ds=#s2#", "", "9%" };
+ { 8, 39250, "", "=q4=Ring of Holy Cleansing", "=ds=#s13#", "", "10%" };
+ { 9, 39245, "", "=q4=Demise", "=ds=#h2#, #w6#", "", "9%" };
+ { 10, 39255, "", "=q4=Staff of the Plague Beast", "=ds=#w9#", "", "9%" };
+ };
+ {
+ Name = BabbleBoss["Heigan the Unclean"];
+ { 1, 40250, "", "=q4=Aged Winter Cloak", "=ds=#s4#", "", "11%" };
+ { 2, 40254, "", "=q4=Cloak of Averted Crisis", "=ds=#s4#", "", "11%" };
+ { 3, 40252, "", "=q4=Cloak of the Shadowed Sun", "=ds=#s4#", "", "11%" };
+ { 4, 40253, "", "=q4=Shawl of the Old Maid", "=ds=#s4#", "", "11%" };
+ { 5, 40251, "", "=q4=Shroud of Luminosity", "=ds=#s4#", "", "11%" };
+ { 6, 40234, "", "=q4=Heigan's Putrid Vestments", "=ds=#s5#, #a1#", "", "9%" };
+ { 7, 40236, "", "=q4=Serene Echoes", "=ds=#s12#, #a1#", "", "19%" };
+ { 8, 40238, "", "=q4=Gloves of the Dancing Bear", "=ds=#s9#, #a2#", "", "9%" };
+ { 9, 40205, "", "=q4=Stalk-Skin Belt", "=ds=#s10#, #a2#", "", "9%" };
+ { 10, 40235, "", "=q4=Helm of Pilgrimage", "=ds=#s1#, #a3#", "", "10%" };
+ { 11, 40209, "", "=q4=Bindings of the Decrepit", "=ds=#s8#, #a3#", "", "9%" };
+ { 12, 40201, "", "=q4=Leggings of Colossal Strides", "=ds=#s11#, #a3#", "", "9%" };
+ { 13, 40237, "", "=q4=Eruption-Scared Boots", "=ds=#s12#, #a3#", "", "10%" };
+ { 14, 40203, "", "=q4=Breastplate of Tormented Rage", "=ds=#s5#, #a4#", "", "18%" };
+ { 15, 40210, "", "=q4=Chestguard of Bitter Charms", "=ds=#s5#, #a4#", "", "9%" };
+ { 16, 40204, "", "=q4=Legguards of the Apostle", "=ds=#s11#, #a4#", "", "9%" };
+ { 17, 40206, "", "=q4=Iron-Spring Jumpers", "=ds=#s12#, #a4#", "", "9%" };
+ { 18, 40257, "", "=q4=Defender's Code", "=ds=#s14#", "", "11%" };
+ { 19, 40255, "", "=q4=Dying Curse", "=ds=#s14#", "", "11%" };
+ { 20, 40258, "", "=q4=Forethought Talisman", "=ds=#s14#", "", "11%" };
+ { 21, 40256, "", "=q4=Grim Toll", "=ds=#s14#", "", "11%" };
+ { 22, 40207, "", "=q4=Sigil of Awareness", "=ds=#s16#, #w21#", "", "9%" };
+ { 23, 40208, "", "=q4=Cryptfiend's Bite", "=ds=#w7#", "", "10%" };
+ { 24, 40233, "", "=q4=The Undeath Carrier", "=ds=#w9#", "", "9%" };
+ };
+ {
+ Name = BabbleBoss["Loatheb"];
+ { 1, 39259, "", "=q4=Fungi-Stained Coverings", "=ds=#s5#, #a2#", "", "10%" };
+ { 2, 39260, "", "=q4=Helm of the Corrupted Mind", "=ds=#s1#, #a4#", "", "10%" };
+ { 3, 39258, "", "=q4=Legplates of Inescapable Death", "=ds=#s11#, #a4#", "", "10%" };
+ { 4, 39257, "", "=q4=Loatheb's Shadow", "=ds=#s14#", "", "10%" };
+ { 5, 39256, "", "=q4=Sulfur Stave", "=ds=#w9#", "", "10%" };
+ { 16, 40622, "", "=q4=Spaulders of the Lost Conqueror", "=ds=#e15#", "", "29%" };
+ { 17, 40623, "", "=q4=Spaulders of the Lost Protector", "=ds=#e15#", "", "30%" };
+ { 18, 40624, "", "=q4=Spaulders of the Lost Vanquisher", "=ds=#e15#", "", "38%" };
+ };
+ {
+ Name = BabbleBoss["Loatheb"];
+ { 1, 40247, "", "=q4=Cowl of Innocent Delight", "=ds=#s1#, #a1#", "", "9%" };
+ { 2, 40246, "", "=q4=Boots of Impetuous Ideals", "=ds=#s12#, #a1#", "", "9%" };
+ { 3, 40249, "", "=q4=Vest of Vitality", "=ds=#s5#, #a2#", "", "10%" };
+ { 4, 40243, "", "=q4=Footwraps of Vile Deceit", "=ds=#s12#, #a2#", "", "10%" };
+ { 5, 40242, "", "=q4=Grotesque Handgrips", "=ds=#s9#, #a3#", "", "19%" };
+ { 6, 40241, "", "=q4=Girdle of Unity", "=ds=#s10#, #a4#", "", "10%" };
+ { 7, 40240, "", "=q4=Greaves of Turbulence", "=ds=#s11#, #a4#", "", "9%" };
+ { 8, 40244, "", "=q4=The Impossible Dream", "=ds=#h3#, #w6#", "", "10%" };
+ { 9, 40239, "", "=q4=The Hand of Nerub", "=ds=#h4#, #w13#", "", "19%" };
+ { 10, 40245, "", "=q4=Fading Glow", "=ds=#w12#", "", "10%" };
+ { 16, 40637, "", "=q4=Mantle of the Lost Conqueror", "=ds=#e15#", "", "57%" };
+ { 17, 40638, "", "=q4=Mantle of the Lost Protector", "=ds=#e15#", "", "58%" };
+ { 18, 40639, "", "=q4=Mantle of the Lost Vanquisher", "=ds=#e15#", "", "76%" };
+ };
+ {
+ Name = BabbleBoss["Sapphiron"];
+ { 1, 39415, "", "=q4=Shroud of the Citadel", "=ds=#s4#", "", "19%" };
+ { 2, 39404, "", "=q4=Cloak of Mastery", "=ds=#s4#", "", "18%" };
+ { 3, 39409, "", "=q4=Cowl of Winged Fear", "=ds=#s1#, #a1#", "", "18%" };
+ { 4, 39408, "", "=q4=Leggings of Sapphiron", "=ds=#s11#, #a1#", "", "19%" };
+ { 5, 39399, "", "=q4=Helm of the Vast Legions", "=ds=#s1#, #a2#", "", "17%" };
+ { 6, 39405, "", "=q4=Helmet of the Inner Sanctum", "=ds=#s1#, #a3#", "", "18%" };
+ { 7, 39403, "", "=q4=Helm of the Unsubmissive", "=ds=#s1#, #a4#", "", "17%" };
+ { 8, 39398, "", "=q4=Massive Skeletal Ribcage", "=ds=#s5#, #a4#", "", "19%" };
+ { 9, 39401, "", "=q4=Circle of Death", "=ds=#s13#", "", "19%" };
+ { 10, 39407, "", "=q4=Circle of Life", "=ds=#s13#", "", "18%" };
+ { 11, 44569, "", "=q4=Key to the Focusing Iris", "=ds=#m2#", "", "91%" };
+ { 12, 44582, "", "=q4=Key to the Focusing Iris", "=q1=#m4#: =ds=#e9#" };
+ };
+ {
+ Name = BabbleBoss["Sapphiron"];
+ { 1, 40381, "", "=q4=Sympathy", "=ds=#s5#, #a1#", "", "19%" };
+ { 2, 40380, "", "=q4=Gloves of Grandeur", "=ds=#s9#, #a1#", "", "18%" };
+ { 3, 40376, "", "=q4=Legwraps of the Defeated Dragon", "=ds=#s11#, #a1#", "", "19%" };
+ { 4, 40362, "", "=q4=Gloves of Fast Reactions", "=ds=#s9#, #a2#", "", "17%" };
+ { 5, 40379, "", "=q4=Legguards of the Boneyard", "=ds=#s11#, #a2#", "", "19%" };
+ { 6, 40367, "", "=q4=Boots of the Great Construct", "=ds=#s12#, #a3#", "", "18%" };
+ { 7, 40366, "", "=q4=Platehelm of the Great Wyrm", "=ds=#s1#, #a4#", "", "18%" };
+ { 8, 40377, "", "=q4=Noble Birthright Pauldrons", "=ds=#s3#, #a4#", "", "18%" };
+ { 9, 40365, "", "=q4=Breastplate of Frozen Pain", "=ds=#s5#, #a4#", "", "19%" };
+ { 10, 40363, "", "=q4= Bone-Inlaid Legguards", "=ds=#s11#, #a4#", "", "18%" };
+ { 11, 40378, "", "=q4=Ceaseless Pity", "=ds=#s2#", "", "19%" };
+ { 12, 40374, "", "=q4=Cosmic Lights", "=ds=#s2#", "", "19%" };
+ { 13, 40369, "", "=q4=Icy Blast Amulet", "=ds=#s2#", "", "18%" };
+ { 14, 40370, "", "=q4=Gatekeeper", "=ds=#s13#", "", "18%" };
+ { 15, 40375, "", "=q4=Ring of Decaying Beauty", "=ds=#s13#", "", "20%" };
+ { 16, 40371, "", "=q4=Bandit's Insignia", "=ds=#s14#", "", "18%" };
+ { 17, 40373, "", "=q4=Extract of Necromatic Power", "=ds=#s14#", "", "18%" };
+ { 18, 40372, "", "=q4=Rune of Repulsion", "=ds=#s14#", "", "19%" };
+ { 19, 40382, "", "=q4=Soul of the Dead", "=ds=#s14#", "", "20%" };
+ { 20, 40368, "", "=q4=Murder", "=ds=#h1#, #w4#", "", "19%" };
+ { 22, 44577, "", "=q4=Heroic Key to the Focusing Iris", "=ds=#m2#", "", "92%" };
+ { 23, 44581, "", "=q4=Heroic Key to the Focusing Iris", "=q1=#m4#: =ds=#e9#" };
+ };
+ {
+ Name = BabbleBoss["Kel'Thuzad"];
+ { 1, 39425, "", "=q4=Cloak of the Dying", "=ds=#s4#", "", "19%" };
+ { 2, 39421, "", "=q4=Gem of Imprisoned Vassals", "=ds=#s2#", "", "19%" };
+ { 3, 39416, "", "=q4=Kel'Thuzad's Reach", "=ds=#h3#, #w13#", "", "18%" };
+ { 4, 39424, "", "=q4=The Soulblade", "=ds=#h3#, #w4#", "", "19%" };
+ { 5, 39420, "", "=q4=Anarchy", "=ds=#h1#, #w4#", "", "18%" };
+ { 6, 39417, "", "=q4=Death's Bite", "=ds=#h2#, #w1#", "", "18%" };
+ { 7, 39423, "", "=q4=Hammer of the Astral Plane", "=ds=#h3#, #w6#", "", "18%" };
+ { 8, 39422, "", "=q4=Staff of the Plaguehound", "=ds=#w9#", "", "19%" };
+ { 9, 39426, "", "=q4=Wand of the Archlich", "=ds=#w12#", "", "19%" };
+ { 10, 39419, "", "=q4=Nerubian Conquerer", "=ds=#w5#", "", "19%" };
+ { 16, 40616, "", "=q4=Helm of the Lost Conqueror", "=ds=#e15#", "", "28%" };
+ { 17, 40617, "", "=q4=Helm of the Lost Protector", "=ds=#e15#", "", "28%" };
+ { 18, 40618, "", "=q4=Helm of the Lost Vanquisher", "=ds=#e15#", "", "38%" };
+ };
+ {
+ Name = BabbleBoss["Kel'Thuzad"];
+ { 1, 40405, "", "=q4=Cape of the Unworthy Wizard", "=ds=#s4#", "", "18%" };
+ { 2, 40403, "", "=q4=Drape of the Deadly Foe", "=ds=#s4#", "", "18%" };
+ { 3, 40398, "", "=q4=Leggings of Mortal Arrogance", "=ds=#s11#, #a1#", "", "18%" };
+ { 4, 40387, "", "=q4=Boundless Ambition", "=ds=#s2#", "", "18%" };
+ { 5, 40399, "", "=q4=Signet of Manifested Pain", "=ds=#s13#", "", "17%" };
+ { 6, 40383, "", "=q4=Calamity's Grasp", "=ds=#h3#, #w13#", "", "18%" };
+ { 7, 40386, "", "=q4=Sinister Revenge", "=ds=#h1#, #w4#", "", "17%" };
+ { 8, 40396, "", "=q4=The Turning Tide", "=ds=#h3#, #w10#", "", "18%" };
+ { 9, 40402, "", "=q4=Last Laugh", "=ds=#h1#, #w1#", "", "18%" };
+ { 10, 40384, "", "=q4=Betrayer of Humanity", "=ds=#h2#, #w1#", "", "17%" };
+ { 11, 40395, "", "=q4=Torch of Holy Fire", "=ds=#h3#, #w6#", "", "18%" };
+ { 12, 40388, "", "=q4=Journey's End", "=ds=#w9#", "", "18%" };
+ { 13, 40401, "", "=q4=Voice of Reason", "=ds=#w8#", "", "17%" };
+ { 14, 40400, "", "=q4=Wall of Terror", "=ds=#w8#", "", "18%" };
+ { 15, 40385, "", "=q4=Envoy of Mortality", "=ds=#w5#", "", "17%" };
+ { 16, 40631, "", "=q4=Crown of the Lost Conqueror", "=ds=#e15#", "", "54%" };
+ { 17, 40632, "", "=q4=Crown of the Lost Protector", "=ds=#e15#", "", "57%" };
+ { 18, 40633, "", "=q4=Crown of the Lost Vanquisher", "=ds=#e15#", "", "73%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 39467, "", "=q4=Minion Bracers", "=ds=#s8#, #a4#", "", "1%" };
+ { 2, 39472, "", "=q4=Chain of Latent Energies", "=ds=#s2#", "", "1%" };
+ { 3, 39470, "", "=q4=Medallion of the Disgraced", "=ds=#s2#", "", "1%" };
+ { 4, 39427, "", "=q4=Omen of Ruin", "=ds=#h1#, #w4#", "", "1%" };
+ { 5, 39468, "", "=q4=The Stray", "=ds=#h4#, #w13#", "", "1%" };
+ { 6, 39473, "", "=q4=Contortion", "=ds=#w12#", "", "1%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 40410, "", "=q4=Shadow of the Ghoul", "=ds=#s4#", "", "1%" };
+ { 2, 40409, "", "=q4=Boots of the Escaped Captive", "=ds=#s12#, #a2#", "", "1%" };
+ { 3, 40414, "", "=q4=Shoulderguards of the Undaunted", "=ds=#s3#, #a4#", "", "1%" };
+ { 4, 40412, "", "=q4=Ousted Bead Necklace", "=ds=#s2#", "", "1%" };
+ { 5, 40408, "", "=q4=Haunting Call", "=ds=#h3#, #w4#", "", "1%" };
+ { 6, 40407, "", "=q4=Silent Crusader", "=ds=#h1#, #w10#", "", "1%" };
+ { 7, 40406, "", "=q4=Inevitable Defeat", "=ds=#h2#, #w6#", "", "1%" };
+ };
+};
+
+------------------------
+--- Obsidian Sanctum ---
+------------------------
+
+AtlasLoot_Data["Sartharion"] = {
+ Name = BabbleZone["The Obsidian Sanctum"];
+ Type = "WrathRaid";
+ {
+ Name = BabbleBoss["Sartharion"];
+ { 1, 40428, "", "=q4=Titan's Outlook", "=ds=#s1#, #a4#", "", "18%" };
+ { 2, 40427, "", "=q4=Circle of Arcane Streams", "=ds=#s2#", "", "18%" };
+ { 3, 40426, "", "=q4=Signet of the Accord", "=ds=#s13#", "", "19%" };
+ { 4, 40433, "", "=q4=Wyrmrest Band", "=ds=#s13#", "", "7%" };
+ { 5, 40430, "", "=q4=Majestic Dragon Figurine", "=ds=#s14#", "", "18%" };
+ { 6, 40429, "", "=q4=Crimson Steel", "=ds=#h3#, #w13#", "", "18%" };
+ { 7, 43345, "", "=q4=Dragon Hide Bag", "=ds=#e1#", "", "100%" };
+ { 8, 43347, "", "=q4=Satchel of Spoils", "", "", "100%" };
+ { 10, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["One Drake Left"] };
+ { 11, 43988, "", "=q4=Gale-Proof Cloak", "=ds=#s4#", "", "1%" };
+ { 12, 43990, "", "=q4=Blade-Scarred Tunic", "=ds=#s5#, #a2#", "", "2%" };
+ { 13, 43991, "", "=q4=Legguards of Composure", "=ds=#s11#, #a2#", "", "1%" };
+ { 14, 43989, "", "=q4=Remembrance Girdle", "=ds=#s10#, #a4#", "", "2%" };
+ { 15, 43992, "", "=q4=Volitant Amulet", "=ds=#s2#", "", "2%" };
+ { 16, 40613, "", "=q4=Gloves of the Lost Conqueror", "=ds=#e15#", "", "28%" };
+ { 17, 40614, "", "=q4=Gloves of the Lost Protector", "=ds=#e15#", "", "29%" };
+ { 18, 40615, "", "=q4=Gloves of the Lost Vanquisher", "=ds=#e15#", "", "37%" };
+ { 20, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["Two Drakes Left"] };
+ { 21, 43995, "", "=q4=Enamored Cowl", "=ds=#s1#, #a1#", "", "0.00%" };
+ { 22, 43998, "", "=q4=Chestguard of Flagrant Prowess", "=ds=#s5#, #a3#" };
+ { 23, 43996, "", "=q4=Sabatons of Firmament", "=ds=#s12#, #a3#" };
+ { 24, 43994, "", "=q4=Belabored Legplates", "=ds=#s11#, #a4#" };
+ { 25, 43993, "", "=q4=Greatring of Collision", "=ds=#s13#" };
+ { 27, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["Three Drakes Left"] };
+ { 28, 43986, "", "=q4=Reins of the Black Drake", "=ds=#e12#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Sartharion"];
+ { 1, 40437, "", "=q4=Concealment Shoulderpads", "=ds=#s3#, #a2#", "", "16%" };
+ { 2, 40439, "", "=q4=Mantle of the Eternal Sentinel", "=ds=#s3#, #a2#", "", "19%" };
+ { 3, 40451, "", "=q4=Hyaline Helm of the Sniper", "=ds=#s1#, #a3#", "", "16%" };
+ { 4, 40438, "", "=q4=Council Chamber Epaulets", "=ds=#s3#, #a3#", "", "19%" };
+ { 5, 40453, "", "=q4=Chestplate of the Great Aspects", "=ds=#s5#, #a4#", "", "17%" };
+ { 6, 40446, "", "=q4=Dragon Brood Legguards", "=ds=#s11#, #a4#", "", "17%" };
+ { 7, 40433, "", "=q4=Wyrmrest Band", "=ds=#s13#", "", "7%" };
+ { 8, 40431, "", "=q4=Fury of the Five Flights", "=ds=#s14#", "", "17%" };
+ { 9, 40432, "", "=q4=Illustration of the Dragon Soul", "=ds=#s14#", "", "19%" };
+ { 10, 40455, "", "=q4=Staff of Restraint", "=ds=#w9#", "", "19%" };
+ { 11, 43345, "", "=q4=Dragon Hide Bag", "=ds=#e1#", "", "100%" };
+ { 12, 43346, "", "=q4=Large Satchel of Spoils", "", "", "100%" };
+ { 13, 40628, "", "=q4=Gauntlets of the Lost Conqueror", "=ds=#e15#", "", "51%" };
+ { 14, 40629, "", "=q4=Gauntlets of the Lost Protector", "=ds=#e15#", "", "53%" };
+ { 15, 40630, "", "=q4=Gauntlets of the Lost Vanquisher", "=ds=#e15#", "", "67%" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["One Drake Left"] };
+ { 17, 44002, "", "=q4=The Sanctum's Flowing Vestments", "=ds=#s5#, #a1#", "", "7%" };
+ { 18, 44003, "", "=q4=Upstanding Spaulders", "=ds=#s3#, #a3#", "", "7%" };
+ { 19, 44004, "", "=q4=Bountiful Gauntlets", "=ds=#s9#, #a3#", "", "6%" };
+ { 20, 44000, "", "=q4=Dragonstorm Breastplate", "=ds=#s5#, #a4#", "", "6%" };
+ { 22, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["Two Drakes Left"] };
+ { 23, 44005, "", "=q4=Pennant Cloak", "=ds=#s4#", "", "3%" };
+ { 24, 44008, "", "=q4=Unsullied Cuffs", "=ds=#s8#, #a1#", "", "3%" };
+ { 25, 44007, "", "=q4=Headpiece of Reconciliation", "=ds=#s1#, #a2#", "", "3%" };
+ { 26, 44011, "", "=q4=Leggings of the Honored", "=ds=#s11#, #a2#", "", "3%" };
+ { 27, 44006, "", "=q4=Obsidian Greathelm", "=ds=#s1#, #a4#", "", "3%" };
+ { 29, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["Three Drakes Left"] };
+ { 30, 43954, "", "=q4=Reins of the Twilight Drake", "=ds=#e12#", "", "100%" };
+ };
+};
+---------------------------
+--- The Eye of Eternity ---
+---------------------------
+
+AtlasLoot_Data["Malygos"] = {
+ Name = BabbleZone["The Eye of Eternity"];
+ Type = "WrathRaid";
+ {
+ Name = BabbleBoss["Malygos"];
+ { 1, 40526, "", "=q4=Gown of the Spell-Weaver", "=ds=#s5#, #a1#", "", "12%" };
+ { 2, 40519, "", "=q4=Footsteps of Malygos", "=ds=#s12#, #a2#", "", "12%" };
+ { 3, 40511, "", "=q4=Focusing Energy Epaulets", "=ds=#s3#, #a4#", "", "13%" };
+ { 4, 40486, "", "=q4=Necklace of the Glittering Chamber", "=ds=#s2#", "", "12%" };
+ { 5, 40474, "", "=q4=Surge Needle Ring", "=ds=#s13#", "", "10%" };
+ { 6, 40491, "", "=q4=Hailstorm", "=ds=#h1#, #w10#", "", "11%" };
+ { 7, 40488, "", "=q4=Ice Spire Scepter", "=ds=#h3#, #w6#", "", "12%" };
+ { 8, 40489, "", "=q4=Greatstaff of the Nexus", "=ds=#w9#", "", "12%" };
+ { 9, 40497, "", "=q4=Black Ice", "=ds=#w7#", "", "10%" };
+ { 10, 40475, "", "=q4=Barricade of Eternity", "=ds=#w8#", "", "11%" };
+ { 11, 43952, "", "=q4=Reins of the Azure Drake", "=ds=#e12#", "", "1%" };
+ { 13, 44569, "", "=q4=Key to the Focusing Iris", "=ds=#m3#", "", "91%" };
+ { 16, 44650, "", "=q1=Heart of Magic", "=ds=#m3#", "", "100%" };
+ { 17, 44658, "", "=q4=Chain of the Ancient Wyrm", "=q1=#m4#: =ds=#s2#" };
+ { 18, 44660, "", "=q4=Drakescale Collar", "=q1=#m4#: =ds=#s2#" };
+ { 19, 44659, "", "=q4=Pendant of the Dragonsworn", "=q1=#m4#: =ds=#s2#" };
+ { 20, 44657, "", "=q4=Torque of the Red Dragonflight", "=q1=#m4#: =ds=#s2#" };
+ };
+ {
+ Name = BabbleBoss["Malygos"];
+ { 1, 40562, "", "=q4=Hood of Rationality", "=ds=#s1#, #a1#", "", "9%" };
+ { 2, 40555, "", "=q4=Mantle of Dissemination", "=ds=#s3#, #a1#", "", "9%" };
+ { 3, 40194, "", "=q4=Blanketing Robes of Snow", "=ds=#s5#, #a1#", "", "9%" };
+ { 4, 40561, "", "=q4=Leash of Heedless Magic", "=ds=#s10#, #a1#", "", "9%" };
+ { 5, 40560, "", "=q4=Leggings of the Wanton Spellcaster", "=ds=#s11#, #a1#", "", "10%" };
+ { 6, 40558, "", "=q4=Arcanic Tramplers", "=ds=#s12#, #a1#", "", "7%" };
+ { 7, 40594, "", "=q4=Spaulders of Catatonia", "=ds=#s3#, #a2#", "", "10%" };
+ { 8, 40539, "", "=q4=Chestguard of the Recluse", "=ds=#s5#, #a2#", "", "8%" };
+ { 9, 40541, "", "=q4=Frosted Adroit Handguards", "=ds=#s9#, #a2#", "", "9%" };
+ { 10, 40566, "", "=q4=Unravelling Strands of Sanity", "=ds=#s10#, #a2#", "", "11%" };
+ { 11, 40543, "", "=q4=Blue Aspect Helm", "=ds=#s1#, #a3#", "", "9%" };
+ { 12, 40588, "", "=q4=Tunic of the Artifact Guardian", "=ds=#s5#, #a3#", "", "9%" };
+ { 13, 40564, "", "=q4=Winter Spectacle Gloves", "=ds=#s9#, #a3#", "", "9%" };
+ { 14, 40549, "", "=q4=Boots of the Renewed Flight", "=ds=#s12#, #a3#", "", "8%" };
+ { 15, 40590, "", "=q4=Elevated Lair Pauldrons", "=ds=#s3#, #a4#", "", "9%" };
+ { 16, 40589, "", "=q4=Legplates of Sovereignty", "=ds=#s11#, #a4#", "", "9%" };
+ { 17, 40592, "", "=q4=Boots of Healing Energies", "=ds=#s12#, #a4#", "", "10%" };
+ { 18, 40591, "", "=q4=Melancholy Sabatons", "=ds=#s12#, #a4#", "", "9%" };
+ { 19, 40532, "", "=q4=Living Ice Crystals", "=ds=#s14#", "", "9%" };
+ { 20, 40531, "", "=q4=Mark of Norgannon", "=ds=#s14#", "", "8%" };
+ { 21, 43952, "", "=q4=Reins of the Azure Drake", "=ds=#e12#", "", "1%" };
+ { 23, 44577, "", "=q4=Heroic Key to the Focusing Iris", "=ds=#m3#", "", "92%" };
+ { 25, 44650, "", "=q1=Heart of Magic", "=ds=#m3#", "", "100%" };
+ { 26, 44664, "", "=q4=Favor of the Dragon Queen", "=q1=#m4#: =ds=#s2#" };
+ { 27, 44662, "", "=q4=Life-Binder's Locket", "=q1=#m4#: =ds=#s2#" };
+ { 28, 44665, "", "=q4=Nexus War Champion Beads", "=q1=#m4#: =ds=#s2#" };
+ { 29, 44661, "", "=q4=Wyrmrest Necklace of Power", "=q1=#m4#: =ds=#s2#" };
+ };
+};
+--------------
+--- Ulduar ---
+--------------
+
+AtlasLoot_Data["Ulduar"] = {
+ Name = BabbleZone["Ulduar"];
+ Type = "WrathRaid";
+ {
+ Name = BabbleBoss["Flame Leviathan"];
+ { 1, 45289, "", "=q4=Lifespark Visage", "=ds=#s1#, #a1#", "", "22%" };
+ { 2, 45291, "", "=q4=Combustion Bracers", "=ds=#s8#, #a1#", "", "17%" };
+ { 3, 45288, "", "=q4=Firestrider Chestguard", "=ds=#s5#, #a3#", "", "22%" };
+ { 4, 45283, "", "=q4=Flamewatch Armguards", "=ds=#s8#, #a4#", "", "19%" };
+ { 5, 45285, "", "=q4=Might of the Leviathan", "=ds=#s2#", "", "18%" };
+ { 6, 45292, "", "=q4=Energy Siphon", "=ds=#s14#", "", "18%" };
+ { 7, 45286, "", "=q4=Pyrite Infuser", "=ds=#s14#", "", "17%" };
+ { 8, 45284, "", "=q4=Kinetic Ripper", "=ds=#h4#, #w13#", "", "19%" };
+ { 9, 45287, "", "=q4=Firesoul", "=ds=#h3#, #w10#", "", "17%" };
+ { 10, 45282, "", "=q4=Ironsoul", "=ds=#h2#, #w6#", "", "19%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 45293, "", "=q4=Handguards of Potent Cures", "=ds=#s9#, #a2#", "", "0.18%" };
+ { 18, 45300, "", "=q4=Mantle of Fiery Vengeance", "=ds=#s3#, #a3#" };
+ { 19, 45295, "", "=q4=Gilded Steel Legplates", "=ds=#s11#, #a4#", "", "0.25%" };
+ { 20, 45297, "", "=q4=Shimmering Seal", "=ds=#s13#", "", "0.11%" };
+ { 21, 45296, "", "=q4=Twirling Blades", "=ds=#w11#", "", "0.36%" };
+ };
+ {
+ Name = BabbleBoss["Flame Leviathan"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45117, "", "=q4=Constructor's Handwraps", "=ds=#s9#, #a1#", "", "19%" };
+ { 5, 45119, "", "=q4=Embrace of the Leviathan", "=ds=#s10#, #a1#", "", "20%" };
+ { 6, 45108, "", "=q4=Mechanist's Bindings", "=ds=#s8#, #a2#", "", "19%" };
+ { 7, 45118, "", "=q4=Steamworker's Goggles", "=ds=#s1#, #a3#", "", "20%" };
+ { 8, 45109, "", "=q4=Gloves of the Fiery Behemoth", "=ds=#s9#, #a3#", "", "18%" };
+ { 9, 45107, "", "=q4=Iron Riveted War Helm", "=ds=#s1#, #a4#", "", "17%" };
+ { 10, 45111, "", "=q4=Mimiron's Inferno Couplings", "=ds=#s8#, #a4#", "", "18%" };
+ { 11, 45116, "", "=q4=Freya's Choker of Warding", "=ds=#s2#", "", "19%" };
+ { 12, 45113, "", "=q4=Glowing Ring of Reclamation", "=ds=#s13#", "", "19%" };
+ { 13, 45106, "", "=q4=Strength of the Automaton", "=ds=#s13#", "", "16%" };
+ { 14, 45112, "", "=q4=The Leviathan's Coil", "=ds=#s13#", "", "19%" };
+ { 15, 45115, "", "=q4=Overcharged Fuel Rod", "=ds=#s15#", "", "18%" };
+ { 16, 45114, "", "=q4=Steamcaller's Totem", "=ds=#s16#, #w15#", "", "18%" };
+ { 17, 45110, "", "=q4=Titanguard", "=ds=#h1#, #w10#", "", "18%" };
+ { 18, 45086, "", "=q4=Rising Sun", "=ds=#w11#", "", "18%" };
+ { 20, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 21, 45135, "", "=q4=Boots of Fiery Resolution", "=ds=#s12#, #a1#", "", "0.27%" };
+ { 22, 45136, "", "=q4=Shoulderpads of Dormant Energies", "=ds=#s3#, #a2#" };
+ { 23, 45134, "", "=q4=Plated Leggings of Ruination", "=ds=#s11#, #a4#" };
+ { 24, 45133, "", "=q4=Pendant of Fiery Havoc", "=ds=#s2#" };
+ { 25, 45132, "", "=q4=Golden Saronite Dragon", "=ds=#h3#, #w13#", "", "0.11%" };
+ };
+ {
+ Name = BabbleBoss["Razorscale"];
+ { 1, 45306, "", "=q4=Binding of the Dragon Matriarch", "=ds=#s10#, #a1#", "", "20%" };
+ { 2, 45302, "", "=q4=Treads of the Invader", "=ds=#s12#, #a2#", "", "19%" };
+ { 3, 45301, "", "=q4=Bracers of the Smothering Inferno", "=ds=#s8#, #a3#", "", "20%" };
+ { 4, 45307, "", "=q4=Ironscale Leggings", "=ds=#s11#, #a3#", "", "20%" };
+ { 5, 45299, "", "=q4=Dragonsteel Faceplate", "=ds=#s1#, #a4#", "", "19%" };
+ { 6, 45305, "", "=q4=Breastplate of the Afterlife", "=ds=#s5#, #a4#", "", "19%" };
+ { 7, 45304, "", "=q4=Stormtempered Girdle", "=ds=#s10#, #a4#", "", "19%" };
+ { 8, 45303, "", "=q4=Band of Draconic Guile", "=ds=#s13#", "", "20%" };
+ { 9, 45308, "", "=q4=Eye of the Broodmother", "=ds=#s14#", "", "21%" };
+ { 10, 45298, "", "=q4=Razorscale Talon", "=ds=#h1#, #w10#", "", "20%" };
+ };
+ {
+ Name = BabbleBoss["Razorscale"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45138, "", "=q4=Drape of the Drakerider", "=ds=#s4#", "", "20%" };
+ { 5, 45150, "", "=q4=Collar of the Wyrmhunter", "=ds=#s1#, #a1#", "", "20%" };
+ { 6, 45146, "", "=q4=Shackles of the Odalisque", "=ds=#s8#, #a1#", "", "20%" };
+ { 7, 45149, "", "=q4=Bracers of the Broodmother", "=ds=#s8#, #a2#", "", "21%" };
+ { 8, 45141, "", "=q4=Proto-hide Leggings", "=ds=#s11#, #a2#", "", "19%" };
+ { 9, 45151, "", "=q4=Belt of the Fallen Wyrm", "=ds=#s10#, #a3#", "", "19%" };
+ { 10, 45143, "", "=q4=Saronite Mesh Legguards", "=ds=#s11#, #a3#", "", "20%" };
+ { 11, 45140, "", "=q4=Razorscale Shoulderguards", "=ds=#s3#, #a4#", "", "19%" };
+ { 12, 45139, "", "=q4=Dragonslayer's Brace", "=ds=#s10#, #a4#", "", "19%" };
+ { 13, 45148, "", "=q4=Living Flame", "=ds=#s14#", "", "19%" };
+ { 14, 45510, "", "=q4=Libram of Discord", "=ds=#s16#, #w16#", "", "19%" };
+ { 15, 45144, "", "=q4=Sigil of Deflection", "=ds=#s16#, #w21#", "", "19%" };
+ { 16, 45142, "", "=q4=Remorse", "=ds=#h1#, #w10#", "", "19%" };
+ { 17, 45147, "", "=q4=Guiding Star", "=ds=#h3#, #w6#", "", "19%" };
+ { 18, 45137, "", "=q4=Veranus' Bane", "=ds=#w5#", "", "18%" };
+ };
+ {
+ Name = BabbleBoss["Ignis the Furnace Master"];
+ { 1, 45317, "", "=q4=Shawl of the Caretaker", "=ds=#s4#", "", "20%" };
+ { 2, 45318, "", "=q4=Drape of Fuming Anger", "=ds=#s4#", "", "19%" };
+ { 3, 45312, "", "=q4=Gloves of Smoldering Touch", "=ds=#s9#, #a2#", "", "20%" };
+ { 4, 45316, "", "=q4=Armbraces of the Vibrant Flame", "=ds=#s8#, #a3#", "", "19%" };
+ { 5, 45321, "", "=q4=Pauldrons of Tempered Will", "=ds=#s3#, #a4#", "", "21%" };
+ { 6, 45310, "", "=q4=Gauntlets of the Iron Furnace", "=ds=#s9#, #a4#", "", "20%" };
+ { 7, 45313, "", "=q4=Furnace Stone", "=ds=#s14#", "", "19%" };
+ { 8, 45314, "", "=q4=Igniter Rod", "=ds=#s15#", "", "19%" };
+ { 9, 45311, "", "=q4=Relentless Edge", "=ds=#w7#", "", "20%" };
+ { 10, 45309, "", "=q4=Rifle of the Platinum Guard", "=ds=#w5#", "", "19%" };
+ };
+ {
+ Name = BabbleBoss["Ignis the Furnace Master"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45186, "", "=q4=Soot-Covered Mantle", "=ds=#s3#, #a1#", "", "18%" };
+ { 5, 45185, "", "=q4=Flamewrought Cinch", "=ds=#s10#, #a2#", "", "20%" };
+ { 6, 45162, "", "=q4=Flamestalker Boots", "=ds=#s12#, #a2#", "", "18%" };
+ { 7, 45164, "", "=q4=Helm of the Furnace Master", "=ds=#s1#, #a3#", "", "19%" };
+ { 8, 45187, "", "=q4=Wristguards of the Firetender", "=ds=#s8#, #a3#", "", "19%" };
+ { 9, 45167, "", "=q4=Lifeforge Breastplate", "=ds=#s5#, #a4#", "", "19%" };
+ { 10, 45161, "", "=q4=Girdle of Embers", "=ds=#s10#, #a4#", "", "19%" };
+ { 11, 45166, "", "=q4=Charred Saronite Greaves", "=ds=#s12#, #a4#", "", "20%" };
+ { 12, 45157, "", "=q4=Cindershard Ring", "=ds=#s13#", "", "20%" };
+ { 13, 45168, "", "=q4=Pyrelight Circle", "=ds=#s13#", "", "20%" };
+ { 14, 45158, "", "=q4=Heart of Iron", "=ds=#s14#", "", "19%" };
+ { 15, 45169, "", "=q4=Totem of the Dancing Flame", "=ds=#s16#, #w15#", "", "21%" };
+ { 16, 45165, "", "=q4=Worldcarver", "=ds=#h2#, #w1#", "", "19%" };
+ { 17, 45171, "", "=q4=Intensity", "=ds=#w9#", "", "20%" };
+ { 18, 45170, "", "=q4=Scepter of Creation", "=ds=#w12#", "", "21%" };
+ };
+ {
+ Name = BabbleBoss["XT-002 Deconstructor"];
+ { 1, 45694, "", "=q4=Conductive Cord", "=ds=#s10#, #a1#", "", "21%" };
+ { 2, 45677, "", "=q4=Treacherous Shoulderpads", "=ds=#s3#, #a2#", "", "19%" };
+ { 3, 45686, "", "=q4=Vest of the Glowing Crescent", "=ds=#s5#, #a2#", "", "21%" };
+ { 4, 45687, "", "=q4=Helm of Veiled Energies", "=ds=#s1#, #a3#", "", "21%" };
+ { 5, 45679, "", "=q4=Gloves of Taut Grip", "=ds=#s9#, #a3#", "", "19%" };
+ { 6, 45676, "", "=q4=Chestplate of Vicious Potency", "=ds=#s5#, #a4#", "", "19%" };
+ { 7, 45680, "", "=q4=Armbands of the Construct", "=ds=#s8#, #a4#", "", "18%" };
+ { 8, 45675, "", "=q4=Power Enhancing Loop", "=ds=#s13#", "", "20%" };
+ { 9, 45685, "", "=q4=Plasma Foil", "=ds=#h3#, #w4#", "", "22%" };
+ { 10, 45682, "", "=q4=Pulsing Spellshield", "=ds=#w8#", "", "14%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 45869, "", "=q4=Fluxing Energy Coils", "=ds=#s8#, #a2#", "", "3%" };
+ { 18, 45867, "", "=q4=Breastplate of the Stoneshaper", "=ds=#s5#, #a3#", "", "2%" };
+ { 19, 45871, "", "=q4=Seal of Ulduar", "=ds=#s13#", "", "2%" };
+ { 20, 45868, "", "=q4=Aesir's Edge", "=ds=#h2#, #w10#", "", "2%" };
+ { 21, 45870, "", "=q4=Magnetized Projectile Emitter", "=ds=#w5#", "", "3%" };
+ };
+ {
+ Name = BabbleBoss["XT-002 Deconstructor"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45253, "", "=q4=Mantle of Wavering Calm", "=ds=#s3#, #a1#", "", "19%" };
+ { 5, 45258, "", "=q4=Sandals of Rash Temperament", "=ds=#s12#, #a1#", "", "19%" };
+ { 6, 45260, "", "=q4=Boots of Hasty Revival", "=ds=#s12#, #a2#", "", "21%" };
+ { 7, 45259, "", "=q4=Quartz-studded Harness", "=ds=#s5#, #a3#", "", "18%" };
+ { 8, 45249, "", "=q4=Brass-lined Boots", "=ds=#s12#, #a3#", "", "18%" };
+ { 9, 45251, "", "=q4=Shoulderplates of the Deconstructor", "=ds=#s3#, #a4#", "", "18%" };
+ { 10, 45252, "", "=q4=Horologist's Wristguards", "=ds=#s8#, #a4#", "", "19%" };
+ { 11, 45248, "", "=q4=Clockwork Legplates", "=ds=#s11#, #a4#", "", "19%" };
+ { 12, 45250, "", "=q4=Crazed Construct Ring", "=ds=#s13#", "", "18%" };
+ { 13, 45247, "", "=q4=Signet of the Earthshaker", "=ds=#s13#", "", "20%" };
+ { 14, 45254, "", "=q4=Sigil of the Vengeful Heart", "=ds=#s16#, #w21#", "", "20%" };
+ { 15, 45255, "", "=q4=Thunderfall Totem", "=ds=#s16#, #w15#", "", "20%" };
+ { 16, 45246, "", "=q4=Golem-Shard Sticker", "=ds=#h1#, #w4#", "", "19%" };
+ { 17, 45256, "", "=q4=Twisted Visage", "=ds=#w9#", "", "19%" };
+ { 18, 45257, "", "=q4=Quartz Crystal Wand", "=ds=#w12#", "", "20%" };
+ { 20, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 21, 45446, "", "=q4=Grasps of Reason", "=ds=#s8#, #a1#", "", "0.16%" };
+ { 22, 45444, "", "=q4=Gloves of the Steady Hand", "=ds=#s9#, #a3#", "", "0.29%" };
+ { 23, 45445, "", "=q4=Breastplate of the Devoted", "=ds=#s5#, #a4#", "", "0.16%" };
+ { 24, 45443, "", "=q4=Charm of Meticulous Timing", "=ds=#s2#", "", "0.15%" };
+ { 25, 45442, "", "=q4=Sorthalis, Hammer of the Watchers", "=ds=#h1#, #w6#", "", "0.28%" };
+ };
+ {
+ Name = BabbleBoss["The Iron Council"];
+ { 1, 45322, "", "=q4=Cloak of the Iron Council", "=ds=#s4#", "", "18%" };
+ { 2, 45423, "", "=q4=Runetouch Handwraps", "=ds=#s8#, #a1#", "", "24%" };
+ { 3, 45324, "", "=q4=Leggings of Swift Reflexes", "=ds=#s11#, #a2#", "", "19%" };
+ { 4, 45378, "", "=q4=Boots of the Petrified Forest", "=ds=#s12#, #a2#", "", "17%" };
+ { 5, 45329, "", "=q4=Circlet of True Sight", "=ds=#s1#, #a3#", "", "19%" };
+ { 6, 45333, "", "=q4=Belt of the Iron Servant", "=ds=#s10#, #a3#", "", "22%" };
+ { 7, 45330, "", "=q4=Greaves of Iron Intensity", "=ds=#s12#, #a4#", "", "23%" };
+ { 8, 45418, "", "=q4=Lady Maye's Sapphire Ring", "=ds=#s13#", "", "21%" };
+ { 9, 45332, "", "=q4=Stormtip", "=ds=#h3#, #w4#", "", "23%" };
+ { 10, 45331, "", "=q4=Rune-Etched Nightblade", "=ds=#h1#, #w10#", "", "19%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 45455, "", "=q4=Belt of the Crystal Tree", "=ds=#s10#, #a2#", "", "19%" };
+ { 18, 45447, "", "=q4=Watchful Eye", "=ds=#s2#", "", "18%" };
+ { 19, 45456, "", "=q4=Loop of the Agile", "=ds=#s13#", "", "16%" };
+ { 20, 45449, "", "=q4=The Masticator", "=ds=#h3#, #w13#", "", "18%" };
+ { 21, 45448, "", "=q4=Perilous Bite", "=ds=#h1#, #w4#", "", "17%" };
+ { 22, 45506, "", "=q4=Archivum Data Disc", "=ds=#m2#", "", "91%" };
+ };
+ {
+ Name = BabbleBoss["The Iron Council"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45224, "", "=q4=Drape of the Lithe", "=ds=#s4#", "", "19%" };
+ { 5, 45240, "", "=q4=Raiments of the Iron Council", "=ds=#s5#, #a1#", "", "24%" };
+ { 6, 45238, "", "=q4=Overload Legwraps", "=ds=#s11#, #a1#", "", "20%" };
+ { 7, 45237, "", "=q4=Phaelia's Vestments of the Sprouting Seed", "=ds=#s5#, #a2#", "", "23%" };
+ { 8, 45232, "", "=q4=Runed Ironhide Boots", "=ds=#s12#, #a2#", "", "22%" };
+ { 9, 45227, "", "=q4=Iron-studded Mantle", "=ds=#s3#, #a3#", "", "22%" };
+ { 10, 45239, "", "=q4=Runeshaper's Gloves", "=ds=#s9#, #a3#", "", "20%" };
+ { 11, 45226, "", "=q4=Ancient Iron Heaume", "=ds=#s1#, #a4#", "", "20%" };
+ { 12, 45225, "", "=q4=Steelbreaker's Embrace", "=ds=#s5#, #a4#", "", "19%" };
+ { 13, 45228, "", "=q4=Handguards of the Enclave", "=ds=#s9#, #a4#", "", "21%" };
+ { 14, 45193, "", "=q4=Insurmountable Fervor", "=ds=#s2#", "", "19%" };
+ { 15, 45236, "", "=q4=Unblinking Eye", "=ds=#s2#", "", "19%" };
+ { 16, 45235, "", "=q4=Radiant Seal", "=ds=#s13#", "", "20%" };
+ { 17, 45233, "", "=q4=Rune Edge", "=ds=#h2#, #w10#", "", "20%" };
+ { 18, 45234, "", "=q4=Rapture", "=ds=#w9#", "", "19%" };
+ { 20, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 21, 45242, "", "=q4=Drape of Mortal Downfall", "=ds=#s4#", "", "21%" };
+ { 22, 45245, "", "=q4=Shoulderpads of the Intruder", "=ds=#s3#, #a2#", "", "14%" };
+ { 23, 45244, "", "=q4=Greaves of Swift Vengeance", "=ds=#s12#, #a3#", "", "9%" };
+ { 24, 45241, "", "=q4=Belt of Colossal Rage", "=ds=#s10#, #a4#", "", "15%" };
+ { 25, 45243, "", "=q4=Sapphire Amulet of Renewal", "=ds=#s2#", "", "10%" };
+ { 26, 45607, "", "=q4=Fang of Oblivion", "=ds=#h1#, #w4#", "", "18%" };
+ { 27, 45857, "", "=q4=Archivum Data Disc", "=ds=#m2#", "", "94%" };
+ };
+ {
+ Name = BabbleBoss["Kologarn"];
+ { 1, 45704, "", "=q4=Shawl of the Shattered Giant", "=ds=#s4#", "", "19%" };
+ { 2, 45701, "", "=q4=Greaves of the Earthbinder", "=ds=#s12#, #a3#", "", "21%" };
+ { 3, 45697, "", "=q4=Shoulderguards of the Solemn Watch", "=ds=#s3#, #a4#", "", "18%" };
+ { 4, 45698, "", "=q4=Sabatons of the Iron Watcher", "=ds=#s12#, #a4#", "", "18%" };
+ { 5, 45696, "", "=q4=Mark of the Unyielding", "=ds=#s2#", "", "19%" };
+ { 6, 45699, "", "=q4=Pendant of the Piercing Glare", "=ds=#s2#", "", "17%" };
+ { 7, 45702, "", "=q4=Emerald Signet Ring", "=ds=#s13#", "", "18%" };
+ { 8, 45703, "", "=q4=Spark of Hope", "=ds=#s14#", "", "17%" };
+ { 9, 45700, "", "=q4=Stoneguard", "=ds=#h1#, #w10#", "", "19%" };
+ { 10, 45695, "", "=q4=Spire of Withering Dreams", "=ds=#w9#", "", "21%" };
+ };
+ {
+ Name = BabbleBoss["Kologarn"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45272, "", "=q4=Robes of the Umbral Brute", "=ds=#s5#, #a1#", "", "20%" };
+ { 5, 45275, "", "=q4=Bracers of Unleashed Magic", "=ds=#s8#, #a1#", "", "18%" };
+ { 6, 45273, "", "=q4=Handwraps of Plentiful Recovery", "=ds=#s9#, #a1#", "", "18%" };
+ { 7, 45265, "", "=q4=Shoulderpads of the Monolith", "=ds=#s3#, #a2#", "", "16%" };
+ { 8, 45274, "", "=q4=Leggings of the Stoneweaver", "=ds=#s11#, #a3#", "", "14%" };
+ { 9, 45264, "", "=q4=Decimator's Armguards", "=ds=#s8#, #a4#", "", "16%" };
+ { 10, 45269, "", "=q4=Unfaltering Armguards", "=ds=#s8#, #a4#", "", "16%" };
+ { 11, 45268, "", "=q4=Gloves of the Pythonic Guardian", "=ds=#s9#, #a4#", "", "18%" };
+ { 12, 45267, "", "=q4=Saronite Plated Legguards", "=ds=#s11#, #a4#", "", "18%" };
+ { 13, 45262, "", "=q4=Necklace of Unerring Mettle", "=ds=#s2#", "", "18%" };
+ { 14, 45263, "", "=q4=Wrathstone", "=ds=#s14#", "", "18%" };
+ { 15, 45271, "", "=q4=Ironmender", "=ds=#s15#", "", "17%" };
+ { 16, 45270, "", "=q4=Idol of the Crying Wind", "=ds=#s16#, #w14#", "", "17%" };
+ { 17, 45266, "", "=q4=Malice", "=ds=#h1#, #w10#", "", "18%" };
+ { 18, 45261, "", "=q4=Giant's Bane", "=ds=#w5#", "", "16%" };
+ };
+ {
+ Name = BabbleBoss["Algalon the Observer"];
+ { 1, 46042, "", "=q4=Drape of the Messenger", "=ds=#s4#" };
+ { 2, 46045, "", "=q4=Pulsar Gloves", "=ds=#s9#, #a1#", "", "40%" };
+ { 3, 46050, "", "=q4=Starlight Treads", "=ds=#s12#, #a1#" };
+ { 4, 46043, "", "=q4=Gloves of the Endless Dark", "=ds=#s9#, #a2#" };
+ { 5, 46049, "", "=q4=Zodiac Leggings", "=ds=#s11#, #a2#" };
+ { 6, 46044, "", "=q4=Observer's Mantle", "=ds=#s3#, #a3#" };
+ { 7, 46037, "", "=q4=Shoulderplates of the Celestial Watch", "=ds=#s3#, #a4#" };
+ { 8, 46039, "", "=q4=Breastplate of the Timeless", "=ds=#s5#, #a4#" };
+ { 9, 46041, "", "=q4=Starfall Girdle", "=ds=#s10#, #a4#" };
+ { 10, 46047, "", "=q4=Pendant of the Somber Witness", "=ds=#s2#" };
+ { 11, 46040, "", "=q4=Strength of the Heavens", "=ds=#s2#", "", "40%" };
+ { 12, 46048, "", "=q4=Band of Lights", "=ds=#s13#" };
+ { 13, 46046, "", "=q4=Nebula Band", "=ds=#s13#" };
+ { 14, 46038, "", "=q4=Dark Matter", "=ds=#s14#" };
+ { 15, 46051, "", "=q4=Meteorite Crystal", "=ds=#s14#", "", "40%" };
+ { 16, 46052, "", "=q4=Reply-Code Alpha", "=ds=#m2#", "", "100%" };
+ { 17, 46320, "", "=q4=Drape of the Skyherald", "=q1=#m4#: =ds=#s4#" };
+ { 18, 46321, "", "=q4=Sunglimmer Drape", "=q1=#m4#: =ds=#s4#" };
+ { 19, 46322, "", "=q4=Brann's Sealing Ring", "=q1=#m4#: =ds=#s13#" };
+ { 20, 46323, "", "=q4=Starshine Signet", "=q1=#m4#: =ds=#s13#" };
+ };
+ {
+ Name = BabbleBoss["Algalon the Observer"];
+ { 1, 45665, "", "=q4=Pharos Gloves", "=ds=#s9#, #a1#", "", "40%" };
+ { 2, 45619, "", "=q4=Starwatcher's Binding", "=ds=#s10#, #a1#", "", "" };
+ { 3, 45611, "", "=q4=Solar Bindings", "=ds=#s8#, #a2#", "", "40%" };
+ { 4, 45616, "", "=q4=Star-beaded Clutch", "=ds=#s10#, #a2#" };
+ { 5, 45610, "", "=q4=Boundless Gaze", "=ds=#s1#, #a3#" };
+ { 6, 45615, "", "=q4=Planewalker Treads", "=ds=#s12#, #a3#" };
+ { 7, 45594, "", "=q4=Legplates of the Endless Void", "=ds=#s11#, #a4#", "", "20%" };
+ { 8, 45599, "", "=q4=Sabatons of Lifeless Night", "=ds=#s12#, #a4#" };
+ { 9, 45617, "", "=q4=Cosmos", "=ds=#s15#" };
+ { 10, 45620, "", "=q4=Starshard Edge", "=ds=#h3#, #w4#" };
+ { 11, 45607, "", "=q4=Fang of Oblivion", "=ds=#h1#, #w4#", "", "18%" };
+ { 12, 45612, "", "=q4=Constellus", "=ds=#h3#, #w6#", "", "11%" };
+ { 13, 45613, "", "=q4=Dreambinder", "=ds=#w9#", "", "1%" };
+ { 14, 45587, "", "=q4=Bulwark of Algalon", "=ds=#w8#" };
+ { 15, 45570, "", "=q4=Skyforge Crossbow", "=ds=#w3#", "", "1%" };
+ { 16, 45609, "", "=q4=Comet's Trail", "=ds=#s14#" };
+ { 18, 46053, "", "=q4=Reply-Code Alpha", "=ds=#m2#", "", "100%" };
+ { 19, 45588, "", "=q4=Drape of the Skyborn", "=q1=#m4#: =ds=#s4#" };
+ { 20, 45618, "", "=q4=Sunglimmer Cloak", "=q1=#m4#: =ds=#s4#" };
+ { 21, 45608, "", "=q4=Brann's Signet Ring", "=q1=#m4#: =ds=#s13#" };
+ { 22, 45614, "", "=q4=Starshine Circle", "=q1=#m4#: =ds=#s13#" };
+ };
+ {
+ Name = BabbleBoss["Auriaya"];
+ { 1, 45832, "", "=q4=Mantle of the Preserver", "=ds=#s3#, #a1#", "", "19%" };
+ { 2, 45865, "", "=q4=Raiments of the Corrupted", "=ds=#s5#, #a1#", "", "20%" };
+ { 3, 45864, "", "=q4=Cover of the Keepers", "=ds=#s1#, #a2#", "", "20%" };
+ { 4, 45709, "", "=q4=Nimble Climber's Belt", "=ds=#s10#, #a2#", "", "19%" };
+ { 5, 45711, "", "=q4=Ironaya's Discarded Mantle", "=ds=#s3#, #a3#", "", "19%" };
+ { 6, 45712, "", "=q4=Chestplate of Titanic Fury", "=ds=#s5#, #a4#", "", "20%" };
+ { 7, 45708, "", "=q4=Archaedas' Lost Legplates", "=ds=#s11#, #a4#", "", "20%" };
+ { 8, 45866, "", "=q4=Elemental Focus Stone", "=ds=#s14#", "", "19%" };
+ { 9, 45707, "", "=q4=Shieldwall of the Breaker", "=ds=#w8#", "", "19%" };
+ { 10, 45713, "", "=q4=Nurturing Touch", "=ds=#w12#", "", "21%" };
+ };
+ {
+ Name = BabbleBoss["Auriaya"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45319, "", "=q4=Cloak of the Makers", "=ds=#s4#", "", "19%" };
+ { 5, 45435, "", "=q4=Cowl of the Absolute", "=ds=#s1#, #a1#", "", "19%" };
+ { 6, 45441, "", "=q4=Sandals of the Ancient Keeper", "=ds=#s12#, #a1#", "", "20%" };
+ { 7, 45439, "", "=q4=Unwavering Stare", "=ds=#s1#, #a2#", "", "20%" };
+ { 8, 45325, "", "=q4=Gloves of the Stonereaper", "=ds=#s9#, #a2#", "", "20%" };
+ { 9, 45440, "", "=q4=Amice of the Stoic Watch", "=ds=#s3#, #a3#", "", "20%" };
+ { 10, 45320, "", "=q4=Shoulderplates of the Eternal", "=ds=#s3#, #a4#", "", "20%" };
+ { 11, 45334, "", "=q4=Unbreakable Chestguard", "=ds=#s5#, #a4#", "", "18%" };
+ { 12, 45434, "", "=q4=Greaves of the Rockmender", "=ds=#s12#, #a4#", "", "20%" };
+ { 13, 45326, "", "=q4=Platinum Band of the Aesir", "=ds=#s13#", "", "19%" };
+ { 14, 45438, "", "=q4=Ring of the Faithful Servant", "=ds=#s13#", "", "19%" };
+ { 15, 45436, "", "=q4=Libram of the Resolute", "=ds=#s16#, #w16#", "", "20%" };
+ { 16, 45437, "", "=q4=Runescribed Blade", "=ds=#h3#, #w10#", "", "20%" };
+ { 17, 45315, "", "=q4=Stonerender", "=ds=#h1#, #w6#", "", "19%" };
+ { 18, 45327, "", "=q4=Siren's Cry", "=ds=#w2#", "", "20%" };
+ };
+ {
+ Name = BabbleBoss["Hodir"];
+ { 1, 45873, "", "=q4=Winter's Frigid Embrace", "=ds=#s4#", "", "15%" };
+ { 2, 45464, "", "=q4=Cowl of Icy Breaths", "=ds=#s1#, #a1#", "", "20%" };
+ { 3, 45874, "", "=q4=Signet of Winter", "=ds=#s13#", "", "16%" };
+ { 4, 45458, "", "=q4=Stormedge", "=ds=#h2#, #w1#", "", "17%" };
+ { 5, 45872, "", "=q4=Avalanche", "=ds=#w2#", "", "22%" };
+ { 7, 45650, "", "=q4=Leggings of the Wayward Conqueror", "=ds=#e15#", "", "29%" };
+ { 8, 45651, "", "=q4=Leggings of the Wayward Protector", "=ds=#e15#", "", "29%" };
+ { 9, 45652, "", "=q4=Leggings of the Wayward Vanquisher", "=ds=#e15#", "", "34%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 45888, "", "=q4=Bitter Cold Armguards", "=ds=#s8#, #a4#", "", "18%" };
+ { 18, 45876, "", "=q4=Shiver", "=ds=#h1#, #w6#", "", "16%" };
+ { 19, 45886, "", "=q4=Icecore Staff", "=ds=#w9#", "", "20%" };
+ { 20, 45887, "", "=q4=Ice Layered Barrier", "=ds=#w8#", "", "18%" };
+ { 21, 45877, "", "=q4=The Boreal Guard", "=ds=#w8#", "", "17%" };
+ { 23, 45786, "", "=q1=Hodir's Sigil", "=ds=#m3#", "", "23%" };
+ };
+ {
+ Name = BabbleBoss["Hodir"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45453, "", "=q4=Winter's Icy Embrace", "=ds=#s5#, #a2#", "", "16%" };
+ { 5, 45454, "", "=q4=Frost-bound Chain Bracers", "=ds=#s8#, #a3#", "", "18%" };
+ { 6, 45452, "", "=q4=Frostplate Greaves", "=ds=#s11#, #a4#", "", "16%" };
+ { 7, 45451, "", "=q4=Frozen Loop", "=ds=#s13#", "", "15%" };
+ { 8, 45450, "", "=q4=Northern Barrier", "=ds=#w8#", "", "19%" };
+ { 10, 45632, "", "=q4=Breastplate of the Wayward Conqueror", "=ds=#e15#", "", "52%" };
+ { 11, 45633, "", "=q4=Breastplate of the Wayward Protector", "=ds=#e15#", "", "50%" };
+ { 12, 45634, "", "=q4=Breastplate of the Wayward Vanquisher", "=ds=#e15#", "", "71%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 45461, "", "=q4=Drape of Icy Intent", "=ds=#s4#", "", "19%" };
+ { 18, 45462, "", "=q4=Gloves of the Frozen Glade", "=ds=#s9#, #a2#", "", "10%" };
+ { 19, 45460, "", "=q4=Bindings of Winter Gale", "=ds=#s8#, #a3#", "", "12%" };
+ { 20, 45459, "", "=q4=Frigid Strength of Hodir", "=ds=#s2#", "", "13%" };
+ { 21, 45612, "", "=q4=Constellus", "=ds=#h3#, #w6#", "", "11%" };
+ { 22, 45457, "", "=q4=Staff of Endless Winter", "=ds=#w9#", "", "19%" };
+ { 24, 45815, "", "=q1=Hodir's Sigil", "=ds=#m3#", "", "21%" };
+ };
+ {
+ Name = BabbleBoss["Thorim"];
+ { 1, 45893, "", "=q4=Guise of the Midgard Serpent", "=ds=#s1#, #a2#", "", "19%" };
+ { 2, 45927, "", "=q4=Handwraps of Resonance", "=ds=#s9#, #a1#", "", "17%" };
+ { 3, 45894, "", "=q4=Leggings of Unstable Discharge", "=ds=#s11#, #a1#", "", "17%" };
+ { 4, 45895, "", "=q4=Belt of the Blood Pit", "=ds=#s10#, #a3#", "", "18%" };
+ { 5, 45892, "", "=q4=Legacy of Thunder", "=ds=#h1# #w6#", "", "18%" };
+ { 7, 45659, "", "=q4=Spaulders of the Wayward Conqueror", "=ds=#e15#", "", "25%" };
+ { 8, 45660, "", "=q4=Spaulders of the Wayward Protector", "=ds=#e15#", "", "28%" };
+ { 9, 45661, "", "=q4=Spaulders of the Wayward Vanquisher", "=ds=#e15#", "", "34%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 45928, "", "=q4=Gauntlets of the Thunder God", "=ds=#s9#, #a4#", "", "5%" };
+ { 18, 45933, "", "=q4=Pendant of the Shallow Grave", "=ds=#s2#", "", "4%" };
+ { 19, 45931, "", "=q4=Mjolnir Runestone", "=ds=#s14#", "", "5%" };
+ { 20, 45929, "", "=q4=Sif's Remembrance", "=ds=#s14#", "", "4%" };
+ { 21, 45930, "", "=q4=Combatant's Bootblade", "=ds=#h1# #w4#", "", "5%" };
+ { 23, 45784, "", "=q1=Thorim's Sigil", "=ds=#m3#", "", "5%" };
+ };
+ {
+ Name = BabbleBoss["Thorim"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45468, "", "=q4=Leggings of Lost Love", "=ds=#s11#, #a1#", "", "17%" };
+ { 5, 45467, "", "=q4=Belt of the Betrayed", "=ds=#s10#, #a3#", "", "17%" };
+ { 6, 45469, "", "=q4=Sif's Promise", "=ds=#s13#", "", "14%" };
+ { 7, 45466, "", "=q4=Scale of Fates", "=ds=#s14#", "", "17%" };
+ { 8, 45463, "", "=q4=Vulmir, the Northern Tempest", "=ds=#h1# #w6#", "", "18%" };
+ { 10, 45638, "", "=q4=Crown of the Wayward Conqueror", "=ds=#e15#", "", "50%" };
+ { 11, 45639, "", "=q4=Crown of the Wayward Protector", "=ds=#e15#", "", "57%" };
+ { 12, 45640, "", "=q4=Crown of the Wayward Vanquisher", "=ds=#e15#", "", "71%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 45473, "", "=q4=Embrace of the Gladiator", "=ds=#s5#, #a2#", "", "2%" };
+ { 18, 45474, "", "=q4=Pauldrons of the Combatant", "=ds=#s3#, #a3#", "", "2%" };
+ { 19, 45472, "", "=q4=Warhelm of the Champion", "=ds=#s1#, #a4#", "", "1%" };
+ { 20, 45471, "", "=q4=Fate's Clutch", "=ds=#s13#", "", "1%" };
+ { 21, 45570, "", "=q4=Skyforge Crossbow", "=ds=#w3#", "", "1%" };
+ { 22, 45470, "", "=q4=Wisdom's Hold", "=ds=#w8#", "", "2%" };
+ { 24, 45817, "", "=q1=Thorim's Sigil", "=ds=#m3#", "", "3%" };
+ };
+ {
+ Name = BabbleBoss["Freya"];
+ { 1, 45940, "", "=q4=Tunic of the Limber Stalker", "=ds=#s5#, #a2#", "", "15%" };
+ { 2, 45941, "", "=q4=Chestguard of the Lasher", "=ds=#s5#, #a3#", "", "15%" };
+ { 3, 45935, "", "=q4=Ironbark Faceguard", "=ds=#s1#, #a4#", "", "17%" };
+ { 4, 45936, "", "=q4=Legplates of Flourishing Resolve", "=ds=#s11#, #a4#", "", "15%" };
+ { 5, 45934, "", "=q4=Unraveling Reach", "=ds=#w9#", "", "18%" };
+ { 7, 45644, "", "=q4=Gloves of the Wayward Conqueror", "=ds=#e15#", "", "25%" };
+ { 8, 45645, "", "=q4=Gloves of the Wayward Protector", "=ds=#e15#", "", "23%" };
+ { 9, 45646, "", "=q4=Gloves of the Wayward Vanquisher", "=ds=#e15#", "", "30%" };
+ { 11, 46110, "", "=q3=Alchemist's Cache", "=ds=#p1# (425)", "", "66%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 45943, "", "=q4=Gloves of Whispering Winds", "=ds=#s9#, #a3#", "", "2%" };
+ { 18, 45945, "", "=q4=Seed of Budding Carnage", "=ds=#s2#", "", "2%" };
+ { 19, 45946, "", "=q4=Fire Orchid Signet", "=ds=#s13#", "", "2%" };
+ { 20, 45947, "", "=q4=Serilas, Blood Blade of Invar One-Arm", "=ds=#h1# #w10#", "", "2%" };
+ { 21, 45294, "", "=q4=Petrified Ivy Sprig", "=ds=#w12#", "", "1%" };
+ { 23, 45788, "", "=q1=Freya's Sigil", "=ds=#m3#", "", "4%" };
+ };
+ {
+ Name = BabbleBoss["Freya"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45483, "", "=q4=Boots of the Servant", "=ds=#s12#, #a1#", "", "15%" };
+ { 5, 45482, "", "=q4=Leggings of the Lifetender", "=ds=#s11#, #a2#", "", "17%" };
+ { 6, 45481, "", "=q4=Gauntlets of Ruthless Reprisal", "=ds=#s9#, #a4#", "", "16%" };
+ { 7, 45480, "", "=q4=Nymph Heart Charm", "=ds=#s2#", "", "13%" };
+ { 8, 45479, "", "=q4=The Lifebinder", "=ds=#w9#", "", "19%" };
+ { 10, 45653, "", "=q4=Legplates of the Wayward Conqueror", "=ds=#e15#", "", "43%" };
+ { 11, 45654, "", "=q4=Legplates of the Wayward Protector", "=ds=#e15#", "", "52%" };
+ { 12, 45655, "", "=q4=Legplates of the Wayward Vanquisher", "=ds=#e15#", "", "69%" };
+ { 14, 46110, "", "=q3=Alchemist's Cache", "=ds=#p1# (425)", "", "66%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 45486, "", "=q4=Drape of the Sullen Goddess", "=ds=#s4#" };
+ { 18, 45488, "", "=q4=Leggings of the Enslaved Idol", "=ds=#s11#, #a1#", "", "0.13%" };
+ { 19, 45487, "", "=q4=Handguards of Revitalization", "=ds=#s9#, #a4#", "", "0.34%" };
+ { 20, 45485, "", "=q4=Bronze Pendant of the Vanir", "=ds=#s2#" };
+ { 21, 45484, "", "=q4=Bladetwister", "=ds=#h1#, #w4#", "", "0.27%" };
+ { 22, 45613, "", "=q4=Dreambinder", "=ds=#w9#", "", "1%" };
+ { 24, 45814, "", "=q1=Freya's Sigil", "=ds=#m3#", "", "0.27%" };
+ };
+ {
+ Name = BabbleBoss["Mimiron"];
+ { 1, 45973, "", "=q4=Stylish Power Cape", "=ds=#s4#", "", "19%" };
+ { 2, 45976, "", "=q4=Static Charge Handwraps", "=ds=#s9#, #a1#", "", "20%" };
+ { 3, 45974, "", "=q4=Shoulderguards of Assimilation", "=ds=#s3#, #a2#", "", "75%" };
+ { 4, 45975, "", "=q4=Cable of the Metrognome", "=ds=#s10#, #a4#", "", "11%" };
+ { 5, 45972, "", "=q4=Pulse Baton", "=ds=#h3#, #w6#", "", "0.13%" };
+ { 7, 45647, "", "=q4=Helm of the Wayward Conqueror", "=ds=#e15#", "", "28%" };
+ { 8, 45648, "", "=q4=Helm of the Wayward Protector", "=ds=#e15#", "", "75%" };
+ { 9, 45649, "", "=q4=Helm of the Wayward Vanquisher", "=ds=#e15#", "", "37%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 45993, "", "=q4=Mimiron's Flight Goggles", "=ds=#s1#, #a2#", "", "1%" };
+ { 18, 45989, "", "=q4=Tempered Mercury Greaves", "=ds=#s12#, #a3#", "", "0.34%" };
+ { 19, 45982, "", "=q4=Fused Alloy Legplates", "=ds=#s11#, #a4#", "", "0.34%" };
+ { 20, 45988, "", "=q4=Greaves of the Iron Army", "=ds=#s12#, #a4#" };
+ { 21, 45990, "", "=q4=Fusion Blade", "=ds=#h1#, #w10#", "", "0.13%" };
+ { 23, 45787, "", "=q1=Mimiron's Sigil", "=ds=#m3#", "", "2%" };
+ };
+ {
+ Name = BabbleBoss["Mimiron"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45493, "", "=q4=Asimov's Drape", "=ds=#s4#", "", "11%" };
+ { 5, 45492, "", "=q4=Malleable Steelweave Mantle", "=ds=#s3#, #a2#", "", "25%" };
+ { 6, 45491, "", "=q4=Waistguard of the Creator", "=ds=#s10#, #a2#", "", "17%" };
+ { 7, 45490, "", "=q4=Pandora's Plea", "=ds=#s14#", "", "17%" };
+ { 8, 45489, "", "=q4=Insanity's Grip", "=ds=#h3#, #w13#", "", "15%" };
+ { 10, 45641, "", "=q4=Gauntlets of the Wayward Conqueror", "=ds=#e15#", "", "45%" };
+ { 11, 45642, "", "=q4=Gauntlets of the Wayward Protector", "=ds=#e15#", "", "50%" };
+ { 12, 45643, "", "=q4=Gauntlets of the Wayward Vanquisher", "=ds=#e15#", "", "68%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 45496, "", "=q4=Titanskin Cloak", "=ds=#s4#", "", "0.33%" };
+ { 18, 45497, "", "=q4=Crown of Luminescence", "=ds=#s1#, #a1#" };
+ { 19, 45663, "", "=q4=Armbands of Bedlam", "=ds=#s8#, #a4#" };
+ { 20, 45495, "", "=q4=Conductive Seal", "=ds=#s13#" };
+ { 21, 45494, "", "=q4=Delirium's Touch", "=ds=#h4#, #w13#" };
+ { 22, 45620, "", "=q4=Starshard Edge", "=ds=#h3#, #w4#" };
+ { 24, 45816, "", "=q1=Mimiron's Sigil", "=ds=#m3#", "", "0.16%" };
+ };
+ {
+ Name = BabbleBoss["General Vezax"];
+ { 1, 46014, "", "=q4=Saronite Animus Cloak", "=ds=#s4#", "", "22%" };
+ { 2, 46013, "", "=q4=Underworld Mantle", "=ds=#s3#, #a1#", "", "20%" };
+ { 3, 46012, "", "=q4=Vestments of the Piercing Light", "=ds=#s5#, #a1#", "", "20%" };
+ { 4, 46009, "", "=q4=Bindings of the Depths", "=ds=#s8#, #a2#", "", "17%" };
+ { 5, 46346, "", "=q4=Boots of Unsettled Prey", "=ds=#s12#, #a3#", "", "6%" };
+ { 6, 45997, "", "=q4=Gauntlets of the Wretched", "=ds=#s9#, #a4#", "", "17%" };
+ { 7, 46008, "", "=q4=Choker of the Abyss", "=ds=#s2#", "", "18%" };
+ { 8, 46015, "", "=q4=Pendant of Endless Despair", "=ds=#s2#", "", "18%" };
+ { 9, 46010, "", "=q4=Darkstone Ring", "=ds=#s13#", "", "21%" };
+ { 10, 46011, "", "=q4=Shadowbite", "=ds=#h1#, #w4#", "", "19%" };
+ { 11, 45996, "", "=q4=Hoperender", "=ds=#w7#", "", "22%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 46032, "", "=q4=Drape of the Faceless General", "=ds=#s4#", "", "2%" };
+ { 18, 46034, "", "=q4=Leggings of Profound Darkness", "=ds=#s11#, #a1#", "", "3%" };
+ { 19, 46036, "", "=q4=Void Sabre", "=ds=#h1#, #w10#", "", "2%" };
+ { 20, 46035, "", "=q4=Aesuga, Hand of the Ardent Champion", "=ds=#h1#, #w6#", "", "3%" };
+ { 21, 46033, "", "=q4=Tortured Earth", "=ds=#w9#", "", "4%" };
+ };
+ {
+ Name = BabbleBoss["General Vezax"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45514, "", "=q4=Mantle of the Unknowing", "=ds=#s3#, #a1#", "", "20%" };
+ { 5, 45508, "", "=q4=Belt of the Darkspeaker", "=ds=#s10#, #a1#", "", "21%" };
+ { 6, 45512, "", "=q4=Grips of the Unbroken", "=ds=#s9#, #a2#", "", "19%" };
+ { 7, 45504, "", "=q4=Darkcore Leggings", "=ds=#s11#, #a3#", "", "18%" };
+ { 8, 45513, "", "=q4=Boots of the Forgotten Depths", "=ds=#s12#, #a3#", "", "18%" };
+ { 9, 45502, "", "=q4=Helm of the Faceless", "=ds=#s1#, #a4#", "", "19%" };
+ { 10, 45505, "", "=q4=Belt of Clinging Hope", "=ds=#s10#, #a4#", "", "19%" };
+ { 11, 45501, "", "=q4=Boots of the Underdweller", "=ds=#s12#, #a4#", "", "17%" };
+ { 12, 45503, "", "=q4=Metallic Loop of the Sufferer", "=ds=#s13#", "", "20%" };
+ { 13, 45515, "", "=q4=Ring of the Vacant Eye", "=ds=#s13#", "", "21%" };
+ { 14, 45507, "", "=q4=The General's Heart", "=ds=#s14#", "", "20%" };
+ { 15, 45509, "", "=q4=Idol of the Corruptor", "=ds=#s16#, #w14#", "", "17%" };
+ { 16, 45145, "", "=q4=Libram of the Sacred Shield", "=ds=#s16#, #w16#", "", "19%" };
+ { 17, 45498, "", "=q4=Lotrafen, Spear of the Damned", "=ds=#w7#", "", "20%" };
+ { 18, 45511, "", "=q4=Scepter of Lost Souls", "=ds=#w12#", "", "19%" };
+ { 20, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 21, 45520, "", "=q4=Handwraps of the Vigilant", "=ds=#s9#, #a1#", "", "0.32%" };
+ { 22, 45519, "", "=q4=Vestments of the Blind Denizen", "=ds=#s5#, #a2#", "", "0.32%" };
+ { 23, 45517, "", "=q4=Pendulum of Infinity", "=ds=#s2#", "", "0.36%" };
+ { 24, 45518, "", "=q4=Flare of the Heavens", "=ds=#s14#" };
+ { 25, 45516, "", "=q4=Voldrethar, Dark Blade of Oblivion", "=ds=#h2#, #w10#" };
+ };
+ {
+ Name = BabbleBoss["Yogg-Saron"];
+ { 1, 46030, "", "=q4=Treads of the Dragon Council", "=ds=#s12#, #a1#", "", "17%" };
+ { 2, 46019, "", "=q4=Leggings of the Insatiable", "=ds=#s11#, #a3#", "", "12%" };
+ { 3, 46028, "", "=q4=Faceguard of the Eyeless Horror", "=ds=#s1#, #a4#", "", "17%" };
+ { 4, 46022, "", "=q4=Pendant of a Thousand Maws", "=ds=#s2#", "", "8%" };
+ { 5, 46021, "", "=q4=Royal Seal of King Llane", "=ds=#s14#", "", "12%" };
+ { 6, 46024, "", "=q4=Kingsbane", "=ds=#h1#, #w4#", "", "10%" };
+ { 7, 46016, "", "=q4=Abaddon", "=ds=#h2#, #w10#", "", "17%" };
+ { 8, 46031, "", "=q4=Touch of Madness", "=ds=#h1#, #w1#", "", "25%" };
+ { 9, 46025, "", "=q4=Devotion", "=ds=#w9#", "", "23%" };
+ { 10, 46018, "", "=q4=Deliverance", "=ds=#w3#", "", "35%" };
+ { 12, 45635, "", "=q4=Chestguard of the Wayward Conqueror", "=ds=#e15#", "", "52%" };
+ { 13, 45636, "", "=q4=Chestguard of the Wayward Protector", "=ds=#e15#", "", "50%" };
+ { 14, 45637, "", "=q4=Chestguard of the Wayward Vanquisher", "=ds=#e15#", "", "27%" };
+ { 16, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 17, 46068, "", "=q4=Amice of Inconceivable Horror", "=ds=#s3#, #a1#" };
+ { 18, 46095, "", "=q4=Soul-Devouring Cinch", "=ds=#s10#, #a2#" };
+ { 19, 46096, "", "=q4=Signet of Soft Lament", "=ds=#s13#" };
+ { 20, 46097, "", "=q4=Caress of Insanity", "=ds=#h1#, #w6#" };
+ { 21, 46067, "", "=q4=Hammer of Crushing Whispers", "=ds=#h2#, #w6#" };
+ { 23, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["Alone in the Darkness"] };
+ { 24, 46312, "", "=q4=Vanquished Clutches of Yogg-Saron", "=ds=#s14#", "", "100%" };
+ };
+ {
+ Name = BabbleBoss["Yogg-Saron"];
+ { 1, 45038, "", "=q5=Fragment of Val'anyr", "=ds=#m3#", "", "40%" };
+ { 2, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=q1=#m4#: =ds=#h1#, #w6#" };
+ { 4, 45529, "", "=q4=Shawl of Haunted Memories", "=ds=#s4#", "", "25%" };
+ { 5, 45532, "", "=q4=Cowl of Dark Whispers", "=ds=#s1#, #a1#", "", "17%" };
+ { 6, 45523, "", "=q4=Garona's Guise", "=ds=#s1#, #a2#", "", "18%" };
+ { 7, 45524, "", "=q4=Chestguard of Insidious Intent", "=ds=#s5#, #a3#", "", "13%" };
+ { 8, 45531, "", "=q4=Chestguard of the Fallen God", "=ds=#s5#, #a3#", "", "16%" };
+ { 9, 45525, "", "=q4=Godbane Signet", "=ds=#s13#", "", "11%" };
+ { 10, 45530, "", "=q4=Sanity's Bond", "=ds=#s13#", "", "18%" };
+ { 11, 45522, "", "=q4=Blood of the Old God", "=ds=#s14#", "", "20%" };
+ { 12, 45527, "", "=q4=Soulscribe", "=ds=#h3#, #w4#", "", "9%" };
+ { 13, 45521, "", "=q4=Earthshaper", "=ds=#h2#, #w6#", "", "15%" };
+ { 16, 45656, "", "=q4=Mantle of the Wayward Conqueror", "=ds=#e15#", "", "59%" };
+ { 17, 45657, "", "=q4=Mantle of the Wayward Protector", "=ds=#e15#", "", "54%" };
+ { 18, 45658, "", "=q4=Mantle of the Wayward Vanquisher", "=ds=#e15#", "", "66%" };
+ { 20, 0, "INV_Box_01", "=q6=#j53#", "" };
+ { 21, 45537, "", "=q4=Treads of the False Oracle", "=ds=#s12#, #a1#", "", "1%" };
+ { 22, 45536, "", "=q4=Legguards of Cunning Deception", "=ds=#s11#, #a2#", "", "1%" };
+ { 23, 45534, "", "=q4=Seal of the Betrayed King", "=ds=#s13#" };
+ { 24, 45535, "", "=q4=Show of Faith", "=ds=#s14#" };
+ { 25, 45533, "", "=q4=Dark Edge of Depravity", "=ds=#h2#, #w1#", "", "1%" };
+ { 27, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["Alone in the Darkness"] };
+ { 28, 45693, "", "=q4=Mimiron's Head", "=ds=#e12#", "", "100%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 46341, "", "=q4=Drape of the Spellweaver", "=ds=#s4#", "", "2%" };
+ { 2, 46347, "", "=q4=Cloak of the Dormant Blaze", "=ds=#s4#", "", "2%" };
+ { 3, 46344, "", "=q4=Iceshear Mantle", "=ds=#s3#, #a1#", "", "2%" };
+ { 4, 46346, "", "=q4=Boots of Unsettled Prey", "=ds=#s12#, #a3#", "", "6%" };
+ { 5, 46345, "", "=q4=Bracers of Righteous Reformation", "=ds=#s8#, #a4#", "", "2%" };
+ { 6, 46340, "", "=q4=Adamant Handguards", "=ds=#s9#, #a4#", "", "2%" };
+ { 7, 46343, "", "=q4=Fervor of the Protectorate", "=ds=#s2#", "", "2%" };
+ { 8, 46339, "", "=q4=Mimiron's Repeater", "=ds=#w5#", "", "2%" };
+ { 9, 46351, "", "=q4=Bloodcrush Cudgel", "=ds=#h1# #w6#", "", "2%" };
+ { 10, 46350, "", "=q4=Pillar of Fortitude", "=ds=#w9#", "", "2%" };
+ { 11, 46342, "", "=q4=Golemheart Longbow", "=ds=#w2#", "", "2%" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 45541, "", "=q4=Shroud of Alteration", "=ds=#s4#", "", "2%" };
+ { 2, 45549, "", "=q4=Grips of Chaos", "=ds=#s8#, #a1#", "", "3%" };
+ { 3, 45547, "", "=q4=Relic Hunter's Cord", "=ds=#s10#, #a2#", "", "3%" };
+ { 4, 45548, "", "=q4=Belt of the Sleeper", "=ds=#s10#, #a2#", "", "2%" };
+ { 5, 45543, "", "=q4=Shoulders of Misfortune", "=ds=#s3#, #a3#", "", "2%" };
+ { 6, 45544, "", "=q4=Leggings of the Tortured Earth", "=ds=#s11#, #a3#", "", "2%" };
+ { 7, 45542, "", "=q4=Greaves of the Stonewarder", "=ds=#s12#, #a4#", "", "2%" };
+ { 8, 45540, "", "=q4=Bladebearer's Signet", "=ds=#s13#", "", "2%" };
+ { 9, 45539, "", "=q4=Pendant of Focused Energies", "=ds=#s2#", "", "6%" };
+ { 10, 45538, "", "=q4=Titanstone Pendant", "=ds=#s2#", "", "3%" };
+ { 11, 46138, "", "=q4=Idol of the Flourishing Life", "=ds=#s16#, #w14#", "", "6%" };
+ { 12, 45605, "", "=q4=Daschal's Bite", "=ds=#h1# #w4#", "", "2%" };
+ };
+ {
+ Name = AL["Ulduar Formula/Patterns/Plans"];
+ { 1, 45089, "", "=q4=Plans: Battlelord's Plate Boots", "=ds=#p2# (450)" };
+ { 2, 45088, "", "=q4=Plans: Belt of the Titans", "=ds=#p2# (450)" };
+ { 3, 45092, "", "=q4=Plans: Indestructible Plate Girdle", "=ds=#p2# (450)" };
+ { 4, 45090, "", "=q4=Plans: Plate Girdle of Righteousness", "=ds=#p2# (450)" };
+ { 5, 45093, "", "=q4=Plans: Spiked Deathdealers", "=ds=#p2# (450)" };
+ { 6, 46027, "", "=q4=Formula: Enchant Weapon - Blade Ward", "=ds=#p4# (450)" };
+ { 7, 46348, "", "=q4=Formula: Enchant Weapon - Blood Draining", "=ds=#p4# (450)" };
+ { 8, 45100, "", "=q4=Pattern: Belt of Arctic Life", "=ds=#p7# (450)" };
+ { 9, 45094, "", "=q4=Pattern: Belt of Dragons", "=ds=#p7# (450)" };
+ { 10, 45096, "", "=q4=Pattern: Blue Belt of Chaos", "=ds=#p7# (450)" };
+ { 11, 45095, "", "=q4=Pattern: Boots of Living Scale", "=ds=#p7# (450)" };
+ { 12, 45101, "", "=q4=Pattern: Boots of Wintry Endurance", "=ds=#p7# (450)" };
+ { 13, 45098, "", "=q4=Pattern: Death-warmed Belt", "=ds=#p7# (450)" };
+ { 14, 45099, "", "=q4=Pattern: Footpads of Silence", "=ds=#p7# (450)" };
+ { 15, 45097, "", "=q4=Pattern: Lightning Grounded Boots", "=ds=#p7# (450)" };
+ { 16, 45104, "", "=q4=Pattern: Cord of the White Dawn", "=ds=#p8# (450)" };
+ { 17, 45102, "", "=q4=Pattern: Sash of Ancient Power", "=ds=#p8# (450)" };
+ { 18, 45105, "", "=q4=Pattern: Savior's Slippers", "=ds=#p8# (450)" };
+ { 19, 45103, "", "=q4=Pattern: Spellslinger's Slippers", "=ds=#p8# (450)" };
+ { 30, 45087, "", "=q3=Runed Orb", "=ds=#e8#" };
+ };
+};
+-----------------------------
+--- Trial of the Crusader ---
+-----------------------------
+
+AtlasLoot_Data["TrialoftheCrusader"] = {
+ Name = BabbleZone["Trial of the Crusader"];
+ Type = "WrathRaid";
+ {
+ Name = BabbleBoss["The Beasts of Northrend"];
+ { 1, 47617, "", "=q4=Icehowl Cinch", "=ds=#s10#, #a1#" };
+ { 2, 47613, "", "=q4=Shoulderpads of the Glacial Wilds", "=ds=#s3#, #a2#" };
+ { 3, 47608, "", "=q4=Acidmaw Boots", "=ds=#s12#, #a2#" };
+ { 4, 47616, "", "=q4=Shoulderguards of the Spirit Walker", "=ds=#s3#, #a3#" };
+ { 5, 47610, "", "=q4=Armbands of the Northern Stalker", "=ds=#s8#, #a3#" };
+ { 6, 47611, "", "=q4=Dreadscale Armguards", "=ds=#s8#, #a4#" };
+ { 7, 47609, "", "=q4=Gauntlets of Rising Anger", "=ds=#s9#, #a4#" };
+ { 8, 47615, "", "=q4=Belt of the Frozen Reach", "=ds=#s10#, #a4#" };
+ { 9, 47614, "", "=q4=Girdle of the Impaler", "=ds=#s10#, #a4#" };
+ { 16, 47607, "", "=q4=Collar of Ceaseless Torment", "=ds=#s2#" };
+ { 17, 47578, "", "=q4=Carnivorous Band", "=ds=#s13#" };
+ { 19, 47612, "", "=q4=Rod of Imprisoned Souls", "=ds=#w12#" };
+ };
+ {
+ Name = BabbleBoss["The Beasts of Northrend"];
+ { 1, 47855, "", "=q4=Icehowl Binding", "=ds=#s10#, #a1#" };
+ { 2, 47857, "", "=q4=Pauldrons of the Glacial Wilds", "=ds=#s3#, #a2#" };
+ { 3, 47853, "", "=q4=Acidmaw Treads", "=ds=#s12#, #a2#" };
+ { 4, 47860, "", "=q4=Pauldrons of the Spirit Walker", "=ds=#s3#, #a3#" };
+ { 5, 47850, "", "=q4=Bracers of the Northern Stalker", "=ds=#s8#, #a3#" };
+ { 6, 47852, "", "=q4=Dreadscale Bracers", "=ds=#s8#, #a4#" };
+ { 7, 47851, "", "=q4=Gauntlets of Mounting Anger", "=ds=#s9#, #a4#" };
+ { 8, 47859, "", "=q4=Belt of the Impaler", "=ds=#s10#, #a4#" };
+ { 9, 47858, "", "=q4=Girdle of the Frozen Reach", "=ds=#s10#, #a4#" };
+ { 16, 47849, "", "=q4=Collar of Unending Torment", "=ds=#s2#" };
+ { 17, 47854, "", "=q4=Gormok's Band", "=ds=#s13#" };
+ { 19, 47856, "", "=q4=Scepter of Imprisoned Souls", "=ds=#w12#" };
+ };
+ {
+ Name = BabbleBoss["The Beasts of Northrend"];
+ { 1, 46970, "", "=q4=Drape of the Untamed Predator", "=ds=#s4#" };
+ { 2, 46976, "", "=q4=Shawl of the Refreshing Winds", "=ds=#s4#" };
+ { 3, 46992, "", "=q4=Flowing Vestments of Ascent", "=ds=#s5#, #a1#" };
+ { 4, 46972, "", "=q4=Cord of the Tenebrous Mist", "=ds=#s10#, #a1#" };
+ { 5, 46974, "", "=q4=Leggings of the Broken Beast", "=ds=#s11#, #a2#" };
+ { 6, 46988, "", "=q4=Boots of the Unrelenting Storm", "=ds=#s12#, #a2#" };
+ { 7, 46960, "", "=q4=Breastplate of Cruel Intent", "=ds=#s5#, #a3#" };
+ { 8, 46990, "", "=q4=Belt of the Ice Burrower", "=ds=#s10#, #a3#" };
+ { 9, 46962, "", "=q4=Chestplate of the Towering Monstrosity", "=ds=#s5#, #a4#" };
+ { 10, 46961, "", "=q4=Boneshatter Armplates", "=ds=#s8#, #a4#" };
+ { 11, 46985, "", "=q4=Boots of the Courageous", "=ds=#s12#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 46959, "", "=q4=Band of the Violent Temperment", "=ds=#s13#" };
+ { 20, 46979, "", "=q4=Blade of Tarasque", "=ds=#h3#, #w4#" };
+ { 21, 46958, "", "=q4=Steel Bladebreaker", "=ds=#h1#, #w4#" };
+ { 22, 46963, "", "=q4=Crystal Plated Vanguard", "=ds=#w8#" };
+ };
+ {
+ Name = BabbleBoss["The Beasts of Northrend"];
+ { 1, 47257, "", "=q4=Cloak of the Untamed Predator", "=ds=#s4#" };
+ { 2, 47256, "", "=q4=Drape of the Refreshing Winds", "=ds=#s4#" };
+ { 3, 47264, "", "=q4=Flowing Robes of Ascent", "=ds=#s5#, #a1#" };
+ { 4, 47258, "", "=q4=Belt of the Tenebrous Mist", "=ds=#s10#, #a1#" };
+ { 5, 47259, "", "=q4=Legwraps of the Broken Beast", "=ds=#s11#, #a2#" };
+ { 6, 47262, "", "=q4=Boots of the Harsh Winter", "=ds=#s12#, #a2#" };
+ { 7, 47251, "", "=q4=Cuirass of Cruel Intent", "=ds=#s5#, #a3#" };
+ { 8, 47265, "", "=q4=Binding of the Ice Burrower", "=ds=#s10#, #a3#" };
+ { 9, 47254, "", "=q4=Hauberk of the Towering Monstrosity", "=ds=#s5#, #a4#" };
+ { 10, 47253, "", "=q4=Boneshatter Vambraces", "=ds=#s8#, #a4#" };
+ { 11, 47263, "", "=q4=Sabatons of the Courageous", "=ds=#s12#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47252, "", "=q4=Ring of the Violent Temperament", "=ds=#s13#" };
+ { 20, 47261, "", "=q4=Barb of Tarasque", "=ds=#h3#, #w4#" };
+ { 21, 47255, "", "=q4=Stygian Bladebreaker", "=ds=#h1#, #w4#" };
+ { 22, 47260, "", "=q4=Forlorn Barrier", "=ds=#w8#" };
+ };
+ {
+ Name = BabbleBoss["Lord Jaraxxus"];
+ { 1, 47663, "", "=q4=Felspark Bindings", "=ds=#s8#, #a1#" };
+ { 2, 47620, "", "=q4=Leggings of the Demonic Messenger", "=ds=#s11#, #a1#" };
+ { 3, 47669, "", "=q4=Belt of the Winter Solstice", "=ds=#s10#, #a2#" };
+ { 4, 47621, "", "=q4=Girdle of the Farseer", "=ds=#s10#, #a3#" };
+ { 5, 49235, "", "=q4=Boots of Tortured Space", "=ds=#s12#, #a3#" };
+ { 6, 47683, "", "=q4=Sentinel Scouting Greaves", "=ds=#s12#, #a3#" };
+ { 7, 47680, "", "=q4=Armguards of the Nether Lord", "=ds=#s8#, #a4#" };
+ { 8, 47711, "", "=q4=Girdle of the Nether Champion", "=ds=#s10#, #a4#" };
+ { 16, 47619, "", "=q4=Amulet of Binding Elements", "=ds=#s2#" };
+ { 17, 47679, "", "=q4=Endurance of the Infernal", "=ds=#s2#" };
+ { 18, 47618, "", "=q4=Firestorm Ring", "=ds=#s13#" };
+ { 19, 47703, "", "=q4=Planestalker Signet", "=ds=#s13#" };
+ { 21, 47676, "", "=q4=Dirk of the Night Watch", "=ds=#h1#, #w4#" };
+ };
+ {
+ Name = BabbleBoss["Lord Jaraxxus"];
+ { 1, 47861, "", "=q4=Felspark Bracers", "=ds=#s8#, #a1#" };
+ { 2, 47865, "", "=q4=Legwraps of the Demonic Messenger", "=ds=#s11#, #a1#" };
+ { 3, 47863, "", "=q4=Belt of the Bloodhoof Emissary", "=ds=#s10#, #a2#" };
+ { 4, 47866, "", "=q4=Darkspear Ritual Binding", "=ds=#s10#, #a3#" };
+ { 5, 49236, "", "=q4=Sabatons of Tortured Space", "=ds=#s12#, #a3#" };
+ { 6, 47867, "", "=q4=Warsong Poacher's Greaves", "=ds=#s12#, #a3#" };
+ { 7, 47869, "", "=q4=Armplates of the Nether Lord", "=ds=#s8#, #a4#" };
+ { 8, 47870, "", "=q4=Belt of the Nether Champion", "=ds=#s10#, #a4#" };
+ { 16, 47872, "", "=q4=Fortitude of the Infernal", "=ds=#s2#" };
+ { 17, 47864, "", "=q4=Pendant of Binding Elements", "=ds=#s2#" };
+ { 18, 47862, "", "=q4=Firestorm Band", "=ds=#s13#" };
+ { 19, 47868, "", "=q4=Planestalker Band", "=ds=#s13#" };
+ { 21, 47871, "", "=q4=Orcish Deathblade", "=ds=#h1#, #w4#" };
+ };
+ {
+ Name = BabbleBoss["Lord Jaraxxus"];
+ { 1, 47042, "", "=q4=Pride of the Eredar", "=ds=#s4#" };
+ { 2, 47051, "", "=q4=Leggings of the Soothing Touch", "=ds=#s11#, #a1#" };
+ { 3, 47000, "", "=q4=Cuirass of Calamitous Fate", "=ds=#s5#, #a2#" };
+ { 4, 47055, "", "=q4=Bracers of the Autumn Willow", "=ds=#s8#, #a2#" };
+ { 5, 47056, "", "=q4=Bracers of Cloudy Omen", "=ds=#s8#, #a3#" };
+ { 6, 46999, "", "=q4=Bloodbath Belt", "=ds=#s10#, #a4#" };
+ { 7, 47057, "", "=q4=Legplates of Failing Light", "=ds=#s11#, #a4#" };
+ { 8, 47052, "", "=q4=Legguards of Feverish Dedication", "=ds=#s11#, #a4#" };
+ { 9, 46997, "", "=q4=Dawnbreaker Greaves", "=ds=#s12#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47043, "", "=q4=Charge of the Demon Lord", "=ds=#s2#" };
+ { 19, 47223, "", "=q4=Ring of the Darkmender", "=ds=#s13#" };
+ { 20, 47041, "", "=q4=Solace of the Defeated", "=ds=#s14#" };
+ { 21, 47053, "", "=q4=Symbol of Transgression", "=ds=#s15#" };
+ { 23, 46996, "", "=q4=Lionhead Slasher", "=ds=#h1#, #w1#" };
+ { 24, 46994, "", "=q4=Talonstrike", "=ds=#w3#" };
+ };
+ {
+ Name = BabbleBoss["Lord Jaraxxus"];
+ { 1, 47275, "", "=q4=Pride of the Demon Lord", "=ds=#s4#" };
+ { 2, 47274, "", "=q4=Pants of the Soothing Touch", "=ds=#s11#, #a1#" };
+ { 3, 47270, "", "=q4=Vest of Calamitous Fate", "=ds=#s5#, #a2#" };
+ { 4, 47277, "", "=q4=Bindings of the Autumn Willow", "=ds=#s8#, #a2#" };
+ { 5, 47280, "", "=q4=Wristwraps of Cloudy Omen", "=ds=#s8#, #a3#" };
+ { 6, 47268, "", "=q4=Bloodbath Girdle", "=ds=#s10#, #a4#" };
+ { 7, 47279, "", "=q4=Leggings of Failing Light", "=ds=#s11#, #a4#" };
+ { 8, 47273, "", "=q4=Legplates of Feverish Dedication", "=ds=#s11#, #a4#" };
+ { 9, 47269, "", "=q4=Dawnbreaker Sabatons", "=ds=#s12#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47272, "", "=q4=Charge of the Eredar", "=ds=#s2#" };
+ { 19, 47278, "", "=q4=Circle of the Darkmender", "=ds=#s13#" };
+ { 20, 47271, "", "=q4=Solace of the Fallen", "=ds=#s14#" };
+ { 21, 47276, "", "=q4=Talisman of Heedless Sins", "=ds=#s15#" };
+ { 23, 47266, "", "=q4=Blood Fury", "=ds=#h1#, #w1#" };
+ { 24, 47267, "", "=q4=Death's Head Crossbow", "=ds=#w3#" };
+ };
+ {
+ Name = AL["Faction Champions"];
+ { 1, 47721, "", "=q4=Sandals of the Silver Magus", "=ds=#s12#, #a1#" };
+ { 2, 47719, "", "=q4=Gloves of the Silver Assassin", "=ds=#s9#, #a2#" };
+ { 3, 47718, "", "=q4=Helm of the Silver Ranger", "=ds=#s1#, #a3#" };
+ { 4, 47717, "", "=q4=Faceplate of the Silver Champion", "=ds=#s1#, #a4#" };
+ { 5, 47720, "", "=q4=Pauldrons of the Silver Defender", "=ds=#s3#, #a4#" };
+ { 7, 47728, "", "=q4=Binding Light", "=ds=#s14#" };
+ { 8, 47727, "", "=q4=Fervor of the Frostborn", "=ds=#s14#" };
+ { 9, 47726, "", "=q4=Talisman of Volatile Power", "=ds=#s14#" };
+ { 10, 47725, "", "=q4=Victor's Call", "=ds=#s14#" };
+ { 16, 47724, "", "=q4=Blade of the Silver Disciple", "=ds=#h1#, #w4#" };
+ };
+ {
+ Name = AL["Faction Champions"];
+ { 1, 47873, "", "=q4=Sunreaver Magus' Sandals", "=ds=#s12#, #a1#" };
+ { 2, 47878, "", "=q4=Sunreaver Assassin's Gloves", "=ds=#s9#, #a2#" };
+ { 3, 47875, "", "=q4=Sunreaver Ranger's Helm", "=ds=#s1#, #a3#" };
+ { 4, 47876, "", "=q4=Sunreaver Champion's Faceplate", "=ds=#s1#, #a4#" };
+ { 5, 47877, "", "=q4=Sunreaver Defender's Pauldrons", "=ds=#s3#, #a4#" };
+ { 7, 47880, "", "=q4=Binding Stone", "=ds=#s14#" };
+ { 8, 47882, "", "=q4=Eitrigg's Oath", "=ds=#s14#" };
+ { 9, 47879, "", "=q4=Fetish of Volatile Power", "=ds=#s14#" };
+ { 10, 47881, "", "=q4=Vengeance of the Forsaken", "=ds=#s14#" };
+ { 16, 47874, "", "=q4=Sunreaver Disciple's Blade", "=ds=#h1#, #w4#" };
+ };
+ {
+ Name = AL["Faction Champions"];
+ { 1, 47089, "", "=q4=Cloak of Displacement", "=ds=#s4#" };
+ { 2, 47081, "", "=q4=Cord of Biting Cold", "=ds=#s10#, #a1#" };
+ { 3, 47092, "", "=q4=Boots of the Mourning Widow", "=ds=#s12#, #a1#" };
+ { 4, 47094, "", "=q4=Vestments of the Shattered Fellowship", "=ds=#s5#, #a2#" };
+ { 5, 47071, "", "=q4=Treads of the Icewalker", "=ds=#s12#, #a2#" };
+ { 6, 47073, "", "=q4=Bracers of the Untold Massacre", "=ds=#s8#, #a3#" };
+ { 7, 47083, "", "=q4=Legguards of Concealed Hatred", "=ds=#s11#, #a3#" };
+ { 8, 47090, "", "=q4=Boots of Tremoring Earth", "=ds=#s12#, #a3#" };
+ { 9, 47082, "", "=q4=Chestplate of the Frostborn Hero", "=ds=#s5#, #a4#" };
+ { 10, 47093, "", "=q4=Vambraces of the Broken Bond", "=ds=#s8#, #a4#" };
+ { 11, 47072, "", "=q4=Girdle of Bloodied Scars", "=ds=#s10#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47070, "", "=q4=Ring of Callous Aggression", "=ds=#s13#" };
+ { 19, 47080, "", "=q4=Satrina's Impeding Scarab", "=ds=#s14#" };
+ { 21, 47069, "", "=q4=Justicebringer", "=ds=#h2#, #w1#" };
+ { 22, 47079, "", "=q4=Bastion of Purity", "=ds=#w8#" };
+ };
+ {
+ Name = AL["Faction Champions"];
+ { 1, 47291, "", "=q4=Shroud of Displacement", "=ds=#s4#" };
+ { 2, 47286, "", "=q4=Belt of Biting Cold", "=ds=#s10#, #a1#" };
+ { 3, 47293, "", "=q4=Sandals of the Mourning Widow", "=ds=#s12#, #a1#" };
+ { 4, 47292, "", "=q4=Robes of the Shattered Fellowship", "=ds=#s5#, #a2#" };
+ { 5, 47284, "", "=q4=Icewalker Treads", "=ds=#s12#, #a2#" };
+ { 6, 47281, "", "=q4=Bracers of the Silent Massacre", "=ds=#s8#, #a3#" };
+ { 7, 47289, "", "=q4=Leggings of Concealed Hatred", "=ds=#s11#, #a3#" };
+ { 8, 47295, "", "=q4=Sabatons of Tremoring Earth", "=ds=#s12#, #a3#" };
+ { 9, 47288, "", "=q4=Chestplate of the Frostwolf Hero", "=ds=#s5#, #a4#" };
+ { 10, 47294, "", "=q4=Bracers of the Broken Bond", "=ds=#s8#, #a4#" };
+ { 11, 47283, "", "=q4=Belt of Bloodied Scars", "=ds=#s10#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47282, "", "=q4=Band of Callous Aggression", "=ds=#s13#" };
+ { 19, 47290, "", "=q4=Juggernaut's Vitality", "=ds=#s14#" };
+ { 21, 47285, "", "=q4=Dual-blade Butcher", "=ds=#h2#, #w1#" };
+ { 22, 47287, "", "=q4=Bastion of Resolve", "=ds=#w8#" };
+ };
+ {
+ Name = BabbleBoss["The Twin Val'kyr"];
+ { 1, 47745, "", "=q4=Gloves of Looming Shadow", "=ds=#s9#, #a1#" };
+ { 2, 49231, "", "=q4=Boots of the Grieving Soul", "=ds=#s12#, #a1#" };
+ { 3, 47746, "", "=q4=Helm of the Snowy Grotto", "=ds=#s1#, #a2#" };
+ { 4, 47739, "", "=q4=Armor of Shifting Shadows", "=ds=#s5#, #a2#" };
+ { 5, 47744, "", "=q4=Gloves of the Azure Prophet", "=ds=#s9#, #a3#" };
+ { 6, 47738, "", "=q4=Sabatons of the Lingering Vortex", "=ds=#s12#, #a4#" };
+ { 8, 47747, "", "=q4=Darkbane Pendant", "=ds=#s2#" };
+ { 9, 47700, "", "=q4=Loop of the Twin Val'kyr", "=ds=#s13#" };
+ { 10, 47742, "", "=q4=Chalice of Benedictus", "=ds=#s15#" };
+ { 16, 47736, "", "=q4=Icefall Blade", "=ds=#h1#, #w4#" };
+ { 17, 47737, "", "=q4=Reckoning", "=ds=#h2#, #w10#" };
+ { 18, 47743, "", "=q4=Enlightenment", "=ds=#w9#" };
+ { 19, 47740, "", "=q4=The Diplomat", "=ds=#w5#" };
+ };
+ {
+ Name = BabbleBoss["The Twin Val'kyr"];
+ { 1, 47889, "", "=q4=Looming Shadow Wraps", "=ds=#s9#, #a1#" };
+ { 2, 49232, "", "=q4=Sandals of the Grieving Soul", "=ds=#s12#, #a1#" };
+ { 3, 47891, "", "=q4=Helm of the High Mesa", "=ds=#s1#, #a2#" };
+ { 4, 47887, "", "=q4=Vest of Shifting Shadows", "=ds=#s5#, #a2#" };
+ { 5, 47893, "", "=q4=Sen'jin Ritualist Gloves", "=ds=#s9#, #a3#" };
+ { 6, 47885, "", "=q4=Greaves of the Lingering Vortex", "=ds=#s12#, #a4#" };
+ { 8, 47890, "", "=q4=Darkbane Amulet", "=ds=#s2#" };
+ { 9, 47888, "", "=q4=Band of the Twin Val'kyr", "=ds=#s13#" };
+ { 10, 47913, "", "=q4=Lightbane Focus", "=ds=#s15#" };
+ { 16, 47886, "", "=q4=Nemesis Blade", "=ds=#h1#, #w4#" };
+ { 17, 47884, "", "=q4=Edge of Agony", "=ds=#h2#, #w10#" };
+ { 18, 47892, "", "=q4=Illumination", "=ds=#w9#" };
+ { 19, 47883, "", "=q4=Widebarrel Flintlock", "=ds=#w5#" };
+ };
+ {
+ Name = BabbleBoss["The Twin Val'kyr"];
+ { 1, 47126, "", "=q4=Skyweaver Robes", "=ds=#s5#, #a1#" };
+ { 2, 47141, "", "=q4=Bindings of Dark Essence", "=ds=#s8#, #a1#" };
+ { 3, 47107, "", "=q4=Belt of the Merciless Killer", "=ds=#s10#, #a2#" };
+ { 4, 47140, "", "=q4=Cord of Pale Thorns", "=ds=#s10#, #a2#" };
+ { 5, 47106, "", "=q4=Sabatons of Ruthless Judgment", "=ds=#s12#, #a3#" };
+ { 6, 47142, "", "=q4=Breastplate of the Frozen Lake", "=ds=#s5#, #a4#" };
+ { 7, 47108, "", "=q4=Bracers of the Shieldmaiden", "=ds=#s8#, #a4#" };
+ { 8, 47121, "", "=q4=Legguards of Ascension", "=ds=#s11#, #a4#" };
+ { 10, 47116, "", "=q4=The Arbiter's Muse", "=ds=#s2#" };
+ { 11, 47105, "", "=q4=The Executioner's Malice", "=ds=#s2#" };
+ { 12, 47139, "", "=q4=Wail of the Val'kyr", "=ds=#s2#" };
+ { 13, 47115, "", "=q4=Death's Verdict", "=ds=#s14#" };
+ { 14, 47138, "", "=q4=Chalice of Searing Light", "=ds=#s15#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47104, "", "=q4=Twin Spike", "=ds=#h1#, #w4#" };
+ { 19, 47114, "", "=q4=Lupine Longstaff", "=ds=#w9#" };
+ };
+ {
+ Name = BabbleBoss["The Twin Val'kyr"];
+ { 1, 47301, "", "=q4=Skyweaver Vestments", "=ds=#s5#, #a1#" };
+ { 2, 47306, "", "=q4=Dark Essence Bindings", "=ds=#s8#, #a1#" };
+ { 3, 47308, "", "=q4=Belt of Pale Thorns", "=ds=#s10#, #a2#" };
+ { 4, 47299, "", "=q4=Belt of the Pitiless Killer", "=ds=#s10#, #a2#" };
+ { 5, 47296, "", "=q4=Greaves of Ruthless Judgment", "=ds=#s12#, #a3#" };
+ { 6, 47310, "", "=q4=Chestplate of the Frozen Lake", "=ds=#s5#, #a4#" };
+ { 7, 47298, "", "=q4=Armguards of the Shieldmaiden", "=ds=#s8#, #a4#" };
+ { 8, 47304, "", "=q4=Legplates of Ascension", "=ds=#s11#, #a4#" };
+ { 10, 47307, "", "=q4=Cry of the Val'kyr", "=ds=#s2#" };
+ { 11, 47305, "", "=q4=Legionnaire's Gorget", "=ds=#s2#" };
+ { 12, 47297, "", "=q4=The Executioner's Vice", "=ds=#s2#" };
+ { 13, 47303, "", "=q4=Death's Choice", "=ds=#s14#" };
+ { 14, 47309, "", "=q4=Mystifying Charm", "=ds=#s15#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47300, "", "=q4=Gouge of the Frigid Heart", "=ds=#h1#, #w4#" };
+ { 19, 47302, "", "=q4=Twin's Pact", "=ds=#w9#" };
+ };
+ {
+ Name = BabbleBoss["Anub'arak"];
+ { 1, 47838, "", "=q4=Vestments of the Sleepless", "=ds=#s5#, #a1#" };
{ 2, 47837, "", "=q4=Cinch of the Undying", "=ds=#s10#, #a1#" };
{ 3, 47832, "", "=q4=Spaulders of the Snow Bandit", "=ds=#s3#, #a2#" };
{ 4, 47813, "", "=q4=Helmet of the Crypt Lord", "=ds=#s1#, #a3#" };
@@ -5045,12 +4971,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 47835, "", "=q4=Bulwark of the Royal Guard", "=ds=#w8#" };
{ 19, 47812, "", "=q4=Vigilant Ward", "=ds=#w8#" };
{ 20, 47741, "", "=q4=Baelgun's Heavy Crossbow", "=ds=#w3#" };
- Prev = "TrialoftheCrusaderTwinValkyrs_A";
- Next = "TrialoftheCrusaderTributeHEROIC_A";
};
-
- AtlasLoot_Data["TrialoftheCrusaderAnubarak_H"] = {
- { 1, 47906, "", "=q4=Robes of the Sleepless", "=ds=#s5#, #a1#"};
+ {
+ Name = BabbleBoss["Anub'arak"];
+ { 1, 47906, "", "=q4=Robes of the Sleepless", "=ds=#s5#, #a1#" };
{ 2, 47909, "", "=q4=Belt of the Eternal", "=ds=#s10#, #a1#" };
{ 3, 47904, "", "=q4=Shoulderpads of the Snow Bandit", "=ds=#s3#, #a2#" };
{ 4, 47897, "", "=q4=Helm of the Crypt Lord", "=ds=#s1#, #a3#" };
@@ -5068,414 +4992,383 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 47910, "", "=q4=Aegis of the Coliseum", "=ds=#w8#" };
{ 19, 47895, "", "=q4=Pride of the Kor'kron", "=ds=#w8#" };
{ 20, 47907, "", "=q4=Darkmaw Crossbow", "=ds=#w3#" };
- Prev = "TrialoftheCrusaderTwinValkyrs_H";
- Next = "TrialoftheCrusaderTributeHEROIC_H";
};
-
- AtlasLoot_Data["TrialoftheCrusaderAnubarak25Man_A"] = {
- { 1, 47225, "", "=q4=Maiden's Favor", "=ds=#s4#"};
- { 2, 47183, "", "=q4=Strength of the Nerub", "=ds=#s4#"};
- { 3, 47203, "", "=q4=Armbands of the Ashen Saint", "=ds=#s8#, #a1#"};
- { 4, 47235, "", "=q4=Gloves of the Lifeless Touch", "=ds=#s9#, #a1#"};
- { 5, 47187, "", "=q4=Leggings of the Deepening Void", "=ds=#s11#, #a1#"};
- { 6, 47194, "", "=q4=Footpads of the Icy Floe", "=ds=#s12#, #a1#"};
- { 7, 47151, "", "=q4=Bracers of Dark Determination", "=ds=#s8#, #a2#"};
- { 8, 47186, "", "=q4=Legwraps of the Awakening", "=ds=#s11#, #a2#"};
- { 9, 47204, "", "=q4=Chestguard of Flowing Elements", "=ds=#s5#, #a3#"};
- { 10, 47152, "", "=q4=Belt of Deathly Dominion", "=ds=#s10#, #a3#"};
- { 11, 47184, "", "=q4=Legguards of the Lurking Threat", "=ds=#s11#, #a3#"};
- { 12, 47234, "", "=q4=Gloves of Bitter Reprisal", "=ds=#s9#, #a4#"};
- { 13, 47195, "", "=q4=Belt of the Forgotten Martyr", "=ds=#s10#, #a4#"};
- { 14, 47150, "", "=q4=Greaves of the 7th Legion", "=ds=#s12#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47054, "", "=q4=Band of Deplorable Violence", "=ds=#s13#"};
- { 19, 47149, "", "=q4=Signet of the Traitor King", "=ds=#s13#"};
- { 20, 47182, "", "=q4=Reign of the Unliving", "=ds=#s14#"};
- { 22, 47148, "", "=q4=Stormpike Cleaver", "=ds=#h1#, #w1#"};
- { 23, 47193, "", "=q4=Misery's End", "=ds=#h3#, #w6#"};
- { 24, 47233, "", "=q4=Archon Glaive", "=ds=#w7#"};
- Prev = "TrialoftheCrusaderTwinValkyrs25Man_A";
- Next = "TrialoftheCrusaderTribute25ManHEROIC_A";
+ {
+ Name = BabbleBoss["Anub'arak"];
+ { 1, 47225, "", "=q4=Maiden's Favor", "=ds=#s4#" };
+ { 2, 47183, "", "=q4=Strength of the Nerub", "=ds=#s4#" };
+ { 3, 47203, "", "=q4=Armbands of the Ashen Saint", "=ds=#s8#, #a1#" };
+ { 4, 47235, "", "=q4=Gloves of the Lifeless Touch", "=ds=#s9#, #a1#" };
+ { 5, 47187, "", "=q4=Leggings of the Deepening Void", "=ds=#s11#, #a1#" };
+ { 6, 47194, "", "=q4=Footpads of the Icy Floe", "=ds=#s12#, #a1#" };
+ { 7, 47151, "", "=q4=Bracers of Dark Determination", "=ds=#s8#, #a2#" };
+ { 8, 47186, "", "=q4=Legwraps of the Awakening", "=ds=#s11#, #a2#" };
+ { 9, 47204, "", "=q4=Chestguard of Flowing Elements", "=ds=#s5#, #a3#" };
+ { 10, 47152, "", "=q4=Belt of Deathly Dominion", "=ds=#s10#, #a3#" };
+ { 11, 47184, "", "=q4=Legguards of the Lurking Threat", "=ds=#s11#, #a3#" };
+ { 12, 47234, "", "=q4=Gloves of Bitter Reprisal", "=ds=#s9#, #a4#" };
+ { 13, 47195, "", "=q4=Belt of the Forgotten Martyr", "=ds=#s10#, #a4#" };
+ { 14, 47150, "", "=q4=Greaves of the 7th Legion", "=ds=#s12#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47054, "", "=q4=Band of Deplorable Violence", "=ds=#s13#" };
+ { 19, 47149, "", "=q4=Signet of the Traitor King", "=ds=#s13#" };
+ { 20, 47182, "", "=q4=Reign of the Unliving", "=ds=#s14#" };
+ { 22, 47148, "", "=q4=Stormpike Cleaver", "=ds=#h1#, #w1#" };
+ { 23, 47193, "", "=q4=Misery's End", "=ds=#h3#, #w6#" };
+ { 24, 47233, "", "=q4=Archon Glaive", "=ds=#w7#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderAnubarak25Man_H"] = {
- { 1, 47328, "", "=q4=Maiden's Adoration", "=ds=#s4#"};
- { 2, 47320, "", "=q4=Might of the Nerub", "=ds=#s4#"};
- { 3, 47324, "", "=q4=Bindings of the Ashen Saint", "=ds=#s8#, #a1#"};
- { 4, 47326, "", "=q4=Handwraps of the Lifeless Touch", "=ds=#s9#, #a1#"};
- { 5, 47317, "", "=q4=Breeches of the Deepening Void", "=ds=#s11#, #a1#"};
- { 6, 47321, "", "=q4=Boots of the Icy Floe", "=ds=#s12#, #a1#"};
- { 7, 47313, "", "=q4=Armbands of Dark Determination", "=ds=#s8#, #a2#"};
- { 8, 47318, "", "=q4=Leggings of the Awakening", "=ds=#s11#, #a2#"};
- { 9, 47325, "", "=q4=Cuirass of Flowing Elements", "=ds=#s5#, #a3#"};
- { 10, 47311, "", "=q4=Waistguard of Deathly Dominion", "=ds=#s10#, #a3#"};
- { 11, 47319, "", "=q4=Leggings of the Lurking Threat", "=ds=#s11#, #a3#"};
- { 12, 47330, "", "=q4=Gauntlets of Bitter Reprisal", "=ds=#s9#, #a4#"};
- { 13, 47323, "", "=q4=Girdle of the Forgotten Martyr", "=ds=#s10#, #a4#"};
- { 14, 47312, "", "=q4=Greaves of the Saronite Citadel", "=ds=#s12#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47315, "", "=q4=Band of the Traitor King", "=ds=#s13#"};
- { 19, 47327, "", "=q4=Lurid Manifestation", "=ds=#s13#"};
- { 20, 47316, "", "=q4=Reign of the Dead", "=ds=#s14#"};
- { 22, 47314, "", "=q4=Hellscream Slicer", "=ds=#h1#, #w1#"};
- { 23, 47322, "", "=q4=Suffering's End", "=ds=#h3#, #w6#"};
- { 24, 47329, "", "=q4=Hellion Glaive", "=ds=#w7#"};
- Prev = "TrialoftheCrusaderTwinValkyrs25Man_H";
- Next = "TrialoftheCrusaderTribute25ManHEROIC_H";
+ {
+ Name = BabbleBoss["Anub'arak"];
+ { 1, 47328, "", "=q4=Maiden's Adoration", "=ds=#s4#" };
+ { 2, 47320, "", "=q4=Might of the Nerub", "=ds=#s4#" };
+ { 3, 47324, "", "=q4=Bindings of the Ashen Saint", "=ds=#s8#, #a1#" };
+ { 4, 47326, "", "=q4=Handwraps of the Lifeless Touch", "=ds=#s9#, #a1#" };
+ { 5, 47317, "", "=q4=Breeches of the Deepening Void", "=ds=#s11#, #a1#" };
+ { 6, 47321, "", "=q4=Boots of the Icy Floe", "=ds=#s12#, #a1#" };
+ { 7, 47313, "", "=q4=Armbands of Dark Determination", "=ds=#s8#, #a2#" };
+ { 8, 47318, "", "=q4=Leggings of the Awakening", "=ds=#s11#, #a2#" };
+ { 9, 47325, "", "=q4=Cuirass of Flowing Elements", "=ds=#s5#, #a3#" };
+ { 10, 47311, "", "=q4=Waistguard of Deathly Dominion", "=ds=#s10#, #a3#" };
+ { 11, 47319, "", "=q4=Leggings of the Lurking Threat", "=ds=#s11#, #a3#" };
+ { 12, 47330, "", "=q4=Gauntlets of Bitter Reprisal", "=ds=#s9#, #a4#" };
+ { 13, 47323, "", "=q4=Girdle of the Forgotten Martyr", "=ds=#s10#, #a4#" };
+ { 14, 47312, "", "=q4=Greaves of the Saronite Citadel", "=ds=#s12#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47315, "", "=q4=Band of the Traitor King", "=ds=#s13#" };
+ { 19, 47327, "", "=q4=Lurid Manifestation", "=ds=#s13#" };
+ { 20, 47316, "", "=q4=Reign of the Dead", "=ds=#s14#" };
+ { 22, 47314, "", "=q4=Hellscream Slicer", "=ds=#h1#, #w1#" };
+ { 23, 47322, "", "=q4=Suffering's End", "=ds=#h3#, #w6#" };
+ { 24, 47329, "", "=q4=Hellion Glaive", "=ds=#w7#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderPatterns_A"] = {
- { 1, 47622, "", "=q4=Plans: Breastplate of the White Knight", "=ds=#p2# (450)"};
- { 2, 47623, "", "=q4=Plans: Saronite Swordbreakers", "=ds=#p2# (450)"};
- { 3, 47627, "", "=q4=Plans: Sunforged Bracers", "=ds=#p2# (450)"};
- { 4, 47626, "", "=q4=Plans: Sunforged Breastplate", "=ds=#p2# (450)"};
- { 5, 47624, "", "=q4=Plans: Titanium Razorplate", "=ds=#p2# (450)"};
- { 6, 47625, "", "=q4=Plans: Titanium Spikeguards", "=ds=#p2# (450)"};
- { 7, 47629, "", "=q4=Pattern: Black Chitin Bracers", "=ds=#p7# (450)"};
- { 8, 47635, "", "=q4=Pattern: Bracers of Swift Death", "=ds=#p7# (450)"};
- { 9, 47631, "", "=q4=Pattern: Crusader's Dragonscale Bracers", "=ds=#p7# (450)"};
- { 10, 47630, "", "=q4=Pattern: Crusader's Dragonscale Breastplate", "=ds=#p7# (450)"};
- { 11, 47628, "", "=q4=Pattern: Ensorcelled Nerubian Breastplate", "=ds=#p7# (450)"};
- { 12, 47634, "", "=q4=Pattern: Knightbane Carapace", "=ds=#p7# (450)"};
- { 13, 47632, "", "=q4=Pattern: Lunar Eclipse Chestguard", "=ds=#p7# (450)"};
- { 14, 47633, "", "=q4=Pattern: Moonshadow Armguards", "=ds=#p7# (450)"};
- { 16, 47654, "", "=q4=Pattern: Bejeweled Wizard's Bracers", "=ds=#p8# (450)"};
- { 17, 47655, "", "=q4=Pattern: Merlin's Robe", "=ds=#p8# (450)"};
- { 18, 47656, "", "=q4=Pattern: Royal Moonshroud Bracers", "=ds=#p8# (450)"};
- { 19, 47657, "", "=q4=Pattern: Royal Moonshroud Robe", "=ds=#p8# (450)"};
- { 30, 47556, "", "=q3=Crusader Orb", "=ds=#e8#"};
- Prev = "TrialoftheCrusaderTributeHEROIC_A";
+ {
+ Name = AL["Trial of the Crusader Patterns/Plans"];
+ { 1, 47622, "", "=q4=Plans: Breastplate of the White Knight", "=ds=#p2# (450)" };
+ { 2, 47623, "", "=q4=Plans: Saronite Swordbreakers", "=ds=#p2# (450)" };
+ { 3, 47627, "", "=q4=Plans: Sunforged Bracers", "=ds=#p2# (450)" };
+ { 4, 47626, "", "=q4=Plans: Sunforged Breastplate", "=ds=#p2# (450)" };
+ { 5, 47624, "", "=q4=Plans: Titanium Razorplate", "=ds=#p2# (450)" };
+ { 6, 47625, "", "=q4=Plans: Titanium Spikeguards", "=ds=#p2# (450)" };
+ { 7, 47629, "", "=q4=Pattern: Black Chitin Bracers", "=ds=#p7# (450)" };
+ { 8, 47635, "", "=q4=Pattern: Bracers of Swift Death", "=ds=#p7# (450)" };
+ { 9, 47631, "", "=q4=Pattern: Crusader's Dragonscale Bracers", "=ds=#p7# (450)" };
+ { 10, 47630, "", "=q4=Pattern: Crusader's Dragonscale Breastplate", "=ds=#p7# (450)" };
+ { 11, 47628, "", "=q4=Pattern: Ensorcelled Nerubian Breastplate", "=ds=#p7# (450)" };
+ { 12, 47634, "", "=q4=Pattern: Knightbane Carapace", "=ds=#p7# (450)" };
+ { 13, 47632, "", "=q4=Pattern: Lunar Eclipse Chestguard", "=ds=#p7# (450)" };
+ { 14, 47633, "", "=q4=Pattern: Moonshadow Armguards", "=ds=#p7# (450)" };
+ { 16, 47654, "", "=q4=Pattern: Bejeweled Wizard's Bracers", "=ds=#p8# (450)" };
+ { 17, 47655, "", "=q4=Pattern: Merlin's Robe", "=ds=#p8# (450)" };
+ { 18, 47656, "", "=q4=Pattern: Royal Moonshroud Bracers", "=ds=#p8# (450)" };
+ { 19, 47657, "", "=q4=Pattern: Royal Moonshroud Robe", "=ds=#p8# (450)" };
+ { 30, 47556, "", "=q3=Crusader Orb", "=ds=#e8#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderPatterns_H"] = {
- { 1, 47640, "", "=q4=Plans: Breastplate of the White Knight", "=ds=#p2# (450)"};
- { 2, 47641, "", "=q4=Plans: Saronite Swordbreakers", "=ds=#p2# (450)"};
- { 3, 47642, "", "=q4=Plans: Sunforged Bracers", "=ds=#p2# (450)"};
- { 4, 47643, "", "=q4=Plans: Sunforged Breastplate", "=ds=#p2# (450)"};
- { 5, 47644, "", "=q4=Plans: Titanium Razorplate", "=ds=#p2# (450)"};
- { 6, 47645, "", "=q4=Plans: Titanium Spikeguards", "=ds=#p2# (450)"};
- { 7, 47646, "", "=q4=Pattern: Black Chitin Bracers", "=ds=#p7# (450)"};
- { 8, 47647, "", "=q4=Pattern: Bracers of Swift Death", "=ds=#p7# (450)"};
- { 9, 47648, "", "=q4=Pattern: Crusader's Dragonscale Bracers", "=ds=#p7# (450)"};
- { 10, 47649, "", "=q4=Pattern: Crusader's Dragonscale Breastplate", "=ds=#p7# (450)"};
- { 11, 47650, "", "=q4=Pattern: Ensorcelled Nerubian Breastplate", "=ds=#p7# (450)"};
- { 12, 47651, "", "=q4=Pattern: Knightbane Carapace", "=ds=#p7# (450)"};
- { 13, 47652, "", "=q4=Pattern: Lunar Eclipse Chestguard", "=ds=#p7# (450)"};
- { 14, 47653, "", "=q4=Pattern: Moonshadow Armguards", "=ds=#p7# (450)"};
- { 16, 47639, "", "=q4=Pattern: Bejeweled Wizard's Bracers", "=ds=#p8# (450)"};
- { 17, 47638, "", "=q4=Pattern: Merlin's Robe", "=ds=#p8# (450)"};
- { 18, 47637, "", "=q4=Pattern: Royal Moonshroud Bracers", "=ds=#p8# (450)"};
- { 19, 47636, "", "=q4=Pattern: Royal Moonshroud Robe", "=ds=#p8# (450)"};
- { 30, 47556, "", "=q3=Crusader Orb", "=ds=#e8#"};
- Prev = "TrialoftheCrusaderTributeHEROIC_H";
+ {
+ Name = AL["Trial of the Crusader Patterns/Plans"];
+ { 1, 47640, "", "=q4=Plans: Breastplate of the White Knight", "=ds=#p2# (450)" };
+ { 2, 47641, "", "=q4=Plans: Saronite Swordbreakers", "=ds=#p2# (450)" };
+ { 3, 47642, "", "=q4=Plans: Sunforged Bracers", "=ds=#p2# (450)" };
+ { 4, 47643, "", "=q4=Plans: Sunforged Breastplate", "=ds=#p2# (450)" };
+ { 5, 47644, "", "=q4=Plans: Titanium Razorplate", "=ds=#p2# (450)" };
+ { 6, 47645, "", "=q4=Plans: Titanium Spikeguards", "=ds=#p2# (450)" };
+ { 7, 47646, "", "=q4=Pattern: Black Chitin Bracers", "=ds=#p7# (450)" };
+ { 8, 47647, "", "=q4=Pattern: Bracers of Swift Death", "=ds=#p7# (450)" };
+ { 9, 47648, "", "=q4=Pattern: Crusader's Dragonscale Bracers", "=ds=#p7# (450)" };
+ { 10, 47649, "", "=q4=Pattern: Crusader's Dragonscale Breastplate", "=ds=#p7# (450)" };
+ { 11, 47650, "", "=q4=Pattern: Ensorcelled Nerubian Breastplate", "=ds=#p7# (450)" };
+ { 12, 47651, "", "=q4=Pattern: Knightbane Carapace", "=ds=#p7# (450)" };
+ { 13, 47652, "", "=q4=Pattern: Lunar Eclipse Chestguard", "=ds=#p7# (450)" };
+ { 14, 47653, "", "=q4=Pattern: Moonshadow Armguards", "=ds=#p7# (450)" };
+ { 16, 47639, "", "=q4=Pattern: Bejeweled Wizard's Bracers", "=ds=#p8# (450)" };
+ { 17, 47638, "", "=q4=Pattern: Merlin's Robe", "=ds=#p8# (450)" };
+ { 18, 47637, "", "=q4=Pattern: Royal Moonshroud Bracers", "=ds=#p8# (450)" };
+ { 19, 47636, "", "=q4=Pattern: Royal Moonshroud Robe", "=ds=#p8# (450)" };
+ { 30, 47556, "", "=q3=Crusader Orb", "=ds=#e8#" };
};
+};
- -----------------------------------
- --- Trial of the Grand Crusader ---
- -----------------------------------
+-----------------------------------
+--- Trial of the Grand Crusader ---
+-----------------------------------
- AtlasLoot_Data["TrialoftheCrusaderNorthrendBeastsHEROIC_A"] = {
- { 1, 47921, "", "=q4=Icehowl Cinch", "=ds=#s10#, #a1#"};
- { 2, 47923, "", "=q4=Shoulderpads of the Glacial Wilds", "=ds=#s3#, #a2#"};
- { 3, 47919, "", "=q4=Acidmaw Boots", "=ds=#s12#, #a2#"};
- { 4, 47926, "", "=q4=Shoulderguards of the Spirit Walker", "=ds=#s3#, #a3#"};
- { 5, 47916, "", "=q4=Armbands of the Northern Stalker", "=ds=#s8#, #a3#"};
- { 6, 47918, "", "=q4=Dreadscale Armguards", "=ds=#s8#, #a4#"};
- { 7, 47917, "", "=q4=Gauntlets of Rising Anger", "=ds=#s9#, #a4#"};
- { 8, 47924, "", "=q4=Belt of the Frozen Reach", "=ds=#s10#, #a4#"};
- { 9, 47925, "", "=q4=Girdle of the Impaler", "=ds=#s10#, #a4#"};
- { 16, 47915, "", "=q4=Collar of Ceaseless Torment", "=ds=#s2#"};
- { 17, 47920, "", "=q4=Gormok's Band", "=ds=#s13#"};
- { 19, 47922, "", "=q4=Rod of Imprisoned Souls", "=ds=#w12#"};
- Next = "TrialoftheCrusaderLordJaraxxusHEROIC_A";
+AtlasLoot_Data["TrialoftheCrusader2"] = {
+ Name = BabbleZone["Trial of the Crusader"];
+ Type = "WrathRaid";
+ {
+ Name = BabbleBoss["The Beasts of Northrend"];
+ { 1, 47921, "", "=q4=Icehowl Cinch", "=ds=#s10#, #a1#" };
+ { 2, 47923, "", "=q4=Shoulderpads of the Glacial Wilds", "=ds=#s3#, #a2#" };
+ { 3, 47919, "", "=q4=Acidmaw Boots", "=ds=#s12#, #a2#" };
+ { 4, 47926, "", "=q4=Shoulderguards of the Spirit Walker", "=ds=#s3#, #a3#" };
+ { 5, 47916, "", "=q4=Armbands of the Northern Stalker", "=ds=#s8#, #a3#" };
+ { 6, 47918, "", "=q4=Dreadscale Armguards", "=ds=#s8#, #a4#" };
+ { 7, 47917, "", "=q4=Gauntlets of Rising Anger", "=ds=#s9#, #a4#" };
+ { 8, 47924, "", "=q4=Belt of the Frozen Reach", "=ds=#s10#, #a4#" };
+ { 9, 47925, "", "=q4=Girdle of the Impaler", "=ds=#s10#, #a4#" };
+ { 16, 47915, "", "=q4=Collar of Ceaseless Torment", "=ds=#s2#" };
+ { 17, 47920, "", "=q4=Gormok's Band", "=ds=#s13#" };
+ { 19, 47922, "", "=q4=Rod of Imprisoned Souls", "=ds=#w12#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderNorthrendBeastsHEROIC_H"] = {
- { 1, 47994, "", "=q4=Icehowl Binding", "=ds=#s10#, #a1#"};
- { 2, 47996, "", "=q4=Pauldrons of the Glacial Wilds", "=ds=#s3#, #a2#"};
- { 3, 47992, "", "=q4=Acidmaw Treads", "=ds=#s12#, #a2#"};
- { 4, 47999, "", "=q4=Pauldrons of the Spirit Walker", "=ds=#s3#, #a3#"};
- { 5, 47989, "", "=q4=Bracers of the Northern Stalker", "=ds=#s8#, #a3#"};
- { 6, 47991, "", "=q4=Dreadscale Bracers", "=ds=#s8#, #a4#"};
- { 7, 47990, "", "=q4=Gauntlets of Mounting Anger", "=ds=#s9#, #a4#"};
- { 8, 47998, "", "=q4=Belt of the Impaler", "=ds=#s10#, #a4#"};
- { 9, 47997, "", "=q4=Girdle of the Frozen Reach", "=ds=#s10#, #a4#"};
- { 16, 47988, "", "=q4=Collar of Unending Torment", "=ds=#s2#"};
- { 17, 47993, "", "=q4=Carnivorous Band", "=ds=#s13#"};
- { 19, 47995, "", "=q4=Scepter of Imprisoned Souls", "=ds=#w12#"};
- Next = "TrialoftheCrusaderLordJaraxxusHEROIC_H";
+ {
+ Name = BabbleBoss["The Beasts of Northrend"];
+ { 1, 47994, "", "=q4=Icehowl Binding", "=ds=#s10#, #a1#" };
+ { 2, 47996, "", "=q4=Pauldrons of the Glacial Wilds", "=ds=#s3#, #a2#" };
+ { 3, 47992, "", "=q4=Acidmaw Treads", "=ds=#s12#, #a2#" };
+ { 4, 47999, "", "=q4=Pauldrons of the Spirit Walker", "=ds=#s3#, #a3#" };
+ { 5, 47989, "", "=q4=Bracers of the Northern Stalker", "=ds=#s8#, #a3#" };
+ { 6, 47991, "", "=q4=Dreadscale Bracers", "=ds=#s8#, #a4#" };
+ { 7, 47990, "", "=q4=Gauntlets of Mounting Anger", "=ds=#s9#, #a4#" };
+ { 8, 47998, "", "=q4=Belt of the Impaler", "=ds=#s10#, #a4#" };
+ { 9, 47997, "", "=q4=Girdle of the Frozen Reach", "=ds=#s10#, #a4#" };
+ { 16, 47988, "", "=q4=Collar of Unending Torment", "=ds=#s2#" };
+ { 17, 47993, "", "=q4=Carnivorous Band", "=ds=#s13#" };
+ { 19, 47995, "", "=q4=Scepter of Imprisoned Souls", "=ds=#w12#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderNorthrendBeasts25ManHEROIC_A"] = {
- { 1, 46971, "", "=q4=Drape of the Untamed Predator", "=ds=#s4#"};
- { 2, 46977, "", "=q4=Shawl of the Refreshing Winds", "=ds=#s4#"};
- { 3, 46993, "", "=q4=Flowing Vestments of Ascent", "=ds=#s5#, #a1#"};
- { 4, 46973, "", "=q4=Cord of the Tenebrous Mist", "=ds=#s10#, #a1#"};
- { 5, 46975, "", "=q4=Leggings of the Broken Beast", "=ds=#s11#, #a2#"};
- { 6, 46989, "", "=q4=Boots of the Unrelenting Storm", "=ds=#s12#, #a2#"};
- { 7, 46965, "", "=q4=Breastplate of Cruel Intent", "=ds=#s5#, #a3#"};
- { 8, 46991, "", "=q4=Belt of the Ice Burrower", "=ds=#s10#, #a3#"};
- { 9, 46968, "", "=q4=Chestplate of the Towering Monstrosity", "=ds=#s5#, #a4#"};
- { 10, 46967, "", "=q4=Boneshatter Armplates", "=ds=#s8#, #a4#"};
- { 11, 46986, "", "=q4=Boots of the Courageous", "=ds=#s12#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 46966, "", "=q4=Band of the Violent Temperment", "=ds=#s13#"};
- { 20, 46980, "", "=q4=Blade of Tarasque", "=ds=#h3#, #w4#"};
- { 21, 46969, "", "=q4=Steel Bladebreaker", "=ds=#h1#, #w4#"};
- { 22, 46964, "", "=q4=Crystal Plated Vanguard", "=ds=#w8#"};
- Next = "TrialoftheCrusaderLordJaraxxus25ManHEROIC_A";
+ {
+ Name = BabbleBoss["The Beasts of Northrend"];
+ { 1, 46971, "", "=q4=Drape of the Untamed Predator", "=ds=#s4#" };
+ { 2, 46977, "", "=q4=Shawl of the Refreshing Winds", "=ds=#s4#" };
+ { 3, 46993, "", "=q4=Flowing Vestments of Ascent", "=ds=#s5#, #a1#" };
+ { 4, 46973, "", "=q4=Cord of the Tenebrous Mist", "=ds=#s10#, #a1#" };
+ { 5, 46975, "", "=q4=Leggings of the Broken Beast", "=ds=#s11#, #a2#" };
+ { 6, 46989, "", "=q4=Boots of the Unrelenting Storm", "=ds=#s12#, #a2#" };
+ { 7, 46965, "", "=q4=Breastplate of Cruel Intent", "=ds=#s5#, #a3#" };
+ { 8, 46991, "", "=q4=Belt of the Ice Burrower", "=ds=#s10#, #a3#" };
+ { 9, 46968, "", "=q4=Chestplate of the Towering Monstrosity", "=ds=#s5#, #a4#" };
+ { 10, 46967, "", "=q4=Boneshatter Armplates", "=ds=#s8#, #a4#" };
+ { 11, 46986, "", "=q4=Boots of the Courageous", "=ds=#s12#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 46966, "", "=q4=Band of the Violent Temperment", "=ds=#s13#" };
+ { 20, 46980, "", "=q4=Blade of Tarasque", "=ds=#h3#, #w4#" };
+ { 21, 46969, "", "=q4=Steel Bladebreaker", "=ds=#h1#, #w4#" };
+ { 22, 46964, "", "=q4=Crystal Plated Vanguard", "=ds=#w8#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderNorthrendBeasts25ManHEROIC_H"] = {
- { 1, 47418, "", "=q4=Cloak of the Untamed Predator", "=ds=#s4#"};
- { 2, 47417, "", "=q4=Drape of the Refreshing Winds", "=ds=#s4#"};
- { 3, 47425, "", "=q4=Flowing Robes of Ascent", "=ds=#s5#, #a1#"};
- { 4, 47419, "", "=q4=Belt of the Tenebrous Mist", "=ds=#s10#, #a1#"};
- { 5, 47420, "", "=q4=Legwraps of the Broken Beast", "=ds=#s11#, #a2#"};
- { 6, 47423, "", "=q4=Boots of the Harsh Winter", "=ds=#s12#, #a2#"};
- { 7, 47412, "", "=q4=Cuirass of Cruel Intent", "=ds=#s5#, #a3#"};
- { 8, 47426, "", "=q4=Binding of the Ice Burrower", "=ds=#s10#, #a3#"};
- { 9, 47415, "", "=q4=Hauberk of the Towering Monstrosity", "=ds=#s5#, #a4#"};
- { 10, 47414, "", "=q4=Boneshatter Vambraces", "=ds=#s8#, #a4#"};
- { 11, 47424, "", "=q4=Sabatons of the Courageous", "=ds=#s12#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47413, "", "=q4=Ring of the Violent Temperament", "=ds=#s13#"};
- { 20, 47422, "", "=q4=Barb of Tarasque", "=ds=#h3#, #w4#"};
- { 21, 47416, "", "=q4=Stygian Bladebreaker", "=ds=#h1#, #w4#"};
- { 22, 47421, "", "=q4=Forlorn Barrier", "=ds=#w8#"};
- Next = "TrialoftheCrusaderLordJaraxxus25ManHEROIC_H";
+ {
+ Name = BabbleBoss["The Beasts of Northrend"];
+ { 1, 47418, "", "=q4=Cloak of the Untamed Predator", "=ds=#s4#" };
+ { 2, 47417, "", "=q4=Drape of the Refreshing Winds", "=ds=#s4#" };
+ { 3, 47425, "", "=q4=Flowing Robes of Ascent", "=ds=#s5#, #a1#" };
+ { 4, 47419, "", "=q4=Belt of the Tenebrous Mist", "=ds=#s10#, #a1#" };
+ { 5, 47420, "", "=q4=Legwraps of the Broken Beast", "=ds=#s11#, #a2#" };
+ { 6, 47423, "", "=q4=Boots of the Harsh Winter", "=ds=#s12#, #a2#" };
+ { 7, 47412, "", "=q4=Cuirass of Cruel Intent", "=ds=#s5#, #a3#" };
+ { 8, 47426, "", "=q4=Binding of the Ice Burrower", "=ds=#s10#, #a3#" };
+ { 9, 47415, "", "=q4=Hauberk of the Towering Monstrosity", "=ds=#s5#, #a4#" };
+ { 10, 47414, "", "=q4=Boneshatter Vambraces", "=ds=#s8#, #a4#" };
+ { 11, 47424, "", "=q4=Sabatons of the Courageous", "=ds=#s12#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47413, "", "=q4=Ring of the Violent Temperament", "=ds=#s13#" };
+ { 20, 47422, "", "=q4=Barb of Tarasque", "=ds=#h3#, #w4#" };
+ { 21, 47416, "", "=q4=Stygian Bladebreaker", "=ds=#h1#, #w4#" };
+ { 22, 47421, "", "=q4=Forlorn Barrier", "=ds=#w8#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderLordJaraxxusHEROIC_A"] = {
- { 1, 47927, "", "=q4=Felspark Bindings", "=ds=#s8#, #a1#"};
- { 2, 47931, "", "=q4=Leggings of the Demonic Messenger", "=ds=#s11#, #a1#"};
- { 3, 47929, "", "=q4=Belt of the Winter Solstice", "=ds=#s10#, #a2#"};
- { 4, 47932, "", "=q4=Girdle of the Farseer", "=ds=#s10#, #a3#"};
- { 5, 49238, "", "=q4=Boots of Tortured Space", "=ds=#s12#, #a3#"};
- { 6, 47933, "", "=q4=Sentinel Scouting Greaves", "=ds=#s12#, #a3#"};
- { 7, 47935, "", "=q4=Armguards of the Nether Lord", "=ds=#s8#, #a4#"};
- { 8, 47937, "", "=q4=Girdle of the Nether Champion", "=ds=#s10#, #a4#"};
- { 16, 47930, "", "=q4=Amulet of Binding Elements", "=ds=#s2#"};
- { 17, 47939, "", "=q4=Endurance of the Infernal", "=ds=#s2#"};
- { 18, 47928, "", "=q4=Firestorm Ring", "=ds=#s13#"};
- { 19, 47934, "", "=q4=Planestalker Signet", "=ds=#s13#"};
- { 21, 47938, "", "=q4=Dirk of the Night Watch", "=ds=#h1#, #w4#"};
- Prev = "TrialoftheCrusaderNorthrendBeastsHEROIC_A";
- Next = "TrialoftheCrusaderFactionChampionsHEROIC_A";
+ {
+ Name = BabbleBoss["Lord Jaraxxus"];
+ { 1, 47927, "", "=q4=Felspark Bindings", "=ds=#s8#, #a1#" };
+ { 2, 47931, "", "=q4=Leggings of the Demonic Messenger", "=ds=#s11#, #a1#" };
+ { 3, 47929, "", "=q4=Belt of the Winter Solstice", "=ds=#s10#, #a2#" };
+ { 4, 47932, "", "=q4=Girdle of the Farseer", "=ds=#s10#, #a3#" };
+ { 5, 49238, "", "=q4=Boots of Tortured Space", "=ds=#s12#, #a3#" };
+ { 6, 47933, "", "=q4=Sentinel Scouting Greaves", "=ds=#s12#, #a3#" };
+ { 7, 47935, "", "=q4=Armguards of the Nether Lord", "=ds=#s8#, #a4#" };
+ { 8, 47937, "", "=q4=Girdle of the Nether Champion", "=ds=#s10#, #a4#" };
+ { 16, 47930, "", "=q4=Amulet of Binding Elements", "=ds=#s2#" };
+ { 17, 47939, "", "=q4=Endurance of the Infernal", "=ds=#s2#" };
+ { 18, 47928, "", "=q4=Firestorm Ring", "=ds=#s13#" };
+ { 19, 47934, "", "=q4=Planestalker Signet", "=ds=#s13#" };
+ { 21, 47938, "", "=q4=Dirk of the Night Watch", "=ds=#h1#, #w4#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderLordJaraxxusHEROIC_H"] = {
- { 1, 48000, "", "=q4=Felspark Bracers", "=ds=#s8#, #a1#"};
- { 2, 48004, "", "=q4=Legwraps of the Demonic Messenger", "=ds=#s11#, #a1#"};
- { 3, 48002, "", "=q4=Belt of the Bloodhoof Emissary", "=ds=#s10#, #a2#"};
- { 4, 48005, "", "=q4=Darkspear Ritual Binding", "=ds=#s10#, #a3#"};
- { 5, 49237, "", "=q4=Sabatons of Tortured Space", "=ds=#s12#, #a3#"};
- { 6, 48006, "", "=q4=Warsong Poacher's Greaves", "=ds=#s12#, #a3#"};
- { 7, 48008, "", "=q4=Armplates of the Nether Lord", "=ds=#s8#, #a4#"};
- { 8, 48009, "", "=q4=Belt of the Nether Champion", "=ds=#s10#, #a4#"};
- { 16, 48011, "", "=q4=Fortitude of the Infernal", "=ds=#s2#"};
- { 17, 48003, "", "=q4=Pendant of Binding Elements", "=ds=#s2#"};
- { 18, 48001, "", "=q4=Firestorm Band", "=ds=#s13#"};
- { 19, 48007, "", "=q4=Planestalker Band", "=ds=#s13#"};
- { 21, 48010, "", "=q4=Orcish Deathblade", "=ds=#h1#, #w4#"};
- Prev = "TrialoftheCrusaderNorthrendBeastsHEROIC_H";
- Next = "TrialoftheCrusaderFactionChampionsHEROIC_H";
+ {
+ Name = BabbleBoss["Lord Jaraxxus"];
+ { 1, 48000, "", "=q4=Felspark Bracers", "=ds=#s8#, #a1#" };
+ { 2, 48004, "", "=q4=Legwraps of the Demonic Messenger", "=ds=#s11#, #a1#" };
+ { 3, 48002, "", "=q4=Belt of the Bloodhoof Emissary", "=ds=#s10#, #a2#" };
+ { 4, 48005, "", "=q4=Darkspear Ritual Binding", "=ds=#s10#, #a3#" };
+ { 5, 49237, "", "=q4=Sabatons of Tortured Space", "=ds=#s12#, #a3#" };
+ { 6, 48006, "", "=q4=Warsong Poacher's Greaves", "=ds=#s12#, #a3#" };
+ { 7, 48008, "", "=q4=Armplates of the Nether Lord", "=ds=#s8#, #a4#" };
+ { 8, 48009, "", "=q4=Belt of the Nether Champion", "=ds=#s10#, #a4#" };
+ { 16, 48011, "", "=q4=Fortitude of the Infernal", "=ds=#s2#" };
+ { 17, 48003, "", "=q4=Pendant of Binding Elements", "=ds=#s2#" };
+ { 18, 48001, "", "=q4=Firestorm Band", "=ds=#s13#" };
+ { 19, 48007, "", "=q4=Planestalker Band", "=ds=#s13#" };
+ { 21, 48010, "", "=q4=Orcish Deathblade", "=ds=#h1#, #w4#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderLordJaraxxus25ManHEROIC_A"] = {
- { 1, 47063, "", "=q4=Pride of the Eredar", "=ds=#s4#"};
- { 2, 47062, "", "=q4=Leggings of the Soothing Touch", "=ds=#s11#, #a1#"};
- { 3, 47004, "", "=q4=Cuirass of Calamitous Fate", "=ds=#s5#, #a2#"};
- { 4, 47066, "", "=q4=Bracers of the Autumn Willow", "=ds=#s8#, #a2#"};
- { 5, 47068, "", "=q4=Bracers of Cloudy Omen", "=ds=#s8#, #a3#"};
- { 6, 47002, "", "=q4=Bloodbath Belt", "=ds=#s10#, #a4#"};
- { 7, 47067, "", "=q4=Legplates of Failing Light", "=ds=#s11#, #a4#"};
- { 8, 47061, "", "=q4=Legguards of Feverish Dedication", "=ds=#s11#, #a4#"};
- { 9, 47003, "", "=q4=Dawnbreaker Greaves", "=ds=#s12#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47060, "", "=q4=Charge of the Demon Lord", "=ds=#s2#"};
- { 19, 47224, "", "=q4=Ring of the Darkmender", "=ds=#s13#"};
- { 20, 47059, "", "=q4=Solace of the Defeated", "=ds=#s14#"};
- { 21, 47064, "", "=q4=Symbol of Transgression", "=ds=#s15#"};
- { 23, 47001, "", "=q4=Lionhead Slasher", "=ds=#h1#, #w1#"};
- { 24, 46995, "", "=q4=Talonstrike", "=ds=#w3#"};
- Prev = "TrialoftheCrusaderNorthrendBeasts25ManHEROIC_A";
- Next = "TrialoftheCrusaderFactionChampions25ManHEROIC_A";
+ {
+ Name = BabbleBoss["Lord Jaraxxus"];
+ { 1, 47063, "", "=q4=Pride of the Eredar", "=ds=#s4#" };
+ { 2, 47062, "", "=q4=Leggings of the Soothing Touch", "=ds=#s11#, #a1#" };
+ { 3, 47004, "", "=q4=Cuirass of Calamitous Fate", "=ds=#s5#, #a2#" };
+ { 4, 47066, "", "=q4=Bracers of the Autumn Willow", "=ds=#s8#, #a2#" };
+ { 5, 47068, "", "=q4=Bracers of Cloudy Omen", "=ds=#s8#, #a3#" };
+ { 6, 47002, "", "=q4=Bloodbath Belt", "=ds=#s10#, #a4#" };
+ { 7, 47067, "", "=q4=Legplates of Failing Light", "=ds=#s11#, #a4#" };
+ { 8, 47061, "", "=q4=Legguards of Feverish Dedication", "=ds=#s11#, #a4#" };
+ { 9, 47003, "", "=q4=Dawnbreaker Greaves", "=ds=#s12#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47060, "", "=q4=Charge of the Demon Lord", "=ds=#s2#" };
+ { 19, 47224, "", "=q4=Ring of the Darkmender", "=ds=#s13#" };
+ { 20, 47059, "", "=q4=Solace of the Defeated", "=ds=#s14#" };
+ { 21, 47064, "", "=q4=Symbol of Transgression", "=ds=#s15#" };
+ { 23, 47001, "", "=q4=Lionhead Slasher", "=ds=#h1#, #w1#" };
+ { 24, 46995, "", "=q4=Talonstrike", "=ds=#w3#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderLordJaraxxus25ManHEROIC_H"] = {
- { 1, 47436, "", "=q4=Pride of the Demon Lord", "=ds=#s4#"};
- { 2, 47435, "", "=q4=Pants of the Soothing Touch", "=ds=#s11#, #a1#"};
- { 3, 47431, "", "=q4=Vest of Calamitous Fate", "=ds=#s5#, #a2#"};
- { 4, 47438, "", "=q4=Bindings of the Autumn Willow", "=ds=#s8#, #a2#"};
- { 5, 47441, "", "=q4=Wristwraps of Cloudy Omen", "=ds=#s8#, #a3#"};
- { 6, 47429, "", "=q4=Bloodbath Girdle", "=ds=#s10#, #a4#"};
- { 7, 47440, "", "=q4=Leggings of Failing Light", "=ds=#s11#, #a4#"};
- { 8, 47434, "", "=q4=Legplates of Feverish Dedication", "=ds=#s11#, #a4#"};
- { 9, 47430, "", "=q4=Dawnbreaker Sabatons", "=ds=#s12#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47433, "", "=q4=Charge of the Eredar", "=ds=#s2#"};
- { 19, 47439, "", "=q4=Circle of the Darkmender", "=ds=#s13#"};
- { 20, 47432, "", "=q4=Solace of the Fallen", "=ds=#s14#"};
- { 21, 47437, "", "=q4=Talisman of Heedless Sins", "=ds=#s15#"};
- { 23, 47427, "", "=q4=Blood Fury", "=ds=#h1#, #w1#"};
- { 24, 47428, "", "=q4=Death's Head Crossbow", "=ds=#w3#"};
- Prev = "TrialoftheCrusaderNorthrendBeasts25ManHEROIC_H";
- Next = "TrialoftheCrusaderFactionChampions25ManHEROIC_H";
+ {
+ Name = BabbleBoss["Lord Jaraxxus"];
+ { 1, 47436, "", "=q4=Pride of the Demon Lord", "=ds=#s4#" };
+ { 2, 47435, "", "=q4=Pants of the Soothing Touch", "=ds=#s11#, #a1#" };
+ { 3, 47431, "", "=q4=Vest of Calamitous Fate", "=ds=#s5#, #a2#" };
+ { 4, 47438, "", "=q4=Bindings of the Autumn Willow", "=ds=#s8#, #a2#" };
+ { 5, 47441, "", "=q4=Wristwraps of Cloudy Omen", "=ds=#s8#, #a3#" };
+ { 6, 47429, "", "=q4=Bloodbath Girdle", "=ds=#s10#, #a4#" };
+ { 7, 47440, "", "=q4=Leggings of Failing Light", "=ds=#s11#, #a4#" };
+ { 8, 47434, "", "=q4=Legplates of Feverish Dedication", "=ds=#s11#, #a4#" };
+ { 9, 47430, "", "=q4=Dawnbreaker Sabatons", "=ds=#s12#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47433, "", "=q4=Charge of the Eredar", "=ds=#s2#" };
+ { 19, 47439, "", "=q4=Circle of the Darkmender", "=ds=#s13#" };
+ { 20, 47432, "", "=q4=Solace of the Fallen", "=ds=#s14#" };
+ { 21, 47437, "", "=q4=Talisman of Heedless Sins", "=ds=#s15#" };
+ { 23, 47427, "", "=q4=Blood Fury", "=ds=#h1#, #w1#" };
+ { 24, 47428, "", "=q4=Death's Head Crossbow", "=ds=#w3#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderFactionChampionsHEROIC_A"] = {
- { 1, 47940, "", "=q4=Sandals of the Silver Magus", "=ds=#s12#, #a1#"};
- { 2, 47945, "", "=q4=Gloves of the Silver Assassin", "=ds=#s9#, #a2#"};
- { 3, 47942, "", "=q4=Helm of the Silver Ranger", "=ds=#s1#, #a3#"};
- { 4, 47943, "", "=q4=Faceplate of the Silver Champion", "=ds=#s1#, #a4#"};
- { 5, 47944, "", "=q4=Pauldrons of the Silver Defender", "=ds=#s3#, #a4#"};
- { 7, 47947, "", "=q4=Binding Light", "=ds=#s14#"};
- { 8, 47949, "", "=q4=Fervor of the Frostborn", "=ds=#s14#"};
- { 9, 47946, "", "=q4=Talisman of Volatile Power", "=ds=#s14#"};
- { 10, 47948, "", "=q4=Victor's Call", "=ds=#s14#"};
- { 16, 47941, "", "=q4=Blade of the Silver Disciple", "=ds=#h1#, #w4#"};
- Prev = "TrialoftheCrusaderLordJaraxxusHEROIC_A";
- Next = "TrialoftheCrusaderTwinValkyrsHEROIC_A";
+ {
+ Name = AL["Faction Champions"];
+ { 1, 47940, "", "=q4=Sandals of the Silver Magus", "=ds=#s12#, #a1#" };
+ { 2, 47945, "", "=q4=Gloves of the Silver Assassin", "=ds=#s9#, #a2#" };
+ { 3, 47942, "", "=q4=Helm of the Silver Ranger", "=ds=#s1#, #a3#" };
+ { 4, 47943, "", "=q4=Faceplate of the Silver Champion", "=ds=#s1#, #a4#" };
+ { 5, 47944, "", "=q4=Pauldrons of the Silver Defender", "=ds=#s3#, #a4#" };
+ { 7, 47947, "", "=q4=Binding Light", "=ds=#s14#" };
+ { 8, 47949, "", "=q4=Fervor of the Frostborn", "=ds=#s14#" };
+ { 9, 47946, "", "=q4=Talisman of Volatile Power", "=ds=#s14#" };
+ { 10, 47948, "", "=q4=Victor's Call", "=ds=#s14#" };
+ { 16, 47941, "", "=q4=Blade of the Silver Disciple", "=ds=#h1#, #w4#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderFactionChampionsHEROIC_H"] = {
- { 1, 48012, "", "=q4=Sunreaver Magus' Sandals", "=ds=#s12#, #a1#"};
- { 2, 48017, "", "=q4=Sunreaver Assassin's Gloves", "=ds=#s9#, #a2#"};
- { 3, 48014, "", "=q4=Sunreaver Ranger's Helm", "=ds=#s1#, #a3#"};
- { 4, 48015, "", "=q4=Sunreaver Champion's Faceplate", "=ds=#s1#, #a4#"};
- { 5, 48016, "", "=q4=Sunreaver Defender's Pauldrons", "=ds=#s3#, #a4#"};
- { 7, 48019, "", "=q4=Binding Stone", "=ds=#s14#"};
- { 8, 48021, "", "=q4=Eitrigg's Oath", "=ds=#s14#"};
- { 9, 48018, "", "=q4=Fetish of Volatile Power", "=ds=#s14#"};
- { 10, 48020, "", "=q4=Vengeance of the Forsaken", "=ds=#s14#"};
- { 16, 48013, "", "=q4=Sunreaver Disciple's Blade", "=ds=#h1#, #w4#"};
- Prev = "TrialoftheCrusaderLordJaraxxusHEROIC_H";
- Next = "TrialoftheCrusaderTwinValkyrsHEROIC_H";
+ {
+ Name = AL["Faction Champions"];
+ { 1, 48012, "", "=q4=Sunreaver Magus' Sandals", "=ds=#s12#, #a1#" };
+ { 2, 48017, "", "=q4=Sunreaver Assassin's Gloves", "=ds=#s9#, #a2#" };
+ { 3, 48014, "", "=q4=Sunreaver Ranger's Helm", "=ds=#s1#, #a3#" };
+ { 4, 48015, "", "=q4=Sunreaver Champion's Faceplate", "=ds=#s1#, #a4#" };
+ { 5, 48016, "", "=q4=Sunreaver Defender's Pauldrons", "=ds=#s3#, #a4#" };
+ { 7, 48019, "", "=q4=Binding Stone", "=ds=#s14#" };
+ { 8, 48021, "", "=q4=Eitrigg's Oath", "=ds=#s14#" };
+ { 9, 48018, "", "=q4=Fetish of Volatile Power", "=ds=#s14#" };
+ { 10, 48020, "", "=q4=Vengeance of the Forsaken", "=ds=#s14#" };
+ { 16, 48013, "", "=q4=Sunreaver Disciple's Blade", "=ds=#h1#, #w4#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderFactionChampions25ManHEROIC_A"] = {
- { 1, 47095, "", "=q4=Cloak of Displacement", "=ds=#s4#"};
- { 2, 47084, "", "=q4=Cord of Biting Cold", "=ds=#s10#, #a1#"};
- { 3, 47097, "", "=q4=Boots of the Mourning Widow", "=ds=#s12#, #a1#"};
- { 4, 47096, "", "=q4=Vestments of the Shattered Fellowship", "=ds=#s5#, #a2#"};
- { 5, 47077, "", "=q4=Treads of the Icewalker", "=ds=#s12#, #a2#"};
- { 6, 47074, "", "=q4=Bracers of the Untold Massacre", "=ds=#s8#, #a3#"};
- { 7, 47087, "", "=q4=Legguards of Concealed Hatred", "=ds=#s11#, #a3#"};
- { 8, 47099, "", "=q4=Boots of Tremoring Earth", "=ds=#s12#, #a3#"};
- { 9, 47086, "", "=q4=Chestplate of the Frostborn Hero", "=ds=#s5#, #a4#"};
- { 10, 47098, "", "=q4=Vambraces of the Broken Bond", "=ds=#s8#, #a4#"};
- { 11, 47076, "", "=q4=Girdle of Bloodied Scars", "=ds=#s10#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47075, "", "=q4=Ring of Callous Aggression", "=ds=#s13#"};
- { 19, 47088, "", "=q4=Satrina's Impeding Scarab", "=ds=#s14#"};
- { 21, 47078, "", "=q4=Justicebringer", "=ds=#h2#, #w1#"};
- { 22, 47085, "", "=q4=Bastion of Purity", "=ds=#w8#"};
- Prev = "TrialoftheCrusaderLordJaraxxus25ManHEROIC_A";
- Next = "TrialoftheCrusaderTwinValkyrs25ManHEROIC_A";
+ {
+ Name = AL["Faction Champions"];
+ { 1, 47095, "", "=q4=Cloak of Displacement", "=ds=#s4#" };
+ { 2, 47084, "", "=q4=Cord of Biting Cold", "=ds=#s10#, #a1#" };
+ { 3, 47097, "", "=q4=Boots of the Mourning Widow", "=ds=#s12#, #a1#" };
+ { 4, 47096, "", "=q4=Vestments of the Shattered Fellowship", "=ds=#s5#, #a2#" };
+ { 5, 47077, "", "=q4=Treads of the Icewalker", "=ds=#s12#, #a2#" };
+ { 6, 47074, "", "=q4=Bracers of the Untold Massacre", "=ds=#s8#, #a3#" };
+ { 7, 47087, "", "=q4=Legguards of Concealed Hatred", "=ds=#s11#, #a3#" };
+ { 8, 47099, "", "=q4=Boots of Tremoring Earth", "=ds=#s12#, #a3#" };
+ { 9, 47086, "", "=q4=Chestplate of the Frostborn Hero", "=ds=#s5#, #a4#" };
+ { 10, 47098, "", "=q4=Vambraces of the Broken Bond", "=ds=#s8#, #a4#" };
+ { 11, 47076, "", "=q4=Girdle of Bloodied Scars", "=ds=#s10#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47075, "", "=q4=Ring of Callous Aggression", "=ds=#s13#" };
+ { 19, 47088, "", "=q4=Satrina's Impeding Scarab", "=ds=#s14#" };
+ { 21, 47078, "", "=q4=Justicebringer", "=ds=#h2#, #w1#" };
+ { 22, 47085, "", "=q4=Bastion of Purity", "=ds=#w8#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderFactionChampions25ManHEROIC_H"] = {
- { 1, 47452, "", "=q4=Shroud of Displacement", "=ds=#s4#"};
- { 2, 47447, "", "=q4=Belt of Biting Cold", "=ds=#s10#, #a1#"};
- { 3, 47454, "", "=q4=Sandals of the Mourning Widow", "=ds=#s12#, #a1#"};
- { 4, 47453, "", "=q4=Robes of the Shattered Fellowship", "=ds=#s5#, #a2#"};
- { 5, 47445, "", "=q4=Icewalker Treads", "=ds=#s12#, #a2#"};
- { 6, 47442, "", "=q4=Bracers of the Silent Massacre", "=ds=#s8#, #a3#"};
- { 7, 47450, "", "=q4=Leggings of Concealed Hatred", "=ds=#s11#, #a3#"};
- { 8, 47456, "", "=q4=Sabatons of Tremoring Earth", "=ds=#s12#, #a3#"};
- { 9, 47449, "", "=q4=Chestplate of the Frostwolf Hero", "=ds=#s5#, #a4#"};
- { 10, 47455, "", "=q4=Bracers of the Broken Bond", "=ds=#s8#, #a4#"};
- { 11, 47444, "", "=q4=Belt of Bloodied Scars", "=ds=#s10#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47443, "", "=q4=Band of Callous Aggression", "=ds=#s13#"};
- { 19, 47451, "", "=q4=Juggernaut's Vitality", "=ds=#s14#"};
- { 21, 47446, "", "=q4=Dual-blade Butcher", "=ds=#h2#, #w1#"};
- { 22, 47448, "", "=q4=Bastion of Resolve", "=ds=#w8#"};
- Prev = "TrialoftheCrusaderLordJaraxxus25ManHEROIC_H";
- Next = "TrialoftheCrusaderTwinValkyrs25ManHEROIC_H";
+ {
+ Name = AL["Faction Champions"];
+ { 1, 47452, "", "=q4=Shroud of Displacement", "=ds=#s4#" };
+ { 2, 47447, "", "=q4=Belt of Biting Cold", "=ds=#s10#, #a1#" };
+ { 3, 47454, "", "=q4=Sandals of the Mourning Widow", "=ds=#s12#, #a1#" };
+ { 4, 47453, "", "=q4=Robes of the Shattered Fellowship", "=ds=#s5#, #a2#" };
+ { 5, 47445, "", "=q4=Icewalker Treads", "=ds=#s12#, #a2#" };
+ { 6, 47442, "", "=q4=Bracers of the Silent Massacre", "=ds=#s8#, #a3#" };
+ { 7, 47450, "", "=q4=Leggings of Concealed Hatred", "=ds=#s11#, #a3#" };
+ { 8, 47456, "", "=q4=Sabatons of Tremoring Earth", "=ds=#s12#, #a3#" };
+ { 9, 47449, "", "=q4=Chestplate of the Frostwolf Hero", "=ds=#s5#, #a4#" };
+ { 10, 47455, "", "=q4=Bracers of the Broken Bond", "=ds=#s8#, #a4#" };
+ { 11, 47444, "", "=q4=Belt of Bloodied Scars", "=ds=#s10#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47443, "", "=q4=Band of Callous Aggression", "=ds=#s13#" };
+ { 19, 47451, "", "=q4=Juggernaut's Vitality", "=ds=#s14#" };
+ { 21, 47446, "", "=q4=Dual-blade Butcher", "=ds=#h2#, #w1#" };
+ { 22, 47448, "", "=q4=Bastion of Resolve", "=ds=#w8#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderTwinValkyrsHEROIC_A"] = {
- { 1, 47956, "", "=q4=Gloves of Looming Shadow", "=ds=#s9#, #a1#"};
- { 2, 49234, "", "=q4=Boots of the Grieving Soul", "=ds=#s12#, #a1#"};
- { 3, 47959, "", "=q4=Helm of the Snowy Grotto", "=ds=#s1#, #a2#"};
- { 4, 47954, "", "=q4=Armor of Shifting Shadows", "=ds=#s5#, #a2#"};
- { 5, 47961, "", "=q4=Gloves of the Azure Prophet", "=ds=#s9#, #a3#"};
- { 6, 47952, "", "=q4=Sabatons of the Lingering Vortex", "=ds=#s12#, #a4#"};
- { 8, 47957, "", "=q4=Darkbane Pendant", "=ds=#s2#"};
- { 9, 47955, "", "=q4=Loop of the Twin Val'kyr", "=ds=#s13#"};
- { 10, 47958, "", "=q4=Chalice of Benedictus", "=ds=#s15#"};
- { 16, 47953, "", "=q4=Icefall Blade", "=ds=#h1#, #w4#"};
- { 17, 47951, "", "=q4=Reckoning", "=ds=#h2#, #w10#"};
- { 18, 47960, "", "=q4=Enlightenment", "=ds=#w9#"};
- { 19, 47950, "", "=q4=The Diplomat", "=ds=#w5#"};
- Prev = "TrialoftheCrusaderFactionChampionsHEROIC_A";
- Next = "TrialoftheCrusaderAnubarakHEROIC_A";
+ {
+ Name = BabbleBoss["The Twin Val'kyr"];
+ { 1, 47956, "", "=q4=Gloves of Looming Shadow", "=ds=#s9#, #a1#" };
+ { 2, 49234, "", "=q4=Boots of the Grieving Soul", "=ds=#s12#, #a1#" };
+ { 3, 47959, "", "=q4=Helm of the Snowy Grotto", "=ds=#s1#, #a2#" };
+ { 4, 47954, "", "=q4=Armor of Shifting Shadows", "=ds=#s5#, #a2#" };
+ { 5, 47961, "", "=q4=Gloves of the Azure Prophet", "=ds=#s9#, #a3#" };
+ { 6, 47952, "", "=q4=Sabatons of the Lingering Vortex", "=ds=#s12#, #a4#" };
+ { 8, 47957, "", "=q4=Darkbane Pendant", "=ds=#s2#" };
+ { 9, 47955, "", "=q4=Loop of the Twin Val'kyr", "=ds=#s13#" };
+ { 10, 47958, "", "=q4=Chalice of Benedictus", "=ds=#s15#" };
+ { 16, 47953, "", "=q4=Icefall Blade", "=ds=#h1#, #w4#" };
+ { 17, 47951, "", "=q4=Reckoning", "=ds=#h2#, #w10#" };
+ { 18, 47960, "", "=q4=Enlightenment", "=ds=#w9#" };
+ { 19, 47950, "", "=q4=The Diplomat", "=ds=#w5#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderTwinValkyrsHEROIC_H"] = {
- { 1, 48028, "", "=q4=Looming Shadow Wraps", "=ds=#s9#, #a1#"};
- { 2, 49233, "", "=q4=Sandals of the Grieving Soul", "=ds=#s12#, #a1#"};
- { 3, 48034, "", "=q4=Helm of the High Mesa", "=ds=#s1#, #a2#"};
- { 4, 48026, "", "=q4=Vest of Shifting Shadows", "=ds=#s5#, #a2#"};
- { 5, 48038, "", "=q4=Sen'jin Ritualist Gloves", "=ds=#s9#, #a3#"};
- { 6, 48024, "", "=q4=Greaves of the Lingering Vortex", "=ds=#s12#, #a4#"};
- { 8, 48030, "", "=q4=Darkbane Amulet", "=ds=#s2#"};
- { 9, 48027, "", "=q4=Band of the Twin Val'kyr", "=ds=#s13#"};
- { 10, 48032, "", "=q4=Lightbane Focus", "=ds=#s15#"};
- { 16, 48025, "", "=q4=Nemesis Blade", "=ds=#h1#, #w4#"};
- { 17, 48023, "", "=q4=Edge of Agony", "=ds=#h2#, #w10#"};
- { 18, 48036, "", "=q4=Illumination", "=ds=#w9#"};
- { 19, 48022, "", "=q4=Widebarrel Flintlock", "=ds=#w5#"};
- Prev = "TrialoftheCrusaderFactionChampionsHEROIC_H";
- Next = "TrialoftheCrusaderAnubarakHEROIC_H";
+ {
+ Name = BabbleBoss["The Twin Val'kyr"];
+ { 1, 48028, "", "=q4=Looming Shadow Wraps", "=ds=#s9#, #a1#" };
+ { 2, 49233, "", "=q4=Sandals of the Grieving Soul", "=ds=#s12#, #a1#" };
+ { 3, 48034, "", "=q4=Helm of the High Mesa", "=ds=#s1#, #a2#" };
+ { 4, 48026, "", "=q4=Vest of Shifting Shadows", "=ds=#s5#, #a2#" };
+ { 5, 48038, "", "=q4=Sen'jin Ritualist Gloves", "=ds=#s9#, #a3#" };
+ { 6, 48024, "", "=q4=Greaves of the Lingering Vortex", "=ds=#s12#, #a4#" };
+ { 8, 48030, "", "=q4=Darkbane Amulet", "=ds=#s2#" };
+ { 9, 48027, "", "=q4=Band of the Twin Val'kyr", "=ds=#s13#" };
+ { 10, 48032, "", "=q4=Lightbane Focus", "=ds=#s15#" };
+ { 16, 48025, "", "=q4=Nemesis Blade", "=ds=#h1#, #w4#" };
+ { 17, 48023, "", "=q4=Edge of Agony", "=ds=#h2#, #w10#" };
+ { 18, 48036, "", "=q4=Illumination", "=ds=#w9#" };
+ { 19, 48022, "", "=q4=Widebarrel Flintlock", "=ds=#w5#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderTwinValkyrs25ManHEROIC_A"] = {
- { 1, 47129, "", "=q4=Skyweaver Robes", "=ds=#s5#, #a1#"};
- { 2, 47143, "", "=q4=Bindings of Dark Essence", "=ds=#s8#, #a1#"};
- { 3, 47112, "", "=q4=Belt of the Merciless Killer", "=ds=#s10#, #a2#"};
- { 4, 47145, "", "=q4=Cord of Pale Thorns", "=ds=#s10#, #a2#"};
- { 5, 47109, "", "=q4=Sabatons of Ruthless Judgment", "=ds=#s12#, #a3#"};
- { 6, 47147, "", "=q4=Breastplate of the Frozen Lake", "=ds=#s5#, #a4#"};
- { 7, 47111, "", "=q4=Bracers of the Shieldmaiden", "=ds=#s8#, #a4#"};
- { 8, 47132, "", "=q4=Legguards of Ascension", "=ds=#s11#, #a4#"};
- { 10, 47133, "", "=q4=The Arbiter's Muse", "=ds=#s2#"};
- { 11, 47110, "", "=q4=The Executioner's Malice", "=ds=#s2#"};
- { 12, 47144, "", "=q4=Wail of the Val'kyr", "=ds=#s2#"};
- { 13, 47131, "", "=q4=Death's Verdict", "=ds=#s14#"};
- { 14, 47146, "", "=q4=Chalice of Searing Light", "=ds=#s15#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47113, "", "=q4=Twin Spike", "=ds=#h1#, #w4#"};
- { 19, 47130, "", "=q4=Lupine Longstaff", "=ds=#w9#"};
- Prev = "TrialoftheCrusaderFactionChampions25ManHEROIC_A";
- Next = "TrialoftheCrusaderAnubarak25ManHEROIC_A";
+ {
+ Name = BabbleBoss["The Twin Val'kyr"];
+ { 1, 47129, "", "=q4=Skyweaver Robes", "=ds=#s5#, #a1#" };
+ { 2, 47143, "", "=q4=Bindings of Dark Essence", "=ds=#s8#, #a1#" };
+ { 3, 47112, "", "=q4=Belt of the Merciless Killer", "=ds=#s10#, #a2#" };
+ { 4, 47145, "", "=q4=Cord of Pale Thorns", "=ds=#s10#, #a2#" };
+ { 5, 47109, "", "=q4=Sabatons of Ruthless Judgment", "=ds=#s12#, #a3#" };
+ { 6, 47147, "", "=q4=Breastplate of the Frozen Lake", "=ds=#s5#, #a4#" };
+ { 7, 47111, "", "=q4=Bracers of the Shieldmaiden", "=ds=#s8#, #a4#" };
+ { 8, 47132, "", "=q4=Legguards of Ascension", "=ds=#s11#, #a4#" };
+ { 10, 47133, "", "=q4=The Arbiter's Muse", "=ds=#s2#" };
+ { 11, 47110, "", "=q4=The Executioner's Malice", "=ds=#s2#" };
+ { 12, 47144, "", "=q4=Wail of the Val'kyr", "=ds=#s2#" };
+ { 13, 47131, "", "=q4=Death's Verdict", "=ds=#s14#" };
+ { 14, 47146, "", "=q4=Chalice of Searing Light", "=ds=#s15#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47113, "", "=q4=Twin Spike", "=ds=#h1#, #w4#" };
+ { 19, 47130, "", "=q4=Lupine Longstaff", "=ds=#w9#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderTwinValkyrs25ManHEROIC_H"] = {
- { 1, 47462, "", "=q4=Skyweaver Vestments", "=ds=#s5#, #a1#"};
- { 2, 47467, "", "=q4=Dark Essence Bindings", "=ds=#s8#, #a1#"};
- { 3, 47469, "", "=q4=Belt of Pale Thorns", "=ds=#s10#, #a2#"};
- { 4, 47460, "", "=q4=Belt of the Pitiless Killer", "=ds=#s10#, #a2#"};
- { 5, 47457, "", "=q4=Greaves of Ruthless Judgment", "=ds=#s12#, #a3#"};
- { 6, 47471, "", "=q4=Chestplate of the Frozen Lake", "=ds=#s5#, #a4#"};
- { 7, 47459, "", "=q4=Armguards of the Shieldmaiden", "=ds=#s8#, #a4#"};
- { 8, 47465, "", "=q4=Legplates of Ascension", "=ds=#s11#, #a4#"};
- { 10, 47468, "", "=q4=Cry of the Val'kyr", "=ds=#s2#"};
- { 11, 47466, "", "=q4=Legionnaire's Gorget", "=ds=#s2#"};
- { 12, 47458, "", "=q4=The Executioner's Vice", "=ds=#s2#"};
- { 13, 47464, "", "=q4=Death's Choice", "=ds=#s14#"};
- { 14, 47470, "", "=q4=Mystifying Charm", "=ds=#s15#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47461, "", "=q4=Gouge of the Frigid Heart", "=ds=#h1#, #w4#"};
- { 19, 47463, "", "=q4=Twin's Pact", "=ds=#w9#"};
- Prev = "TrialoftheCrusaderFactionChampions25ManHEROIC_H";
- Next = "TrialoftheCrusaderAnubarak25ManHEROIC_H";
+ {
+ Name = BabbleBoss["The Twin Val'kyr"];
+ { 1, 47462, "", "=q4=Skyweaver Vestments", "=ds=#s5#, #a1#" };
+ { 2, 47467, "", "=q4=Dark Essence Bindings", "=ds=#s8#, #a1#" };
+ { 3, 47469, "", "=q4=Belt of Pale Thorns", "=ds=#s10#, #a2#" };
+ { 4, 47460, "", "=q4=Belt of the Pitiless Killer", "=ds=#s10#, #a2#" };
+ { 5, 47457, "", "=q4=Greaves of Ruthless Judgment", "=ds=#s12#, #a3#" };
+ { 6, 47471, "", "=q4=Chestplate of the Frozen Lake", "=ds=#s5#, #a4#" };
+ { 7, 47459, "", "=q4=Armguards of the Shieldmaiden", "=ds=#s8#, #a4#" };
+ { 8, 47465, "", "=q4=Legplates of Ascension", "=ds=#s11#, #a4#" };
+ { 10, 47468, "", "=q4=Cry of the Val'kyr", "=ds=#s2#" };
+ { 11, 47466, "", "=q4=Legionnaire's Gorget", "=ds=#s2#" };
+ { 12, 47458, "", "=q4=The Executioner's Vice", "=ds=#s2#" };
+ { 13, 47464, "", "=q4=Death's Choice", "=ds=#s14#" };
+ { 14, 47470, "", "=q4=Mystifying Charm", "=ds=#s15#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47461, "", "=q4=Gouge of the Frigid Heart", "=ds=#h1#, #w4#" };
+ { 19, 47463, "", "=q4=Twin's Pact", "=ds=#w9#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderAnubarakHEROIC_A"] = {
- { 1, 47974, "", "=q4=Vestments of the Sleepless", "=ds=#s5#, #a1#"};
+ {
+ Name = BabbleBoss["Anub'arak"];
+ { 1, 47974, "", "=q4=Vestments of the Sleepless", "=ds=#s5#, #a1#" };
{ 2, 47977, "", "=q4=Cinch of the Undying", "=ds=#s10#, #a1#" };
{ 3, 47972, "", "=q4=Spaulders of the Snow Bandit", "=ds=#s3#, #a2#" };
{ 4, 47965, "", "=q4=Headpiece of the Crypt Lord", "=ds=#s1#, #a3#" };
@@ -5493,12 +5386,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 47978, "", "=q4=Bulwark of the Royal Guard", "=ds=#w8#" };
{ 19, 47963, "", "=q4=Vigilant Ward", "=ds=#w8#" };
{ 20, 47975, "", "=q4=Baelgun's Heavy Crossbow", "=ds=#w3#" };
- Prev = "TrialoftheCrusaderTwinValkyrsHEROIC_A";
- Next = "TrialoftheCrusaderTributeHEROIC_A";
};
-
- AtlasLoot_Data["TrialoftheCrusaderAnubarakHEROIC_H"] = {
- { 1, 48051, "", "=q4=Robes of the Sleepless", "=ds=#s5#, #a1#"};
+ {
+ Name = BabbleBoss["Anub'arak"];
+ { 1, 48051, "", "=q4=Robes of the Sleepless", "=ds=#s5#, #a1#" };
{ 2, 48054, "", "=q4=Belt of the Eternal", "=ds=#s10#, #a1#" };
{ 3, 48049, "", "=q4=Shoulderpads of the Snow Bandit", "=ds=#s3#, #a2#" };
{ 4, 48042, "", "=q4=Helm of the Crypt Lord", "=ds=#s1#, #a3#" };
@@ -5516,169 +5407,160 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 48055, "", "=q4=Aegis of the Coliseum", "=ds=#w8#" };
{ 19, 48040, "", "=q4=Pride of the Kor'kron", "=ds=#w8#" };
{ 20, 48052, "", "=q4=Darkmaw Crossbow", "=ds=#w3#" };
- Prev = "TrialoftheCrusaderTwinValkyrsHEROIC_H";
- Next = "TrialoftheCrusaderTributeHEROIC_H";
};
-
- AtlasLoot_Data["TrialoftheCrusaderAnubarak25ManHEROIC_A"] = {
- { 1, 47238, "", "=q4=Maiden's Favor", "=ds=#s4#"};
- { 2, 47192, "", "=q4=Strength of the Nerub", "=ds=#s4#"};
- { 3, 47208, "", "=q4=Armbands of the Ashen Saint", "=ds=#s8#, #a1#"};
- { 4, 47236, "", "=q4=Gloves of the Lifeless Touch", "=ds=#s9#, #a1#"};
- { 5, 47189, "", "=q4=Leggings of the Deepening Void", "=ds=#s11#, #a1#"};
- { 6, 47205, "", "=q4=Footpads of the Icy Floe", "=ds=#s12#, #a1#"};
- { 7, 47155, "", "=q4=Bracers of Dark Determination", "=ds=#s8#, #a2#"};
- { 8, 47190, "", "=q4=Legwraps of the Awakening", "=ds=#s11#, #a2#"};
- { 9, 47209, "", "=q4=Chestguard of Flowing Elements", "=ds=#s5#, #a3#"};
- { 10, 47153, "", "=q4=Belt of Deathly Dominion", "=ds=#s10#, #a3#"};
- { 11, 47191, "", "=q4=Legguards of the Lurking Threat", "=ds=#s11#, #a3#"};
- { 12, 47240, "", "=q4=Gloves of Bitter Reprisal", "=ds=#s9#, #a4#"};
- { 13, 47207, "", "=q4=Belt of the Forgotten Martyr", "=ds=#s10#, #a4#"};
- { 14, 47154, "", "=q4=Greaves of the 7th Legion", "=ds=#s12#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47237, "", "=q4=Band of Deplorable Violence", "=ds=#s13#"};
- { 19, 47157, "", "=q4=Signet of the Traitor King", "=ds=#s13#"};
- { 20, 47188, "", "=q4=Reign of the Unliving", "=ds=#s14#"};
- { 22, 47156, "", "=q4=Stormpike Cleaver", "=ds=#h1#, #w1#"};
- { 23, 47206, "", "=q4=Misery's End", "=ds=#h3#, #w6#"};
- { 24, 47239, "", "=q4=Archon Glaive", "=ds=#w7#"};
- Prev = "TrialoftheCrusaderTwinValkyrs25ManHEROIC_A";
- Next = "TrialoftheCrusaderTribute25ManHEROIC_A";
+ {
+ Name = BabbleBoss["Anub'arak"];
+ { 1, 47238, "", "=q4=Maiden's Favor", "=ds=#s4#" };
+ { 2, 47192, "", "=q4=Strength of the Nerub", "=ds=#s4#" };
+ { 3, 47208, "", "=q4=Armbands of the Ashen Saint", "=ds=#s8#, #a1#" };
+ { 4, 47236, "", "=q4=Gloves of the Lifeless Touch", "=ds=#s9#, #a1#" };
+ { 5, 47189, "", "=q4=Leggings of the Deepening Void", "=ds=#s11#, #a1#" };
+ { 6, 47205, "", "=q4=Footpads of the Icy Floe", "=ds=#s12#, #a1#" };
+ { 7, 47155, "", "=q4=Bracers of Dark Determination", "=ds=#s8#, #a2#" };
+ { 8, 47190, "", "=q4=Legwraps of the Awakening", "=ds=#s11#, #a2#" };
+ { 9, 47209, "", "=q4=Chestguard of Flowing Elements", "=ds=#s5#, #a3#" };
+ { 10, 47153, "", "=q4=Belt of Deathly Dominion", "=ds=#s10#, #a3#" };
+ { 11, 47191, "", "=q4=Legguards of the Lurking Threat", "=ds=#s11#, #a3#" };
+ { 12, 47240, "", "=q4=Gloves of Bitter Reprisal", "=ds=#s9#, #a4#" };
+ { 13, 47207, "", "=q4=Belt of the Forgotten Martyr", "=ds=#s10#, #a4#" };
+ { 14, 47154, "", "=q4=Greaves of the 7th Legion", "=ds=#s12#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47237, "", "=q4=Band of Deplorable Violence", "=ds=#s13#" };
+ { 19, 47157, "", "=q4=Signet of the Traitor King", "=ds=#s13#" };
+ { 20, 47188, "", "=q4=Reign of the Unliving", "=ds=#s14#" };
+ { 22, 47156, "", "=q4=Stormpike Cleaver", "=ds=#h1#, #w1#" };
+ { 23, 47206, "", "=q4=Misery's End", "=ds=#h3#, #w6#" };
+ { 24, 47239, "", "=q4=Archon Glaive", "=ds=#w7#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderAnubarak25ManHEROIC_H"] = {
- { 1, 47490, "", "=q4=Maiden's Adoration", "=ds=#s4#"};
- { 2, 47481, "", "=q4=Might of the Nerub", "=ds=#s4#"};
- { 3, 47485, "", "=q4=Bindings of the Ashen Saint", "=ds=#s8#, #a1#"};
- { 4, 47487, "", "=q4=Handwraps of the Lifeless Touch", "=ds=#s9#, #a1#"};
- { 5, 47478, "", "=q4=Breeches of the Deepening Void", "=ds=#s11#, #a1#"};
- { 6, 47482, "", "=q4=Boots of the Icy Floe", "=ds=#s12#, #a1#"};
- { 7, 47474, "", "=q4=Armbands of Dark Determination", "=ds=#s8#, #a2#"};
- { 8, 47479, "", "=q4=Leggings of the Awakening", "=ds=#s11#, #a2#"};
- { 9, 47486, "", "=q4=Cuirass of Flowing Elements", "=ds=#s5#, #a3#"};
- { 10, 47472, "", "=q4=Waistguard of Deathly Dominion", "=ds=#s10#, #a3#"};
- { 11, 47480, "", "=q4=Leggings of the Lurking Threat", "=ds=#s11#, #a3#"};
- { 12, 47492, "", "=q4=Gauntlets of Bitter Reprisal", "=ds=#s9#, #a4#"};
- { 13, 47484, "", "=q4=Girdle of the Forgotten Martyr", "=ds=#s10#, #a4#"};
- { 14, 47473, "", "=q4=Greaves of the Saronite Citadel", "=ds=#s12#, #a4#"};
- { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
- { 18, 47476, "", "=q4=Band of the Traitor King", "=ds=#s13#"};
- { 19, 47489, "", "=q4=Lurid Manifestation", "=ds=#s13#"};
- { 20, 47477, "", "=q4=Reign of the Dead", "=ds=#s14#"};
- { 22, 47475, "", "=q4=Hellscream Slicer", "=ds=#h1#, #w1#"};
- { 23, 47483, "", "=q4=Suffering's End", "=ds=#h3#, #w6#"};
- { 24, 47491, "", "=q4=Hellion Glaive", "=ds=#w7#"};
- Prev = "TrialoftheCrusaderTwinValkyrs25ManHEROIC_H";
- Next = "TrialoftheCrusaderTribute25ManHEROIC_H";
+ {
+ Name = BabbleBoss["Anub'arak"];
+ { 1, 47490, "", "=q4=Maiden's Adoration", "=ds=#s4#" };
+ { 2, 47481, "", "=q4=Might of the Nerub", "=ds=#s4#" };
+ { 3, 47485, "", "=q4=Bindings of the Ashen Saint", "=ds=#s8#, #a1#" };
+ { 4, 47487, "", "=q4=Handwraps of the Lifeless Touch", "=ds=#s9#, #a1#" };
+ { 5, 47478, "", "=q4=Breeches of the Deepening Void", "=ds=#s11#, #a1#" };
+ { 6, 47482, "", "=q4=Boots of the Icy Floe", "=ds=#s12#, #a1#" };
+ { 7, 47474, "", "=q4=Armbands of Dark Determination", "=ds=#s8#, #a2#" };
+ { 8, 47479, "", "=q4=Leggings of the Awakening", "=ds=#s11#, #a2#" };
+ { 9, 47486, "", "=q4=Cuirass of Flowing Elements", "=ds=#s5#, #a3#" };
+ { 10, 47472, "", "=q4=Waistguard of Deathly Dominion", "=ds=#s10#, #a3#" };
+ { 11, 47480, "", "=q4=Leggings of the Lurking Threat", "=ds=#s11#, #a3#" };
+ { 12, 47492, "", "=q4=Gauntlets of Bitter Reprisal", "=ds=#s9#, #a4#" };
+ { 13, 47484, "", "=q4=Girdle of the Forgotten Martyr", "=ds=#s10#, #a4#" };
+ { 14, 47473, "", "=q4=Greaves of the Saronite Citadel", "=ds=#s12#, #a4#" };
+ { 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#" };
+ { 18, 47476, "", "=q4=Band of the Traitor King", "=ds=#s13#" };
+ { 19, 47489, "", "=q4=Lurid Manifestation", "=ds=#s13#" };
+ { 20, 47477, "", "=q4=Reign of the Dead", "=ds=#s14#" };
+ { 22, 47475, "", "=q4=Hellscream Slicer", "=ds=#h1#, #w1#" };
+ { 23, 47483, "", "=q4=Suffering's End", "=ds=#h3#, #w6#" };
+ { 24, 47491, "", "=q4=Hellion Glaive", "=ds=#w7#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderTributeHEROIC_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["Call of the Grand Crusade"]};
- { 2, 47242, "", "=q4=Trophy of the Crusade", "=ds=2x #e15#"};
- { 4, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Skill (25)"]};
- { 5, 48712, "", "=q4=The Spinebreaker", "=ds=#h3#, #w13#"};
- { 6, 48708, "", "=q4=Spellstorm Blade", "=ds=#h3#, #w10#"};
- { 7, 48713, "", "=q4=Lothar's Edge", "=ds=#h2#, #w1#"};
- { 8, 48709, "", "=q4=Heartcrusher", "=ds=#h3#, #w6#"};
- { 9, 48714, "", "=q4=Honor of the Fallen", "=ds=#h1#, #w6#"};
- { 10, 48710, "", "=q4=Paragon's Breadth", "=ds=#w9#"};
- { 11, 48711, "", "=q4=Rhok'shalla, the Shadow's Bane", "=ds=#w2#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Mad Skill (45)"]};
- { 17, 47242, "", "=q4=Trophy of the Crusade", "=ds=2x #e15#"};
- { 19, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Insanity (50)"]};
+ {
+ Name = AL["Tribute Run"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["Call of the Grand Crusade"] };
+ { 2, 47242, "", "=q4=Trophy of the Crusade", "=ds=2x #e15#" };
+ { 4, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["A Tribute to Skill (25)"] };
+ { 5, 48712, "", "=q4=The Spinebreaker", "=ds=#h3#, #w13#" };
+ { 6, 48708, "", "=q4=Spellstorm Blade", "=ds=#h3#, #w10#" };
+ { 7, 48713, "", "=q4=Lothar's Edge", "=ds=#h2#, #w1#" };
+ { 8, 48709, "", "=q4=Heartcrusher", "=ds=#h3#, #w6#" };
+ { 9, 48714, "", "=q4=Honor of the Fallen", "=ds=#h1#, #w6#" };
+ { 10, 48710, "", "=q4=Paragon's Breadth", "=ds=#w9#" };
+ { 11, 48711, "", "=q4=Rhok'shalla, the Shadow's Bane", "=ds=#w2#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["A Tribute to Mad Skill (45)"] };
+ { 17, 47242, "", "=q4=Trophy of the Crusade", "=ds=2x #e15#" };
+ { 19, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["A Tribute to Insanity (50)"] };
{ 20, 48673, "", "=q4=Cloak of the Silver Covenant", "=ds=#s4#" };
{ 21, 48675, "", "=q4=Cloak of the Unmoving Guardian", "=ds=#s4#" };
{ 22, 48674, "", "=q4=Cloak of the Victorious Combatant", "=ds=#s4#" };
{ 23, 48671, "", "=q4=Drape of Bitter Incantation", "=ds=#s4#" };
{ 24, 48672, "", "=q4=Shawl of the Fervent Crusader", "=ds=#s4#" };
- { 25, 49044, "", "=q4=Swift Alliance Steed", "=ds=#e12# =ec1=#m7#"};
- Prev = "TrialoftheCrusaderAnubarakHEROIC_A";
- Next = "TrialoftheCrusaderPatterns_A";
+ { 25, 49044, "", "=q4=Swift Alliance Steed", "=ds=#e12# =ec1=#m7#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderTributeHEROIC_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["Call of the Grand Crusade"]};
- { 2, 47242, "", "=q4=Trophy of the Crusade", "=ds=2x #e15#"};
- { 4, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Skill (25)"]};
+ {
+ Name = AL["Tribute Run"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["Call of the Grand Crusade"] };
+ { 2, 47242, "", "=q4=Trophy of the Crusade", "=ds=2x #e15#" };
+ { 4, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["A Tribute to Skill (25)"] };
{ 5, 48703, "", "=q4=The Facebreaker", "=ds=#h3#, #w13#" };
{ 6, 48701, "", "=q4=Spellharvest", "=ds=#h3#, #w10#" };
{ 7, 48695, "", "=q4=Mor'kosh, the Bloodreaver", "=ds=#h2#, #w1#" };
{ 8, 48693, "", "=q4=Heartsmasher", "=ds=#h3#, #w6#" };
{ 9, 48699, "", "=q4=Blood and Glory", "=ds=#h1#, #w6#" };
{ 10, 48705, "", "=q4=Attrition", "=ds=#w9#" };
- { 11, 48697, "", "=q4=Frenzystrike Longbow", "=ds=#w2#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Mad Skill (45)"]};
- { 17, 47242, "", "=q4=Trophy of the Crusade", "=ds=2x #e15#"};
- { 19, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Insanity (50)"]};
+ { 11, 48697, "", "=q4=Frenzystrike Longbow", "=ds=#w2#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["A Tribute to Mad Skill (45)"] };
+ { 17, 47242, "", "=q4=Trophy of the Crusade", "=ds=2x #e15#" };
+ { 19, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["A Tribute to Insanity (50)"] };
{ 20, 48668, "", "=q4=Cloak of Serrated Blades", "=ds=#s4#" };
{ 21, 48669, "", "=q4=Cloak of the Triumphant Combatant", "=ds=#s4#" };
{ 22, 48670, "", "=q4=Cloak of the Unflinching Guardian", "=ds=#s4#" };
{ 23, 48666, "", "=q4=Drape of the Sunreavers", "=ds=#s4#" };
{ 24, 48667, "", "=q4=Shawl of the Devout Crusader", "=ds=#s4#" };
- { 25, 49046, "", "=q4=Swift Horde Wolf", "=ds=#e12# =ec1=#m6#"};
- Prev = "TrialoftheCrusaderAnubarakHEROIC_H";
- Next = "TrialoftheCrusaderPatterns_H";
+ { 25, 49046, "", "=q4=Swift Horde Wolf", "=ds=#e12# =ec1=#m6#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderTribute25ManHEROIC_A"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["Call of the Grand Crusade"]};
- { 2, 47557, "", "=q4=Regalia of the Grand Conqueror", "=ds=#e15#"};
- { 3, 47558, "", "=q4=Regalia of the Grand Protector", "=ds=#e15#"};
- { 4, 47559, "", "=q4=Regalia of the Grand Vanquisher", "=ds=#e15#"};
- { 6, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Skill (25)"]};
- { 7, 47517, "", "=q4=Blade of the Unbroken Covenant", "=ds=#h3#, #w10#"};
- { 8, 47506, "", "=q4=Silverwing Defender", "=ds=#h1#, #w10#"};
- { 9, 47515, "", "=q4=Decimation", "=ds=#h2#, #w10#"};
- { 10, 47526, "", "=q4=Remorseless", "=ds=#h1#, #w6#"};
- { 11, 47519, "", "=q4=Catastrophe", "=ds=#h2#, #w6#"};
- { 12, 47524, "", "=q4=Clemency", "=ds=#w9#"};
- { 13, 47521, "", "=q4=BRK-1000", "=ds=#w5#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Mad Skill (45)"]};
- { 17, 47557, "", "=q4=Regalia of the Grand Conqueror", "=ds=#e15#"};
- { 18, 47558, "", "=q4=Regalia of the Grand Protector", "=ds=#e15#"};
- { 19, 47559, "", "=q4=Regalia of the Grand Vanquisher", "=ds=#e15#"};
- { 21, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Insanity (50)"]};
- { 22, 47553, "", "=q4=Bolvar's Devotion", "=ds=#s4#"};
- { 23, 47552, "", "=q4=Jaina's Radiance", "=ds=#s4#"};
- { 24, 47549, "", "=q4=Magni's Resolution", "=ds=#s4#"};
- { 25, 47545, "", "=q4=Vereesa's Dexterity", "=ds=#s4#"};
- { 26, 47547, "", "=q4=Varian's Furor", "=ds=#s4#"};
- Prev = "TrialoftheCrusaderAnubarak25ManHEROIC_A";
- Next = "TrialoftheCrusaderPatterns_A";
+ {
+ Name = AL["Tribute Run"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["Call of the Grand Crusade"] };
+ { 2, 47557, "", "=q4=Regalia of the Grand Conqueror", "=ds=#e15#" };
+ { 3, 47558, "", "=q4=Regalia of the Grand Protector", "=ds=#e15#" };
+ { 4, 47559, "", "=q4=Regalia of the Grand Vanquisher", "=ds=#e15#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["A Tribute to Skill (25)"] };
+ { 7, 47517, "", "=q4=Blade of the Unbroken Covenant", "=ds=#h3#, #w10#" };
+ { 8, 47506, "", "=q4=Silverwing Defender", "=ds=#h1#, #w10#" };
+ { 9, 47515, "", "=q4=Decimation", "=ds=#h2#, #w10#" };
+ { 10, 47526, "", "=q4=Remorseless", "=ds=#h1#, #w6#" };
+ { 11, 47519, "", "=q4=Catastrophe", "=ds=#h2#, #w6#" };
+ { 12, 47524, "", "=q4=Clemency", "=ds=#w9#" };
+ { 13, 47521, "", "=q4=BRK-1000", "=ds=#w5#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["A Tribute to Mad Skill (45)"] };
+ { 17, 47557, "", "=q4=Regalia of the Grand Conqueror", "=ds=#e15#" };
+ { 18, 47558, "", "=q4=Regalia of the Grand Protector", "=ds=#e15#" };
+ { 19, 47559, "", "=q4=Regalia of the Grand Vanquisher", "=ds=#e15#" };
+ { 21, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["A Tribute to Insanity (50)"] };
+ { 22, 47553, "", "=q4=Bolvar's Devotion", "=ds=#s4#" };
+ { 23, 47552, "", "=q4=Jaina's Radiance", "=ds=#s4#" };
+ { 24, 47549, "", "=q4=Magni's Resolution", "=ds=#s4#" };
+ { 25, 47545, "", "=q4=Vereesa's Dexterity", "=ds=#s4#" };
+ { 26, 47547, "", "=q4=Varian's Furor", "=ds=#s4#" };
};
-
- AtlasLoot_Data["TrialoftheCrusaderTribute25ManHEROIC_H"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["Call of the Grand Crusade"]};
- { 2, 47557, "", "=q4=Regalia of the Grand Conqueror", "=ds=#e15#"};
- { 3, 47558, "", "=q4=Regalia of the Grand Protector", "=ds=#e15#"};
- { 4, 47559, "", "=q4=Regalia of the Grand Vanquisher", "=ds=#e15#"};
- { 6, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Skill (25)"]};
- { 7, 47518, "", "=q4=Mortalis", "=ds=#h3#, #w10#"};
- { 8, 47513, "", "=q4=Ogrim's Deflector", "=ds=#h1#, #w10#"};
- { 9, 47516, "", "=q4=Fleshrender", "=ds=#h2#, #w10#"};
- { 10, 47528, "", "=q4=Cudgel of the Damned", "=ds=#h1#, #w6#"};
- { 11, 47520, "", "=q4=Grievance", "=ds=#h2#, #w6#"};
- { 12, 47525, "", "=q4=Sufferance", "=ds=#w9#"};
- { 13, 47523, "", "=q4=Fezzik's Autocannon", "=ds=#w5#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Mad Skill (45)"]};
- { 17, 47557, "", "=q4=Regalia of the Grand Conqueror", "=ds=#e15#"};
- { 18, 47558, "", "=q4=Regalia of the Grand Protector", "=ds=#e15#"};
- { 19, 47559, "", "=q4=Regalia of the Grand Vanquisher", "=ds=#e15#"};
- { 21, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Insanity (50)"]};
- { 22, 47551, "", "=q4=Aethas' Intensity", "=ds=#s4#"};
- { 23, 47550, "", "=q4=Cairne's Endurance", "=ds=#s4#"};
- { 24, 47548, "", "=q4=Garrosh's Rage", "=ds=#s4#"};
- { 25, 47554, "", "=q4=Lady Liadrin's Conviction", "=ds=#s4#"};
- { 26, 47546, "", "=q4=Sylvanas' Cunning", "=ds=#s4#"};
- Prev = "TrialoftheCrusaderAnubarak25ManHEROIC_H";
- Next = "TrialoftheCrusaderPatterns_H";
+ {
+ Name = AL["Tribute Run"];
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["Call of the Grand Crusade"] };
+ { 2, 47557, "", "=q4=Regalia of the Grand Conqueror", "=ds=#e15#" };
+ { 3, 47558, "", "=q4=Regalia of the Grand Protector", "=ds=#e15#" };
+ { 4, 47559, "", "=q4=Regalia of the Grand Vanquisher", "=ds=#e15#" };
+ { 6, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["A Tribute to Skill (25)"] };
+ { 7, 47518, "", "=q4=Mortalis", "=ds=#h3#, #w10#" };
+ { 8, 47513, "", "=q4=Ogrim's Deflector", "=ds=#h1#, #w10#" };
+ { 9, 47516, "", "=q4=Fleshrender", "=ds=#h2#, #w10#" };
+ { 10, 47528, "", "=q4=Cudgel of the Damned", "=ds=#h1#, #w6#" };
+ { 11, 47520, "", "=q4=Grievance", "=ds=#h2#, #w6#" };
+ { 12, 47525, "", "=q4=Sufferance", "=ds=#w9#" };
+ { 13, 47523, "", "=q4=Fezzik's Autocannon", "=ds=#w5#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["A Tribute to Mad Skill (45)"] };
+ { 17, 47557, "", "=q4=Regalia of the Grand Conqueror", "=ds=#e15#" };
+ { 18, 47558, "", "=q4=Regalia of the Grand Protector", "=ds=#e15#" };
+ { 19, 47559, "", "=q4=Regalia of the Grand Vanquisher", "=ds=#e15#" };
+ { 21, 0, "INV_Box_01", "=q6=" .. AL["Bonus Loot"], "=q5=" .. AL["A Tribute to Insanity (50)"] };
+ { 22, 47551, "", "=q4=Aethas' Intensity", "=ds=#s4#" };
+ { 23, 47550, "", "=q4=Cairne's Endurance", "=ds=#s4#" };
+ { 24, 47548, "", "=q4=Garrosh's Rage", "=ds=#s4#" };
+ { 25, 47554, "", "=q4=Lady Liadrin's Conviction", "=ds=#s4#" };
+ { 26, 47546, "", "=q4=Sylvanas' Cunning", "=ds=#s4#" };
};
+};
- -------------------------
- --- Onyxia (Level 80) ---
- -------------------------
+-------------------------
+--- Onyxia (Level 80) ---
+-------------------------
- AtlasLoot_Data["Onyxia_1"] = {
+AtlasLoot_Data["Onyxia80"] = {
+ Name = BabbleZone["Onyxia's Lair"];
+ Type = "WrathRaid";
+ {
+ Name = BabbleBoss["Onyxia"];
{ 1, 49307, "", "=q4=Fluttering Sapphiron Drape", "=ds=#s4#", "" };
{ 2, 49316, "", "=q4=Circlet of Transcendence", "=ds=#s1#, #a1#", "" };
{ 3, 49317, "", "=q4=Coronet of Transcendence", "=ds=#s1#, #a1#", "" };
@@ -5704,10 +5586,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 23, 49463, "", "=q4=Purified Shard of the Flame", "=ds=#s14#", "" };
{ 24, 49310, "", "=q4=Purified Shard of the Scale", "=ds=#s14#", "" };
{ 25, 49308, "", "=q4=Antique Cornerstone Grimoire", "=ds=#s15#", "" };
- Next = "Onyxia_2";
};
-
- AtlasLoot_Data["Onyxia_2"] = {
+ {
+ Name = BabbleBoss["Onyxia"];
{ 1, 49304, "", "=q4=Sharpened Fang of the Mystics", "=ds=#h3#, #w4#", "" };
{ 2, 49437, "", "=q4=Rusted Gutgore Ripper", "=ds=#h1#, #w4#", "" };
{ 3, 49298, "", "=q4=Glinting Azuresong Mageblade", "=ds=#h3#, #w10#", "" };
@@ -5725,10 +5606,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 21, 49295, "", "=q4=Enlarged Onyxia Hide Backpack", "=ds=#e1#", "" };
{ 22, 49294, "", "=q4=Ashen Sack of Gems", "=ds=#e7# #e1#", "" };
{ 24, 49636, "", "=q4=Reins of the Onyxian Drake", "=ds=#e12#", "" };
- Prev = "Onyxia_1";
};
-
- AtlasLoot_Data["Onyxia_125Man"] = {
+ {
+ Name = BabbleBoss["Onyxia"];
{ 1, 49491, "", "=q4=Flowing Sapphiron Drape", "=ds=#s4#", "" };
{ 2, 49482, "", "=q4=Aurora of Transcendence", "=ds=#s1#, #a1#", "" };
{ 3, 49483, "", "=q4=Halo of Transcendence", "=ds=#s1#, #a1#", "" };
@@ -5754,10 +5634,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 23, 49464, "", "=q4=Shiny Shard of the Flame", "=ds=#s14#", "" };
{ 24, 49488, "", "=q4=Shiny Shard of the Scale", "=ds=#s14#", "" };
{ 25, 49490, "", "=q4=Antediluvian Cornerstone Grimoire", "=ds=#s15#", "" };
- Next = "Onyxia_225Man";
};
-
- AtlasLoot_Data["Onyxia_225Man"] = {
+ {
+ Name = BabbleBoss["Onyxia"];
{ 1, 49494, "", "=q4=Honed Fang of the Mystics", "=ds=#h3# #w4#", "" };
{ 2, 49465, "", "=q4=Tarnished Gutgore Ripper", "=ds=#h1# #w4#", "" };
{ 3, 49499, "", "=q4=Polished Azuresong Mageblade", "=ds=#h3# #w10#", "" };
@@ -5775,2682 +5654,2357 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 21, 49295, "", "=q4=Enlarged Onyxia Hide Backpack", "=ds=#e1#", "" };
{ 22, 49294, "", "=q4=Ashen Sack of Gems", "=ds=#e7# #e1#", "" };
{ 24, 49636, "", "=q4=Reins of the Onyxian Drake", "=ds=#e12#", "" };
- Prev = "Onyxia_125Man";
};
-
- --------------------------
- --- The Forge of Souls ---
- --------------------------
-
- AtlasLoot_Data["FoSBronjahm"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 49788, "", "=q4=Cold Sweat Grips", "=ds=#s9#, #a1#"};
- { 3, 49785, "", "=q4=Bewildering Shoulderpads", "=ds=#s3#, #a2#"};
- { 4, 49786, "", "=q4=Robes of the Cheating Heart", "=ds=#s5#, #a2#"};
- { 5, 49787, "", "=q4=Seven Stormy Mornings", "=ds=#s8#, #a3#"};
- { 6, 49784, "", "=q4=Minister's Number One Legplates", "=ds=#s11#, #a4#"};
- { 7, 49783, "", "=q4=Lucky Old Sun", "=ds=#h1#, #w6#"};
- { 9, 50317, "", "=q4=Papa's New Bag", "=ds=#e1#"};
- { 10, 50316, "", "=q4=Papa's Brand New Bag", "=ds=#e1#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 50193, "", "=q4=Very Fashionable Shoulders", "=ds=#s3#, #a1#"};
- { 18, 50197, "", "=q4=Eyes of Bewilderment", "=ds=#s1#, #a3#"};
- { 19, 50194, "", "=q4=Weeping Gauntlets", "=ds=#s9#, #a4#"};
- { 20, 50196, "", "=q4=Love's Prisoner", "=ds=#s2#"};
- { 21, 50191, "", "=q4=Nighttime", "=ds=#h1#, #w1#"};
- { 22, 50169, "", "=q4=Papa's Brand New Knife", "=ds=#w11#"};
- { 24, 50317, "", "=q4=Papa's New Bag", "=ds=#e1#"};
- { 25, 50316, "", "=q4=Papa's Brand New Bag", "=ds=#e1#"};
- Next = "FoSDevourer";
- };
-
- AtlasLoot_Data["FoSDevourer"] = {
- { 1, 49792, "", "=q4=Accursed Crawling Cape", "=ds=#s4#"};
- { 2, 49796, "", "=q4=Essence of Anger", "=ds=#s10#, #a1#"};
- { 3, 49798, "", "=q4=Soul Screaming Boots", "=ds=#s12#, #a3#"};
- { 4, 49791, "", "=q4=Lost Reliquary Chestguard", "=ds=#s5#, #a4#"};
- { 5, 49797, "", "=q4=Brace Guards of the Starless Night", "=ds=#s8#, #a4#"};
- { 6, 49794, "", "=q4=Legplates of Frozen Granite", "=ds=#s11#, #a4#"};
- { 7, 49795, "", "=q4=Sollerets of Suffering", "=ds=#s12#, #a4#"};
- { 16, 49799, "", "=q4=Coil of Missing Gems", "=ds=#s2#"};
- { 17, 49800, "", "=q4=Spiteful Signet", "=ds=#s13#"};
- { 19, 49789, "", "=q4=Heartshiver", "=ds=#h1#, #w4#"};
- { 20, 49790, "", "=q4=Blood Boil Lancet", "=ds=#w9#"};
- { 21, 49793, "", "=q4=Tower of the Mouldering Corpse", "=ds=#w9#"};
- Prev = "FoSBronjahm";
- Next = "FHTrashMobs";
- };
-
- AtlasLoot_Data["FoSDevourerHEROIC"] = {
- { 1, 50213, "", "=q4=Mord'rethar Robes", "=ds=#s5#, #a1#"};
- { 2, 50206, "", "=q4=Frayed Scoundrel's Cap", "=ds=#s1#, #a2#"};
- { 3, 50212, "", "=q4=Essence of Desire", "=ds=#s9#, #a2#"};
- { 4, 50214, "", "=q4=Helm of the Spirit Shock", "=ds=#s1#, #a3#"};
- { 5, 50209, "", "=q4=Essence of Suffering", "=ds=#s8#, #a3#"};
- { 6, 50208, "", "=q4=Pauldrons of the Devourer", "=ds=#s3#, #a4#"};
- { 7, 50207, "", "=q4=Black Spire Sabatons", "=ds=#s12#, #a4#"};
- { 8, 50215, "", "=q4=Recovered Reliquary Boots", "=ds=#s12#, #a4#"};
- { 16, 50211, "", "=q4=Arcane Loops of Anger", "=ds=#s2#"};
- { 17, 50198, "", "=q4=Needle-Encrusted Scorpion", "=ds=#s14#"};
- { 19, 50203, "", "=q4=Blood Weeper", "=ds=#h1#, #w4#"};
- { 20, 50210, "", "=q4=Seethe", "=ds=#h3#, #w10#"};
- Prev = "FoSBronjahm";
- Next = "FHTrashMobs";
- };
-
- --------------------
- --- Pit of Saron ---
- --------------------
-
- AtlasLoot_Data["PoSGarfrost"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 49805, "", "=q4=Ice-Steeped Sandals", "=ds=#s12#, #a1#"};
- { 3, 49806, "", "=q4=Flayer's Black Belt", "=ds=#s10#, #a2#"};
- { 4, 49804, "", "=q4=Polished Mirror Helm", "=ds=#s1#, #a3#"};
- { 5, 49803, "", "=q4=Ring of Carnelian and Bone", "=ds=#s13#"};
- { 6, 49802, "", "=q4=Garfrost's Two-Ton Hammer", "=ds=#h2#, #w6#"};
- { 7, 49801, "", "=q4=Unspeakable Secret", "=ds=#w9#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 50233, "", "=q4=Spurned Val'kyr Shoulderguards", "=ds=#s3#, #a3#"};
- { 18, 50234, "", "=q4=Shoulderplates of Frozen Blood", "=ds=#s3#, #a4#"};
- { 19, 50230, "", "=q4=Malykriss Vambraces", "=ds=#s8#, #a4#"};
- { 20, 50229, "", "=q4=Legguards of the Frosty Depths", "=ds=#s11#, #a4#"};
- { 21, 50228, "", "=q4=Barbed Ymirheim Choker", "=ds=#s2#"};
- { 22, 50227, "", "=q4=Surgeon's Needle", "=ds=#h3#, #w4#"};
- Next = "PoSKrickIck";
- };
-
- AtlasLoot_Data["PoSKrickIck"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 49809, "", "=q4=Wristguards of Subterranean Moss", "=ds=#s8#, #a1#"};
- { 3, 49810, "", "=q4=Scabrous Zombie Leather Belt", "=ds=#s10#, #a3#"};
- { 4, 49811, "", "=q4=Black Dragonskin Breeches", "=ds=#s11#, #a3#"};
- { 5, 49808, "", "=q4=Bent Gold Belt", "=ds=#s10#, #a4#"};
- { 6, 49812, "", "=q4=Purloined Wedding Ring", "=ds=#s13#"};
- { 7, 49807, "", "=q4=Krick's Beetle Stabber", "=ds=#h1#, #w4#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 50266, "", "=q4=Ancient Polar Bear Hide", "=ds=#s5#, #a1#"};
- { 18, 50263, "", "=q4=Braid of Salt and Fire", "=ds=#s10#, #a1#"};
- { 19, 50264, "", "=q4=Chewed Leather Wristguards", "=ds=#s8#, #a2#"};
- { 20, 50265, "", "=q4=Blackened Ghoul Skin Leggings", "=ds=#s11#, #a3#"};
- { 21, 50235, "", "=q4=Ick's Rotting Thumb", "=ds=#s14#"};
- { 22, 50262, "", "=q4=Felglacier Bolter", "=ds=#w3#"};
- Prev = "PoSGarfrost";
- Next = "PoSTyrannus";
- };
-
- AtlasLoot_Data["PoSTyrannus"] = {
- { 1, 49823, "", "=q4=Cloak of the Fallen Cardinal", "=ds=#s4#"};
- { 2, 49825, "", "=q4=Palebone Robes", "=ds=#s5#, #a1#"};
- { 3, 49822, "", "=q4=Rimewoven Silks", "=ds=#s11#, #a1#"};
- { 4, 49817, "", "=q4=Shaggy Wyrmleather Leggings", "=ds=#s11#, #a2#"};
- { 5, 49824, "", "=q4=Horns of the Spurned Val'kyr", "=ds=#s1#, #a3#"};
- { 6, 49826, "", "=q4=Shroud of Rime", "=ds=#s5#, #a3#"};
- { 7, 49820, "", "=q4=Gondria's Spectral Bracer", "=ds=#s8#, #a3#"};
- { 8, 49819, "", "=q4=Skeleton Lord's Cranium", "=ds=#s1#, #a4#"};
- { 9, 49816, "", "=q4=Scourgelord's Frigid Chestplate", "=ds=#s5#, #a4#"};
- { 16, 49818, "", "=q4=Painfully Sharp Choker", "=ds=#s2#"};
- { 18, 49821, "", "=q4=Protector of Frigid Souls", "=ds=#w8#"};
- { 19, 49813, "", "=q4=Rimebane Rifle", "=ds=#w5#"};
- Prev = "PoSKrickIck";
- Next = "FHTrashMobs";
- };
-
- AtlasLoot_Data["PoSTyrannusHEROIC"] = {
- { 1, 50286, "", "=q4=Prelate's Snowshoes", "=ds=#s12#, #a1#"};
- { 2, 50269, "", "=q4=Fleshwerk Leggings", "=ds=#s11#, #a2#"};
- { 3, 50270, "", "=q4=Belt of Rotted Fingernails", "=ds=#s10#, #a3#"};
- { 4, 50283, "", "=q4=Mudslide Boots", "=ds=#s12#, #a3#"};
- { 5, 50272, "", "=q4=Frost Wyrm Ribcage", "=ds=#s5#, #a4#"};
- { 6, 50285, "", "=q4=Icebound Bronze Cuirass", "=ds=#s5#, #a4#"};
- { 7, 50284, "", "=q4=Rusty Frozen Fingerguards", "=ds=#s9#, #a4#"};
- { 16, 50271, "", "=q4=Band of Stained Souls", "=ds=#s13#"};
- { 17, 50259, "", "=q4=Nevermelting Ice Crystal", "=ds=#s14#"};
- { 19, 50268, "", "=q4=Rimefang's Claw", "=ds=#h1#, #w10#"};
- { 20, 50267, "", "=q4=Tyrannical Beheader", "=ds=#h2#, #w1#"};
- { 21, 50273, "", "=q4=Engraved Gargoyle Femur", "=ds=#w9#"};
- Prev = "PoSKrickIck";
- Next = "FHTrashMobs";
- };
-
- ---------------------------
- --- Halls of Reflection ---
- ---------------------------
-
- AtlasLoot_Data["HoRFalric"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 49832, "", "=q4=Eerie Runeblade Polisher", "=ds=#s4#"};
- { 3, 49828, "", "=q4=Marwyn's Macabre Fingertips", "=ds=#s9#, #a1#"};
- { 4, 49830, "", "=q4=Fallen Sentry's Hood", "=ds=#s1#, #a2#"};
- { 5, 49831, "", "=q4=Muddied Boots of Brill", "=ds=#s12#, #a3#"};
- { 6, 49829, "", "=q4=Valonforth's Tarnished Pauldrons", "=ds=#s3#, #a4#"};
- { 7, 49827, "", "=q4=Ghoulslicer", "=ds=#h1#, #w10#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 50292, "", "=q4=Bracer of Worn Molars", "=ds=#s8#, #a1#"};
- { 18, 50293, "", "=q4=Spaulders of Black Betrayal", "=ds=#s3#, #a2#"};
- { 19, 50295, "", "=q4=Spiked Toestompers", "=ds=#s12#, #a3#"};
- { 20, 50294, "", "=q4=Chestpiece of High Treason", "=ds=#s5#, #a4#"};
- { 21, 50290, "", "=q4=Falric's Wrist-Chopper", "=ds=#h1#, #w1#"};
- { 22, 50291, "", "=q4=Soulsplinter", "=ds=#w12#"};
- Next = "HoRMarwyn";
- };
-
- AtlasLoot_Data["HoRMarwyn"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 49834, "", "=q4=Frayed Abomination Stitching Shoulders", "=ds=#s3#, #a1#"};
- { 3, 49838, "", "=q4=Carpal Tunnelers", "=ds=#s9#, #a2#"};
- { 4, 49837, "", "=q4=Mitts of Burning Hail", "=ds=#s9#, #a3#"};
- { 5, 49836, "", "=q4=Frostsworn Bone Leggings", "=ds=#s11#, #a3#"};
- { 6, 49833, "", "=q4=Splintered Icecrown Parapet", "=ds=#h3#, #w10#"};
- { 7, 49835, "", "=q4=Splintered Door of the Citadel", "=ds=#w8#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 50298, "", "=q4=Sightless Crown of Ulmaas", "=ds=#s1#, #a1#"};
- { 18, 50299, "", "=q4=Suspiciously Soft Gloves", "=ds=#s9#, #a1#"};
- { 19, 50300, "", "=q4=Choking Hauberk", "=ds=#s5#, #a2#"};
- { 20, 50297, "", "=q4=Frostsworn Bone Chestpiece", "=ds=#s5#, #a3#"};
- { 21, 50260, "", "=q4=Ephemeral Snowflake", "=ds=#s14#"};
- { 22, 50296, "", "=q4=Orca-Hunter's Harpoon", "=ds=#w7#"};
- Prev = "HoRFalric";
- Next = "HoRLichKing";
- };
-
- AtlasLoot_Data["HoRLichKing"] = {
- { 1, 49842, "", "=q4=Tapestry of the Frozen Throne", "=ds=#s4#"};
- { 2, 49849, "", "=q4=Tattered Glacial-Woven Hood", "=ds=#s1#, #a1#"};
- { 3, 49848, "", "=q4=Grim Lasher Shoulderguards", "=ds=#s3#, #a2#"};
- { 4, 49841, "", "=q4=Blackened Geist Ribs", "=ds=#s5#, #a2#"};
- { 5, 49847, "", "=q4=Legguards of Untimely Demise", "=ds=#s11#, #a3#"};
- { 6, 49851, "", "=q4=Greathelm of the Silver Hand", "=ds=#s1#, #a4#"};
- { 7, 49843, "", "=q4=Crystalline Citadel Gauntlets", "=ds=#s9#, #a4#"};
- { 16, 49846, "", "=q4=Chilled Heart of the Glacier", "=ds=#h3#, #w4#"};
- { 17, 49839, "", "=q4=Mourning Malice", "=ds=#h2#, #w10#"};
- { 18, 49840, "", "=q4=Hate-Forged Cleaver", "=ds=#h1#, #w1#"};
- { 19, 49845, "", "=q4=Bone Golem Scapula", "=ds=#h3#, #w6#"};
- { 20, 49844, "", "=q4=Crypt Fiend Slayer", "=ds=#w2#"};
- Prev = "HoRMarwyn";
- Next = "FHTrashMobs";
- };
-
- AtlasLoot_Data["HoRLichKingHEROIC"] = {
- { 1, 50314, "", "=q4=Strip of Remorse", "=ds=#s10#, #a1#"};
- { 2, 50312, "", "=q4=Chestguard of Broken Branches", "=ds=#s5#, #a2#"};
- { 3, 50308, "", "=q4=Blighted Leather Footpads", "=ds=#s12#, #a2#"};
- { 4, 50304, "", "=q4=Hoarfrost Gauntlets", "=ds=#s9#, #a3#"};
- { 5, 50311, "", "=q4=Second Helm of the Executioner", "=ds=#s1#, #a4#"};
- { 6, 50305, "", "=q4=Grinning Skull Boots", "=ds=#s12#, #a4#"};
- { 8, 50310, "", "=q4=Fossilized Ammonite Choker", "=ds=#s2#"};
- { 9, 50313, "", "=q4=Oath of Empress Zoe", "=ds=#s13#"};
- { 10, 50306, "", "=q4=The Lady's Promise", "=ds=#s13#"};
- { 11, 50309, "", "=q4=Shriveled Heart", "=ds=#s15#"};
- { 16, 50302, "", "=q4=Liar's Tongue", "=ds=#h1#, #w10#"};
- { 17, 50303, "", "=q4=Black Icicle", "=ds=#h1#, #w6#"};
- Prev = "HoRMarwyn";
- Next = "FHTrashMobs";
- };
-
- AtlasLoot_Data["FHTrashMobs"] = {
- { 1, 0, "INV_Box_01", "=q6=#j1#", ""};
- { 2, 49854, "", "=q4=Mantle of Tattered Feathers", "=ds=#s3#, #a1#"};
- { 3, 49855, "", "=q4=Plated Grips of Korth'azz", "=ds=#s9#, #a4#"};
- { 4, 49853, "", "=q4=Titanium Links of Lore", "=ds=#s10#, #a4#"};
- { 5, 49852, "", "=q4=Coffin Nail", "=ds=#w12#"};
- { 16, 0, "INV_Box_01", "=q6=#j3#", ""};
- { 17, 50318, "", "=q4=Ghostly Wristwraps", "=ds=#s8#, #a2#"};
- { 18, 50315, "", "=q4=Seven-Fingered Claws", "=ds=#h3#, #w13#"};
- { 19, 50319, "", "=q4=Unsharpened Ice Razor", "=ds=#h1#, #w4#"};
- { 21, 50380, "", "=q4=Battered Hilt", "=ds=#m2#"};
- { 22, 50379, "", "=q4=Battered Hilt", "=ds=#m2#"};
- { 23, 50047, "", "=q4=Quel'Delar, Lens of the Mind", "=q1=#m4#: =ds=#h3#, #w10#"};
- { 24, 50046, "", "=q4=Quel'Delar, Cunning of the Shadows", "=q1=#m4#: =ds=#h1#, #w10#"};
- { 25, 50049, "", "=q4=Quel'Delar, Ferocity of the Scorned", "=q1=#m4#: =ds=#h2#, #w10#"};
- { 26, 50048, "", "=q4=Quel'Delar, Might of the Faithful", "=q1=#m4#: =ds=#h2#, #w10#"};
- { 27, 50051, "", "=q4=Hammer of Purified Flame", "=q1=#m4#: =ds=#h3#, #w6#"};
- { 28, 50050, "", "=q4=Cudgel of Furious Justice", "=q1=#m4#: =ds=#h1#, #w6#"};
- { 29, 50052, "", "=q4=Lightborn Spire", "=q1=#m4#: =ds=#h2#, #w6#"};
- };
-
- ------------------------
- --- Icecrown Citadel ---
- ------------------------
-
- -------------------
- --- Lower Spire ---
- -------------------
-
- AtlasLoot_Data["ICCLordMarrowgar"] = {
- { 1, 50764, "", "=q4=Shawl of Nerubian Silk", "=ds=#s4#"};
- { 2, 50773, "", "=q4=Cord of the Patronizing Practitioner", "=ds=#s10#, #a1#"};
- { 3, 50774, "", "=q4=Coldwraith Bracers", "=ds=#s8#, #a3#"};
- { 4, 50762, "", "=q4=Linked Scourge Vertebrae", "=ds=#s10#, #a3#"};
- { 5, 50775, "", "=q4=Corrupted Silverplate Leggings", "=ds=#s11#, #a4#"};
- { 6, 50772, "", "=q4=Ancient Skeletal Boots", "=ds=#s12#, #a4#"};
- { 8, 50763, "", "=q4=Marrowgar's Scratching Choker", "=ds=#s2#"};
- { 9, 50339, "", "=q4=Sliver of Pure Ice", "=ds=#s14#"};
- { 16, 50771, "", "=q4=Frost Needle", "=ds=#h3#, #w10#"};
- { 17, 50761, "", "=q4=Citadel Enforcer's Claymore", "=ds=#h2#, #w10#"};
- { 18, 50759, "", "=q4=Bone Warden's Splitter", "=ds=#h1#, #w1#"};
- { 19, 50760, "", "=q4=Bonebreaker Scepter", "=ds=#h1#, #w6#"};
- Next = "ICCLadyDeathwhisper";
- };
-
- AtlasLoot_Data["ICCLordMarrowgar25Man"] = {
- { 1, 49978, "", "=q4=Crushing Coldwraith Belt", "=ds=#s10#, #a1#"};
- { 2, 49979, "", "=q4=Handguards of Winter's Respite", "=ds=#s9#, #a2#"};
- { 3, 49950, "", "=q4=Frostbitten Fur Boots", "=ds=#s12#, #a2#"};
- { 4, 49952, "", "=q4=Snowserpent Mail Helm", "=ds=#s1#, #a3#"};
- { 5, 49980, "", "=q4=Rusted Bonespike Pauldrons", "=ds=#s3#, #a4#"};
- { 6, 49951, "", "=q4=Gendarme's Cuirass", "=ds=#s5#, #a4#"};
- { 7, 49960, "", "=q4=Bracers of Dark Reckoning", "=ds=#s8#, #a4#"};
- { 8, 49964, "", "=q4=Legguards of Lost Hope", "=ds=#s11#, #a4#"};
- { 10, 49975, "", "=q4=Bone Sentinel's Amulet", "=ds=#s2#"};
- { 11, 49949, "", "=q4=Band of the Bone Colossus", "=ds=#s13#"};
- { 12, 49977, "", "=q4=Loop of the Endless Labyrinth", "=ds=#s13#"};
- { 13, 49967, "", "=q4=Marrowgar's Frigid Eye", "=ds=#s13#"};
- { 16, 49968, "", "=q4=Frozen Bonespike", "=ds=#h3#, #w4#"};
- { 17, 50415, "", "=q4=Bryntroll, the Bone Arbiter", "=ds=#h2#, #w1#"};
- { 18, 49976, "", "=q4=Bulwark of Smouldering Steel", "=ds=#w8#"};
- { 20, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 21, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Next = "ICCLadyDeathwhisper25Man";
- };
-
- AtlasLoot_Data["ICCLadyDeathwhisper"] = {
- { 1, 50785, "", "=q4=Bracers of Dark Blessings", "=ds=#s8#, #a1#"};
- { 2, 50782, "", "=q4=Sister's Handshrouds", "=ds=#s9#, #a1#"};
- { 3, 50780, "", "=q4=Chestguard of the Frigid Noose", "=ds=#s5#, #a2#"};
- { 4, 50778, "", "=q4=Soulthief's Braided Belt", "=ds=#s10#, #a2#"};
- { 5, 50783, "", "=q4=Boots of the Frozen Seed", "=ds=#s12#, #a2#"};
- { 6, 50777, "", "=q4=Handgrips of Frost and Sleet", "=ds=#s9#, #a3#"};
- { 7, 50784, "", "=q4=Deathspeaker Disciple's Belt", "=ds=#s10#, #a3#"};
- { 8, 50779, "", "=q4=Deathspeaker Zealot's Helm", "=ds=#s1#, #a4#"};
- { 9, 50786, "", "=q4=Ghoul Commander's Cuirass", "=ds=#s5#, #a4#"};
- { 16, 50342, "", "=q4=Whispering Fanged Skull", "=ds=#s14#"};
- { 17, 50781, "", "=q4=Scourgelord's Baton", "=ds=#s15#"};
- { 19, 50776, "", "=q4=Njordnar Bone Bow", "=ds=#w2#"};
- Prev = "ICCLordMarrowgar";
- Next = "ICCGunshipBattle";
- };
-
- AtlasLoot_Data["ICCLadyDeathwhisper25Man"] = {
- { 1, 49991, "", "=q4=Shoulders of Mercy Killing", "=ds=#s3#, #a1#"};
- { 2, 49994, "", "=q4=The Lady's Brittle Bracers", "=ds=#s8#, #a1#"};
- { 3, 49987, "", "=q4=Cultist's Bloodsoaked Spaulders", "=ds=#s3#, #a2#"};
- { 4, 49996, "", "=q4=Deathwhisper Chestpiece", "=ds=#s5#, #a2#"};
- { 5, 49988, "", "=q4=Leggings of Northern Lights", "=ds=#s11#, #a3#"};
- { 6, 49993, "", "=q4=Necrophotic Greaves", "=ds=#s12#, #a3#"};
- { 7, 49986, "", "=q4=Broken Ram Skull Helm", "=ds=#s1#, #a4#"};
- { 8, 49995, "", "=q4=Fallen Lord's Handguards", "=ds=#s9#, #a4#"};
- { 9, 49983, "", "=q4=Blood-Soaked Saronite Stompers", "=ds=#s12#, #a4#"};
- { 11, 49989, "", "=q4=Ahn'kahar Onyx Neckguard", "=ds=#s2#"};
- { 12, 49985, "", "=q4=Juggernaut Band", "=ds=#s13#"};
- { 13, 49990, "", "=q4=Ring of Maddening Whispers", "=ds=#s13#"};
- { 16, 49982, "", "=q4=Heartpierce", "=ds=#h1#, #w4#"};
- { 17, 49992, "", "=q4=Nibelung", "=ds=#w9#"};
- { 18, 50034, "", "=q4=Zod's Repeating Longbow", "=ds=#w2#"};
- { 20, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 21, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Prev = "ICCLordMarrowgar25Man";
- Next = "ICCGunshipBattle25Man";
- };
-
- AtlasLoot_Data["ICCGunshipBattle"] = {
- { 1, 50791, "", "=q4=Saronite Gargoyle Cloak", "=ds=#s4#"};
- { 2, 50795, "", "=q4=Cord of Dark Suffering", "=ds=#s10#, #a2#"};
- { 3, 50797, "", "=q4=Ice-Reinforced Vrykul Helm", "=ds=#s1#, #a3#"};
- { 4, 50792, "", "=q4=Pauldrons of Lost Hope", "=ds=#s3#, #a3#"};
- { 5, 50789, "", "=q4=Icecrown Rampart Bracers", "=ds=#s8#, #a3#"};
- { 6, 50796, "", "=q4=Bracers of Pale Illumination", "=ds=#s8#, #a4#"};
- { 7, 50788, "", "=q4=Bone Drake's Enameled Boots", "=ds=#s12#, #a4#"};
- { 9, 50790, "", "=q4=Abomination's Bloody Ring", "=ds=#s13#"};
- { 10, 50340, "", "=q4=Muradin's Spyglass", "=ds=#s14#"};
- { 16, 50793, "", "=q4=Midnight Sun", "=ds=#h3#, #w4#"};
- { 17, 50787, "", "=q4=Frost Giant's Cleaver", "=ds=#h1#, #w1#"};
- { 18, 50794, "", "=q4=Neverending Winter", "=ds=#w8#"};
- Prev = "ICCLadyDeathwhisper";
- Next = "ICCSaurfang";
- };
-
- AtlasLoot_Data["ICCGunshipBattle25Man"] = {
- { 1, 49998, "", "=q4=Shadowvault Slayer's Cloak", "=ds=#s4#"};
- { 2, 50006, "", "=q4=Corp'rethar Ceremonial Crown", "=ds=#s1#, #a1#"};
- { 3, 50011, "", "=q4=Gunship Captain's Mittens", "=ds=#s9#, #a1#"};
- { 4, 50001, "", "=q4=Ikfirus's Sack of Wonder", "=ds=#s5#, #a2#"};
- { 5, 50009, "", "=q4=Boots of Unnatural Growth", "=ds=#s12#, #a2#"};
- { 6, 50000, "", "=q4=Scourge Hunter's Vambraces", "=ds=#s8#, #a3#"};
- { 7, 50003, "", "=q4=Boneguard Commander's Pauldrons", "=ds=#s3#, #a4#"};
- { 8, 50002, "", "=q4=Polar Bear Claw Bracers", "=ds=#s8#, #a4#"};
- { 9, 50010, "", "=q4=Waistband of Righteous Fury", "=ds=#s10#, #a4#"};
- { 11, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 12, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- { 16, 50005, "", "=q4=Amulet of the Silent Eulogy", "=ds=#s2#"};
- { 17, 50008, "", "=q4=Ring of Rapid Ascent", "=ds=#s13#"};
- { 18, 49999, "", "=q4=Skeleton Lord's Circle", "=ds=#s13#"};
- { 19, 50359, "", "=q4=Althor's Abacus", "=ds=#s14#"};
- { 20, 50352, "", "=q4=Corpse Tongue Coin", "=ds=#s14#"};
- { 22, 50411, "", "=q4=Scourgeborne Waraxe", "=ds=#h1#, #w1#"};
- Prev = "ICCLadyDeathwhisper25Man";
- Next = "ICCSaurfang25Man";
- };
-
- AtlasLoot_Data["ICCSaurfang"] = {
- { 1, 50807, "", "=q4=Thaumaturge's Crackling Cowl", "=ds=#s1#, #a1#"};
- { 2, 50804, "", "=q4=Icecrown Spire Sandals", "=ds=#s12#, #a1#"};
- { 3, 50799, "", "=q4=Scourge Stranglers", "=ds=#s9#, #a2#"};
- { 4, 50806, "", "=q4=Leggings of Unrelenting Blood", "=ds=#s11#, #a2#"};
- { 5, 50800, "", "=q4=Hauberk of a Thousand Cuts", "=ds=#s5#, #a3#"};
- { 6, 50801, "", "=q4=Blade-Scored Carapace", "=ds=#s5#, #a4#"};
- { 7, 50802, "", "=q4=Gargoyle Spit Bracers", "=ds=#s8#, #a4#"};
- { 8, 50808, "", "=q4=Deathforged Legplates", "=ds=#s11#, #a4#"};
- { 16, 50809, "", "=q4=Soulcleave Pendant", "=ds=#s2#"};
- { 17, 50803, "", "=q4=Saurfang's Cold-Forged Band", "=ds=#s13#"};
- { 19, 50798, "", "=q4=Ramaladni's Blade of Culling", "=ds=#h2#, #w1#"};
- { 20, 50805, "", "=q4=Mag'hari Chieftain's Staff", "=ds=#w9#"};
- Prev = "ICCGunshipBattle";
- Next = "ICCFestergut";
- };
-
- AtlasLoot_Data["ICCSaurfang25Man"] = {
- { 1, 50014, "", "=q4=Greatcloak of the Turned Champion", "=ds=#s4#"};
- { 2, 50333, "", "=q4=Toskk's Maximized Wristguards", "=ds=#s8#, #a2#"};
- { 3, 50015, "", "=q4=Belt of the Blood Nova", "=ds=#s10#, #a3#"};
- { 4, 50362, "", "=q4=Deathbringer's Will", "=ds=#s14#"};
- { 5, 50412, "", "=q4=Bloodvenom Blade", "=ds=#h1#, #w10#"};
- { 7, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 8, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- Prev = "ICCGunshipBattle25Man";
- Next = "ICCFestergut25Man";
- };
-
- -----------------------
- --- The Plagueworks ---
- -----------------------
-
- AtlasLoot_Data["ICCFestergut"] = {
- { 1, 50859, "", "=q4=Cloak of Many Skins", "=ds=#s4#"};
- { 2, 50988, "", "=q4=Bloodstained Surgeon's Shoulderguards", "=ds=#s3#, #a1#"};
- { 3, 50990, "", "=q4=Kilt of Untreated Wounds", "=ds=#s11#, #a1#"};
- { 4, 50985, "", "=q4=Wrists of Septic Shock", "=ds=#s8#, #a2#"};
- { 5, 50858, "", "=q4=Plague-Soaked Leather Leggings", "=ds=#s11#, #a2#"};
- { 6, 50812, "", "=q4=Taldron's Long Neglected Boots", "=ds=#s12#, #a3#"};
- { 7, 50967, "", "=q4=Festergut's Gaseous Gloves", "=ds=#s9#, #a4#"};
- { 8, 50811, "", "=q4=Festering Fingerguards", "=ds=#s9#, #a4#"};
- { 16, 50852, "", "=q4=Precious's Putrid Collar", "=ds=#s2#"};
- { 17, 50986, "", "=q4=Signet of Putrefaction", "=ds=#s13#"};
- { 19, 50810, "", "=q4=Gutbuster", "=ds=#h1#, #w6#"};
- { 20, 50966, "", "=q4=Abracadaver", "=ds=#w9#"};
- Prev = "ICCSaurfang";
- Next = "ICCRotface";
- };
-
- AtlasLoot_Data["ICCFestergut25Man"] = {
- { 1, 50063, "", "=q4=Lingering Illness", "=ds=#s10#, #a1#"};
- { 2, 50056, "", "=q4=Plaguebringer's Stained Pants", "=ds=#s11#, #a1#"};
- { 3, 50062, "", "=q4=Plague Scientist's Boots", "=ds=#s12#, #a1#"};
- { 4, 50042, "", "=q4=Gangrenous Leggings", "=ds=#s11#, #a2#"};
- { 5, 50041, "", "=q4=Leather of Stitched Scourge Parts", "=ds=#s11#, #a2#"};
- { 6, 50059, "", "=q4=Horrific Flesh Epaulets", "=ds=#s3#, #a3#"};
- { 7, 50038, "", "=q4=Carapace of Forgotten Kings", "=ds=#s5#, #a3#"};
- { 8, 50064, "", "=q4=Unclean Surgical Gloves", "=ds=#s9#, #a3#"};
- { 9, 50413, "", "=q4=Nerub'ar Stalker's Cord", "=ds=#s10#, #a3#"};
- { 10, 50060, "", "=q4=Faceplate of the Forgotten", "=ds=#s1#, #a4#"};
- { 11, 50037, "", "=q4=Fleshrending Gauntlets", "=ds=#s9#, #a4#"};
- { 12, 50036, "", "=q4=Belt of Broken Bones", "=ds=#s10#, #a4#"};
- { 16, 50061, "", "=q4=Holiday's Grace", "=ds=#s2#"};
- { 17, 50414, "", "=q4=Might of Blight", "=ds=#s13#"};
- { 19, 50035, "", "=q4=Black Bruise", "=ds=#h3#, #w13#"};
- { 20, 50040, "", "=q4=Distant Land", "=ds=#w9#"};
- { 22, 50226, "", "=q4=Festergut's Acidic Blood", "=ds=#m3#"};
- { 24, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 25, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Prev = "ICCSaurfang25Man";
- Next = "ICCRotface25Man";
- };
-
- AtlasLoot_Data["ICCRotface"] = {
- { 1, 51007, "", "=q4=Ether-Soaked Bracers", "=ds=#s8#, #a1#"};
- { 2, 51005, "", "=q4=Gloves of Broken Fingers", "=ds=#s9#, #a1#"};
- { 3, 51009, "", "=q4=Chestguard of the Failed Experiment", "=ds=#s5#, #a2#"};
- { 4, 51002, "", "=q4=Taldron's Short-Sighted Helm", "=ds=#s1#, #a3#"};
- { 5, 51006, "", "=q4=Shuffling Shoes", "=ds=#s12#, #a3#"};
- { 6, 51000, "", "=q4=Flesh-Shaper's Gurney Strap", "=ds=#s10#, #a4#"};
- { 8, 51008, "", "=q4=Choker of Filthy Diamonds", "=ds=#s2#"};
- { 9, 51001, "", "=q4=Rotface's Rupturing Ring", "=ds=#s13#"};
- { 16, 51003, "", "=q4=Abomination Knuckles", "=ds=#h3#, #w13#"};
- { 17, 51004, "", "=q4=Lockjaw", "=ds=#h3#, #w6#"};
- { 18, 50998, "", "=q4=Shaft of Glacial Ice", "=ds=#w9#"};
- { 19, 50999, "", "=q4=Gluth's Fetching Knife", "=ds=#w11#"};
- Prev = "ICCFestergut";
- Next = "ICCPutricide";
- };
-
- AtlasLoot_Data["ICCRotface25Man"] = {
- { 1, 50019, "", "=q4=Winding Sheet", "=ds=#s4#"};
- { 2, 50032, "", "=q4=Death Surgeon's Sleeves", "=ds=#s8#, #a1#"};
- { 3, 50026, "", "=q4=Helm of the Elder Moon", "=ds=#s1#, #a2#"};
- { 4, 50021, "", "=q4=Aldriana's Gloves of Secrecy", "=ds=#s9#, #a2#"};
- { 5, 50022, "", "=q4=Dual-Bladed Pauldrons", "=ds=#s3#, #a3#"};
- { 6, 50030, "", "=q4=Bloodsunder's Bracers", "=ds=#s8#, #a3#"};
- { 7, 50020, "", "=q4=Raging Behemoth's Shoulderplates", "=ds=#s3#, #a4#"};
- { 8, 50024, "", "=q4=Blightborne Warplate", "=ds=#s5#, #a4#"};
- { 9, 50027, "", "=q4=Rot-Resistant Breastplate", "=ds=#s5#, #a4#"};
- { 11, 50023, "", "=q4=Bile-Encrusted Medallion", "=ds=#s2#"};
- { 12, 50025, "", "=q4=Seal of Many Mouths", "=ds=#s13#"};
- { 13, 50353, "", "=q4=Dislodged Foreign Object", "=ds=#s14#"};
- { 16, 50028, "", "=q4=Trauma", "=ds=#h3#, #w6#"};
- { 17, 50016, "", "=q4=Rib Spreader", "=ds=#h1#, #w4#"};
- { 18, 50033, "", "=q4=Corpse-Impaling Spike", "=ds=#w12#"};
- { 20, 50231, "", "=q4=Rotface's Acidic Blood", "=ds=#m3#"};
- { 22, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 23, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Prev = "ICCFestergut25Man";
- Next = "ICCPutricide25Man";
- };
-
- AtlasLoot_Data["ICCPutricide"] = {
- { 1, 51020, "", "=q4=Shoulders of Ruinous Senility", "=ds=#s3#, #a1#"};
- { 2, 51017, "", "=q4=Cauterized Cord", "=ds=#s10#, #a1#"};
- { 3, 51013, "", "=q4=Discarded Bag of Entrails", "=ds=#s1#, #a2#"};
- { 4, 51015, "", "=q4=Shoulderpads of the Morbid Ritual", "=ds=#s3#, #a3#"};
- { 5, 51019, "", "=q4=Rippling Flesh Kilt", "=ds=#s11#, #a3#"};
- { 6, 51014, "", "=q4=Scalpel-Sharpening Shoulderguards", "=ds=#s3#, #a4#"};
- { 7, 51018, "", "=q4=Chestplate of Septic Stitches", "=ds=#s5#, #a4#"};
- { 16, 51012, "", "=q4=Infected Choker", "=ds=#s2#"};
- { 17, 51016, "", "=q4=Pendant of Split Veins", "=ds=#s2#"};
- { 18, 50341, "", "=q4=Unidentifiable Organ", "=ds=#s14#"};
- { 20, 51011, "", "=q4=Flesh-Carving Scalpel", "=ds=#h1#, #w4#"};
- { 21, 51010, "", "=q4=The Facelifter", "=ds=#h1#, #w10#"};
- Prev = "ICCRotface";
- Next = "ICCCouncil";
- };
-
- AtlasLoot_Data["ICCPutricide25Man"] = {
- { 1, 50067, "", "=q4=Astrylian's Sutured Cinch", "=ds=#s10#, #a2#"};
- { 2, 50069, "", "=q4=Professor's Bloodied Smock", "=ds=#s10#, #a2#"};
- { 3, 50351, "", "=q4=Tiny Abomination in a Jar", "=ds=#s14#"};
- { 4, 50179, "", "=q4=Last Word", "=ds=#h1#, #w6#"};
- { 5, 50068, "", "=q4=Rigormortis", "=ds=#h1#, #w10#"};
- { 7, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 8, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- Prev = "ICCRotface25Man";
- Next = "ICCCouncil25Man";
- };
-
- ------------------------
- --- The Crimson Hall ---
- ------------------------
-
- AtlasLoot_Data["ICCCouncil"] = {
- { 1, 51382, "", "=q4=Heartsick Mender's Cape", "=ds=#s4#"};
- { 2, 51379, "", "=q4=Bloodsoul Raiment", "=ds=#s5#, #a1#"};
- { 3, 51380, "", "=q4=Pale Corpse Boots", "=ds=#s12#, #a1#"};
- { 4, 51023, "", "=q4=Taldaram's Soft Slippers", "=ds=#s12#, #a2#"};
- { 5, 51325, "", "=q4=Blood-Drinker's Girdle", "=ds=#s10#, #a3#"};
- { 6, 51383, "", "=q4=Spaulders of the Blood Princes", "=ds=#s3#, #a4#"};
- { 7, 51025, "", "=q4=Battle-Maiden's Legguards", "=ds=#s11#, #a4#"};
- { 9, 51381, "", "=q4=Cerise Coiled Ring", "=ds=#s13#"};
- { 10, 51024, "", "=q4=Thrice Fanged Signet", "=ds=#s13#"};
- { 16, 51021, "", "=q4=Soulbreaker", "=ds=#h1#, #w10#"};
- { 17, 51022, "", "=q4=Hersir's Greatspear", "=ds=#w7#"};
- { 18, 51326, "", "=q4=Wand of Ruby Claret", "=ds=#w12#"};
- Prev = "ICCPutricide";
- Next = "ICCLanathel";
- };
-
- AtlasLoot_Data["ICCCouncil25Man"] = {
- { 1, 50074, "", "=q4=Royal Crimson Cloak", "=ds=#s4#"};
- { 2, 50172, "", "=q4=Sanguine Silk Robes", "=ds=#s5#, #a1#"};
- { 3, 50176, "", "=q4=San'layn Ritualist Gloves", "=ds=#s9#, #a1#"};
- { 4, 50073, "", "=q4=Geistlord's Punishment Sack", "=ds=#s1#, #a2#"};
- { 5, 50171, "", "=q4=Shoulders of Frost-Tipped Thorns", "=ds=#s3#, #a2#"};
- { 6, 50177, "", "=q4=Mail of Crimson Coins", "=ds=#s5#, #a3#"};
- { 7, 50071, "", "=q4=Treads of the Wasteland", "=ds=#s12#, #a3#"};
- { 8, 50072, "", "=q4=Landsoul's Horned Greathelm", "=ds=#s1#, #a4#"};
- { 9, 50175, "", "=q4=Crypt Keeper's Bracers", "=ds=#s8#, #a4#"};
- { 10, 50075, "", "=q4=Taldaram's Plated Fists", "=ds=#s9#, #a4#"};
- { 16, 50174, "", "=q4=Incarnadine Band of Mending", "=ds=#s13#"};
- { 17, 50170, "", "=q4=Valanar's Other Signet Ring", "=ds=#s13#"};
- { 18, 50173, "", "=q4=Shadow Silk Spindle", "=ds=#s15#"};
- { 20, 50184, "", "=q4=Keleseth's Seducer", "=ds=#h4#, #w13#"};
- { 21, 49919, "", "=q4=Cryptmaker", "=ds=#h2#, #w6#"};
- { 23, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 24, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Prev = "ICCPutricide25Man";
- Next = "ICCLanathel25Man";
- };
-
- AtlasLoot_Data["ICCLanathel"] = {
- { 1, 51554, "", "=q4=Cowl of Malefic Repose", "=ds=#s1#, #a1#"};
- { 2, 51552, "", "=q4=Shoulderpads of the Searing Kiss", "=ds=#s3#, #a2#"};
- { 3, 51550, "", "=q4=Ivory-Inlaid Leggings", "=ds=#s11#, #a2#"};
- { 4, 51551, "", "=q4=Chestguard of Siphoned Elements", "=ds=#s5#, #a3#"};
- { 5, 51386, "", "=q4=Throatrender Handguards", "=ds=#s9#, #a4#"};
- { 6, 51556, "", "=q4=Veincrusher Gauntlets", "=ds=#s9#, #a4#"};
- { 7, 51555, "", "=q4=Tightening Waistband", "=ds=#s10#, #a4#"};
- { 16, 51548, "", "=q4=Collar of Haughty Disdain", "=ds=#s2#"};
- { 17, 51387, "", "=q4=Seal of the Twilight Queen", "=ds=#s13#"};
- { 19, 51384, "", "=q4=Bloodsipper", "=ds=#h1#, #w4#"};
- { 20, 51385, "", "=q4=Stakethrower", "=ds=#w5#"};
- { 21, 51553, "", "=q4=Lana'thel's Bloody Nail", "=ds=#w12#"};
- Prev = "ICCCouncil";
- Next = "ICCValithria";
- };
-
- AtlasLoot_Data["ICCLanathel25Man"] = {
- { 1, 50182, "", "=q4=Blood Queen's Crimson Choker", "=ds=#s2#"};
- { 2, 50180, "", "=q4=Lana'thel's Chain of Flagellation", "=ds=#s2#"};
- { 3, 50354, "", "=q4=Bauble of True Blood", "=ds=#s14#"};
- { 4, 50178, "", "=q4=Bloodfall", "=ds=#w7#"};
- { 5, 50181, "", "=q4=Dying Light", "=ds=#w9#"};
- { 6, 50065, "", "=q4=Icecrown Glacial Wall", "=ds=#w8#"};
- { 8, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 9, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- Prev = "ICCCouncil25Man";
- Next = "ICCValithria25Man";
- };
-
- ------------------------
- --- The Frozen Halls ---
- ------------------------
-
- AtlasLoot_Data["ICCValithria"] = {
- { 1, 51584, "", "=q4=Lich Wrappings", "=ds=#s4#"};
- { 2, 51777, "", "=q4=Leggings of the Refracted Mind", "=ds=#s11#, #a1#"};
- { 3, 51585, "", "=q4=Sister Svalna's Spangenhelm", "=ds=#s1#, #a2#"};
- { 4, 51565, "", "=q4=Skinned Whelp Shoulders", "=ds=#s3#, #a2#"};
- { 5, 51583, "", "=q4=Stormbringer Gloves", "=ds=#s9#, #a3#"};
- { 6, 51566, "", "=q4=Legguards of the Twisted Dream", "=ds=#s11#, #a3#"};
- { 7, 51586, "", "=q4=Emerald Saint's Spaulders", "=ds=#s3#, #a4#"};
- { 8, 51563, "", "=q4=Taiga Bindings", "=ds=#s8#, #a4#"};
- { 9, 51564, "", "=q4=Ironrope Belt of Ymirjar", "=ds=#s10#, #a4#"};
- { 16, 51562, "", "=q4=Oxheart", "=ds=#h2#, #w6#"};
- { 17, 51582, "", "=q4=Sister Svalna's Aether Staff", "=ds=#w9#"};
- { 18, 51561, "", "=q4=Dreamhunter's Carbine", "=ds=#w5#"};
- Prev = "ICCLanathel";
- Next = "ICCSindragosa";
- };
-
- AtlasLoot_Data["ICCValithria25Man"] = {
- { 1, 50205, "", "=q4=Frostbinder's Shredded Cape", "=ds=#s4#"};
- { 2, 50418, "", "=q4=Robe of the Waking Nightmare", "=ds=#s5#, #a1#"};
- { 3, 50417, "", "=q4=Bracers of Eternal Dreaming", "=ds=#s8#, #a2#"};
- { 4, 50202, "", "=q4=Snowstorm Helm", "=ds=#s1#, #a3#"};
- { 5, 50188, "", "=q4=Anub'ar Stalker's Gloves", "=ds=#s9#, #a3#"};
- { 6, 50187, "", "=q4=Coldwraith Links", "=ds=#s10#, #a4#"};
- { 7, 50199, "", "=q4=Leggings of Dying Candles", "=ds=#s11#, #a4#"};
- { 8, 50192, "", "=q4=Scourge Reaver's Legplates", "=ds=#s11#, #a4#"};
- { 9, 50416, "", "=q4=Boots of the Funeral March", "=ds=#s12#, #a4#"};
- { 10, 50190, "", "=q4=Grinning Skull Greatboots", "=ds=#s12#, #a4#"};
- { 16, 50195, "", "=q4=Noose of Malachite", "=ds=#s2#"};
- { 17, 50185, "", "=q4=Devium's Eternally Cold Ring", "=ds=#s13#"};
- { 18, 50186, "", "=q4=Frostbrood Sapphire Ring", "=ds=#s13#"};
- { 20, 50183, "", "=q4=Lungbreaker", "=ds=#h1#, #w4#"};
- { 21, 50472, "", "=q4=Nightmare Ender", "=ds=#w12#"};
- { 23, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 24, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Prev = "ICCLanathel25Man";
- Next = "ICCSindragosa25Man";
- };
-
- AtlasLoot_Data["ICCSindragosa"] = {
- { 1, 51790, "", "=q4=Robes of Azure Downfall", "=ds=#s5#, #a1#"};
- { 2, 51783, "", "=q4=Vambraces of the Frost Wyrm Queen", "=ds=#s8#, #a2#"};
- { 3, 51789, "", "=q4=Icicle Shapers", "=ds=#s9#, #a2#"};
- { 4, 51792, "", "=q4=Shoulderguards of Crystalline Bone", "=ds=#s3#, #a3#"};
- { 5, 51785, "", "=q4=Wyrmwing Treads", "=ds=#s12#, #a3#"};
- { 6, 51782, "", "=q4=Etched Dragonbone Girdle", "=ds=#s10#, #a4#"};
- { 7, 51786, "", "=q4=Legplates of Aetheric Strife", "=ds=#s11#, #a4#"};
- { 8, 51787, "", "=q4=Scourge Fanged Stompers", "=ds=#s12#, #a4#"};
- { 10, 51026, "", "=q1=Crystalline Essence of Sindragosa", "=ds=#m3#"};
- { 16, 51779, "", "=q4=Rimetooth Pendant", "=ds=#s2#"};
- { 18, 51784, "", "=q4=Splintershard", "=ds=#h4#, #w13#"};
- { 19, 51788, "", "=q4=Bleak Coldarra Carver", "=ds=#h3#, #w4#"};
- { 20, 51791, "", "=q4=Lost Pavise of the Blue Flight", "=ds=#w8#"};
- Prev = "ICCValithria";
- Next = "ICCLichKing";
- };
-
- AtlasLoot_Data["ICCSindragosa25Man"] = {
- { 1, 50421, "", "=q4=Sindragosa's Cruel Claw", "=ds=#s2#"};
- { 2, 50424, "", "=q4=Memory of Malygos", "=ds=#s13#"};
- { 3, 50360, "", "=q4=Phylactery of the Nameless Lich", "=ds=#s14#"};
- { 4, 50361, "", "=q4=Sindragosa's Flawless Fang", "=ds=#s14#"};
- { 5, 50423, "", "=q4=Sundial of Eternal Dusk", "=ds=#s15#"};
- { 7, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 8, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- { 9, 51026, "", "=q1=Crystalline Essence of Sindragosa", "=ds=#m3#"};
- { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- Prev = "ICCValithria25Man";
- Next = "ICCLichKing25Man";
- };
-
- -------------------------
- --- The Frozen Throne ---
- -------------------------
-
- AtlasLoot_Data["ICCLichKing"] = {
- { 1, 51801, "", "=q4=Pugius, Fist of Defiance", "=ds=#h3#, #w13#"};
- { 2, 51803, "", "=q4=Tel'thas, Dagger of the Blood King", "=ds=#h3#, #w4#"};
- { 3, 51800, "", "=q4=Stormfury, Black Blade of the Betrayer", "=ds=#h1#, #w4#"};
- { 4, 51795, "", "=q4=Troggbane, Axe of the Frostborne King", "=ds=#h1#, #w1#"};
- { 5, 51798, "", "=q4=Valius, Gavel of the Lightbringer", "=ds=#h3#, #w6#"};
- { 6, 51796, "", "=q4=Warmace of Menethil", "=ds=#h2#, #w6#"};
- { 7, 51799, "", "=q4=Halion, Staff of Forgotten Love", "=ds=#w9#"};
- { 8, 51797, "", "=q4=Tainted Twig of Nordrassil", "=ds=#w9#"};
- { 9, 51802, "", "=q4=Windrunner's Heartseeker", "=ds=#w3#"};
- Prev = "ICCSindragosa";
- Next = "ICCTrash25Man";
- };
-
- AtlasLoot_Data["ICCLichKing25Man"] = {
- { 1, 50426, "", "=q4=Heaven's Fall, Kryss of a Thousand Lies", "=ds=#h1#, #w4#"};
- { 2, 50427, "", "=q4=Bloodsurge, Kel'Thuzad's Blade of Agony", "=ds=#h3#, #w10#"};
- { 3, 50070, "", "=q4=Glorenzelg, High-Blade of the Silver Hand", "=ds=#h2#, #w10#"};
- { 4, 50012, "", "=q4=Havoc's Call, Blade of Lordaeron Kings", "=ds=#h1#, #w1#"};
- { 5, 50428, "", "=q4=Royal Scepter of Terenas II", "=ds=#h3#, #w6#"};
- { 6, 49997, "", "=q4=Mithrios, Bronzebeard's Legacy", "=ds=#h1#, #w6#"};
- { 7, 50425, "", "=q4=Oathbinder, Charge of the Ranger-General", "=ds=#w7#"};
- { 8, 50429, "", "=q4=Archus, Greatstaff of Antonidas", "=ds=#w9#"};
- { 9, 49981, "", "=q4=Fal'inrush, Defender of Quel'thalas", "=ds=#w3#"};
- { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- { 20, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 21, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Prev = "ICCSindragosa25Man";
- Next = "ICCTrash25Man";
- };
-
- AtlasLoot_Data["ICCTrash25Man"] = {
- { 1, 50449, "", "=q4=Stiffened Corpse Shoulderpads", "=ds=#s3#, #a1#"};
- { 2, 50450, "", "=q4=Leggings of Dubious Charms", "=ds=#s11#, #a3#"};
- { 3, 50451, "", "=q4=Belt of the Lonely Noble", "=ds=#s10#, #a4#"};
- { 4, 50452, "", "=q4=Wodin's Lucky Necklace", "=ds=#s2#"};
- { 5, 50447, "", "=q4=Harbinger's Bone Band", "=ds=#s13#"};
- { 6, 50453, "", "=q4=Ring of Rotting Sinew", "=ds=#s13#"};
- { 7, 50444, "", "=q4=Rowan's Rifle of Silver Bullets", "=ds=#w5#"};
- Prev = "ICCLichKing";
- };
-
- -------------------------------
- --- Icecrown Citadel HEROIC ---
- -------------------------------
-
- -------------------
- --- Lower Spire ---
- -------------------
-
- AtlasLoot_Data["ICCLordMarrowgarHEROIC"] = {
- { 1, 51933, "", "=q4=Shawl of Nerubian Silk", "=ds=#s4#"};
- { 2, 51930, "", "=q4=Cord of the Patronizing Practitioner", "=ds=#s10#, #a1#"};
- { 3, 51929, "", "=q4=Coldwraith Bracers", "=ds=#s8#, #a3#"};
- { 4, 51935, "", "=q4=Linked Scourge Vertebrae", "=ds=#s10#, #a3#"};
- { 5, 51928, "", "=q4=Corrupted Silverplate Leggings", "=ds=#s11#, #a4#"};
- { 6, 51931, "", "=q4=Ancient Skeletal Boots", "=ds=#s12#, #a4#"};
- { 8, 51934, "", "=q4=Marrowgar's Scratching Choker", "=ds=#s2#"};
- { 9, 50346, "", "=q4=Sliver of Pure Ice", "=ds=#s14#"};
- { 16, 51932, "", "=q4=Frost Needle", "=ds=#h3#, #w10#"};
- { 17, 51936, "", "=q4=Citadel Enforcer's Claymore", "=ds=#h2#, #w10#"};
- { 18, 51938, "", "=q4=Bone Warden's Splitter", "=ds=#h1#, #w1#"};
- { 19, 51937, "", "=q4=Bonebreaker Scepter", "=ds=#h1#, #w6#"};
- Next = "ICCLadyDeathwhisperHEROIC";
- };
-
- AtlasLoot_Data["ICCLordMarrowgar25ManHEROIC"] = {
- { 1, 50613, "", "=q4=Crushing Coldwraith Belt", "=ds=#s10#, #a1#"};
- { 2, 50615, "", "=q4=Handguards of Winter's Respite", "=ds=#s9#, #a2#"};
- { 3, 50607, "", "=q4=Frostbitten Fur Boots", "=ds=#s12#, #a2#"};
- { 4, 50605, "", "=q4=Snowserpent Mail Helm", "=ds=#s1#, #a3#"};
- { 5, 50617, "", "=q4=Rusted Bonespike Pauldrons", "=ds=#s3#, #a4#"};
- { 6, 50606, "", "=q4=Gendarme's Cuirass", "=ds=#s5#, #a4#"};
- { 7, 50611, "", "=q4=Bracers of Dark Reckoning", "=ds=#s8#, #a4#"};
- { 8, 50612, "", "=q4=Legguards of Lost Hope", "=ds=#s11#, #a4#"};
- { 10, 50609, "", "=q4=Bone Sentinel's Amulet", "=ds=#s2#"};
- { 11, 50604, "", "=q4=Band of the Bone Colossus", "=ds=#s13#"};
- { 12, 50614, "", "=q4=Loop of the Endless Labyrinth", "=ds=#s13#"};
- { 13, 50610, "", "=q4=Marrowgar's Frigid Eye", "=ds=#s13#"};
- { 16, 50608, "", "=q4=Frozen Bonespike", "=ds=#h3#, #w4#"};
- { 17, 50709, "", "=q4=Bryntroll, the Bone Arbiter", "=ds=#h2#, #w1#"};
- { 18, 50616, "", "=q4=Bulwark of Smouldering Steel", "=ds=#w8#"};
- { 20, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 21, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Next = "ICCLadyDeathwhisper25ManHEROIC";
- };
-
- AtlasLoot_Data["ICCLadyDeathwhisperHEROIC"] = {
- { 1, 51918, "", "=q4=Bracers of Dark Blessings", "=ds=#s8#, #a1#"};
- { 2, 51921, "", "=q4=Sister's Handshrouds", "=ds=#s9#, #a1#"};
- { 3, 51923, "", "=q4=Chestguard of the Frigid Noose", "=ds=#s5#, #a2#"};
- { 4, 51925, "", "=q4=Soulthief's Braided Belt", "=ds=#s10#, #a2#"};
- { 5, 51920, "", "=q4=Boots of the Frozen Seed", "=ds=#s12#, #a2#"};
- { 6, 51926, "", "=q4=Handgrips of Frost and Sleet", "=ds=#s9#, #a3#"};
- { 7, 51919, "", "=q4=Deathspeaker Disciple's Belt", "=ds=#s10#, #a3#"};
- { 8, 51924, "", "=q4=Deathspeaker Zealot's Helm", "=ds=#s1#, #a4#"};
- { 9, 51917, "", "=q4=Ghoul Commander's Cuirass", "=ds=#s5#, #a4#"};
- { 16, 50343, "", "=q4=Whispering Fanged Skull", "=ds=#s14#"};
- { 17, 51922, "", "=q4=Scourgelord's Baton", "=ds=#s15#"};
- { 19, 51927, "", "=q4=Njordnar Bone Bow", "=ds=#w2#"};
- Prev = "ICCLordMarrowgarHEROIC";
- Next = "ICCGunshipBattleHEROIC";
- };
-
- AtlasLoot_Data["ICCLadyDeathwhisper25ManHEROIC"] = {
- { 1, 50643, "", "=q4=Shoulders of Mercy Killing", "=ds=#s3#, #a1#"};
- { 2, 50651, "", "=q4=The Lady's Brittle Bracers", "=ds=#s8#, #a1#"};
- { 3, 50646, "", "=q4=Cultist's Bloodsoaked Spaulders", "=ds=#s3#, #a2#"};
- { 4, 50649, "", "=q4=Deathwhisper Chestpiece", "=ds=#s5#, #a2#"};
- { 5, 50645, "", "=q4=Leggings of Northern Lights", "=ds=#s11#, #a3#"};
- { 6, 50652, "", "=q4=Necrophotic Greaves", "=ds=#s12#, #a3#"};
- { 7, 50640, "", "=q4=Broken Ram Skull Helm", "=ds=#s1#, #a4#"};
- { 8, 50650, "", "=q4=Fallen Lord's Handguards", "=ds=#s9#, #a4#"};
- { 9, 50639, "", "=q4=Blood-Soaked Saronite Stompers", "=ds=#s12#, #a4#"};
- { 11, 50647, "", "=q4=Ahn'kahar Onyx Neckguard", "=ds=#s2#"};
- { 12, 50642, "", "=q4=Juggernaut Band", "=ds=#s13#"};
- { 13, 50644, "", "=q4=Ring of Maddening Whispers", "=ds=#s13#"};
- { 16, 50641, "", "=q4=Heartpierce", "=ds=#h1#, #w4#"};
- { 17, 50648, "", "=q4=Nibelung", "=ds=#w9#"};
- { 18, 50638, "", "=q4=Zod's Repeating Longbow", "=ds=#w2#"};
- { 20, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 21, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Prev = "ICCLordMarrowgar25ManHEROIC";
- Next = "ICCGunshipBattle25ManHEROIC";
- };
-
- AtlasLoot_Data["ICCGunshipBattleHEROIC"] = {
- { 1, 51912, "", "=q4=Saronite Gargoyle Cloak", "=ds=#s4#"};
- { 2, 51908, "", "=q4=Cord of Dark Suffering", "=ds=#s10#, #a2#"};
- { 3, 51906, "", "=q4=Ice-Reinforced Vrykul Helm", "=ds=#s1#, #a3#"};
- { 4, 51911, "", "=q4=Pauldrons of Lost Hope", "=ds=#s3#, #a3#"};
- { 5, 51914, "", "=q4=Icecrown Rampart Bracers", "=ds=#s8#, #a3#"};
- { 6, 51907, "", "=q4=Bracers of Pale Illumination", "=ds=#s8#, #a4#"};
- { 7, 51915, "", "=q4=Bone Drake's Enameled Boots", "=ds=#s12#, #a4#"};
- { 9, 51913, "", "=q4=Abomination's Bloody Ring", "=ds=#s13#"};
- { 10, 50345, "", "=q4=Muradin's Spyglass", "=ds=#s14#"};
- { 16, 51910, "", "=q4=Midnight Sun", "=ds=#h3#, #w4#"};
- { 17, 51916, "", "=q4=Frost Giant's Cleaver", "=ds=#h1#, #w1#"};
- { 18, 51909, "", "=q4=Neverending Winter", "=ds=#w8#"};
- Prev = "ICCLadyDeathwhisperHEROIC";
- Next = "ICCSaurfangHEROIC";
- };
-
- AtlasLoot_Data["ICCGunshipBattle25ManHEROIC"] = {
- { 1, 50653, "", "=q4=Shadowvault Slayer's Cloak", "=ds=#s4#"};
- { 2, 50661, "", "=q4=Corp'rethar Ceremonial Crown", "=ds=#s1#, #a1#"};
- { 3, 50663, "", "=q4=Gunship Captain's Mittens", "=ds=#s9#, #a1#"};
- { 4, 50656, "", "=q4=Ikfirus's Sack of Wonder", "=ds=#s5#, #a2#"};
- { 5, 50665, "", "=q4=Boots of Unnatural Growth", "=ds=#s12#, #a2#"};
- { 6, 50655, "", "=q4=Scourge Hunter's Vambraces", "=ds=#s8#, #a3#"};
- { 7, 50660, "", "=q4=Boneguard Commander's Pauldrons", "=ds=#s3#, #a4#"};
- { 8, 50659, "", "=q4=Polar Bear Claw Bracers", "=ds=#s8#, #a4#"};
- { 9, 50667, "", "=q4=Waistband of Righteous Fury", "=ds=#s10#, #a4#"};
- { 11, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 12, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- { 16, 50658, "", "=q4=Amulet of the Silent Eulogy", "=ds=#s2#"};
- { 17, 50664, "", "=q4=Ring of Rapid Ascent", "=ds=#s13#"};
- { 18, 50657, "", "=q4=Skeleton Lord's Circle", "=ds=#s13#"};
- { 19, 50366, "", "=q4=Althor's Abacus", "=ds=#s14#"};
- { 20, 50349, "", "=q4=Corpse Tongue Coin", "=ds=#s14#"};
- { 22, 50654, "", "=q4=Scourgeborne Waraxe", "=ds=#h1#, #w1#"};
- Prev = "ICCLadyDeathwhisper25ManHEROIC";
- Next = "ICCSaurfang25ManHEROIC";
- };
-
- AtlasLoot_Data["ICCSaurfangHEROIC"] = {
- { 1, 51896, "", "=q4=Thaumaturge's Crackling Cowl", "=ds=#s1#, #a1#"};
- { 2, 51899, "", "=q4=Icecrown Spire Sandals", "=ds=#s12#, #a1#"};
- { 3, 51904, "", "=q4=Scourge Stranglers", "=ds=#s9#, #a2#"};
- { 4, 51897, "", "=q4=Leggings of Unrelenting Blood", "=ds=#s11#, #a2#"};
- { 5, 51903, "", "=q4=Hauberk of a Thousand Cuts", "=ds=#s5#, #a3#"};
- { 6, 51902, "", "=q4=Blade-Scored Carapace", "=ds=#s5#, #a4#"};
- { 7, 51901, "", "=q4=Gargoyle Spit Bracers", "=ds=#s8#, #a4#"};
- { 8, 51895, "", "=q4=Deathforged Legplates", "=ds=#s11#, #a4#"};
- { 10, 51894, "", "=q4=Soulcleave Pendant", "=ds=#s2#"};
- { 11, 51900, "", "=q4=Saurfang's Cold-Forged Band", "=ds=#s13#"};
- { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- { 20, 51905, "", "=q4=Ramaladni's Blade of Culling", "=ds=#h2#, #w1#"};
- { 21, 51898, "", "=q4=Mag'hari Chieftain's Staff", "=ds=#w9#"};
- Prev = "ICCGunshipBattleHEROIC";
- Next = "ICCFestergutHEROIC";
- };
-
- AtlasLoot_Data["ICCSaurfang25ManHEROIC"] = {
- { 1, 50668, "", "=q4=Greatcloak of the Turned Champion", "=ds=#s4#"};
- { 2, 50670, "", "=q4=Toskk's Maximized Wristguards", "=ds=#s8#, #a2#"};
- { 3, 50671, "", "=q4=Belt of the Blood Nova", "=ds=#s10#, #a3#"};
- { 4, 50363, "", "=q4=Deathbringer's Will", "=ds=#s14#"};
- { 5, 50672, "", "=q4=Bloodvenom Blade", "=ds=#h1#, #w10#"};
- { 7, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 8, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- { 16, 52030, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52029, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52028, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- { 20, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 21, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 22, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- Prev = "ICCGunshipBattle25ManHEROIC";
- Next = "ICCFestergut25ManHEROIC";
- };
-
- -----------------------
- --- The Plagueworks ---
- -----------------------
-
- AtlasLoot_Data["ICCFestergutHEROIC"] = {
- { 1, 51888, "", "=q4=Cloak of Many Skins", "=ds=#s4#"};
- { 2, 51883, "", "=q4=Bloodstained Surgeon's Shoulderguards", "=ds=#s3#, #a1#"};
- { 3, 51882, "", "=q4=Kilt of Untreated Wounds", "=ds=#s11#, #a1#"};
- { 4, 51885, "", "=q4=Wrists of Septic Shock", "=ds=#s8#, #a2#"};
- { 5, 51889, "", "=q4=Plague-Soaked Leather Leggings", "=ds=#s11#, #a2#"};
- { 6, 51891, "", "=q4=Taldron's Long Neglected Boots", "=ds=#s12#, #a3#"};
- { 7, 51886, "", "=q4=Festergut's Gaseous Gloves", "=ds=#s9#, #a4#"};
- { 8, 51892, "", "=q4=Festering Fingerguards", "=ds=#s9#, #a4#"};
- { 16, 51890, "", "=q4=Precious's Putrid Collar", "=ds=#s2#"};
- { 17, 51884, "", "=q4=Signet of Putrefaction", "=ds=#s13#"};
- { 19, 51893, "", "=q4=Gutbuster", "=ds=#h1#, #w6#"};
- { 20, 51887, "", "=q4=Abracadaver", "=ds=#w9#"};
- Prev = "ICCSaurfangHEROIC";
- Next = "ICCRotfaceHEROIC";
- };
-
- AtlasLoot_Data["ICCFestergut25ManHEROIC"] = {
- { 1, 50702, "", "=q4=Lingering Illness", "=ds=#s10#, #a1#"};
- { 2, 50694, "", "=q4=Plaguebringer's Stained Pants", "=ds=#s11#, #a1#"};
- { 3, 50699, "", "=q4=Plague Scientist's Boots", "=ds=#s12#, #a1#"};
- { 4, 50697, "", "=q4=Gangrenous Leggings", "=ds=#s11#, #a2#"};
- { 5, 50696, "", "=q4=Leather of Stitched Scourge Parts", "=ds=#s11#, #a2#"};
- { 6, 50698, "", "=q4=Horrific Flesh Epaulets", "=ds=#s3#, #a3#"};
- { 7, 50689, "", "=q4=Carapace of Forgotten Kings", "=ds=#s5#, #a3#"};
- { 8, 50703, "", "=q4=Unclean Surgical Gloves", "=ds=#s9#, #a3#"};
- { 9, 50688, "", "=q4=Nerub'ar Stalker's Cord", "=ds=#s10#, #a3#"};
- { 10, 50701, "", "=q4=Faceplate of the Forgotten", "=ds=#s1#, #a4#"};
- { 11, 50690, "", "=q4=Fleshrending Gauntlets", "=ds=#s9#, #a4#"};
- { 12, 50691, "", "=q4=Belt of Broken Bones", "=ds=#s10#, #a4#"};
- { 16, 50700, "", "=q4=Holiday's Grace", "=ds=#s2#"};
- { 17, 50693, "", "=q4=Might of Blight", "=ds=#s13#"};
- { 19, 50692, "", "=q4=Black Bruise", "=ds=#h3#, #w13#"};
- { 20, 50695, "", "=q4=Distant Land", "=ds=#w9#"};
- { 22, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 23, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Prev = "ICCSaurfang25ManHEROIC";
- Next = "ICCRotface25ManHEROIC";
- };
-
- AtlasLoot_Data["ICCRotfaceHEROIC"] = {
- { 1, 51872, "", "=q4=Ether-Soaked Bracers", "=ds=#s8#, #a1#"};
- { 2, 51874, "", "=q4=Gloves of Broken Fingers", "=ds=#s9#, #a1#"};
- { 3, 51870, "", "=q4=Chestguard of the Failed Experiment", "=ds=#s5#, #a2#"};
- { 4, 51877, "", "=q4=Taldron's Short-Sighted Helm", "=ds=#s1#, #a3#"};
- { 5, 51873, "", "=q4=Shuffling Shoes", "=ds=#s12#, #a3#"};
- { 6, 51879, "", "=q4=Flesh-Shaper's Gurney Strap", "=ds=#s10#, #a4#"};
- { 8, 51871, "", "=q4=Choker of Filthy Diamonds", "=ds=#s2#"};
- { 9, 51878, "", "=q4=Rotface's Rupturing Ring", "=ds=#s13#"};
- { 16, 51876, "", "=q4=Abomination Knuckles", "=ds=#h3#, #w13#"};
- { 17, 51875, "", "=q4=Lockjaw", "=ds=#h3#, #w6#"};
- { 18, 51881, "", "=q4=Shaft of Glacial Ice", "=ds=#w9#"};
- { 19, 51880, "", "=q4=Gluth's Fetching Knife", "=ds=#w11#"};
- Prev = "ICCFestergutHEROIC";
- Next = "ICCPutricideHEROIC";
- };
-
- AtlasLoot_Data["ICCRotface25ManHEROIC"] = {
- { 1, 50677, "", "=q4=Winding Sheet", "=ds=#s4#"};
- { 2, 50686, "", "=q4=Death Surgeon's Sleeves", "=ds=#s8#, #a1#"};
- { 3, 50679, "", "=q4=Helm of the Elder Moon", "=ds=#s1#, #a2#"};
- { 4, 50675, "", "=q4=Aldriana's Gloves of Secrecy", "=ds=#s9#, #a2#"};
- { 5, 50673, "", "=q4=Dual-Bladed Pauldrons", "=ds=#s3#, #a3#"};
- { 6, 50687, "", "=q4=Bloodsunder's Bracers", "=ds=#s8#, #a3#"};
- { 7, 50674, "", "=q4=Raging Behemoth's Shoulderplates", "=ds=#s3#, #a4#"};
- { 8, 50681, "", "=q4=Blightborne Warplate", "=ds=#s5#, #a4#"};
- { 9, 50680, "", "=q4=Rot-Resistant Breastplate", "=ds=#s5#, #a4#"};
- { 11, 50682, "", "=q4=Bile-Encrusted Medallion", "=ds=#s2#"};
- { 12, 50678, "", "=q4=Seal of Many Mouths", "=ds=#s13#"};
- { 13, 50348, "", "=q4=Dislodged Foreign Object", "=ds=#s14#"};
- { 16, 50685, "", "=q4=Trauma", "=ds=#h3#, #w6#"};
- { 17, 50676, "", "=q4=Rib Spreader", "=ds=#h1#, #w4#"};
- { 18, 50684, "", "=q4=Corpse-Impaling Spike", "=ds=#w12#"};
- { 20, 50231, "", "=q4=Rotface's Acidic Blood", "=ds=#m3#"};
- { 22, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 23, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Prev = "ICCFestergut25ManHEROIC";
- Next = "ICCPutricide25ManHEROIC";
- };
-
- AtlasLoot_Data["ICCPutricideHEROIC"] = {
- { 1, 51859, "", "=q4=Shoulders of Ruinous Senility", "=ds=#s3#, #a1#"};
- { 2, 51862, "", "=q4=Cauterized Cord", "=ds=#s10#, #a1#"};
- { 3, 51866, "", "=q4=Discarded Bag of Entrails", "=ds=#s1#, #a2#"};
- { 4, 51864, "", "=q4=Shoulderpads of the Morbid Ritual", "=ds=#s3#, #a3#"};
- { 5, 51860, "", "=q4=Rippling Flesh Kilt", "=ds=#s11#, #a3#"};
- { 6, 51865, "", "=q4=Scalpel-Sharpening Shoulderguards", "=ds=#s3#, #a4#"};
- { 7, 51861, "", "=q4=Chestplate of Septic Stitches", "=ds=#s5#, #a4#"};
- { 9, 51867, "", "=q4=Infected Choker", "=ds=#s2#"};
- { 10, 51863, "", "=q4=Pendant of Split Veins", "=ds=#s2#"};
- { 11, 50344, "", "=q4=Unidentifiable Organ", "=ds=#s14#"};
- { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- { 20, 51868, "", "=q4=Flesh-Carving Scalpel", "=ds=#h1#, #w4#"};
- { 21, 51869, "", "=q4=The Facelifter", "=ds=#h1#, #w10#"};
- Prev = "ICCRotfaceHEROIC";
- Next = "ICCCouncilHEROIC";
- };
-
- AtlasLoot_Data["ICCPutricide25ManHEROIC"] = {
- { 1, 50707, "", "=q4=Astrylian's Sutured Cinch", "=ds=#s10#, #a2#"};
- { 2, 50705, "", "=q4=Professor's Bloodied Smock", "=ds=#s10#, #a2#"};
- { 3, 50706, "", "=q4=Tiny Abomination in a Jar", "=ds=#s14#"};
- { 4, 50708, "", "=q4=Last Word", "=ds=#h1#, #w6#"};
- { 5, 50704, "", "=q4=Rigormortis", "=ds=#h1#, #w10#"};
- { 7, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 8, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- { 16, 52030, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52029, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52028, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- { 20, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 21, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 22, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- Prev = "ICCRotface25ManHEROIC";
- Next = "ICCCouncil25ManHEROIC";
- };
-
- ------------------------
- --- The Crimson Hall ---
- ------------------------
-
- AtlasLoot_Data["ICCCouncilHEROIC"] = {
- { 1, 51848, "", "=q4=Heartsick Mender's Cape", "=ds=#s4#"};
- { 2, 51851, "", "=q4=Bloodsoul Raiment", "=ds=#s5#, #a1#"};
- { 3, 51850, "", "=q4=Pale Corpse Boots", "=ds=#s12#, #a1#"};
- { 4, 51856, "", "=q4=Taldaram's Soft Slippers", "=ds=#s12#, #a2#"};
- { 5, 51853, "", "=q4=Blood-Drinker's Girdle", "=ds=#s10#, #a3#"};
- { 6, 51847, "", "=q4=Spaulders of the Blood Princes", "=ds=#s3#, #a4#"};
- { 7, 51854, "", "=q4=Battle-Maiden's Legguards", "=ds=#s11#, #a4#"};
- { 9, 51849, "", "=q4=Cerise Coiled Ring", "=ds=#s13#"};
- { 10, 51855, "", "=q4=Thrice Fanged Signet", "=ds=#s13#"};
- { 16, 51858, "", "=q4=Soulbreaker", "=ds=#h1#, #w10#"};
- { 17, 51857, "", "=q4=Hersir's Greatspear", "=ds=#w7#"};
- { 18, 51852, "", "=q4=Wand of Ruby Claret", "=ds=#w12#"};
- Prev = "ICCPutricideHEROIC";
- Next = "ICCLanathelHEROIC";
- };
-
- AtlasLoot_Data["ICCCouncil25ManHEROIC"] = {
- { 1, 50718, "", "=q4=Royal Crimson Cloak", "=ds=#s4#"};
- { 2, 50717, "", "=q4=Sanguine Silk Robes", "=ds=#s5#, #a1#"};
- { 3, 50722, "", "=q4=San'layn Ritualist Gloves", "=ds=#s9#, #a1#"};
- { 4, 50713, "", "=q4=Geistlord's Punishment Sack", "=ds=#s1#, #a2#"};
- { 5, 50715, "", "=q4=Shoulders of Frost-Tipped Thorns", "=ds=#s3#, #a2#"};
- { 6, 50723, "", "=q4=Mail of Crimson Coins", "=ds=#s5#, #a3#"};
- { 7, 50711, "", "=q4=Treads of the Wasteland", "=ds=#s12#, #a3#"};
- { 8, 50712, "", "=q4=Landsoul's Horned Greathelm", "=ds=#s1#, #a4#"};
- { 9, 50716, "", "=q4=Taldaram's Plated Fists", "=ds=#s9#, #a4#"};
- { 10, 50721, "", "=q4=Crypt Keeper's Bracers", "=ds=#s8#, #a4#"};
- { 16, 50720, "", "=q4=Incarnadine Band of Mending", "=ds=#s13#"};
- { 17, 50714, "", "=q4=Valanar's Other Signet Ring", "=ds=#s13#"};
- { 18, 50719, "", "=q4=Shadow Silk Spindle", "=ds=#s15#"};
- { 20, 50710, "", "=q4=Keleseth's Seducer", "=ds=#h4#, #w13#"};
- { 21, 50603, "", "=q4=Cryptmaker", "=ds=#h2#, #w6#"};
- { 23, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 24, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Prev = "ICCPutricide25ManHEROIC";
- Next = "ICCLanathel25ManHEROIC";
- };
-
- AtlasLoot_Data["ICCLanathelHEROIC"] = {
- { 1, 51837, "", "=q4=Cowl of Malefic Repose", "=ds=#s1#, #a1#"};
- { 2, 51839, "", "=q4=Shoulderpads of the Searing Kiss", "=ds=#s3#, #a2#"};
- { 3, 51841, "", "=q4=Ivory-Inlaid Leggings", "=ds=#s11#, #a2#"};
- { 4, 51840, "", "=q4=Chestguard of Siphoned Elements", "=ds=#s5#, #a3#"};
- { 5, 51844, "", "=q4=Throatrender Handguards", "=ds=#s9#, #a4#"};
- { 6, 51835, "", "=q4=Veincrusher Gauntlets", "=ds=#s9#, #a4#"};
- { 7, 51836, "", "=q4=Tightening Waistband", "=ds=#s10#, #a4#"};
- { 9, 51842, "", "=q4=Collar of Haughty Disdain", "=ds=#s2#"};
- { 10, 51843, "", "=q4=Seal of the Twilight Queen", "=ds=#s13#"};
- { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- { 20, 51846, "", "=q4=Bloodsipper", "=ds=#h1#, #w4#"};
- { 21, 51845, "", "=q4=Stakethrower", "=ds=#w5#"};
- { 22, 51838, "", "=q4=Lana'thel's Bloody Nail", "=ds=#w12#"};
- Prev = "ICCCouncilHEROIC";
- Next = "ICCValithriaHEROIC";
- };
-
- AtlasLoot_Data["ICCLanathel25ManHEROIC"] = {
- { 1, 50724, "", "=q4=Blood Queen's Crimson Choker", "=ds=#s2#"};
- { 2, 50728, "", "=q4=Lana'thel's Chain of Flagellation", "=ds=#s2#"};
- { 3, 50726, "", "=q4=Bauble of True Blood", "=ds=#s14#"};
- { 4, 50727, "", "=q4=Bloodfall", "=ds=#w7#"};
- { 5, 50725, "", "=q4=Dying Light", "=ds=#w9#"};
- { 6, 50729, "", "=q4=Icecrown Glacial Wall", "=ds=#w8#"};
- { 8, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 9, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- { 16, 52030, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52029, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52028, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- { 20, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 21, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 22, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- Prev = "ICCCouncil25ManHEROIC";
- Next = "ICCValithria25ManHEROIC";
- };
-
- ------------------------
- --- The Frozen Halls ---
- ------------------------
-
- AtlasLoot_Data["ICCValithriaHEROIC"] = {
- { 1, 51826, "", "=q4=Lich Wrappings", "=ds=#s4#"};
- { 2, 51823, "", "=q4=Leggings of the Refracted Mind", "=ds=#s11#, #a1#"};
- { 3, 51825, "", "=q4=Sister Svalna's Spangenhelm", "=ds=#s1#, #a2#"};
- { 4, 51830, "", "=q4=Skinned Whelp Shoulders", "=ds=#s3#, #a2#"};
- { 5, 51827, "", "=q4=Stormbringer Gloves", "=ds=#s9#, #a3#"};
- { 6, 51829, "", "=q4=Legguards of the Twisted Dream", "=ds=#s11#, #a3#"};
- { 7, 51824, "", "=q4=Emerald Saint's Spaulders", "=ds=#s3#, #a4#"};
- { 8, 51832, "", "=q4=Taiga Bindings", "=ds=#s8#, #a4#"};
- { 9, 51831, "", "=q4=Ironrope Belt of Ymirjar", "=ds=#s10#, #a4#"};
- { 16, 51833, "", "=q4=Oxheart", "=ds=#h2#, #w6#"};
- { 17, 51828, "", "=q4=Sister Svalna's Aether Staff", "=ds=#w9#"};
- { 18, 51834, "", "=q4=Dreamhunter's Carbine", "=ds=#w5#"};
- Prev = "ICCLanathelHEROIC";
- Next = "ICCSindragosaHEROIC";
- };
-
- AtlasLoot_Data["ICCValithria25ManHEROIC"] = {
- { 1, 50628, "", "=q4=Frostbinder's Shredded Cape", "=ds=#s4#"};
- { 2, 50629, "", "=q4=Robe of the Waking Nightmare", "=ds=#s5#, #a1#"};
- { 3, 50630, "", "=q4=Bracers of Eternal Dreaming", "=ds=#s8#, #a2#"};
- { 4, 50626, "", "=q4=Snowstorm Helm", "=ds=#s1#, #a3#"};
- { 5, 50619, "", "=q4=Anub'ar Stalker's Gloves", "=ds=#s9#, #a3#"};
- { 6, 50620, "", "=q4=Coldwraith Links", "=ds=#s10#, #a4#"};
- { 7, 50623, "", "=q4=Leggings of Dying Candles", "=ds=#s11#, #a4#"};
- { 8, 50624, "", "=q4=Scourge Reaver's Legplates", "=ds=#s11#, #a4#"};
- { 9, 50632, "", "=q4=Boots of the Funeral March", "=ds=#s12#, #a4#"};
- { 10, 50625, "", "=q4=Grinning Skull Greatboots", "=ds=#s12#, #a4#"};
- { 16, 50627, "", "=q4=Noose of Malachite", "=ds=#s2#"};
- { 17, 50622, "", "=q4=Devium's Eternally Cold Ring", "=ds=#s13#"};
- { 18, 50618, "", "=q4=Frostbrood Sapphire Ring", "=ds=#s13#"};
- { 20, 50621, "", "=q4=Lungbreaker", "=ds=#h1#, #w4#"};
- { 21, 50631, "", "=q4=Nightmare Ender", "=ds=#w9#"};
- { 23, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 24, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Prev = "ICCLanathel25ManHEROIC";
- Next = "ICCSindragosa25ManHEROIC";
- };
-
- AtlasLoot_Data["ICCSindragosaHEROIC"] = {
- { 1, 51813, "", "=q4=Robes of Azure Downfall", "=ds=#s5#, #a1#"};
- { 2, 51820, "", "=q4=Vambraces of the Frost Wyrm Queen", "=ds=#s8#, #a2#"};
- { 3, 51814, "", "=q4=Icicle Shapers", "=ds=#s9#, #a2#"};
- { 4, 51811, "", "=q4=Shoulderguards of Crystalline Bone", "=ds=#s3#, #a3#"};
- { 5, 51818, "", "=q4=Wyrmwing Treads", "=ds=#s12#, #a3#"};
- { 6, 51821, "", "=q4=Etched Dragonbone Girdle", "=ds=#s10#, #a4#"};
- { 7, 51817, "", "=q4=Legplates of Aetheric Strife", "=ds=#s11#, #a4#"};
- { 8, 51816, "", "=q4=Scourge Fanged Stompers", "=ds=#s12#, #a4#"};
- { 10, 51822, "", "=q4=Rimetooth Pendant", "=ds=#s2#"};
- { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- { 20, 51819, "", "=q4=Splintershard", "=ds=#h4#, #w13#"};
- { 21, 51815, "", "=q4=Bleak Coldarra Carver", "=ds=#h3#, #w4#"};
- { 22, 51812, "", "=q4=Lost Pavise of the Blue Flight", "=ds=#w8#"};
- Prev = "ICCValithriaHEROIC";
- Next = "ICCLichKingHEROIC";
- };
-
- AtlasLoot_Data["ICCSindragosa25ManHEROIC"] = {
- { 1, 50633, "", "=q4=Sindragosa's Cruel Claw", "=ds=#s2#"};
- { 2, 50636, "", "=q4=Memory of Malygos", "=ds=#s13#"};
- { 3, 50365, "", "=q4=Phylactery of the Nameless Lich", "=ds=#s14#"};
- { 4, 50364, "", "=q4=Sindragosa's Flawless Fang", "=ds=#s14#"};
- { 5, 50635, "", "=q4=Sundial of Eternal Dusk", "=ds=#s15#"};
- { 7, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 8, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- { 9, 51026, "", "=q1=Crystalline Essence of Sindragosa", "=ds=#m3#"};
- { 16, 52030, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52029, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52028, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- { 20, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 21, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 22, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- Prev = "ICCValithria25ManHEROIC";
- Next = "ICCLichKing25ManHEROIC";
- };
-
- -------------------------
- --- The Frozen Throne ---
- -------------------------
-
- AtlasLoot_Data["ICCLichKingHEROIC"] = {
- { 1, 51941, "", "=q4=Pugius, Fist of Defiance", "=ds=#h3#, #w13#"};
- { 2, 51939, "", "=q4=Tel'thas, Dagger of the Blood King", "=ds=#h3#, #w4#"};
- { 3, 51942, "", "=q4=Stormfury, Black Blade of the Betrayer", "=ds=#h1#, #w4#"};
- { 4, 51947, "", "=q4=Troggbane, Axe of the Frostborne King", "=ds=#h1#, #w1#"};
- { 5, 51944, "", "=q4=Valius, Gavel of the Lightbringer", "=ds=#h3#, #w6#"};
- { 6, 51946, "", "=q4=Warmace of Menethil", "=ds=#h2#, #w6#"};
- { 7, 51943, "", "=q4=Halion, Staff of Forgotten Love", "=ds=#w9#"};
- { 8, 51945, "", "=q4=Tainted Twig of Nordrassil", "=ds=#w9#"};
- { 9, 51940, "", "=q4=Windrunner's Heartseeker", "=ds=#w3#"};
- { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- { 20, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- Prev = "ICCSindragosaHEROIC";
- Next = "ICCTrash25Man";
- };
-
- AtlasLoot_Data["ICCLichKing25ManHEROIC"] = {
- { 1, 50736, "", "=q4=Heaven's Fall, Kryss of a Thousand Lies", "=ds=#h1#, #w4#"};
- { 2, 50732, "", "=q4=Bloodsurge, Kel'Thuzad's Blade of Agony", "=ds=#h3#, #w10#"};
- { 3, 50730, "", "=q4=Glorenzelg, High-Blade of the Silver Hand", "=ds=#h2#, #w10#"};
- { 4, 50737, "", "=q4=Havoc's Call, Blade of Lordaeron Kings", "=ds=#h1#, #w1#"};
- { 5, 50734, "", "=q4=Royal Scepter of Terenas II", "=ds=#h3#, #w6#"};
- { 6, 50738, "", "=q4=Mithrios, Bronzebeard's Legacy", "=ds=#h1#, #w6#"};
- { 7, 50735, "", "=q4=Oathbinder, Charge of the Ranger-General", "=ds=#w7#"};
- { 8, 50731, "", "=q4=Archus, Greatstaff of Antonidas", "=ds=#w9#"};
- { 9, 50733, "", "=q4=Fal'inrush, Defender of Quel'thalas", "=ds=#w3#"};
- { 10, 50818, "", "=q4=Invincible's Reins", "=ds=#e12#"};
- { 12, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
- { 13, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
- { 16, 52030, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 17, 52029, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 18, 52028, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- { 20, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
- { 21, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
- { 22, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
- Prev = "ICCSindragosa25ManHEROIC";
- Next = "ICCTrash25Man";
- };
-
- --------------------
- --- Ruby Sanctum ---
- --------------------
-
- AtlasLoot_Data["Halion"] = {
- { 1, 53115, "", "=q4=Abduction's Cover", "=ds=#s4#"};
- { 2, 53118, "", "=q4=Misbegotten Belt", "=ds=#s10#, #a1#"};
- { 3, 53114, "", "=q4=Gloaming Sark", "=ds=#s5#, #a2#"};
- { 4, 53117, "", "=q4=Changeling Gloves", "=ds=#s9#, #a2#"};
- { 5, 53113, "", "=q4=Twilight Scale Shoulders", "=ds=#s3#, #a3#"};
- { 6, 53119, "", "=q4=Boots of Divided Being", "=ds=#s12#, #a3#"};
- { 7, 53112, "", "=q4=Bracers of the Heir", "=ds=#s8#, #a4#"};
- { 8, 53121, "", "=q4=Surrogate Belt", "=ds=#s10#, #a4#"};
- { 9, 53111, "", "=q4=Scion's Treads", "=ds=#s12#, #a4#"};
- { 16, 53103, "", "=q4=Baltharus' Gift", "=ds=#s2#"};
- { 17, 53116, "", "=q4=Saviana's Tribute", "=ds=#s13#"};
- { 18, 53110, "", "=q4=Zarithrian's Offering", "=ds=#s13#"};
- };
-
- AtlasLoot_Data["Halion25Man"] = {
- { 1, 53489, "", "=q4=Cloak of Burning Dusk", "=ds=#s4#"};
- { 2, 53486, "", "=q4=Bracers of Fiery Night", "=ds=#s8#, #a1#"};
- { 3, 53134, "", "=q4=Phaseshifter's Bracers", "=ds=#s8#, #a2#"};
- { 4, 53126, "", "=q4=Umbrage Armbands", "=ds=#s10#, #a2#"};
- { 5, 53488, "", "=q4=Split Shape Belt", "=ds=#s10#, #a3#"};
- { 6, 53127, "", "=q4=Returning Footfalls", "=ds=#s12#, #a3#"};
- { 7, 53125, "", "=q4=Apocalypse's Advance", "=ds=#s12#, #a4#"};
- { 8, 53487, "", "=q4=Foreshadow Steps", "=ds=#s12#, #a4#"};
- { 9, 53129, "", "=q4=Treads of Impending Resurrection", "=ds=#s12#, #a4#"};
- { 16, 53132, "", "=q4=Penumbra Pendant", "=ds=#s2#"};
- { 17, 53490, "", "=q4=Ring of Phased Regeneration", "=ds=#s13#"};
- { 18, 53133, "", "=q4=Signet of Twilight", "=ds=#s13#"};
- { 19, 54572, "", "=q4=Charred Twilight Scale", "=ds=#s14#"};
- { 20, 54573, "", "=q4=Glowing Twilight Scale", "=ds=#s14#"};
- { 21, 54571, "", "=q4=Petrified Twilight Scale", "=ds=#s14#"};
- { 22, 54569, "", "=q4=Sharpened Twilight Scale", "=ds=#s14#"};
- };
-
- AtlasLoot_Data["HalionHEROIC"] = {
- { 1, 54556, "", "=q4=Abduction's Cover", "=ds=#s4#"};
- { 2, 54562, "", "=q4=Misbegotten Belt", "=ds=#s10#, #a1#"};
- { 3, 54561, "", "=q4=Gloaming Sark", "=ds=#s5#, #a2#"};
- { 4, 54560, "", "=q4=Changeling Gloves", "=ds=#s9#, #a2#"};
- { 5, 54566, "", "=q4=Twilight Scale Shoulders", "=ds=#s3#, #a3#"};
- { 6, 54558, "", "=q4=Boots of Divided Being", "=ds=#s12#, #a3#"};
- { 7, 54559, "", "=q4=Bracers of the Heir", "=ds=#s8#, #a4#"};
- { 8, 54565, "", "=q4=Surrogate Belt", "=ds=#s10#, #a4#"};
- { 9, 54564, "", "=q4=Scion's Treads", "=ds=#s12#, #a4#"};
- { 16, 54557, "", "=q4=Baltharus' Gift", "=ds=#s2#"};
- { 17, 54563, "", "=q4=Saviana's Tribute", "=ds=#s13#"};
- { 18, 54567, "", "=q4=Zarithrian's Offering", "=ds=#s13#"};
- };
-
- AtlasLoot_Data["Halion25ManHEROIC"] = {
- { 1, 54583, "", "=q4=Cloak of Burning Dusk", "=ds=#s4#"};
- { 2, 54582, "", "=q4=Bracers of Fiery Night", "=ds=#s8#, #a1#"};
- { 3, 54584, "", "=q4=Phaseshifter's Bracers", "=ds=#s8#, #a2#"};
- { 4, 54580, "", "=q4=Umbrage Armbands", "=ds=#s10#, #a2#"};
- { 5, 54587, "", "=q4=Split Shape Belt", "=ds=#s10#, #a3#"};
- { 6, 54577, "", "=q4=Returning Footfalls", "=ds=#s12#, #a3#"};
- { 7, 54578, "", "=q4=Apocalypse's Advance", "=ds=#s12#, #a4#"};
- { 8, 54586, "", "=q4=Foreshadow Steps", "=ds=#s12#, #a4#"};
- { 9, 54579, "", "=q4=Treads of Impending Resurrection", "=ds=#s12#, #a4#"};
- { 16, 54581, "", "=q4=Penumbra Pendant", "=ds=#s2#"};
- { 17, 54585, "", "=q4=Ring of Phased Regeneration", "=ds=#s13#"};
- { 18, 54576, "", "=q4=Signet of Twilight", "=ds=#s13#"};
- { 19, 54588, "", "=q4=Charred Twilight Scale", "=ds=#s14#"};
- { 20, 54589, "", "=q4=Glowing Twilight Scale", "=ds=#s14#"};
- { 21, 54591, "", "=q4=Petrified Twilight Scale", "=ds=#s14#"};
- { 22, 54590, "", "=q4=Sharpened Twilight Scale", "=ds=#s14#"};
- };
-
- ----------------
- --- Factions ---
- ----------------
-
- -------------------------
- --- Alliance Vanguard ---
- -------------------------
-
- AtlasLoot_Data["AllianceVanguard1"] = {
- { 2, 0, "INV_Shield_36", "=q6=#r4#", ""};
- { 3, 38459, "", "=q3=Orb of the Eastern Kingdoms", "=ds=#s15#"};
- { 4, 38465, "", "=q3=Vanguard Soldier's Dagger", "=ds=#h1#, #w4#"};
- { 5, 38455, "", "=q3=Hammer of the Alliance Vanguard", "=ds=#h1#, #w6#"};
- { 6, 38463, "", "=q3=Lordaeron's Resolve", "=ds=#w8#"};
- { 7, 38453, "", "=q3=Shield of the Lion-hearted", "=ds=#w8#"};
- { 8, 38457, "", "=q3=Sawed-off Hand Cannon", "=ds=#w5#"};
- { 9, 38464, "", "=q3=Gnomish Magician's Quill", "=ds=#w12#"};
- { 17, 0, "INV_Shield_36", "=q6=#r5#", ""};
- { 18, 44503, "", "=q4=Schematic: Mekgineer's Chopper", "=ds=#p5# (450)"};
- { 19, 44937, "", "=q3=Plans: Titanium Plating", "=ds=#p2# (450)"};
- { 20, 44701, "", "=q7=Arcanum of the Savage Gladiator", "=ds=#s1# #e17#"};
- Back = "REPMENU";
- };
-
- ----------------------
- --- Argent Crusade ---
- ----------------------
-
- AtlasLoot_Data["ArgentCrusade"] = {
- { 1, 0, "INV_Jewelry_Talisman_08", "=q6=#r2#", ""};
- { 2, 43154, "", "=q1=Tabard of the Argent Crusade", "=ds=#s7#"};
- { 4, 0, "INV_Jewelry_Talisman_08", "=q6=#r4#", ""};
- { 5, 44248, "", "=q3=Battle Mender's Helm", "=ds=#s1#, #a3#"};
- { 6, 44247, "", "=q3=Fang-Deflecting Faceguard", "=ds=#s1#, #a4#"};
- { 7, 44244, "", "=q3=Argent Skeleton Crusher", "=ds=#h2#, #w6#"};
- { 8, 44245, "", "=q3=Zombie Sweeper Shotgun", "=ds=#w5#"};
- { 9, 44214, "", "=q3=Purifying Torch", "=ds=#w12#"};
- { 10, 41726, "", "=q3=Design: Guardian's Twilight Opal", "=ds=#p12# (390)"};
- { 11, 44150, "", "=q3=Arcanum of the Stalwart Protector", "=ds=#s1# #e17#"};
- { 16, 0, "INV_Jewelry_Talisman_08", "=q6=#r3#", ""};
- { 17, 44216, "", "=q3=Cloak of Holy Extermination", "=ds=#s4#"};
- { 18, 44240, "", "=q3=Special Issue Legplates", "=ds=#s11#, #a4#"};
- { 19, 44239, "", "=q3=Standard Issue Legguards", "=ds=#s11#, #a4#"};
- { 20, 44139, "", "=q7=Arcanum of the Fleeing Shadow", "=ds=#s1# #e17#"};
- { 22, 0, "INV_Jewelry_Talisman_08", "=q6=#r5#", ""};
- { 23, 44297, "", "=q4=Boots of the Neverending Path", "=ds=#s12#, #a2#"};
- { 24, 44295, "", "=q4=Polished Regimental Hauberk", "=ds=#s5#, #a3#"};
- { 25, 44296, "", "=q4=Helm of Purified Thoughts", "=ds=#s1#, #a4#"};
- { 26, 44283, "", "=q4=Signet of Hopeful Light", "=ds=#s13#"};
- { 27, 42187, "", "=q1=Pattern: Brilliant Spellthread", "=ds=#p8# (430)"};
- Back = "REPMENU";
- };
-
- -------------------------
- --- Frenzyheart Tribe ---
- -------------------------
-
- AtlasLoot_Data["FrenzyheartTribe"] = {
- { 1, 0, "INV_Misc_Rune_14", "=q6=#r2#", ""};
- { 2, 41561, "", "=q2=Design: Reckless Huge Citrine", "=ds=#p12# 350"};
- { 3, 44064, "", "=q1=Nepeta Leaf", "=ds="};
- { 4, 44072, "", "=q1=Roasted Mystery Beast", "=ds=#e3#"};
- { 6, 0, "INV_Potion_139", "=q6="..AL["Ripe Disgusting Jar"], ""};
- { 7, 44719, "", "=q3=Frenzyheart Brew", "=ds=", ""};
- { 8, 39671, "", "=q1=Resurgent Healing Potion", "=ds=#e2#", ""};
- { 9, 40067, "", "=q1=Icy Mana Potion", "=ds=#e2#", ""};
- { 10, 40087, "", "=q1=Powerful Rejuvenation Potion", "=ds=#e2#", ""};
- { 11, 44716, "", "=q1=Mysterious Fermented Liquid", "=ds=#e4#", ""};
- { 16, 0, "INV_Misc_Rune_14", "=q6=#r4#", ""};
- { 17, 44116, "", "=q3=Muddied Crimson Gloves", "=ds=#s9#, #a1#"};
- { 18, 44117, "", "=q3=Azure Strappy Pants", "=ds=#s11#, #a2#"};
- { 19, 44122, "", "=q3=Scavenged Feathery Leggings", "=ds=#s11#, #a3#"};
- { 20, 44120, "", "=q3=Giant-Sized Gauntlets", "=ds=#s9#, #a4#"};
- { 21, 44121, "", "=q3=Sparkly Shiny Gloves", "=ds=#s9#, #a4#"};
- { 22, 44123, "", "=q3=Discarded Titanium Legplates", "=ds=#s11#, #a4#"};
- { 23, 44118, "", "=q3=Stolen Vrykul Harpoon", "=ds=#w11#"};
- { 24, 41723, "", "=q3=Design: Jagged Forest Emerald", "=ds=#p12# 390"};
- { 25, 44717, "", "=q1=Disgusting Jar", "=ds="};
- { 27, 0, "INV_Misc_Rune_14", "=q6=#r5#", ""};
- { 28, 44073, "", "=q1=Frenzyheart Insignia of Fury", "=ds=#s14#"};
- Back = "REPMENU";
- };
-
- ----------------------------
- --- The Horde Expedition ---
- ----------------------------
-
- AtlasLoot_Data["HordeExpedition1"] = {
- { 2, 0, "INV_Shield_50", "=q6=#r4#", ""};
- { 3, 38458, "", "=q3=Darkspear Orb", "=ds=#s15#"};
- { 4, 38461, "", "=q3=Warsong Shanker", "=ds=#h1#, #w4#"};
- { 5, 38454, "", "=q3=Warsong Punisher", "=ds=#h1#, #w6#"};
- { 6, 38452, "", "=q3=Bulwark of the Warchief", "=ds=#w8#"};
- { 7, 38462, "", "=q3=Warsong Stormshield", "=ds=#w8#"};
- { 8, 38456, "", "=q3=Sin'dorei Recurve Bow", "=ds=#w2#"};
- { 9, 38460, "", "=q3=Charged Wand of the Cleft", "=ds=#w12#"};
- { 17, 0, "INV_Shield_50", "=q6=#r5#", ""};
- { 18, 44502, "", "=q4=Schematic: Mechano-hog", "=ds=#p5# (450)"};
- { 19, 44938, "", "=q3=Plans: Titanium Plating", "=ds=#p2# (450)"};
- { 20, 44702, "", "=q7=Arcanum of the Savage Gladiator", "=ds=#s1# #e17#"};
- Back = "REPMENU";
- };
-
- -----------------
- --- Kirin Tor ---
- -----------------
-
- AtlasLoot_Data["KirinTor"] = {
- { 1, 0, "Spell_Fire_MasterOfElements", "=q6=#r2#", ""};
- { 2, 43157, "", "=q1=Tabard of the Kirin Tor", "=ds=#s7#"};
- { 4, 0, "Spell_Fire_MasterOfElements", "=q6=#r3#", ""};
- { 5, 44167, "", "=q3=Shroud of Dedicated Research", "=ds=#s4#"};
- { 6, 44170, "", "=q3=Helm of the Majestic Stag", "=ds=#s1#, #a2#"};
- { 7, 44171, "", "=q3=Spaulders of Grounded Lightning", "=ds=#s3#, #a3#"};
- { 8, 44166, "", "=q3=Lightblade Rivener", "=ds=#h1#, #w4#"};
- { 9, 44141, "", "=q3=Arcanum of the Flame's Soul", "=ds=#s1# #e17#"};
- { 16, 0, "Spell_Fire_MasterOfElements", "=q6=#r4#", ""};
- { 17, 44179, "", "=q3=Mind-Expanding Leggings", "=ds=#s11#, #a2#"};
- { 18, 44176, "", "=q3=Girdle of the Warrior Magi", "=ds=#s10#, #a4#"};
- { 19, 44173, "", "=q3=Flameheart Spell Scalpel", "=ds=#h3#, #w4#"};
- { 20, 44174, "", "=q3=Stave of Shrouded Mysteries", "=ds=#w9#"};
- { 21, 44159, "", "=q7=Arcanum of Burning Mysteries", "=ds=#s1# #e17#"};
- { 23, 0, "Spell_Fire_MasterOfElements", "=q6=#r5#", ""};
- { 24, 44180, "", "=q4=Robes of Crackling Flame", "=ds=#s5#, #a1#"};
- { 25, 44181, "", "=q4=Ghostflicker Waistband", "=ds=#s10#, #a2#"};
- { 26, 44182, "", "=q4=Boots of Twinkling Stars", "=ds=#s12#, #a3#"};
- { 27, 44183, "", "=q4=Fireproven Gauntlets", "=ds=#s9#, #a4#"};
- { 28, 41718, "", "=q3=Design: Runed Scarlet Ruby", "=ds=#p12# (390)"};
- { 29, 42188, "", "=q1=Pattern: Sapphire Spellthread", "=ds=#p8# (430)"};
- Back = "REPMENU";
- };
-
- ---------------------------------
- --- Knights of the Ebon Blade ---
- ---------------------------------
-
- AtlasLoot_Data["KnightsoftheEbonBlade"] = {
- { 1, 0, "INV_Weapon_Hand_01", "=q6=#r2#", ""};
- { 2, 41562, "", "=q2=Design: Deadly Huge Citrine", "=ds=#p12# (350)"};
- { 3, 43155, "", "=q1=Tabard of the Ebon Blade", "=ds=#s7#"};
- { 5, 0, "INV_Weapon_Hand_01", "=q6=#r4#", ""};
- { 6, 44256, "", "=q3=Sterile Flesh-Handling Gloves", "=ds=#s9#, #a1#"};
- { 7, 44258, "", "=q3=Wound-Binder's Wristguards", "=ds=#s8#, #a2#"};
- { 8, 44257, "", "=q3=Spaulders of the Black Arrow", "=ds=#s3#, #a3#"};
- { 9, 44250, "", "=q3=Reaper of Dark Souls", "=ds=#h1#, #w10#"};
- { 10, 44249, "", "=q3=Runeblade of Demonstrable Power", "=ds=#h2#, #w10#"};
- { 11, 41721, "", "=q3=Design: Wicked Monarch Topaz", "=ds=#p12# (390)"};
- { 12, 44149, "", "=q7=Arcanum of Torment", "=ds=#s1# #e17#"};
- { 13, 42183, "", "=q1=Pattern: Abyssal Bag", "=ds=#p8# (435)"};
- { 16, 0, "INV_Weapon_Hand_01", "=q6=#r3#", ""};
- { 17, 44242, "", "=q3=Dark Soldier Cape", "=ds=#s4#"};
- { 18, 44243, "", "=q3=Toxin-Tempered Sabatons", "=ds=#s12#, #a4#"};
- { 19, 44241, "", "=q3=Unholy Persuader", "=ds=#h4#, #w13#"};
- { 20, 44512, "", "=q3=Pattern: Nerubian Reinforced Quiver", "=ds=#p7# (415)"};
- { 21, 44138, "", "=q3=Arcanum of Toxic Warding", "=ds=#s1# #e17#"};
- { 23, 0, "INV_Weapon_Hand_01", "=q6=#r5#", ""};
- { 24, 44302, "", "=q4=Belt of Dark Mending", "=ds=#s10#, #a1#"};
- { 25, 44303, "", "=q4=Darkheart Chestguard", "=ds=#s5#, #a2#"};
- { 26, 44305, "", "=q4=Kilt of Dark Mercy", "=ds=#s11#, #a3#"};
- { 27, 44306, "", "=q4=Death-Inured Sabatons", "=ds=#s12#, #a4#"};
- { 28, 41725, "", "=q3=Design: Glowing Twilight Opal", "=ds=#p12# (390)"};
- Back = "REPMENU";
- };
-
- -------------------
- --- The Kalu'ak ---
- -------------------
-
- AtlasLoot_Data["TheKaluak"] = {
- { 1, 0, "INV_Fishingpole_03", "=q6=#r2#", ""};
- { 2, 41568, "", "=q2=Design: Seer's Dark Jade", "=ds=#p12# (350)"};
- { 3, 44049, "", "=q1=Freshly-Speared Emperor Salmon", "=ds=#e3#"};
- { 5, 0, "INV_Fishingpole_03", "=q6=#r3#", ""};
- { 6, 44061, "", "=q3=Pigment-Stained Robes", "=ds=#s5#, #a1#"};
- { 7, 44062, "", "=q3=Turtle-Minders Robe", "=ds=#s5#, #a1#"};
- { 8, 44054, "", "=q3=Whale-Skin Breastplate", "=ds=#s5#, #a2#"};
- { 9, 44055, "", "=q3=Whale-Skin Vest", "=ds=#s5#, #a2#"};
- { 10, 44059, "", "=q3=Cuttlefish Scale Breastplate", "=ds=#s5#, #a3#"};
- { 11, 44060, "", "=q3=Cuttlefish Tooth Ringmail", "=ds=#s5#, #a3#"};
- { 12, 44057, "", "=q3=Ivory-Reinforced Chestguard", "=ds=#s5#, #a4#"};
- { 13, 44058, "", "=q3=Whalebone Carapace", "=ds=#s5#, #a4#"};
- { 14, 44511, "", "=q3=Pattern: Dragonscale Ammo Pouch", "=ds=#p7# (415)"};
- { 15, 41574, "", "=q2=Design: Defender's Shadow Crystal", "=ds=#p12# (350)"};
- { 16, 0, "INV_Fishingpole_03", "=q6=#r4#", ""};
- { 17, 44051, "", "=q3=Traditional Flensing Knife", "=ds=#h1#, #w4#"};
- { 18, 44052, "", "=q3=Totemic Purification Rod", "=ds=#h3#, #w6#"};
- { 19, 44053, "", "=q3=Whale-Stick Harpoon", "=ds=#w7#"};
- { 20, 44509, "", "=q3=Pattern: Trapper's Traveling Pack", "=ds=#p7# (415)"};
- { 21, 45774, "", "=q1=Pattern: Emerald Bag", "=ds=#p8# (435)"};
- { 23, 0, "INV_Fishingpole_03", "=q6=#r5#", ""};
- { 24, 44050, "", "=q4=Mastercraft Kalu'ak Fishing Pole", "=ds=#e20#"};
- { 25, 44723, "", "=q3=Nurtured Penguin Egg", "=ds=#e13#"};
- Back = "REPMENU";
- };
-
- -------------------
- --- The Oracles ---
- -------------------
-
- AtlasLoot_Data["TheOracles"] = {
- { 1, 0, "INV_Helmet_138", "=q6=#r2#", ""};
- { 2, 41567, "", "=q2=Design: Vivid Dark Jade", "=ds=#p12# (350)"};
- { 3, 44065, "", "=q1=Oracle Secret Solution", "=ds=#e2#"};
- { 5, 0, "INV_Helmet_138", "=q6=#r3#", ""};
- { 6, 44071, "", "=q1=Slow-Roasted Eel", "=ds=#e3#"};
- { 8, 0, "INV_Egg_02", "=q6="..AL["Cracked Egg"], ""};
- { 9, 44707, "", "=q4=Reins of the Green Proto-Drake", "=ds=#e12#", ""};
- { 10, 39898, "", "=q1=Cobra Hatchling", "=ds=#e13#", ""};
- { 11, 44721, "", "=q1=Proto-Drake Whelp", "=ds=#e13#", ""};
- { 12, 39896, "", "=q1=Tickbird Hatchling", "=ds=#e13#", ""};
- { 13, 39899, "", "=q1=White Tickbird Hatchling", "=ds=#e13#", ""};
- { 14, 44722, "", "=q1=Aged Yolk", "=ds=#e3#", ""};
- { 16, 0, "INV_Helmet_138", "=q6=#r4#", ""};
- { 17, 44104, "", "=q3=Fishy Cinch", "=ds=#s10#, #a1#"};
- { 18, 44106, "", "=q3=Glitterscale Wrap", "=ds=#s10#, #a2#" };
- { 19, 44110, "", "=q3=Sharkjaw Cap", "=ds=#s1#, #a3#" };
- { 20, 44109, "", "=q3=Toothslice Helm", "=ds=#s1#, #a3#" };
- { 21, 44112, "", "=q3=Glimmershell Shoulder Protectors", "=ds=#s3#, #a4#"};
- { 22, 44111, "", "=q3=Gold Star Spaulders", "=ds=#s3#, #a4#"};
- { 23, 44108, "", "=q3=Shinygem Rod", "=ds=#w12#"};
- { 24, 41724, "", "=q3=Design: Sundered Forest Emerald", "=ds=#p12# (390)"};
- { 25, 39878, "", "=q1=Mysterious Egg", "=ds="};
- { 27, 0, "INV_Helmet_138", "=q6=#r5#", ""};
- { 28, 44074, "", "=q4=Oracle Talisman of Ablution", "=ds=#s14#"};
- Back = "REPMENU";
- };
-
- -------------------------
- --- The Sons of Hodir ---
- -------------------------
-
- AtlasLoot_Data["TheSonsofHodir1"] = {
- { 1, 0, "Spell_Holy_DivinePurpose", "=q6=#r3#", ""};
- { 2, 44190, "", "=q3=Spaulders of Frozen Knives", "=ds=#s3#, #a2#"};
- { 3, 44189, "", "=q3=Giant Ring Belt", "=ds=#s10#, #a3#"};
- { 4, 44510, "", "=q3=Pattern: Mammoth Mining Bag", "=ds=#p7# (415)"};
- { 5, 44137, "", "=q3=Arcanum of the Frosty Soul", "=ds=#s1# #e17#"};
- { 6, 44131, "", "=q3=Lesser Inscription of the Axe", "=ds=#s3# #e17#"};
- { 7, 44130, "", "=q3=Lesser Inscription of the Crag", "=ds=#s3# #e17#"};
- { 8, 44132, "", "=q3=Lesser Inscription of the Pinnacle", "=ds=#s3# #e17#"};
- { 9, 44129, "", "=q3=Lesser Inscription of the Storm ", "=ds=#s3# #e17#"};
- { 16, 0, "Spell_Holy_DivinePurpose", "=q6=#r4#", ""};
- { 17, 43958, "", "=q4=Reins of the Ice Mammoth", "=ds=#e12# =ec1=#m7#"};
- { 18, 44080, "", "=q4=Reins of the Ice Mammoth", "=ds=#e12# =ec1=#m6#"};
- { 19, 44194, "", "=q3=Giant-Friend Kilt", "=ds=#s11#, #a2#" };
- { 20, 44195, "", "=q3=Spaulders of the Giant Lords", "=ds=#s3#, #a4#"};
- { 21, 44193, "", "=q3=Broken Stalactite", "=ds=#h1#, #w4#"};
- { 22, 44192, "", "=q3=Stalactite Chopper", "=ds=#h1#, #w1#"};
- Next = "TheSonsofHodir2";
- Back = "REPMENU";
- };
-
- AtlasLoot_Data["TheSonsofHodir2"] = {
- { 1, 0, "Spell_Holy_DivinePurpose", "=q6=#r5#", ""};
- { 2, 43961, "", "=q4=Reins of the Grand Ice Mammoth", "=ds=#e12# =ec1=#m7#"};
- { 3, 44086, "", "=q4=Reins of the Grand Ice Mammoth", "=ds=#e12# =ec1=#m6#"};
- { 4, 44133, "", "=q7=Greater Inscription of the Axe", "=ds=#s3# #e17#"};
- { 5, 44134, "", "=q7=Greater Inscription of the Crag", "=ds=#s3# #e17#"};
- { 6, 44136, "", "=q7=Greater Inscription of the Pinnacle", "=ds=#s3# #e17#"};
- { 7, 44135, "", "=q7=Greater Inscription of the Storm ", "=ds=#s3# #e17#"};
- { 8, 41720, "", "=q3=Design: Smooth Autumn's Glow", "=ds=#p12# (390)"};
- { 9, 42184, "", "=q1=Pattern: Glacial Bag", "=ds=#p8# (445)"};
- Prev = "TheSonsofHodir1";
- Back = "REPMENU";
- };
-
- -------------------------
- --- Winterfin Retreat ---
- -------------------------
-
- AtlasLoot_Data["WinterfinRetreat"] = {
- { 2, 36784, "", "=q3=Siren's Tear", "=ds=#e7#", "100 #winterfinclam#"};
- { 3, 37462, "", "=q2=Sea King's Crown", "=ds=#s1#, #a1#", "30 #winterfinclam#"};
- { 4, 37463, "", "=q2=Winterfin Patch of Honor", "=ds=#s1#, #a2#", "30 #winterfinclam#"};
- { 5, 37461, "", "=q2=Tidebreaker Trident", "=ds=#w7#", "50 #winterfinclam#"};
- { 6, 36783, "", "=q2=Northsea Pearl", "=ds=#e7#", "30 #winterfinclam#"};
- { 7, 37464, "", "=q1=Winterfin Horn of Distress", "=ds=#e22#", "5 #winterfinclam#"};
- { 8, 37449, "", "=q1=Breath of Murloc", "=ds=#e2#", "5 #winterfinclam#"};
- { 9, 38351, "", "=q1=Murliver Oil", "=ds=#e2#", "2 #winterfinclam#"};
- { 10, 38350, "", "=q1=Winterfin \"Depth Charge\"", "=ds=#e4#", "1 #winterfinclam#"};
- { 12, 34597, "", "=q1=Winterfin Clam", "=ds=#m17#"};
- Back = "REPMENU";
- };
-
- ---------------------------
- --- The Wyrmrest Accord ---
- ---------------------------
-
- AtlasLoot_Data["TheWyrmrestAccord"] = {
- { 1, 0, "Ability_Druid_Eclipse", "=q6=#r1#", ""};
- { 2, 43156, "", "=q1=Tabard of the Wyrmrest Accord", "=ds=#s7#"};
- { 4, 0, "Ability_Druid_Eclipse", "=q6=#r3#", ""};
- { 5, 44188, "", "=q3=Cloak of Peaceful Resolutions", "=ds=#s4#"};
- { 6, 44196, "", "=q3=Sash of the Wizened Wyrm", "=ds=#s10#, #a1#"};
- { 7, 44197, "", "=q3=Bracers of Accorded Courtesy", "=ds=#s8#, #a4#"};
- { 8, 44187, "", "=q3=Fang of Truth", "=ds=#h1#, #w10#"};
- { 9, 44140, "", "=q3=Arcanum of the Eclipsed Moon", "=ds=#s1# #e17#"};
- { 16, 0, "Ability_Druid_Eclipse", "=q6=#r4#", ""};
- { 17, 44200, "", "=q3=Ancestral Sinew Wristguards", "=ds=#s8#, #a1#"};
- { 18, 44198, "", "=q3=Breastplate of the Solemn Council", "=ds=#s5#, #a4#"};
- { 19, 44201, "", "=q3=Sabatons of Draconic Vigor", "=ds=#s12#, #a4#"};
- { 20, 44199, "", "=q3=Gavel of the Brewing Storm", "=ds=#h3#, #w6#"};
- { 21, 44152, "", "=q7=Arcanum of Blissful Mending", "=ds=#s1# #e17#"};
- { 22, 42185, "", "=q1=Pattern: Mysterious Bag", "=ds=#p8# (440)"};
- { 24, 0, "Ability_Druid_Eclipse", "=q6=#r5#", ""};
- { 25, 44202, "", "=q4=Sandals of Crimson Fury", "=ds=#s12#, #a1#"};
- { 26, 44203, "", "=q4=Dragonfriend Bracers", "=ds=#s8#, #a2#"};
- { 27, 44204, "", "=q4=Grips of Fierce Pronouncements", "=ds=#s9#, #a3#"};
- { 28, 44205, "", "=q4=Legplates of Bloody Reprisal", "=ds=#s11#, #a4#"};
- { 29, 43955, "", "=q4=Reins of the Red Drake", "=ds=#e12#"};
- { 30, 41722, "", "=q3=Design: Glimmering Monarch Topaz", "=ds=#p12# (390)"};
- Back = "REPMENU";
- };
-
- -------------------------
- --- The Ashen Verdict ---
- -------------------------
-
- AtlasLoot_Data["AshenVerdict"] = {
- { 1, 50375, "", "=q4=Ashen Band of Courage", "=ds=#s13#, =q1=#r2#"};
- { 2, 50388, "", "=q4=Ashen Band of Greater Courage", "=ds=#s13#, =q1=#r3#"};
- { 3, 50403, "", "=q4=Ashen Band of Unmatched Courage", "=ds=#s13#, =q1=#r4#"};
- { 4, 50404, "", "=q4=Ashen Band of Endless Courage", "=ds=#s13#, =q1=#r5#"};
- { 6, 50377, "", "=q4=Ashen Band of Destruction", "=ds=#s13#, =q1=#r2#"};
- { 7, 50384, "", "=q4=Ashen Band of Greater Destruction", "=ds=#s13#, =q1=#r3#"};
- { 8, 50397, "", "=q4=Ashen Band of Unmatched Destruction", "=ds=#s13#, =q1=#r4#"};
- { 9, 50398, "", "=q4=Ashen Band of Endless Destruction", "=ds=#s13#, =q1=#r5#"};
- { 11, 52569, "", "=q4=Ashen Band of Might", "=ds=#s13#, =q1=#r2#"};
- { 12, 52570, "", "=q4=Ashen Band of Greater Might", "=ds=#s13#, =q1=#r3#"};
- { 13, 52571, "", "=q4=Ashen Band of Unmatched Might", "=ds=#s13#, =q1=#r4#"};
- { 14, 52572, "", "=q4=Ashen Band of Endless Might", "=ds=#s13#, =q1=#r5#"};
- { 16, 50376, "", "=q4=Ashen Band of Vengeance", "=ds=#s13#, =q1=#r2#"};
- { 17, 50387, "", "=q4=Ashen Band of Greater Vengeance", "=ds=#s13#, =q1=#r3#"};
- { 18, 50401, "", "=q4=Ashen Band of Unmatched Vengeance", "=ds=#s13#, =q1=#r4#"};
- { 19, 50402, "", "=q4=Ashen Band of Endless Vengeance", "=ds=#s13#, =q1=#r5#"};
- { 21, 50378, "", "=q4=Ashen Band of Wisdom", "=ds=#s13#, =q1=#r2#"};
- { 22, 50386, "", "=q4=Ashen Band of Greater Wisdom", "=ds=#s13#, =q1=#r3#"};
- { 23, 50399, "", "=q4=Ashen Band of Unmatched Wisdom", "=ds=#s13#, =q1=#r4#"};
- { 24, 50400, "", "=q4=Ashen Band of Endless Wisdom", "=ds=#s13#, =q1=#r5#"};
- Next = "AshenVerdict2";
- Back = "REPMENU";
- };
-
- AtlasLoot_Data["AshenVerdict2"] = {
- { 1, 0, "Inv_Jewelry_Ring_85", "=q6=#r3#", ""};
- { 2, 49974, "", "=q4=Plans: Boots of Kingly Upheaval", "=ds=#p2# (450)"};
- { 3, 49972, "", "=q4=Plans: Hellfrozen Bonegrinders", "=ds=#p2# (450)"};
- { 4, 49970, "", "=q4=Plans: Protectors of Life", "=ds=#p2# (450)"};
- { 5, 49958, "", "=q4=Pattern: Blessed Cenarion Boots", "=ds=#p7# (450)"};
- { 6, 49963, "", "=q4=Pattern: Earthsoul Boots", "=ds=#p7# (450)"};
- { 7, 49961, "", "=q4=Pattern: Footpads of Impending Death", "=ds=#p7# (450)"};
- { 8, 49966, "", "=q4=Pattern: Rock-Steady Treads", "=ds=#p7# (450)"};
- { 9, 49954, "", "=q4=Pattern: Deathfrost Boots", "=ds=#p8# (450)"};
- { 10, 49956, "", "=q4=Pattern: Sandals of Consecration", "=ds=#p8# (450)"};
- { 11, 52023, "", "=q4=Plans: Evil Arrow", "=ds=#p17# (450)"};
- { 12, 52022, "", "=q4=Plans: Shatter Rounds", "=ds=#p18# (450)"};
- { 16, 0, "Inv_Jewelry_Ring_85", "=q6=#r4#", ""};
- { 17, 49971, "", "=q4=Plans: Legplates of Painful Death", "=ds=#p2# (450)"};
- { 18, 49973, "", "=q4=Plans: Pillars of Might", "=ds=#p2# (450)"};
- { 19, 49969, "", "=q4=Plans: Puresteel Legplates", "=ds=#p2# (450)"};
- { 20, 49959, "", "=q4=Pattern: Bladeborn Leggings", "=ds=#p7# (450)"};
- { 21, 49965, "", "=q4=Pattern: Draconic Bonesplinter Legguards", "=ds=#p7# (450)"};
- { 22, 49957, "", "=q4=Pattern: Legwraps of Unleashed Nature", "=ds=#p7# (450)"};
- { 23, 49962, "", "=q4=Pattern: Lightning-Infused Leggings", "=ds=#p7# (450)"};
- { 24, 49953, "", "=q4=Pattern: Leggings of Woven Death", "=ds=#p8# (450)"};
- { 25, 49955, "", "=q4=Pattern: Lightweave Leggings", "=ds=#p8# (450)"};
- Prev = "AshenVerdict";
- Back = "REPMENU";
- };
-
- -----------
- --- PvP ---
- -----------
-
- ------------------
- --- Armor Sets ---
- ------------------
-
- AtlasLoot_Data["PvP80DeathKnight"] = {
- { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#arenas10#", ""};
- { 2, 51415, "", "=q4=Wrathful Gladiator's Dreadplate Helm", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51418, "", "=q4=Wrathful Gladiator's Dreadplate Shoulders", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51413, "", "=q4=Wrathful Gladiator's Dreadplate Chestpiece", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51414, "", "=q4=Wrathful Gladiator's Dreadplate Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51416, "", "=q4=Wrathful Gladiator's Dreadplate Legguards", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#arenas10#", ""};
- { 9, 40830, "", "=q4=Relentless Gladiator's Dreadplate Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 40871, "", "=q4=Relentless Gladiator's Dreadplate Shoulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 40791, "", "=q4=Relentless Gladiator's Dreadplate Chestpiece", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 40811, "", "=q4=Relentless Gladiator's Dreadplate Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 40851, "", "=q4=Relentless Gladiator's Dreadplate Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#arenas10#", ""};
- { 17, 40827, "", "=q4=Furious Gladiator's Dreadplate Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 40868, "", "=q4=Furious Gladiator's Dreadplate Shoulders", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 40787, "", "=q4=Furious Gladiator's Dreadplate Chestpiece", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 40809, "", "=q4=Furious Gladiator's Dreadplate Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 40848, "", "=q4=Furious Gladiator's Dreadplate Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Spell_Deathknight_DeathStrike", "=q6=#arenas10#", ""};
- { 24, 40824, "", "=q4=Deadly Gladiator's Dreadplate Helm", "=ds=", "58 #eofconquest#"};
- { 25, 40863, "", "=q4=Deadly Gladiator's Dreadplate Shoulders", "=ds=", "46 #eofconquest#"};
- { 26, 40784, "", "=q4=Deadly Gladiator's Dreadplate Chestpiece", "=ds=", "58 #eofconquest#"};
- { 27, 40806, "", "=q4=Deadly Gladiator's Dreadplate Gauntlets", "=ds=", "46 #eofconquest#"};
- { 28, 40845, "", "=q4=Deadly Gladiator's Dreadplate Legguards", "=ds=", "58 #eofconquest#"};
- Next = "PvP80DeathKnight2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80DeathKnight2"] = {
- { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#arenas10#", ""};
- { 2, 40820, "", "=q4=Hateful Gladiator's Dreadplate Helm", "=ds=", "45 #eofvalor#"};
- { 3, 40860, "", "=q4=Hateful Gladiator's Dreadplate Shoulders", "=ds=", "30 #eofvalor#"};
- { 4, 40781, "", "=q4=Hateful Gladiator's Dreadplate Chestpiece", "=ds=", "45 #eofvalor#"};
- { 5, 40803, "", "=q4=Hateful Gladiator's Dreadplate Gauntlets", "=ds=", "30 #eofvalor#"};
- { 6, 40841, "", "=q4=Hateful Gladiator's Dreadplate Legguards", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#arenas10#", ""};
- { 9, 40817, "", "=q3=Savage Gladiator's Dreadplate Helm", "=ds=", "45 #eofheroism#"};
- { 10, 40857, "", "=q3=Savage Gladiator's Dreadplate Shoulders", "=ds=", "30 #eofheroism#"};
- { 11, 40779, "", "=q3=Savage Gladiator's Dreadplate Chestpiece", "=ds=", "45 #eofheroism#"};
- { 12, 40799, "", "=q3=Savage Gladiator's Dreadplate Gauntlets", "=ds=", "30 #eofheroism#"};
- { 13, 40837, "", "=q3=Savage Gladiator's Dreadplate Legguards", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80DeathKnight";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80DruidBalance"] = {
- { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", ""};
- { 2, 51435, "", "=q4=Wrathful Gladiator's Wyrmhide Helm", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51438, "", "=q4=Wrathful Gladiator's Wyrmhide Spaulders", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51433, "", "=q4=Wrathful Gladiator's Wyrmhide Robes", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51434, "", "=q4=Wrathful Gladiator's Wyrmhide Gloves", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51436, "", "=q4=Wrathful Gladiator's Wyrmhide Legguards", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", ""};
- { 9, 41328, "", "=q4=Relentless Gladiator's Wyrmhide Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 41282, "", "=q4=Relentless Gladiator's Wyrmhide Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 41317, "", "=q4=Relentless Gladiator's Wyrmhide Robes", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 41294, "", "=q4=Relentless Gladiator's Wyrmhide Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 41305, "", "=q4=Relentless Gladiator's Wyrmhide Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", ""};
- { 17, 41327, "", "=q4=Furious Gladiator's Wyrmhide Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 41281, "", "=q4=Furious Gladiator's Wyrmhide Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 41316, "", "=q4=Furious Gladiator's Wyrmhide Robes", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 41293, "", "=q4=Furious Gladiator's Wyrmhide Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 41304, "", "=q4=Furious Gladiator's Wyrmhide Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", ""};
- { 24, 41326, "", "=q4=Deadly Gladiator's Wyrmhide Helm", "=ds=", "58 #eofconquest#"};
- { 25, 41280, "", "=q4=Deadly Gladiator's Wyrmhide Spaulders", "=ds=", "46 #eofconquest#"};
- { 26, 41315, "", "=q4=Deadly Gladiator's Wyrmhide Robes", "=ds=", "58 #eofconquest#"};
- { 27, 41292, "", "=q4=Deadly Gladiator's Wyrmhide Gloves", "=ds=", "46 #eofconquest#"};
- { 28, 41303, "", "=q4=Deadly Gladiator's Wyrmhide Legguards", "=ds=", "58 #eofconquest#"};
- Next = "PvP80DruidBalance2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80DruidBalance2"] = {
- { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", ""};
- { 2, 41325, "", "=q4=Hateful Gladiator's Wyrmhide Helm", "=ds=", "45 #eofvalor#"};
- { 3, 41279, "", "=q4=Hateful Gladiator's Wyrmhide Spaulders", "=ds=", "30 #eofvalor#"};
- { 4, 41314, "", "=q4=Hateful Gladiator's Wyrmhide Robes", "=ds=", "45 #eofvalor#"};
- { 5, 41291, "", "=q4=Hateful Gladiator's Wyrmhide Gloves", "=ds=", "30 #eofvalor#"};
- { 6, 41302, "", "=q4=Hateful Gladiator's Wyrmhide Legguards", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", ""};
- { 9, 41324, "", "=q3=Savage Gladiator's Wyrmhide Helm", "=ds=", "45 #eofheroism#"};
- { 10, 41278, "", "=q3=Savage Gladiator's Wyrmhide Spaulders", "=ds=", "30 #eofheroism#"};
- { 11, 41313, "", "=q3=Savage Gladiator's Wyrmhide Robes", "=ds=", "45 #eofheroism#"};
- { 12, 41290, "", "=q3=Savage Gladiator's Wyrmhide Gloves", "=ds=", "30 #eofheroism#"};
- { 13, 41301, "", "=q3=Savage Gladiator's Wyrmhide Legguards", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80DruidBalance";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80DruidFeral"] = {
- { 1, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", ""};
- { 2, 51427, "", "=q4=Wrathful Gladiator's Dragonhide Helm", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51430, "", "=q4=Wrathful Gladiator's Dragonhide Spaulders", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51425, "", "=q4=Wrathful Gladiator's Dragonhide Robes", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51426, "", "=q4=Wrathful Gladiator's Dragonhide Gloves", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51428, "", "=q4=Wrathful Gladiator's Dragonhide Legguards", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", ""};
- { 9, 41679, "", "=q4=Relentless Gladiator's Dragonhide Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 41716, "", "=q4=Relentless Gladiator's Dragonhide Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 41662, "", "=q4=Relentless Gladiator's Dragonhide Robes", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 41774, "", "=q4=Relentless Gladiator's Dragonhide Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 41668, "", "=q4=Relentless Gladiator's Dragonhide Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", ""};
- { 17, 41678, "", "=q4=Furious Gladiator's Dragonhide Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 41715, "", "=q4=Furious Gladiator's Dragonhide Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 41661, "", "=q4=Furious Gladiator's Dragonhide Robes", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 41773, "", "=q4=Furious Gladiator's Dragonhide Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 41667, "", "=q4=Furious Gladiator's Dragonhide Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", ""};
- { 24, 41677, "", "=q4=Deadly Gladiator's Dragonhide Helm", "=ds=", "58 #eofconquest#"};
- { 25, 41714, "", "=q4=Deadly Gladiator's Dragonhide Spaulders", "=ds=", "46 #eofconquest#"};
- { 26, 41660, "", "=q4=Deadly Gladiator's Dragonhide Robes", "=ds=", "58 #eofconquest#"};
- { 27, 41772, "", "=q4=Deadly Gladiator's Dragonhide Gloves", "=ds=", "46 #eofconquest#"};
- { 28, 41666, "", "=q4=Deadly Gladiator's Dragonhide Legguards", "=ds=", "58 #eofconquest#"};
- Next = "PvP80DruidFeral2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80DruidFeral2"] = {
- { 1, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", ""};
- { 2, 41676, "", "=q4=Hateful Gladiator's Dragonhide Helm", "=ds=", "45 #eofvalor#"};
- { 3, 41713, "", "=q4=Hateful Gladiator's Dragonhide Spaulders", "=ds=", "30 #eofvalor#"};
- { 4, 41659, "", "=q4=Hateful Gladiator's Dragonhide Robes", "=ds=", "45 #eofvalor#"};
- { 5, 41771, "", "=q4=Hateful Gladiator's Dragonhide Gloves", "=ds=", "30 #eofvalor#"};
- { 6, 41665, "", "=q4=Hateful Gladiator's Dragonhide Legguards", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", ""};
- { 9, 41675, "", "=q3=Savage Gladiator's Dragonhide Helm", "=ds=", "45 #eofheroism#"};
- { 10, 41712, "", "=q3=Savage Gladiator's Dragonhide Spaulders", "=ds=", "30 #eofheroism#"};
- { 11, 41658, "", "=q3=Savage Gladiator's Dragonhide Robes", "=ds=", "45 #eofheroism#"};
- { 12, 41770, "", "=q3=Savage Gladiator's Dragonhide Gloves", "=ds=", "30 #eofheroism#"};
- { 13, 41664, "", "=q3=Savage Gladiator's Dragonhide Legguards", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80DruidFeral";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80DruidRestoration"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", ""};
- { 2, 51421, "", "=q4=Wrathful Gladiator's Kodohide Helm", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51424, "", "=q4=Wrathful Gladiator's Kodohide Spaulders", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51419, "", "=q4=Wrathful Gladiator's Kodohide Robes", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51420, "", "=q4=Wrathful Gladiator's Kodohide Gloves", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51422, "", "=q4=Wrathful Gladiator's Kodohide Legguards", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", ""};
- { 9, 41322, "", "=q4=Relentless Gladiator's Kodohide Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 41276, "", "=q4=Relentless Gladiator's Kodohide Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 41311, "", "=q4=Relentless Gladiator's Kodohide Robes", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 41288, "", "=q4=Relentless Gladiator's Kodohide Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 41299, "", "=q4=Relentless Gladiator's Kodohide Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", ""};
- { 17, 41321, "", "=q4=Furious Gladiator's Kodohide Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 41275, "", "=q4=Furious Gladiator's Kodohide Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 41310, "", "=q4=Furious Gladiator's Kodohide Robes", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 41287, "", "=q4=Furious Gladiator's Kodohide Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 41298, "", "=q4=Furious Gladiator's Kodohide Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", ""};
- { 24, 41320, "", "=q4=Deadly Gladiator's Kodohide Helm", "=ds=", "58 #eofconquest#"};
- { 25, 41274, "", "=q4=Deadly Gladiator's Kodohide Spaulders", "=ds=", "46 #eofconquest#"};
- { 26, 41309, "", "=q4=Deadly Gladiator's Kodohide Robes", "=ds=", "58 #eofconquest#"};
- { 27, 41286, "", "=q4=Deadly Gladiator's Kodohide Gloves", "=ds=", "46 #eofconquest#"};
- { 28, 41297, "", "=q4=Deadly Gladiator's Kodohide Legguards", "=ds=", "58 #eofconquest#"};
- Next = "PvP80DruidRestoration2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80DruidRestoration2"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", ""};
- { 2, 41319, "", "=q4=Hateful Gladiator's Kodohide Helm", "=ds=", "45 #eofvalor#"};
- { 3, 41273, "", "=q4=Hateful Gladiator's Kodohide Spaulders", "=ds=", "30 #eofvalor#"};
- { 4, 41308, "", "=q4=Hateful Gladiator's Kodohide Robes", "=ds=", "45 #eofvalor#"};
- { 5, 41284, "", "=q4=Hateful Gladiator's Kodohide Gloves", "=ds=", "30 #eofvalor#"};
- { 6, 41296, "", "=q4=Hateful Gladiator's Kodohide Legguards", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", ""};
- { 9, 41269, "", "=q3=Savage Gladiator's Kodohide Helm", "=ds=", "45 #eofheroism#"};
- { 10, 41271, "", "=q3=Savage Gladiator's Kodohide Spaulders", "=ds=", "30 #eofheroism#"};
- { 11, 41272, "", "=q3=Savage Gladiator's Kodohide Robes", "=ds=", "45 #eofheroism#"};
- { 12, 41268, "", "=q3=Savage Gladiator's Kodohide Gloves", "=ds=", "30 #eofheroism#"};
- { 13, 41270, "", "=q3=Savage Gladiator's Kodohide Legguards", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80DruidRestoration";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80Hunter"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", ""};
- { 2, 51460, "", "=q4=Wrathful Gladiator's Chain Helm", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51462, "", "=q4=Wrathful Gladiator's Chain Spaulders", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51458, "", "=q4=Wrathful Gladiator's Chain Armor", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51459, "", "=q4=Wrathful Gladiator's Chain Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51461, "", "=q4=Wrathful Gladiator's Chain Leggings", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", ""};
- { 9, 41158, "", "=q4=Relentless Gladiator's Chain Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 41218, "", "=q4=Relentless Gladiator's Chain Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 41088, "", "=q4=Relentless Gladiator's Chain Armor", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 41144, "", "=q4=Relentless Gladiator's Chain Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 41206, "", "=q4=Relentless Gladiator's Chain Leggings", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", ""};
- { 17, 41157, "", "=q4=Furious Gladiator's Chain Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 41217, "", "=q4=Furious Gladiator's Chain Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 41087, "", "=q4=Furious Gladiator's Chain Armor", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 41143, "", "=q4=Furious Gladiator's Chain Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 41205, "", "=q4=Furious Gladiator's Chain Leggings", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", ""};
- { 24, 41156, "", "=q4=Deadly Gladiator's Chain Helm", "=ds=", "58 #eofconquest#"};
- { 25, 41216, "", "=q4=Deadly Gladiator's Chain Spaulders", "=ds=", "46 #eofconquest#"};
- { 26, 41086, "", "=q4=Deadly Gladiator's Chain Armor", "=ds=", "58 #eofconquest#"};
- { 27, 41142, "", "=q4=Deadly Gladiator's Chain Gauntlets", "=ds=", "46 #eofconquest#"};
- { 28, 41204, "", "=q4=Deadly Gladiator's Chain Leggings", "=ds=", "58 #eofconquest#"};
- Next = "PvP80Hunter2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80Hunter2"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", ""};
- { 2, 41155, "", "=q4=Hateful Gladiator's Chain Helm", "=ds=", "45 #eofvalor#"};
- { 3, 41215, "", "=q4=Hateful Gladiator's Chain Spaulders", "=ds=", "30 #eofvalor#"};
- { 4, 41085, "", "=q4=Hateful Gladiator's Chain Armor", "=ds=", "45 #eofvalor#"};
- { 5, 41141, "", "=q4=Hateful Gladiator's Chain Gauntlets", "=ds=", "30 #eofvalor#"};
- { 6, 41203, "", "=q4=Hateful Gladiator's Chain Leggings", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", ""};
- { 9, 41154, "", "=q3=Savage Gladiator's Chain Helm", "=ds=", "45 #eofheroism#"};
- { 10, 41214, "", "=q3=Savage Gladiator's Chain Spaulders", "=ds=", "30 #eofheroism#"};
- { 11, 41084, "", "=q3=Savage Gladiator's Chain Armor", "=ds=", "45 #eofheroism#"};
- { 12, 41140, "", "=q3=Savage Gladiator's Chain Gauntlets", "=ds=", "30 #eofheroism#"};
- { 13, 41202, "", "=q3=Savage Gladiator's Chain Leggings", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80Hunter";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80Mage"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", ""};
- { 2, 51465, "", "=q4=Wrathful Gladiator's Silk Cowl", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51467, "", "=q4=Wrathful Gladiator's Silk Amice", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51463, "", "=q4=Wrathful Gladiator's Silk Raiment", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51464, "", "=q4=Wrathful Gladiator's Silk Handguards", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51466, "", "=q4=Wrathful Gladiator's Silk Trousers", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", ""};
- { 9, 41947, "", "=q4=Relentless Gladiator's Silk Cowl", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 41966, "", "=q4=Relentless Gladiator's Silk Amice", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 41954, "", "=q4=Relentless Gladiator's Silk Raiment", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 41972, "", "=q4=Relentless Gladiator's Silk Handguards", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 41960, "", "=q4=Relentless Gladiator's Silk Trousers", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", ""};
- { 17, 41946, "", "=q4=Furious Gladiator's Silk Cowl", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 41965, "", "=q4=Furious Gladiator's Silk Amice", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 41953, "", "=q4=Furious Gladiator's Silk Raiment", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 41971, "", "=q4=Furious Gladiator's Silk Handguards", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 41959, "", "=q4=Furious Gladiator's Silk Trousers", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", ""};
- { 24, 41945, "", "=q4=Deadly Gladiator's Silk Cowl", "=ds=", "58 #eofconquest#"};
- { 25, 41964, "", "=q4=Deadly Gladiator's Silk Amice", "=ds=", "46 #eofconquest#"};
- { 26, 41951, "", "=q4=Deadly Gladiator's Silk Raiment", "=ds=", "58 #eofconquest#"};
- { 27, 41970, "", "=q4=Deadly Gladiator's Silk Handguards", "=ds=", "46 #eofconquest#"};
- { 28, 41958, "", "=q4=Deadly Gladiator's Silk Trousers", "=ds=", "58 #eofconquest#"};
- Next = "PvP80Mage2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80Mage2"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", ""};
- { 2, 41944, "", "=q4=Hateful Gladiator's Silk Cowl", "=ds=", "45 #eofvalor#"};
- { 3, 41963, "", "=q4=Hateful Gladiator's Silk Amice", "=ds=", "30 #eofvalor#"};
- { 4, 41950, "", "=q4=Hateful Gladiator's Silk Raiment", "=ds=", "45 #eofvalor#"};
- { 5, 41969, "", "=q4=Hateful Gladiator's Silk Handguards", "=ds=", "30 #eofvalor#"};
- { 6, 41957, "", "=q4=Hateful Gladiator's Silk Trousers", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", ""};
- { 9, 41943, "", "=q3=Savage Gladiator's Silk Cowl", "=ds=", "45 #eofheroism#"};
- { 10, 41962, "", "=q3=Savage Gladiator's Silk Amice", "=ds=", "30 #eofheroism#"};
- { 11, 41949, "", "=q3=Savage Gladiator's Silk Raiment", "=ds=", "45 #eofheroism#"};
- { 12, 41968, "", "=q3=Savage Gladiator's Silk Handguards", "=ds=", "30 #eofheroism#"};
- { 13, 41956, "", "=q3=Savage Gladiator's Silk", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80Mage";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80PaladinRetribution"] = {
- { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", ""};
- { 2, 51476, "", "=q4=Wrathful Gladiator's Scaled Helm", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51479, "", "=q4=Wrathful Gladiator's Scaled Shoulders", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51474, "", "=q4=Wrathful Gladiator's Scaled Chestpiece", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51475, "", "=q4=Wrathful Gladiator's Scaled Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51477, "", "=q4=Wrathful Gladiator's Scaled Legguards", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", ""};
- { 9, 40831, "", "=q4=Relentless Gladiator's Scaled Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 40872, "", "=q4=Relentless Gladiator's Scaled Shoulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 40792, "", "=q4=Relentless Gladiator's Scaled Chestpiece", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 40812, "", "=q4=Relentless Gladiator's Scaled Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 40852, "", "=q4=Relentless Gladiator's Scaled Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", ""};
- { 17, 40828, "", "=q4=Furious Gladiator's Scaled Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 40869, "", "=q4=Furious Gladiator's Scaled Shoulders", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 40788, "", "=q4=Furious Gladiator's Scaled Chestpiece", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 40808, "", "=q4=Furious Gladiator's Scaled Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 40849, "", "=q4=Furious Gladiator's Scaled Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", ""};
- { 24, 40825, "", "=q4=Deadly Gladiator's Scaled Helm", "=ds=", "58 #eofconquest#"};
- { 25, 40864, "", "=q4=Deadly Gladiator's Scaled Shoulders", "=ds=", "46 #eofconquest#"};
- { 26, 40785, "", "=q4=Deadly Gladiator's Scaled Chestpiece", "=ds=", "58 #eofconquest#"};
- { 27, 40805, "", "=q4=Deadly Gladiator's Scaled Gauntlets", "=ds=", "46 #eofconquest#"};
- { 28, 40846, "", "=q4=Deadly Gladiator's Scaled Legguards", "=ds=", "58 #eofconquest#"};
- Next = "PvP80PaladinRetribution2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80PaladinRetribution2"] = {
- { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", ""};
- { 2, 40821, "", "=q4=Hateful Gladiator's Scaled Helm", "=ds=", "45 #eofvalor#"};
- { 3, 40861, "", "=q4=Hateful Gladiator's Scaled Shoulders", "=ds=", "30 #eofvalor#"};
- { 4, 40782, "", "=q4=Hateful Gladiator's Scaled Chestpiece", "=ds=", "45 #eofvalor#"};
- { 5, 40802, "", "=q4=Hateful Gladiator's Scaled Gauntlets", "=ds=", "30 #eofvalor#"};
- { 6, 40842, "", "=q4=Hateful Gladiator's Scaled Legguards", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", ""};
- { 9, 40818, "", "=q3=Savage Gladiator's Scaled Helm", "=ds=", "45 #eofheroism#"};
- { 10, 40858, "", "=q3=Savage Gladiator's Scaled Shoulders", "=ds=", "30 #eofheroism#"};
- { 11, 40780, "", "=q3=Savage Gladiator's Scaled Chestpiece", "=ds=", "45 #eofheroism#"};
- { 12, 40798, "", "=q3=Savage Gladiator's Scaled Gauntlets", "=ds=", "30 #eofheroism#"};
- { 13, 40838, "", "=q3=Savage Gladiator's Scaled Legguards", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80PaladinRetribution";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80PaladinHoly"] = {
- { 1, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", ""};
- { 2, 51470, "", "=q4=Wrathful Gladiator's Ornamented Headcover", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51473, "", "=q4=Wrathful Gladiator's Ornamented Spaulders", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51468, "", "=q4=Wrathful Gladiator's Ornamented Chestguard", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51469, "", "=q4=Wrathful Gladiator's Ornamented Gloves", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51471, "", "=q4=Wrathful Gladiator's Ornamented Legplates", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", ""};
- { 9, 40934, "", "=q4=Relentless Gladiator's Ornamented Headcover", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 40964, "", "=q4=Relentless Gladiator's Ornamented Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 40910, "", "=q4=Relentless Gladiator's Ornamented Chestguard", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 40928, "", "=q4=Relentless Gladiator's Ornamented Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 40940, "", "=q4=Relentless Gladiator's Ornamented Legplates", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", ""};
- { 17, 40933, "", "=q4=Furious Gladiator's Ornamented Headcover", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 40963, "", "=q4=Furious Gladiator's Ornamented Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 40907, "", "=q4=Furious Gladiator's Ornamented Chestguard", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 40927, "", "=q4=Furious Gladiator's Ornamented Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 40939, "", "=q4=Furious Gladiator's Ornamented Legplates", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", ""};
- { 24, 40932, "", "=q4=Deadly Gladiator's Ornamented Headcover", "=ds=", "58 #eofconquest#"};
- { 25, 40962, "", "=q4=Deadly Gladiator's Ornamented Spaulders", "=ds=", "46 #eofconquest#"};
- { 26, 40905, "", "=q4=Deadly Gladiator's Ornamented Chestguard", "=ds=", "58 #eofconquest#"};
- { 27, 40926, "", "=q4=Deadly Gladiator's Ornamented Gloves", "=ds=", "46 #eofconquest#"};
- { 28, 40938, "", "=q4=Deadly Gladiator's Ornamented Legplates", "=ds=", "58 #eofconquest#"};
- Next = "PvP80PaladinHoly2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80PaladinHoly2"] = {
- { 1, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", ""};
- { 2, 40931, "", "=q4=Hateful Gladiator's Ornamented Headcover", "=ds=", "45 #eofvalor#"};
- { 3, 40961, "", "=q4=Hateful Gladiator's Ornamented Spaulders", "=ds=", "30 #eofvalor#"};
- { 4, 40904, "", "=q4=Hateful Gladiator's Ornamented Gloves", "=ds=", "45 #eofvalor#"};
- { 5, 40925, "", "=q4=Hateful Gladiator's Ornamented Chestguard", "=ds=", "30 #eofvalor#"};
- { 6, 40937, "", "=q4=Hateful Gladiator's Ornamented Legplates", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", ""};
- { 9, 40930, "", "=q3=Savage Gladiator's Ornamented Headcover", "=ds=", "45 #eofheroism#"};
- { 10, 40960, "", "=q3=Savage Gladiator's Ornamented Spaulders", "=ds=", "30 #eofheroism#"};
- { 11, 40898, "", "=q3=Savage Gladiator's Ornamented Chestguard", "=ds=", "45 #eofheroism#"};
- { 12, 40918, "", "=q3=Savage Gladiator's Ornamented Gloves", "=ds=", "30 #eofheroism#"};
- { 13, 40936, "", "=q3=Savage Gladiator's Ornamented Legplates", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80PaladinHoly";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80PriestShadow"] = {
- { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", ""};
- { 2, 51489, "", "=q4=Wrathful Gladiator's Satin Hood", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51491, "", "=q4=Wrathful Gladiator's Satin Mantle", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51487, "", "=q4=Wrathful Gladiator's Satin Robe", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51488, "", "=q4=Wrathful Gladiator's Satin Gloves", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51490, "", "=q4=Wrathful Gladiator's Satin Leggings", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", ""};
- { 9, 41916, "", "=q4=Relentless Gladiator's Satin Hood", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 41935, "", "=q4=Relentless Gladiator's Satin Mantle", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 41922, "", "=q4=Relentless Gladiator's Satin Robe", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 41941, "", "=q4=Relentless Gladiator's Satin Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 41928, "", "=q4=Relentless Gladiator's Satin Leggings", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", ""};
- { 17, 41915, "", "=q4=Furious Gladiator's Satin Hood", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 41934, "", "=q4=Furious Gladiator's Satin Mantle", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 41921, "", "=q4=Furious Gladiator's Satin Robe", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 41940, "", "=q4=Furious Gladiator's Satin Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 41927, "", "=q4=Furious Gladiator's Satin Leggings", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", ""};
- { 24, 41914, "", "=q4=Deadly Gladiator's Satin Hood", "=ds=", "58 #eofconquest#"};
- { 25, 41933, "", "=q4=Deadly Gladiator's Satin Mantle", "=ds=", "46 #eofconquest#"};
- { 26, 41920, "", "=q4=Deadly Gladiator's Satin Robe", "=ds=", "58 #eofconquest#"};
- { 27, 41939, "", "=q4=Deadly Gladiator's Satin Gloves", "=ds=", "46 #eofconquest#"};
- { 28, 41926, "", "=q4=Deadly Gladiator's Satin Leggings", "=ds=", "58 #eofconquest#"};
- Next = "PvP80PriestShadow2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80PriestShadow2"] = {
- { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", ""};
- { 2, 41913, "", "=q4=Hateful Gladiator's Satin Hood", "=ds=", "45 #eofvalor#"};
- { 3, 41931, "", "=q4=Hateful Gladiator's Satin Mantle", "=ds=", "30 #eofvalor#"};
- { 4, 41919, "", "=q4=Hateful Gladiator's Satin Robe", "=ds=", "45 #eofvalor#"};
- { 5, 41938, "", "=q4=Hateful Gladiator's Satin Gloves", "=ds=", "30 #eofvalor#"};
- { 6, 41925, "", "=q4=Hateful Gladiator's Satin Leggings", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", ""};
- { 9, 41912, "", "=q3=Savage Gladiator's Satin Hood", "=ds=", "45 #eofheroism#"};
- { 10, 41930, "", "=q3=Savage Gladiator's Satin Mantle", "=ds=", "30 #eofheroism#"};
- { 11, 41918, "", "=q3=Savage Gladiator's Satin Robe", "=ds=", "45 #eofheroism#"};
- { 12, 41937, "", "=q3=Savage Gladiator's Satin Gloves", "=ds=", "30 #eofheroism#"};
- { 13, 41924, "", "=q3=Savage Gladiator's Satin Leggings", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80PriestShadow";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80PriestHoly"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", ""};
- { 2, 51484, "", "=q4=Wrathful Gladiator's Mooncloth Hood", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51486, "", "=q4=Wrathful Gladiator's Mooncloth Mantle", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51482, "", "=q4=Wrathful Gladiator's Mooncloth Robe", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51483, "", "=q4=Wrathful Gladiator's Mooncloth Gloves", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51485, "", "=q4=Wrathful Gladiator's Mooncloth Leggings", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", ""};
- { 9, 41855, "", "=q4=Relentless Gladiator's Mooncloth Hood", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 41870, "", "=q4=Relentless Gladiator's Mooncloth Mantle", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 41860, "", "=q4=Relentless Gladiator's Mooncloth Robe", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 41875, "", "=q4=Relentless Gladiator's Mooncloth Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 41865, "", "=q4=Relentless Gladiator's Mooncloth Leggings", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", ""};
- { 17, 41854, "", "=q4=Furious Gladiator's Mooncloth Hood", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 41869, "", "=q4=Furious Gladiator's Mooncloth Mantle", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 41859, "", "=q4=Furious Gladiator's Mooncloth Robe", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 41874, "", "=q4=Furious Gladiator's Mooncloth Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 41864, "", "=q4=Furious Gladiator's Mooncloth Leggings", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", ""};
- { 24, 41853, "", "=q4=Deadly Gladiator's Mooncloth Hood", "=ds=", "58 #eofconquest#"};
- { 25, 41868, "", "=q4=Deadly Gladiator's Mooncloth Mantle", "=ds=", "46 #eofconquest#"};
- { 26, 41858, "", "=q4=Deadly Gladiator's Mooncloth Robe", "=ds=", "58 #eofconquest#"};
- { 27, 41873, "", "=q4=Deadly Gladiator's Mooncloth Gloves", "=ds=", "46 #eofconquest#"};
- { 28, 41863, "", "=q4=Deadly Gladiator's Mooncloth Leggings", "=ds=", "58 #eofconquest#"};
- Next = "PvP80PriestHoly2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80PriestHoly2"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", ""};
- { 2, 41852, "", "=q4=Hateful Gladiator's Mooncloth Hood", "=ds=", "45 #eofvalor#"};
- { 3, 41867, "", "=q4=Hateful Gladiator's Mooncloth Mantle", "=ds=", "30 #eofvalor#"};
- { 4, 41857, "", "=q4=Hateful Gladiator's Mooncloth Robe", "=ds=", "45 #eofvalor#"};
- { 5, 41872, "", "=q4=Hateful Gladiator's Mooncloth Gloves", "=ds=", "30 #eofvalor#"};
- { 6, 41862, "", "=q4=Hateful Gladiator's Mooncloth Leggings", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", ""};
- { 9, 41848, "", "=q3=Savage Gladiator's Mooncloth Hood", "=ds=", "45 #eofheroism#"};
- { 10, 41850, "", "=q3=Savage Gladiator's Mooncloth Mantle", "=ds=", "30 #eofheroism#"};
- { 11, 41851, "", "=q3=Savage Gladiator's Mooncloth Robe", "=ds=", "45 #eofheroism#"};
- { 12, 41847, "", "=q3=Savage Gladiator's Mooncloth Gloves", "=ds=", "30 #eofheroism#"};
- { 13, 41849, "", "=q3=Savage Gladiator's Mooncloth Leggings", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80PriestHoly";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80Rogue"] = {
- { 1, 0, "Ability_BackStab", "=q6=#arenas6#", ""};
- { 2, 51494, "", "=q4=Wrathful Gladiator's Leather Helm", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51496, "", "=q4=Wrathful Gladiator's Leather Spaulders", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51492, "", "=q4=Wrathful Gladiator's Leather Tunic", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51493, "", "=q4=Wrathful Gladiator's Leather Gloves", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51495, "", "=q4=Wrathful Gladiator's Leather Legguards", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Ability_BackStab", "=q6=#arenas6#", ""};
- { 9, 41673, "", "=q4=Relentless Gladiator's Leather Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 41684, "", "=q4=Relentless Gladiator's Leather Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 41651, "", "=q4=Relentless Gladiator's Leather Tunic", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 41768, "", "=q4=Relentless Gladiator's Leather Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 41656, "", "=q4=Relentless Gladiator's Leather Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Ability_BackStab", "=q6=#arenas6#", ""};
- { 17, 41672, "", "=q4=Furious Gladiator's Leather Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 41683, "", "=q4=Furious Gladiator's Leather Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 41650, "", "=q4=Furious Gladiator's Leather Tunic", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 41767, "", "=q4=Furious Gladiator's Leather Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 41655, "", "=q4=Furious Gladiator's Leather Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Ability_BackStab", "=q6=#arenas6#", ""};
- { 24, 41671, "", "=q4=Deadly Gladiator's Leather Helm", "=ds=", "58 #eofconquest#"};
- { 25, 41682, "", "=q4=Deadly Gladiator's Leather Spaulders", "=ds=", "46 #eofconquest#"};
- { 26, 41649, "", "=q4=Deadly Gladiator's Leather Tunic", "=ds=", "58 #eofconquest#"};
- { 27, 41766, "", "=q4=Deadly Gladiator's Leather Gloves", "=ds=", "46 #eofconquest#"};
- { 28, 41654, "", "=q4=Deadly Gladiator's Leather Legguards", "=ds=", "58 #eofconquest#"};
- Next = "PvP80Rogue2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80Rogue2"] = {
- { 1, 0, "Ability_BackStab", "=q6=#arenas6#", ""};
- { 2, 41670, "", "=q4=Hateful Gladiator's Leather Helm", "=ds=", "45 #eofvalor#"};
- { 3, 41681, "", "=q4=Hateful Gladiator's Leather Spaulders", "=ds=", "30 #eofvalor#"};
- { 4, 41648, "", "=q4=Hateful Gladiator's Leather Tunic", "=ds=", "45 #eofvalor#"};
- { 5, 41765, "", "=q4=Hateful Gladiator's Leather Gloves", "=ds=", "30 #eofvalor#"};
- { 6, 41653, "", "=q4=Hateful Gladiator's Leather Legguards", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Ability_BackStab", "=q6=#arenas6#", ""};
- { 9, 41644, "", "=q3=Savage Gladiator's Leather Helm", "=ds=", "45 #eofheroism#"};
- { 10, 41646, "", "=q3=Savage Gladiator's Leather Spaulders", "=ds=", "30 #eofheroism#"};
- { 11, 41647, "", "=q3=Savage Gladiator's Leather Tunic", "=ds=", "45 #eofheroism#"};
- { 12, 41643, "", "=q3=Savage Gladiator's Leather Gloves", "=ds=", "30 #eofheroism#"};
- { 13, 41645, "", "=q3=Savage Gladiator's Leather Legguards", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80Rogue";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80ShamanElemental"] = {
- { 1, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", ""};
- { 2, 51511, "", "=q4=Wrathful Gladiator's Mail Helm", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51514, "", "=q4=Wrathful Gladiator's Mail Spaulders", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51509, "", "=q4=Wrathful Gladiator's Mail Armor", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51510, "", "=q4=Wrathful Gladiator's Mail Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51512, "", "=q4=Wrathful Gladiator's Mail Leggings", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", ""};
- { 9, 41020, "", "=q4=Relentless Gladiator's Mail Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 41045, "", "=q4=Relentless Gladiator's Mail Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 40995, "", "=q4=Relentless Gladiator's Mail Armor", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 41008, "", "=q4=Relentless Gladiator's Mail Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 41034, "", "=q4=Relentless Gladiator's Mail Leggings", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", ""};
- { 17, 41019, "", "=q4=Furious Gladiator's Mail Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 41044, "", "=q4=Furious Gladiator's Mail Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 40993, "", "=q4=Furious Gladiator's Mail Armor", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 41007, "", "=q4=Furious Gladiator's Mail Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 41033, "", "=q4=Furious Gladiator's Mail Leggings", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", ""};
- { 24, 41018, "", "=q4=Deadly Gladiator's Mail Helm", "=ds=", "58 #eofconquest#"};
- { 25, 41043, "", "=q4=Deadly Gladiator's Mail Spaulders", "=ds=", "46 #eofconquest#"};
- { 26, 40991, "", "=q4=Deadly Gladiator's Mail Armor", "=ds=", "58 #eofconquest#"};
- { 27, 41006, "", "=q4=Deadly Gladiator's Mail Gauntlets", "=ds=", "46 #eofconquest#"};
- { 28, 41032, "", "=q4=Deadly Gladiator's Mail Leggings", "=ds=", "58 #eofconquest#"};
- Next = "PvP80ShamanElemental2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80ShamanElemental2"] = {
- { 1, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", ""};
- { 2, 41017, "", "=q4=Hateful Gladiator's Mail Helm", "=ds=", "45 #eofvalor#"};
- { 3, 41042, "", "=q4=Hateful Gladiator's Mail Spaulders", "=ds=", "30 #eofvalor#"};
- { 4, 40989, "", "=q4=Hateful Gladiator's Mail Armor", "=ds=", "45 #eofvalor#"};
- { 5, 41005, "", "=q4=Hateful Gladiator's Mail Gauntlets", "=ds=", "30 #eofvalor#"};
- { 6, 41031, "", "=q4=Hateful Gladiator's Mail Leggings", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", ""};
- { 9, 41016, "", "=q3=Savage Gladiator's Mail Helm", "=ds=", "45 #eofheroism#"};
- { 10, 41041, "", "=q3=Savage Gladiator's Mail Spaulders", "=ds=", "30 #eofheroism#"};
- { 11, 40987, "", "=q3=Savage Gladiator's Mail Armor", "=ds=", "45 #eofheroism#"};
- { 12, 41004, "", "=q3=Savage Gladiator's Mail Gauntlets", "=ds=", "30 #eofheroism#"};
- { 13, 41030, "", "=q3=Savage Gladiator's Mail Leggings", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80ShamanElemental";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80ShamanEnhancement"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", ""};
- { 2, 51505, "", "=q4=Wrathful Gladiator's Linked Helm", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51508, "", "=q4=Wrathful Gladiator's Linked Spaulders", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51503, "", "=q4=Wrathful Gladiator's Linked Armor", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51504, "", "=q4=Wrathful Gladiator's Linked Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51506, "", "=q4=Wrathful Gladiator's Linked Leggings", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", ""};
- { 9, 41152, "", "=q4=Relentless Gladiator's Linked Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 41212, "", "=q4=Relentless Gladiator's Linked Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 41082, "", "=q4=Relentless Gladiator's Linked Armor", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 41138, "", "=q4=Relentless Gladiator's Linked Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 41200, "", "=q4=Relentless Gladiator's Linked Leggings", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", ""};
- { 17, 41151, "", "=q4=Furious Gladiator's Linked Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 41211, "", "=q4=Furious Gladiator's Linked Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 41081, "", "=q4=Furious Gladiator's Linked Armor", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 41137, "", "=q4=Furious Gladiator's Linked Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 41199, "", "=q4=Furious Gladiator's Linked Leggings", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", ""};
- { 24, 41150, "", "=q4=Deadly Gladiator's Linked Helm", "=ds=", "58 #eofconquest#"};
- { 25, 41210, "", "=q4=Deadly Gladiator's Linked Spaulders", "=ds=", "46 #eofconquest#"};
- { 26, 41080, "", "=q4=Deadly Gladiator's Linked Armor", "=ds=", "58 #eofconquest#"};
- { 27, 41136, "", "=q4=Deadly Gladiator's Linked Gauntlets", "=ds=", "46 #eofconquest#"};
- { 28, 41198, "", "=q4=Deadly Gladiator's Linked Leggings", "=ds=", "58 #eofconquest#"};
- Next = "PvP80ShamanEnhancement2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80ShamanEnhancement2"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", ""};
- { 2, 41149, "", "=q4=Hateful Gladiator's Linked Helm", "=ds=", "45 #eofvalor#"};
- { 3, 41209, "", "=q4=Hateful Gladiator's Linked Spaulders", "=ds=", "30 #eofvalor#"};
- { 4, 41079, "", "=q4=Hateful Gladiator's Linked Armor", "=ds=", "45 #eofvalor#"};
- { 5, 41135, "", "=q4=Hateful Gladiator's Linked Gauntlets", "=ds=", "30 #eofvalor#"};
- { 6, 41162, "", "=q4=Hateful Gladiator's Linked Leggings", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", ""};
- { 9, 41148, "", "=q3=Savage Gladiator's Linked Helm", "=ds=", "45 #eofheroism#"};
- { 10, 41208, "", "=q3=Savage Gladiator's Linked Spaulders", "=ds=", "30 #eofheroism#"};
- { 11, 41078, "", "=q3=Savage Gladiator's Linked Armor", "=ds=", "45 #eofheroism#"};
- { 12, 41134, "", "=q3=Savage Gladiator's Linked Gauntlets", "=ds=", "30 #eofheroism#"};
- { 13, 41160, "", "=q3=Savage Gladiator's Linked Leggings", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80ShamanEnhancement";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80ShamanRestoration"] = {
- { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", ""};
- { 2, 51499, "", "=q4=Wrathful Gladiator's Ringmail Helm", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51502, "", "=q4=Wrathful Gladiator's Ringmail Spaulders", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51497, "", "=q4=Wrathful Gladiator's Ringmail Armor", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51498, "", "=q4=Wrathful Gladiator's Ringmail Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51500, "", "=q4=Wrathful Gladiator's Ringmail Leggings", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", ""};
- { 9, 41014, "", "=q4=Relentless Gladiator's Ringmail Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 41039, "", "=q4=Relentless Gladiator's Ringmail Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 40994, "", "=q4=Relentless Gladiator's Ringmail Armor", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 41002, "", "=q4=Relentless Gladiator's Ringmail Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 41028, "", "=q4=Relentless Gladiator's Ringmail Leggings", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", ""};
- { 17, 41013, "", "=q4=Furious Gladiator's Ringmail Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 41038, "", "=q4=Furious Gladiator's Ringmail Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 40992, "", "=q4=Furious Gladiator's Ringmail Armor", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 41001, "", "=q4=Furious Gladiator's Ringmail Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 41027, "", "=q4=Furious Gladiator's Ringmail Leggings", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", ""};
- { 24, 41012, "", "=q4=Deadly Gladiator's Ringmail Helm", "=ds=", "58 #eofconquest#"};
- { 25, 41037, "", "=q4=Deadly Gladiator's Ringmail Spaulders", "=ds=", "46 #eofconquest#"};
- { 26, 40990, "", "=q4=Deadly Gladiator's Ringmail Armor", "=ds=", "58 #eofconquest#"};
- { 27, 41000, "", "=q4=Deadly Gladiator's Ringmail Gauntlets", "=ds=", "46 #eofconquest#"};
- { 28, 41026, "", "=q4=Deadly Gladiator's Ringmail Leggings", "=ds=", "58 #eofconquest#"};
- Next = "PvP80ShamanRestoration2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80ShamanRestoration2"] = {
- { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", ""};
- { 2, 41011, "", "=q4=Hateful Gladiator's Ringmail Helm", "=ds=", "45 #eofvalor#"};
- { 3, 41036, "", "=q4=Hateful Gladiator's Ringmail Spaulders", "=ds=", "30 #eofvalor#"};
- { 4, 40988, "", "=q4=Hateful Gladiator's Ringmail Armor", "=ds=", "45 #eofvalor#"};
- { 5, 40999, "", "=q4=Hateful Gladiator's Ringmail Gauntlets", "=ds=", "30 #eofvalor#"};
- { 6, 41025, "", "=q4=Hateful Gladiator's Ringmail Leggings", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", ""};
- { 9, 41010, "", "=q3=Savage Gladiator's Ringmail Helm", "=ds=", "45 #eofheroism#"};
- { 10, 41024, "", "=q3=Savage Gladiator's Ringmail Spaulders", "=ds=", "30 #eofheroism#"};
- { 11, 40986, "", "=q3=Savage Gladiator's Ringmail Armor", "=ds=", "45 #eofheroism#"};
- { 12, 40998, "", "=q3=Savage Gladiator's Ringmail Gauntlets", "=ds=", "30 #eofheroism#"};
- { 13, 41023, "", "=q3=Savage Gladiator's Ringmail Leggings", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80ShamanRestoration";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80Warlock"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", ""};
- { 2, 51538, "", "=q4=Wrathful Gladiator's Felweave Cowl", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51540, "", "=q4=Wrathful Gladiator's Felweave Amice", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51536, "", "=q4=Wrathful Gladiator's Felweave Raiment", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51537, "", "=q4=Wrathful Gladiator's Felweave Handguards", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51539, "", "=q4=Wrathful Gladiator's Felweave Trousers", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", ""};
- { 9, 41994, "", "=q4=Relentless Gladiator's Felweave Cowl", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 42012, "", "=q4=Relentless Gladiator's Felweave Amice", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 41999, "", "=q4=Relentless Gladiator's Felweave Raiment", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 42018, "", "=q4=Relentless Gladiator's Felweave Handguards", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 42006, "", "=q4=Relentless Gladiator's Felweave Trousers", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", ""};
- { 17, 41993, "", "=q4=Furious Gladiator's Felweave Cowl", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 42011, "", "=q4=Furious Gladiator's Felweave Amice", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 41998, "", "=q4=Furious Gladiator's Felweave Raiment", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 42017, "", "=q4=Furious Gladiator's Felweave Handguards", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 42005, "", "=q4=Furious Gladiator's Felweave Trousers", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", ""};
- { 24, 41992, "", "=q4=Deadly Gladiator's Felweave Cowl", "=ds=", "58 #eofconquest#"};
- { 25, 42010, "", "=q4=Deadly Gladiator's Felweave Amice", "=ds=", "46 #eofconquest#"};
- { 26, 41997, "", "=q4=Deadly Gladiator's Felweave Raiment", "=ds=", "58 #eofconquest#"};
- { 27, 42016, "", "=q4=Deadly Gladiator's Felweave Handguards", "=ds=", "46 #eofconquest#"};
- { 28, 42004, "", "=q4=Deadly Gladiator's Felweave Trousers", "=ds=", "58 #eofconquest#"};
- Next = "PvP80Warlock2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80Warlock2"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", ""};
- { 2, 41991, "", "=q4=Hateful Gladiator's Felweave Cowl", "=ds=", "45 #eofvalor#"};
- { 3, 42009, "", "=q4=Hateful Gladiator's Felweave Amice", "=ds=", "30 #eofvalor#"};
- { 4, 42001, "", "=q4=Hateful Gladiator's Felweave Raiment", "=ds=", "45 #eofvalor#"};
- { 5, 42015, "", "=q4=Hateful Gladiator's Felweave Handguards", "=ds=", "30 #eofvalor#"};
- { 6, 42003, "", "=q4=Hateful Gladiator's Felweave Trousers", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", ""};
- { 9, 41990, "", "=q3=Savage Gladiator's Felweave Cowl", "=ds=", "45 #eofheroism#"};
- { 10, 42008, "", "=q3=Savage Gladiator's Felweave Amice", "=ds=", "30 #eofheroism#"};
- { 11, 41996, "", "=q3=Savage Gladiator's Felweave Raiment", "=ds=", "45 #eofheroism#"};
- { 12, 42014, "", "=q3=Savage Gladiator's Felweave Handguards", "=ds=", "30 #eofheroism#"};
- { 13, 42002, "", "=q3=Savage Gladiator's Felweave Trousers", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80Warlock";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80Warrior"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", ""};
- { 2, 51543, "", "=q4=Wrathful Gladiator's Plate Helm", "=ds=", "2370 #arena# #reqrating# 1950"};
- { 3, 51545, "", "=q4=Wrathful Gladiator's Plate Shoulders", "=ds=", "1930 #arena# #reqrating# 2000"};
- { 4, 51541, "", "=q4=Wrathful Gladiator's Plate Chestpiece", "=ds=", "2370 #arena# #reqrating# 1600"};
- { 5, 51542, "", "=q4=Wrathful Gladiator's Plate Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400"};
- { 6, 51544, "", "=q4=Wrathful Gladiator's Plate Legguards", "=ds=", "2370 #arena# #reqrating# 1500"};
- { 8, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", ""};
- { 9, 40829, "", "=q4=Relentless Gladiator's Plate Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 10, 40870, "", "=q4=Relentless Gladiator's Plate Shoulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#"};
- { 11, 40790, "", "=q4=Relentless Gladiator's Plate Chestpiece", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 12, 40810, "", "=q4=Relentless Gladiator's Plate Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#"};
- { 13, 40850, "", "=q4=Relentless Gladiator's Plate Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#"};
- { 16, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", ""};
- { 17, 40826, "", "=q4=Furious Gladiator's Plate Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 18, 40866, "", "=q4=Furious Gladiator's Plate Shoulders", "=ds=", "34700 #faction# / 50 #eoftriumph#"};
- { 19, 40789, "", "=q4=Furious Gladiator's Plate Chestpiece", "=ds=", "54500 #faction# / 75 #eoftriumph#"};
- { 20, 40807, "", "=q4=Furious Gladiator's Plate Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#"};
- { 21, 40847, "", "=q4=Furious Gladiator's Plate Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#"};
- { 23, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", ""};
- { 24, 40823, "", "=q4=Deadly Gladiator's Plate Helm", "=ds=", "58 #eofconquest#"};
- { 25, 40862, "", "=q4=Deadly Gladiator's Plate Shoulders", "=ds=", "46 #eofconquest#"};
- { 26, 40786, "", "=q4=Deadly Gladiator's Plate Chestpiece", "=ds=", "58 #eofconquest#"};
- { 27, 40804, "", "=q4=Deadly Gladiator's Plate Gauntlets", "=ds=", "46 #eofconquest#"};
- { 28, 40844, "", "=q4=Deadly Gladiator's Plate Legguards", "=ds=", "58 #eofconquest#"};
- Next = "PvP80Warrior2";
- Back = "LEVEL80PVPSETS";
- };
-
- AtlasLoot_Data["PvP80Warrior2"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", ""};
- { 2, 40819, "", "=q4=Hateful Gladiator's Plate Helm", "=ds=", "45 #eofvalor#"};
- { 3, 40859, "", "=q4=Hateful Gladiator's Plate Shoulders", "=ds=", "30 #eofvalor#"};
- { 4, 40783, "", "=q4=Hateful Gladiator's Plate Chestpiece", "=ds=", "45 #eofvalor#"};
- { 5, 40801, "", "=q4=Hateful Gladiator's Plate Gauntlets", "=ds=", "30 #eofvalor#"};
- { 6, 40840, "", "=q4=Hateful Gladiator's Plate Legguards", "=ds=", "45 #eofvalor#"};
- { 8, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", ""};
- { 9, 40816, "", "=q3=Savage Gladiator's Plate Helm", "=ds=", "45 #eofheroism#"};
- { 10, 40856, "", "=q3=Savage Gladiator's Plate Shoulders", "=ds=", "30 #eofheroism#"};
- { 11, 40778, "", "=q3=Savage Gladiator's Plate Chestpiece", "=ds=", "45 #eofheroism#"};
- { 12, 40797, "", "=q3=Savage Gladiator's Plate Gauntlets", "=ds=", "30 #eofheroism#"};
- { 13, 40836, "", "=q3=Savage Gladiator's Plate Legguards", "=ds=", "45 #eofheroism#"};
- Prev = "PvP80Warrior";
- Back = "LEVEL80PVPSETS";
- };
-
- ------------------------------
- --- Level 80 Epic Non-Sets ---
- ------------------------------
-
- AtlasLoot_Data["PvP80NonSet1"] = {
- { 1, 51334, "", "=q4=Wrathful Gladiator's Cloak of Ascendancy", "=ds=", "52200 #faction#"};
- { 2, 51348, "", "=q4=Wrathful Gladiator's Cloak of Deliverance", "=ds=", "52200 #faction#"};
- { 3, 51330, "", "=q4=Wrathful Gladiator's Cloak of Dominance", "=ds=", "52200 #faction#"};
- { 4, 51346, "", "=q4=Wrathful Gladiator's Cloak of Salvation", "=ds=", "52200 #faction#"};
- { 5, 51332, "", "=q4=Wrathful Gladiator's Cloak of Subjugation", "=ds=", "52200 #faction#"};
- { 6, 51354, "", "=q4=Wrathful Gladiator's Cloak of Triumph", "=ds=", "52200 #faction#"};
- { 7, 51356, "", "=q4=Wrathful Gladiator's Cloak of Victory", "=ds=", "52200 #faction#"};
- { 9, 51336, "", "=q4=Wrathful Gladiator's Band of Dominance", "=ds=", "52200 #faction#"};
- { 10, 51358, "", "=q4=Wrathful Gladiator's Band of Triumph", "=ds=", "52200 #faction#"};
- { 12, 51377, "", "=q4=Medallion of the Alliance", "=ds=", "68200 #faction#"};
- { 13, 51378, "", "=q4=Medallion of the Horde", "=ds=", "68200 #faction#"};
- { 16, 51335, "", "=q4=Wrathful Gladiator's Pendant of Ascendancy", "=ds=", "52200 #faction#"};
- { 17, 51349, "", "=q4=Wrathful Gladiator's Pendant of Deliverance", "=ds=", "52200 #faction#"};
- { 18, 51331, "", "=q4=Wrathful Gladiator's Pendant of Dominance", "=ds=", "52200 #faction#"};
- { 19, 51347, "", "=q4=Wrathful Gladiator's Pendant of Salvation", "=ds=", "52200 #faction#"};
- { 20, 51333, "", "=q4=Wrathful Gladiator's Pendant of Subjugation", "=ds=", "52200 #faction#"};
- { 21, 51353, "", "=q4=Wrathful Gladiator's Pendant of Sundering", "=ds=", "52200 #faction#"};
- { 22, 51355, "", "=q4=Wrathful Gladiator's Pendant of Triumph", "=ds=", "52200 #faction#"};
- { 23, 51357, "", "=q4=Wrathful Gladiator's Pendant of Victory", "=ds=", "52200 #faction#"};
- { 25, 42133, "", "=q4=Battlemaster's Fury", "=ds=", "34100 #faction#"};
- { 26, 42134, "", "=q4=Battlemaster's Precision", "=ds=", "34100 #faction#"};
- { 27, 42136, "", "=q4=Battlemaster's Rage", "=ds=", "34100 #faction#"};
- { 28, 42137, "", "=q4=Battlemaster's Ruination", "=ds=", "34100 #faction#"};
- { 29, 42135, "", "=q4=Battlemaster's Vivacity", "=ds=", "34100 #faction#"};
- Next = "PvP80NonSet2";
- Back = "PVPMENUWRATH";
- };
-
- AtlasLoot_Data["PvP80NonSet2"] = {
- { 1, 42078, "", "=q4=Relentless Gladiator's Cloak of Ascendancy", "=ds=", "26100 #faction#"};
- { 2, 42080, "", "=q4=Relentless Gladiator's Cloak of Deliverance", "=ds=", "26100 #faction#"};
- { 3, 42076, "", "=q4=Relentless Gladiator's Cloak of Dominance", "=ds=", "26100 #faction#"};
- { 4, 42079, "", "=q4=Relentless Gladiator's Cloak of Salvation", "=ds=", "26100 #faction#"};
- { 5, 42077, "", "=q4=Relentless Gladiator's Cloak of Subjugation", "=ds=", "26100 #faction#"};
- { 6, 42081, "", "=q4=Relentless Gladiator's Cloak of Triumph", "=ds=", "26100 #faction#"};
- { 7, 42082, "", "=q4=Relentless Gladiator's Cloak of Victory", "=ds=", "26100 #faction#"};
- { 9, 42118, "", "=q4=Relentless Gladiator's Band of Ascendancy", "=ds=", "26100 #faction#"};
- { 10, 42119, "", "=q4=Relentless Gladiator's Band of Victory", "=ds=", "26100 #faction#"};
- { 16, 42044, "", "=q4=Relentless Gladiator's Pendant of Ascendancy", "=ds=", "26100 #faction#"};
- { 17, 42046, "", "=q4=Relentless Gladiator's Pendant of Deliverance", "=ds=", "26100 #faction#"};
- { 18, 42043, "", "=q4=Relentless Gladiator's Pendant of Dominance", "=ds=", "26100 #faction#"};
- { 19, 42047, "", "=q4=Relentless Gladiator's Pendant of Salvation", "=ds=", "26100 #faction#"};
- { 20, 42045, "", "=q4=Relentless Gladiator's Pendant of Subjugation", "=ds=", "26100 #faction#"};
- { 21, 46374, "", "=q4=Relentless Gladiator's Pendant of Sundering", "=ds=", "26100 #faction#"};
- { 22, 42041, "", "=q4=Relentless Gladiator's Pendant of Triumph", "=ds=", "26100 #faction#"};
- { 23, 42042, "", "=q4=Relentless Gladiator's Pendant of Victory", "=ds=", "26100 #faction#"};
- Prev = "PvP80NonSet1";
- Back = "PVPMENUWRATH";
- };
-
---Cloth
- AtlasLoot_Data["PvP80NonSet3"] = {
- { 1, 51329, "", "=q4=Wrathful Gladiator's Cuffs of Dominance", "=ds=", "43400 #faction#"};
- { 2, 51327, "", "=q4=Wrathful Gladiator's Cord of Dominance", "=ds=", "68200 #faction# #reqrating# 1300"};
- { 3, 51328, "", "=q4=Wrathful Gladiator's Treads of Dominance", "=ds=", "68200 #faction# #reqrating# 1400"};
- { 5, 51367, "", "=q4=Wrathful Gladiator's Cuffs of Salvation", "=ds=", "43400 #faction#"};
- { 6, 51365, "", "=q4=Wrathful Gladiator's Cord of Salvation", "=ds=", "68200 #faction# #reqrating# 1300"};
- { 7, 51366, "", "=q4=Wrathful Gladiator's Treads of Salvation", "=ds=", "68200 #faction# #reqrating# 1400"};
- { 9, 51339, "", "=q4=Wrathful Gladiator's Cuffs of Alacrity", "=ds=", "43400 #faction#"};
- { 10, 51337, "", "=q4=Wrathful Gladiator's Cord of Alacrity", "=ds=", "68200 #faction# #reqrating# 1300"};
- { 11, 51338, "", "=q4=Wrathful Gladiator's Treads of Alacrity", "=ds=", "68200 #faction# #reqrating# 1400"};
- { 16, 41910, "", "=q4=Relentless Gladiator's Cuffs of Dominance", "=ds=", "21700 #faction#"};
- { 17, 41899, "", "=q4=Relentless Gladiator's Cord of Dominance", "=ds=", "34100 #faction#"};
- { 18, 41904, "", "=q4=Relentless Gladiator's Treads of Dominance", "=ds=", "34100 #faction#"};
- { 20, 41894, "", "=q4=Relentless Gladiator's Cuffs of Salvation", "=ds=", "21700 #faction#"};
- { 21, 41882, "", "=q4=Relentless Gladiator's Cord of Salvation", "=ds=", "34100 #faction#"};
- { 22, 41886, "", "=q4=Relentless Gladiator's Treads of Salvation", "=ds=", "34100 #faction#"};
- { 24, 49181, "", "=q4=Relentless Gladiator's Cuffs of Alacrity", "=ds=", "21700 #faction#"};
- { 25, 49179, "", "=q4=Relentless Gladiator's Cord of Alacrity", "=ds=", "34100 #faction#"};
- { 26, 49183, "", "=q4=Relentless Gladiator's Treads of Alacrity", "=ds=", "34100 #faction#"};
- Next = "PvP80NonSet4";
- Back = "PVP80NONSETEPICS";
- };
-
---Leather
- AtlasLoot_Data["PvP80NonSet4"] = {
- { 1, 51345, "", "=q4=Wrathful Gladiator's Armwraps of Dominance", "=ds=", "43400 #faction#"};
- { 2, 51343, "", "=q4=Wrathful Gladiator's Belt of Dominance", "=ds=", "68200 #faction# #reqrating# 1300"};
- { 3, 51344, "", "=q4=Wrathful Gladiator's Boots of Dominance", "=ds=", "68200 #faction# #reqrating# 1400"};
- { 5, 51342, "", "=q4=Wrathful Gladiator's Armwraps of Salvation", "=ds=", "43400 #faction#"};
- { 6, 51340, "", "=q4=Wrathful Gladiator's Belt of Salvation", "=ds=", "68200 #faction# #reqrating# 1300"};
- { 7, 51341, "", "=q4=Wrathful Gladiator's Boots of Salvation", "=ds=", "68200 #faction# #reqrating# 1400"};
- { 9, 51370, "", "=q4=Wrathful Gladiator's Armwraps of Triumph", "=ds=", "43400 #faction#"};
- { 10, 51368, "", "=q4=Wrathful Gladiator's Belt of Triumph", "=ds=", "68200 #faction# #reqrating# 1300"};
- { 11, 51369, "", "=q4=Wrathful Gladiator's Boots of Triumph", "=ds=", "68200 #faction# #reqrating# 1400"};
- { 16, 41641, "", "=q4=Relentless Gladiator's Armwraps of Dominance", "=ds=", "21700 #faction#"};
- { 17, 41631, "", "=q4=Relentless Gladiator's Belt of Dominance", "=ds=", "34100 #faction#"};
- { 18, 41636, "", "=q4=Relentless Gladiator's Boots of Dominance", "=ds=", "34100 #faction#"};
- { 20, 41626, "", "=q4=Relentless Gladiator's Armwraps of Salvation", "=ds=", "21700 #faction#"};
- { 21, 41618, "", "=q4=Relentless Gladiator's Belt of Salvation", "=ds=", "34100 #faction#"};
- { 22, 41622, "", "=q4=Relentless Gladiator's Boots of Salvation", "=ds=", "34100 #faction#"};
- { 24, 41841, "", "=q4=Relentless Gladiator's Armwraps of Triumph", "=ds=", "21700 #faction#"};
- { 25, 41833, "", "=q4=Relentless Gladiator's Belt of Triumph", "=ds=", "34100 #faction#"};
- { 26, 41837, "", "=q4=Relentless Gladiator's Boots of Triumph", "=ds=", "34100 #faction#"};
- Next = "PvP80NonSet5";
- Prev = "PvP80NonSet3";
- Back = "PVP80NONSETEPICS";
- };
-
---Mail
- AtlasLoot_Data["PvP80NonSet5"] = {
- { 1, 51376, "", "=q4=Wrathful Gladiator's Wristguards of Dominance", "=ds=", "43400 #faction#"};
- { 2, 51374, "", "=q4=Wrathful Gladiator's Waistguard of Dominance", "=ds=", "68200 #faction# #reqrating# 1300"};
- { 3, 51375, "", "=q4=Wrathful Gladiator's Sabatons of Dominance", "=ds=", "68200 #faction# #reqrating# 1400"};
- { 5, 51373, "", "=q4=Wrathful Gladiator's Wristguards of Salvation", "=ds=", "43400 #faction#"};
- { 6, 51371, "", "=q4=Wrathful Gladiator's Waistguard of Salvation", "=ds=", "68200 #faction# #reqrating# 1300"};
- { 7, 51372, "", "=q4=Wrathful Gladiator's Sabatons of Salvation", "=ds=", "68200 #faction# #reqrating# 1400"};
- { 9, 51352, "", "=q4=Wrathful Gladiator's Wristguards of Triumph", "=ds=", "43400 #faction#"};
- { 10, 51350, "", "=q4=Wrathful Gladiator's Waistguard of Triumph", "=ds=", "68200 #faction# #reqrating# 1300"};
- { 11, 51351, "", "=q4=Wrathful Gladiator's Sabatons of Triumph", "=ds=", "68200 #faction# #reqrating# 1400"};
- { 16, 41066, "", "=q4=Relentless Gladiator's Wristguards of Dominance", "=ds=", "21700 #faction#"};
- { 17, 41071, "", "=q4=Relentless Gladiator's Waistguard of Dominance", "=ds=", "34100 #faction#"};
- { 18, 41076, "", "=q4=Relentless Gladiator's Sabatons of Dominance", "=ds=", "34100 #faction#"};
- { 20, 41061, "", "=q4=Relentless Gladiator's Wristguards of Salvation", "=ds=", "21700 #faction#"};
- { 21, 41052, "", "=q4=Relentless Gladiator's Waistguard of Salvation", "=ds=", "34100 #faction#"};
- { 22, 41056, "", "=q4=Relentless Gladiator's Sabatons of Salvation", "=ds=", "34100 #faction#"};
- { 24, 41226, "", "=q4=Relentless Gladiator's Wristguards of Triumph", "=ds=", "21700 #faction#"};
- { 25, 41236, "", "=q4=Relentless Gladiator's Waistguard of Triumph", "=ds=", "34100 #faction#"};
- { 26, 41231, "", "=q4=Relentless Gladiator's Sabatons of Triumph", "=ds=", "34100 #faction#"};
- Next = "PvP80NonSet6";
- Prev = "PvP80NonSet4";
- Back = "PVP80NONSETEPICS";
- };
-
---Plate
- AtlasLoot_Data["PvP80NonSet6"] = {
- { 1, 51361, "", "=q4=Wrathful Gladiator's Bracers of Salvation", "=ds=", "43400 #faction#"};
- { 2, 51359, "", "=q4=Wrathful Gladiator's Girdle of Salvation", "=ds=", "68200 #faction# #reqrating# 1300"};
- { 3, 51360, "", "=q4=Wrathful Gladiator's Greaves of Salvation", "=ds=", "68200 #faction# #reqrating# 1400"};
- { 5, 51364, "", "=q4=Wrathful Gladiator's Bracers of Triumph", "=ds=", "43400 #faction#"};
- { 6, 51362, "", "=q4=Wrathful Gladiator's Girdle of Triumph", "=ds=", "68200 #faction# #reqrating# 1300"};
- { 7, 51363, "", "=q4=Wrathful Gladiator's Greaves of Triumph", "=ds=", "68200 #faction# #reqrating# 1400"};
- { 16, 40984, "", "=q4=Relentless Gladiator's Bracers of Salvation", "=ds=", "21700 #faction#"};
- { 17, 40978, "", "=q4=Relentless Gladiator's Girdle of Salvation", "=ds=", "34100 #faction#"};
- { 18, 40979, "", "=q4=Relentless Gladiator's Greaves of Salvation", "=ds=", "34100 #faction#"};
- { 20, 40890, "", "=q4=Relentless Gladiator's Bracers of Triumph", "=ds=", "21700 #faction#"};
- { 21, 40883, "", "=q4=Relentless Gladiator's Girdle of Triumph", "=ds=", "34100 #faction#"};
- { 22, 40884, "", "=q4=Relentless Gladiator's Greaves of Triumph", "=ds=", "34100 #faction#"};
- Prev = "PvP80NonSet5";
- Next = "PvP80ClassItems1";
- Back = "PVP80NONSETEPICS";
- };
-
- ------------------------------------
- --- Wrathful Gladiator Weapons ---
- ------------------------------------
-
- AtlasLoot_Data["WrathfulGladiatorWeapons1"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Low Level"], ""};
- { 2, 51523, "", "=q4=Wrathful Gladiator's Right Ripper", "=ds=#h3#, #w13#", "38500 #faction# 1090 #arena# #reqrating# 1800"};
- { 3, 51530, "", "=q4=Wrathful Gladiator's Left Render", "=ds=#h4#, #w13#", "16500 #faction# 450 #arena# #reqrating# 1800"};
- { 4, 51443, "", "=q4=Wrathful Gladiator's Left Ripper", "=ds=#h4#, #w13#", "15000 #faction# 1100 #arena# #reqrating# 1800"};
- { 5, 51406, "", "=q4=Wrathful Gladiator's Blade of Alacrity", "=ds=#h3#, #w4#", "38500 #faction# 1300 #arena# #reqrating# 1800"};
- { 6, 51397, "", "=q4=Wrathful Gladiator's Spellblade", "=ds=#h3#, #w4#", "38500 #faction# 1300 #arena# #reqrating# 1800"};
- { 7, 51517, "", "=q4=Wrathful Gladiator's Shanker", "=ds=#h1#, #w4#", "38500 #faction# 1090 #arena# #reqrating# 1800"};
- { 8, 51527, "", "=q4=Wrathful Gladiator's Mutilator", "=ds=#h4#, #w4#", "16500 #faction# 450 #arena# #reqrating# 1800"};
- { 9, 51441, "", "=q4=Wrathful Gladiator's Shiv", "=ds=#h4#, #w4#", "16500 #faction# 450 #arena# #reqrating# 1800"};
- { 10, 51521, "", "=q4=Wrathful Gladiator's Slicer", "=ds=#h1#, #w10#", "38500 #faction# 1090 #arena# #reqrating# 1800"};
- { 11, 51447, "", "=q4=Wrathful Gladiator's Quickblade", "=ds=#h4#, #w10#", "16500 #faction# 450 #arena# #reqrating# 1800"};
- { 12, 51392, "", "=q4=Wrathful Gladiator's Greatsword", "=ds=#h2#, #w10#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
- { 13, 51515, "", "=q4=Wrathful Gladiator's Cleaver", "=ds=#h1#, #w1#", "38500 #faction# 1090 #arena# #reqrating# 1800"};
- { 14, 51525, "", "=q4=Wrathful Gladiator's Chopper", "=ds=#h4#, #w1#", "16500 #faction# 450 #arena# #reqrating# 1800"};
- { 15, 51439, "", "=q4=Wrathful Gladiator's Hacker", "=ds=#h4#, #w1#", "16500 #faction# 450 #arena# #reqrating# 1800"};
- { 16, 0, "INV_Box_01", "=q6="..AL["High Level"], ""};
- { 17, 51524, "", "=q4=Wrathful Gladiator's Grasp", "=ds=#h3#, #w13#", "3300 #arena# #reqrating# 2200"};
- { 18, 51529, "", "=q4=Wrathful Gladiator's Left Claw", "=ds=#h4#, #w13#", "1370 #arena# #reqrating# 2200"};
- { 19, 51444, "", "=q4=Wrathful Gladiator's Left Razor", "=ds=#h4#, #w13#", "1370 #arena# #reqrating# 2200"};
- { 20, 51398, "", "=q4=Wrathful Gladiator's Blade of Celerity", "=ds=#h3#, #w4#", "3950 #arena# #reqrating# 2200"};
- { 21, 51399, "", "=q4=Wrathful Gladiator's Mageblade", "=ds=#h3#, #w4#", "3950 #arena# #reqrating# 2200"};
- { 22, 51518, "", "=q4=Wrathful Gladiator's Spike", "=ds=#h1#, #w4#", "3300 #arena# #reqrating# 2200"};
- { 23, 51442, "", "=q4=Wrathful Gladiator's Dirk", "=ds=#h4#, #w4#", "1370 #arena# #reqrating# 2200"};
- { 24, 51528, "", "=q4=Wrathful Gladiator's Eviscerator", "=ds=#h4#, #w4#", "1370 #arena# #reqrating# 2200"};
- { 25, 51522, "", "=q4=Wrathful Gladiator's Longblade", "=ds=#h1#, #w10#", "3300 #arena# #reqrating# 2200"};
- { 26, 51448, "", "=q4=Wrathful Gladiator's Swiftblade", "=ds=#h4#, #w10#", "1370 #arena# #reqrating# 2200"};
- { 27, 51393, "", "=q4=Wrathful Gladiator's Claymore", "=ds=#h2#, #w10#", "4670 #arena# #reqrating# 2200"};
- { 28, 51516, "", "=q4=Wrathful Gladiator's Handaxe", "=ds=#h1#, #w1#", "3300 #arena# #reqrating# 2200"};
- { 29, 51440, "", "=q4=Wrathful Gladiator's Dicer", "=ds=#h4#, #w1#", "1370 #arena# #reqrating# 2200"};
- { 30, 51526, "", "=q4=Wrathful Gladiator's Splitter", "=ds=#h4#, #w1#", "1370 #arena# #reqrating# 2200"};
- Next = "WrathfulGladiatorWeapons2";
- Back = "PVPMENUWRATH";
- };
-
- AtlasLoot_Data["WrathfulGladiatorWeapons2"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Low Level"], ""};
- { 2, 51388, "", "=q4=Wrathful Gladiator's Decapitator", "=ds=#h2#, #w1#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
- { 3, 51453, "", "=q4=Wrathful Gladiator's Gavel", "=ds=#h3#, #w6#", "38500 #faction# 1300 #arena# #reqrating# 1800"};
- { 4, 51519, "", "=q4=Wrathful Gladiator's Pummeler", "=ds=#h1#, #w6#", "38500 #faction# 1090 #arena# #reqrating# 1800"};
- { 5, 51445, "", "=q4=Wrathful Gladiator's Bonecracker", "=ds=#h4#, #w6#", "16500 #faction# 450 #arena# #reqrating# 1800"};
- { 6, 51390, "", "=q4=Wrathful Gladiator's Bonegrinder", "=ds=#h2#, #w6#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
- { 7, 51480, "", "=q4=Wrathful Gladiator's Pike", "=ds=#w7#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
- { 8, 51404, "", "=q4=Wrathful Gladiator's Battle Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
- { 9, 51456, "", "=q4=Wrathful Gladiator's Energy Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
- { 10, 51402, "", "=q4=Wrathful Gladiator's Focus Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
- { 11, 51431, "", "=q4=Wrathful Gladiator's Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
- { 12, 51400, "", "=q4=Wrathful Gladiator's War Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
- { 13, 51394, "", "=q4=Wrathful Gladiator's Longbow", "=ds=#w2#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
- { 14, 51411, "", "=q4=Wrathful Gladiator's Heavy Crossbow", "=ds=#w3#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
- { 15, 51449, "", "=q4=Wrathful Gladiator's Rifle", "=ds=#w5#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
- { 16, 0, "INV_Box_01", "=q6="..AL["High Level"], ""};
- { 17, 51389, "", "=q4=Wrathful Gladiator's Sunderer", "=ds=#h2#, #w1#", "4670 #arena# #reqrating# 2200"};
- { 18, 51454, "", "=q4=Wrathful Gladiator's Salvation", "=ds=#h3#, #w6#", "3950 #arena# #reqrating# 2200"};
- { 19, 51520, "", "=q4=Wrathful Gladiator's Truncheon", "=ds=#h1#, #w6#", "3300 #arena# #reqrating# 2200"};
- { 20, 51446, "", "=q4=Wrathful Gladiator's Punisher", "=ds=#h4#, #w6#", "1370 #arena# #reqrating# 2200"};
- { 21, 51391, "", "=q4=Wrathful Gladiator's Crusher", "=ds=#h2#, #w6#", "4670 #arena# #reqrating# 2200"};
- { 22, 51481, "", "=q4=Wrathful Gladiator's Halberd", "=ds=#w7#", "4670 #arena# #reqrating# 2200"};
- { 23, 51403, "", "=q4=Wrathful Gladiator's Acute Staff", "=ds=#w9#", "4670 #arena# #reqrating# 2200"};
- { 24, 51401, "", "=q4=Wrathful Gladiator's Combat Staff", "=ds=#w9#", "4670 #arena# #reqrating# 2200"};
- { 25, 51432, "", "=q4=Wrathful Gladiator's Greatstaff", "=ds=#w9#", "4670 #arena# #reqrating# 2200"};
- { 26, 51457, "", "=q4=Wrathful Gladiator's Light Staff", "=ds=#w9#", "4670 #arena# #reqrating# 2200"};
- { 27, 51405, "", "=q4=Wrathful Gladiator's Skirmish Staff", "=ds=#w9#", "4670 #arena# #reqrating# 2200"};
- { 28, 51395, "", "=q4=Wrathful Gladiator's Recurve", "=ds=#w2#", "4670 #arena# #reqrating# 2200"};
- { 29, 51412, "", "=q4=Wrathful Gladiator's Repeater", "=ds=#w3#", "4670 #arena# #reqrating# 2200"};
- { 30, 51450, "", "=q4=Wrathful Gladiator's Shotgun", "=ds=#w5#", "4670 #arena# #reqrating# 2200"};
- Prev = "WrathfulGladiatorWeapons1";
- Next = "WrathfulGladiatorWeapons3";
- Back = "PVPMENUWRATH";
- };
-
- AtlasLoot_Data["WrathfulGladiatorWeapons3"] = {
- { 1, 51452, "", "=q4=Wrathful Gladiator's Barrier", "=ds=#w8#", "350 #arena# #reqrating# 1800"};
- { 2, 51455, "", "=q4=Wrathful Gladiator's Redoubt", "=ds=#w8#", "350 #arena# #reqrating# 1800"};
- { 3, 51533, "", "=q4=Wrathful Gladiator's Shield Wall", "=ds=#w8#", "350 #arena# #reqrating# 1800"};
- { 4, 51535, "", "=q4=Wrathful Gladiator's War Edge", "=ds=#w11#", "1260 #arena# #reqrating# 1700"};
- { 5, 51532, "", "=q4=Wrathful Gladiator's Baton of Light", "=ds=#w12#", "1260 #arena# #reqrating# 1700"};
- { 6, 51531, "", "=q4=Wrathful Gladiator's Piercing Touch", "=ds=#w12#", "1260 #arena# #reqrating# 1700"};
- { 7, 51410, "", "=q4=Wrathful Gladiator's Touch of Defeat", "=ds=#w12#", "1260 #arena# #reqrating# 1700"};
- { 8, 51451, "", "=q4=Wrathful Gladiator's Wand of Alacrity", "=ds=#w12#", "1260 #arena# #reqrating# 1700"};
- { 9, 51407, "", "=q4=Wrathful Gladiator's Compendium", "=ds=#s15#", "350 #arena# #reqrating# 1800"};
- { 10, 51396, "", "=q4=Wrathful Gladiator's Endgame", "=ds=#s15#", "350 #arena# #reqrating# 1800"};
- { 11, 51408, "", "=q4=Wrathful Gladiator's Grimoire", "=ds=#s15#", "350 #arena# #reqrating# 1800"};
- { 12, 51409, "", "=q4=Wrathful Gladiator's Reprieve", "=ds=#s15#", "350 #arena# #reqrating# 1800"};
- Prev = "WrathfulGladiatorWeapons2";
- Back = "PVPMENUWRATH";
- };
-
- -----------------------
- --- PvP Class Items ---
- -----------------------
-
- AtlasLoot_Data["PvP80ClassItems1"] = {
- { 1, 0, "INV_Box_01", "=q6="..BabbleInventory["Idols"], ""};
- { 2, 51429, "", "=q4=Wrathful Gladiator's Idol of Resolve", "=ds=#w14#", "1260 #arena# #reqrating# 1700"};
- { 3, 51437, "", "=q4=Wrathful Gladiator's Idol of Steadfastness", "=ds=#w14#", "1260 #arena# #reqrating# 1700"};
- { 4, 51423, "", "=q4=Wrathful Gladiator's Idol of Tenacity", "=ds=#w14#", "1260 #arena# #reqrating# 1700"};
- { 6, 42591, "", "=q4=Relentless Gladiator's Idol of Resolve", "=ds=#w14#", "6400 #faction# 350 #arena# #reqrating# 700"};
- { 7, 42585, "", "=q4=Relentless Gladiator's Idol of Steadfastness", "=ds=#w14#", "6400 #faction# 350 #arena# #reqrating# 700"};
- { 8, 42580, "", "=q4=Relentless Gladiator's Idol of Tenacity", "=ds=#w14#", "6400 #faction# 350 #arena# #reqrating# 700"};
- { 10, 42589, "", "=q4=Furious Gladiator's Idol of Resolve", "12000 #faction#"};
- { 11, 42584, "", "=q4=Furious Gladiator's Idol of Steadfastness", "12000 #faction#"};
- { 12, 42579, "", "=q4=Furious Gladiator's Idol of Tenacity", "12000 #faction#"};
- { 16, 0, "INV_Box_01", "=q6="..BabbleInventory["Librams"], ""};
- { 17, 51478, "", "=q4=Wrathful Gladiator's Libram of Fortitude", "=ds=#w16#", "1260 #arena# #reqrating# 1700"};
- { 18, 51472, "", "=q4=Wrathful Gladiator's Libram of Justice", "=ds=#w16#", "1260 #arena# #reqrating# 1700"};
- { 20, 42854, "", "=q4=Relentless Gladiator's Libram of Fortitude", "=ds=#w16#", "6400 #faction# 350 #arena# #reqrating# 700"};
- { 21, 42616, "", "=q4=Relentless Gladiator's Libram of Justice", "=ds=#w16#", "6400 #faction# 350 #arena# #reqrating# 700"};
- { 23, 42853, "", "=q4=Furious Gladiator's Libram of Fortitude", "12000 #faction#"};
- { 24, 42615, "", "=q4=Furious Gladiator's Libram of Justice", "12000 #faction#"};
- Prev = "PvP80NonSet6";
- Next = "PvP80ClassItems2";
- Back = "PVP80NONSETEPICS";
- };
-
- AtlasLoot_Data["PvP80ClassItems2"] = {
- { 1, 0, "INV_Box_01", "=q6="..BabbleInventory["Sigils"], ""};
- { 2, 51417, "", "=q4=Wrathful Gladiator's Sigil of Strife", "=ds=#w21#", "1260 #arena# #reqrating# 1700"};
- { 4, 42622, "", "=q4=Relentless Gladiator's Sigil of Strife", "=ds=#w21#", "6400 #faction# 350 #arena# #reqrating# 700"};
- { 6, 42621, "", "=q4=Furious Gladiator's Sigil of Strife", "12000 #faction#"};
- { 16, 0, "INV_Box_01", "=q6="..BabbleInventory["Totems"], ""};
- { 17, 51507, "", "=q4=Wrathful Gladiator's Totem of Indomitability", "=ds=#w15#", "1260 #arena# #reqrating# 1700"};
- { 18, 51513, "", "=q4=Wrathful Gladiator's Totem of Survival", "=ds=#w15#", "1260 #arena# #reqrating# 1700"};
- { 19, 51501, "", "=q4=Wrathful Gladiator's Totem of the Third Wind", "=ds=#w15#", "1260 #arena# #reqrating# 1700"};
- { 21, 42609, "", "=q4=Relentless Gladiator's Totem of Indomitability", "=ds=#w15#", "6400 #faction# 350 #arena# #reqrating# 700"};
- { 22, 42604, "", "=q4=Relentless Gladiator's Totem of Survival", "=ds=#w15#", "6400 #faction# 350 #arena# #reqrating# 700"};
- { 23, 42599, "", "=q4=Relentless Gladiator's Totem of the Third Wind", "=ds=#w15#", "6400 #faction# 350 #arena# #reqrating# 700"};
- { 25, 42608, "", "=q4=Furious Gladiator's Totem of Indomitability", "12000 #faction#"};
- { 26, 42603, "", "=q4=Furious Gladiator's Totem of Survival", "12000 #faction#"};
- { 27, 42598, "", "=q4=Furious Gladiator's Totem of the Third Wind", "12000 #faction#"};
- Prev = "PvP80ClassItems1";
- Back = "PVP80NONSETEPICS";
- };
-
- -------------------------
- --- PvP Miscellaneous ---
- -------------------------
-
- AtlasLoot_Data["PvP80Misc"] = {
+};
+
+------------------------
+--- Icecrown Citadel ---
+------------------------
+
+-------------------
+--- Lower Spire ---
+-------------------
+
+AtlasLoot_Data["IcecrownCitadel"] = {
+ Name = BabbleZone["Icecrown Citadel"];
+ Type = "WrathRaid";
+ {
+ Name = BabbleBoss["Lord Marrowgar"];
+ { 1, 50764, "", "=q4=Shawl of Nerubian Silk", "=ds=#s4#" };
+ { 2, 50773, "", "=q4=Cord of the Patronizing Practitioner", "=ds=#s10#, #a1#" };
+ { 3, 50774, "", "=q4=Coldwraith Bracers", "=ds=#s8#, #a3#" };
+ { 4, 50762, "", "=q4=Linked Scourge Vertebrae", "=ds=#s10#, #a3#" };
+ { 5, 50775, "", "=q4=Corrupted Silverplate Leggings", "=ds=#s11#, #a4#" };
+ { 6, 50772, "", "=q4=Ancient Skeletal Boots", "=ds=#s12#, #a4#" };
+ { 8, 50763, "", "=q4=Marrowgar's Scratching Choker", "=ds=#s2#" };
+ { 9, 50339, "", "=q4=Sliver of Pure Ice", "=ds=#s14#" };
+ { 16, 50771, "", "=q4=Frost Needle", "=ds=#h3#, #w10#" };
+ { 17, 50761, "", "=q4=Citadel Enforcer's Claymore", "=ds=#h2#, #w10#" };
+ { 18, 50759, "", "=q4=Bone Warden's Splitter", "=ds=#h1#, #w1#" };
+ { 19, 50760, "", "=q4=Bonebreaker Scepter", "=ds=#h1#, #w6#" };
+ };
+ {
+ Name = BabbleBoss["Lord Marrowgar"];
+ { 1, 49978, "", "=q4=Crushing Coldwraith Belt", "=ds=#s10#, #a1#" };
+ { 2, 49979, "", "=q4=Handguards of Winter's Respite", "=ds=#s9#, #a2#" };
+ { 3, 49950, "", "=q4=Frostbitten Fur Boots", "=ds=#s12#, #a2#" };
+ { 4, 49952, "", "=q4=Snowserpent Mail Helm", "=ds=#s1#, #a3#" };
+ { 5, 49980, "", "=q4=Rusted Bonespike Pauldrons", "=ds=#s3#, #a4#" };
+ { 6, 49951, "", "=q4=Gendarme's Cuirass", "=ds=#s5#, #a4#" };
+ { 7, 49960, "", "=q4=Bracers of Dark Reckoning", "=ds=#s8#, #a4#" };
+ { 8, 49964, "", "=q4=Legguards of Lost Hope", "=ds=#s11#, #a4#" };
+ { 10, 49975, "", "=q4=Bone Sentinel's Amulet", "=ds=#s2#" };
+ { 11, 49949, "", "=q4=Band of the Bone Colossus", "=ds=#s13#" };
+ { 12, 49977, "", "=q4=Loop of the Endless Labyrinth", "=ds=#s13#" };
+ { 13, 49967, "", "=q4=Marrowgar's Frigid Eye", "=ds=#s13#" };
+ { 16, 49968, "", "=q4=Frozen Bonespike", "=ds=#h3#, #w4#" };
+ { 17, 50415, "", "=q4=Bryntroll, the Bone Arbiter", "=ds=#h2#, #w1#" };
+ { 18, 49976, "", "=q4=Bulwark of Smouldering Steel", "=ds=#w8#" };
+ { 20, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 21, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["Lady Deathwhisper"];
+ { 1, 50785, "", "=q4=Bracers of Dark Blessings", "=ds=#s8#, #a1#" };
+ { 2, 50782, "", "=q4=Sister's Handshrouds", "=ds=#s9#, #a1#" };
+ { 3, 50780, "", "=q4=Chestguard of the Frigid Noose", "=ds=#s5#, #a2#" };
+ { 4, 50778, "", "=q4=Soulthief's Braided Belt", "=ds=#s10#, #a2#" };
+ { 5, 50783, "", "=q4=Boots of the Frozen Seed", "=ds=#s12#, #a2#" };
+ { 6, 50777, "", "=q4=Handgrips of Frost and Sleet", "=ds=#s9#, #a3#" };
+ { 7, 50784, "", "=q4=Deathspeaker Disciple's Belt", "=ds=#s10#, #a3#" };
+ { 8, 50779, "", "=q4=Deathspeaker Zealot's Helm", "=ds=#s1#, #a4#" };
+ { 9, 50786, "", "=q4=Ghoul Commander's Cuirass", "=ds=#s5#, #a4#" };
+ { 16, 50342, "", "=q4=Whispering Fanged Skull", "=ds=#s14#" };
+ { 17, 50781, "", "=q4=Scourgelord's Baton", "=ds=#s15#" };
+ { 19, 50776, "", "=q4=Njordnar Bone Bow", "=ds=#w2#" };
+ };
+ {
+ Name = BabbleBoss["Lady Deathwhisper"];
+ { 1, 49991, "", "=q4=Shoulders of Mercy Killing", "=ds=#s3#, #a1#" };
+ { 2, 49994, "", "=q4=The Lady's Brittle Bracers", "=ds=#s8#, #a1#" };
+ { 3, 49987, "", "=q4=Cultist's Bloodsoaked Spaulders", "=ds=#s3#, #a2#" };
+ { 4, 49996, "", "=q4=Deathwhisper Chestpiece", "=ds=#s5#, #a2#" };
+ { 5, 49988, "", "=q4=Leggings of Northern Lights", "=ds=#s11#, #a3#" };
+ { 6, 49993, "", "=q4=Necrophotic Greaves", "=ds=#s12#, #a3#" };
+ { 7, 49986, "", "=q4=Broken Ram Skull Helm", "=ds=#s1#, #a4#" };
+ { 8, 49995, "", "=q4=Fallen Lord's Handguards", "=ds=#s9#, #a4#" };
+ { 9, 49983, "", "=q4=Blood-Soaked Saronite Stompers", "=ds=#s12#, #a4#" };
+ { 11, 49989, "", "=q4=Ahn'kahar Onyx Neckguard", "=ds=#s2#" };
+ { 12, 49985, "", "=q4=Juggernaut Band", "=ds=#s13#" };
+ { 13, 49990, "", "=q4=Ring of Maddening Whispers", "=ds=#s13#" };
+ { 16, 49982, "", "=q4=Heartpierce", "=ds=#h1#, #w4#" };
+ { 17, 49992, "", "=q4=Nibelung", "=ds=#w9#" };
+ { 18, 50034, "", "=q4=Zod's Repeating Longbow", "=ds=#w2#" };
+ { 20, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 21, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["Icecrown Gunship Battle"];
+ { 1, 50791, "", "=q4=Saronite Gargoyle Cloak", "=ds=#s4#" };
+ { 2, 50795, "", "=q4=Cord of Dark Suffering", "=ds=#s10#, #a2#" };
+ { 3, 50797, "", "=q4=Ice-Reinforced Vrykul Helm", "=ds=#s1#, #a3#" };
+ { 4, 50792, "", "=q4=Pauldrons of Lost Hope", "=ds=#s3#, #a3#" };
+ { 5, 50789, "", "=q4=Icecrown Rampart Bracers", "=ds=#s8#, #a3#" };
+ { 6, 50796, "", "=q4=Bracers of Pale Illumination", "=ds=#s8#, #a4#" };
+ { 7, 50788, "", "=q4=Bone Drake's Enameled Boots", "=ds=#s12#, #a4#" };
+ { 9, 50790, "", "=q4=Abomination's Bloody Ring", "=ds=#s13#" };
+ { 10, 50340, "", "=q4=Muradin's Spyglass", "=ds=#s14#" };
+ { 16, 50793, "", "=q4=Midnight Sun", "=ds=#h3#, #w4#" };
+ { 17, 50787, "", "=q4=Frost Giant's Cleaver", "=ds=#h1#, #w1#" };
+ { 18, 50794, "", "=q4=Neverending Winter", "=ds=#w8#" };
+ };
+ {
+ Name = BabbleBoss["Icecrown Gunship Battle"];
+ { 1, 49998, "", "=q4=Shadowvault Slayer's Cloak", "=ds=#s4#" };
+ { 2, 50006, "", "=q4=Corp'rethar Ceremonial Crown", "=ds=#s1#, #a1#" };
+ { 3, 50011, "", "=q4=Gunship Captain's Mittens", "=ds=#s9#, #a1#" };
+ { 4, 50001, "", "=q4=Ikfirus's Sack of Wonder", "=ds=#s5#, #a2#" };
+ { 5, 50009, "", "=q4=Boots of Unnatural Growth", "=ds=#s12#, #a2#" };
+ { 6, 50000, "", "=q4=Scourge Hunter's Vambraces", "=ds=#s8#, #a3#" };
+ { 7, 50003, "", "=q4=Boneguard Commander's Pauldrons", "=ds=#s3#, #a4#" };
+ { 8, 50002, "", "=q4=Polar Bear Claw Bracers", "=ds=#s8#, #a4#" };
+ { 9, 50010, "", "=q4=Waistband of Righteous Fury", "=ds=#s10#, #a4#" };
+ { 11, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 12, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ { 16, 50005, "", "=q4=Amulet of the Silent Eulogy", "=ds=#s2#" };
+ { 17, 50008, "", "=q4=Ring of Rapid Ascent", "=ds=#s13#" };
+ { 18, 49999, "", "=q4=Skeleton Lord's Circle", "=ds=#s13#" };
+ { 19, 50359, "", "=q4=Althor's Abacus", "=ds=#s14#" };
+ { 20, 50352, "", "=q4=Corpse Tongue Coin", "=ds=#s14#" };
+ { 22, 50411, "", "=q4=Scourgeborne Waraxe", "=ds=#h1#, #w1#" };
+ };
+ {
+ Name = BabbleBoss["Deathbringer Saurfang"];
+ { 1, 50807, "", "=q4=Thaumaturge's Crackling Cowl", "=ds=#s1#, #a1#" };
+ { 2, 50804, "", "=q4=Icecrown Spire Sandals", "=ds=#s12#, #a1#" };
+ { 3, 50799, "", "=q4=Scourge Stranglers", "=ds=#s9#, #a2#" };
+ { 4, 50806, "", "=q4=Leggings of Unrelenting Blood", "=ds=#s11#, #a2#" };
+ { 5, 50800, "", "=q4=Hauberk of a Thousand Cuts", "=ds=#s5#, #a3#" };
+ { 6, 50801, "", "=q4=Blade-Scored Carapace", "=ds=#s5#, #a4#" };
+ { 7, 50802, "", "=q4=Gargoyle Spit Bracers", "=ds=#s8#, #a4#" };
+ { 8, 50808, "", "=q4=Deathforged Legplates", "=ds=#s11#, #a4#" };
+ { 16, 50809, "", "=q4=Soulcleave Pendant", "=ds=#s2#" };
+ { 17, 50803, "", "=q4=Saurfang's Cold-Forged Band", "=ds=#s13#" };
+ { 19, 50798, "", "=q4=Ramaladni's Blade of Culling", "=ds=#h2#, #w1#" };
+ { 20, 50805, "", "=q4=Mag'hari Chieftain's Staff", "=ds=#w9#" };
+ };
+ {
+ Name = BabbleBoss["Deathbringer Saurfang"];
+ { 1, 50014, "", "=q4=Greatcloak of the Turned Champion", "=ds=#s4#" };
+ { 2, 50333, "", "=q4=Toskk's Maximized Wristguards", "=ds=#s8#, #a2#" };
+ { 3, 50015, "", "=q4=Belt of the Blood Nova", "=ds=#s10#, #a3#" };
+ { 4, 50362, "", "=q4=Deathbringer's Will", "=ds=#s14#" };
+ { 5, 50412, "", "=q4=Bloodvenom Blade", "=ds=#h1#, #w10#" };
+ { 7, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 8, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ };
+ {
+ Name = BabbleBoss["Festergut"];
+ { 1, 50859, "", "=q4=Cloak of Many Skins", "=ds=#s4#" };
+ { 2, 50988, "", "=q4=Bloodstained Surgeon's Shoulderguards", "=ds=#s3#, #a1#" };
+ { 3, 50990, "", "=q4=Kilt of Untreated Wounds", "=ds=#s11#, #a1#" };
+ { 4, 50985, "", "=q4=Wrists of Septic Shock", "=ds=#s8#, #a2#" };
+ { 5, 50858, "", "=q4=Plague-Soaked Leather Leggings", "=ds=#s11#, #a2#" };
+ { 6, 50812, "", "=q4=Taldron's Long Neglected Boots", "=ds=#s12#, #a3#" };
+ { 7, 50967, "", "=q4=Festergut's Gaseous Gloves", "=ds=#s9#, #a4#" };
+ { 8, 50811, "", "=q4=Festering Fingerguards", "=ds=#s9#, #a4#" };
+ { 16, 50852, "", "=q4=Precious's Putrid Collar", "=ds=#s2#" };
+ { 17, 50986, "", "=q4=Signet of Putrefaction", "=ds=#s13#" };
+ { 19, 50810, "", "=q4=Gutbuster", "=ds=#h1#, #w6#" };
+ { 20, 50966, "", "=q4=Abracadaver", "=ds=#w9#" };
+ };
+ {
+ Name = BabbleBoss["Festergut"];
+ { 1, 50063, "", "=q4=Lingering Illness", "=ds=#s10#, #a1#" };
+ { 2, 50056, "", "=q4=Plaguebringer's Stained Pants", "=ds=#s11#, #a1#" };
+ { 3, 50062, "", "=q4=Plague Scientist's Boots", "=ds=#s12#, #a1#" };
+ { 4, 50042, "", "=q4=Gangrenous Leggings", "=ds=#s11#, #a2#" };
+ { 5, 50041, "", "=q4=Leather of Stitched Scourge Parts", "=ds=#s11#, #a2#" };
+ { 6, 50059, "", "=q4=Horrific Flesh Epaulets", "=ds=#s3#, #a3#" };
+ { 7, 50038, "", "=q4=Carapace of Forgotten Kings", "=ds=#s5#, #a3#" };
+ { 8, 50064, "", "=q4=Unclean Surgical Gloves", "=ds=#s9#, #a3#" };
+ { 9, 50413, "", "=q4=Nerub'ar Stalker's Cord", "=ds=#s10#, #a3#" };
+ { 10, 50060, "", "=q4=Faceplate of the Forgotten", "=ds=#s1#, #a4#" };
+ { 11, 50037, "", "=q4=Fleshrending Gauntlets", "=ds=#s9#, #a4#" };
+ { 12, 50036, "", "=q4=Belt of Broken Bones", "=ds=#s10#, #a4#" };
+ { 16, 50061, "", "=q4=Holiday's Grace", "=ds=#s2#" };
+ { 17, 50414, "", "=q4=Might of Blight", "=ds=#s13#" };
+ { 19, 50035, "", "=q4=Black Bruise", "=ds=#h3#, #w13#" };
+ { 20, 50040, "", "=q4=Distant Land", "=ds=#w9#" };
+ { 22, 50226, "", "=q4=Festergut's Acidic Blood", "=ds=#m3#" };
+ { 24, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 25, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["Rotface"];
+ { 1, 51007, "", "=q4=Ether-Soaked Bracers", "=ds=#s8#, #a1#" };
+ { 2, 51005, "", "=q4=Gloves of Broken Fingers", "=ds=#s9#, #a1#" };
+ { 3, 51009, "", "=q4=Chestguard of the Failed Experiment", "=ds=#s5#, #a2#" };
+ { 4, 51002, "", "=q4=Taldron's Short-Sighted Helm", "=ds=#s1#, #a3#" };
+ { 5, 51006, "", "=q4=Shuffling Shoes", "=ds=#s12#, #a3#" };
+ { 6, 51000, "", "=q4=Flesh-Shaper's Gurney Strap", "=ds=#s10#, #a4#" };
+ { 8, 51008, "", "=q4=Choker of Filthy Diamonds", "=ds=#s2#" };
+ { 9, 51001, "", "=q4=Rotface's Rupturing Ring", "=ds=#s13#" };
+ { 16, 51003, "", "=q4=Abomination Knuckles", "=ds=#h3#, #w13#" };
+ { 17, 51004, "", "=q4=Lockjaw", "=ds=#h3#, #w6#" };
+ { 18, 50998, "", "=q4=Shaft of Glacial Ice", "=ds=#w9#" };
+ { 19, 50999, "", "=q4=Gluth's Fetching Knife", "=ds=#w11#" };
+ };
+ {
+ Name = BabbleBoss["Rotface"];
+ { 1, 50019, "", "=q4=Winding Sheet", "=ds=#s4#" };
+ { 2, 50032, "", "=q4=Death Surgeon's Sleeves", "=ds=#s8#, #a1#" };
+ { 3, 50026, "", "=q4=Helm of the Elder Moon", "=ds=#s1#, #a2#" };
+ { 4, 50021, "", "=q4=Aldriana's Gloves of Secrecy", "=ds=#s9#, #a2#" };
+ { 5, 50022, "", "=q4=Dual-Bladed Pauldrons", "=ds=#s3#, #a3#" };
+ { 6, 50030, "", "=q4=Bloodsunder's Bracers", "=ds=#s8#, #a3#" };
+ { 7, 50020, "", "=q4=Raging Behemoth's Shoulderplates", "=ds=#s3#, #a4#" };
+ { 8, 50024, "", "=q4=Blightborne Warplate", "=ds=#s5#, #a4#" };
+ { 9, 50027, "", "=q4=Rot-Resistant Breastplate", "=ds=#s5#, #a4#" };
+ { 11, 50023, "", "=q4=Bile-Encrusted Medallion", "=ds=#s2#" };
+ { 12, 50025, "", "=q4=Seal of Many Mouths", "=ds=#s13#" };
+ { 13, 50353, "", "=q4=Dislodged Foreign Object", "=ds=#s14#" };
+ { 16, 50028, "", "=q4=Trauma", "=ds=#h3#, #w6#" };
+ { 17, 50016, "", "=q4=Rib Spreader", "=ds=#h1#, #w4#" };
+ { 18, 50033, "", "=q4=Corpse-Impaling Spike", "=ds=#w12#" };
+ { 20, 50231, "", "=q4=Rotface's Acidic Blood", "=ds=#m3#" };
+ { 22, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 23, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["Professor Putricide"];
+ { 1, 51020, "", "=q4=Shoulders of Ruinous Senility", "=ds=#s3#, #a1#" };
+ { 2, 51017, "", "=q4=Cauterized Cord", "=ds=#s10#, #a1#" };
+ { 3, 51013, "", "=q4=Discarded Bag of Entrails", "=ds=#s1#, #a2#" };
+ { 4, 51015, "", "=q4=Shoulderpads of the Morbid Ritual", "=ds=#s3#, #a3#" };
+ { 5, 51019, "", "=q4=Rippling Flesh Kilt", "=ds=#s11#, #a3#" };
+ { 6, 51014, "", "=q4=Scalpel-Sharpening Shoulderguards", "=ds=#s3#, #a4#" };
+ { 7, 51018, "", "=q4=Chestplate of Septic Stitches", "=ds=#s5#, #a4#" };
+ { 16, 51012, "", "=q4=Infected Choker", "=ds=#s2#" };
+ { 17, 51016, "", "=q4=Pendant of Split Veins", "=ds=#s2#" };
+ { 18, 50341, "", "=q4=Unidentifiable Organ", "=ds=#s14#" };
+ { 20, 51011, "", "=q4=Flesh-Carving Scalpel", "=ds=#h1#, #w4#" };
+ { 21, 51010, "", "=q4=The Facelifter", "=ds=#h1#, #w10#" };
+ };
+ {
+ Name = BabbleBoss["Professor Putricide"];
+ { 1, 50067, "", "=q4=Astrylian's Sutured Cinch", "=ds=#s10#, #a2#" };
+ { 2, 50069, "", "=q4=Professor's Bloodied Smock", "=ds=#s10#, #a2#" };
+ { 3, 50351, "", "=q4=Tiny Abomination in a Jar", "=ds=#s14#" };
+ { 4, 50179, "", "=q4=Last Word", "=ds=#h1#, #w6#" };
+ { 5, 50068, "", "=q4=Rigormortis", "=ds=#h1#, #w10#" };
+ { 7, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 8, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ };
+ {
+ Name = BabbleBoss["Blood Prince Council"];
+ { 1, 51382, "", "=q4=Heartsick Mender's Cape", "=ds=#s4#" };
+ { 2, 51379, "", "=q4=Bloodsoul Raiment", "=ds=#s5#, #a1#" };
+ { 3, 51380, "", "=q4=Pale Corpse Boots", "=ds=#s12#, #a1#" };
+ { 4, 51023, "", "=q4=Taldaram's Soft Slippers", "=ds=#s12#, #a2#" };
+ { 5, 51325, "", "=q4=Blood-Drinker's Girdle", "=ds=#s10#, #a3#" };
+ { 6, 51383, "", "=q4=Spaulders of the Blood Princes", "=ds=#s3#, #a4#" };
+ { 7, 51025, "", "=q4=Battle-Maiden's Legguards", "=ds=#s11#, #a4#" };
+ { 9, 51381, "", "=q4=Cerise Coiled Ring", "=ds=#s13#" };
+ { 10, 51024, "", "=q4=Thrice Fanged Signet", "=ds=#s13#" };
+ { 16, 51021, "", "=q4=Soulbreaker", "=ds=#h1#, #w10#" };
+ { 17, 51022, "", "=q4=Hersir's Greatspear", "=ds=#w7#" };
+ { 18, 51326, "", "=q4=Wand of Ruby Claret", "=ds=#w12#" };
+ };
+ {
+ Name = BabbleBoss["Blood Prince Council"];
+ { 1, 50074, "", "=q4=Royal Crimson Cloak", "=ds=#s4#" };
+ { 2, 50172, "", "=q4=Sanguine Silk Robes", "=ds=#s5#, #a1#" };
+ { 3, 50176, "", "=q4=San'layn Ritualist Gloves", "=ds=#s9#, #a1#" };
+ { 4, 50073, "", "=q4=Geistlord's Punishment Sack", "=ds=#s1#, #a2#" };
+ { 5, 50171, "", "=q4=Shoulders of Frost-Tipped Thorns", "=ds=#s3#, #a2#" };
+ { 6, 50177, "", "=q4=Mail of Crimson Coins", "=ds=#s5#, #a3#" };
+ { 7, 50071, "", "=q4=Treads of the Wasteland", "=ds=#s12#, #a3#" };
+ { 8, 50072, "", "=q4=Landsoul's Horned Greathelm", "=ds=#s1#, #a4#" };
+ { 9, 50175, "", "=q4=Crypt Keeper's Bracers", "=ds=#s8#, #a4#" };
+ { 10, 50075, "", "=q4=Taldaram's Plated Fists", "=ds=#s9#, #a4#" };
+ { 16, 50174, "", "=q4=Incarnadine Band of Mending", "=ds=#s13#" };
+ { 17, 50170, "", "=q4=Valanar's Other Signet Ring", "=ds=#s13#" };
+ { 18, 50173, "", "=q4=Shadow Silk Spindle", "=ds=#s15#" };
+ { 20, 50184, "", "=q4=Keleseth's Seducer", "=ds=#h4#, #w13#" };
+ { 21, 49919, "", "=q4=Cryptmaker", "=ds=#h2#, #w6#" };
+ { 23, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 24, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["Blood-Queen Lana'thel"];
+ { 1, 51554, "", "=q4=Cowl of Malefic Repose", "=ds=#s1#, #a1#" };
+ { 2, 51552, "", "=q4=Shoulderpads of the Searing Kiss", "=ds=#s3#, #a2#" };
+ { 3, 51550, "", "=q4=Ivory-Inlaid Leggings", "=ds=#s11#, #a2#" };
+ { 4, 51551, "", "=q4=Chestguard of Siphoned Elements", "=ds=#s5#, #a3#" };
+ { 5, 51386, "", "=q4=Throatrender Handguards", "=ds=#s9#, #a4#" };
+ { 6, 51556, "", "=q4=Veincrusher Gauntlets", "=ds=#s9#, #a4#" };
+ { 7, 51555, "", "=q4=Tightening Waistband", "=ds=#s10#, #a4#" };
+ { 16, 51548, "", "=q4=Collar of Haughty Disdain", "=ds=#s2#" };
+ { 17, 51387, "", "=q4=Seal of the Twilight Queen", "=ds=#s13#" };
+ { 19, 51384, "", "=q4=Bloodsipper", "=ds=#h1#, #w4#" };
+ { 20, 51385, "", "=q4=Stakethrower", "=ds=#w5#" };
+ { 21, 51553, "", "=q4=Lana'thel's Bloody Nail", "=ds=#w12#" };
+ };
+ {
+ Name = BabbleBoss["Blood-Queen Lana'thel"];
+ { 1, 50182, "", "=q4=Blood Queen's Crimson Choker", "=ds=#s2#" };
+ { 2, 50180, "", "=q4=Lana'thel's Chain of Flagellation", "=ds=#s2#" };
+ { 3, 50354, "", "=q4=Bauble of True Blood", "=ds=#s14#" };
+ { 4, 50178, "", "=q4=Bloodfall", "=ds=#w7#" };
+ { 5, 50181, "", "=q4=Dying Light", "=ds=#w9#" };
+ { 6, 50065, "", "=q4=Icecrown Glacial Wall", "=ds=#w8#" };
+ { 8, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 9, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ };
+ {
+ Name = BabbleBoss["Valithria Dreamwalker"];
+ { 1, 51584, "", "=q4=Lich Wrappings", "=ds=#s4#" };
+ { 2, 51777, "", "=q4=Leggings of the Refracted Mind", "=ds=#s11#, #a1#" };
+ { 3, 51585, "", "=q4=Sister Svalna's Spangenhelm", "=ds=#s1#, #a2#" };
+ { 4, 51565, "", "=q4=Skinned Whelp Shoulders", "=ds=#s3#, #a2#" };
+ { 5, 51583, "", "=q4=Stormbringer Gloves", "=ds=#s9#, #a3#" };
+ { 6, 51566, "", "=q4=Legguards of the Twisted Dream", "=ds=#s11#, #a3#" };
+ { 7, 51586, "", "=q4=Emerald Saint's Spaulders", "=ds=#s3#, #a4#" };
+ { 8, 51563, "", "=q4=Taiga Bindings", "=ds=#s8#, #a4#" };
+ { 9, 51564, "", "=q4=Ironrope Belt of Ymirjar", "=ds=#s10#, #a4#" };
+ { 16, 51562, "", "=q4=Oxheart", "=ds=#h2#, #w6#" };
+ { 17, 51582, "", "=q4=Sister Svalna's Aether Staff", "=ds=#w9#" };
+ { 18, 51561, "", "=q4=Dreamhunter's Carbine", "=ds=#w5#" };
+ };
+ {
+ Name = BabbleBoss["Valithria Dreamwalker"];
+ { 1, 50205, "", "=q4=Frostbinder's Shredded Cape", "=ds=#s4#" };
+ { 2, 50418, "", "=q4=Robe of the Waking Nightmare", "=ds=#s5#, #a1#" };
+ { 3, 50417, "", "=q4=Bracers of Eternal Dreaming", "=ds=#s8#, #a2#" };
+ { 4, 50202, "", "=q4=Snowstorm Helm", "=ds=#s1#, #a3#" };
+ { 5, 50188, "", "=q4=Anub'ar Stalker's Gloves", "=ds=#s9#, #a3#" };
+ { 6, 50187, "", "=q4=Coldwraith Links", "=ds=#s10#, #a4#" };
+ { 7, 50199, "", "=q4=Leggings of Dying Candles", "=ds=#s11#, #a4#" };
+ { 8, 50192, "", "=q4=Scourge Reaver's Legplates", "=ds=#s11#, #a4#" };
+ { 9, 50416, "", "=q4=Boots of the Funeral March", "=ds=#s12#, #a4#" };
+ { 10, 50190, "", "=q4=Grinning Skull Greatboots", "=ds=#s12#, #a4#" };
+ { 16, 50195, "", "=q4=Noose of Malachite", "=ds=#s2#" };
+ { 17, 50185, "", "=q4=Devium's Eternally Cold Ring", "=ds=#s13#" };
+ { 18, 50186, "", "=q4=Frostbrood Sapphire Ring", "=ds=#s13#" };
+ { 20, 50183, "", "=q4=Lungbreaker", "=ds=#h1#, #w4#" };
+ { 21, 50472, "", "=q4=Nightmare Ender", "=ds=#w12#" };
+ { 23, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 24, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["Sindragosa"];
+ { 1, 51790, "", "=q4=Robes of Azure Downfall", "=ds=#s5#, #a1#" };
+ { 2, 51783, "", "=q4=Vambraces of the Frost Wyrm Queen", "=ds=#s8#, #a2#" };
+ { 3, 51789, "", "=q4=Icicle Shapers", "=ds=#s9#, #a2#" };
+ { 4, 51792, "", "=q4=Shoulderguards of Crystalline Bone", "=ds=#s3#, #a3#" };
+ { 5, 51785, "", "=q4=Wyrmwing Treads", "=ds=#s12#, #a3#" };
+ { 6, 51782, "", "=q4=Etched Dragonbone Girdle", "=ds=#s10#, #a4#" };
+ { 7, 51786, "", "=q4=Legplates of Aetheric Strife", "=ds=#s11#, #a4#" };
+ { 8, 51787, "", "=q4=Scourge Fanged Stompers", "=ds=#s12#, #a4#" };
+ { 10, 51026, "", "=q1=Crystalline Essence of Sindragosa", "=ds=#m3#" };
+ { 16, 51779, "", "=q4=Rimetooth Pendant", "=ds=#s2#" };
+ { 18, 51784, "", "=q4=Splintershard", "=ds=#h4#, #w13#" };
+ { 19, 51788, "", "=q4=Bleak Coldarra Carver", "=ds=#h3#, #w4#" };
+ { 20, 51791, "", "=q4=Lost Pavise of the Blue Flight", "=ds=#w8#" };
+ };
+ {
+ Name = BabbleBoss["Sindragosa"];
+ { 1, 50421, "", "=q4=Sindragosa's Cruel Claw", "=ds=#s2#" };
+ { 2, 50424, "", "=q4=Memory of Malygos", "=ds=#s13#" };
+ { 3, 50360, "", "=q4=Phylactery of the Nameless Lich", "=ds=#s14#" };
+ { 4, 50361, "", "=q4=Sindragosa's Flawless Fang", "=ds=#s14#" };
+ { 5, 50423, "", "=q4=Sundial of Eternal Dusk", "=ds=#s15#" };
+ { 7, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 8, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ { 9, 51026, "", "=q1=Crystalline Essence of Sindragosa", "=ds=#m3#" };
+ { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ };
+ {
+ Name = BabbleBoss["The Lich King"];
+ { 1, 51801, "", "=q4=Pugius, Fist of Defiance", "=ds=#h3#, #w13#" };
+ { 2, 51803, "", "=q4=Tel'thas, Dagger of the Blood King", "=ds=#h3#, #w4#" };
+ { 3, 51800, "", "=q4=Stormfury, Black Blade of the Betrayer", "=ds=#h1#, #w4#" };
+ { 4, 51795, "", "=q4=Troggbane, Axe of the Frostborne King", "=ds=#h1#, #w1#" };
+ { 5, 51798, "", "=q4=Valius, Gavel of the Lightbringer", "=ds=#h3#, #w6#" };
+ { 6, 51796, "", "=q4=Warmace of Menethil", "=ds=#h2#, #w6#" };
+ { 7, 51799, "", "=q4=Halion, Staff of Forgotten Love", "=ds=#w9#" };
+ { 8, 51797, "", "=q4=Tainted Twig of Nordrassil", "=ds=#w9#" };
+ { 9, 51802, "", "=q4=Windrunner's Heartseeker", "=ds=#w3#" };
+ };
+ {
+ Name = BabbleBoss["The Lich King"];
+ { 1, 50426, "", "=q4=Heaven's Fall, Kryss of a Thousand Lies", "=ds=#h1#, #w4#" };
+ { 2, 50427, "", "=q4=Bloodsurge, Kel'Thuzad's Blade of Agony", "=ds=#h3#, #w10#" };
+ { 3, 50070, "", "=q4=Glorenzelg, High-Blade of the Silver Hand", "=ds=#h2#, #w10#" };
+ { 4, 50012, "", "=q4=Havoc's Call, Blade of Lordaeron Kings", "=ds=#h1#, #w1#" };
+ { 5, 50428, "", "=q4=Royal Scepter of Terenas II", "=ds=#h3#, #w6#" };
+ { 6, 49997, "", "=q4=Mithrios, Bronzebeard's Legacy", "=ds=#h1#, #w6#" };
+ { 7, 50425, "", "=q4=Oathbinder, Charge of the Ranger-General", "=ds=#w7#" };
+ { 8, 50429, "", "=q4=Archus, Greatstaff of Antonidas", "=ds=#w9#" };
+ { 9, 49981, "", "=q4=Fal'inrush, Defender of Quel'thalas", "=ds=#w3#" };
+ { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ { 20, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 21, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = AL["Trash Mobs"];
+ { 1, 50449, "", "=q4=Stiffened Corpse Shoulderpads", "=ds=#s3#, #a1#" };
+ { 2, 50450, "", "=q4=Leggings of Dubious Charms", "=ds=#s11#, #a3#" };
+ { 3, 50451, "", "=q4=Belt of the Lonely Noble", "=ds=#s10#, #a4#" };
+ { 4, 50452, "", "=q4=Wodin's Lucky Necklace", "=ds=#s2#" };
+ { 5, 50447, "", "=q4=Harbinger's Bone Band", "=ds=#s13#" };
+ { 6, 50453, "", "=q4=Ring of Rotting Sinew", "=ds=#s13#" };
+ { 7, 50444, "", "=q4=Rowan's Rifle of Silver Bullets", "=ds=#w5#" };
+ };
+ {
+ Name = BabbleBoss["Lord Marrowgar"];
+ { 1, 51933, "", "=q4=Shawl of Nerubian Silk", "=ds=#s4#" };
+ { 2, 51930, "", "=q4=Cord of the Patronizing Practitioner", "=ds=#s10#, #a1#" };
+ { 3, 51929, "", "=q4=Coldwraith Bracers", "=ds=#s8#, #a3#" };
+ { 4, 51935, "", "=q4=Linked Scourge Vertebrae", "=ds=#s10#, #a3#" };
+ { 5, 51928, "", "=q4=Corrupted Silverplate Leggings", "=ds=#s11#, #a4#" };
+ { 6, 51931, "", "=q4=Ancient Skeletal Boots", "=ds=#s12#, #a4#" };
+ { 8, 51934, "", "=q4=Marrowgar's Scratching Choker", "=ds=#s2#" };
+ { 9, 50346, "", "=q4=Sliver of Pure Ice", "=ds=#s14#" };
+ { 16, 51932, "", "=q4=Frost Needle", "=ds=#h3#, #w10#" };
+ { 17, 51936, "", "=q4=Citadel Enforcer's Claymore", "=ds=#h2#, #w10#" };
+ { 18, 51938, "", "=q4=Bone Warden's Splitter", "=ds=#h1#, #w1#" };
+ { 19, 51937, "", "=q4=Bonebreaker Scepter", "=ds=#h1#, #w6#" };
+ };
+ {
+ Name = BabbleBoss["Lord Marrowgar"];
+ { 1, 50613, "", "=q4=Crushing Coldwraith Belt", "=ds=#s10#, #a1#" };
+ { 2, 50615, "", "=q4=Handguards of Winter's Respite", "=ds=#s9#, #a2#" };
+ { 3, 50607, "", "=q4=Frostbitten Fur Boots", "=ds=#s12#, #a2#" };
+ { 4, 50605, "", "=q4=Snowserpent Mail Helm", "=ds=#s1#, #a3#" };
+ { 5, 50617, "", "=q4=Rusted Bonespike Pauldrons", "=ds=#s3#, #a4#" };
+ { 6, 50606, "", "=q4=Gendarme's Cuirass", "=ds=#s5#, #a4#" };
+ { 7, 50611, "", "=q4=Bracers of Dark Reckoning", "=ds=#s8#, #a4#" };
+ { 8, 50612, "", "=q4=Legguards of Lost Hope", "=ds=#s11#, #a4#" };
+ { 10, 50609, "", "=q4=Bone Sentinel's Amulet", "=ds=#s2#" };
+ { 11, 50604, "", "=q4=Band of the Bone Colossus", "=ds=#s13#" };
+ { 12, 50614, "", "=q4=Loop of the Endless Labyrinth", "=ds=#s13#" };
+ { 13, 50610, "", "=q4=Marrowgar's Frigid Eye", "=ds=#s13#" };
+ { 16, 50608, "", "=q4=Frozen Bonespike", "=ds=#h3#, #w4#" };
+ { 17, 50709, "", "=q4=Bryntroll, the Bone Arbiter", "=ds=#h2#, #w1#" };
+ { 18, 50616, "", "=q4=Bulwark of Smouldering Steel", "=ds=#w8#" };
+ { 20, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 21, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["Lady Deathwhisper"];
+ { 1, 51918, "", "=q4=Bracers of Dark Blessings", "=ds=#s8#, #a1#" };
+ { 2, 51921, "", "=q4=Sister's Handshrouds", "=ds=#s9#, #a1#" };
+ { 3, 51923, "", "=q4=Chestguard of the Frigid Noose", "=ds=#s5#, #a2#" };
+ { 4, 51925, "", "=q4=Soulthief's Braided Belt", "=ds=#s10#, #a2#" };
+ { 5, 51920, "", "=q4=Boots of the Frozen Seed", "=ds=#s12#, #a2#" };
+ { 6, 51926, "", "=q4=Handgrips of Frost and Sleet", "=ds=#s9#, #a3#" };
+ { 7, 51919, "", "=q4=Deathspeaker Disciple's Belt", "=ds=#s10#, #a3#" };
+ { 8, 51924, "", "=q4=Deathspeaker Zealot's Helm", "=ds=#s1#, #a4#" };
+ { 9, 51917, "", "=q4=Ghoul Commander's Cuirass", "=ds=#s5#, #a4#" };
+ { 16, 50343, "", "=q4=Whispering Fanged Skull", "=ds=#s14#" };
+ { 17, 51922, "", "=q4=Scourgelord's Baton", "=ds=#s15#" };
+ { 19, 51927, "", "=q4=Njordnar Bone Bow", "=ds=#w2#" };
+ };
+ {
+ Name = BabbleBoss["Lady Deathwhisper"];
+ { 1, 50643, "", "=q4=Shoulders of Mercy Killing", "=ds=#s3#, #a1#" };
+ { 2, 50651, "", "=q4=The Lady's Brittle Bracers", "=ds=#s8#, #a1#" };
+ { 3, 50646, "", "=q4=Cultist's Bloodsoaked Spaulders", "=ds=#s3#, #a2#" };
+ { 4, 50649, "", "=q4=Deathwhisper Chestpiece", "=ds=#s5#, #a2#" };
+ { 5, 50645, "", "=q4=Leggings of Northern Lights", "=ds=#s11#, #a3#" };
+ { 6, 50652, "", "=q4=Necrophotic Greaves", "=ds=#s12#, #a3#" };
+ { 7, 50640, "", "=q4=Broken Ram Skull Helm", "=ds=#s1#, #a4#" };
+ { 8, 50650, "", "=q4=Fallen Lord's Handguards", "=ds=#s9#, #a4#" };
+ { 9, 50639, "", "=q4=Blood-Soaked Saronite Stompers", "=ds=#s12#, #a4#" };
+ { 11, 50647, "", "=q4=Ahn'kahar Onyx Neckguard", "=ds=#s2#" };
+ { 12, 50642, "", "=q4=Juggernaut Band", "=ds=#s13#" };
+ { 13, 50644, "", "=q4=Ring of Maddening Whispers", "=ds=#s13#" };
+ { 16, 50641, "", "=q4=Heartpierce", "=ds=#h1#, #w4#" };
+ { 17, 50648, "", "=q4=Nibelung", "=ds=#w9#" };
+ { 18, 50638, "", "=q4=Zod's Repeating Longbow", "=ds=#w2#" };
+ { 20, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 21, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["Icecrown Gunship Battle"];
+ { 1, 51912, "", "=q4=Saronite Gargoyle Cloak", "=ds=#s4#" };
+ { 2, 51908, "", "=q4=Cord of Dark Suffering", "=ds=#s10#, #a2#" };
+ { 3, 51906, "", "=q4=Ice-Reinforced Vrykul Helm", "=ds=#s1#, #a3#" };
+ { 4, 51911, "", "=q4=Pauldrons of Lost Hope", "=ds=#s3#, #a3#" };
+ { 5, 51914, "", "=q4=Icecrown Rampart Bracers", "=ds=#s8#, #a3#" };
+ { 6, 51907, "", "=q4=Bracers of Pale Illumination", "=ds=#s8#, #a4#" };
+ { 7, 51915, "", "=q4=Bone Drake's Enameled Boots", "=ds=#s12#, #a4#" };
+ { 9, 51913, "", "=q4=Abomination's Bloody Ring", "=ds=#s13#" };
+ { 10, 50345, "", "=q4=Muradin's Spyglass", "=ds=#s14#" };
+ { 16, 51910, "", "=q4=Midnight Sun", "=ds=#h3#, #w4#" };
+ { 17, 51916, "", "=q4=Frost Giant's Cleaver", "=ds=#h1#, #w1#" };
+ { 18, 51909, "", "=q4=Neverending Winter", "=ds=#w8#" };
+ };
+ {
+ Name = BabbleBoss["Icecrown Gunship Battle"];
+ { 1, 50653, "", "=q4=Shadowvault Slayer's Cloak", "=ds=#s4#" };
+ { 2, 50661, "", "=q4=Corp'rethar Ceremonial Crown", "=ds=#s1#, #a1#" };
+ { 3, 50663, "", "=q4=Gunship Captain's Mittens", "=ds=#s9#, #a1#" };
+ { 4, 50656, "", "=q4=Ikfirus's Sack of Wonder", "=ds=#s5#, #a2#" };
+ { 5, 50665, "", "=q4=Boots of Unnatural Growth", "=ds=#s12#, #a2#" };
+ { 6, 50655, "", "=q4=Scourge Hunter's Vambraces", "=ds=#s8#, #a3#" };
+ { 7, 50660, "", "=q4=Boneguard Commander's Pauldrons", "=ds=#s3#, #a4#" };
+ { 8, 50659, "", "=q4=Polar Bear Claw Bracers", "=ds=#s8#, #a4#" };
+ { 9, 50667, "", "=q4=Waistband of Righteous Fury", "=ds=#s10#, #a4#" };
+ { 11, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 12, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ { 16, 50658, "", "=q4=Amulet of the Silent Eulogy", "=ds=#s2#" };
+ { 17, 50664, "", "=q4=Ring of Rapid Ascent", "=ds=#s13#" };
+ { 18, 50657, "", "=q4=Skeleton Lord's Circle", "=ds=#s13#" };
+ { 19, 50366, "", "=q4=Althor's Abacus", "=ds=#s14#" };
+ { 20, 50349, "", "=q4=Corpse Tongue Coin", "=ds=#s14#" };
+ { 22, 50654, "", "=q4=Scourgeborne Waraxe", "=ds=#h1#, #w1#" };
+ };
+ {
+ Name = BabbleBoss["Deathbringer Saurfang"];
+ { 1, 51896, "", "=q4=Thaumaturge's Crackling Cowl", "=ds=#s1#, #a1#" };
+ { 2, 51899, "", "=q4=Icecrown Spire Sandals", "=ds=#s12#, #a1#" };
+ { 3, 51904, "", "=q4=Scourge Stranglers", "=ds=#s9#, #a2#" };
+ { 4, 51897, "", "=q4=Leggings of Unrelenting Blood", "=ds=#s11#, #a2#" };
+ { 5, 51903, "", "=q4=Hauberk of a Thousand Cuts", "=ds=#s5#, #a3#" };
+ { 6, 51902, "", "=q4=Blade-Scored Carapace", "=ds=#s5#, #a4#" };
+ { 7, 51901, "", "=q4=Gargoyle Spit Bracers", "=ds=#s8#, #a4#" };
+ { 8, 51895, "", "=q4=Deathforged Legplates", "=ds=#s11#, #a4#" };
+ { 10, 51894, "", "=q4=Soulcleave Pendant", "=ds=#s2#" };
+ { 11, 51900, "", "=q4=Saurfang's Cold-Forged Band", "=ds=#s13#" };
+ { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ { 20, 51905, "", "=q4=Ramaladni's Blade of Culling", "=ds=#h2#, #w1#" };
+ { 21, 51898, "", "=q4=Mag'hari Chieftain's Staff", "=ds=#w9#" };
+ };
+ {
+ Name = BabbleBoss["Deathbringer Saurfang"];
+ { 1, 50668, "", "=q4=Greatcloak of the Turned Champion", "=ds=#s4#" };
+ { 2, 50670, "", "=q4=Toskk's Maximized Wristguards", "=ds=#s8#, #a2#" };
+ { 3, 50671, "", "=q4=Belt of the Blood Nova", "=ds=#s10#, #a3#" };
+ { 4, 50363, "", "=q4=Deathbringer's Will", "=ds=#s14#" };
+ { 5, 50672, "", "=q4=Bloodvenom Blade", "=ds=#h1#, #w10#" };
+ { 7, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 8, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ { 16, 52030, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52029, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52028, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ { 20, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 21, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 22, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ };
+ {
+ Name = BabbleBoss["Festergut"];
+ { 1, 51888, "", "=q4=Cloak of Many Skins", "=ds=#s4#" };
+ { 2, 51883, "", "=q4=Bloodstained Surgeon's Shoulderguards", "=ds=#s3#, #a1#" };
+ { 3, 51882, "", "=q4=Kilt of Untreated Wounds", "=ds=#s11#, #a1#" };
+ { 4, 51885, "", "=q4=Wrists of Septic Shock", "=ds=#s8#, #a2#" };
+ { 5, 51889, "", "=q4=Plague-Soaked Leather Leggings", "=ds=#s11#, #a2#" };
+ { 6, 51891, "", "=q4=Taldron's Long Neglected Boots", "=ds=#s12#, #a3#" };
+ { 7, 51886, "", "=q4=Festergut's Gaseous Gloves", "=ds=#s9#, #a4#" };
+ { 8, 51892, "", "=q4=Festering Fingerguards", "=ds=#s9#, #a4#" };
+ { 16, 51890, "", "=q4=Precious's Putrid Collar", "=ds=#s2#" };
+ { 17, 51884, "", "=q4=Signet of Putrefaction", "=ds=#s13#" };
+ { 19, 51893, "", "=q4=Gutbuster", "=ds=#h1#, #w6#" };
+ { 20, 51887, "", "=q4=Abracadaver", "=ds=#w9#" };
+ };
+ {
+ Name = BabbleBoss["Festergut"];
+ { 1, 50702, "", "=q4=Lingering Illness", "=ds=#s10#, #a1#" };
+ { 2, 50694, "", "=q4=Plaguebringer's Stained Pants", "=ds=#s11#, #a1#" };
+ { 3, 50699, "", "=q4=Plague Scientist's Boots", "=ds=#s12#, #a1#" };
+ { 4, 50697, "", "=q4=Gangrenous Leggings", "=ds=#s11#, #a2#" };
+ { 5, 50696, "", "=q4=Leather of Stitched Scourge Parts", "=ds=#s11#, #a2#" };
+ { 6, 50698, "", "=q4=Horrific Flesh Epaulets", "=ds=#s3#, #a3#" };
+ { 7, 50689, "", "=q4=Carapace of Forgotten Kings", "=ds=#s5#, #a3#" };
+ { 8, 50703, "", "=q4=Unclean Surgical Gloves", "=ds=#s9#, #a3#" };
+ { 9, 50688, "", "=q4=Nerub'ar Stalker's Cord", "=ds=#s10#, #a3#" };
+ { 10, 50701, "", "=q4=Faceplate of the Forgotten", "=ds=#s1#, #a4#" };
+ { 11, 50690, "", "=q4=Fleshrending Gauntlets", "=ds=#s9#, #a4#" };
+ { 12, 50691, "", "=q4=Belt of Broken Bones", "=ds=#s10#, #a4#" };
+ { 16, 50700, "", "=q4=Holiday's Grace", "=ds=#s2#" };
+ { 17, 50693, "", "=q4=Might of Blight", "=ds=#s13#" };
+ { 19, 50692, "", "=q4=Black Bruise", "=ds=#h3#, #w13#" };
+ { 20, 50695, "", "=q4=Distant Land", "=ds=#w9#" };
+ { 22, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 23, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["Rotface"];
+ { 1, 51872, "", "=q4=Ether-Soaked Bracers", "=ds=#s8#, #a1#" };
+ { 2, 51874, "", "=q4=Gloves of Broken Fingers", "=ds=#s9#, #a1#" };
+ { 3, 51870, "", "=q4=Chestguard of the Failed Experiment", "=ds=#s5#, #a2#" };
+ { 4, 51877, "", "=q4=Taldron's Short-Sighted Helm", "=ds=#s1#, #a3#" };
+ { 5, 51873, "", "=q4=Shuffling Shoes", "=ds=#s12#, #a3#" };
+ { 6, 51879, "", "=q4=Flesh-Shaper's Gurney Strap", "=ds=#s10#, #a4#" };
+ { 8, 51871, "", "=q4=Choker of Filthy Diamonds", "=ds=#s2#" };
+ { 9, 51878, "", "=q4=Rotface's Rupturing Ring", "=ds=#s13#" };
+ { 16, 51876, "", "=q4=Abomination Knuckles", "=ds=#h3#, #w13#" };
+ { 17, 51875, "", "=q4=Lockjaw", "=ds=#h3#, #w6#" };
+ { 18, 51881, "", "=q4=Shaft of Glacial Ice", "=ds=#w9#" };
+ { 19, 51880, "", "=q4=Gluth's Fetching Knife", "=ds=#w11#" };
+ };
+ {
+ Name = BabbleBoss["Rotface"];
+ { 1, 50677, "", "=q4=Winding Sheet", "=ds=#s4#" };
+ { 2, 50686, "", "=q4=Death Surgeon's Sleeves", "=ds=#s8#, #a1#" };
+ { 3, 50679, "", "=q4=Helm of the Elder Moon", "=ds=#s1#, #a2#" };
+ { 4, 50675, "", "=q4=Aldriana's Gloves of Secrecy", "=ds=#s9#, #a2#" };
+ { 5, 50673, "", "=q4=Dual-Bladed Pauldrons", "=ds=#s3#, #a3#" };
+ { 6, 50687, "", "=q4=Bloodsunder's Bracers", "=ds=#s8#, #a3#" };
+ { 7, 50674, "", "=q4=Raging Behemoth's Shoulderplates", "=ds=#s3#, #a4#" };
+ { 8, 50681, "", "=q4=Blightborne Warplate", "=ds=#s5#, #a4#" };
+ { 9, 50680, "", "=q4=Rot-Resistant Breastplate", "=ds=#s5#, #a4#" };
+ { 11, 50682, "", "=q4=Bile-Encrusted Medallion", "=ds=#s2#" };
+ { 12, 50678, "", "=q4=Seal of Many Mouths", "=ds=#s13#" };
+ { 13, 50348, "", "=q4=Dislodged Foreign Object", "=ds=#s14#" };
+ { 16, 50685, "", "=q4=Trauma", "=ds=#h3#, #w6#" };
+ { 17, 50676, "", "=q4=Rib Spreader", "=ds=#h1#, #w4#" };
+ { 18, 50684, "", "=q4=Corpse-Impaling Spike", "=ds=#w12#" };
+ { 20, 50231, "", "=q4=Rotface's Acidic Blood", "=ds=#m3#" };
+ { 22, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 23, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["Professor Putricide"];
+ { 1, 51859, "", "=q4=Shoulders of Ruinous Senility", "=ds=#s3#, #a1#" };
+ { 2, 51862, "", "=q4=Cauterized Cord", "=ds=#s10#, #a1#" };
+ { 3, 51866, "", "=q4=Discarded Bag of Entrails", "=ds=#s1#, #a2#" };
+ { 4, 51864, "", "=q4=Shoulderpads of the Morbid Ritual", "=ds=#s3#, #a3#" };
+ { 5, 51860, "", "=q4=Rippling Flesh Kilt", "=ds=#s11#, #a3#" };
+ { 6, 51865, "", "=q4=Scalpel-Sharpening Shoulderguards", "=ds=#s3#, #a4#" };
+ { 7, 51861, "", "=q4=Chestplate of Septic Stitches", "=ds=#s5#, #a4#" };
+ { 9, 51867, "", "=q4=Infected Choker", "=ds=#s2#" };
+ { 10, 51863, "", "=q4=Pendant of Split Veins", "=ds=#s2#" };
+ { 11, 50344, "", "=q4=Unidentifiable Organ", "=ds=#s14#" };
+ { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ { 20, 51868, "", "=q4=Flesh-Carving Scalpel", "=ds=#h1#, #w4#" };
+ { 21, 51869, "", "=q4=The Facelifter", "=ds=#h1#, #w10#" };
+ };
+ {
+ Name = BabbleBoss["Professor Putricide"];
+ { 1, 50707, "", "=q4=Astrylian's Sutured Cinch", "=ds=#s10#, #a2#" };
+ { 2, 50705, "", "=q4=Professor's Bloodied Smock", "=ds=#s10#, #a2#" };
+ { 3, 50706, "", "=q4=Tiny Abomination in a Jar", "=ds=#s14#" };
+ { 4, 50708, "", "=q4=Last Word", "=ds=#h1#, #w6#" };
+ { 5, 50704, "", "=q4=Rigormortis", "=ds=#h1#, #w10#" };
+ { 7, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 8, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ { 16, 52030, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52029, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52028, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ { 20, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 21, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 22, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ };
+ {
+ Name = BabbleBoss["Blood Prince Council"];
+ { 1, 51848, "", "=q4=Heartsick Mender's Cape", "=ds=#s4#" };
+ { 2, 51851, "", "=q4=Bloodsoul Raiment", "=ds=#s5#, #a1#" };
+ { 3, 51850, "", "=q4=Pale Corpse Boots", "=ds=#s12#, #a1#" };
+ { 4, 51856, "", "=q4=Taldaram's Soft Slippers", "=ds=#s12#, #a2#" };
+ { 5, 51853, "", "=q4=Blood-Drinker's Girdle", "=ds=#s10#, #a3#" };
+ { 6, 51847, "", "=q4=Spaulders of the Blood Princes", "=ds=#s3#, #a4#" };
+ { 7, 51854, "", "=q4=Battle-Maiden's Legguards", "=ds=#s11#, #a4#" };
+ { 9, 51849, "", "=q4=Cerise Coiled Ring", "=ds=#s13#" };
+ { 10, 51855, "", "=q4=Thrice Fanged Signet", "=ds=#s13#" };
+ { 16, 51858, "", "=q4=Soulbreaker", "=ds=#h1#, #w10#" };
+ { 17, 51857, "", "=q4=Hersir's Greatspear", "=ds=#w7#" };
+ { 18, 51852, "", "=q4=Wand of Ruby Claret", "=ds=#w12#" };
+ };
+ {
+ Name = BabbleBoss["Blood Prince Council"];
+ { 1, 50718, "", "=q4=Royal Crimson Cloak", "=ds=#s4#" };
+ { 2, 50717, "", "=q4=Sanguine Silk Robes", "=ds=#s5#, #a1#" };
+ { 3, 50722, "", "=q4=San'layn Ritualist Gloves", "=ds=#s9#, #a1#" };
+ { 4, 50713, "", "=q4=Geistlord's Punishment Sack", "=ds=#s1#, #a2#" };
+ { 5, 50715, "", "=q4=Shoulders of Frost-Tipped Thorns", "=ds=#s3#, #a2#" };
+ { 6, 50723, "", "=q4=Mail of Crimson Coins", "=ds=#s5#, #a3#" };
+ { 7, 50711, "", "=q4=Treads of the Wasteland", "=ds=#s12#, #a3#" };
+ { 8, 50712, "", "=q4=Landsoul's Horned Greathelm", "=ds=#s1#, #a4#" };
+ { 9, 50716, "", "=q4=Taldaram's Plated Fists", "=ds=#s9#, #a4#" };
+ { 10, 50721, "", "=q4=Crypt Keeper's Bracers", "=ds=#s8#, #a4#" };
+ { 16, 50720, "", "=q4=Incarnadine Band of Mending", "=ds=#s13#" };
+ { 17, 50714, "", "=q4=Valanar's Other Signet Ring", "=ds=#s13#" };
+ { 18, 50719, "", "=q4=Shadow Silk Spindle", "=ds=#s15#" };
+ { 20, 50710, "", "=q4=Keleseth's Seducer", "=ds=#h4#, #w13#" };
+ { 21, 50603, "", "=q4=Cryptmaker", "=ds=#h2#, #w6#" };
+ { 23, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 24, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["Blood-Queen Lana'thel"];
+ { 1, 51837, "", "=q4=Cowl of Malefic Repose", "=ds=#s1#, #a1#" };
+ { 2, 51839, "", "=q4=Shoulderpads of the Searing Kiss", "=ds=#s3#, #a2#" };
+ { 3, 51841, "", "=q4=Ivory-Inlaid Leggings", "=ds=#s11#, #a2#" };
+ { 4, 51840, "", "=q4=Chestguard of Siphoned Elements", "=ds=#s5#, #a3#" };
+ { 5, 51844, "", "=q4=Throatrender Handguards", "=ds=#s9#, #a4#" };
+ { 6, 51835, "", "=q4=Veincrusher Gauntlets", "=ds=#s9#, #a4#" };
+ { 7, 51836, "", "=q4=Tightening Waistband", "=ds=#s10#, #a4#" };
+ { 9, 51842, "", "=q4=Collar of Haughty Disdain", "=ds=#s2#" };
+ { 10, 51843, "", "=q4=Seal of the Twilight Queen", "=ds=#s13#" };
+ { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ { 20, 51846, "", "=q4=Bloodsipper", "=ds=#h1#, #w4#" };
+ { 21, 51845, "", "=q4=Stakethrower", "=ds=#w5#" };
+ { 22, 51838, "", "=q4=Lana'thel's Bloody Nail", "=ds=#w12#" };
+ };
+ {
+ Name = BabbleBoss["Blood-Queen Lana'thel"];
+ { 1, 50724, "", "=q4=Blood Queen's Crimson Choker", "=ds=#s2#" };
+ { 2, 50728, "", "=q4=Lana'thel's Chain of Flagellation", "=ds=#s2#" };
+ { 3, 50726, "", "=q4=Bauble of True Blood", "=ds=#s14#" };
+ { 4, 50727, "", "=q4=Bloodfall", "=ds=#w7#" };
+ { 5, 50725, "", "=q4=Dying Light", "=ds=#w9#" };
+ { 6, 50729, "", "=q4=Icecrown Glacial Wall", "=ds=#w8#" };
+ { 8, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 9, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ { 16, 52030, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52029, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52028, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ { 20, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 21, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 22, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ };
+ {
+ Name = BabbleBoss["Valithria Dreamwalker"];
+ { 1, 51826, "", "=q4=Lich Wrappings", "=ds=#s4#" };
+ { 2, 51823, "", "=q4=Leggings of the Refracted Mind", "=ds=#s11#, #a1#" };
+ { 3, 51825, "", "=q4=Sister Svalna's Spangenhelm", "=ds=#s1#, #a2#" };
+ { 4, 51830, "", "=q4=Skinned Whelp Shoulders", "=ds=#s3#, #a2#" };
+ { 5, 51827, "", "=q4=Stormbringer Gloves", "=ds=#s9#, #a3#" };
+ { 6, 51829, "", "=q4=Legguards of the Twisted Dream", "=ds=#s11#, #a3#" };
+ { 7, 51824, "", "=q4=Emerald Saint's Spaulders", "=ds=#s3#, #a4#" };
+ { 8, 51832, "", "=q4=Taiga Bindings", "=ds=#s8#, #a4#" };
+ { 9, 51831, "", "=q4=Ironrope Belt of Ymirjar", "=ds=#s10#, #a4#" };
+ { 16, 51833, "", "=q4=Oxheart", "=ds=#h2#, #w6#" };
+ { 17, 51828, "", "=q4=Sister Svalna's Aether Staff", "=ds=#w9#" };
+ { 18, 51834, "", "=q4=Dreamhunter's Carbine", "=ds=#w5#" };
+ };
+ {
+ Name = BabbleBoss["Valithria Dreamwalker"];
+ { 1, 50628, "", "=q4=Frostbinder's Shredded Cape", "=ds=#s4#" };
+ { 2, 50629, "", "=q4=Robe of the Waking Nightmare", "=ds=#s5#, #a1#" };
+ { 3, 50630, "", "=q4=Bracers of Eternal Dreaming", "=ds=#s8#, #a2#" };
+ { 4, 50626, "", "=q4=Snowstorm Helm", "=ds=#s1#, #a3#" };
+ { 5, 50619, "", "=q4=Anub'ar Stalker's Gloves", "=ds=#s9#, #a3#" };
+ { 6, 50620, "", "=q4=Coldwraith Links", "=ds=#s10#, #a4#" };
+ { 7, 50623, "", "=q4=Leggings of Dying Candles", "=ds=#s11#, #a4#" };
+ { 8, 50624, "", "=q4=Scourge Reaver's Legplates", "=ds=#s11#, #a4#" };
+ { 9, 50632, "", "=q4=Boots of the Funeral March", "=ds=#s12#, #a4#" };
+ { 10, 50625, "", "=q4=Grinning Skull Greatboots", "=ds=#s12#, #a4#" };
+ { 16, 50627, "", "=q4=Noose of Malachite", "=ds=#s2#" };
+ { 17, 50622, "", "=q4=Devium's Eternally Cold Ring", "=ds=#s13#" };
+ { 18, 50618, "", "=q4=Frostbrood Sapphire Ring", "=ds=#s13#" };
+ { 20, 50621, "", "=q4=Lungbreaker", "=ds=#h1#, #w4#" };
+ { 21, 50631, "", "=q4=Nightmare Ender", "=ds=#w9#" };
+ { 23, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 24, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["Sindragosa"];
+ { 1, 51813, "", "=q4=Robes of Azure Downfall", "=ds=#s5#, #a1#" };
+ { 2, 51820, "", "=q4=Vambraces of the Frost Wyrm Queen", "=ds=#s8#, #a2#" };
+ { 3, 51814, "", "=q4=Icicle Shapers", "=ds=#s9#, #a2#" };
+ { 4, 51811, "", "=q4=Shoulderguards of Crystalline Bone", "=ds=#s3#, #a3#" };
+ { 5, 51818, "", "=q4=Wyrmwing Treads", "=ds=#s12#, #a3#" };
+ { 6, 51821, "", "=q4=Etched Dragonbone Girdle", "=ds=#s10#, #a4#" };
+ { 7, 51817, "", "=q4=Legplates of Aetheric Strife", "=ds=#s11#, #a4#" };
+ { 8, 51816, "", "=q4=Scourge Fanged Stompers", "=ds=#s12#, #a4#" };
+ { 10, 51822, "", "=q4=Rimetooth Pendant", "=ds=#s2#" };
+ { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ { 20, 51819, "", "=q4=Splintershard", "=ds=#h4#, #w13#" };
+ { 21, 51815, "", "=q4=Bleak Coldarra Carver", "=ds=#h3#, #w4#" };
+ { 22, 51812, "", "=q4=Lost Pavise of the Blue Flight", "=ds=#w8#" };
+ };
+ {
+ Name = BabbleBoss["Sindragosa"];
+ { 1, 50633, "", "=q4=Sindragosa's Cruel Claw", "=ds=#s2#" };
+ { 2, 50636, "", "=q4=Memory of Malygos", "=ds=#s13#" };
+ { 3, 50365, "", "=q4=Phylactery of the Nameless Lich", "=ds=#s14#" };
+ { 4, 50364, "", "=q4=Sindragosa's Flawless Fang", "=ds=#s14#" };
+ { 5, 50635, "", "=q4=Sundial of Eternal Dusk", "=ds=#s15#" };
+ { 7, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 8, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ { 9, 51026, "", "=q1=Crystalline Essence of Sindragosa", "=ds=#m3#" };
+ { 16, 52030, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52029, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52028, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ { 20, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 21, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 22, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ };
+ {
+ Name = BabbleBoss["The Lich King"];
+ { 1, 51941, "", "=q4=Pugius, Fist of Defiance", "=ds=#h3#, #w13#" };
+ { 2, 51939, "", "=q4=Tel'thas, Dagger of the Blood King", "=ds=#h3#, #w4#" };
+ { 3, 51942, "", "=q4=Stormfury, Black Blade of the Betrayer", "=ds=#h1#, #w4#" };
+ { 4, 51947, "", "=q4=Troggbane, Axe of the Frostborne King", "=ds=#h1#, #w1#" };
+ { 5, 51944, "", "=q4=Valius, Gavel of the Lightbringer", "=ds=#h3#, #w6#" };
+ { 6, 51946, "", "=q4=Warmace of Menethil", "=ds=#h2#, #w6#" };
+ { 7, 51943, "", "=q4=Halion, Staff of Forgotten Love", "=ds=#w9#" };
+ { 8, 51945, "", "=q4=Tainted Twig of Nordrassil", "=ds=#w9#" };
+ { 9, 51940, "", "=q4=Windrunner's Heartseeker", "=ds=#w3#" };
+ { 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ { 20, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ };
+ {
+ Name = BabbleBoss["The Lich King"];
+ { 1, 50736, "", "=q4=Heaven's Fall, Kryss of a Thousand Lies", "=ds=#h1#, #w4#" };
+ { 2, 50732, "", "=q4=Bloodsurge, Kel'Thuzad's Blade of Agony", "=ds=#h3#, #w10#" };
+ { 3, 50730, "", "=q4=Glorenzelg, High-Blade of the Silver Hand", "=ds=#h2#, #w10#" };
+ { 4, 50737, "", "=q4=Havoc's Call, Blade of Lordaeron Kings", "=ds=#h1#, #w1#" };
+ { 5, 50734, "", "=q4=Royal Scepter of Terenas II", "=ds=#h3#, #w6#" };
+ { 6, 50738, "", "=q4=Mithrios, Bronzebeard's Legacy", "=ds=#h1#, #w6#" };
+ { 7, 50735, "", "=q4=Oathbinder, Charge of the Ranger-General", "=ds=#w7#" };
+ { 8, 50731, "", "=q4=Archus, Greatstaff of Antonidas", "=ds=#w9#" };
+ { 9, 50733, "", "=q4=Fal'inrush, Defender of Quel'thalas", "=ds=#w3#" };
+ { 10, 50818, "", "=q4=Invincible's Reins", "=ds=#e12#" };
+ { 12, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#" };
+ { 13, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#" };
+ { 16, 52030, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 17, 52029, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 18, 52028, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ { 20, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#" };
+ { 21, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#" };
+ { 22, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#" };
+ };
+};
+
+--------------------
+--- Ruby Sanctum ---
+--------------------
+
+AtlasLoot_Data["Halion"] = {
+ Name = BabbleZone["The Ruby Sanctum"];
+ Type = "WrathRaid";
+ {
+ Name = BabbleBoss["Halion"];
+ { 1, 53115, "", "=q4=Abduction's Cover", "=ds=#s4#" };
+ { 2, 53118, "", "=q4=Misbegotten Belt", "=ds=#s10#, #a1#" };
+ { 3, 53114, "", "=q4=Gloaming Sark", "=ds=#s5#, #a2#" };
+ { 4, 53117, "", "=q4=Changeling Gloves", "=ds=#s9#, #a2#" };
+ { 5, 53113, "", "=q4=Twilight Scale Shoulders", "=ds=#s3#, #a3#" };
+ { 6, 53119, "", "=q4=Boots of Divided Being", "=ds=#s12#, #a3#" };
+ { 7, 53112, "", "=q4=Bracers of the Heir", "=ds=#s8#, #a4#" };
+ { 8, 53121, "", "=q4=Surrogate Belt", "=ds=#s10#, #a4#" };
+ { 9, 53111, "", "=q4=Scion's Treads", "=ds=#s12#, #a4#" };
+ { 16, 53103, "", "=q4=Baltharus' Gift", "=ds=#s2#" };
+ { 17, 53116, "", "=q4=Saviana's Tribute", "=ds=#s13#" };
+ { 18, 53110, "", "=q4=Zarithrian's Offering", "=ds=#s13#" };
+ };
+ {
+ Name = BabbleBoss["Halion"];
+ { 1, 53489, "", "=q4=Cloak of Burning Dusk", "=ds=#s4#" };
+ { 2, 53486, "", "=q4=Bracers of Fiery Night", "=ds=#s8#, #a1#" };
+ { 3, 53134, "", "=q4=Phaseshifter's Bracers", "=ds=#s8#, #a2#" };
+ { 4, 53126, "", "=q4=Umbrage Armbands", "=ds=#s10#, #a2#" };
+ { 5, 53488, "", "=q4=Split Shape Belt", "=ds=#s10#, #a3#" };
+ { 6, 53127, "", "=q4=Returning Footfalls", "=ds=#s12#, #a3#" };
+ { 7, 53125, "", "=q4=Apocalypse's Advance", "=ds=#s12#, #a4#" };
+ { 8, 53487, "", "=q4=Foreshadow Steps", "=ds=#s12#, #a4#" };
+ { 9, 53129, "", "=q4=Treads of Impending Resurrection", "=ds=#s12#, #a4#" };
+ { 16, 53132, "", "=q4=Penumbra Pendant", "=ds=#s2#" };
+ { 17, 53490, "", "=q4=Ring of Phased Regeneration", "=ds=#s13#" };
+ { 18, 53133, "", "=q4=Signet of Twilight", "=ds=#s13#" };
+ { 19, 54572, "", "=q4=Charred Twilight Scale", "=ds=#s14#" };
+ { 20, 54573, "", "=q4=Glowing Twilight Scale", "=ds=#s14#" };
+ { 21, 54571, "", "=q4=Petrified Twilight Scale", "=ds=#s14#" };
+ { 22, 54569, "", "=q4=Sharpened Twilight Scale", "=ds=#s14#" };
+ };
+ {
+ Name = BabbleBoss["Halion"];
+ { 1, 54556, "", "=q4=Abduction's Cover", "=ds=#s4#" };
+ { 2, 54562, "", "=q4=Misbegotten Belt", "=ds=#s10#, #a1#" };
+ { 3, 54561, "", "=q4=Gloaming Sark", "=ds=#s5#, #a2#" };
+ { 4, 54560, "", "=q4=Changeling Gloves", "=ds=#s9#, #a2#" };
+ { 5, 54566, "", "=q4=Twilight Scale Shoulders", "=ds=#s3#, #a3#" };
+ { 6, 54558, "", "=q4=Boots of Divided Being", "=ds=#s12#, #a3#" };
+ { 7, 54559, "", "=q4=Bracers of the Heir", "=ds=#s8#, #a4#" };
+ { 8, 54565, "", "=q4=Surrogate Belt", "=ds=#s10#, #a4#" };
+ { 9, 54564, "", "=q4=Scion's Treads", "=ds=#s12#, #a4#" };
+ { 16, 54557, "", "=q4=Baltharus' Gift", "=ds=#s2#" };
+ { 17, 54563, "", "=q4=Saviana's Tribute", "=ds=#s13#" };
+ { 18, 54567, "", "=q4=Zarithrian's Offering", "=ds=#s13#" };
+ };
+ {
+ Name = BabbleBoss["Halion"];
+ { 1, 54583, "", "=q4=Cloak of Burning Dusk", "=ds=#s4#" };
+ { 2, 54582, "", "=q4=Bracers of Fiery Night", "=ds=#s8#, #a1#" };
+ { 3, 54584, "", "=q4=Phaseshifter's Bracers", "=ds=#s8#, #a2#" };
+ { 4, 54580, "", "=q4=Umbrage Armbands", "=ds=#s10#, #a2#" };
+ { 5, 54587, "", "=q4=Split Shape Belt", "=ds=#s10#, #a3#" };
+ { 6, 54577, "", "=q4=Returning Footfalls", "=ds=#s12#, #a3#" };
+ { 7, 54578, "", "=q4=Apocalypse's Advance", "=ds=#s12#, #a4#" };
+ { 8, 54586, "", "=q4=Foreshadow Steps", "=ds=#s12#, #a4#" };
+ { 9, 54579, "", "=q4=Treads of Impending Resurrection", "=ds=#s12#, #a4#" };
+ { 16, 54581, "", "=q4=Penumbra Pendant", "=ds=#s2#" };
+ { 17, 54585, "", "=q4=Ring of Phased Regeneration", "=ds=#s13#" };
+ { 18, 54576, "", "=q4=Signet of Twilight", "=ds=#s13#" };
+ { 19, 54588, "", "=q4=Charred Twilight Scale", "=ds=#s14#" };
+ { 20, 54589, "", "=q4=Glowing Twilight Scale", "=ds=#s14#" };
+ { 21, 54591, "", "=q4=Petrified Twilight Scale", "=ds=#s14#" };
+ { 22, 54590, "", "=q4=Sharpened Twilight Scale", "=ds=#s14#" };
+ };
+};
+----------------
+--- Factions ---
+----------------
+
+-------------------------
+--- Alliance Vanguard ---
+-------------------------
+
+AtlasLoot_Data["AllianceVanguard"] = {
+ Name = BabbleFaction["Alliance Vanguard"];
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 38459, "", "=q3=Orb of the Eastern Kingdoms", "=ds=#s15#" };
+ { 2, 38465, "", "=q3=Vanguard Soldier's Dagger", "=ds=#h1#, #w4#" };
+ { 3, 38455, "", "=q3=Hammer of the Alliance Vanguard", "=ds=#h1#, #w6#" };
+ { 4, 38463, "", "=q3=Lordaeron's Resolve", "=ds=#w8#" };
+ { 5, 38453, "", "=q3=Shield of the Lion-hearted", "=ds=#w8#" };
+ { 6, 38457, "", "=q3=Sawed-off Hand Cannon", "=ds=#w5#" };
+ { 7, 38464, "", "=q3=Gnomish Magician's Quill", "=ds=#w12#" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 44503, "", "=q4=Schematic: Mekgineer's Chopper", "=ds=#p5# (450)" };
+ { 2, 44937, "", "=q3=Plans: Titanium Plating", "=ds=#p2# (450)" };
+ { 3, 44701, "", "=q7=Arcanum of the Savage Gladiator", "=ds=#s1# #e17#" };
+ };
+};
+----------------------
+--- Argent Crusade ---
+----------------------
+
+AtlasLoot_Data["ArgentCrusade"] = {
+ Name = BabbleFaction["Argent Crusade"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 43154, "", "=q1=Tabard of the Argent Crusade", "=ds=#s7#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 44216, "", "=q3=Cloak of Holy Extermination", "=ds=#s4#" };
+ { 2, 44240, "", "=q3=Special Issue Legplates", "=ds=#s11#, #a4#" };
+ { 3, 44239, "", "=q3=Standard Issue Legguards", "=ds=#s11#, #a4#" };
+ { 4, 44139, "", "=q7=Arcanum of the Fleeing Shadow", "=ds=#s1# #e17#" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 44248, "", "=q3=Battle Mender's Helm", "=ds=#s1#, #a3#" };
+ { 2, 44247, "", "=q3=Fang-Deflecting Faceguard", "=ds=#s1#, #a4#" };
+ { 3, 44244, "", "=q3=Argent Skeleton Crusher", "=ds=#h2#, #w6#" };
+ { 4, 44245, "", "=q3=Zombie Sweeper Shotgun", "=ds=#w5#" };
+ { 5, 44214, "", "=q3=Purifying Torch", "=ds=#w12#" };
+ { 6, 41726, "", "=q3=Design: Guardian's Twilight Opal", "=ds=#p12# (390)" };
+ { 7, 44150, "", "=q3=Arcanum of the Stalwart Protector", "=ds=#s1# #e17#" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 44297, "", "=q4=Boots of the Neverending Path", "=ds=#s12#, #a2#" };
+ { 2, 44295, "", "=q4=Polished Regimental Hauberk", "=ds=#s5#, #a3#" };
+ { 3, 44296, "", "=q4=Helm of Purified Thoughts", "=ds=#s1#, #a4#" };
+ { 4, 44283, "", "=q4=Signet of Hopeful Light", "=ds=#s13#" };
+ { 5, 42187, "", "=q1=Pattern: Brilliant Spellthread", "=ds=#p8# (430)" };
+ };
+};
+
+-------------------------
+--- Frenzyheart Tribe ---
+-------------------------
+
+AtlasLoot_Data["FrenzyheartTribe"] = {
+ Name = BabbleFaction["Frenzyheart Tribe"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 41561, "", "=q2=Design: Reckless Huge Citrine", "=ds=#p12# 350" };
+ { 2, 44064, "", "=q1=Nepeta Leaf", "=ds=" };
+ { 3, 44072, "", "=q1=Roasted Mystery Beast", "=ds=#e3#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 44719, "", "=q3=Frenzyheart Brew", "=ds=", "" };
+ { 2, 39671, "", "=q1=Resurgent Healing Potion", "=ds=#e2#", "" };
+ { 3, 40067, "", "=q1=Icy Mana Potion", "=ds=#e2#", "" };
+ { 4, 40087, "", "=q1=Powerful Rejuvenation Potion", "=ds=#e2#", "" };
+ { 5, 44716, "", "=q1=Mysterious Fermented Liquid", "=ds=#e4#", "" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 44116, "", "=q3=Muddied Crimson Gloves", "=ds=#s9#, #a1#" };
+ { 2, 44117, "", "=q3=Azure Strappy Pants", "=ds=#s11#, #a2#" };
+ { 3, 44122, "", "=q3=Scavenged Feathery Leggings", "=ds=#s11#, #a3#" };
+ { 4, 44120, "", "=q3=Giant-Sized Gauntlets", "=ds=#s9#, #a4#" };
+ { 5, 44121, "", "=q3=Sparkly Shiny Gloves", "=ds=#s9#, #a4#" };
+ { 6, 44123, "", "=q3=Discarded Titanium Legplates", "=ds=#s11#, #a4#" };
+ { 7, 44118, "", "=q3=Stolen Vrykul Harpoon", "=ds=#w11#" };
+ { 8, 41723, "", "=q3=Design: Jagged Forest Emerald", "=ds=#p12# 390" };
+ { 9, 44717, "", "=q1=Disgusting Jar", "=ds=" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 44073, "", "=q1=Frenzyheart Insignia of Fury", "=ds=#s14#" };
+ };
+};
+
+----------------------------
+--- The Horde Expedition ---
+----------------------------
+
+AtlasLoot_Data["HordeExpedition"] = {
+ Name = BabbleFaction["Horde Expedition"];
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 38458, "", "=q3=Darkspear Orb", "=ds=#s15#" };
+ { 2, 38461, "", "=q3=Warsong Shanker", "=ds=#h1#, #w4#" };
+ { 3, 38454, "", "=q3=Warsong Punisher", "=ds=#h1#, #w6#" };
+ { 4, 38452, "", "=q3=Bulwark of the Warchief", "=ds=#w8#" };
+ { 5, 38462, "", "=q3=Warsong Stormshield", "=ds=#w8#" };
+ { 6, 38456, "", "=q3=Sin'dorei Recurve Bow", "=ds=#w2#" };
+ { 7, 38460, "", "=q3=Charged Wand of the Cleft", "=ds=#w12#" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 44502, "", "=q4=Schematic: Mechano-hog", "=ds=#p5# (450)" };
+ { 2, 44938, "", "=q3=Plans: Titanium Plating", "=ds=#p2# (450)" };
+ { 3, 44702, "", "=q7=Arcanum of the Savage Gladiator", "=ds=#s1# #e17#" };
+ };
+};
+
+-----------------
+--- Kirin Tor ---
+-----------------
+
+AtlasLoot_Data["KirinTor"] = {
+ Name = BabbleFaction["Kirin Tor"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 43157, "", "=q1=Tabard of the Kirin Tor", "=ds=#s7#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 44167, "", "=q3=Shroud of Dedicated Research", "=ds=#s4#" };
+ { 2, 44170, "", "=q3=Helm of the Majestic Stag", "=ds=#s1#, #a2#" };
+ { 3, 44171, "", "=q3=Spaulders of Grounded Lightning", "=ds=#s3#, #a3#" };
+ { 4, 44166, "", "=q3=Lightblade Rivener", "=ds=#h1#, #w4#" };
+ { 5, 44141, "", "=q3=Arcanum of the Flame's Soul", "=ds=#s1# #e17#" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 44179, "", "=q3=Mind-Expanding Leggings", "=ds=#s11#, #a2#" };
+ { 2, 44176, "", "=q3=Girdle of the Warrior Magi", "=ds=#s10#, #a4#" };
+ { 3, 44173, "", "=q3=Flameheart Spell Scalpel", "=ds=#h3#, #w4#" };
+ { 4, 44174, "", "=q3=Stave of Shrouded Mysteries", "=ds=#w9#" };
+ { 5, 44159, "", "=q7=Arcanum of Burning Mysteries", "=ds=#s1# #e17#" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 44180, "", "=q4=Robes of Crackling Flame", "=ds=#s5#, #a1#" };
+ { 2, 44181, "", "=q4=Ghostflicker Waistband", "=ds=#s10#, #a2#" };
+ { 3, 44182, "", "=q4=Boots of Twinkling Stars", "=ds=#s12#, #a3#" };
+ { 4, 44183, "", "=q4=Fireproven Gauntlets", "=ds=#s9#, #a4#" };
+ { 5, 41718, "", "=q3=Design: Runed Scarlet Ruby", "=ds=#p12# (390)" };
+ { 6, 42188, "", "=q1=Pattern: Sapphire Spellthread", "=ds=#p8# (430)" };
+ };
+};
+
+---------------------------------
+--- Knights of the Ebon Blade ---
+---------------------------------
+
+AtlasLoot_Data["KnightsoftheEbonBlade"] = {
+ Name = BabbleFaction["Knights of the Ebon Blade"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 41562, "", "=q2=Design: Deadly Huge Citrine", "=ds=#p12# (350)" };
+ { 2, 43155, "", "=q1=Tabard of the Ebon Blade", "=ds=#s7#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 44242, "", "=q3=Dark Soldier Cape", "=ds=#s4#" };
+ { 2, 44243, "", "=q3=Toxin-Tempered Sabatons", "=ds=#s12#, #a4#" };
+ { 3, 44241, "", "=q3=Unholy Persuader", "=ds=#h4#, #w13#" };
+ { 4, 44512, "", "=q3=Pattern: Nerubian Reinforced Quiver", "=ds=#p7# (415)" };
+ { 5, 44138, "", "=q3=Arcanum of Toxic Warding", "=ds=#s1# #e17#" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 44256, "", "=q3=Sterile Flesh-Handling Gloves", "=ds=#s9#, #a1#" };
+ { 2, 44258, "", "=q3=Wound-Binder's Wristguards", "=ds=#s8#, #a2#" };
+ { 3, 44257, "", "=q3=Spaulders of the Black Arrow", "=ds=#s3#, #a3#" };
+ { 4, 44250, "", "=q3=Reaper of Dark Souls", "=ds=#h1#, #w10#" };
+ { 5, 44249, "", "=q3=Runeblade of Demonstrable Power", "=ds=#h2#, #w10#" };
+ { 6, 41721, "", "=q3=Design: Wicked Monarch Topaz", "=ds=#p12# (390)" };
+ { 7, 44149, "", "=q7=Arcanum of Torment", "=ds=#s1# #e17#" };
+ { 8, 42183, "", "=q1=Pattern: Abyssal Bag", "=ds=#p8# (435)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 44302, "", "=q4=Belt of Dark Mending", "=ds=#s10#, #a1#" };
+ { 2, 44303, "", "=q4=Darkheart Chestguard", "=ds=#s5#, #a2#" };
+ { 3, 44305, "", "=q4=Kilt of Dark Mercy", "=ds=#s11#, #a3#" };
+ { 4, 44306, "", "=q4=Death-Inured Sabatons", "=ds=#s12#, #a4#" };
+ { 5, 41725, "", "=q3=Design: Glowing Twilight Opal", "=ds=#p12# (390)" };
+ };
+};
+
+-------------------
+--- The Kalu'ak ---
+-------------------
+
+AtlasLoot_Data["TheKaluak"] = {
+ Name = BabbleFaction["The Kalu'ak"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 41568, "", "=q2=Design: Seer's Dark Jade", "=ds=#p12# (350)" };
+ { 2, 44049, "", "=q1=Freshly-Speared Emperor Salmon", "=ds=#e3#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 44061, "", "=q3=Pigment-Stained Robes", "=ds=#s5#, #a1#" };
+ { 2, 44062, "", "=q3=Turtle-Minders Robe", "=ds=#s5#, #a1#" };
+ { 3, 44054, "", "=q3=Whale-Skin Breastplate", "=ds=#s5#, #a2#" };
+ { 4, 44055, "", "=q3=Whale-Skin Vest", "=ds=#s5#, #a2#" };
+ { 5, 44059, "", "=q3=Cuttlefish Scale Breastplate", "=ds=#s5#, #a3#" };
+ { 6, 44060, "", "=q3=Cuttlefish Tooth Ringmail", "=ds=#s5#, #a3#" };
+ { 7, 44057, "", "=q3=Ivory-Reinforced Chestguard", "=ds=#s5#, #a4#" };
+ { 8, 44058, "", "=q3=Whalebone Carapace", "=ds=#s5#, #a4#" };
+ { 9, 44511, "", "=q3=Pattern: Dragonscale Ammo Pouch", "=ds=#p7# (415)" };
+ { 10, 41574, "", "=q2=Design: Defender's Shadow Crystal", "=ds=#p12# (350)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 44051, "", "=q3=Traditional Flensing Knife", "=ds=#h1#, #w4#" };
+ { 2, 44052, "", "=q3=Totemic Purification Rod", "=ds=#h3#, #w6#" };
+ { 3, 44053, "", "=q3=Whale-Stick Harpoon", "=ds=#w7#" };
+ { 4, 44509, "", "=q3=Pattern: Trapper's Traveling Pack", "=ds=#p7# (415)" };
+ { 5, 45774, "", "=q1=Pattern: Emerald Bag", "=ds=#p8# (435)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 44050, "", "=q4=Mastercraft Kalu'ak Fishing Pole", "=ds=#e20#" };
+ { 2, 44723, "", "=q3=Nurtured Penguin Egg", "=ds=#e13#" };
+ };
+};
+
+-------------------
+--- The Oracles ---
+-------------------
+
+AtlasLoot_Data["TheOracles"] = {
+ Name = BabbleFaction["The Oracles"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 41567, "", "=q2=Design: Vivid Dark Jade", "=ds=#p12# (350)" };
+ { 2, 44065, "", "=q1=Oracle Secret Solution", "=ds=#e2#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 44071, "", "=q1=Slow-Roasted Eel", "=ds=#e3#" };
+ { 2, 0, "INV_Egg_02", "=q6=" .. AL["Cracked Egg"], "" };
+ { 3, 44707, "", "=q4=Reins of the Green Proto-Drake", "=ds=#e12#", "" };
+ { 4, 39898, "", "=q1=Cobra Hatchling", "=ds=#e13#", "" };
+ { 5, 44721, "", "=q1=Proto-Drake Whelp", "=ds=#e13#", "" };
+ { 6, 39896, "", "=q1=Tickbird Hatchling", "=ds=#e13#", "" };
+ { 7, 39899, "", "=q1=White Tickbird Hatchling", "=ds=#e13#", "" };
+ { 8, 44722, "", "=q1=Aged Yolk", "=ds=#e3#", "" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 44104, "", "=q3=Fishy Cinch", "=ds=#s10#, #a1#" };
+ { 2, 44106, "", "=q3=Glitterscale Wrap", "=ds=#s10#, #a2#" };
+ { 3, 44110, "", "=q3=Sharkjaw Cap", "=ds=#s1#, #a3#" };
+ { 4, 44109, "", "=q3=Toothslice Helm", "=ds=#s1#, #a3#" };
+ { 5, 44112, "", "=q3=Glimmershell Shoulder Protectors", "=ds=#s3#, #a4#" };
+ { 6, 44111, "", "=q3=Gold Star Spaulders", "=ds=#s3#, #a4#" };
+ { 7, 44108, "", "=q3=Shinygem Rod", "=ds=#w12#" };
+ { 8, 41724, "", "=q3=Design: Sundered Forest Emerald", "=ds=#p12# (390)" };
+ { 9, 39878, "", "=q1=Mysterious Egg", "=ds=" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 44074, "", "=q4=Oracle Talisman of Ablution", "=ds=#s14#" };
+
+ };
+};
+
+-------------------------
+--- The Sons of Hodir ---
+-------------------------
+
+AtlasLoot_Data["TheSonsofHodir"] = {
+ Name = BabbleFaction["The Sons of Hodir"];
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 44190, "", "=q3=Spaulders of Frozen Knives", "=ds=#s3#, #a2#" };
+ { 2, 44189, "", "=q3=Giant Ring Belt", "=ds=#s10#, #a3#" };
+ { 3, 44510, "", "=q3=Pattern: Mammoth Mining Bag", "=ds=#p7# (415)" };
+ { 4, 44137, "", "=q3=Arcanum of the Frosty Soul", "=ds=#s1# #e17#" };
+ { 5, 44131, "", "=q3=Lesser Inscription of the Axe", "=ds=#s3# #e17#" };
+ { 6, 44130, "", "=q3=Lesser Inscription of the Crag", "=ds=#s3# #e17#" };
+ { 7, 44132, "", "=q3=Lesser Inscription of the Pinnacle", "=ds=#s3# #e17#" };
+ { 8, 44129, "", "=q3=Lesser Inscription of the Storm ", "=ds=#s3# #e17#" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 43958, "", "=q4=Reins of the Ice Mammoth", "=ds=#e12# =ec1=#m7#" };
+ { 2, 44080, "", "=q4=Reins of the Ice Mammoth", "=ds=#e12# =ec1=#m6#" };
+ { 3, 44194, "", "=q3=Giant-Friend Kilt", "=ds=#s11#, #a2#" };
+ { 4, 44195, "", "=q3=Spaulders of the Giant Lords", "=ds=#s3#, #a4#" };
+ { 5, 44193, "", "=q3=Broken Stalactite", "=ds=#h1#, #w4#" };
+ { 6, 44192, "", "=q3=Stalactite Chopper", "=ds=#h1#, #w1#" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 43961, "", "=q4=Reins of the Grand Ice Mammoth", "=ds=#e12# =ec1=#m7#" };
+ { 2, 44086, "", "=q4=Reins of the Grand Ice Mammoth", "=ds=#e12# =ec1=#m6#" };
+ { 3, 44133, "", "=q7=Greater Inscription of the Axe", "=ds=#s3# #e17#" };
+ { 4, 44134, "", "=q7=Greater Inscription of the Crag", "=ds=#s3# #e17#" };
+ { 5, 44136, "", "=q7=Greater Inscription of the Pinnacle", "=ds=#s3# #e17#" };
+ { 6, 44135, "", "=q7=Greater Inscription of the Storm ", "=ds=#s3# #e17#" };
+ { 7, 41720, "", "=q3=Design: Smooth Autumn's Glow", "=ds=#p12# (390)" };
+ { 8, 42184, "", "=q1=Pattern: Glacial Bag", "=ds=#p8# (445)" };
+ };
+};
+
+-------------------------
+--- Winterfin Retreat ---
+-------------------------
+
+AtlasLoot_Data["WinterfinRetreat"] = {
+ Name = BabbleFaction["Winterfin Retreat"];
+ {
+ Name = BabbleFaction["Winterfin Retreat"];
+ { 1, 36784, "", "=q3=Siren's Tear", "=ds=#e7#", "100 #winterfinclam#" };
+ { 2, 37462, "", "=q2=Sea King's Crown", "=ds=#s1#, #a1#", "30 #winterfinclam#" };
+ { 3, 37463, "", "=q2=Winterfin Patch of Honor", "=ds=#s1#, #a2#", "30 #winterfinclam#" };
+ { 4, 37461, "", "=q2=Tidebreaker Trident", "=ds=#w7#", "50 #winterfinclam#" };
+ { 5, 36783, "", "=q2=Northsea Pearl", "=ds=#e7#", "30 #winterfinclam#" };
+ { 6, 37464, "", "=q1=Winterfin Horn of Distress", "=ds=#e22#", "5 #winterfinclam#" };
+ { 7, 37449, "", "=q1=Breath of Murloc", "=ds=#e2#", "5 #winterfinclam#" };
+ { 8, 38351, "", "=q1=Murliver Oil", "=ds=#e2#", "2 #winterfinclam#" };
+ { 9, 38350, "", "=q1=Winterfin \"Depth Charge\"", "=ds=#e4#", "1 #winterfinclam#" };
+ { 10, 34597, "", "=q1=Winterfin Clam", "=ds=#m17#" };
+ };
+};
+
+---------------------------
+--- The Wyrmrest Accord ---
+---------------------------
+
+AtlasLoot_Data["TheWyrmrestAccord"] = {
+ Name = BabbleFaction["The Wyrmrest Accord"];
+ {
+ Name = BabbleFaction["Friendly"];
+ { 1, 43156, "", "=q1=Tabard of the Wyrmrest Accord", "=ds=#s7#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 44188, "", "=q3=Cloak of Peaceful Resolutions", "=ds=#s4#" };
+ { 2, 44196, "", "=q3=Sash of the Wizened Wyrm", "=ds=#s10#, #a1#" };
+ { 3, 44197, "", "=q3=Bracers of Accorded Courtesy", "=ds=#s8#, #a4#" };
+ { 4, 44187, "", "=q3=Fang of Truth", "=ds=#h1#, #w10#" };
+ { 5, 44140, "", "=q3=Arcanum of the Eclipsed Moon", "=ds=#s1# #e17#" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 44200, "", "=q3=Ancestral Sinew Wristguards", "=ds=#s8#, #a1#" };
+ { 2, 44198, "", "=q3=Breastplate of the Solemn Council", "=ds=#s5#, #a4#" };
+ { 3, 44201, "", "=q3=Sabatons of Draconic Vigor", "=ds=#s12#, #a4#" };
+ { 4, 44199, "", "=q3=Gavel of the Brewing Storm", "=ds=#h3#, #w6#" };
+ { 5, 44152, "", "=q7=Arcanum of Blissful Mending", "=ds=#s1# #e17#" };
+ { 6, 42185, "", "=q1=Pattern: Mysterious Bag", "=ds=#p8# (440)" };
+ };
+ {
+ Name = BabbleFaction["Exalted"];
+ { 1, 44202, "", "=q4=Sandals of Crimson Fury", "=ds=#s12#, #a1#" };
+ { 2, 44203, "", "=q4=Dragonfriend Bracers", "=ds=#s8#, #a2#" };
+ { 3, 44204, "", "=q4=Grips of Fierce Pronouncements", "=ds=#s9#, #a3#" };
+ { 4, 44205, "", "=q4=Legplates of Bloody Reprisal", "=ds=#s11#, #a4#" };
+ { 5, 43955, "", "=q4=Reins of the Red Drake", "=ds=#e12#" };
+ { 6, 41722, "", "=q3=Design: Glimmering Monarch Topaz", "=ds=#p12# (390)" };
+ };
+};
+
+-------------------------
+--- The Ashen Verdict ---
+-------------------------
+
+AtlasLoot_Data["AshenVerdict"] = {
+ Name = BabbleFaction["The Ashen Verdict"];
+ {
+ Name = "Rings";
+ { 1, 50375, "", "=q4=Ashen Band of Courage", "=ds=#s13#, =q1=#r2#" };
+ { 2, 50388, "", "=q4=Ashen Band of Greater Courage", "=ds=#s13#, =q1=#r3#" };
+ { 3, 50403, "", "=q4=Ashen Band of Unmatched Courage", "=ds=#s13#, =q1=#r4#" };
+ { 4, 50404, "", "=q4=Ashen Band of Endless Courage", "=ds=#s13#, =q1=#r5#" };
+ { 6, 50377, "", "=q4=Ashen Band of Destruction", "=ds=#s13#, =q1=#r2#" };
+ { 7, 50384, "", "=q4=Ashen Band of Greater Destruction", "=ds=#s13#, =q1=#r3#" };
+ { 8, 50397, "", "=q4=Ashen Band of Unmatched Destruction", "=ds=#s13#, =q1=#r4#" };
+ { 9, 50398, "", "=q4=Ashen Band of Endless Destruction", "=ds=#s13#, =q1=#r5#" };
+ { 11, 52569, "", "=q4=Ashen Band of Might", "=ds=#s13#, =q1=#r2#" };
+ { 12, 52570, "", "=q4=Ashen Band of Greater Might", "=ds=#s13#, =q1=#r3#" };
+ { 13, 52571, "", "=q4=Ashen Band of Unmatched Might", "=ds=#s13#, =q1=#r4#" };
+ { 14, 52572, "", "=q4=Ashen Band of Endless Might", "=ds=#s13#, =q1=#r5#" };
+ { 16, 50376, "", "=q4=Ashen Band of Vengeance", "=ds=#s13#, =q1=#r2#" };
+ { 17, 50387, "", "=q4=Ashen Band of Greater Vengeance", "=ds=#s13#, =q1=#r3#" };
+ { 18, 50401, "", "=q4=Ashen Band of Unmatched Vengeance", "=ds=#s13#, =q1=#r4#" };
+ { 19, 50402, "", "=q4=Ashen Band of Endless Vengeance", "=ds=#s13#, =q1=#r5#" };
+ { 21, 50378, "", "=q4=Ashen Band of Wisdom", "=ds=#s13#, =q1=#r2#" };
+ { 22, 50386, "", "=q4=Ashen Band of Greater Wisdom", "=ds=#s13#, =q1=#r3#" };
+ { 23, 50399, "", "=q4=Ashen Band of Unmatched Wisdom", "=ds=#s13#, =q1=#r4#" };
+ { 24, 50400, "", "=q4=Ashen Band of Endless Wisdom", "=ds=#s13#, =q1=#r5#" };
+ };
+ {
+ Name = BabbleFaction["Honored"];
+ { 1, 49974, "", "=q4=Plans: Boots of Kingly Upheaval", "=ds=#p2# (450)" };
+ { 2, 49972, "", "=q4=Plans: Hellfrozen Bonegrinders", "=ds=#p2# (450)" };
+ { 3, 49970, "", "=q4=Plans: Protectors of Life", "=ds=#p2# (450)" };
+ { 4, 49958, "", "=q4=Pattern: Blessed Cenarion Boots", "=ds=#p7# (450)" };
+ { 5, 49963, "", "=q4=Pattern: Earthsoul Boots", "=ds=#p7# (450)" };
+ { 6, 49961, "", "=q4=Pattern: Footpads of Impending Death", "=ds=#p7# (450)" };
+ { 7, 49966, "", "=q4=Pattern: Rock-Steady Treads", "=ds=#p7# (450)" };
+ { 8, 49954, "", "=q4=Pattern: Deathfrost Boots", "=ds=#p8# (450)" };
+ { 9, 49956, "", "=q4=Pattern: Sandals of Consecration", "=ds=#p8# (450)" };
+ { 10, 52023, "", "=q4=Plans: Evil Arrow", "=ds=#p17# (450)" };
+ { 11, 52022, "", "=q4=Plans: Shatter Rounds", "=ds=#p18# (450)" };
+ };
+ {
+ Name = BabbleFaction["Revered"];
+ { 1, 49971, "", "=q4=Plans: Legplates of Painful Death", "=ds=#p2# (450)" };
+ { 2, 49973, "", "=q4=Plans: Pillars of Might", "=ds=#p2# (450)" };
+ { 3, 49969, "", "=q4=Plans: Puresteel Legplates", "=ds=#p2# (450)" };
+ { 4, 49959, "", "=q4=Pattern: Bladeborn Leggings", "=ds=#p7# (450)" };
+ { 5, 49965, "", "=q4=Pattern: Draconic Bonesplinter Legguards", "=ds=#p7# (450)" };
+ { 6, 49957, "", "=q4=Pattern: Legwraps of Unleashed Nature", "=ds=#p7# (450)" };
+ { 7, 49962, "", "=q4=Pattern: Lightning-Infused Leggings", "=ds=#p7# (450)" };
+ { 8, 49953, "", "=q4=Pattern: Leggings of Woven Death", "=ds=#p8# (450)" };
+ { 9, 49955, "", "=q4=Pattern: Lightweave Leggings", "=ds=#p8# (450)" };
+ };
+};
+
+-----------
+--- PvP ---
+-----------
+
+------------------
+--- Armor Sets ---
+------------------
+
+AtlasLoot_Data["ArenaDeathKnightWRATH"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"];
+ {
+ Name = "Page 1";
+ { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#arenas10#", "" };
+ { 2, 51415, "", "=q4=Wrathful Gladiator's Dreadplate Helm", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51418, "", "=q4=Wrathful Gladiator's Dreadplate Shoulders", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51413, "", "=q4=Wrathful Gladiator's Dreadplate Chestpiece", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51414, "", "=q4=Wrathful Gladiator's Dreadplate Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51416, "", "=q4=Wrathful Gladiator's Dreadplate Legguards", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#arenas10#", "" };
+ { 9, 40830, "", "=q4=Relentless Gladiator's Dreadplate Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 40871, "", "=q4=Relentless Gladiator's Dreadplate Shoulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 40791, "", "=q4=Relentless Gladiator's Dreadplate Chestpiece", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 40811, "", "=q4=Relentless Gladiator's Dreadplate Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 40851, "", "=q4=Relentless Gladiator's Dreadplate Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#arenas10#", "" };
+ { 17, 40827, "", "=q4=Furious Gladiator's Dreadplate Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 40868, "", "=q4=Furious Gladiator's Dreadplate Shoulders", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 40787, "", "=q4=Furious Gladiator's Dreadplate Chestpiece", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 40809, "", "=q4=Furious Gladiator's Dreadplate Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 40848, "", "=q4=Furious Gladiator's Dreadplate Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Spell_Deathknight_DeathStrike", "=q6=#arenas10#", "" };
+ { 24, 40824, "", "=q4=Deadly Gladiator's Dreadplate Helm", "=ds=", "58 #eofconquest#" };
+ { 25, 40863, "", "=q4=Deadly Gladiator's Dreadplate Shoulders", "=ds=", "46 #eofconquest#" };
+ { 26, 40784, "", "=q4=Deadly Gladiator's Dreadplate Chestpiece", "=ds=", "58 #eofconquest#" };
+ { 27, 40806, "", "=q4=Deadly Gladiator's Dreadplate Gauntlets", "=ds=", "46 #eofconquest#" };
+ { 28, 40845, "", "=q4=Deadly Gladiator's Dreadplate Legguards", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = "Page 2";
+ { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#arenas10#", "" };
+ { 2, 40820, "", "=q4=Hateful Gladiator's Dreadplate Helm", "=ds=", "45 #eofvalor#" };
+ { 3, 40860, "", "=q4=Hateful Gladiator's Dreadplate Shoulders", "=ds=", "30 #eofvalor#" };
+ { 4, 40781, "", "=q4=Hateful Gladiator's Dreadplate Chestpiece", "=ds=", "45 #eofvalor#" };
+ { 5, 40803, "", "=q4=Hateful Gladiator's Dreadplate Gauntlets", "=ds=", "30 #eofvalor#" };
+ { 6, 40841, "", "=q4=Hateful Gladiator's Dreadplate Legguards", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#arenas10#", "" };
+ { 9, 40817, "", "=q3=Savage Gladiator's Dreadplate Helm", "=ds=", "45 #eofheroism#" };
+ { 10, 40857, "", "=q3=Savage Gladiator's Dreadplate Shoulders", "=ds=", "30 #eofheroism#" };
+ { 11, 40779, "", "=q3=Savage Gladiator's Dreadplate Chestpiece", "=ds=", "45 #eofheroism#" };
+ { 12, 40799, "", "=q3=Savage Gladiator's Dreadplate Gauntlets", "=ds=", "30 #eofheroism#" };
+ { 13, 40837, "", "=q3=Savage Gladiator's Dreadplate Legguards", "=ds=", "45 #eofheroism#" };
+ };
+};
+AtlasLoot_Data["ArenaDruidWRATH"] = {
+ Name = AL["Druid"];
+ {
+ Name = AL["Balance"] .. " Page 1";
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "" };
+ { 2, 51435, "", "=q4=Wrathful Gladiator's Wyrmhide Helm", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51438, "", "=q4=Wrathful Gladiator's Wyrmhide Spaulders", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51433, "", "=q4=Wrathful Gladiator's Wyrmhide Robes", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51434, "", "=q4=Wrathful Gladiator's Wyrmhide Gloves", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51436, "", "=q4=Wrathful Gladiator's Wyrmhide Legguards", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "" };
+ { 9, 41328, "", "=q4=Relentless Gladiator's Wyrmhide Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 41282, "", "=q4=Relentless Gladiator's Wyrmhide Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 41317, "", "=q4=Relentless Gladiator's Wyrmhide Robes", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 41294, "", "=q4=Relentless Gladiator's Wyrmhide Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 41305, "", "=q4=Relentless Gladiator's Wyrmhide Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "" };
+ { 17, 41327, "", "=q4=Furious Gladiator's Wyrmhide Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 41281, "", "=q4=Furious Gladiator's Wyrmhide Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 41316, "", "=q4=Furious Gladiator's Wyrmhide Robes", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 41293, "", "=q4=Furious Gladiator's Wyrmhide Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 41304, "", "=q4=Furious Gladiator's Wyrmhide Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "" };
+ { 24, 41326, "", "=q4=Deadly Gladiator's Wyrmhide Helm", "=ds=", "58 #eofconquest#" };
+ { 25, 41280, "", "=q4=Deadly Gladiator's Wyrmhide Spaulders", "=ds=", "46 #eofconquest#" };
+ { 26, 41315, "", "=q4=Deadly Gladiator's Wyrmhide Robes", "=ds=", "58 #eofconquest#" };
+ { 27, 41292, "", "=q4=Deadly Gladiator's Wyrmhide Gloves", "=ds=", "46 #eofconquest#" };
+ { 28, 41303, "", "=q4=Deadly Gladiator's Wyrmhide Legguards", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = AL["Balance"] .. " Page 2";
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "" };
+ { 2, 41325, "", "=q4=Hateful Gladiator's Wyrmhide Helm", "=ds=", "45 #eofvalor#" };
+ { 3, 41279, "", "=q4=Hateful Gladiator's Wyrmhide Spaulders", "=ds=", "30 #eofvalor#" };
+ { 4, 41314, "", "=q4=Hateful Gladiator's Wyrmhide Robes", "=ds=", "45 #eofvalor#" };
+ { 5, 41291, "", "=q4=Hateful Gladiator's Wyrmhide Gloves", "=ds=", "30 #eofvalor#" };
+ { 6, 41302, "", "=q4=Hateful Gladiator's Wyrmhide Legguards", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "" };
+ { 9, 41324, "", "=q3=Savage Gladiator's Wyrmhide Helm", "=ds=", "45 #eofheroism#" };
+ { 10, 41278, "", "=q3=Savage Gladiator's Wyrmhide Spaulders", "=ds=", "30 #eofheroism#" };
+ { 11, 41313, "", "=q3=Savage Gladiator's Wyrmhide Robes", "=ds=", "45 #eofheroism#" };
+ { 12, 41290, "", "=q3=Savage Gladiator's Wyrmhide Gloves", "=ds=", "30 #eofheroism#" };
+ { 13, 41301, "", "=q3=Savage Gladiator's Wyrmhide Legguards", "=ds=", "45 #eofheroism#" };
+ };
+ {
+ Name = AL["Feral"] .. " Page 1";
+ { 1, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "" };
+ { 2, 51427, "", "=q4=Wrathful Gladiator's Dragonhide Helm", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51430, "", "=q4=Wrathful Gladiator's Dragonhide Spaulders", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51425, "", "=q4=Wrathful Gladiator's Dragonhide Robes", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51426, "", "=q4=Wrathful Gladiator's Dragonhide Gloves", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51428, "", "=q4=Wrathful Gladiator's Dragonhide Legguards", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "" };
+ { 9, 41679, "", "=q4=Relentless Gladiator's Dragonhide Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 41716, "", "=q4=Relentless Gladiator's Dragonhide Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 41662, "", "=q4=Relentless Gladiator's Dragonhide Robes", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 41774, "", "=q4=Relentless Gladiator's Dragonhide Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 41668, "", "=q4=Relentless Gladiator's Dragonhide Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "" };
+ { 17, 41678, "", "=q4=Furious Gladiator's Dragonhide Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 41715, "", "=q4=Furious Gladiator's Dragonhide Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 41661, "", "=q4=Furious Gladiator's Dragonhide Robes", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 41773, "", "=q4=Furious Gladiator's Dragonhide Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 41667, "", "=q4=Furious Gladiator's Dragonhide Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "" };
+ { 24, 41677, "", "=q4=Deadly Gladiator's Dragonhide Helm", "=ds=", "58 #eofconquest#" };
+ { 25, 41714, "", "=q4=Deadly Gladiator's Dragonhide Spaulders", "=ds=", "46 #eofconquest#" };
+ { 26, 41660, "", "=q4=Deadly Gladiator's Dragonhide Robes", "=ds=", "58 #eofconquest#" };
+ { 27, 41772, "", "=q4=Deadly Gladiator's Dragonhide Gloves", "=ds=", "46 #eofconquest#" };
+ { 28, 41666, "", "=q4=Deadly Gladiator's Dragonhide Legguards", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = AL["Feral"] .. " Page 2";
+ { 1, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "" };
+ { 2, 41676, "", "=q4=Hateful Gladiator's Dragonhide Helm", "=ds=", "45 #eofvalor#" };
+ { 3, 41713, "", "=q4=Hateful Gladiator's Dragonhide Spaulders", "=ds=", "30 #eofvalor#" };
+ { 4, 41659, "", "=q4=Hateful Gladiator's Dragonhide Robes", "=ds=", "45 #eofvalor#" };
+ { 5, 41771, "", "=q4=Hateful Gladiator's Dragonhide Gloves", "=ds=", "30 #eofvalor#" };
+ { 6, 41665, "", "=q4=Hateful Gladiator's Dragonhide Legguards", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "" };
+ { 9, 41675, "", "=q3=Savage Gladiator's Dragonhide Helm", "=ds=", "45 #eofheroism#" };
+ { 10, 41712, "", "=q3=Savage Gladiator's Dragonhide Spaulders", "=ds=", "30 #eofheroism#" };
+ { 11, 41658, "", "=q3=Savage Gladiator's Dragonhide Robes", "=ds=", "45 #eofheroism#" };
+ { 12, 41770, "", "=q3=Savage Gladiator's Dragonhide Gloves", "=ds=", "30 #eofheroism#" };
+ { 13, 41664, "", "=q3=Savage Gladiator's Dragonhide Legguards", "=ds=", "45 #eofheroism#" };
+ };
+ {
+ Name = AL["Restoration"] .. " Page 1";
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "" };
+ { 2, 51421, "", "=q4=Wrathful Gladiator's Kodohide Helm", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51424, "", "=q4=Wrathful Gladiator's Kodohide Spaulders", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51419, "", "=q4=Wrathful Gladiator's Kodohide Robes", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51420, "", "=q4=Wrathful Gladiator's Kodohide Gloves", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51422, "", "=q4=Wrathful Gladiator's Kodohide Legguards", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "" };
+ { 9, 41322, "", "=q4=Relentless Gladiator's Kodohide Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 41276, "", "=q4=Relentless Gladiator's Kodohide Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 41311, "", "=q4=Relentless Gladiator's Kodohide Robes", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 41288, "", "=q4=Relentless Gladiator's Kodohide Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 41299, "", "=q4=Relentless Gladiator's Kodohide Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "" };
+ { 17, 41321, "", "=q4=Furious Gladiator's Kodohide Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 41275, "", "=q4=Furious Gladiator's Kodohide Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 41310, "", "=q4=Furious Gladiator's Kodohide Robes", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 41287, "", "=q4=Furious Gladiator's Kodohide Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 41298, "", "=q4=Furious Gladiator's Kodohide Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "" };
+ { 24, 41320, "", "=q4=Deadly Gladiator's Kodohide Helm", "=ds=", "58 #eofconquest#" };
+ { 25, 41274, "", "=q4=Deadly Gladiator's Kodohide Spaulders", "=ds=", "46 #eofconquest#" };
+ { 26, 41309, "", "=q4=Deadly Gladiator's Kodohide Robes", "=ds=", "58 #eofconquest#" };
+ { 27, 41286, "", "=q4=Deadly Gladiator's Kodohide Gloves", "=ds=", "46 #eofconquest#" };
+ { 28, 41297, "", "=q4=Deadly Gladiator's Kodohide Legguards", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = AL["Restoration"] .. " Page 2";
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "" };
+ { 2, 41319, "", "=q4=Hateful Gladiator's Kodohide Helm", "=ds=", "45 #eofvalor#" };
+ { 3, 41273, "", "=q4=Hateful Gladiator's Kodohide Spaulders", "=ds=", "30 #eofvalor#" };
+ { 4, 41308, "", "=q4=Hateful Gladiator's Kodohide Robes", "=ds=", "45 #eofvalor#" };
+ { 5, 41284, "", "=q4=Hateful Gladiator's Kodohide Gloves", "=ds=", "30 #eofvalor#" };
+ { 6, 41296, "", "=q4=Hateful Gladiator's Kodohide Legguards", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "" };
+ { 9, 41269, "", "=q3=Savage Gladiator's Kodohide Helm", "=ds=", "45 #eofheroism#" };
+ { 10, 41271, "", "=q3=Savage Gladiator's Kodohide Spaulders", "=ds=", "30 #eofheroism#" };
+ { 11, 41272, "", "=q3=Savage Gladiator's Kodohide Robes", "=ds=", "45 #eofheroism#" };
+ { 12, 41268, "", "=q3=Savage Gladiator's Kodohide Gloves", "=ds=", "30 #eofheroism#" };
+ { 13, 41270, "", "=q3=Savage Gladiator's Kodohide Legguards", "=ds=", "45 #eofheroism#" };
+ };
+};
+
+AtlasLoot_Data["ArenaHunterWRATH"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ {
+ Name = "Page 1";
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "" };
+ { 2, 51460, "", "=q4=Wrathful Gladiator's Chain Helm", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51462, "", "=q4=Wrathful Gladiator's Chain Spaulders", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51458, "", "=q4=Wrathful Gladiator's Chain Armor", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51459, "", "=q4=Wrathful Gladiator's Chain Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51461, "", "=q4=Wrathful Gladiator's Chain Leggings", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "" };
+ { 9, 41158, "", "=q4=Relentless Gladiator's Chain Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 41218, "", "=q4=Relentless Gladiator's Chain Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 41088, "", "=q4=Relentless Gladiator's Chain Armor", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 41144, "", "=q4=Relentless Gladiator's Chain Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 41206, "", "=q4=Relentless Gladiator's Chain Leggings", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "" };
+ { 17, 41157, "", "=q4=Furious Gladiator's Chain Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 41217, "", "=q4=Furious Gladiator's Chain Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 41087, "", "=q4=Furious Gladiator's Chain Armor", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 41143, "", "=q4=Furious Gladiator's Chain Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 41205, "", "=q4=Furious Gladiator's Chain Leggings", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "" };
+ { 24, 41156, "", "=q4=Deadly Gladiator's Chain Helm", "=ds=", "58 #eofconquest#" };
+ { 25, 41216, "", "=q4=Deadly Gladiator's Chain Spaulders", "=ds=", "46 #eofconquest#" };
+ { 26, 41086, "", "=q4=Deadly Gladiator's Chain Armor", "=ds=", "58 #eofconquest#" };
+ { 27, 41142, "", "=q4=Deadly Gladiator's Chain Gauntlets", "=ds=", "46 #eofconquest#" };
+ { 28, 41204, "", "=q4=Deadly Gladiator's Chain Leggings", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = "Page 2";
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "" };
+ { 2, 41155, "", "=q4=Hateful Gladiator's Chain Helm", "=ds=", "45 #eofvalor#" };
+ { 3, 41215, "", "=q4=Hateful Gladiator's Chain Spaulders", "=ds=", "30 #eofvalor#" };
+ { 4, 41085, "", "=q4=Hateful Gladiator's Chain Armor", "=ds=", "45 #eofvalor#" };
+ { 5, 41141, "", "=q4=Hateful Gladiator's Chain Gauntlets", "=ds=", "30 #eofvalor#" };
+ { 6, 41203, "", "=q4=Hateful Gladiator's Chain Leggings", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "" };
+ { 9, 41154, "", "=q3=Savage Gladiator's Chain Helm", "=ds=", "45 #eofheroism#" };
+ { 10, 41214, "", "=q3=Savage Gladiator's Chain Spaulders", "=ds=", "30 #eofheroism#" };
+ { 11, 41084, "", "=q3=Savage Gladiator's Chain Armor", "=ds=", "45 #eofheroism#" };
+ { 12, 41140, "", "=q3=Savage Gladiator's Chain Gauntlets", "=ds=", "30 #eofheroism#" };
+ { 13, 41202, "", "=q3=Savage Gladiator's Chain Leggings", "=ds=", "45 #eofheroism#" };
+ };
+};
+
+AtlasLoot_Data["ArenaMageWRATH"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ {
+ Name = "Page 1";
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "" };
+ { 2, 51465, "", "=q4=Wrathful Gladiator's Silk Cowl", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51467, "", "=q4=Wrathful Gladiator's Silk Amice", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51463, "", "=q4=Wrathful Gladiator's Silk Raiment", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51464, "", "=q4=Wrathful Gladiator's Silk Handguards", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51466, "", "=q4=Wrathful Gladiator's Silk Trousers", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "" };
+ { 9, 41947, "", "=q4=Relentless Gladiator's Silk Cowl", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 41966, "", "=q4=Relentless Gladiator's Silk Amice", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 41954, "", "=q4=Relentless Gladiator's Silk Raiment", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 41972, "", "=q4=Relentless Gladiator's Silk Handguards", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 41960, "", "=q4=Relentless Gladiator's Silk Trousers", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "" };
+ { 17, 41946, "", "=q4=Furious Gladiator's Silk Cowl", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 41965, "", "=q4=Furious Gladiator's Silk Amice", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 41953, "", "=q4=Furious Gladiator's Silk Raiment", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 41971, "", "=q4=Furious Gladiator's Silk Handguards", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 41959, "", "=q4=Furious Gladiator's Silk Trousers", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "" };
+ { 24, 41945, "", "=q4=Deadly Gladiator's Silk Cowl", "=ds=", "58 #eofconquest#" };
+ { 25, 41964, "", "=q4=Deadly Gladiator's Silk Amice", "=ds=", "46 #eofconquest#" };
+ { 26, 41951, "", "=q4=Deadly Gladiator's Silk Raiment", "=ds=", "58 #eofconquest#" };
+ { 27, 41970, "", "=q4=Deadly Gladiator's Silk Handguards", "=ds=", "46 #eofconquest#" };
+ { 28, 41958, "", "=q4=Deadly Gladiator's Silk Trousers", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = "Page 2";
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "" };
+ { 2, 41944, "", "=q4=Hateful Gladiator's Silk Cowl", "=ds=", "45 #eofvalor#" };
+ { 3, 41963, "", "=q4=Hateful Gladiator's Silk Amice", "=ds=", "30 #eofvalor#" };
+ { 4, 41950, "", "=q4=Hateful Gladiator's Silk Raiment", "=ds=", "45 #eofvalor#" };
+ { 5, 41969, "", "=q4=Hateful Gladiator's Silk Handguards", "=ds=", "30 #eofvalor#" };
+ { 6, 41957, "", "=q4=Hateful Gladiator's Silk Trousers", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "" };
+ { 9, 41943, "", "=q3=Savage Gladiator's Silk Cowl", "=ds=", "45 #eofheroism#" };
+ { 10, 41962, "", "=q3=Savage Gladiator's Silk Amice", "=ds=", "30 #eofheroism#" };
+ { 11, 41949, "", "=q3=Savage Gladiator's Silk Raiment", "=ds=", "45 #eofheroism#" };
+ { 12, 41968, "", "=q3=Savage Gladiator's Silk Handguards", "=ds=", "30 #eofheroism#" };
+ { 13, 41956, "", "=q3=Savage Gladiator's Silk", "=ds=", "45 #eofheroism#" };
+ };
+};
+
+AtlasLoot_Data["ArenaPaladinWRATH"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
+ {
+ Name = AL["Retribution"] .. "Page 1";
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "" };
+ { 2, 51476, "", "=q4=Wrathful Gladiator's Scaled Helm", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51479, "", "=q4=Wrathful Gladiator's Scaled Shoulders", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51474, "", "=q4=Wrathful Gladiator's Scaled Chestpiece", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51475, "", "=q4=Wrathful Gladiator's Scaled Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51477, "", "=q4=Wrathful Gladiator's Scaled Legguards", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "" };
+ { 9, 40831, "", "=q4=Relentless Gladiator's Scaled Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 40872, "", "=q4=Relentless Gladiator's Scaled Shoulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 40792, "", "=q4=Relentless Gladiator's Scaled Chestpiece", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 40812, "", "=q4=Relentless Gladiator's Scaled Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 40852, "", "=q4=Relentless Gladiator's Scaled Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "" };
+ { 17, 40828, "", "=q4=Furious Gladiator's Scaled Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 40869, "", "=q4=Furious Gladiator's Scaled Shoulders", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 40788, "", "=q4=Furious Gladiator's Scaled Chestpiece", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 40808, "", "=q4=Furious Gladiator's Scaled Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 40849, "", "=q4=Furious Gladiator's Scaled Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "" };
+ { 24, 40825, "", "=q4=Deadly Gladiator's Scaled Helm", "=ds=", "58 #eofconquest#" };
+ { 25, 40864, "", "=q4=Deadly Gladiator's Scaled Shoulders", "=ds=", "46 #eofconquest#" };
+ { 26, 40785, "", "=q4=Deadly Gladiator's Scaled Chestpiece", "=ds=", "58 #eofconquest#" };
+ { 27, 40805, "", "=q4=Deadly Gladiator's Scaled Gauntlets", "=ds=", "46 #eofconquest#" };
+ { 28, 40846, "", "=q4=Deadly Gladiator's Scaled Legguards", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = AL["Retribution"] .. "Page 2";
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "" };
+ { 2, 40821, "", "=q4=Hateful Gladiator's Scaled Helm", "=ds=", "45 #eofvalor#" };
+ { 3, 40861, "", "=q4=Hateful Gladiator's Scaled Shoulders", "=ds=", "30 #eofvalor#" };
+ { 4, 40782, "", "=q4=Hateful Gladiator's Scaled Chestpiece", "=ds=", "45 #eofvalor#" };
+ { 5, 40802, "", "=q4=Hateful Gladiator's Scaled Gauntlets", "=ds=", "30 #eofvalor#" };
+ { 6, 40842, "", "=q4=Hateful Gladiator's Scaled Legguards", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "" };
+ { 9, 40818, "", "=q3=Savage Gladiator's Scaled Helm", "=ds=", "45 #eofheroism#" };
+ { 10, 40858, "", "=q3=Savage Gladiator's Scaled Shoulders", "=ds=", "30 #eofheroism#" };
+ { 11, 40780, "", "=q3=Savage Gladiator's Scaled Chestpiece", "=ds=", "45 #eofheroism#" };
+ { 12, 40798, "", "=q3=Savage Gladiator's Scaled Gauntlets", "=ds=", "30 #eofheroism#" };
+ { 13, 40838, "", "=q3=Savage Gladiator's Scaled Legguards", "=ds=", "45 #eofheroism#" };
+ };
+ {
+ Name = AL["Holy"] .. "Page 1";
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "" };
+ { 2, 51470, "", "=q4=Wrathful Gladiator's Ornamented Headcover", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51473, "", "=q4=Wrathful Gladiator's Ornamented Spaulders", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51468, "", "=q4=Wrathful Gladiator's Ornamented Chestguard", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51469, "", "=q4=Wrathful Gladiator's Ornamented Gloves", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51471, "", "=q4=Wrathful Gladiator's Ornamented Legplates", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "" };
+ { 9, 40934, "", "=q4=Relentless Gladiator's Ornamented Headcover", "=ds=",
+ "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 40964, "", "=q4=Relentless Gladiator's Ornamented Spaulders", "=ds=",
+ "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 40910, "", "=q4=Relentless Gladiator's Ornamented Chestguard", "=ds=",
+ "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 40928, "", "=q4=Relentless Gladiator's Ornamented Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 40940, "", "=q4=Relentless Gladiator's Ornamented Legplates", "=ds=",
+ "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "" };
+ { 17, 40933, "", "=q4=Furious Gladiator's Ornamented Headcover", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 40963, "", "=q4=Furious Gladiator's Ornamented Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 40907, "", "=q4=Furious Gladiator's Ornamented Chestguard", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 40927, "", "=q4=Furious Gladiator's Ornamented Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 40939, "", "=q4=Furious Gladiator's Ornamented Legplates", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "" };
+ { 24, 40932, "", "=q4=Deadly Gladiator's Ornamented Headcover", "=ds=", "58 #eofconquest#" };
+ { 25, 40962, "", "=q4=Deadly Gladiator's Ornamented Spaulders", "=ds=", "46 #eofconquest#" };
+ { 26, 40905, "", "=q4=Deadly Gladiator's Ornamented Chestguard", "=ds=", "58 #eofconquest#" };
+ { 27, 40926, "", "=q4=Deadly Gladiator's Ornamented Gloves", "=ds=", "46 #eofconquest#" };
+ { 28, 40938, "", "=q4=Deadly Gladiator's Ornamented Legplates", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = AL["Holy"] .. "Page 2";
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "" };
+ { 2, 40931, "", "=q4=Hateful Gladiator's Ornamented Headcover", "=ds=", "45 #eofvalor#" };
+ { 3, 40961, "", "=q4=Hateful Gladiator's Ornamented Spaulders", "=ds=", "30 #eofvalor#" };
+ { 4, 40904, "", "=q4=Hateful Gladiator's Ornamented Gloves", "=ds=", "45 #eofvalor#" };
+ { 5, 40925, "", "=q4=Hateful Gladiator's Ornamented Chestguard", "=ds=", "30 #eofvalor#" };
+ { 6, 40937, "", "=q4=Hateful Gladiator's Ornamented Legplates", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "" };
+ { 9, 40930, "", "=q3=Savage Gladiator's Ornamented Headcover", "=ds=", "45 #eofheroism#" };
+ { 10, 40960, "", "=q3=Savage Gladiator's Ornamented Spaulders", "=ds=", "30 #eofheroism#" };
+ { 11, 40898, "", "=q3=Savage Gladiator's Ornamented Chestguard", "=ds=", "45 #eofheroism#" };
+ { 12, 40918, "", "=q3=Savage Gladiator's Ornamented Gloves", "=ds=", "30 #eofheroism#" };
+ { 13, 40936, "", "=q3=Savage Gladiator's Ornamented Legplates", "=ds=", "45 #eofheroism#" };
+ };
+};
+
+AtlasLoot_Data["ArenaPriestWRATH"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
+ {
+ Name = AL["Shadow"] .. "Page 1";
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "" };
+ { 2, 51489, "", "=q4=Wrathful Gladiator's Satin Hood", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51491, "", "=q4=Wrathful Gladiator's Satin Mantle", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51487, "", "=q4=Wrathful Gladiator's Satin Robe", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51488, "", "=q4=Wrathful Gladiator's Satin Gloves", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51490, "", "=q4=Wrathful Gladiator's Satin Leggings", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "" };
+ { 9, 41916, "", "=q4=Relentless Gladiator's Satin Hood", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 41935, "", "=q4=Relentless Gladiator's Satin Mantle", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 41922, "", "=q4=Relentless Gladiator's Satin Robe", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 41941, "", "=q4=Relentless Gladiator's Satin Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 41928, "", "=q4=Relentless Gladiator's Satin Leggings", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "" };
+ { 17, 41915, "", "=q4=Furious Gladiator's Satin Hood", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 41934, "", "=q4=Furious Gladiator's Satin Mantle", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 41921, "", "=q4=Furious Gladiator's Satin Robe", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 41940, "", "=q4=Furious Gladiator's Satin Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 41927, "", "=q4=Furious Gladiator's Satin Leggings", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "" };
+ { 24, 41914, "", "=q4=Deadly Gladiator's Satin Hood", "=ds=", "58 #eofconquest#" };
+ { 25, 41933, "", "=q4=Deadly Gladiator's Satin Mantle", "=ds=", "46 #eofconquest#" };
+ { 26, 41920, "", "=q4=Deadly Gladiator's Satin Robe", "=ds=", "58 #eofconquest#" };
+ { 27, 41939, "", "=q4=Deadly Gladiator's Satin Gloves", "=ds=", "46 #eofconquest#" };
+ { 28, 41926, "", "=q4=Deadly Gladiator's Satin Leggings", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = AL["Shadow"] .. "Page 2";
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "" };
+ { 2, 41913, "", "=q4=Hateful Gladiator's Satin Hood", "=ds=", "45 #eofvalor#" };
+ { 3, 41931, "", "=q4=Hateful Gladiator's Satin Mantle", "=ds=", "30 #eofvalor#" };
+ { 4, 41919, "", "=q4=Hateful Gladiator's Satin Robe", "=ds=", "45 #eofvalor#" };
+ { 5, 41938, "", "=q4=Hateful Gladiator's Satin Gloves", "=ds=", "30 #eofvalor#" };
+ { 6, 41925, "", "=q4=Hateful Gladiator's Satin Leggings", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "" };
+ { 9, 41912, "", "=q3=Savage Gladiator's Satin Hood", "=ds=", "45 #eofheroism#" };
+ { 10, 41930, "", "=q3=Savage Gladiator's Satin Mantle", "=ds=", "30 #eofheroism#" };
+ { 11, 41918, "", "=q3=Savage Gladiator's Satin Robe", "=ds=", "45 #eofheroism#" };
+ { 12, 41937, "", "=q3=Savage Gladiator's Satin Gloves", "=ds=", "30 #eofheroism#" };
+ { 13, 41924, "", "=q3=Savage Gladiator's Satin Leggings", "=ds=", "45 #eofheroism#" };
+ };
+ {
+ Name = AL["Holy"] .. "Page 1";
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "" };
+ { 2, 51484, "", "=q4=Wrathful Gladiator's Mooncloth Hood", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51486, "", "=q4=Wrathful Gladiator's Mooncloth Mantle", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51482, "", "=q4=Wrathful Gladiator's Mooncloth Robe", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51483, "", "=q4=Wrathful Gladiator's Mooncloth Gloves", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51485, "", "=q4=Wrathful Gladiator's Mooncloth Leggings", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "" };
+ { 9, 41855, "", "=q4=Relentless Gladiator's Mooncloth Hood", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 41870, "", "=q4=Relentless Gladiator's Mooncloth Mantle", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 41860, "", "=q4=Relentless Gladiator's Mooncloth Robe", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 41875, "", "=q4=Relentless Gladiator's Mooncloth Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 41865, "", "=q4=Relentless Gladiator's Mooncloth Leggings", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "" };
+ { 17, 41854, "", "=q4=Furious Gladiator's Mooncloth Hood", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 41869, "", "=q4=Furious Gladiator's Mooncloth Mantle", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 41859, "", "=q4=Furious Gladiator's Mooncloth Robe", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 41874, "", "=q4=Furious Gladiator's Mooncloth Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 41864, "", "=q4=Furious Gladiator's Mooncloth Leggings", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "" };
+ { 24, 41853, "", "=q4=Deadly Gladiator's Mooncloth Hood", "=ds=", "58 #eofconquest#" };
+ { 25, 41868, "", "=q4=Deadly Gladiator's Mooncloth Mantle", "=ds=", "46 #eofconquest#" };
+ { 26, 41858, "", "=q4=Deadly Gladiator's Mooncloth Robe", "=ds=", "58 #eofconquest#" };
+ { 27, 41873, "", "=q4=Deadly Gladiator's Mooncloth Gloves", "=ds=", "46 #eofconquest#" };
+ { 28, 41863, "", "=q4=Deadly Gladiator's Mooncloth Leggings", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = AL["Holy"] .. "Page 2";
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "" };
+ { 2, 41852, "", "=q4=Hateful Gladiator's Mooncloth Hood", "=ds=", "45 #eofvalor#" };
+ { 3, 41867, "", "=q4=Hateful Gladiator's Mooncloth Mantle", "=ds=", "30 #eofvalor#" };
+ { 4, 41857, "", "=q4=Hateful Gladiator's Mooncloth Robe", "=ds=", "45 #eofvalor#" };
+ { 5, 41872, "", "=q4=Hateful Gladiator's Mooncloth Gloves", "=ds=", "30 #eofvalor#" };
+ { 6, 41862, "", "=q4=Hateful Gladiator's Mooncloth Leggings", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "" };
+ { 9, 41848, "", "=q3=Savage Gladiator's Mooncloth Hood", "=ds=", "45 #eofheroism#" };
+ { 10, 41850, "", "=q3=Savage Gladiator's Mooncloth Mantle", "=ds=", "30 #eofheroism#" };
+ { 11, 41851, "", "=q3=Savage Gladiator's Mooncloth Robe", "=ds=", "45 #eofheroism#" };
+ { 12, 41847, "", "=q3=Savage Gladiator's Mooncloth Gloves", "=ds=", "30 #eofheroism#" };
+ { 13, 41849, "", "=q3=Savage Gladiator's Mooncloth Leggings", "=ds=", "45 #eofheroism#" };
+ };
+};
+
+
+AtlasLoot_Data["ArenaRogueWRATH"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ {
+ Name = "Page 1";
+ { 1, 0, "Ability_BackStab", "=q6=#arenas6#", "" };
+ { 2, 51494, "", "=q4=Wrathful Gladiator's Leather Helm", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51496, "", "=q4=Wrathful Gladiator's Leather Spaulders", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51492, "", "=q4=Wrathful Gladiator's Leather Tunic", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51493, "", "=q4=Wrathful Gladiator's Leather Gloves", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51495, "", "=q4=Wrathful Gladiator's Leather Legguards", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Ability_BackStab", "=q6=#arenas6#", "" };
+ { 9, 41673, "", "=q4=Relentless Gladiator's Leather Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 41684, "", "=q4=Relentless Gladiator's Leather Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 41651, "", "=q4=Relentless Gladiator's Leather Tunic", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 41768, "", "=q4=Relentless Gladiator's Leather Gloves", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 41656, "", "=q4=Relentless Gladiator's Leather Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Ability_BackStab", "=q6=#arenas6#", "" };
+ { 17, 41672, "", "=q4=Furious Gladiator's Leather Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 41683, "", "=q4=Furious Gladiator's Leather Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 41650, "", "=q4=Furious Gladiator's Leather Tunic", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 41767, "", "=q4=Furious Gladiator's Leather Gloves", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 41655, "", "=q4=Furious Gladiator's Leather Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Ability_BackStab", "=q6=#arenas6#", "" };
+ { 24, 41671, "", "=q4=Deadly Gladiator's Leather Helm", "=ds=", "58 #eofconquest#" };
+ { 25, 41682, "", "=q4=Deadly Gladiator's Leather Spaulders", "=ds=", "46 #eofconquest#" };
+ { 26, 41649, "", "=q4=Deadly Gladiator's Leather Tunic", "=ds=", "58 #eofconquest#" };
+ { 27, 41766, "", "=q4=Deadly Gladiator's Leather Gloves", "=ds=", "46 #eofconquest#" };
+ { 28, 41654, "", "=q4=Deadly Gladiator's Leather Legguards", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = "Page 2";
+ { 1, 0, "Ability_BackStab", "=q6=#arenas6#", "" };
+ { 2, 41670, "", "=q4=Hateful Gladiator's Leather Helm", "=ds=", "45 #eofvalor#" };
+ { 3, 41681, "", "=q4=Hateful Gladiator's Leather Spaulders", "=ds=", "30 #eofvalor#" };
+ { 4, 41648, "", "=q4=Hateful Gladiator's Leather Tunic", "=ds=", "45 #eofvalor#" };
+ { 5, 41765, "", "=q4=Hateful Gladiator's Leather Gloves", "=ds=", "30 #eofvalor#" };
+ { 6, 41653, "", "=q4=Hateful Gladiator's Leather Legguards", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Ability_BackStab", "=q6=#arenas6#", "" };
+ { 9, 41644, "", "=q3=Savage Gladiator's Leather Helm", "=ds=", "45 #eofheroism#" };
+ { 10, 41646, "", "=q3=Savage Gladiator's Leather Spaulders", "=ds=", "30 #eofheroism#" };
+ { 11, 41647, "", "=q3=Savage Gladiator's Leather Tunic", "=ds=", "45 #eofheroism#" };
+ { 12, 41643, "", "=q3=Savage Gladiator's Leather Gloves", "=ds=", "30 #eofheroism#" };
+ { 13, 41645, "", "=q3=Savage Gladiator's Leather Legguards", "=ds=", "45 #eofheroism#" };
+ };
+};
+
+AtlasLoot_Data["ArenaShamanWRATH"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
+ {
+ Name = AL["Elemental"] .. "Page 1";
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "" };
+ { 2, 51511, "", "=q4=Wrathful Gladiator's Mail Helm", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51514, "", "=q4=Wrathful Gladiator's Mail Spaulders", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51509, "", "=q4=Wrathful Gladiator's Mail Armor", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51510, "", "=q4=Wrathful Gladiator's Mail Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51512, "", "=q4=Wrathful Gladiator's Mail Leggings", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "" };
+ { 9, 41020, "", "=q4=Relentless Gladiator's Mail Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 41045, "", "=q4=Relentless Gladiator's Mail Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 40995, "", "=q4=Relentless Gladiator's Mail Armor", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 41008, "", "=q4=Relentless Gladiator's Mail Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 41034, "", "=q4=Relentless Gladiator's Mail Leggings", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "" };
+ { 17, 41019, "", "=q4=Furious Gladiator's Mail Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 41044, "", "=q4=Furious Gladiator's Mail Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 40993, "", "=q4=Furious Gladiator's Mail Armor", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 41007, "", "=q4=Furious Gladiator's Mail Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 41033, "", "=q4=Furious Gladiator's Mail Leggings", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "" };
+ { 24, 41018, "", "=q4=Deadly Gladiator's Mail Helm", "=ds=", "58 #eofconquest#" };
+ { 25, 41043, "", "=q4=Deadly Gladiator's Mail Spaulders", "=ds=", "46 #eofconquest#" };
+ { 26, 40991, "", "=q4=Deadly Gladiator's Mail Armor", "=ds=", "58 #eofconquest#" };
+ { 27, 41006, "", "=q4=Deadly Gladiator's Mail Gauntlets", "=ds=", "46 #eofconquest#" };
+ { 28, 41032, "", "=q4=Deadly Gladiator's Mail Leggings", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = AL["Elemental"] .. "Page 2";
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "" };
+ { 2, 41017, "", "=q4=Hateful Gladiator's Mail Helm", "=ds=", "45 #eofvalor#" };
+ { 3, 41042, "", "=q4=Hateful Gladiator's Mail Spaulders", "=ds=", "30 #eofvalor#" };
+ { 4, 40989, "", "=q4=Hateful Gladiator's Mail Armor", "=ds=", "45 #eofvalor#" };
+ { 5, 41005, "", "=q4=Hateful Gladiator's Mail Gauntlets", "=ds=", "30 #eofvalor#" };
+ { 6, 41031, "", "=q4=Hateful Gladiator's Mail Leggings", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "" };
+ { 9, 41016, "", "=q3=Savage Gladiator's Mail Helm", "=ds=", "45 #eofheroism#" };
+ { 10, 41041, "", "=q3=Savage Gladiator's Mail Spaulders", "=ds=", "30 #eofheroism#" };
+ { 11, 40987, "", "=q3=Savage Gladiator's Mail Armor", "=ds=", "45 #eofheroism#" };
+ { 12, 41004, "", "=q3=Savage Gladiator's Mail Gauntlets", "=ds=", "30 #eofheroism#" };
+ { 13, 41030, "", "=q3=Savage Gladiator's Mail Leggings", "=ds=", "45 #eofheroism#" };
+ };
+ {
+ Name = AL["Enhancement"] .. "Page 1";
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "" };
+ { 2, 51505, "", "=q4=Wrathful Gladiator's Linked Helm", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51508, "", "=q4=Wrathful Gladiator's Linked Spaulders", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51503, "", "=q4=Wrathful Gladiator's Linked Armor", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51504, "", "=q4=Wrathful Gladiator's Linked Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51506, "", "=q4=Wrathful Gladiator's Linked Leggings", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "" };
+ { 9, 41152, "", "=q4=Relentless Gladiator's Linked Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 41212, "", "=q4=Relentless Gladiator's Linked Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 41082, "", "=q4=Relentless Gladiator's Linked Armor", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 41138, "", "=q4=Relentless Gladiator's Linked Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 41200, "", "=q4=Relentless Gladiator's Linked Leggings", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "" };
+ { 17, 41151, "", "=q4=Furious Gladiator's Linked Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 41211, "", "=q4=Furious Gladiator's Linked Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 41081, "", "=q4=Furious Gladiator's Linked Armor", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 41137, "", "=q4=Furious Gladiator's Linked Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 41199, "", "=q4=Furious Gladiator's Linked Leggings", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "" };
+ { 24, 41150, "", "=q4=Deadly Gladiator's Linked Helm", "=ds=", "58 #eofconquest#" };
+ { 25, 41210, "", "=q4=Deadly Gladiator's Linked Spaulders", "=ds=", "46 #eofconquest#" };
+ { 26, 41080, "", "=q4=Deadly Gladiator's Linked Armor", "=ds=", "58 #eofconquest#" };
+ { 27, 41136, "", "=q4=Deadly Gladiator's Linked Gauntlets", "=ds=", "46 #eofconquest#" };
+ { 28, 41198, "", "=q4=Deadly Gladiator's Linked Leggings", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = AL["Enhancement"] .. "Page 2";
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "" };
+ { 2, 41149, "", "=q4=Hateful Gladiator's Linked Helm", "=ds=", "45 #eofvalor#" };
+ { 3, 41209, "", "=q4=Hateful Gladiator's Linked Spaulders", "=ds=", "30 #eofvalor#" };
+ { 4, 41079, "", "=q4=Hateful Gladiator's Linked Armor", "=ds=", "45 #eofvalor#" };
+ { 5, 41135, "", "=q4=Hateful Gladiator's Linked Gauntlets", "=ds=", "30 #eofvalor#" };
+ { 6, 41162, "", "=q4=Hateful Gladiator's Linked Leggings", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "" };
+ { 9, 41148, "", "=q3=Savage Gladiator's Linked Helm", "=ds=", "45 #eofheroism#" };
+ { 10, 41208, "", "=q3=Savage Gladiator's Linked Spaulders", "=ds=", "30 #eofheroism#" };
+ { 11, 41078, "", "=q3=Savage Gladiator's Linked Armor", "=ds=", "45 #eofheroism#" };
+ { 12, 41134, "", "=q3=Savage Gladiator's Linked Gauntlets", "=ds=", "30 #eofheroism#" };
+ { 13, 41160, "", "=q3=Savage Gladiator's Linked Leggings", "=ds=", "45 #eofheroism#" };
+ };
+ {
+ Name = AL["Restoration"] .. "Page 1";
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "" };
+ { 2, 51499, "", "=q4=Wrathful Gladiator's Ringmail Helm", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51502, "", "=q4=Wrathful Gladiator's Ringmail Spaulders", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51497, "", "=q4=Wrathful Gladiator's Ringmail Armor", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51498, "", "=q4=Wrathful Gladiator's Ringmail Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51500, "", "=q4=Wrathful Gladiator's Ringmail Leggings", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "" };
+ { 9, 41014, "", "=q4=Relentless Gladiator's Ringmail Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 41039, "", "=q4=Relentless Gladiator's Ringmail Spaulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 40994, "", "=q4=Relentless Gladiator's Ringmail Armor", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 41002, "", "=q4=Relentless Gladiator's Ringmail Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 41028, "", "=q4=Relentless Gladiator's Ringmail Leggings", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "" };
+ { 17, 41013, "", "=q4=Furious Gladiator's Ringmail Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 41038, "", "=q4=Furious Gladiator's Ringmail Spaulders", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 40992, "", "=q4=Furious Gladiator's Ringmail Armor", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 41001, "", "=q4=Furious Gladiator's Ringmail Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 41027, "", "=q4=Furious Gladiator's Ringmail Leggings", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "" };
+ { 24, 41012, "", "=q4=Deadly Gladiator's Ringmail Helm", "=ds=", "58 #eofconquest#" };
+ { 25, 41037, "", "=q4=Deadly Gladiator's Ringmail Spaulders", "=ds=", "46 #eofconquest#" };
+ { 26, 40990, "", "=q4=Deadly Gladiator's Ringmail Armor", "=ds=", "58 #eofconquest#" };
+ { 27, 41000, "", "=q4=Deadly Gladiator's Ringmail Gauntlets", "=ds=", "46 #eofconquest#" };
+ { 28, 41026, "", "=q4=Deadly Gladiator's Ringmail Leggings", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = AL["Restoration"] .. "Page 2";
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "" };
+ { 2, 41011, "", "=q4=Hateful Gladiator's Ringmail Helm", "=ds=", "45 #eofvalor#" };
+ { 3, 41036, "", "=q4=Hateful Gladiator's Ringmail Spaulders", "=ds=", "30 #eofvalor#" };
+ { 4, 40988, "", "=q4=Hateful Gladiator's Ringmail Armor", "=ds=", "45 #eofvalor#" };
+ { 5, 40999, "", "=q4=Hateful Gladiator's Ringmail Gauntlets", "=ds=", "30 #eofvalor#" };
+ { 6, 41025, "", "=q4=Hateful Gladiator's Ringmail Leggings", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "" };
+ { 9, 41010, "", "=q3=Savage Gladiator's Ringmail Helm", "=ds=", "45 #eofheroism#" };
+ { 10, 41024, "", "=q3=Savage Gladiator's Ringmail Spaulders", "=ds=", "30 #eofheroism#" };
+ { 11, 40986, "", "=q3=Savage Gladiator's Ringmail Armor", "=ds=", "45 #eofheroism#" };
+ { 12, 40998, "", "=q3=Savage Gladiator's Ringmail Gauntlets", "=ds=", "30 #eofheroism#" };
+ { 13, 41023, "", "=q3=Savage Gladiator's Ringmail Leggings", "=ds=", "45 #eofheroism#" };
+ };
+};
+
+
+AtlasLoot_Data["ArenaWarlockWRATH"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ {
+ Name = "Page 1";
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "" };
+ { 2, 51538, "", "=q4=Wrathful Gladiator's Felweave Cowl", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51540, "", "=q4=Wrathful Gladiator's Felweave Amice", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51536, "", "=q4=Wrathful Gladiator's Felweave Raiment", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51537, "", "=q4=Wrathful Gladiator's Felweave Handguards", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51539, "", "=q4=Wrathful Gladiator's Felweave Trousers", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "" };
+ { 9, 41994, "", "=q4=Relentless Gladiator's Felweave Cowl", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 42012, "", "=q4=Relentless Gladiator's Felweave Amice", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 41999, "", "=q4=Relentless Gladiator's Felweave Raiment", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 42018, "", "=q4=Relentless Gladiator's Felweave Handguards", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 42006, "", "=q4=Relentless Gladiator's Felweave Trousers", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "" };
+ { 17, 41993, "", "=q4=Furious Gladiator's Felweave Cowl", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 42011, "", "=q4=Furious Gladiator's Felweave Amice", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 41998, "", "=q4=Furious Gladiator's Felweave Raiment", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 42017, "", "=q4=Furious Gladiator's Felweave Handguards", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 42005, "", "=q4=Furious Gladiator's Felweave Trousers", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "" };
+ { 24, 41992, "", "=q4=Deadly Gladiator's Felweave Cowl", "=ds=", "58 #eofconquest#" };
+ { 25, 42010, "", "=q4=Deadly Gladiator's Felweave Amice", "=ds=", "46 #eofconquest#" };
+ { 26, 41997, "", "=q4=Deadly Gladiator's Felweave Raiment", "=ds=", "58 #eofconquest#" };
+ { 27, 42016, "", "=q4=Deadly Gladiator's Felweave Handguards", "=ds=", "46 #eofconquest#" };
+ { 28, 42004, "", "=q4=Deadly Gladiator's Felweave Trousers", "=ds=", "58 #eofconquest#" };
+
+ };
+ {
+ Name = "Page 2";
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "" };
+ { 2, 41991, "", "=q4=Hateful Gladiator's Felweave Cowl", "=ds=", "45 #eofvalor#" };
+ { 3, 42009, "", "=q4=Hateful Gladiator's Felweave Amice", "=ds=", "30 #eofvalor#" };
+ { 4, 42001, "", "=q4=Hateful Gladiator's Felweave Raiment", "=ds=", "45 #eofvalor#" };
+ { 5, 42015, "", "=q4=Hateful Gladiator's Felweave Handguards", "=ds=", "30 #eofvalor#" };
+ { 6, 42003, "", "=q4=Hateful Gladiator's Felweave Trousers", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "" };
+ { 9, 41990, "", "=q3=Savage Gladiator's Felweave Cowl", "=ds=", "45 #eofheroism#" };
+ { 10, 42008, "", "=q3=Savage Gladiator's Felweave Amice", "=ds=", "30 #eofheroism#" };
+ { 11, 41996, "", "=q3=Savage Gladiator's Felweave Raiment", "=ds=", "45 #eofheroism#" };
+ { 12, 42014, "", "=q3=Savage Gladiator's Felweave Handguards", "=ds=", "30 #eofheroism#" };
+ { 13, 42002, "", "=q3=Savage Gladiator's Felweave Trousers", "=ds=", "45 #eofheroism#" };
+ };
+};
+
+AtlasLoot_Data["ArenaWarriorWRATH"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
+ {
+ Name = "Page 1";
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "" };
+ { 2, 51543, "", "=q4=Wrathful Gladiator's Plate Helm", "=ds=", "2370 #arena# #reqrating# 1950" };
+ { 3, 51545, "", "=q4=Wrathful Gladiator's Plate Shoulders", "=ds=", "1930 #arena# #reqrating# 2000" };
+ { 4, 51541, "", "=q4=Wrathful Gladiator's Plate Chestpiece", "=ds=", "2370 #arena# #reqrating# 1600" };
+ { 5, 51542, "", "=q4=Wrathful Gladiator's Plate Gauntlets", "=ds=", "1430 #arena# #reqrating# 1400" };
+ { 6, 51544, "", "=q4=Wrathful Gladiator's Plate Legguards", "=ds=", "2370 #arena# #reqrating# 1500" };
+ { 8, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "" };
+ { 9, 40829, "", "=q4=Relentless Gladiator's Plate Helm", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 10, 40870, "", "=q4=Relentless Gladiator's Plate Shoulders", "=ds=", "10550 #faction# 600 #arena# / 60 #eoffrost#" };
+ { 11, 40790, "", "=q4=Relentless Gladiator's Plate Chestpiece", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 12, 40810, "", "=q4=Relentless Gladiator's Plate Gauntlets", "=ds=", "8000 #faction# 440 #arena# / 60 #eoffrost#" };
+ { 13, 40850, "", "=q4=Relentless Gladiator's Plate Legguards", "=ds=", "13200 #faction# 770 #arena# / 95 #eoffrost#" };
+ { 16, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "" };
+ { 17, 40826, "", "=q4=Furious Gladiator's Plate Helm", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 18, 40866, "", "=q4=Furious Gladiator's Plate Shoulders", "=ds=", "34700 #faction# / 50 #eoftriumph#" };
+ { 19, 40789, "", "=q4=Furious Gladiator's Plate Chestpiece", "=ds=", "54500 #faction# / 75 #eoftriumph#" };
+ { 20, 40807, "", "=q4=Furious Gladiator's Plate Gauntlets", "=ds=", "43400 #faction# / 50 #eoftriumph#" };
+ { 21, 40847, "", "=q4=Furious Gladiator's Plate Legguards", "=ds=", "34700 #faction# / 75 #eoftriumph#" };
+ { 23, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "" };
+ { 24, 40823, "", "=q4=Deadly Gladiator's Plate Helm", "=ds=", "58 #eofconquest#" };
+ { 25, 40862, "", "=q4=Deadly Gladiator's Plate Shoulders", "=ds=", "46 #eofconquest#" };
+ { 26, 40786, "", "=q4=Deadly Gladiator's Plate Chestpiece", "=ds=", "58 #eofconquest#" };
+ { 27, 40804, "", "=q4=Deadly Gladiator's Plate Gauntlets", "=ds=", "46 #eofconquest#" };
+ { 28, 40844, "", "=q4=Deadly Gladiator's Plate Legguards", "=ds=", "58 #eofconquest#" };
+ };
+ {
+ Name = "Page 2";
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "" };
+ { 2, 40819, "", "=q4=Hateful Gladiator's Plate Helm", "=ds=", "45 #eofvalor#" };
+ { 3, 40859, "", "=q4=Hateful Gladiator's Plate Shoulders", "=ds=", "30 #eofvalor#" };
+ { 4, 40783, "", "=q4=Hateful Gladiator's Plate Chestpiece", "=ds=", "45 #eofvalor#" };
+ { 5, 40801, "", "=q4=Hateful Gladiator's Plate Gauntlets", "=ds=", "30 #eofvalor#" };
+ { 6, 40840, "", "=q4=Hateful Gladiator's Plate Legguards", "=ds=", "45 #eofvalor#" };
+ { 8, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "" };
+ { 9, 40816, "", "=q3=Savage Gladiator's Plate Helm", "=ds=", "45 #eofheroism#" };
+ { 10, 40856, "", "=q3=Savage Gladiator's Plate Shoulders", "=ds=", "30 #eofheroism#" };
+ { 11, 40778, "", "=q3=Savage Gladiator's Plate Chestpiece", "=ds=", "45 #eofheroism#" };
+ { 12, 40797, "", "=q3=Savage Gladiator's Plate Gauntlets", "=ds=", "30 #eofheroism#" };
+ { 13, 40836, "", "=q3=Savage Gladiator's Plate Legguards", "=ds=", "45 #eofheroism#" };
+ };
+};
+------------------------------
+--- Level 80 Epic Non-Sets ---
+------------------------------
+
+AtlasLoot_Data["PvP80NonSet"] = {
+ Name = AL["PvP Non-Set Epics"];
+ {
+ Name = "Page 1";
+ { 1, 51334, "", "=q4=Wrathful Gladiator's Cloak of Ascendancy", "=ds=", "52200 #faction#" };
+ { 2, 51348, "", "=q4=Wrathful Gladiator's Cloak of Deliverance", "=ds=", "52200 #faction#" };
+ { 3, 51330, "", "=q4=Wrathful Gladiator's Cloak of Dominance", "=ds=", "52200 #faction#" };
+ { 4, 51346, "", "=q4=Wrathful Gladiator's Cloak of Salvation", "=ds=", "52200 #faction#" };
+ { 5, 51332, "", "=q4=Wrathful Gladiator's Cloak of Subjugation", "=ds=", "52200 #faction#" };
+ { 6, 51354, "", "=q4=Wrathful Gladiator's Cloak of Triumph", "=ds=", "52200 #faction#" };
+ { 7, 51356, "", "=q4=Wrathful Gladiator's Cloak of Victory", "=ds=", "52200 #faction#" };
+ { 9, 51336, "", "=q4=Wrathful Gladiator's Band of Dominance", "=ds=", "52200 #faction#" };
+ { 10, 51358, "", "=q4=Wrathful Gladiator's Band of Triumph", "=ds=", "52200 #faction#" };
+ { 12, 51377, "", "=q4=Medallion of the Alliance", "=ds=", "68200 #faction#" };
+ { 13, 51378, "", "=q4=Medallion of the Horde", "=ds=", "68200 #faction#" };
+ { 16, 51335, "", "=q4=Wrathful Gladiator's Pendant of Ascendancy", "=ds=", "52200 #faction#" };
+ { 17, 51349, "", "=q4=Wrathful Gladiator's Pendant of Deliverance", "=ds=", "52200 #faction#" };
+ { 18, 51331, "", "=q4=Wrathful Gladiator's Pendant of Dominance", "=ds=", "52200 #faction#" };
+ { 19, 51347, "", "=q4=Wrathful Gladiator's Pendant of Salvation", "=ds=", "52200 #faction#" };
+ { 20, 51333, "", "=q4=Wrathful Gladiator's Pendant of Subjugation", "=ds=", "52200 #faction#" };
+ { 21, 51353, "", "=q4=Wrathful Gladiator's Pendant of Sundering", "=ds=", "52200 #faction#" };
+ { 22, 51355, "", "=q4=Wrathful Gladiator's Pendant of Triumph", "=ds=", "52200 #faction#" };
+ { 23, 51357, "", "=q4=Wrathful Gladiator's Pendant of Victory", "=ds=", "52200 #faction#" };
+ { 25, 42133, "", "=q4=Battlemaster's Fury", "=ds=", "34100 #faction#" };
+ { 26, 42134, "", "=q4=Battlemaster's Precision", "=ds=", "34100 #faction#" };
+ { 27, 42136, "", "=q4=Battlemaster's Rage", "=ds=", "34100 #faction#" };
+ { 28, 42137, "", "=q4=Battlemaster's Ruination", "=ds=", "34100 #faction#" };
+ { 29, 42135, "", "=q4=Battlemaster's Vivacity", "=ds=", "34100 #faction#" };
+};
+{
+ Name = "Page 2";
+ { 1, 42078, "", "=q4=Relentless Gladiator's Cloak of Ascendancy", "=ds=", "26100 #faction#" };
+ { 2, 42080, "", "=q4=Relentless Gladiator's Cloak of Deliverance", "=ds=", "26100 #faction#" };
+ { 3, 42076, "", "=q4=Relentless Gladiator's Cloak of Dominance", "=ds=", "26100 #faction#" };
+ { 4, 42079, "", "=q4=Relentless Gladiator's Cloak of Salvation", "=ds=", "26100 #faction#" };
+ { 5, 42077, "", "=q4=Relentless Gladiator's Cloak of Subjugation", "=ds=", "26100 #faction#" };
+ { 6, 42081, "", "=q4=Relentless Gladiator's Cloak of Triumph", "=ds=", "26100 #faction#" };
+ { 7, 42082, "", "=q4=Relentless Gladiator's Cloak of Victory", "=ds=", "26100 #faction#" };
+ { 9, 42118, "", "=q4=Relentless Gladiator's Band of Ascendancy", "=ds=", "26100 #faction#" };
+ { 10, 42119, "", "=q4=Relentless Gladiator's Band of Victory", "=ds=", "26100 #faction#" };
+ { 16, 42044, "", "=q4=Relentless Gladiator's Pendant of Ascendancy", "=ds=", "26100 #faction#" };
+ { 17, 42046, "", "=q4=Relentless Gladiator's Pendant of Deliverance", "=ds=", "26100 #faction#" };
+ { 18, 42043, "", "=q4=Relentless Gladiator's Pendant of Dominance", "=ds=", "26100 #faction#" };
+ { 19, 42047, "", "=q4=Relentless Gladiator's Pendant of Salvation", "=ds=", "26100 #faction#" };
+ { 20, 42045, "", "=q4=Relentless Gladiator's Pendant of Subjugation", "=ds=", "26100 #faction#" };
+ { 21, 46374, "", "=q4=Relentless Gladiator's Pendant of Sundering", "=ds=", "26100 #faction#" };
+ { 22, 42041, "", "=q4=Relentless Gladiator's Pendant of Triumph", "=ds=", "26100 #faction#" };
+ { 23, 42042, "", "=q4=Relentless Gladiator's Pendant of Victory", "=ds=", "26100 #faction#" };
+};
+{
+ Name = "Cloth";
+ { 1, 51329, "", "=q4=Wrathful Gladiator's Cuffs of Dominance", "=ds=", "43400 #faction#" };
+ { 2, 51327, "", "=q4=Wrathful Gladiator's Cord of Dominance", "=ds=", "68200 #faction# #reqrating# 1300" };
+ { 3, 51328, "", "=q4=Wrathful Gladiator's Treads of Dominance", "=ds=", "68200 #faction# #reqrating# 1400" };
+ { 5, 51367, "", "=q4=Wrathful Gladiator's Cuffs of Salvation", "=ds=", "43400 #faction#" };
+ { 6, 51365, "", "=q4=Wrathful Gladiator's Cord of Salvation", "=ds=", "68200 #faction# #reqrating# 1300" };
+ { 7, 51366, "", "=q4=Wrathful Gladiator's Treads of Salvation", "=ds=", "68200 #faction# #reqrating# 1400" };
+ { 9, 51339, "", "=q4=Wrathful Gladiator's Cuffs of Alacrity", "=ds=", "43400 #faction#" };
+ { 10, 51337, "", "=q4=Wrathful Gladiator's Cord of Alacrity", "=ds=", "68200 #faction# #reqrating# 1300" };
+ { 11, 51338, "", "=q4=Wrathful Gladiator's Treads of Alacrity", "=ds=", "68200 #faction# #reqrating# 1400" };
+ { 16, 41910, "", "=q4=Relentless Gladiator's Cuffs of Dominance", "=ds=", "21700 #faction#" };
+ { 17, 41899, "", "=q4=Relentless Gladiator's Cord of Dominance", "=ds=", "34100 #faction#" };
+ { 18, 41904, "", "=q4=Relentless Gladiator's Treads of Dominance", "=ds=", "34100 #faction#" };
+ { 20, 41894, "", "=q4=Relentless Gladiator's Cuffs of Salvation", "=ds=", "21700 #faction#" };
+ { 21, 41882, "", "=q4=Relentless Gladiator's Cord of Salvation", "=ds=", "34100 #faction#" };
+ { 22, 41886, "", "=q4=Relentless Gladiator's Treads of Salvation", "=ds=", "34100 #faction#" };
+ { 24, 49181, "", "=q4=Relentless Gladiator's Cuffs of Alacrity", "=ds=", "21700 #faction#" };
+ { 25, 49179, "", "=q4=Relentless Gladiator's Cord of Alacrity", "=ds=", "34100 #faction#" };
+ { 26, 49183, "", "=q4=Relentless Gladiator's Treads of Alacrity", "=ds=", "34100 #faction#" };
+};
+{
+ Name = "Leather";
+ { 1, 51345, "", "=q4=Wrathful Gladiator's Armwraps of Dominance", "=ds=", "43400 #faction#" };
+ { 2, 51343, "", "=q4=Wrathful Gladiator's Belt of Dominance", "=ds=", "68200 #faction# #reqrating# 1300" };
+ { 3, 51344, "", "=q4=Wrathful Gladiator's Boots of Dominance", "=ds=", "68200 #faction# #reqrating# 1400" };
+ { 5, 51342, "", "=q4=Wrathful Gladiator's Armwraps of Salvation", "=ds=", "43400 #faction#" };
+ { 6, 51340, "", "=q4=Wrathful Gladiator's Belt of Salvation", "=ds=", "68200 #faction# #reqrating# 1300" };
+ { 7, 51341, "", "=q4=Wrathful Gladiator's Boots of Salvation", "=ds=", "68200 #faction# #reqrating# 1400" };
+ { 9, 51370, "", "=q4=Wrathful Gladiator's Armwraps of Triumph", "=ds=", "43400 #faction#" };
+ { 10, 51368, "", "=q4=Wrathful Gladiator's Belt of Triumph", "=ds=", "68200 #faction# #reqrating# 1300" };
+ { 11, 51369, "", "=q4=Wrathful Gladiator's Boots of Triumph", "=ds=", "68200 #faction# #reqrating# 1400" };
+ { 16, 41641, "", "=q4=Relentless Gladiator's Armwraps of Dominance", "=ds=", "21700 #faction#" };
+ { 17, 41631, "", "=q4=Relentless Gladiator's Belt of Dominance", "=ds=", "34100 #faction#" };
+ { 18, 41636, "", "=q4=Relentless Gladiator's Boots of Dominance", "=ds=", "34100 #faction#" };
+ { 20, 41626, "", "=q4=Relentless Gladiator's Armwraps of Salvation", "=ds=", "21700 #faction#" };
+ { 21, 41618, "", "=q4=Relentless Gladiator's Belt of Salvation", "=ds=", "34100 #faction#" };
+ { 22, 41622, "", "=q4=Relentless Gladiator's Boots of Salvation", "=ds=", "34100 #faction#" };
+ { 24, 41841, "", "=q4=Relentless Gladiator's Armwraps of Triumph", "=ds=", "21700 #faction#" };
+ { 25, 41833, "", "=q4=Relentless Gladiator's Belt of Triumph", "=ds=", "34100 #faction#" };
+ { 26, 41837, "", "=q4=Relentless Gladiator's Boots of Triumph", "=ds=", "34100 #faction#" };
+};
+{
+ Name = "Mail";
+ { 1, 51376, "", "=q4=Wrathful Gladiator's Wristguards of Dominance", "=ds=", "43400 #faction#" };
+ { 2, 51374, "", "=q4=Wrathful Gladiator's Waistguard of Dominance", "=ds=", "68200 #faction# #reqrating# 1300" };
+ { 3, 51375, "", "=q4=Wrathful Gladiator's Sabatons of Dominance", "=ds=", "68200 #faction# #reqrating# 1400" };
+ { 5, 51373, "", "=q4=Wrathful Gladiator's Wristguards of Salvation", "=ds=", "43400 #faction#" };
+ { 6, 51371, "", "=q4=Wrathful Gladiator's Waistguard of Salvation", "=ds=", "68200 #faction# #reqrating# 1300" };
+ { 7, 51372, "", "=q4=Wrathful Gladiator's Sabatons of Salvation", "=ds=", "68200 #faction# #reqrating# 1400" };
+ { 9, 51352, "", "=q4=Wrathful Gladiator's Wristguards of Triumph", "=ds=", "43400 #faction#" };
+ { 10, 51350, "", "=q4=Wrathful Gladiator's Waistguard of Triumph", "=ds=", "68200 #faction# #reqrating# 1300" };
+ { 11, 51351, "", "=q4=Wrathful Gladiator's Sabatons of Triumph", "=ds=", "68200 #faction# #reqrating# 1400" };
+ { 16, 41066, "", "=q4=Relentless Gladiator's Wristguards of Dominance", "=ds=", "21700 #faction#" };
+ { 17, 41071, "", "=q4=Relentless Gladiator's Waistguard of Dominance", "=ds=", "34100 #faction#" };
+ { 18, 41076, "", "=q4=Relentless Gladiator's Sabatons of Dominance", "=ds=", "34100 #faction#" };
+ { 20, 41061, "", "=q4=Relentless Gladiator's Wristguards of Salvation", "=ds=", "21700 #faction#" };
+ { 21, 41052, "", "=q4=Relentless Gladiator's Waistguard of Salvation", "=ds=", "34100 #faction#" };
+ { 22, 41056, "", "=q4=Relentless Gladiator's Sabatons of Salvation", "=ds=", "34100 #faction#" };
+ { 24, 41226, "", "=q4=Relentless Gladiator's Wristguards of Triumph", "=ds=", "21700 #faction#" };
+ { 25, 41236, "", "=q4=Relentless Gladiator's Waistguard of Triumph", "=ds=", "34100 #faction#" };
+ { 26, 41231, "", "=q4=Relentless Gladiator's Sabatons of Triumph", "=ds=", "34100 #faction#" };
+};
+{
+ Name = "Plate";
+ { 1, 51361, "", "=q4=Wrathful Gladiator's Bracers of Salvation", "=ds=", "43400 #faction#" };
+ { 2, 51359, "", "=q4=Wrathful Gladiator's Girdle of Salvation", "=ds=", "68200 #faction# #reqrating# 1300" };
+ { 3, 51360, "", "=q4=Wrathful Gladiator's Greaves of Salvation", "=ds=", "68200 #faction# #reqrating# 1400" };
+ { 5, 51364, "", "=q4=Wrathful Gladiator's Bracers of Triumph", "=ds=", "43400 #faction#" };
+ { 6, 51362, "", "=q4=Wrathful Gladiator's Girdle of Triumph", "=ds=", "68200 #faction# #reqrating# 1300" };
+ { 7, 51363, "", "=q4=Wrathful Gladiator's Greaves of Triumph", "=ds=", "68200 #faction# #reqrating# 1400" };
+ { 16, 40984, "", "=q4=Relentless Gladiator's Bracers of Salvation", "=ds=", "21700 #faction#" };
+ { 17, 40978, "", "=q4=Relentless Gladiator's Girdle of Salvation", "=ds=", "34100 #faction#" };
+ { 18, 40979, "", "=q4=Relentless Gladiator's Greaves of Salvation", "=ds=", "34100 #faction#" };
+ { 20, 40890, "", "=q4=Relentless Gladiator's Bracers of Triumph", "=ds=", "21700 #faction#" };
+ { 21, 40883, "", "=q4=Relentless Gladiator's Girdle of Triumph", "=ds=", "34100 #faction#" };
+ { 22, 40884, "", "=q4=Relentless Gladiator's Greaves of Triumph", "=ds=", "34100 #faction#" };
+};
+};
+
+------------------------------------
+--- Wrathful Gladiator Weapons ---
+------------------------------------
+AtlasLoot_Data["WeaponsWRATH"] = {
+ Name = "Arena " .. AL["Weapons"];
+ {
+ Name = "Page 1";
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Low Level"], "" };
+ { 2, 51523, "", "=q4=Wrathful Gladiator's Right Ripper", "=ds=#h3#, #w13#","38500 #faction# 1090 #arena# #reqrating# 1800" };
+ { 3, 51530, "", "=q4=Wrathful Gladiator's Left Render", "=ds=#h4#, #w13#","16500 #faction# 450 #arena# #reqrating# 1800" };
+ { 4, 51443, "", "=q4=Wrathful Gladiator's Left Ripper", "=ds=#h4#, #w13#","15000 #faction# 1100 #arena# #reqrating# 1800" };
+ { 5, 51406, "", "=q4=Wrathful Gladiator's Blade of Alacrity", "=ds=#h3#, #w4#","38500 #faction# 1300 #arena# #reqrating# 1800" };
+ { 6, 51397, "", "=q4=Wrathful Gladiator's Spellblade", "=ds=#h3#, #w4#","38500 #faction# 1300 #arena# #reqrating# 1800" };
+ { 7, 51517, "", "=q4=Wrathful Gladiator's Shanker", "=ds=#h1#, #w4#", "38500 #faction# 1090 #arena# #reqrating# 1800" };
+ { 8, 51527, "", "=q4=Wrathful Gladiator's Mutilator", "=ds=#h4#, #w4#", "16500 #faction# 450 #arena# #reqrating# 1800" };
+ { 9, 51441, "", "=q4=Wrathful Gladiator's Shiv", "=ds=#h4#, #w4#", "16500 #faction# 450 #arena# #reqrating# 1800" };
+ { 10, 51521, "", "=q4=Wrathful Gladiator's Slicer", "=ds=#h1#, #w10#", "38500 #faction# 1090 #arena# #reqrating# 1800" };
+ { 11, 51447, "", "=q4=Wrathful Gladiator's Quickblade", "=ds=#h4#, #w10#","16500 #faction# 450 #arena# #reqrating# 1800" };
+ { 12, 51392, "", "=q4=Wrathful Gladiator's Greatsword", "=ds=#h2#, #w10#","55000 #faction# 1540 #arena# #reqrating# 1800" };
+ { 13, 51515, "", "=q4=Wrathful Gladiator's Cleaver", "=ds=#h1#, #w1#", "38500 #faction# 1090 #arena# #reqrating# 1800" };
+ { 14, 51525, "", "=q4=Wrathful Gladiator's Chopper", "=ds=#h4#, #w1#", "16500 #faction# 450 #arena# #reqrating# 1800" };
+ { 15, 51439, "", "=q4=Wrathful Gladiator's Hacker", "=ds=#h4#, #w1#", "16500 #faction# 450 #arena# #reqrating# 1800" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["High Level"], "" };
+ { 17, 51524, "", "=q4=Wrathful Gladiator's Grasp", "=ds=#h3#, #w13#", "3300 #arena# #reqrating# 2200" };
+ { 18, 51529, "", "=q4=Wrathful Gladiator's Left Claw", "=ds=#h4#, #w13#", "1370 #arena# #reqrating# 2200" };
+ { 19, 51444, "", "=q4=Wrathful Gladiator's Left Razor", "=ds=#h4#, #w13#", "1370 #arena# #reqrating# 2200" };
+ { 20, 51398, "", "=q4=Wrathful Gladiator's Blade of Celerity", "=ds=#h3#, #w4#", "3950 #arena# #reqrating# 2200" };
+ { 21, 51399, "", "=q4=Wrathful Gladiator's Mageblade", "=ds=#h3#, #w4#", "3950 #arena# #reqrating# 2200" };
+ { 22, 51518, "", "=q4=Wrathful Gladiator's Spike", "=ds=#h1#, #w4#", "3300 #arena# #reqrating# 2200" };
+ { 23, 51442, "", "=q4=Wrathful Gladiator's Dirk", "=ds=#h4#, #w4#", "1370 #arena# #reqrating# 2200" };
+ { 24, 51528, "", "=q4=Wrathful Gladiator's Eviscerator", "=ds=#h4#, #w4#", "1370 #arena# #reqrating# 2200" };
+ { 25, 51522, "", "=q4=Wrathful Gladiator's Longblade", "=ds=#h1#, #w10#", "3300 #arena# #reqrating# 2200" };
+ { 26, 51448, "", "=q4=Wrathful Gladiator's Swiftblade", "=ds=#h4#, #w10#", "1370 #arena# #reqrating# 2200" };
+ { 27, 51393, "", "=q4=Wrathful Gladiator's Claymore", "=ds=#h2#, #w10#", "4670 #arena# #reqrating# 2200" };
+ { 28, 51516, "", "=q4=Wrathful Gladiator's Handaxe", "=ds=#h1#, #w1#", "3300 #arena# #reqrating# 2200" };
+ { 29, 51440, "", "=q4=Wrathful Gladiator's Dicer", "=ds=#h4#, #w1#", "1370 #arena# #reqrating# 2200" };
+ { 30, 51526, "", "=q4=Wrathful Gladiator's Splitter", "=ds=#h4#, #w1#", "1370 #arena# #reqrating# 2200" };
+ };
+ {
+ Name = "Page 2";
+ { 1, 0, "INV_Box_01", "=q6=" .. AL["Low Level"], "" };
+ { 2, 51388, "", "=q4=Wrathful Gladiator's Decapitator", "=ds=#h2#, #w1#", "55000 #faction# 1540 #arena# #reqrating# 1800" };
+ { 3, 51453, "", "=q4=Wrathful Gladiator's Gavel", "=ds=#h3#, #w6#", "38500 #faction# 1300 #arena# #reqrating# 1800" };
+ { 4, 51519, "", "=q4=Wrathful Gladiator's Pummeler", "=ds=#h1#, #w6#", "38500 #faction# 1090 #arena# #reqrating# 1800" };
+ { 5, 51445, "", "=q4=Wrathful Gladiator's Bonecracker", "=ds=#h4#, #w6#", "16500 #faction# 450 #arena# #reqrating# 1800" };
+ { 6, 51390, "", "=q4=Wrathful Gladiator's Bonegrinder", "=ds=#h2#, #w6#", "55000 #faction# 1540 #arena# #reqrating# 1800" };
+ { 7, 51480, "", "=q4=Wrathful Gladiator's Pike", "=ds=#w7#", "55000 #faction# 1540 #arena# #reqrating# 1800" };
+ { 8, 51404, "", "=q4=Wrathful Gladiator's Battle Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800" };
+ { 9, 51456, "", "=q4=Wrathful Gladiator's Energy Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800" };
+ { 10, 51402, "", "=q4=Wrathful Gladiator's Focus Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800" };
+ { 11, 51431, "", "=q4=Wrathful Gladiator's Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800" };
+ { 12, 51400, "", "=q4=Wrathful Gladiator's War Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800" };
+ { 13, 51394, "", "=q4=Wrathful Gladiator's Longbow", "=ds=#w2#", "55000 #faction# 1540 #arena# #reqrating# 1800" };
+ { 14, 51411, "", "=q4=Wrathful Gladiator's Heavy Crossbow", "=ds=#w3#", "55000 #faction# 1540 #arena# #reqrating# 1800" };
+ { 15, 51449, "", "=q4=Wrathful Gladiator's Rifle", "=ds=#w5#", "55000 #faction# 1540 #arena# #reqrating# 1800" };
+ { 16, 0, "INV_Box_01", "=q6=" .. AL["High Level"], "" };
+ { 17, 51389, "", "=q4=Wrathful Gladiator's Sunderer", "=ds=#h2#, #w1#", "4670 #arena# #reqrating# 2200" };
+ { 18, 51454, "", "=q4=Wrathful Gladiator's Salvation", "=ds=#h3#, #w6#", "3950 #arena# #reqrating# 2200" };
+ { 19, 51520, "", "=q4=Wrathful Gladiator's Truncheon", "=ds=#h1#, #w6#", "3300 #arena# #reqrating# 2200" };
+ { 20, 51446, "", "=q4=Wrathful Gladiator's Punisher", "=ds=#h4#, #w6#", "1370 #arena# #reqrating# 2200" };
+ { 21, 51391, "", "=q4=Wrathful Gladiator's Crusher", "=ds=#h2#, #w6#", "4670 #arena# #reqrating# 2200" };
+ { 22, 51481, "", "=q4=Wrathful Gladiator's Halberd", "=ds=#w7#", "4670 #arena# #reqrating# 2200" };
+ { 23, 51403, "", "=q4=Wrathful Gladiator's Acute Staff", "=ds=#w9#", "4670 #arena# #reqrating# 2200" };
+ { 24, 51401, "", "=q4=Wrathful Gladiator's Combat Staff", "=ds=#w9#", "4670 #arena# #reqrating# 2200" };
+ { 25, 51432, "", "=q4=Wrathful Gladiator's Greatstaff", "=ds=#w9#", "4670 #arena# #reqrating# 2200" };
+ { 26, 51457, "", "=q4=Wrathful Gladiator's Light Staff", "=ds=#w9#", "4670 #arena# #reqrating# 2200" };
+ { 27, 51405, "", "=q4=Wrathful Gladiator's Skirmish Staff", "=ds=#w9#", "4670 #arena# #reqrating# 2200" };
+ { 28, 51395, "", "=q4=Wrathful Gladiator's Recurve", "=ds=#w2#", "4670 #arena# #reqrating# 2200" };
+ { 29, 51412, "", "=q4=Wrathful Gladiator's Repeater", "=ds=#w3#", "4670 #arena# #reqrating# 2200" };
+ { 30, 51450, "", "=q4=Wrathful Gladiator's Shotgun", "=ds=#w5#", "4670 #arena# #reqrating# 2200" };
+ };
+ {
+ Name = "Page 3";
+ { 1, 51452, "", "=q4=Wrathful Gladiator's Barrier", "=ds=#w8#", "350 #arena# #reqrating# 1800" };
+ { 2, 51455, "", "=q4=Wrathful Gladiator's Redoubt", "=ds=#w8#", "350 #arena# #reqrating# 1800" };
+ { 3, 51533, "", "=q4=Wrathful Gladiator's Shield Wall", "=ds=#w8#", "350 #arena# #reqrating# 1800" };
+ { 4, 51535, "", "=q4=Wrathful Gladiator's War Edge", "=ds=#w11#", "1260 #arena# #reqrating# 1700" };
+ { 5, 51532, "", "=q4=Wrathful Gladiator's Baton of Light", "=ds=#w12#", "1260 #arena# #reqrating# 1700" };
+ { 6, 51531, "", "=q4=Wrathful Gladiator's Piercing Touch", "=ds=#w12#", "1260 #arena# #reqrating# 1700" };
+ { 7, 51410, "", "=q4=Wrathful Gladiator's Touch of Defeat", "=ds=#w12#", "1260 #arena# #reqrating# 1700" };
+ { 8, 51451, "", "=q4=Wrathful Gladiator's Wand of Alacrity", "=ds=#w12#", "1260 #arena# #reqrating# 1700" };
+ { 9, 51407, "", "=q4=Wrathful Gladiator's Compendium", "=ds=#s15#", "350 #arena# #reqrating# 1800" };
+ { 10, 51396, "", "=q4=Wrathful Gladiator's Endgame", "=ds=#s15#", "350 #arena# #reqrating# 1800" };
+ { 11, 51408, "", "=q4=Wrathful Gladiator's Grimoire", "=ds=#s15#", "350 #arena# #reqrating# 1800" };
+ { 12, 51409, "", "=q4=Wrathful Gladiator's Reprieve", "=ds=#s15#", "350 #arena# #reqrating# 1800" };
+ };
+};
+
+-----------------------
+--- PvP Class Items ---
+-----------------------
+
+AtlasLoot_Data["PVPidolWRATH"] = {
+ Name = "Idols/Librams/Sigils/Totems";
+ {
+ Name = "Page 1";
+ { 1, 0, "INV_Box_01", "=q6=" .. BabbleInventory["Idols"], "" };
+ { 2, 51429, "", "=q4=Wrathful Gladiator's Idol of Resolve", "=ds=#w14#", "1260 #arena# #reqrating# 1700" };
+ { 3, 51437, "", "=q4=Wrathful Gladiator's Idol of Steadfastness", "=ds=#w14#", "1260 #arena# #reqrating# 1700" };
+ { 4, 51423, "", "=q4=Wrathful Gladiator's Idol of Tenacity", "=ds=#w14#", "1260 #arena# #reqrating# 1700" };
+ { 6, 42591, "", "=q4=Relentless Gladiator's Idol of Resolve", "=ds=#w14#", "6400 #faction# 350 #arena# #reqrating# 700" };
+ { 7, 42585, "", "=q4=Relentless Gladiator's Idol of Steadfastness", "=ds=#w14#", "6400 #faction# 350 #arena# #reqrating# 700" };
+ { 8, 42580, "", "=q4=Relentless Gladiator's Idol of Tenacity", "=ds=#w14#", "6400 #faction# 350 #arena# #reqrating# 700" };
+ { 10, 42589, "", "=q4=Furious Gladiator's Idol of Resolve", "12000 #faction#" };
+ { 11, 42584, "", "=q4=Furious Gladiator's Idol of Steadfastness", "12000 #faction#" };
+ { 12, 42579, "", "=q4=Furious Gladiator's Idol of Tenacity", "12000 #faction#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. BabbleInventory["Librams"], "" };
+ { 17, 51478, "", "=q4=Wrathful Gladiator's Libram of Fortitude", "=ds=#w16#", "1260 #arena# #reqrating# 1700" };
+ { 18, 51472, "", "=q4=Wrathful Gladiator's Libram of Justice", "=ds=#w16#", "1260 #arena# #reqrating# 1700" };
+ { 20, 42854, "", "=q4=Relentless Gladiator's Libram of Fortitude", "=ds=#w16#", "6400 #faction# 350 #arena# #reqrating# 700" };
+ { 21, 42616, "", "=q4=Relentless Gladiator's Libram of Justice", "=ds=#w16#", "6400 #faction# 350 #arena# #reqrating# 700" };
+ { 23, 42853, "", "=q4=Furious Gladiator's Libram of Fortitude", "12000 #faction#" };
+ { 24, 42615, "", "=q4=Furious Gladiator's Libram of Justice", "12000 #faction#" };
+ };
+ {
+ Name = "Page 2";
+ { 1, 0, "INV_Box_01", "=q6=" .. BabbleInventory["Sigils"], "" };
+ { 2, 51417, "", "=q4=Wrathful Gladiator's Sigil of Strife", "=ds=#w21#", "1260 #arena# #reqrating# 1700" };
+ { 4, 42622, "", "=q4=Relentless Gladiator's Sigil of Strife", "=ds=#w21#", "6400 #faction# 350 #arena# #reqrating# 700" };
+ { 6, 42621, "", "=q4=Furious Gladiator's Sigil of Strife", "12000 #faction#" };
+ { 16, 0, "INV_Box_01", "=q6=" .. BabbleInventory["Totems"], "" };
+ { 17, 51507, "", "=q4=Wrathful Gladiator's Totem of Indomitability", "=ds=#w15#", "1260 #arena# #reqrating# 1700" };
+ { 18, 51513, "", "=q4=Wrathful Gladiator's Totem of Survival", "=ds=#w15#", "1260 #arena# #reqrating# 1700" };
+ { 19, 51501, "", "=q4=Wrathful Gladiator's Totem of the Third Wind", "=ds=#w15#", "1260 #arena# #reqrating# 1700" };
+ { 21, 42609, "", "=q4=Relentless Gladiator's Totem of Indomitability", "=ds=#w15#", "6400 #faction# 350 #arena# #reqrating# 700" };
+ { 22, 42604, "", "=q4=Relentless Gladiator's Totem of Survival", "=ds=#w15#", "6400 #faction# 350 #arena# #reqrating# 700" };
+ { 23, 42599, "", "=q4=Relentless Gladiator's Totem of the Third Wind", "=ds=#w15#", "6400 #faction# 350 #arena# #reqrating# 700" };
+ { 25, 42608, "", "=q4=Furious Gladiator's Totem of Indomitability", "12000 #faction#" };
+ { 26, 42603, "", "=q4=Furious Gladiator's Totem of Survival", "12000 #faction#" };
+ };
+};
+-------------------------
+--- PvP Miscellaneous ---
+-------------------------
+
+AtlasLoot_Data["PvP80Misc"] = {
+ Name = AL["PvP Misc"];
+ {
+ Name = AL["PvP Misc"];
{ 1, 51534, "", "=q4=Wrathful Gladiator's Tabard", "=ds=#s7#", "550 #arena# #reqrating# 2300" };
{ 2, 44957, "", "=q4=Greater Inscription of the Gladiator", "=ds=#s3# #e17#", "10000 #faction#" };
{ 3, 45706, "", "=q4=Commendation of Bravery", "=ds=", "100 #arena#" };
@@ -8460,26 +8014,29 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 8, 36934, "", "=q4=Eye of Zul", "=ds=#e7#", "10000 #faction#" };
{ 9, 36922, "", "=q4=King's Amber", "=ds=#e7#", "10000 #faction#" };
{ 10, 36925, "", "=q4=Majestic Zircon", "=ds=#e7#", "10000 #faction#" };
- { 16, 41563, "", "=q2=Design: Durable Huge Citrine", "=ds=#p12# (350)", "1250 #faction#"};
- { 17, 41564, "", "=q2=Design: Empowered Huge Citrine", "=ds=#p12# (350)", "1250 #faction#"};
- { 18, 41565, "", "=q2=Design: Lucent Huge Citrine", "=ds=#p12# (350)", "1250 #faction#"};
- { 19, 41575, "", "=q2=Design: Mysterious Shadow Crystal", "=ds=#p12# (350)", "1250 #faction#"};
- { 20, 41559, "", "=q2=Design: Mystic Sun Crystal", "=ds=#p12# (350)", "1250 #faction#"};
- { 21, 41573, "", "=q2=Design: Opaque Dark Jade", "=ds=#p12# (350)", "1250 #faction#"};
- { 22, 41566, "", "=q2=Design: Resplendent Huge Citrine", "=ds=#p12# (350)", "1250 #faction#"};
- { 23, 41569, "", "=q2=Design: Shattered Dark Jade", "=ds=#p12# (350)", "1250 #faction#"};
- { 24, 41572, "", "=q2=Design: Steady Dark Jade", "=ds=#p12# (350)", "1250 #faction#"};
- { 25, 41560, "", "=q2=Design: Stormy Chalcedony", "=ds=#p12# (350)", "1250 #faction#"};
- { 26, 41570, "", "=q2=Design: Tense Dark Jade", "=ds=#p12# (350)", "1250 #faction#"};
- { 27, 41571, "", "=q2=Design: Turbid Dark Jade", "=ds=#p12# (350)", "1250 #faction#"};
- Back = "PVPMENUWRATH";
+ { 16, 41563, "", "=q2=Design: Durable Huge Citrine", "=ds=#p12# (350)", "1250 #faction#" };
+ { 17, 41564, "", "=q2=Design: Empowered Huge Citrine", "=ds=#p12# (350)", "1250 #faction#" };
+ { 18, 41565, "", "=q2=Design: Lucent Huge Citrine", "=ds=#p12# (350)", "1250 #faction#" };
+ { 19, 41575, "", "=q2=Design: Mysterious Shadow Crystal", "=ds=#p12# (350)", "1250 #faction#" };
+ { 20, 41559, "", "=q2=Design: Mystic Sun Crystal", "=ds=#p12# (350)", "1250 #faction#" };
+ { 21, 41573, "", "=q2=Design: Opaque Dark Jade", "=ds=#p12# (350)", "1250 #faction#" };
+ { 22, 41566, "", "=q2=Design: Resplendent Huge Citrine", "=ds=#p12# (350)", "1250 #faction#" };
+ { 23, 41569, "", "=q2=Design: Shattered Dark Jade", "=ds=#p12# (350)", "1250 #faction#" };
+ { 24, 41572, "", "=q2=Design: Steady Dark Jade", "=ds=#p12# (350)", "1250 #faction#" };
+ { 25, 41560, "", "=q2=Design: Stormy Chalcedony", "=ds=#p12# (350)", "1250 #faction#" };
+ { 26, 41570, "", "=q2=Design: Tense Dark Jade", "=ds=#p12# (350)", "1250 #faction#" };
+ { 27, 41571, "", "=q2=Design: Turbid Dark Jade", "=ds=#p12# (350)", "1250 #faction#" };
};
+};
- --------------------------------
- --- World PvP - Wintergrasp ---
- --------------------------------
+--------------------------------
+--- World PvP - Wintergrasp ---
+--------------------------------
- AtlasLoot_Data["LakeWintergrasp1"] = {
+AtlasLoot_Data["LakeWintergrasp"] = {
+ Name = "Wintergrasp";
+ {
+ Name = "Page 1";
{ 1, 51570, "", "=q4=Titan-Forged Cloak of Ascendancy", "=ds=#s4#", "25 #wintergraspmark#" };
{ 2, 51571, "", "=q4=Titan-Forged Cloak of Victory", "=ds=#s4#", "25 #wintergraspmark#" };
{ 4, 46083, "", "=q4=Titan-Forged Rune of Accuracy", "=ds=#s14#", "25 #wintergraspmark#" };
@@ -8487,8 +8044,8 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 6, 46081, "", "=q4=Titan-Forged Rune of Audacity", "=ds=#s14#", "25 #wintergraspmark#" };
{ 7, 46084, "", "=q4=Titan-Forged Rune of Cruelty", "=ds=#s14#", "25 #wintergraspmark#" };
{ 9, 46082, "", "=q4=Titan-Forged Rune of Determination", "=ds=#s14#", "25 #wintergraspmark#" };
- { 10, 43956, "", "=q4=Reins of the Black War Mammoth", "=ds=#e12#", "300 #wintergrasp#"};
- { 11, 44077, "", "=q4=Reins of the Black War Mammoth", "=ds=#e12#", "300 #wintergrasp#"};
+ { 10, 43956, "", "=q4=Reins of the Black War Mammoth", "=ds=#e12#", "300 #wintergrasp#" };
+ { 11, 44077, "", "=q4=Reins of the Black War Mammoth", "=ds=#e12#", "300 #wintergrasp#" };
{ 16, 51568, "", "=q4=Titan-Forged Pendant of Ascendancy", "=ds=#s4#", "25 #wintergraspmark#" };
{ 17, 51569, "", "=q4=Titan-Forged Pendant of Victory", "=ds=#s4#", "25 #wintergraspmark#" };
{ 19, 44914, "", "=q4=Anvil of Titans", "=ds=#s14#", "25 #wintergraspmark#" };
@@ -8498,11 +8055,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 23, 46087, "", "=q4=Platinum Disks of Sorcery", "=ds=#s14#", "25 #wintergraspmark#" };
{ 25, 48999, "", "=q4=Titan-Forged Band of Ascendancy", "=ds=#s13#", "15 #wintergraspmark#" };
{ 26, 49000, "", "=q4=Titan-Forged Band of Victory", "=ds=#s13#", "15 #wintergraspmark#" };
- Next = "LakeWintergrasp2";
- Back = "WINTERGRASPMENU";
};
-
- AtlasLoot_Data["LakeWintergrasp2"] = {
+ {
+ Name = "Page 2";
{ 2, 44910, "", "=q4=Titan-Forged Hood of Dominance", "=ds=#s1#, #a1#", "40 #wintergraspmark#" };
{ 3, 51573, "", "=q4=Titan-Forged Shoulderpads of Domination", "=ds=#s3#, #a1#", "40 #wintergraspmark#" };
{ 4, 46065, "", "=q4=Titan-Forged Raiment of Dominance", "=ds=#s5#, #a1#", "40 #wintergraspmark#" };
@@ -8516,12 +8071,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 21, 46080, "", "=q4=Titan-Forged Cord of Salvation", "=ds=#s10#, #a1#", "15 #wintergraspmark#" };
{ 22, 48991, "", "=q4=Titan-Forged Cloth Leggings of Salvation", "=ds=#s11#, #a1#", "40 #wintergraspmark#" };
{ 23, 44900, "", "=q4=Titan-Forged Slippers of Salvation", "=ds=#s12#, #a1#", "15 #wintergraspmark#" };
- Prev = "LakeWintergrasp1";
- Next = "LakeWintergrasp3";
- Back = "WINTERGRASPMENU";
};
-
- AtlasLoot_Data["LakeWintergrasp3"] = {
+ {
+ Name = "Page 3";
{ 1, 44907, "", "=q4=Titan-Forged Leather Helm of Dominance", "=ds=#s1#, #a2#", "40 #wintergraspmark#" };
{ 2, 51574, "", "=q4=Titan-Forged Leather Spaulders of Dominance", "=ds=#s3#, #a2#", "40 #wintergraspmark#" };
{ 3, 46064, "", "=q4=Titan-Forged Leather Chestguard of Dominance", "=ds=#s5#, #a2#", "40 #wintergraspmark#" };
@@ -8543,12 +8095,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 20, 46078, "", "=q4=Titan-Forged Belt of Triumph", "=ds=#s10#, #a2#", "15 #wintergraspmark#" };
{ 21, 48988, "", "=q4=Titan-Forged Leather Legguards of Triumph", "=ds=#s11#, #a2#", "40 #wintergraspmark#" };
{ 22, 44893, "", "=q4=Titan-Forged Boots of Triumph", "=ds=#s12#, #a2#", "15 #wintergraspmark#" };
- Prev = "LakeWintergrasp2";
- Next = "LakeWintergrasp4";
- Back = "WINTERGRASPMENU";
};
-
- AtlasLoot_Data["LakeWintergrasp4"] = {
+ {
+ Name = "Page 4";
{ 1, 44904, "", "=q4=Titan-Forged Mail Helm of Dominance", "=ds=#s1#, #a3#", "40 #wintergraspmark#" };
{ 2, 51578, "", "=q4=Titan-Forged Shoulders of Dominance", "=ds=#s3#, #a3#", "40 #wintergraspmark#" };
{ 3, 46061, "", "=q4=Titan-Forged Mail Armor of Domination", "=ds=#s5#, #a3#", "40 #wintergraspmark#" };
@@ -8570,12 +8119,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 20, 46075, "", "=q4=Titan-Forged Waistguard of Triumph", "=ds=#s10#, #a3#", "15 #wintergraspmark#" };
{ 21, 48983, "", "=q4=Titan-Forged Mail Leggings of Triumph", "=ds=#s11#, #a3#", "40 #wintergraspmark#" };
{ 22, 44898, "", "=q4=Titan-Forged Sabatons of Triumph", "=ds=#s12#, #a3#", "15 #wintergraspmark#" };
- Prev = "LakeWintergrasp3";
- Next = "LakeWintergrasp5";
- Back = "WINTERGRASPMENU";
};
-
- AtlasLoot_Data["LakeWintergrasp5"] = {
+ {
+ Name = "Page 5";
{ 2, 44901, "", "=q4=Titan-Forged Plate Headcover of Salvation", "=ds=#s1#, #a4#", "40 #wintergraspmark#" };
{ 3, 51581, "", "=q4=Titan-Forged Shoulderplates of Salvation", "=ds=#s3#, #a4#", "40 #wintergraspmark#" };
{ 4, 46057, "", "=q4=Titan-Forged Chestguard of Salvation", "=ds=#s5#, #a4#", "40 #wintergraspmark#" };
@@ -8590,2893 +8136,2083 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 21, 46072, "", "=q4=Titan-Forged Girdle of Triumph", "=ds=#s10#, #a4#", "15 #wintergraspmark#" };
{ 22, 48993, "", "=q4=Titan-Forged Plate Legguards of Triumph", "=ds=#s11#, #a4#", "40 #wintergraspmark#" };
{ 23, 44895, "", "=q4=Titan-Forged Greaves of Triumph", "=ds=#s12#, #a4#", "15 #wintergraspmark#" };
- Prev = "LakeWintergrasp4";
- Next = "LakeWintergrasp6";
- Back = "WINTERGRASPMENU";
};
-
- AtlasLoot_Data["LakeWintergrasp6"] = {
- { 1, 44066, "", "=q4=Kharmaa's Grace", "=ds=#e7#", "20 #wintergrasp#"};
- { 2, 44081, "", "=q3=Enigmatic Starflare Diamond", "=ds=#e7#", "15 #wintergrasp#"};
- { 3, 44084, "", "=q3=Forlorn Starflare Diamond", "=ds=#e7#", "15 #wintergrasp#"};
- { 4, 44082, "", "=q3=Impassive Starflare Diamond", "=ds=#e7#", "15 #wintergrasp#"};
- { 5, 44076, "", "=q3=Swift Starflare Diamond", "=ds=#e7#", "15 #wintergrasp#"};
- { 6, 44078, "", "=q3=Swift Starflare Diamond", "=ds=#e7#", "15 #wintergrasp#"};
- { 7, 44087, "", "=q3=Persistent Earthshatter Diamond", "=ds=#e7#", "15 #wintergrasp#"};
- { 8, 44088, "", "=q3=Powerful Earthshatter Diamond", "=ds=#e7#", "15 #wintergrasp#"};
- { 9, 44089, "", "=q3=Trenchant Earthshatter Diamond", "=ds=#e7#", "15 #wintergrasp#"};
- { 11, 44075, "", "=q3=Arcanum of Dominance", "=ds=#s1# #e17#", "40 #wintergrasp#"};
- { 12, 44069, "", "=q3=Arcanum of Triumph", "=ds=#s1# #e17#", "40 #wintergrasp#"};
- { 13, 44068, "", "=q3=Inscription of Dominance", "=ds=#s3# #e17#", "30 #wintergrasp#"};
- { 14, 44067, "", "=q3=Inscription of Triumph", "=ds=#s3# #e17#", "30 #wintergrasp#"};
- { 16, 41730, "", "=q3=Design: Durable Monarch Topaz", "=ds=#p12# (390)", "12 #wintergrasp#"};
- { 17, 41732, "", "=q3=Design: Empowered Monarch Topaz", "=ds=#p12# (390)", "12 #wintergrasp#"};
- { 18, 41733, "", "=q3=Design: Lucent Monarch Topaz", "=ds=#p12# (390)", "12 #wintergrasp#"};
- { 19, 41735, "", "=q3=Design: Shattered Forest Emerald", "=ds=#p12# (390)", "12 #wintergrasp#"};
- { 20, 41739, "", "=q3=Design: Opaque Forest Emerald", "=ds=#p12# (390)", "12 #wintergrasp#"};
- { 21, 41736, "", "=q3=Design: Tense Forest Emerald", "=ds=#p12# (390)", "12 #wintergrasp#"};
- { 22, 41737, "", "=q3=Design: Turbid Forest Emerald", "=ds=#p12# (390)", "12 #wintergrasp#"};
- { 23, 41738, "", "=q3=Design: Steady Forest Emerald", "=ds=#p12# (390)", "12 #wintergrasp#"};
- { 24, 41734, "", "=q3=Design: Resplendent Monarch Topaz", "=ds=#p12# (390)", "12 #wintergrasp#"};
- { 25, 41727, "", "=q3=Design: Mystic Autumn's Glow", "=ds=#p12# (390)", "12 #wintergrasp#"};
- { 26, 41740, "", "=q3=Design: Mysterious Twilight Opal", "=ds=#p12# (390)", "12 #wintergrasp#"};
- { 27, 41728, "", "=q3=Design: Stormy Sky Sapphire", "=ds=#p12# (390)", "12 #wintergrasp#"};
- { 28, 41742, "", "=q3=Design: Enigmatic Skyflare Diamond", "=ds=#p12# (420)", "24 #wintergrasp#"};
- { 29, 41743, "", "=q3=Design: Forlorn Skyflare Diamond", "=ds=#p12# (420)", "24 #wintergrasp#"};
- { 30, 41744, "", "=q3=Design: Impassive Skyflare Diamond", "=ds=#p12# (420)", "24 #wintergrasp#"};
- Prev = "LakeWintergrasp5";
- Next = "LakeWintergrasp7";
- Back = "WINTERGRASPMENU";
+ {
+ Name = "Page 6";
+ { 1, 44066, "", "=q4=Kharmaa's Grace", "=ds=#e7#", "20 #wintergrasp#" };
+ { 2, 44081, "", "=q3=Enigmatic Starflare Diamond", "=ds=#e7#", "15 #wintergrasp#" };
+ { 3, 44084, "", "=q3=Forlorn Starflare Diamond", "=ds=#e7#", "15 #wintergrasp#" };
+ { 4, 44082, "", "=q3=Impassive Starflare Diamond", "=ds=#e7#", "15 #wintergrasp#" };
+ { 5, 44076, "", "=q3=Swift Starflare Diamond", "=ds=#e7#", "15 #wintergrasp#" };
+ { 6, 44078, "", "=q3=Swift Starflare Diamond", "=ds=#e7#", "15 #wintergrasp#" };
+ { 7, 44087, "", "=q3=Persistent Earthshatter Diamond", "=ds=#e7#", "15 #wintergrasp#" };
+ { 8, 44088, "", "=q3=Powerful Earthshatter Diamond", "=ds=#e7#", "15 #wintergrasp#" };
+ { 9, 44089, "", "=q3=Trenchant Earthshatter Diamond", "=ds=#e7#", "15 #wintergrasp#" };
+ { 11, 44075, "", "=q3=Arcanum of Dominance", "=ds=#s1# #e17#", "40 #wintergrasp#" };
+ { 12, 44069, "", "=q3=Arcanum of Triumph", "=ds=#s1# #e17#", "40 #wintergrasp#" };
+ { 13, 44068, "", "=q3=Inscription of Dominance", "=ds=#s3# #e17#", "30 #wintergrasp#" };
+ { 14, 44067, "", "=q3=Inscription of Triumph", "=ds=#s3# #e17#", "30 #wintergrasp#" };
+ { 16, 41730, "", "=q3=Design: Durable Monarch Topaz", "=ds=#p12# (390)", "12 #wintergrasp#" };
+ { 17, 41732, "", "=q3=Design: Empowered Monarch Topaz", "=ds=#p12# (390)", "12 #wintergrasp#" };
+ { 18, 41733, "", "=q3=Design: Lucent Monarch Topaz", "=ds=#p12# (390)", "12 #wintergrasp#" };
+ { 19, 41735, "", "=q3=Design: Shattered Forest Emerald", "=ds=#p12# (390)", "12 #wintergrasp#" };
+ { 20, 41739, "", "=q3=Design: Opaque Forest Emerald", "=ds=#p12# (390)", "12 #wintergrasp#" };
+ { 21, 41736, "", "=q3=Design: Tense Forest Emerald", "=ds=#p12# (390)", "12 #wintergrasp#" };
+ { 22, 41737, "", "=q3=Design: Turbid Forest Emerald", "=ds=#p12# (390)", "12 #wintergrasp#" };
+ { 23, 41738, "", "=q3=Design: Steady Forest Emerald", "=ds=#p12# (390)", "12 #wintergrasp#" };
+ { 24, 41734, "", "=q3=Design: Resplendent Monarch Topaz", "=ds=#p12# (390)", "12 #wintergrasp#" };
+ { 25, 41727, "", "=q3=Design: Mystic Autumn's Glow", "=ds=#p12# (390)", "12 #wintergrasp#" };
+ { 26, 41740, "", "=q3=Design: Mysterious Twilight Opal", "=ds=#p12# (390)", "12 #wintergrasp#" };
+ { 27, 41728, "", "=q3=Design: Stormy Sky Sapphire", "=ds=#p12# (390)", "12 #wintergrasp#" };
+ { 28, 41742, "", "=q3=Design: Enigmatic Skyflare Diamond", "=ds=#p12# (420)", "24 #wintergrasp#" };
+ { 29, 41743, "", "=q3=Design: Forlorn Skyflare Diamond", "=ds=#p12# (420)", "24 #wintergrasp#" };
+ { 30, 41744, "", "=q3=Design: Impassive Skyflare Diamond", "=ds=#p12# (420)", "24 #wintergrasp#" };
};
-
- AtlasLoot_Data["LakeWintergrasp7"] = {
- { 1, 44107, "", "=q7=Exquisite Sunderseer Mantle", "=ds=#s3#, #a1#", "200 #wintergrasp#"};
- { 2, 44103, "", "=q7=Exceptional Stormshroud Shoulders", "=ds=#s3#, #a2#", "200 #wintergrasp#"};
- { 3, 44105, "", "=q7=Lasting Feralheart Spaulders", "=ds=#s3#, #a2#", "200 #wintergrasp#"};
- { 4, 44102, "", "=q7=Aged Pauldrons of The Five Thunders", "=ds=#s3#, #a3#", "200 #wintergrasp#"};
- { 5, 44101, "", "=q7=Prized Beastmaster's Mantle", "=ds=#s3#, #a3#", "200 #wintergrasp#"};
- { 6, 44100, "", "=q7=Pristine Lightforge Spaulders", "=ds=#s3#, #a4#", "200 #wintergrasp#"};
- { 7, 44099, "", "=q7=Strengthened Stockade Pauldrons", "=ds=#s3#, #a4#", "200 #wintergrasp#"};
- { 9, 44098, "", "=q7=Inherited Insignia of the Alliance", "=ds=#s14#", "250 #wintergrasp#"};
- { 10, 44097, "", "=q7=Inherited Insignia of the Horde", "=ds=#s14#", "250 #wintergrasp#"};
- { 12, 44115, "", "=q7=Wintergrasp Commendation", "=ds=", "30 #wintergrasp# / 9 #wintergraspmark#"};
- { 16, 44091, "", "=q7=Sharpened Scarlet Kris", "=ds=#h1#, #w4#", "200 #wintergrasp#"};
- { 17, 44096, "", "=q7=Battleworn Thrash Blade", "=ds=#h1#, #w10#", "200 #wintergrasp#"};
- { 18, 44092, "", "=q7=Reforged Truesilver Champion", "=ds=#h2#, #w10#", "325 #wintergrasp#"};
- { 19, 44094, "", "=q7=The Blessed Hammer of Grace", "=ds=#h3#, #w6#", "250 #wintergrasp#"};
- { 20, 44095, "", "=q7=Grand Staff of Jordan", "=ds=#w9#", "325 #wintergrasp#"};
- { 21, 44093, "", "=q7=Upgraded Dwarven Hand Cannon", "=ds=#w5#", "325 #wintergrasp#"};
- Prev = "LakeWintergrasp6";
- Back = "WINTERGRASPMENU";
+ {
+ Name = "Page 7";
+ { 1, 44107, "", "=q7=Exquisite Sunderseer Mantle", "=ds=#s3#, #a1#", "200 #wintergrasp#" };
+ { 2, 44103, "", "=q7=Exceptional Stormshroud Shoulders", "=ds=#s3#, #a2#", "200 #wintergrasp#" };
+ { 3, 44105, "", "=q7=Lasting Feralheart Spaulders", "=ds=#s3#, #a2#", "200 #wintergrasp#" };
+ { 4, 44102, "", "=q7=Aged Pauldrons of The Five Thunders", "=ds=#s3#, #a3#", "200 #wintergrasp#" };
+ { 5, 44101, "", "=q7=Prized Beastmaster's Mantle", "=ds=#s3#, #a3#", "200 #wintergrasp#" };
+ { 6, 44100, "", "=q7=Pristine Lightforge Spaulders", "=ds=#s3#, #a4#", "200 #wintergrasp#" };
+ { 7, 44099, "", "=q7=Strengthened Stockade Pauldrons", "=ds=#s3#, #a4#", "200 #wintergrasp#" };
+ { 9, 44098, "", "=q7=Inherited Insignia of the Alliance", "=ds=#s14#", "250 #wintergrasp#" };
+ { 10, 44097, "", "=q7=Inherited Insignia of the Horde", "=ds=#s14#", "250 #wintergrasp#" };
+ { 12, 44115, "", "=q7=Wintergrasp Commendation", "=ds=", "30 #wintergrasp# / 9 #wintergraspmark#" };
+ { 16, 44091, "", "=q7=Sharpened Scarlet Kris", "=ds=#h1#, #w4#", "200 #wintergrasp#" };
+ { 17, 44096, "", "=q7=Battleworn Thrash Blade", "=ds=#h1#, #w10#", "200 #wintergrasp#" };
+ { 18, 44092, "", "=q7=Reforged Truesilver Champion", "=ds=#h2#, #w10#", "325 #wintergrasp#" };
+ { 19, 44094, "", "=q7=The Blessed Hammer of Grace", "=ds=#h3#, #w6#", "250 #wintergrasp#" };
+ { 20, 44095, "", "=q7=Grand Staff of Jordan", "=ds=#w9#", "325 #wintergrasp#" };
+ { 21, 44093, "", "=q7=Upgraded Dwarven Hand Cannon", "=ds=#w5#", "325 #wintergrasp#" };
};
+};
- -----------------------------------------------
- --- World PvP - Grizzly Hills: Venture Bay ---
- -----------------------------------------------
+-----------------------------------------------
+--- World PvP - Grizzly Hills: Venture Bay ---
+-----------------------------------------------
- AtlasLoot_Data["VentureBay1"] = {
- { 1, 38354, "", "=q3=Oil-Stained Tarp", "=ds=#s4#", "50 #venturecoin#"};
- { 2, 38355, "", "=q3=Thick Goblin Back Protector ", "=ds=#s4#", "50 #venturecoin#"};
- { 3, 38353, "", "=q3=Venture Bay Buccaneer's Cape", "=ds=#s4#", "50 #venturecoin#"};
- { 4, 38358, "", "=q3=Arcane Revitalizer", "=ds=#s14#", "70 #venturecoin#"};
- { 5, 38359, "", "=q3=Goblin Repetition Reducer", "=ds=#s14#", "70 #venturecoin#"};
- { 6, 38357, "", "=q3=Sharpened Throwing Gizmo", "=ds=#w11#", "30 #venturecoin#"};
- { 7, 38356, "", "=q3=Venture Battle Wand", "=ds=#w12#", "30 #venturecoin#"};
- { 8, 38360, "", "=q3=Idol of Arcane Terror", "=ds=#w14#", "30 #venturecoin#"};
- { 9, 38365, "", "=q3=Idol of Perspicacious Attacks", "=ds=#w14#", "30 #venturecoin#"};
- { 10, 38366, "", "=q3=Idol of Pure Thoughts", "=ds=#w14#", "30 #venturecoin#"};
- { 11, 38364, "", "=q3=Venture Co. Libram of Mostly Holy Deeds", "=ds=#w16#", "30 #venturecoin#"};
- { 12, 38363, "", "=q3=Venture Co. Libram of Protection", "=ds=#w16#", "30 #venturecoin#"};
- { 13, 38362, "", "=q3=Venture Co. Libram of Retribution", "=ds=#w16#", "30 #venturecoin#"};
- { 16, 38368, "", "=q3=Totem of the Bay", "=ds=#w15#", "30 #venturecoin#"};
- { 17, 38367, "", "=q3=Venture Co. Flame Slicer", "=ds=#w15#", "30 #venturecoin#"};
- { 18, 38361, "", "=q3=Venture Co. Lightning Rod", "=ds=#w15#", "30 #venturecoin#"};
- { 19, 40875, "", "=q3=Sigil of Arthritic Binding", "=ds=#w21#", "30 #venturecoin#"};
- { 20, 40822, "", "=q3=Sigil of the Frozen Conscience", "=ds=#w21#", "30 #venturecoin#"};
- { 21, 40867, "", "=q3=Sigil of the Wild Buck", "=ds=#w21#", "30 #venturecoin#"};
- { 23, 37836, "", "=q1=Venture Coin", "=ds=#m17#"};
- Back = "PVPMENU2";
+AtlasLoot_Data["VentureBay"] = {
+ Name = "Venture Bay";
+ {
+ Name = "Venture Bay";
+ { 1, 38354, "", "=q3=Oil-Stained Tarp", "=ds=#s4#", "50 #venturecoin#" };
+ { 2, 38355, "", "=q3=Thick Goblin Back Protector ", "=ds=#s4#", "50 #venturecoin#" };
+ { 3, 38353, "", "=q3=Venture Bay Buccaneer's Cape", "=ds=#s4#", "50 #venturecoin#" };
+ { 4, 38358, "", "=q3=Arcane Revitalizer", "=ds=#s14#", "70 #venturecoin#" };
+ { 5, 38359, "", "=q3=Goblin Repetition Reducer", "=ds=#s14#", "70 #venturecoin#" };
+ { 6, 38357, "", "=q3=Sharpened Throwing Gizmo", "=ds=#w11#", "30 #venturecoin#" };
+ { 7, 38356, "", "=q3=Venture Battle Wand", "=ds=#w12#", "30 #venturecoin#" };
+ { 8, 38360, "", "=q3=Idol of Arcane Terror", "=ds=#w14#", "30 #venturecoin#" };
+ { 9, 38365, "", "=q3=Idol of Perspicacious Attacks", "=ds=#w14#", "30 #venturecoin#" };
+ { 10, 38366, "", "=q3=Idol of Pure Thoughts", "=ds=#w14#", "30 #venturecoin#" };
+ { 11, 38364, "", "=q3=Venture Co. Libram of Mostly Holy Deeds", "=ds=#w16#", "30 #venturecoin#" };
+ { 12, 38363, "", "=q3=Venture Co. Libram of Protection", "=ds=#w16#", "30 #venturecoin#" };
+ { 13, 38362, "", "=q3=Venture Co. Libram of Retribution", "=ds=#w16#", "30 #venturecoin#" };
+ { 16, 38368, "", "=q3=Totem of the Bay", "=ds=#w15#", "30 #venturecoin#" };
+ { 17, 38367, "", "=q3=Venture Co. Flame Slicer", "=ds=#w15#", "30 #venturecoin#" };
+ { 18, 38361, "", "=q3=Venture Co. Lightning Rod", "=ds=#w15#", "30 #venturecoin#" };
+ { 19, 40875, "", "=q3=Sigil of Arthritic Binding", "=ds=#w21#", "30 #venturecoin#" };
+ { 20, 40822, "", "=q3=Sigil of the Frozen Conscience", "=ds=#w21#", "30 #venturecoin#" };
+ { 21, 40867, "", "=q3=Sigil of the Wild Buck", "=ds=#w21#", "30 #venturecoin#" };
+ { 23, 37836, "", "=q1=Venture Coin", "=ds=#m17#" };
};
+};
- --------------------------
- --- Sets & Collections ---
- --------------------------
+--------------------------
+--- Sets & Collections ---
+--------------------------
- ---------------------------------------
- --- Naxx Sets (T7)/Ulduar Sets (T8) ---
- ---------------------------------------
+---------------------------------------
+---------- Naxx Sets (T7) -------------
+---------------------------------------
- AtlasLoot_Data["NaxxDeathKnightDPS"] = {
- { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t7s10_1#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39619, "", "=q4=Heroes' Scourgeborne Helmet", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39621, "", "=q4=Heroes' Scourgeborne Shoulderplates", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39617, "", "=q4=Heroes' Scourgeborne Battleplate", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39618, "", "=q4=Heroes' Scourgeborne Gauntlets", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39620, "", "=q4=Heroes' Scourgeborne Legplates", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t7s10_1#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40554, "", "=q4=Valorous Scourgeborne Helmet", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40557, "", "=q4=Valorous Scourgeborne Shoulderplates", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40550, "", "=q4=Valorous Scourgeborne Battleplate", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40552, "", "=q4=Valorous Scourgeborne Gauntlets", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40556, "", "=q4=Valorous Scourgeborne Legplates", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t8s10_1#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45342, "", "=q4=Valorous Darkruned Helmet", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45344, "", "=q4=Valorous Darkruned Shoulderplates", "=ds="..BabbleBoss.Thorim};
- { 19, 45340, "", "=q4=Valorous Darkruned Battleplate", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45341, "", "=q4=Valorous Darkruned Gauntlets", "=ds="..BabbleBoss.Freya};
- { 21, 45343, "", "=q4=Valorous Darkruned Legplates", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Deathknight_DeathStrike", "=q6=#t8s10_1#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46115, "", "=q4=Conqueror's Darkruned Helmet", "=ds="..BabbleBoss.Thorim};
- { 25, 46117, "", "=q4=Conqueror's Darkruned Shoulderplates", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46111, "", "=q4=Conqueror's Darkruned Battleplate", "=ds="..BabbleBoss.Hodir};
- { 27, 46113, "", "=q4=Conqueror's Darkruned Gauntlets", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46116, "", "=q4=Conqueror's Darkruned Legplates", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+AtlasLoot_Data["T7"] = {
+ Name = "Tier 7";
+ Type = "WrathRaid";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"] .. " DPS";
+ { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t7s10_1#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39619, "", "=q4=Heroes' Scourgeborne Helmet", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39621, "", "=q4=Heroes' Scourgeborne Shoulderplates", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39617, "", "=q4=Heroes' Scourgeborne Battleplate", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39618, "", "=q4=Heroes' Scourgeborne Gauntlets", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39620, "", "=q4=Heroes' Scourgeborne Legplates", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t7s10_1#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40554, "", "=q4=Valorous Scourgeborne Helmet", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40557, "", "=q4=Valorous Scourgeborne Shoulderplates", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40550, "", "=q4=Valorous Scourgeborne Battleplate", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40552, "", "=q4=Valorous Scourgeborne Gauntlets", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40556, "", "=q4=Valorous Scourgeborne Legplates", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxDeathKnightTank"] = {
- { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t7s10_2#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39625, "", "=q4=Heroes' Scourgeborne Faceguard", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39627, "", "=q4=Heroes' Scourgeborne Pauldrons", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39623, "", "=q4=Heroes' Scourgeborne Chestguard", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39624, "", "=q4=Heroes' Scourgeborne Handguards", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39626, "", "=q4=Heroes' Scourgeborne Legguards", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t7s10_2#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40565, "", "=q4=Valorous Scourgeborne Faceguard", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40568, "", "=q4=Valorous Scourgeborne Pauldrons", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40559, "", "=q4=Valorous Scourgeborne Chestguard", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40563, "", "=q4=Valorous Scourgeborne Handguards", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40567, "", "=q4=Valorous Scourgeborne Legguards", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t8s10_2#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45336, "", "=q4=Valorous Darkruned Faceguard", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45339, "", "=q4=Valorous Darkruned Pauldrons", "=ds="..BabbleBoss.Thorim};
- { 19, 45335, "", "=q4=Valorous Darkruned Chestguard", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45337, "", "=q4=Valorous Darkruned Handguards", "=ds="..BabbleBoss.Freya};
- { 21, 45338, "", "=q4=Valorous Darkruned Legguards", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Deathknight_DeathStrike", "=q6=#t8s10_2#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46120, "", "=q4=Conqueror's Darkruned Faceguard", "=ds="..BabbleBoss.Thorim};
- { 25, 46122, "", "=q4=Conqueror's Darkruned Pauldrons", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46118, "", "=q4=Conqueror's Darkruned Chestguard", "=ds="..BabbleBoss.Hodir};
- { 27, 46119, "", "=q4=Conqueror's Darkruned Handguards", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46121, "", "=q4=Conqueror's Darkruned Legguards", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"] .. " TANK";
+ { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t7s10_2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39625, "", "=q4=Heroes' Scourgeborne Faceguard", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39627, "", "=q4=Heroes' Scourgeborne Pauldrons", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39623, "", "=q4=Heroes' Scourgeborne Chestguard", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39624, "", "=q4=Heroes' Scourgeborne Handguards", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39626, "", "=q4=Heroes' Scourgeborne Legguards", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t7s10_2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40565, "", "=q4=Valorous Scourgeborne Faceguard", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40568, "", "=q4=Valorous Scourgeborne Pauldrons", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40559, "", "=q4=Valorous Scourgeborne Chestguard", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40563, "", "=q4=Valorous Scourgeborne Handguards", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40567, "", "=q4=Valorous Scourgeborne Legguards", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxDruidFeral"] = {
- { 1, 0, "Ability_Druid_Maul", "=q6=#t7s1_2#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39553, "", "=q4=Heroes' Dreamwalker Headguard", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39556, "", "=q4=Heroes' Dreamwalker Shoulderpads", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39554, "", "=q4=Heroes' Dreamwalker Raiments", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39557, "", "=q4=Heroes' Dreamwalker Handgrips", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39555, "", "=q4=Heroes' Dreamwalker Legguards", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Ability_Druid_Maul", "=q6=#t7s1_2#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40473, "", "=q4=Valorous Dreamwalker Headguard", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40494, "", "=q4=Valorous Dreamwalker Shoulderpads", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40471, "", "=q4=Valorous Dreamwalker Raiments", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40472, "", "=q4=Valorous Dreamwalker Handgrips", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40493, "", "=q4=Valorous Dreamwalker Legguards", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Ability_Druid_Maul", "=q6=#t8s1_2#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45356, "", "=q4=Valorous Nightsong Headguard", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45359, "", "=q4=Valorous Nightsong Shoulderpads", "=ds="..BabbleBoss.Thorim};
- { 19, 45358, "", "=q4=Valorous Nightsong Raiments", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45355, "", "=q4=Valorous Nightsong Handgrips", "=ds="..BabbleBoss.Freya};
- { 21, 45357, "", "=q4=Valorous Nightsong Legguards", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Ability_Druid_Maul", "=q6=#t8s1_2#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46161, "", "=q4=Conqueror's Nightsong Headguard", "=ds="..BabbleBoss.Thorim};
- { 25, 46157, "", "=q4=Conqueror's Nightsong Shoulderpads", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46159, "", "=q4=Conqueror's Nightsong Raiments", "=ds="..BabbleBoss.Hodir};
- { 27, 46158, "", "=q4=Conqueror's Nightsong Handgrips", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46160, "", "=q4=Conqueror's Nightsong Legguards", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = "Druid" .. " - " .. AL["Feral"];
+ { 1, 0, "Ability_Druid_Maul", "=q6=#t7s1_2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39553, "", "=q4=Heroes' Dreamwalker Headguard", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39556, "", "=q4=Heroes' Dreamwalker Shoulderpads", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39554, "", "=q4=Heroes' Dreamwalker Raiments", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39557, "", "=q4=Heroes' Dreamwalker Handgrips", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39555, "", "=q4=Heroes' Dreamwalker Legguards", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Ability_Druid_Maul", "=q6=#t7s1_2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40473, "", "=q4=Valorous Dreamwalker Headguard", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40494, "", "=q4=Valorous Dreamwalker Shoulderpads", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40471, "", "=q4=Valorous Dreamwalker Raiments", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40472, "", "=q4=Valorous Dreamwalker Handgrips", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40493, "", "=q4=Valorous Dreamwalker Legguards", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxDruidRestoration"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#t7s1_3#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39531, "", "=q4=Heroes' Dreamwalker Headpiece", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39542, "", "=q4=Heroes' Dreamwalker Spaulders", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39538, "", "=q4=Heroes' Dreamwalker Robe", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39543, "", "=q4=Heroes' Dreamwalker Handguards", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39539, "", "=q4=Heroes' Dreamwalker Leggings", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Nature_Regeneration", "=q6=#t7s1_3#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40461, "", "=q4=Valorous Dreamwalker Headpiece", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40465, "", "=q4=Valorous Dreamwalker Spaulders", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40463, "", "=q4=Valorous Dreamwalker Robe", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40460, "", "=q4=Valorous Dreamwalker Handguards", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40462, "", "=q4=Valorous Dreamwalker Leggings", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Nature_Regeneration", "=q6=#t8s1_3#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45346, "", "=q4=Valorous Nightsong Headpiece", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45349, "", "=q4=Valorous Nightsong Spaulders", "=ds="..BabbleBoss.Thorim};
- { 19, 45348, "", "=q4=Valorous Nightsong Robe", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45345, "", "=q4=Valorous Nightsong Handguards", "=ds="..BabbleBoss.Freya};
- { 21, 45347, "", "=q4=Valorous Nightsong Leggings", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Nature_Regeneration", "=q6=#t8s1_3#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46184, "", "=q4=Conqueror's Nightsong Headpiece", "=ds="..BabbleBoss.Thorim};
- { 25, 46187, "", "=q4=Conqueror's Nightsong Spaulders", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46186, "", "=q4=Conqueror's Nightsong Robe", "=ds="..BabbleBoss.Hodir};
- { 27, 46183, "", "=q4=Conqueror's Nightsong Handguards", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46185, "", "=q4=Conqueror's Nightsong Leggings", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = "Druid" .. " - " .. AL["Restoration"];
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t7s1_3#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39531, "", "=q4=Heroes' Dreamwalker Headpiece", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39542, "", "=q4=Heroes' Dreamwalker Spaulders", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39538, "", "=q4=Heroes' Dreamwalker Robe", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39543, "", "=q4=Heroes' Dreamwalker Handguards", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39539, "", "=q4=Heroes' Dreamwalker Leggings", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Nature_Regeneration", "=q6=#t7s1_3#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40461, "", "=q4=Valorous Dreamwalker Headpiece", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40465, "", "=q4=Valorous Dreamwalker Spaulders", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40463, "", "=q4=Valorous Dreamwalker Robe", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40460, "", "=q4=Valorous Dreamwalker Handguards", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40462, "", "=q4=Valorous Dreamwalker Leggings", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxDruidBalance"] = {
- { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t7s1_1#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39545, "", "=q4=Heroes' Dreamwalker Cover", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39548, "", "=q4=Heroes' Dreamwalker Mantle", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39547, "", "=q4=Heroes' Dreamwalker Vestments", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39544, "", "=q4=Heroes' Dreamwalker Gloves", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39546, "", "=q4=Heroes' Dreamwalker Trousers", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#t7s1_1#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40467, "", "=q4=Valorous Dreamwalker Cover", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40470, "", "=q4=Valorous Dreamwalker Mantle", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40469, "", "=q4=Valorous Dreamwalker Vestments", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40466, "", "=q4=Valorous Dreamwalker Gloves", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40468, "", "=q4=Valorous Dreamwalker Trousers", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#t8s1_1#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 46313, "", "=q4=Valorous Nightsong Cover", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45352, "", "=q4=Valorous Nightsong Mantle", "=ds="..BabbleBoss.Thorim};
- { 19, 45354, "", "=q4=Valorous Nightsong Vestments", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45351, "", "=q4=Valorous Nightsong Gloves", "=ds="..BabbleBoss.Freya};
- { 21, 45353, "", "=q4=Valorous Nightsong Trousers", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Nature_InsectSwarm", "=q6=#t8s1_1#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46191, "", "=q4=Conqueror's Nightsong Cover", "=ds="..BabbleBoss.Thorim};
- { 25, 46196, "", "=q4=Conqueror's Nightsong Mantle", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46194, "", "=q4=Conqueror's Nightsong Vestments", "=ds="..BabbleBoss.Hodir};
- { 27, 46189, "", "=q4=Conqueror's Nightsong Gloves", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46192, "", "=q4=Conqueror's Nightsong Trousers", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = "Druid" .. " - " .. AL["Balance"];
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t7s1_1#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39545, "", "=q4=Heroes' Dreamwalker Cover", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39548, "", "=q4=Heroes' Dreamwalker Mantle", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39547, "", "=q4=Heroes' Dreamwalker Vestments", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39544, "", "=q4=Heroes' Dreamwalker Gloves", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39546, "", "=q4=Heroes' Dreamwalker Trousers", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#t7s1_1#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40467, "", "=q4=Valorous Dreamwalker Cover", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40470, "", "=q4=Valorous Dreamwalker Mantle", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40469, "", "=q4=Valorous Dreamwalker Vestments", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40466, "", "=q4=Valorous Dreamwalker Gloves", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40468, "", "=q4=Valorous Dreamwalker Trousers", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxHunter"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t7s2#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39578, "", "=q4=Heroes' Cryptstalker Headpiece", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39581, "", "=q4=Heroes' Cryptstalker Spaulders", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39579, "", "=q4=Heroes' Cryptstalker Tunic", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39582, "", "=q4=Heroes' Cryptstalker Handguards", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39580, "", "=q4=Heroes' Cryptstalker Legguards", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Ability_Hunter_RunningShot", "=q6=#t7s2#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40505, "", "=q4=Valorous Crypstalker Headpiece", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40507, "", "=q4=Valorous Crypstalker Spaulders", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40503, "", "=q4=Valorous Crypstalker Tunic", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40504, "", "=q4=Valorous Crypstalker Handguards", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40506, "", "=q4=Valorous Crypstalker Legguards", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t8s2#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45361, "", "=q4=Valorous Scourgestalker Headpiece", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45363, "", "=q4=Valorous Scourgestalker Spaulders", "=ds="..BabbleBoss.Thorim};
- { 19, 45364, "", "=q4=Valorous Scourgestalker Tunic", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45360, "", "=q4=Valorous Scourgestalker Handguards", "=ds="..BabbleBoss.Freya};
- { 21, 45362, "", "=q4=Valorous Scourgestalker Legguards", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Ability_Hunter_RunningShot", "=q6=#t8s2#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46143, "", "=q4=Conqueror's Scourgestalker Headpiece", "=ds="..BabbleBoss.Thorim};
- { 25, 46145, "", "=q4=Conqueror's Scourgestalker Spaulders", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46141, "", "=q4=Conqueror's Scourgestalker Tunic", "=ds="..BabbleBoss.Hodir};
- { 27, 46142, "", "=q4=Conqueror's Scourgestalker Handguards", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46144, "", "=q4=Conqueror's Scourgestalker Legguards", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t7s2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39578, "", "=q4=Heroes' Cryptstalker Headpiece", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39581, "", "=q4=Heroes' Cryptstalker Spaulders", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39579, "", "=q4=Heroes' Cryptstalker Tunic", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39582, "", "=q4=Heroes' Cryptstalker Handguards", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39580, "", "=q4=Heroes' Cryptstalker Legguards", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Ability_Hunter_RunningShot", "=q6=#t7s2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40505, "", "=q4=Valorous Crypstalker Headpiece", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40507, "", "=q4=Valorous Crypstalker Spaulders", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40503, "", "=q4=Valorous Crypstalker Tunic", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40504, "", "=q4=Valorous Crypstalker Handguards", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40506, "", "=q4=Valorous Crypstalker Legguards", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxMage"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#t7s3#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39491, "", "=q4=Heroes' Frostfire Circlet", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39494, "", "=q4=Heroes' Frostfire Shoulderpads", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39492, "", "=q4=Heroes' Frostfire Robe", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39495, "", "=q4=Heroes' Frostfire Gloves", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39493, "", "=q4=Heroes' Frostfire Leggings", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Frost_IceStorm", "=q6=#t7s3#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40416, "", "=q4=Valorous Frostfire Circlet", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40419, "", "=q4=Valorous Frostfire Shoulderpads", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40418, "", "=q4=Valorous Frostfire Robe", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40415, "", "=q4=Valorous Frostfire Gloves", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40417, "", "=q4=Valorous Frostfire Leggings", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Frost_IceStorm", "=q6=#t8s3#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45365, "", "=q4=Valorous Kirin Tor Hood", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45369, "", "=q4=Valorous Kirin Tor Shoulderpads", "=ds="..BabbleBoss.Thorim};
- { 19, 45368, "", "=q4=Valorous Kirin Tor Tunic", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 46131, "", "=q4=Valorous Kirin Tor Gauntlets", "=ds="..BabbleBoss.Freya};
- { 21, 45367, "", "=q4=Valorous Kirin Tor Leggings", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Frost_IceStorm", "=q6=#t8s3#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46129, "", "=q4=Conqueror's Kirin Tor Hood", "=ds="..BabbleBoss.Thorim};
- { 25, 46134, "", "=q4=Conqueror's Kirin Tor Shoulderpads", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46130, "", "=q4=Conqueror's Kirin Tor Tunic", "=ds="..BabbleBoss.Hodir};
- { 27, 46132, "", "=q4=Conqueror's Kirin Tor Gauntlets", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46133, "", "=q4=Conqueror's Kirin Tor Leggings", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t7s3#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39491, "", "=q4=Heroes' Frostfire Circlet", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39494, "", "=q4=Heroes' Frostfire Shoulderpads", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39492, "", "=q4=Heroes' Frostfire Robe", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39495, "", "=q4=Heroes' Frostfire Gloves", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39493, "", "=q4=Heroes' Frostfire Leggings", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Frost_IceStorm", "=q6=#t7s3#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40416, "", "=q4=Valorous Frostfire Circlet", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40419, "", "=q4=Valorous Frostfire Shoulderpads", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40418, "", "=q4=Valorous Frostfire Robe", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40415, "", "=q4=Valorous Frostfire Gloves", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40417, "", "=q4=Valorous Frostfire Leggings", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxPaladinHoly"] = {
- { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t7s4_1#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39628, "", "=q4=Heroes' Redemption Headpiece", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39631, "", "=q4=Heroes' Redemption Spaulders", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39629, "", "=q4=Heroes' Redemption Tunic", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39632, "", "=q4=Heroes' Redemption Gloves", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39630, "", "=q4=Heroes' Redemption Greaves", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Holy_HolyBolt", "=q6=#t7s4_1#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40571, "", "=q4=Valorous Redemption Headpiece", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40573, "", "=q4=Valorous Redemption Spaulders", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40569, "", "=q4=Valorous Redemption Tunic", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40570, "", "=q4=Valorous Redemption Gloves", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40572, "", "=q4=Valorous Redemption Greaves", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Holy_HolyBolt", "=q6=#t8s4_1#", "=q5=("..AL["10 Man"]..")"};
- { 17, 45372, "", "=q4=Valorous Aegis Headpiece", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45373, "", "=q4=Valorous Aegis Spaulders", "=ds="..BabbleBoss.Thorim};
- { 19, 45374, "", "=q4=Valorous Aegis Tunic", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45370, "", "=q4=Valorous Aegis Gloves", "=ds="..BabbleBoss.Freya};
- { 21, 45371, "", "=q4=Valorous Aegis Greaves", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Holy_HolyBolt", "=q6=#t8s4_1#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46180, "", "=q4=Conqueror's Aegis Headpiece", "=ds="..BabbleBoss.Thorim};
- { 25, 46182, "", "=q4=Conqueror's Aegis Spaulders", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46178, "", "=q4=Conqueror's Aegis Tunic", "=ds="..BabbleBoss.Hodir};
- { 27, 46179, "", "=q4=Conqueror's Aegis Gloves", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46181, "", "=q4=Conqueror's Aegis Greaves", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Holy"];
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t7s4_1#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39628, "", "=q4=Heroes' Redemption Headpiece", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39631, "", "=q4=Heroes' Redemption Spaulders", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39629, "", "=q4=Heroes' Redemption Tunic", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39632, "", "=q4=Heroes' Redemption Gloves", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39630, "", "=q4=Heroes' Redemption Greaves", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Holy_HolyBolt", "=q6=#t7s4_1#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40571, "", "=q4=Valorous Redemption Headpiece", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40573, "", "=q4=Valorous Redemption Spaulders", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40569, "", "=q4=Valorous Redemption Tunic", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40570, "", "=q4=Valorous Redemption Gloves", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40572, "", "=q4=Valorous Redemption Greaves", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxPaladinRetribution"] = {
- { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t7s4_2#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39635, "", "=q4=Heroes' Redemption Helm", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39637, "", "=q4=Heroes' Redemption Shoulderplates", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39633, "", "=q4=Heroes' Redemption Chestpiece", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39634, "", "=q4=Heroes' Redemption Gauntlets", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39636, "", "=q4=Heroes' Redemption Legplates", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#t7s4_2#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40576, "", "=q4=Valorous Redemption Helm", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40578, "", "=q4=Valorous Redemption Shoulderplates", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40574, "", "=q4=Valorous Redemption Chestpiece", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40575, "", "=q4=Valorous Redemption Gauntlets", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40577, "", "=q4=Valorous Redemption Legplates", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#t8s4_2#", "=q5=("..AL["10 Man"]..")"};
- { 17, 45377, "", "=q4=Valorous Aegis Helm", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45380, "", "=q4=Valorous Aegis Shoulderplates", "=ds="..BabbleBoss.Thorim};
- { 19, 45375, "", "=q4=Valorous Aegis Battleplate", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45376, "", "=q4=Valorous Aegis Gauntlets", "=ds="..BabbleBoss.Freya};
- { 21, 45379, "", "=q4=Valorous Aegis Legplates", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Holy_AuraOfLight", "=q6=#t8s4_2#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46156, "", "=q4=Conqueror's Aegis Helm", "=ds="..BabbleBoss.Thorim};
- { 25, 46152, "", "=q4=Conqueror's Aegis Shoulderplates", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46154, "", "=q4=Conqueror's Aegis Battleplate", "=ds="..BabbleBoss.Hodir};
- { 27, 46155, "", "=q4=Conqueror's Aegis Gauntlets", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46153, "", "=q4=Conqueror's Aegis Legplates", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Retribution"];
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t7s4_2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39635, "", "=q4=Heroes' Redemption Helm", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39637, "", "=q4=Heroes' Redemption Shoulderplates", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39633, "", "=q4=Heroes' Redemption Chestpiece", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39634, "", "=q4=Heroes' Redemption Gauntlets", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39636, "", "=q4=Heroes' Redemption Legplates", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#t7s4_2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40576, "", "=q4=Valorous Redemption Helm", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40578, "", "=q4=Valorous Redemption Shoulderplates", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40574, "", "=q4=Valorous Redemption Chestpiece", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40575, "", "=q4=Valorous Redemption Gauntlets", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40577, "", "=q4=Valorous Redemption Legplates", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxPaladinProtection"] = {
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t7s4_3#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39640, "", "=q4=Heroes' Redemption Faceguard", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39642, "", "=q4=Heroes' Redemption Shouldergards", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39638, "", "=q4=Heroes' Redemption Breastplate", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39639, "", "=q4=Heroes' Redemption Handguards", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39641, "", "=q4=Heroes' Redemption Legguards", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Holy_SealOfMight", "=q6=#t7s4_3#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40581, "", "=q4=Valorous Redemption Faceguard", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40584, "", "=q4=Valorous Redemption Shouldergards", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40579, "", "=q4=Valorous Redemption Breastplate", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40580, "", "=q4=Valorous Redemption Handguards", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40583, "", "=q4=Valorous Redemption Legguards", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t8s4_3#", "=q5=("..AL["10 Man"]..")"};
- { 17, 45382, "", "=q4=Valorous Aegis Faceguard", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45385, "", "=q4=Valorous Aegis Shouldergards", "=ds="..BabbleBoss.Thorim};
- { 19, 45381, "", "=q4=Valorous Aegis Breastplate", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45383, "", "=q4=Valorous Aegis Handguards", "=ds="..BabbleBoss.Freya};
- { 21, 45384, "", "=q4=Valorous Aegis Legguards", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Holy_SealOfMight", "=q6=#t8s4_3#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46175, "", "=q4=Conqueror's Aegis Faceguard", "=ds="..BabbleBoss.Thorim};
- { 25, 46177, "", "=q4=Conqueror's Aegis Shouldergards", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46173, "", "=q4=Conqueror's Aegis Breastplate", "=ds="..BabbleBoss.Hodir};
- { 27, 46174, "", "=q4=Conqueror's Aegis Handguards", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46176, "", "=q4=Conqueror's Aegis Legguards", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Protection"];
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t7s4_3#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39640, "", "=q4=Heroes' Redemption Faceguard", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39642, "", "=q4=Heroes' Redemption Shouldergards", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39638, "", "=q4=Heroes' Redemption Breastplate", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39639, "", "=q4=Heroes' Redemption Handguards", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39641, "", "=q4=Heroes' Redemption Legguards", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Holy_SealOfMight", "=q6=#t7s4_3#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40581, "", "=q4=Valorous Redemption Faceguard", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40584, "", "=q4=Valorous Redemption Shouldergards", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40579, "", "=q4=Valorous Redemption Breastplate", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40580, "", "=q4=Valorous Redemption Handguards", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40583, "", "=q4=Valorous Redemption Legguards", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxPriestShadow"] = {
- { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t7s5_2#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39521, "", "=q4=Heroes' Circlet of Faith", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39529, "", "=q4=Heroes' Mantle of Faith", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39523, "", "=q4=Heroes' Raiments of Faith", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39530, "", "=q4=Heroes' Handwraps of Faith", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39528, "", "=q4=Heroes' Pants of Faith", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#t7s5_2#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40456, "", "=q4=Valorous Circlet of Faith", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40459, "", "=q4=Valorous Mantle of Faith", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40458, "", "=q4=Valorous Raiments of Faith", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40454, "", "=q4=Valorous Handwraps of Faith", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40457, "", "=q4=Valorous Pants of Faith", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#t8s5_2#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45391, "", "=q4=Valorous Circlet of Sanctification", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45393, "", "=q4=Valorous Mantle of Sanctification", "=ds="..BabbleBoss.Thorim};
- { 19, 45395, "", "=q4=Valorous Raiments of Sanctification", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45392, "", "=q4=Valorous Handwraps of Sanctification", "=ds="..BabbleBoss.Freya};
- { 21, 45394, "", "=q4=Valorous Pants of Sanctification", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Shadow_AntiShadow", "=q6=#t8s5_2#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46172, "", "=q4=Conqueror's Circlet of Sanctification", "=ds="..BabbleBoss.Thorim};
- { 25, 46165, "", "=q4=Conqueror's Mantle of Sanctification", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46168, "", "=q4=Conqueror's Raiments of Sanctification", "=ds="..BabbleBoss.Hodir};
- { 27, 46163, "", "=q4=Conqueror's Handwraps of Sanctification", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46170, "", "=q4=Conqueror's Pants of Sanctification", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - " .. AL["Shadow"];
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t7s5_2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39521, "", "=q4=Heroes' Circlet of Faith", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39529, "", "=q4=Heroes' Mantle of Faith", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39523, "", "=q4=Heroes' Raiments of Faith", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39530, "", "=q4=Heroes' Handwraps of Faith", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39528, "", "=q4=Heroes' Pants of Faith", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#t7s5_2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40456, "", "=q4=Valorous Circlet of Faith", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40459, "", "=q4=Valorous Mantle of Faith", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40458, "", "=q4=Valorous Raiments of Faith", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40454, "", "=q4=Valorous Handwraps of Faith", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40457, "", "=q4=Valorous Pants of Faith", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxPriestHoly"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t7s5_1#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39514, "", "=q4=Heroes' Crown of Faith", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39518, "", "=q4=Heroes' Shoulderpads of Faith", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39515, "", "=q4=Heroes' Robe of Faith", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39519, "", "=q4=Heroes' Gloves of Faith", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39517, "", "=q4=Heroes' Leggings of Faith", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#t7s5_1#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40447, "", "=q4=Valorous Crown of Faith", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40450, "", "=q4=Valorous Shoulderpads of Faith", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40449, "", "=q4=Valorous Robe of Faith", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40445, "", "=q4=Valorous Gloves of Faith", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40448, "", "=q4=Valorous Leggings of Faith", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t8s5_1#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45386, "", "=q4=Valorous Cowl of Sanctification", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45390, "", "=q4=Valorous Shoulderpads of Sanctification", "=ds="..BabbleBoss.Thorim};
- { 19, 45389, "", "=q4=Valorous Robe of Sanctification", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45387, "", "=q4=Valorous Gloves of Sanctification", "=ds="..BabbleBoss.Freya};
- { 21, 45388, "", "=q4=Valorous Leggings of Sanctification", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Holy_PowerWordShield", "=q6=#t8s5_1#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46197, "", "=q4=Conqueror's Cowl of Sanctification", "=ds="..BabbleBoss.Thorim};
- { 25, 46190, "", "=q4=Conqueror's Shoulderpads of Sanctification", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46193, "", "=q4=Conqueror's Robe of Sanctification", "=ds="..BabbleBoss.Hodir};
- { 27, 46188, "", "=q4=Conqueror's Gloves of Sanctification", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46195, "", "=q4=Conqueror's Leggings of Sanctification", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - " .. AL["Holy"];
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t7s5_1#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39514, "", "=q4=Heroes' Crown of Faith", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39518, "", "=q4=Heroes' Shoulderpads of Faith", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39515, "", "=q4=Heroes' Robe of Faith", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39519, "", "=q4=Heroes' Gloves of Faith", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39517, "", "=q4=Heroes' Leggings of Faith", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#t7s5_1#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40447, "", "=q4=Valorous Crown of Faith", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40450, "", "=q4=Valorous Shoulderpads of Faith", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40449, "", "=q4=Valorous Robe of Faith", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40445, "", "=q4=Valorous Gloves of Faith", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40448, "", "=q4=Valorous Leggings of Faith", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxRogue"] = {
- { 1, 0, "Ability_BackStab", "=q6=#t7s6#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39561, "", "=q4=Heroes' Bonescythe Helmet", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39565, "", "=q4=Heroes' Bonescythe Pauldrons", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39558, "", "=q4=Heroes' Bonescythe Breastplate", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39560, "", "=q4=Heroes' Bonescythe Gauntlets", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39564, "", "=q4=Heroes' Bonescythe Legplates", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Ability_BackStab", "=q6=#t7s6#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40499, "", "=q4=Valorous Bonescythe Helmet", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40502, "", "=q4=Valorous Bonescythe Pauldrons", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40495, "", "=q4=Valorous Bonescythe Breastplate", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40496, "", "=q4=Valorous Bonescythe Gauntlets", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40500, "", "=q4=Valorous Bonescythe Legplates", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Ability_BackStab", "=q6=#t8s6#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45398, "", "=q4=Valorous Terrorblade Helmet", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45400, "", "=q4=Valorous Terrorblade Pauldrons", "=ds="..BabbleBoss.Thorim};
- { 19, 45396, "", "=q4=Valorous Terrorblade Breastplate", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45397, "", "=q4=Valorous Terrorblade Gauntlets", "=ds="..BabbleBoss.Freya};
- { 21, 45399, "", "=q4=Valorous Terrorblade Legplates", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Ability_BackStab", "=q6=#t8s6#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46125, "", "=q4=Conqueror's Terrorblade Helmet", "=ds="..BabbleBoss.Thorim};
- { 25, 46127, "", "=q4=Conqueror's Terrorblade Pauldrons", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46123, "", "=q4=Conqueror's Terrorblade Breastplate", "=ds="..BabbleBoss.Hodir};
- { 27, 46124, "", "=q4=Conqueror's Terrorblade Gauntlets", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46126, "", "=q4=Conqueror's Terrorblade Legplates", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 0, "Ability_BackStab", "=q6=#t7s6#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39561, "", "=q4=Heroes' Bonescythe Helmet", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39565, "", "=q4=Heroes' Bonescythe Pauldrons", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39558, "", "=q4=Heroes' Bonescythe Breastplate", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39560, "", "=q4=Heroes' Bonescythe Gauntlets", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39564, "", "=q4=Heroes' Bonescythe Legplates", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Ability_BackStab", "=q6=#t7s6#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40499, "", "=q4=Valorous Bonescythe Helmet", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40502, "", "=q4=Valorous Bonescythe Pauldrons", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40495, "", "=q4=Valorous Bonescythe Breastplate", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40496, "", "=q4=Valorous Bonescythe Gauntlets", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40500, "", "=q4=Valorous Bonescythe Legplates", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxShamanRestoration"] = {
- { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t7s7_3#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39583, "", "=q4=Heroes' Earthshatter Headpiece", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39590, "", "=q4=Heroes' Earthshatter Spaulders", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39588, "", "=q4=Heroes' Earthshatter Tunic", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39591, "", "=q4=Heroes' Earthshatter Handguards", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39589, "", "=q4=Heroes' Earthshatter Legguards", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t7s7_3#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40510, "", "=q4=Valorous Earthshatter Headpiece", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40513, "", "=q4=Valorous Earthshatter Spaulders", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40508, "", "=q4=Valorous Earthshatter Tunic", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40509, "", "=q4=Valorous Earthshatter Handguards", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40512, "", "=q4=Valorous Earthshatter Legguards", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t8s7_3#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45402, "", "=q4=Valorous Worldbreaker Headpiece", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45404, "", "=q4=Valorous Worldbreaker Spaulders", "=ds="..BabbleBoss.Thorim};
- { 19, 45405, "", "=q4=Valorous Worldbreaker Tunic", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45401, "", "=q4=Valorous Worldbreaker Handguards", "=ds="..BabbleBoss.Freya};
- { 21, 45403, "", "=q4=Valorous Worldbreaker Legguards", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t8s7_3#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46201, "", "=q4=Conqueror's Worldbreaker Headpiece", "=ds="..BabbleBoss.Thorim};
- { 25, 46204, "", "=q4=Conqueror's Worldbreaker Spaulders", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46198, "", "=q4=Conqueror's Worldbreaker Tunic", "=ds="..BabbleBoss.Hodir};
- { 27, 46199, "", "=q4=Conqueror's Worldbreaker Handguards", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46202, "", "=q4=Conqueror's Worldbreaker Legguards", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Restoration"];
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t7s7_3#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39583, "", "=q4=Heroes' Earthshatter Headpiece", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39590, "", "=q4=Heroes' Earthshatter Spaulders", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39588, "", "=q4=Heroes' Earthshatter Tunic", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39591, "", "=q4=Heroes' Earthshatter Handguards", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39589, "", "=q4=Heroes' Earthshatter Legguards", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t7s7_3#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40510, "", "=q4=Valorous Earthshatter Headpiece", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40513, "", "=q4=Valorous Earthshatter Spaulders", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40508, "", "=q4=Valorous Earthshatter Tunic", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40509, "", "=q4=Valorous Earthshatter Handguards", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40512, "", "=q4=Valorous Earthshatter Legguards", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxShamanEnhancement"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t7s7_2#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39602, "", "=q4=Heroes' Earthshatter Faceguard", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39604, "", "=q4=Heroes' Earthshatter Shoulderguards", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39597, "", "=q4=Heroes' Earthshatter Chestguard", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39601, "", "=q4=Heroes' Earthshatter Grips", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39603, "", "=q4=Heroes' Earthshatter War-Kilt", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#t7s7_2#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40521, "", "=q4=Valorous Earthshatter Faceguard", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40524, "", "=q4=Valorous Earthshatter Shoulderguards", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40523, "", "=q4=Valorous Earthshatter Chestguard", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40520, "", "=q4=Valorous Earthshatter Grips", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40522, "", "=q4=Valorous Earthshatter War-Kilt", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t8s7_2#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45412, "", "=q4=Valorous Worldbreaker Faceguard", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45415, "", "=q4=Valorous Worldbreaker Shoulderguards", "=ds="..BabbleBoss.Thorim};
- { 19, 45413, "", "=q4=Valorous Worldbreaker Chestguard", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45414, "", "=q4=Valorous Worldbreaker Grips", "=ds="..BabbleBoss.Freya};
- { 21, 45416, "", "=q4=Valorous Worldbreaker War-Kilt", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_FireResistanceTotem_01", "=q6=#t8s7_2#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46212, "", "=q4=Conqueror's Worldbreaker Faceguard", "=ds="..BabbleBoss.Thorim};
- { 25, 46203, "", "=q4=Conqueror's Worldbreaker Shoulderguards", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46205, "", "=q4=Conqueror's Worldbreaker Chestguard", "=ds="..BabbleBoss.Hodir};
- { 27, 46200, "", "=q4=Conqueror's Worldbreaker Grips", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46208, "", "=q4=Conqueror's Worldbreaker War-Kilt", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Enhancement"];
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t7s7_2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39602, "", "=q4=Heroes' Earthshatter Faceguard", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39604, "", "=q4=Heroes' Earthshatter Shoulderguards", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39597, "", "=q4=Heroes' Earthshatter Chestguard", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39601, "", "=q4=Heroes' Earthshatter Grips", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39603, "", "=q4=Heroes' Earthshatter War-Kilt", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#t7s7_2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40521, "", "=q4=Valorous Earthshatter Faceguard", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40524, "", "=q4=Valorous Earthshatter Shoulderguards", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40523, "", "=q4=Valorous Earthshatter Chestguard", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40520, "", "=q4=Valorous Earthshatter Grips", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40522, "", "=q4=Valorous Earthshatter War-Kilt", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxShamanElemental"] = {
- { 1, 0, "Spell_Nature_Lightning", "=q6=#t7s7_1#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39594, "", "=q4=Heroes' Earthshatter Helm", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39596, "", "=q4=Heroes' Earthshatter Shoulderpads", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39592, "", "=q4=Heroes' Earthshatter Hauberk", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39593, "", "=q4=Heroes' Earthshatter Gloves", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39595, "", "=q4=Heroes' Earthshatter Kilt", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Nature_Lightning", "=q6=#t7s7_1#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40516, "", "=q4=Valorous Earthshatter Helm", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40518, "", "=q4=Valorous Earthshatter Shoulderpads", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40514, "", "=q4=Valorous Earthshatter Hauberk", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40515, "", "=q4=Valorous Earthshatter Gloves", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40517, "", "=q4=Valorous Earthshatter Kilt", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Nature_Lightning", "=q6=#t8s7_1#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45408, "", "=q4=Valorous Worldbreaker Helm", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45410, "", "=q4=Valorous Worldbreaker Shoulderpads", "=ds="..BabbleBoss.Thorim};
- { 19, 45411, "", "=q4=Valorous Worldbreaker Hauberk", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45406, "", "=q4=Valorous Worldbreaker Gloves", "=ds="..BabbleBoss.Freya};
- { 21, 45409, "", "=q4=Valorous Worldbreaker Kilt", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Nature_Lightning", "=q6=#t8s7_1#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46209, "", "=q4=Conqueror's Worldbreaker Helm", "=ds="..BabbleBoss.Thorim};
- { 25, 46211, "", "=q4=Conqueror's Worldbreaker Shoulderpads", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46206, "", "=q4=Conqueror's Worldbreaker Hauberk", "=ds="..BabbleBoss.Hodir};
- { 27, 46207, "", "=q4=Conqueror's Worldbreaker Gloves", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46210, "", "=q4=Conqueror's Worldbreaker Kilt", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Elemental"];
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#t7s7_1#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39594, "", "=q4=Heroes' Earthshatter Helm", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39596, "", "=q4=Heroes' Earthshatter Shoulderpads", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39592, "", "=q4=Heroes' Earthshatter Hauberk", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39593, "", "=q4=Heroes' Earthshatter Gloves", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39595, "", "=q4=Heroes' Earthshatter Kilt", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Nature_Lightning", "=q6=#t7s7_1#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40516, "", "=q4=Valorous Earthshatter Helm", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40518, "", "=q4=Valorous Earthshatter Shoulderpads", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40514, "", "=q4=Valorous Earthshatter Hauberk", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40515, "", "=q4=Valorous Earthshatter Gloves", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40517, "", "=q4=Valorous Earthshatter Kilt", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxWarlock"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t7s8#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39496, "", "=q4=Heroes' Plagueheart Circlet", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39499, "", "=q4=Heroes' Plagueheart Shoulderpads", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39497, "", "=q4=Heroes' Plagueheart Robe", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39500, "", "=q4=Heroes' Plagueheart Gloves", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39498, "", "=q4=Heroes' Plagueheart Leggings", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t7s8#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40421, "", "=q4=Valorous Plagueheart Circlet", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40424, "", "=q4=Valorous Plagueheart Shoulderpads", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40423, "", "=q4=Valorous Plagueheart Robe", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40420, "", "=q4=Valorous Plagueheart Gloves", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40422, "", "=q4=Valorous Plagueheart Leggings", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t8s8#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45417, "", "=q4=Valorous Deathbringer Hood", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45422, "", "=q4=Valorous Deathbringer Shoulderpads", "=ds="..BabbleBoss.Thorim};
- { 19, 45421, "", "=q4=Valorous Deathbringer Robe", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45419, "", "=q4=Valorous Deathbringer Gloves", "=ds="..BabbleBoss.Freya};
- { 21, 45420, "", "=q4=Valorous Deathbringer Leggings", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t8s8#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46140, "", "=q4=Conqueror's Deathbringer Hood", "=ds="..BabbleBoss.Thorim};
- { 25, 46136, "", "=q4=Conqueror's Deathbringer Shoulderpads", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46137, "", "=q4=Conqueror's Deathbringer Robe", "=ds="..BabbleBoss.Hodir};
- { 27, 46135, "", "=q4=Conqueror's Deathbringer Gloves", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46139, "", "=q4=Conqueror's Deathbringer Leggings", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t7s8#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39496, "", "=q4=Heroes' Plagueheart Circlet", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39499, "", "=q4=Heroes' Plagueheart Shoulderpads", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39497, "", "=q4=Heroes' Plagueheart Robe", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39500, "", "=q4=Heroes' Plagueheart Gloves", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39498, "", "=q4=Heroes' Plagueheart Leggings", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t7s8#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40421, "", "=q4=Valorous Plagueheart Circlet", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40424, "", "=q4=Valorous Plagueheart Shoulderpads", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40423, "", "=q4=Valorous Plagueheart Robe", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40420, "", "=q4=Valorous Plagueheart Gloves", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40422, "", "=q4=Valorous Plagueheart Leggings", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxWarriorFury"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t7s9_1#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39605, "", "=q4=Heroes' Dreadnaught Helmet", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39608, "", "=q4=Heroes' Dreadnaught Shoulderplates", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39606, "", "=q4=Heroes' Dreadnaught Battleplate", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39609, "", "=q4=Heroes' Dreadnaught Gauntlets", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39607, "", "=q4=Heroes' Dreadnaught Legplates", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "Ability_Warrior_BattleShout", "=q6=#t7s9_1#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40528, "", "=q4=Valorous Dreadnaught Helmet", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40530, "", "=q4=Valorous Dreadnaught Shoulderplates", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40525, "", "=q4=Valorous Dreadnaught Battleplate", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40527, "", "=q4=Valorous Dreadnaught Gauntlets", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40529, "", "=q4=Valorous Dreadnaught Legplates", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "Ability_Warrior_BattleShout", "=q6=#t8s9_1#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45431, "", "=q4=Valorous Siegebreaker Helmet", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45433, "", "=q4=Valorous Siegebreaker Shoulderplates", "=ds="..BabbleBoss.Thorim};
- { 19, 45429, "", "=q4=Valorous Siegebreaker Battleplate", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45430, "", "=q4=Valorous Siegebreaker Gauntlets", "=ds="..BabbleBoss.Freya};
- { 21, 45432, "", "=q4=Valorous Siegebreaker Legplates", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "Ability_Warrior_BattleShout", "=q6=#t8s9_1#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46151, "", "=q4=Conqueror's Siegebreaker Helmet", "=ds="..BabbleBoss.Thorim};
- { 25, 46149, "", "=q4=Conqueror's Siegebreaker Shoulderplates", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46146, "", "=q4=Conqueror's Siegebreaker Battleplate", "=ds="..BabbleBoss.Hodir};
- { 27, 46148, "", "=q4=Conqueror's Siegebreaker Gauntlets", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46150, "", "=q4=Conqueror's Siegebreaker Legplates", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - " .. AL["Fury"];
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t7s9_1#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39605, "", "=q4=Heroes' Dreadnaught Helmet", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39608, "", "=q4=Heroes' Dreadnaught Shoulderplates", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39606, "", "=q4=Heroes' Dreadnaught Battleplate", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39609, "", "=q4=Heroes' Dreadnaught Gauntlets", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39607, "", "=q4=Heroes' Dreadnaught Legplates", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "Ability_Warrior_BattleShout", "=q6=#t7s9_1#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40528, "", "=q4=Valorous Dreadnaught Helmet", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40530, "", "=q4=Valorous Dreadnaught Shoulderplates", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40525, "", "=q4=Valorous Dreadnaught Battleplate", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40527, "", "=q4=Valorous Dreadnaught Gauntlets", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40529, "", "=q4=Valorous Dreadnaught Legplates", "=ds=" .. BabbleBoss["Thaddius"] };
};
-
- AtlasLoot_Data["NaxxWarriorProtection"] = {
- { 1, 0, "INV_Shield_05", "=q6=#t7s9_2#", "=q5="..AL["Tier 7"].." ("..AL["10 Man"]..")"};
- { 2, 39610, "", "=q4=Heroes' Dreadnaught Greathelm", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 3, 39613, "", "=q4=Heroes' Dreadnaught Pauldrons", "=ds="..BabbleBoss["Loatheb"]};
- { 4, 39611, "", "=q4=Heroes' Dreadnaught Breastplate", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 5, 39622, "", "=q4=Heroes' Dreadnaught Handguards", "=ds="..BabbleBoss["Sartharion"]};
- { 6, 39612, "", "=q4=Heroes' Dreadnaught Legguards", "=ds="..BabbleBoss["Thaddius"]};
- { 8, 0, "INV_Shield_05", "=q6=#t7s9_2#", "=q5="..AL["Tier 7"].." ("..AL["25 Man"]..")"};
- { 9, 40546, "", "=q4=Valorous Dreadnaught Greathelm", "=ds="..BabbleBoss["Kel'Thuzad"]};
- { 10, 40548, "", "=q4=Valorous Dreadnaught Pauldrons", "=ds="..BabbleBoss["Loatheb"]};
- { 11, 40544, "", "=q4=Valorous Dreadnaught Breastplate", "=ds="..BabbleBoss["The Four Horsemen"]};
- { 12, 40545, "", "=q4=Valorous Dreadnaught Handguards", "=ds="..BabbleBoss["Sartharion"]};
- { 13, 40547, "", "=q4=Valorous Dreadnaught Legguards", "=ds="..BabbleBoss["Thaddius"]};
- { 16, 0, "INV_Shield_05", "=q6=#t8s9_2#", "=q5="..AL["Tier 8"].." ("..AL["10 Man"]..")"};
- { 17, 45425, "", "=q4=Valorous Siegebreaker Greathelm", "=ds="..BabbleBoss["Mimiron"]};
- { 18, 45428, "", "=q4=Valorous Siegebreaker Pauldrons", "=ds="..BabbleBoss.Thorim};
- { 19, 45424, "", "=q4=Valorous Siegebreaker Breastplate", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 20, 45426, "", "=q4=Valorous Siegebreaker Handguards", "=ds="..BabbleBoss.Freya};
- { 21, 45427, "", "=q4=Valorous Siegebreaker Legguards", "=ds="..BabbleBoss.Hodir};
- { 23, 0, "INV_Shield_05", "=q6=#t8s9_2#", "=q5="..AL["Tier 8"].." ("..AL["25 Man"]..")"};
- { 24, 46166, "", "=q4=Conqueror's Siegebreaker Greathelm", "=ds="..BabbleBoss.Thorim};
- { 25, 46167, "", "=q4=Conqueror's Siegebreaker Pauldrons", "=ds="..BabbleBoss["Yogg-Saron"]};
- { 26, 46162, "", "=q4=Conqueror's Siegebreaker Breastplate", "=ds="..BabbleBoss.Hodir};
- { 27, 46164, "", "=q4=Conqueror's Siegebreaker Handguards", "=ds="..BabbleBoss["Mimiron"]};
- { 28, 46169, "", "=q4=Conqueror's Siegebreaker Legguards", "=ds="..BabbleBoss.Freya};
- Back = "T7T8SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - " .. AL["Protection"];
+ { 1, 0, "INV_Shield_05", "=q6=#t7s9_2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 39610, "", "=q4=Heroes' Dreadnaught Greathelm", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 3, 39613, "", "=q4=Heroes' Dreadnaught Pauldrons", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 4, 39611, "", "=q4=Heroes' Dreadnaught Breastplate", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 5, 39622, "", "=q4=Heroes' Dreadnaught Handguards", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 6, 39612, "", "=q4=Heroes' Dreadnaught Legguards", "=ds=" .. BabbleBoss["Thaddius"] };
+ { 8, 0, "INV_Shield_05", "=q6=#t7s9_2#", "=q5=" .. AL["Tier 7"] .. " (" .. AL["25 Man"] .. ")" };
+ { 9, 40546, "", "=q4=Valorous Dreadnaught Greathelm", "=ds=" .. BabbleBoss["Kel'Thuzad"] };
+ { 10, 40548, "", "=q4=Valorous Dreadnaught Pauldrons", "=ds=" .. BabbleBoss["Loatheb"] };
+ { 11, 40544, "", "=q4=Valorous Dreadnaught Breastplate", "=ds=" .. BabbleBoss["The Four Horsemen"] };
+ { 12, 40545, "", "=q4=Valorous Dreadnaught Handguards", "=ds=" .. BabbleBoss["Sartharion"] };
+ { 13, 40547, "", "=q4=Valorous Dreadnaught Legguards", "=ds=" .. BabbleBoss["Thaddius"] };
};
+};
- ------------------------
- --- Tier 9 Sets (T9) ---
- ------------------------
- AtlasLoot_Data["T9DeathKnightDPS_A"] = {
- { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_2a#", "=q5="..AL["Tier 9"]};
- { 2, 48472, "", "=q4=Thassarian's Helmet of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48478, "", "=q4=Thassarian's Shoulderplates of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48474, "", "=q4=Thassarian's Battleplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48480, "", "=q4=Thassarian's Gauntlets of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48476, "", "=q4=Thassarian's Legplates of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_2a#", "=q5="..AL["Tier 9"]};
- { 9, 48483, "", "=q4=Thassarian's Helmet of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48485, "", "=q4=Thassarian's Shoulderplates of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48481, "", "=q4=Thassarian's Battleplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48482, "", "=q4=Thassarian's Gauntlets of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48484, "", "=q4=Thassarian's Legplates of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_2a#", "=q5="..AL["Tier 9"]};
- { 17, 48488, "", "=q4=Thassarian's Helmet of Triumph", "=ds="};
- { 18, 48486, "", "=q4=Thassarian's Shoulderplates of Triumph", "=ds="};
- { 19, 48490, "", "=q4=Thassarian's Battleplate of Triumph", "=ds="};
- { 20, 48489, "", "=q4=Thassarian's Gauntlets of Triumph", "=ds="};
- { 21, 48487, "", "=q4=Thassarian's Legplates of Triumph", "=ds="};
- Back = "T9SET";
+---------------------------------------
+---------- Ulduar Sets (T8) -----------
+---------------------------------------
+
+AtlasLoot_Data["T8"] = {
+ Name = "Tier 8";
+ Type = "WrathRaid";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"] .. " DPS";
+ { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t8s10_1#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45342, "", "=q4=Valorous Darkruned Helmet", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45344, "", "=q4=Valorous Darkruned Shoulderplates", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45340, "", "=q4=Valorous Darkruned Battleplate", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45341, "", "=q4=Valorous Darkruned Gauntlets", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45343, "", "=q4=Valorous Darkruned Legplates", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Deathknight_DeathStrike", "=q6=#t8s10_1#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46115, "", "=q4=Conqueror's Darkruned Helmet", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46117, "", "=q4=Conqueror's Darkruned Shoulderplates", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46111, "", "=q4=Conqueror's Darkruned Battleplate", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46113, "", "=q4=Conqueror's Darkruned Gauntlets", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46116, "", "=q4=Conqueror's Darkruned Legplates", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9DeathKnightDPS_H"] = {
- { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_2h#", "=q5="..AL["Tier 9"]};
- { 2, 48503, "", "=q4=Koltira's Helmet of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48505, "", "=q4=Koltira's Shoulderplates of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48501, "", "=q4=Koltira's Battleplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48502, "", "=q4=Koltira's Gauntlets of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48504, "", "=q4=Koltira's Legplates of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_2h#", "=q5="..AL["Tier 9"]};
- { 9, 48498, "", "=q4=Koltira's Helmet of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48496, "", "=q4=Koltira's Shoulderplates of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48500, "", "=q4=Koltira's Battleplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48499, "", "=q4=Koltira's Gauntlets of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48497, "", "=q4=Koltira's Legplates of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_2h#", "=q5="..AL["Tier 9"]};
- { 17, 48493, "", "=q4=Koltira's Helmet of Triumph", "=ds="};
- { 18, 48495, "", "=q4=Koltira's Shoulderplates of Triumph", "=ds="};
- { 19, 48491, "", "=q4=Koltira's Battleplate of Triumph", "=ds="};
- { 20, 48492, "", "=q4=Koltira's Gauntlets of Triumph", "=ds="};
- { 21, 48494, "", "=q4=Koltira's Legplates of Triumph", "=ds="};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"] .. " TANK";
+ { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t8s10_2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45336, "", "=q4=Valorous Darkruned Faceguard", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45339, "", "=q4=Valorous Darkruned Pauldrons", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45335, "", "=q4=Valorous Darkruned Chestguard", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45337, "", "=q4=Valorous Darkruned Handguards", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45338, "", "=q4=Valorous Darkruned Legguards", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Deathknight_DeathStrike", "=q6=#t8s10_2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46120, "", "=q4=Conqueror's Darkruned Faceguard", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46122, "", "=q4=Conqueror's Darkruned Pauldrons", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46118, "", "=q4=Conqueror's Darkruned Chestguard", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46119, "", "=q4=Conqueror's Darkruned Handguards", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46121, "", "=q4=Conqueror's Darkruned Legguards", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9DeathKnightTank_A"] = {
- { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_1a#", "=q5="..AL["Tier 9"]};
- { 2, 48529, "", "=q4=Thassarian's Faceguard of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48535, "", "=q4=Thassarian's Pauldrons of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48531, "", "=q4=Thassarian's Chestguard of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48537, "", "=q4=Thassarian's Handguards of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48533, "", "=q4=Thassarian's Legguards of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_1a#", "=q5="..AL["Tier 9"]};
- { 9, 48540, "", "=q4=Thassarian's Faceguard of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48542, "", "=q4=Thassarian's Pauldrons of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48538, "", "=q4=Thassarian's Chestguard of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48539, "", "=q4=Thassarian's Handguards of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48541, "", "=q4=Thassarian's Legguards of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_1a#", "=q5="..AL["Tier 9"]};
- { 17, 48545, "", "=q4=Thassarian's Faceguard of Triumph", "=ds="};
- { 18, 48543, "", "=q4=Thassarian's Pauldrons of Triumph", "=ds="};
- { 19, 48547, "", "=q4=Thassarian's Chestguard of Triumph", "=ds="};
- { 20, 48546, "", "=q4=Thassarian's Handguards of Triumph", "=ds="};
- { 21, 48544, "", "=q4=Thassarian's Legguards of Triumph", "=ds="};
- Back = "T9SET";
+ {
+ Name = "Druid" .. " - " .. AL["Feral"];
+ { 1, 0, "Ability_Druid_Maul", "=q6=#t8s1_2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45356, "", "=q4=Valorous Nightsong Headguard", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45359, "", "=q4=Valorous Nightsong Shoulderpads", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45358, "", "=q4=Valorous Nightsong Raiments", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45355, "", "=q4=Valorous Nightsong Handgrips", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45357, "", "=q4=Valorous Nightsong Legguards", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Ability_Druid_Maul", "=q6=#t8s1_2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46161, "", "=q4=Conqueror's Nightsong Headguard", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46157, "", "=q4=Conqueror's Nightsong Shoulderpads", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46159, "", "=q4=Conqueror's Nightsong Raiments", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46158, "", "=q4=Conqueror's Nightsong Handgrips", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46160, "", "=q4=Conqueror's Nightsong Legguards", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9DeathKnightTank_H"] = {
- { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_1h#", "=q5="..AL["Tier 9"]};
- { 2, 48560, "", "=q4=Koltira's Faceguard of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48562, "", "=q4=Koltira's Pauldrons of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48558, "", "=q4=Koltira's Chestguard of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48559, "", "=q4=Koltira's Handguards of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48561, "", "=q4=Koltira's Legguards of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_1h#", "=q5="..AL["Tier 9"]};
- { 9, 48555, "", "=q4=Koltira's Faceguard of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48553, "", "=q4=Koltira's Pauldrons of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48557, "", "=q4=Koltira's Chestguard of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48556, "", "=q4=Koltira's Handguards of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48554, "", "=q4=Koltira's Legguards of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_1h#", "=q5="..AL["Tier 9"]};
- { 17, 48550, "", "=q4=Koltira's Faceguard of Triumph", "=ds="};
- { 18, 48552, "", "=q4=Koltira's Pauldrons of Triumph", "=ds="};
- { 19, 48548, "", "=q4=Koltira's Chestguard of Triumph", "=ds="};
- { 20, 48549, "", "=q4=Koltira's Handguards of Triumph", "=ds="};
- { 21, 48551, "", "=q4=Koltira's Legguards of Triumph", "=ds="};
- Back = "T9SET";
+ {
+ Name = "Druid" .. " - " .. AL["Restoration"];
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t8s1_3#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45346, "", "=q4=Valorous Nightsong Headpiece", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45349, "", "=q4=Valorous Nightsong Spaulders", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45348, "", "=q4=Valorous Nightsong Robe", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45345, "", "=q4=Valorous Nightsong Handguards", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45347, "", "=q4=Valorous Nightsong Leggings", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Nature_Regeneration", "=q6=#t8s1_3#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46184, "", "=q4=Conqueror's Nightsong Headpiece", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46187, "", "=q4=Conqueror's Nightsong Spaulders", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46186, "", "=q4=Conqueror's Nightsong Robe", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46183, "", "=q4=Conqueror's Nightsong Handguards", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46185, "", "=q4=Conqueror's Nightsong Leggings", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9DruidRestoration_A"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#t9s1_1a#", "=q5="..AL["Tier 9"]};
- { 2, 48102, "", "=q4=Malfurion's Headpiece of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#"};
- { 3, 48131, "", "=q4=Malfurion's Spaulders of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#"};
- { 4, 48129, "", "=q4=Malfurion's Robe of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#"};
- { 5, 48132, "", "=q4=Malfurion's Handguards of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#"};
- { 6, 48130, "", "=q4=Malfurion's Leggings of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Nature_Regeneration", "=q6=#t9s1_1a#", "=q5="..AL["Tier 9"]};
- { 9, 48134, "", "=q4=Malfurion's Headpiece of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48137, "", "=q4=Malfurion's Spaulders of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48136, "", "=q4=Malfurion's Robe of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48133, "", "=q4=Malfurion's Handguards of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48135, "", "=q4=Malfurion's Leggings of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Nature_Regeneration", "=q6=#t9s1_1a#", "=q5="..AL["Tier 9"]};
- { 17, 48141, "", "=q4=Malfurion's Headpiece of Triumph", "=ds="};
- { 18, 48138, "", "=q4=Malfurion's Spaulders of Triumph", "=ds="};
- { 19, 48139, "", "=q4=Malfurion's Robe of Triumph", "=ds="};
- { 20, 48142, "", "=q4=Malfurion's Handguards of Triumph", "=ds="};
- { 21, 48140, "", "=q4=Malfurion's Leggings of Triumph", "=ds="};
- Back = "T9SET";
+ {
+ Name = "Druid" .. " - " .. AL["Balance"];
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t8s1_1#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 46313, "", "=q4=Valorous Nightsong Cover", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45352, "", "=q4=Valorous Nightsong Mantle", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45354, "", "=q4=Valorous Nightsong Vestments", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45351, "", "=q4=Valorous Nightsong Gloves", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45353, "", "=q4=Valorous Nightsong Trousers", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Nature_InsectSwarm", "=q6=#t8s1_1#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46191, "", "=q4=Conqueror's Nightsong Cover", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46196, "", "=q4=Conqueror's Nightsong Mantle", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46194, "", "=q4=Conqueror's Nightsong Vestments", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46189, "", "=q4=Conqueror's Nightsong Gloves", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46192, "", "=q4=Conqueror's Nightsong Trousers", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9DruidRestoration_H"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#t9s1_1h#", "=q5="..AL["Tier 9"]};
- { 2, 48154, "", "=q4=Runetotem's Headpiece of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#"};
- { 3, 48157, "", "=q4=Runetotem's Spaulders of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#"};
- { 4, 48156, "", "=q4=Runetotem's Robe of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#"};
- { 5, 48153, "", "=q4=Runetotem's Handguards of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#"};
- { 6, 48155, "", "=q4=Runetotem's Leggings of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Nature_Regeneration", "=q6=#t9s1_1h#", "=q5="..AL["Tier 9"]};
- { 9, 48151, "", "=q4=Runetotem's Headpiece of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48148, "", "=q4=Runetotem's Spaulders of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48149, "", "=q4=Runetotem's Robe of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48152, "", "=q4=Runetotem's Handguards of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48150, "", "=q4=Runetotem's Leggings of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Nature_Regeneration", "=q6=#t9s1_1h#", "=q5="..AL["Tier 9"]};
- { 17, 48144, "", "=q4=Runetotem's Headpiece of Triumph", "=ds="};
- { 18, 48147, "", "=q4=Runetotem's Spaulders of Triumph", "=ds="};
- { 19, 48146, "", "=q4=Runetotem's Robe of Triumph", "=ds="};
- { 20, 48143, "", "=q4=Runetotem's Handguards of Triumph", "=ds="};
- { 21, 48145, "", "=q4=Runetotem's Leggings of Triumph", "=ds="};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t8s2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45361, "", "=q4=Valorous Scourgestalker Headpiece", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45363, "", "=q4=Valorous Scourgestalker Spaulders", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45364, "", "=q4=Valorous Scourgestalker Tunic", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45360, "", "=q4=Valorous Scourgestalker Handguards", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45362, "", "=q4=Valorous Scourgestalker Legguards", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Ability_Hunter_RunningShot", "=q6=#t8s2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46143, "", "=q4=Conqueror's Scourgestalker Headpiece", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46145, "", "=q4=Conqueror's Scourgestalker Spaulders", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46141, "", "=q4=Conqueror's Scourgestalker Tunic", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46142, "", "=q4=Conqueror's Scourgestalker Handguards", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46144, "", "=q4=Conqueror's Scourgestalker Legguards", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9DruidFeral_A"] = {
- { 1, 0, "Ability_Druid_Maul", "=q6=#t9s1_2a#", "=q5="..AL["Tier 9"]};
- { 2, 48214, "", "=q4=Malfurion's Headguard of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#"};
- { 3, 48217, "", "=q4=Malfurion's Shoulderpads of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#"};
- { 4, 48216, "", "=q4=Malfurion's Raiments of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#"};
- { 5, 48213, "", "=q4=Malfurion's Handgrips of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#"};
- { 6, 48215, "", "=q4=Malfurion's Legguards of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#"};
- { 8, 0, "Ability_Druid_Maul", "=q6=#t9s1_2a#", "=q5="..AL["Tier 9"]};
- { 9, 48211, "", "=q4=Malfurion's Headguard of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48208, "", "=q4=Malfurion's Shoulderpads of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48209, "", "=q4=Malfurion's Raiments of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48212, "", "=q4=Malfurion's Handgrips of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48210, "", "=q4=Malfurion's Legguards of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Ability_Druid_Maul", "=q6=#t9s1_2a#", "=q5="..AL["Tier 9"]};
- { 17, 48204, "", "=q4=Malfurion's Headguard of Triumph", "=ds="};
- { 18, 48207, "", "=q4=Malfurion's Shoulderpads of Triumph", "=ds="};
- { 19, 48206, "", "=q4=Malfurion's Raiments of Triumph", "=ds="};
- { 20, 48203, "", "=q4=Malfurion's Handgrips of Triumph", "=ds="};
- { 21, 48205, "", "=q4=Malfurion's Legguards of Triumph", "=ds="};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t8s3#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45365, "", "=q4=Valorous Kirin Tor Hood", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45369, "", "=q4=Valorous Kirin Tor Shoulderpads", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45368, "", "=q4=Valorous Kirin Tor Tunic", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 46131, "", "=q4=Valorous Kirin Tor Gauntlets", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45367, "", "=q4=Valorous Kirin Tor Leggings", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Frost_IceStorm", "=q6=#t8s3#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46129, "", "=q4=Conqueror's Kirin Tor Hood", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46134, "", "=q4=Conqueror's Kirin Tor Shoulderpads", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46130, "", "=q4=Conqueror's Kirin Tor Tunic", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46132, "", "=q4=Conqueror's Kirin Tor Gauntlets", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46133, "", "=q4=Conqueror's Kirin Tor Leggings", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9DruidFeral_H"] = {
- { 1, 0, "Ability_Druid_Maul", "=q6=#t9s1_2h#", "=q5="..AL["Tier 9"]};
- { 2, 48188, "", "=q4=Runetotem's Headguard of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#"};
- { 3, 48191, "", "=q4=Runetotem's Shoulderpads of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#"};
- { 4, 48189, "", "=q4=Runetotem's Raiments of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#"};
- { 5, 48192, "", "=q4=Runetotem's Handgrips of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#"};
- { 6, 48190, "", "=q4=Runetotem's Legguards of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#"};
- { 8, 0, "Ability_Druid_Maul", "=q6=#t9s1_2h#", "=q5="..AL["Tier 9"]};
- { 9, 48194, "", "=q4=Runetotem's Headguard of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48197, "", "=q4=Runetotem's Shoulderpads of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48196, "", "=q4=Runetotem's Raiments of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48193, "", "=q4=Runetotem's Handgrips of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48195, "", "=q4=Runetotem's Legguards of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Ability_Druid_Maul", "=q6=#t9s1_2h#", "=q5="..AL["Tier 9"]};
- { 17, 48201, "", "=q4=Runetotem's Headguard of Triumph", "=ds="};
- { 18, 48198, "", "=q4=Runetotem's Shoulderpads of Triumph", "=ds="};
- { 19, 48199, "", "=q4=Runetotem's Raiments of Triumph", "=ds="};
- { 20, 48202, "", "=q4=Runetotem's Handgrips of Triumph", "=ds="};
- { 21, 48200, "", "=q4=Runetotem's Legguards of Triumph", "=ds="};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Holy"];
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t8s4_1#", "=q5=(" .. AL["10 Man"] .. ")" };
+ { 2, 45372, "", "=q4=Valorous Aegis Headpiece", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45373, "", "=q4=Valorous Aegis Spaulders", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45374, "", "=q4=Valorous Aegis Tunic", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45370, "", "=q4=Valorous Aegis Gloves", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45371, "", "=q4=Valorous Aegis Greaves", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Holy_HolyBolt", "=q6=#t8s4_1#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46180, "", "=q4=Conqueror's Aegis Headpiece", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46182, "", "=q4=Conqueror's Aegis Spaulders", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46178, "", "=q4=Conqueror's Aegis Tunic", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46179, "", "=q4=Conqueror's Aegis Gloves", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46181, "", "=q4=Conqueror's Aegis Greaves", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9DruidBalance_A"] = {
- { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t9s1_3a#", "=q5="..AL["Tier 9"]};
- { 2, 48158, "", "=q4=Malfurion's Cover of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#"};
- { 3, 48161, "", "=q4=Malfurion's Mantle of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#"};
- { 4, 48159, "", "=q4=Malfurion's Vestments of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#"};
- { 5, 48162, "", "=q4=Malfurion's Gloves of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#"};
- { 6, 48160, "", "=q4=Malfurion's Trousers of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#t9s1_3a#", "=q5="..AL["Tier 9"]};
- { 9, 48164, "", "=q4=Malfurion's Cover of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48167, "", "=q4=Malfurion's Mantle of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48166, "", "=q4=Malfurion's Vestments of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48163, "", "=q4=Malfurion's Gloves of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48165, "", "=q4=Malfurion's Trousers of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#t9s1_3a#", "=q5="..AL["Tier 9"]};
- { 17, 48171, "", "=q4=Malfurion's Cover of Triumph", "=ds="};
- { 18, 48168, "", "=q4=Malfurion's Mantle of Triumph", "=ds="};
- { 19, 48169, "", "=q4=Malfurion's Vestments of Triumph", "=ds="};
- { 20, 48172, "", "=q4=Malfurion's Gloves of Triumph", "=ds="};
- { 21, 48170, "", "=q4=Malfurion's Trousers of Triumph", "=ds="};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Retribution"];
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t8s4_2#", "=q5=(" .. AL["10 Man"] .. ")" };
+ { 2, 45377, "", "=q4=Valorous Aegis Helm", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45380, "", "=q4=Valorous Aegis Shoulderplates", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45375, "", "=q4=Valorous Aegis Battleplate", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45376, "", "=q4=Valorous Aegis Gauntlets", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45379, "", "=q4=Valorous Aegis Legplates", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Holy_AuraOfLight", "=q6=#t8s4_2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46156, "", "=q4=Conqueror's Aegis Helm", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46152, "", "=q4=Conqueror's Aegis Shoulderplates", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46154, "", "=q4=Conqueror's Aegis Battleplate", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46155, "", "=q4=Conqueror's Aegis Gauntlets", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46153, "", "=q4=Conqueror's Aegis Legplates", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9DruidBalance_H"] = {
- { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t9s1_3h#", "=q5="..AL["Tier 9"]};
- { 2, 48184, "", "=q4=Runetotem's Cover of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#"};
- { 3, 48187, "", "=q4=Runetotem's Mantle of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#"};
- { 4, 48186, "", "=q4=Runetotem's Vestments of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#"};
- { 5, 48183, "", "=q4=Runetotem's Gloves of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#"};
- { 6, 48185, "", "=q4=Runetotem's Trousers of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#t9s1_3h#", "=q5="..AL["Tier 9"]};
- { 9, 48181, "", "=q4=Runetotem's Cover of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48178, "", "=q4=Runetotem's Mantle of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48179, "", "=q4=Runetotem's Vestments of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48182, "", "=q4=Runetotem's Gloves of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48180, "", "=q4=Runetotem's Trousers of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#t9s1_3h#", "=q5="..AL["Tier 9"]};
- { 17, 48174, "", "=q4=Runetotem's Cover of Triumph", "=ds="};
- { 18, 48177, "", "=q4=Runetotem's Mantle of Triumph", "=ds="};
- { 19, 48176, "", "=q4=Runetotem's Vestments of Triumph", "=ds="};
- { 20, 48173, "", "=q4=Runetotem's Gloves of Triumph", "=ds="};
- { 21, 48175, "", "=q4=Runetotem's Trousers of Triumph", "=ds="};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Protection"];
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t8s4_3#", "=q5=(" .. AL["10 Man"] .. ")" };
+ { 2, 45382, "", "=q4=Valorous Aegis Faceguard", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45385, "", "=q4=Valorous Aegis Shouldergards", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45381, "", "=q4=Valorous Aegis Breastplate", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45383, "", "=q4=Valorous Aegis Handguards", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45384, "", "=q4=Valorous Aegis Legguards", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Holy_SealOfMight", "=q6=#t8s4_3#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46175, "", "=q4=Conqueror's Aegis Faceguard", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46177, "", "=q4=Conqueror's Aegis Shouldergards", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46173, "", "=q4=Conqueror's Aegis Breastplate", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46174, "", "=q4=Conqueror's Aegis Handguards", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46176, "", "=q4=Conqueror's Aegis Legguards", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9Hunter_A"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t9s2_a#", "=q5="..AL["Tier 9"]};
- { 2, 48250, "", "=q4=Windrunner's Headpiece of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#"};
- { 3, 48253, "", "=q4=Windrunner's Spaulders of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#"};
- { 4, 48251, "", "=q4=Windrunner's Tunic of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#"};
- { 5, 48254, "", "=q4=Windrunner's Handguards of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#"};
- { 6, 48252, "", "=q4=Windrunner's Legguards of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#"};
- { 8, 0, "Ability_Hunter_RunningShot", "=q6=#t9s2_a#", "=q5="..AL["Tier 9"]};
- { 9, 48257, "", "=q4=Windrunner's Headpiece of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48259, "", "=q4=Windrunner's Spaulders of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48255, "", "=q4=Windrunner's Tunic of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48256, "", "=q4=Windrunner's Handguards of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48258, "", "=q4=Windrunner's Legguards of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t9s2_h#", "=q5="..AL["Tier 9"]};
- { 17, 48262, "", "=q4=Windrunner's Headpiece of Triumph", "=ds=#s1#, #a3#"};
- { 18, 48260, "", "=q4=Windrunner's Spaulders of Triumph", "=ds=#s3#, #a3#"};
- { 19, 48264, "", "=q4=Windrunner's Tunic of Triumph", "=ds=#s5#, #a3#"};
- { 20, 48263, "", "=q4=Windrunner's Handguards of Triumph", "=ds=#s9#, #a3#"};
- { 21, 48261, "", "=q4=Windrunner's Legguards of Triumph", "=ds=#s11#, #a3#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - " .. AL["Shadow"];
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t8s5_2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45391, "", "=q4=Valorous Circlet of Sanctification", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45393, "", "=q4=Valorous Mantle of Sanctification", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45395, "", "=q4=Valorous Raiments of Sanctification", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45392, "", "=q4=Valorous Handwraps of Sanctification", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45394, "", "=q4=Valorous Pants of Sanctification", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Shadow_AntiShadow", "=q6=#t8s5_2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46172, "", "=q4=Conqueror's Circlet of Sanctification", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46165, "", "=q4=Conqueror's Mantle of Sanctification", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46168, "", "=q4=Conqueror's Raiments of Sanctification", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46163, "", "=q4=Conqueror's Handwraps of Sanctification", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46170, "", "=q4=Conqueror's Pants of Sanctification", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9Hunter_H"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t9s2_h#", "=q5="..AL["Tier 9"]};
- { 2, 48277, "", "=q4=Windrunner's Headpiece of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#"};
- { 3, 48279, "", "=q4=Windrunner's Spaulders of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#"};
- { 4, 48275, "", "=q4=Windrunner's Tunic of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#"};
- { 5, 48276, "", "=q4=Windrunner's Handguards of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#"};
- { 6, 48278, "", "=q4=Windrunner's Legguards of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#"};
- { 8, 0, "Ability_Hunter_RunningShot", "=q6=#t9s2_h#", "=q5="..AL["Tier 9"]};
- { 9, 48272, "", "=q4=Windrunner's Headpiece of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48270, "", "=q4=Windrunner's Spaulders of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48274, "", "=q4=Windrunner's Tunic of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48273, "", "=q4=Windrunner's Handguards of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48271, "", "=q4=Windrunner's Legguards of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t9s2_h#", "=q5="..AL["Tier 9"]};
- { 17, 48267, "", "=q4=Windrunner's Headpiece of Triumph", "=ds=#s1#, #a3#"};
- { 18, 48269, "", "=q4=Windrunner's Spaulders of Triumph", "=ds=#s3#, #a3#"};
- { 19, 48265, "", "=q4=Windrunner's Tunic of Triumph", "=ds=#s5#, #a3#"};
- { 20, 48266, "", "=q4=Windrunner's Handguards of Triumph", "=ds=#s9#, #a3#"};
- { 21, 48268, "", "=q4=Windrunner's Legguards of Triumph", "=ds=#s11#, #a3#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - " .. AL["Holy"];
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t8s5_1#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45386, "", "=q4=Valorous Cowl of Sanctification", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45390, "", "=q4=Valorous Shoulderpads of Sanctification", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45389, "", "=q4=Valorous Robe of Sanctification", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45387, "", "=q4=Valorous Gloves of Sanctification", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45388, "", "=q4=Valorous Leggings of Sanctification", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Holy_PowerWordShield", "=q6=#t8s5_1#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46197, "", "=q4=Conqueror's Cowl of Sanctification", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46190, "", "=q4=Conqueror's Shoulderpads of Sanctification", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46193, "", "=q4=Conqueror's Robe of Sanctification", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46188, "", "=q4=Conqueror's Gloves of Sanctification", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46195, "", "=q4=Conqueror's Leggings of Sanctification", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9Mage_A"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#t9s3_a#", "=q5="..AL["Tier 9"]};
- { 2, 47748, "", "=q4=Khadgar's Hood of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#"};
- { 3, 47751, "", "=q4=Khadgar's Shoulderpads of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#"};
- { 4, 47749, "", "=q4=Khadgar's Robe of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#"};
- { 5, 47752, "", "=q4=Khadgar's Gauntlets of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#"};
- { 6, 47750, "", "=q4=Khadgar's Leggings of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Frost_IceStorm", "=q6=#t9s3_a#", "=q5="..AL["Tier 9"]};
- { 9, 47754, "", "=q4=Khadgar's Hood of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 47757, "", "=q4=Khadgar's Shoulderpads of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 47756, "", "=q4=Khadgar's Robe of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 47753, "", "=q4=Khadgar's Gauntlets of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 47755, "", "=q4=Khadgar's Leggings of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Frost_IceStorm", "=q6=#t9s3_a#", "=q5="..AL["Tier 9"]};
- { 17, 47761, "", "=q4=Khadgar's Hood of Triumph", "=ds=#s1#, #a1#"};
- { 18, 47758, "", "=q4=Khadgar's Shoulderpads of Triumph", "=ds=#s3#, #a1#"};
- { 19, 47759, "", "=q4=Khadgar's Robe of Triumph", "=ds=#s5#, #a1#"};
- { 20, 47762, "", "=q4=Khadgar's Gauntlets of Triumph", "=ds=#s9#, #a1#"};
- { 21, 47760, "", "=q4=Khadgar's Leggings of Triumph", "=ds=#s11#, #a1#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 0, "Ability_BackStab", "=q6=#t8s6#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45398, "", "=q4=Valorous Terrorblade Helmet", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45400, "", "=q4=Valorous Terrorblade Pauldrons", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45396, "", "=q4=Valorous Terrorblade Breastplate", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45397, "", "=q4=Valorous Terrorblade Gauntlets", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45399, "", "=q4=Valorous Terrorblade Legplates", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Ability_BackStab", "=q6=#t8s6#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46125, "", "=q4=Conqueror's Terrorblade Helmet", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46127, "", "=q4=Conqueror's Terrorblade Pauldrons", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46123, "", "=q4=Conqueror's Terrorblade Breastplate", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46124, "", "=q4=Conqueror's Terrorblade Gauntlets", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46126, "", "=q4=Conqueror's Terrorblade Legplates", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9Mage_H"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#t9s3_h#", "=q5="..AL["Tier 9"]};
- { 2, 47774, "", "=q4=Sunstrider's Hood of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#"};
- { 3, 47777, "", "=q4=Sunstrider's Shoulderpads of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#"};
- { 4, 47776, "", "=q4=Sunstrider's Robe of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#"};
- { 5, 47773, "", "=q4=Sunstrider's Gauntlets of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#"};
- { 6, 47775, "", "=q4=Sunstrider's Leggings of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Frost_IceStorm", "=q6=#t9s3_h#", "=q5="..AL["Tier 9"]};
- { 9, 47771, "", "=q4=Sunstrider's Hood of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 47768, "", "=q4=Sunstrider's Shoulderpads of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 47769, "", "=q4=Sunstrider's Robe of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 47772, "", "=q4=Sunstrider's Gauntlets of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 47770, "", "=q4=Sunstrider's Leggings of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Frost_IceStorm", "=q6=#t9s3_h#", "=q5="..AL["Tier 9"]};
- { 17, 47764, "", "=q4=Sunstrider's Hood of Triumph", "=ds=#s1#, #a1#"};
- { 18, 47767, "", "=q4=Sunstrider's Shoulderpads of Triumph", "=ds=#s3#, #a1#"};
- { 19, 47766, "", "=q4=Sunstrider's Robe of Triumph", "=ds=#s5#, #a1#"};
- { 20, 47763, "", "=q4=Sunstrider's Gauntlets of Triumph", "=ds=#s9#, #a1#"};
- { 21, 47765, "", "=q4=Sunstrider's Leggings of Triumph", "=ds=#s11#, #a1#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Restoration"];
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t8s7_3#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45402, "", "=q4=Valorous Worldbreaker Headpiece", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45404, "", "=q4=Valorous Worldbreaker Spaulders", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45405, "", "=q4=Valorous Worldbreaker Tunic", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45401, "", "=q4=Valorous Worldbreaker Handguards", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45403, "", "=q4=Valorous Worldbreaker Legguards", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t8s7_3#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46201, "", "=q4=Conqueror's Worldbreaker Headpiece", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46204, "", "=q4=Conqueror's Worldbreaker Spaulders", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46198, "", "=q4=Conqueror's Worldbreaker Tunic", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46199, "", "=q4=Conqueror's Worldbreaker Handguards", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46202, "", "=q4=Conqueror's Worldbreaker Legguards", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9PaladinHoly_A"] = {
- { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t9s4_1a#", "=q5="..AL["Tier 9"]};
- { 2, 48564, "", "=q4=Turalyon's Headpiece of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48572, "", "=q4=Turalyon's Spaulders of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48566, "", "=q4=Turalyon's Tunic of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48574, "", "=q4=Turalyon's Gloves of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48568, "", "=q4=Turalyon's Greaves of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Holy_HolyBolt", "=q6=#t9s4_1a#", "=q5="..AL["Tier 9"]};
- { 9, 48577, "", "=q4=Turalyon's Headpiece of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48579, "", "=q4=Turalyon's Spaulders of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48575, "", "=q4=Turalyon's Tunic of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48576, "", "=q4=Turalyon's Gloves of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48578, "", "=q4=Turalyon's Greaves of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Holy_HolyBolt", "=q6=#t9s4_1a#", "=q5="..AL["Tier 9"]};
- { 17, 48582, "", "=q4=Turalyon's Headpiece of Triumph", "=ds=#s1#, #a4#"};
- { 18, 48580, "", "=q4=Turalyon's Spaulders of Triumph", "=ds=#s3#, #a4#"};
- { 19, 48584, "", "=q4=Turalyon's Tunic of Triumph", "=ds=#s5#, #a4#"};
- { 20, 48583, "", "=q4=Turalyon's Gloves of Triumph", "=ds=#s9#, #a4#"};
- { 21, 48581, "", "=q4=Turalyon's Greaves of Triumph", "=ds=#s11#, #a4#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Enhancement"];
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t8s7_2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45412, "", "=q4=Valorous Worldbreaker Faceguard", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45415, "", "=q4=Valorous Worldbreaker Shoulderguards", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45413, "", "=q4=Valorous Worldbreaker Chestguard", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45414, "", "=q4=Valorous Worldbreaker Grips", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45416, "", "=q4=Valorous Worldbreaker War-Kilt", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_FireResistanceTotem_01", "=q6=#t8s7_2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46212, "", "=q4=Conqueror's Worldbreaker Faceguard", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46203, "", "=q4=Conqueror's Worldbreaker Shoulderguards", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46205, "", "=q4=Conqueror's Worldbreaker Chestguard", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46200, "", "=q4=Conqueror's Worldbreaker Grips", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46208, "", "=q4=Conqueror's Worldbreaker War-Kilt", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9PaladinHoly_H"] = {
- { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t9s4_1h#", "=q5="..AL["Tier 9"]};
- { 2, 48597, "", "=q4=Liadrin's Headpiece of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48595, "", "=q4=Liadrin's Spaulders of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48599, "", "=q4=Liadrin's Tunic of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48598, "", "=q4=Liadrin's Gloves of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48596, "", "=q4=Liadrin's Greaves of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Holy_HolyBolt", "=q6=#t9s4_1h#", "=q5="..AL["Tier 9"]};
- { 9, 48592, "", "=q4=Liadrin's Headpiece of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48590, "", "=q4=Liadrin's Spaulders of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48594, "", "=q4=Liadrin's Tunic of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48593, "", "=q4=Liadrin's Gloves of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48591, "", "=q4=Liadrin's Greaves of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Holy_HolyBolt", "=q6=#t9s4_1h#", "=q5="..AL["Tier 9"]};
- { 17, 48587, "", "=q4=Liadrin's Headpiece of Triumph", "=ds=#s1#, #a4#"};
- { 18, 48585, "", "=q4=Liadrin's Spaulders of Triumph", "=ds=#s3#, #a4#"};
- { 19, 48589, "", "=q4=Liadrin's Tunic of Triumph", "=ds=#s5#, #a4#"};
- { 20, 48588, "", "=q4=Liadrin's Gloves of Triumph", "=ds=#s9#, #a4#"};
- { 21, 48586, "", "=q4=Liadrin's Greaves of Triumph", "=ds=#s11#, #a4#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Elemental"];
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#t8s7_1#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45408, "", "=q4=Valorous Worldbreaker Helm", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45410, "", "=q4=Valorous Worldbreaker Shoulderpads", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45411, "", "=q4=Valorous Worldbreaker Hauberk", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45406, "", "=q4=Valorous Worldbreaker Gloves", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45409, "", "=q4=Valorous Worldbreaker Kilt", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Nature_Lightning", "=q6=#t8s7_1#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46209, "", "=q4=Conqueror's Worldbreaker Helm", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46211, "", "=q4=Conqueror's Worldbreaker Shoulderpads", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46206, "", "=q4=Conqueror's Worldbreaker Hauberk", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46207, "", "=q4=Conqueror's Worldbreaker Gloves", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46210, "", "=q4=Conqueror's Worldbreaker Kilt", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9PaladinRetribution_A"] = {
- { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t9s4_2a#", "=q5="..AL["Tier 9"]};
- { 2, 48604, "", "=q4=Turalyon's Helm of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48606, "", "=q4=Turalyon's Shoulderplates of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48602, "", "=q4=Turalyon's Battleplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48603, "", "=q4=Turalyon's Gauntlets of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48605, "", "=q4=Turalyon's Legplates of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#t9s4_2a#", "=q5="..AL["Tier 9"]};
- { 9, 48609, "", "=q4=Turalyon's Helm of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48611, "", "=q4=Turalyon's Shoulderplates of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48607, "", "=q4=Turalyon's Battleplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48608, "", "=q4=Turalyon's Gauntlets of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48610, "", "=q4=Turalyon's Legplates of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#t9s4_2a#", "=q5="..AL["Tier 9"]};
- { 17, 48614, "", "=q4=Turalyon's Helm of Triumph", "=ds=#s1#, #a4#"};
- { 18, 48612, "", "=q4=Turalyon's Shoulderplates of Triumph", "=ds=#s3#, #a4#"};
- { 19, 48616, "", "=q4=Turalyon's Battleplate of Triumph", "=ds=#s5#, #a4#"};
- { 20, 48615, "", "=q4=Turalyon's Gauntlets of Triumph", "=ds=#s9#, #a4#"};
- { 21, 48613, "", "=q4=Turalyon's Legplates of Triumph", "=ds=#s11#, #a4#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t8s8#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45417, "", "=q4=Valorous Deathbringer Hood", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45422, "", "=q4=Valorous Deathbringer Shoulderpads", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45421, "", "=q4=Valorous Deathbringer Robe", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45419, "", "=q4=Valorous Deathbringer Gloves", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45420, "", "=q4=Valorous Deathbringer Leggings", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t8s8#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46140, "", "=q4=Conqueror's Deathbringer Hood", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46136, "", "=q4=Conqueror's Deathbringer Shoulderpads", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46137, "", "=q4=Conqueror's Deathbringer Robe", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46135, "", "=q4=Conqueror's Deathbringer Gloves", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46139, "", "=q4=Conqueror's Deathbringer Leggings", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9PaladinRetribution_H"] = {
- { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t9s4_2h#", "=q5="..AL["Tier 9"]};
- { 2, 48629, "", "=q4=Liadrin's Helm of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48627, "", "=q4=Liadrin's Shoulderplates of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48631, "", "=q4=Liadrin's Battleplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48630, "", "=q4=Liadrin's Gauntlets of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48628, "", "=q4=Liadrin's Legplates of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#t9s4_2h#", "=q5="..AL["Tier 9"]};
- { 9, 48624, "", "=q4=Liadrin's Helm of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48622, "", "=q4=Liadrin's Shoulderplates of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48626, "", "=q4=Liadrin's Battleplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48625, "", "=q4=Liadrin's Gauntlets of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48623, "", "=q4=Liadrin's Legplates of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#t9s4_2h#", "=q5="..AL["Tier 9"]};
- { 17, 48619, "", "=q4=Liadrin's Helm of Triumph", "=ds=#s1#, #a4#"};
- { 18, 48621, "", "=q4=Liadrin's Shoulderplates of Triumph", "=ds=#s3#, #a4#"};
- { 19, 48617, "", "=q4=Liadrin's Battleplate of Triumph", "=ds=#s5#, #a4#"};
- { 20, 48618, "", "=q4=Liadrin's Gauntlets of Triumph", "=ds=#s9#, #a4#"};
- { 21, 48620, "", "=q4=Liadrin's Legplates of Triumph", "=ds=#s11#, #a4#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - " .. AL["Fury"];
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t8s9_1#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45431, "", "=q4=Valorous Siegebreaker Helmet", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45433, "", "=q4=Valorous Siegebreaker Shoulderplates", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45429, "", "=q4=Valorous Siegebreaker Battleplate", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45430, "", "=q4=Valorous Siegebreaker Gauntlets", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45432, "", "=q4=Valorous Siegebreaker Legplates", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "Ability_Warrior_BattleShout", "=q6=#t8s9_1#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46151, "", "=q4=Conqueror's Siegebreaker Helmet", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46149, "", "=q4=Conqueror's Siegebreaker Shoulderplates", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46146, "", "=q4=Conqueror's Siegebreaker Battleplate", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46148, "", "=q4=Conqueror's Siegebreaker Gauntlets", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46150, "", "=q4=Conqueror's Siegebreaker Legplates", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9PaladinProtection_A"] = {
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t9s4_3a#", "=q5="..AL["Tier 9"]};
- { 2, 48634, "", "=q4=Turalyon's Faceguard of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48636, "", "=q4=Turalyon's Shoulderguards of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48632, "", "=q4=Turalyon's Breastplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48633, "", "=q4=Turalyon's Handguards of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48635, "", "=q4=Turalyon's Legguards of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Holy_SealOfMight", "=q6=#t9s4_3a#", "=q5="..AL["Tier 9"]};
- { 9, 48639, "", "=q4=Turalyon's Faceguard of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48637, "", "=q4=Turalyon's Shoulderguards of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48641, "", "=q4=Turalyon's Breastplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48640, "", "=q4=Turalyon's Handguards of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48638, "", "=q4=Turalyon's Legguards of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t9s4_3a#", "=q5="..AL["Tier 9"]};
- { 17, 48644, "", "=q4=Turalyon's Faceguard of Triumph", "=ds=#s1#, #a4#"};
- { 18, 48646, "", "=q4=Turalyon's Shoulderguards of Triumph", "=ds=#s3#, #a4#"};
- { 19, 48642, "", "=q4=Turalyon's Breastplate of Triumph", "=ds=#s5#, #a4#"};
- { 20, 48643, "", "=q4=Turalyon's Handguards of Triumph", "=ds=#s9#, #a4#"};
- { 21, 48645, "", "=q4=Turalyon's Legguards of Triumph", "=ds=#s11#, #a4#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - " .. AL["Protection"];
+ { 1, 0, "INV_Shield_05", "=q6=#t8s9_2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["10 Man"] .. ")" };
+ { 2, 45425, "", "=q4=Valorous Siegebreaker Greathelm", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 3, 45428, "", "=q4=Valorous Siegebreaker Pauldrons", "=ds=" .. BabbleBoss.Thorim };
+ { 4, 45424, "", "=q4=Valorous Siegebreaker Breastplate", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 5, 45426, "", "=q4=Valorous Siegebreaker Handguards", "=ds=" .. BabbleBoss.Freya };
+ { 6, 45427, "", "=q4=Valorous Siegebreaker Legguards", "=ds=" .. BabbleBoss.Hodir };
+ { 7, 0, "INV_Shield_05", "=q6=#t8s9_2#", "=q5=" .. AL["Tier 8"] .. " (" .. AL["25 Man"] .. ")" };
+ { 8, 46166, "", "=q4=Conqueror's Siegebreaker Greathelm", "=ds=" .. BabbleBoss.Thorim };
+ { 9, 46167, "", "=q4=Conqueror's Siegebreaker Pauldrons", "=ds=" .. BabbleBoss["Yogg-Saron"] };
+ { 10, 46162, "", "=q4=Conqueror's Siegebreaker Breastplate", "=ds=" .. BabbleBoss.Hodir };
+ { 11, 46164, "", "=q4=Conqueror's Siegebreaker Handguards", "=ds=" .. BabbleBoss["Mimiron"] };
+ { 12, 46169, "", "=q4=Conqueror's Siegebreaker Legguards", "=ds=" .. BabbleBoss.Freya };
};
-
- AtlasLoot_Data["T9PaladinProtection_H"] = {
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t9s4_3h#", "=q5="..AL["Tier 9"]};
- { 2, 48654, "", "=q4=Liadrin's Faceguard of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48656, "", "=q4=Liadrin's Shoulderguards of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48652, "", "=q4=Liadrin's Breastplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48653, "", "=q4=Liadrin's Handguards of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48655, "", "=q4=Liadrin's Legguards of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Holy_SealOfMight", "=q6=#t9s4_3h#", "=q5="..AL["Tier 9"]};
- { 9, 48659, "", "=q4=Liadrin's Faceguard of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48661, "", "=q4=Liadrin's Shoulderguards of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48657, "", "=q4=Liadrin's Breastplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48658, "", "=q4=Liadrin's Handguards of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48660, "", "=q4=Liadrin's Legguards of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t9s4_3h#", "=q5="..AL["Tier 9"]};
- { 17, 48649, "", "=q4=Liadrin's Faceguard of Triumph", "=ds=#s1#, #a4#"};
- { 18, 48647, "", "=q4=Liadrin's Shoulderguards of Triumph", "=ds=#s3#, #a4#"};
- { 19, 48651, "", "=q4=Liadrin's Breastplate of Triumph", "=ds=#s5#, #a4#"};
- { 20, 48650, "", "=q4=Liadrin's Handguards of Triumph", "=ds=#s9#, #a4#"};
- { 21, 48648, "", "=q4=Liadrin's Legguards of Triumph", "=ds=#s11#, #a4#"};
- Back = "T9SET";
+};
+------------------------
+--- Tier 9 Sets (T9) ---
+------------------------
+AtlasLoot_Data["T9"] = {
+ Name = "Tier 9";
+ Type = "WrathRaid";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"] .. " DPS";
+ { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_2a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48472, "", "=q4=Thassarian's Helmet of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48478, "", "=q4=Thassarian's Shoulderplates of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48474, "", "=q4=Thassarian's Battleplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48480, "", "=q4=Thassarian's Gauntlets of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48476, "", "=q4=Thassarian's Legplates of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_2a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48483, "", "=q4=Thassarian's Helmet of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48485, "", "=q4=Thassarian's Shoulderplates of Triumph", "=ds=#s3#, #a4#","45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48481, "", "=q4=Thassarian's Battleplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48482, "", "=q4=Thassarian's Gauntlets of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48484, "", "=q4=Thassarian's Legplates of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_2a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48488, "", "=q4=Thassarian's Helmet of Triumph", "=ds=" };
+ { 18, 48486, "", "=q4=Thassarian's Shoulderplates of Triumph", "=ds=" };
+ { 19, 48490, "", "=q4=Thassarian's Battleplate of Triumph", "=ds=" };
+ { 20, 48489, "", "=q4=Thassarian's Gauntlets of Triumph", "=ds=" };
+ { 21, 48487, "", "=q4=Thassarian's Legplates of Triumph", "=ds=" };
};
-
- AtlasLoot_Data["T9PriestShadow_A"] = {
- { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t9s5_1a#", "=q5="..AL["Tier 9"]};
- { 2, 48073, "", "=q4=Velen's Circlet of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#"};
- { 3, 48076, "", "=q4=Velen's Mantle of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#"};
- { 4, 48075, "", "=q4=Velen's Raiments of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#"};
- { 5, 48072, "", "=q4=Velen's Handwraps of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#"};
- { 6, 48074, "", "=q4=Velen's Pants of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#t9s5_1a#", "=q5="..AL["Tier 9"]};
- { 9, 48078, "", "=q4=Velen's Circlet of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48081, "", "=q4=Velen's Mantle of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48080, "", "=q4=Velen's Raiments of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48077, "", "=q4=Velen's Handwraps of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48079, "", "=q4=Velen's Pants of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#t9s5_1a#", "=q5="..AL["Tier 9"]};
- { 17, 48085, "", "=q4=Velen's Circlet of Triumph", "=ds=#s1#, #a1#"};
- { 18, 48082, "", "=q4=Velen's Mantle of Triumph", "=ds=#s3#, #a1#"};
- { 19, 48083, "", "=q4=Velen's Raiments of Triumph", "=ds=#s5#, #a1#"};
- { 20, 48086, "", "=q4=Velen's Handwraps of Triumph", "=ds=#s9#, #a1#"};
- { 21, 48084, "", "=q4=Velen's Pants of Triumph", "=ds=#s11#, #a1#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"] .. " DPS";
+ { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_2h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48503, "", "=q4=Koltira's Helmet of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48505, "", "=q4=Koltira's Shoulderplates of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48501, "", "=q4=Koltira's Battleplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48502, "", "=q4=Koltira's Gauntlets of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48504, "", "=q4=Koltira's Legplates of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_2h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48498, "", "=q4=Koltira's Helmet of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48496, "", "=q4=Koltira's Shoulderplates of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48500, "", "=q4=Koltira's Battleplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48499, "", "=q4=Koltira's Gauntlets of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48497, "", "=q4=Koltira's Legplates of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_2h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48493, "", "=q4=Koltira's Helmet of Triumph", "=ds=" };
+ { 18, 48495, "", "=q4=Koltira's Shoulderplates of Triumph", "=ds=" };
+ { 19, 48491, "", "=q4=Koltira's Battleplate of Triumph", "=ds=" };
+ { 20, 48492, "", "=q4=Koltira's Gauntlets of Triumph", "=ds=" };
+ { 21, 48494, "", "=q4=Koltira's Legplates of Triumph", "=ds=" };
};
-
- AtlasLoot_Data["T9PriestShadow_H"] = {
- { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t9s5_1h#", "=q5="..AL["Tier 9"]};
- { 2, 48098, "", "=q4=Zabra's Circlet of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#"};
- { 3, 48101, "", "=q4=Zabra's Mantle of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#"};
- { 4, 48100, "", "=q4=Zabra's Raiments of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#"};
- { 5, 48097, "", "=q4=Zabra's Handwraps of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#"};
- { 6, 48099, "", "=q4=Zabra's Pants of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#t9s5_1h#", "=q5="..AL["Tier 9"]};
- { 9, 48095, "", "=q4=Zabra's Circlet of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48092, "", "=q4=Zabra's Mantle of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48093, "", "=q4=Zabra's Raiments of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48096, "", "=q4=Zabra's Handwraps of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48094, "", "=q4=Zabra's Pants of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#t9s5_1h#", "=q5="..AL["Tier 9"]};
- { 17, 48088, "", "=q4=Zabra's Circlet of Triumph", "=ds=#s1#, #a1#"};
- { 18, 48091, "", "=q4=Zabra's Mantle of Triumph", "=ds=#s3#, #a1#"};
- { 19, 48090, "", "=q4=Zabra's Raiments of Triumph", "=ds=#s5#, #a1#"};
- { 20, 48087, "", "=q4=Zabra's Handwraps of Triumph", "=ds=#s9#, #a1#"};
- { 21, 48089, "", "=q4=Zabra's Pants of Triumph", "=ds=#s11#, #a1#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"] .. " TANK";
+ { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_1a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48529, "", "=q4=Thassarian's Faceguard of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48535, "", "=q4=Thassarian's Pauldrons of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48531, "", "=q4=Thassarian's Chestguard of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48537, "", "=q4=Thassarian's Handguards of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48533, "", "=q4=Thassarian's Legguards of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_1a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48540, "", "=q4=Thassarian's Faceguard of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48542, "", "=q4=Thassarian's Pauldrons of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48538, "", "=q4=Thassarian's Chestguard of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48539, "", "=q4=Thassarian's Handguards of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48541, "", "=q4=Thassarian's Legguards of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_1a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48545, "", "=q4=Thassarian's Faceguard of Triumph", "=ds=" };
+ { 18, 48543, "", "=q4=Thassarian's Pauldrons of Triumph", "=ds=" };
+ { 19, 48547, "", "=q4=Thassarian's Chestguard of Triumph", "=ds=" };
+ { 20, 48546, "", "=q4=Thassarian's Handguards of Triumph", "=ds=" };
+ { 21, 48544, "", "=q4=Thassarian's Legguards of Triumph", "=ds=" };
};
-
- AtlasLoot_Data["T9PriestHoly_A"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t9s5_2a#", "=q5="..AL["Tier 9"]};
- { 2, 47914, "", "=q4=Velen's Cowl of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#"};
- { 3, 47981, "", "=q4=Velen's Shoulderpads of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#"};
- { 4, 47936, "", "=q4=Velen's Robe of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#"};
- { 5, 47982, "", "=q4=Velen's Gloves of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#"};
- { 6, 47980, "", "=q4=Velen's Leggings of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#t9s5_2a#", "=q5="..AL["Tier 9"]};
- { 9, 47984, "", "=q4=Velen's Cowl of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 47987, "", "=q4=Velen's Shoulderpads of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 47986, "", "=q4=Velen's Robe of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 47983, "", "=q4=Velen's Gloves of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 47985, "", "=q4=Velen's Leggings of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t9s5_2a#", "=q5="..AL["Tier 9"]};
- { 17, 48035, "", "=q4=Velen's Cowl of Triumph", "=ds=#s1#, #a1#"};
- { 18, 48029, "", "=q4=Velen's Shoulderpads of Triumph", "=ds=#s3#, #a1#"};
- { 19, 48031, "", "=q4=Velen's Robe of Triumph", "=ds=#s5#, #a1#"};
- { 20, 48037, "", "=q4=Velen's Gloves of Triumph", "=ds=#s9#, #a1#"};
- { 21, 48033, "", "=q4=Velen's Leggings of Triumph", "=ds=#s11#, #a1#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"] .. " TANK";
+ { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_1h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48560, "", "=q4=Koltira's Faceguard of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48562, "", "=q4=Koltira's Pauldrons of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48558, "", "=q4=Koltira's Chestguard of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48559, "", "=q4=Koltira's Handguards of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48561, "", "=q4=Koltira's Legguards of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_1h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48555, "", "=q4=Koltira's Faceguard of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48553, "", "=q4=Koltira's Pauldrons of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48557, "", "=q4=Koltira's Chestguard of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48556, "", "=q4=Koltira's Handguards of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48554, "", "=q4=Koltira's Legguards of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t9s10_1h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48550, "", "=q4=Koltira's Faceguard of Triumph", "=ds=" };
+ { 18, 48552, "", "=q4=Koltira's Pauldrons of Triumph", "=ds=" };
+ { 19, 48548, "", "=q4=Koltira's Chestguard of Triumph", "=ds=" };
+ { 20, 48549, "", "=q4=Koltira's Handguards of Triumph", "=ds=" };
+ { 21, 48551, "", "=q4=Koltira's Legguards of Triumph", "=ds=" };
};
-
- AtlasLoot_Data["T9PriestHoly_H"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t9s5_2h#", "=q5="..AL["Tier 9"]};
- { 2, 48068, "", "=q4=Zabra's Cowl of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#"};
- { 3, 48071, "", "=q4=Zabra's Shoulderpads of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#"};
- { 4, 48070, "", "=q4=Zabra's Robe of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#"};
- { 5, 48067, "", "=q4=Zabra's Gloves of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#"};
- { 6, 48069, "", "=q4=Zabra's Leggings of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#t9s5_2h#", "=q5="..AL["Tier 9"]};
- { 9, 48065, "", "=q4=Zabra's Cowl of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48062, "", "=q4=Zabra's Shoulderpads of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48063, "", "=q4=Zabra's Robe of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48066, "", "=q4=Zabra's Gloves of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48064, "", "=q4=Zabra's Leggings of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t9s5_2h#", "=q5="..AL["Tier 9"]};
- { 17, 48058, "", "=q4=Zabra's Cowl of Triumph", "=ds=#s1#, #a1#"};
- { 18, 48061, "", "=q4=Zabra's Shoulderpads of Triumph", "=ds=#s3#, #a1#"};
- { 19, 48060, "", "=q4=Zabra's Robe of Triumph", "=ds=#s5#, #a1#"};
- { 20, 48057, "", "=q4=Zabra's Gloves of Triumph", "=ds=#s9#, #a1#"};
- { 21, 48059, "", "=q4=Zabra's Leggings of Triumph", "=ds=#s11#, #a1#"};
- Back = "T9SET";
+ {
+ Name = "Druid" .. " - " .. AL["Restoration"];
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t9s1_1a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48102, "", "=q4=Malfurion's Headpiece of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#" };
+ { 3, 48131, "", "=q4=Malfurion's Spaulders of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#" };
+ { 4, 48129, "", "=q4=Malfurion's Robe of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#" };
+ { 5, 48132, "", "=q4=Malfurion's Handguards of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#" };
+ { 6, 48130, "", "=q4=Malfurion's Leggings of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Nature_Regeneration", "=q6=#t9s1_1a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48134, "", "=q4=Malfurion's Headpiece of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48137, "", "=q4=Malfurion's Spaulders of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48136, "", "=q4=Malfurion's Robe of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48133, "", "=q4=Malfurion's Handguards of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48135, "", "=q4=Malfurion's Leggings of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Nature_Regeneration", "=q6=#t9s1_1a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48141, "", "=q4=Malfurion's Headpiece of Triumph", "=ds=" };
+ { 18, 48138, "", "=q4=Malfurion's Spaulders of Triumph", "=ds=" };
+ { 19, 48139, "", "=q4=Malfurion's Robe of Triumph", "=ds=" };
+ { 20, 48142, "", "=q4=Malfurion's Handguards of Triumph", "=ds=" };
+ { 21, 48140, "", "=q4=Malfurion's Leggings of Triumph", "=ds=" };
};
-
- AtlasLoot_Data["T9Rogue_A"] = {
- { 1, 0, "Ability_BackStab", "=q6=#t9s6_a#", "=q5="..AL["Tier 9"]};
- { 2, 48218, "", "=q4=VanCleef's Helmet of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#"};
- { 3, 48221, "", "=q4=VanCleef's Pauldrons of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#"};
- { 4, 48219, "", "=q4=VanCleef's Breastplate of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#"};
- { 5, 48222, "", "=q4=VanCleef's Gauntlets of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#"};
- { 6, 48220, "", "=q4=VanCleef's Legplates of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#"};
- { 8, 0, "Ability_BackStab", "=q6=#t9s6_a#", "=q5="..AL["Tier 9"]};
- { 9, 48225, "", "=q4=VanCleef's Helmet of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48227, "", "=q4=VanCleef's Pauldrons of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48223, "", "=q4=VanCleef's Breastplate of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48224, "", "=q4=VanCleef's Gauntlets of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48226, "", "=q4=VanCleef's Legplates of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Ability_BackStab", "=q6=#t9s6_a#", "=q5="..AL["Tier 9"]};
- { 17, 48230, "", "=q4=VanCleef's Helmet of Triumph", "=ds=#s1#, #a2#"};
- { 18, 48228, "", "=q4=VanCleef's Pauldrons of Triumph", "=ds=#s3#, #a2#"};
- { 19, 48232, "", "=q4=VanCleef's Breastplate of Triumph", "=ds=#s5#, #a2#"};
- { 20, 48231, "", "=q4=VanCleef's Gauntlets of Triumph", "=ds=#s9#, #a2#"};
- { 21, 48229, "", "=q4=VanCleef's Legplates of Triumph", "=ds=#s11#, #a2#"};
- Back = "T9SET";
+ {
+ Name = "Druid" .. " - " .. AL["Restoration"];
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t9s1_1h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48154, "", "=q4=Runetotem's Headpiece of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#" };
+ { 3, 48157, "", "=q4=Runetotem's Spaulders of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#" };
+ { 4, 48156, "", "=q4=Runetotem's Robe of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#" };
+ { 5, 48153, "", "=q4=Runetotem's Handguards of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#" };
+ { 6, 48155, "", "=q4=Runetotem's Leggings of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Nature_Regeneration", "=q6=#t9s1_1h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48151, "", "=q4=Runetotem's Headpiece of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48148, "", "=q4=Runetotem's Spaulders of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48149, "", "=q4=Runetotem's Robe of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48152, "", "=q4=Runetotem's Handguards of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48150, "", "=q4=Runetotem's Leggings of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Nature_Regeneration", "=q6=#t9s1_1h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48144, "", "=q4=Runetotem's Headpiece of Triumph", "=ds=" };
+ { 18, 48147, "", "=q4=Runetotem's Spaulders of Triumph", "=ds=" };
+ { 19, 48146, "", "=q4=Runetotem's Robe of Triumph", "=ds=" };
+ { 20, 48143, "", "=q4=Runetotem's Handguards of Triumph", "=ds=" };
+ { 21, 48145, "", "=q4=Runetotem's Leggings of Triumph", "=ds=" };
};
-
- AtlasLoot_Data["T9Rogue_H"] = {
- { 1, 0, "Ability_BackStab", "=q6=#t9s6_h#", "=q5="..AL["Tier 9"]};
- { 2, 48245, "", "=q4=Garona's Helmet of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#"};
- { 3, 48247, "", "=q4=Garona's Pauldrons of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#"};
- { 4, 48243, "", "=q4=Garona's Breastplate of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#"};
- { 5, 48244, "", "=q4=Garona's Gauntlets of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#"};
- { 6, 48246, "", "=q4=Garona's Legplates of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#"};
- { 8, 0, "Ability_BackStab", "=q6=#t9s6_h#", "=q5="..AL["Tier 9"]};
- { 9, 48240, "", "=q4=Garona's Helmet of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48238, "", "=q4=Garona's Pauldrons of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48242, "", "=q4=Garona's Breastplate of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48241, "", "=q4=Garona's Gauntlets of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48239, "", "=q4=Garona's Legplates of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Ability_BackStab", "=q6=#t9s6_h#", "=q5="..AL["Tier 9"]};
- { 17, 48235, "", "=q4=Garona's Helmet of Triumph", "=ds=#s1#, #a2#"};
- { 18, 48237, "", "=q4=Garona's Pauldrons of Triumph", "=ds=#s3#, #a2#"};
- { 19, 48233, "", "=q4=Garona's Breastplate of Triumph", "=ds=#s5#, #a2#"};
- { 20, 48234, "", "=q4=Garona's Gauntlets of Triumph", "=ds=#s9#, #a2#"};
- { 21, 48236, "", "=q4=Garona's Legplates of Triumph", "=ds=#s11#, #a2#"};
- Back = "T9SET";
+ {
+ Name = "Druid" .. " - " .. AL["Feral"];
+ { 1, 0, "Ability_Druid_Maul", "=q6=#t9s1_2a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48214, "", "=q4=Malfurion's Headguard of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#" };
+ { 3, 48217, "", "=q4=Malfurion's Shoulderpads of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#" };
+ { 4, 48216, "", "=q4=Malfurion's Raiments of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#" };
+ { 5, 48213, "", "=q4=Malfurion's Handgrips of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#" };
+ { 6, 48215, "", "=q4=Malfurion's Legguards of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#" };
+ { 8, 0, "Ability_Druid_Maul", "=q6=#t9s1_2a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48211, "", "=q4=Malfurion's Headguard of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48208, "", "=q4=Malfurion's Shoulderpads of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48209, "", "=q4=Malfurion's Raiments of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48212, "", "=q4=Malfurion's Handgrips of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48210, "", "=q4=Malfurion's Legguards of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Ability_Druid_Maul", "=q6=#t9s1_2a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48204, "", "=q4=Malfurion's Headguard of Triumph", "=ds=" };
+ { 18, 48207, "", "=q4=Malfurion's Shoulderpads of Triumph", "=ds=" };
+ { 19, 48206, "", "=q4=Malfurion's Raiments of Triumph", "=ds=" };
+ { 20, 48203, "", "=q4=Malfurion's Handgrips of Triumph", "=ds=" };
+ { 21, 48205, "", "=q4=Malfurion's Legguards of Triumph", "=ds=" };
};
-
- AtlasLoot_Data["T9ShamanElemental_A"] = {
- { 1, 0, "Spell_Nature_Lightning", "=q6=#t9s7_3a#", "=q5="..AL["Tier 9"]};
- { 2, 48313, "", "=q4=Nobundo's Helm of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#"};
- { 3, 48315, "", "=q4=Nobundo's Shoulderpads of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#"};
- { 4, 48310, "", "=q4=Nobundo's Hauberk of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#"};
- { 5, 48312, "", "=q4=Nobundo's Gloves of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#"};
- { 6, 48314, "", "=q4=Nobundo's Kilt of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Nature_Lightning", "=q6=#t9s7_3a#", "=q5="..AL["Tier 9"]};
- { 9, 48318, "", "=q4=Nobundo's Helm of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48320, "", "=q4=Nobundo's Shoulderpads of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48316, "", "=q4=Nobundo's Hauberk of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48317, "", "=q4=Nobundo's Gloves of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48319, "", "=q4=Nobundo's Kilt of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Nature_Lightning", "=q6=#t9s7_3a#", "=q5="..AL["Tier 9"]};
- { 17, 48323, "", "=q4=Nobundo's Helm of Triumph", "=ds=#s1#, #a3#"};
- { 18, 48321, "", "=q4=Nobundo's Shoulderpads of Triumph", "=ds=#s3#, #a3#"};
- { 19, 48325, "", "=q4=Nobundo's Hauberk of Triumph", "=ds=#s5#, #a3#"};
- { 20, 48324, "", "=q4=Nobundo's Gloves of Triumph", "=ds=#s9#, #a3#"};
- { 21, 48322, "", "=q4=Nobundo's Kilt of Triumph", "=ds=#s11#, #a3#"};
- Back = "T9SET";
+ {
+ Name = "Druid" .. " - " .. AL["Feral"];
+ { 1, 0, "Ability_Druid_Maul", "=q6=#t9s1_2h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48188, "", "=q4=Runetotem's Headguard of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#" };
+ { 3, 48191, "", "=q4=Runetotem's Shoulderpads of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#" };
+ { 4, 48189, "", "=q4=Runetotem's Raiments of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#" };
+ { 5, 48192, "", "=q4=Runetotem's Handgrips of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#" };
+ { 6, 48190, "", "=q4=Runetotem's Legguards of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#" };
+ { 8, 0, "Ability_Druid_Maul", "=q6=#t9s1_2h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48194, "", "=q4=Runetotem's Headguard of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48197, "", "=q4=Runetotem's Shoulderpads of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48196, "", "=q4=Runetotem's Raiments of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48193, "", "=q4=Runetotem's Handgrips of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48195, "", "=q4=Runetotem's Legguards of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Ability_Druid_Maul", "=q6=#t9s1_2h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48201, "", "=q4=Runetotem's Headguard of Triumph", "=ds=" };
+ { 18, 48198, "", "=q4=Runetotem's Shoulderpads of Triumph", "=ds=" };
+ { 19, 48199, "", "=q4=Runetotem's Raiments of Triumph", "=ds=" };
+ { 20, 48202, "", "=q4=Runetotem's Handgrips of Triumph", "=ds=" };
+ { 21, 48200, "", "=q4=Runetotem's Legguards of Triumph", "=ds=" };
};
-
- AtlasLoot_Data["T9ShamanElemental_H"] = {
- { 1, 0, "Spell_Nature_Lightning", "=q6=#t9s7_3h#", "=q5="..AL["Tier 9"]};
- { 2, 48338, "", "=q4=Thrall's Helm of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#"};
- { 3, 48340, "", "=q4=Thrall's Shoulderpads of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#"};
- { 4, 48336, "", "=q4=Thrall's Hauberk of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#"};
- { 5, 48337, "", "=q4=Thrall's Gloves of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#"};
- { 6, 48339, "", "=q4=Thrall's Kilt of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Nature_Lightning", "=q6=#t9s7_3h#", "=q5="..AL["Tier 9"]};
- { 9, 48333, "", "=q4=Thrall's Helm of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48331, "", "=q4=Thrall's Shoulderpads of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48335, "", "=q4=Thrall's Hauberk of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48334, "", "=q4=Thrall's Gloves of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48332, "", "=q4=Thrall's Kilt of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Nature_Lightning", "=q6=#t9s7_3h#", "=q5="..AL["Tier 9"]};
- { 17, 48328, "", "=q4=Thrall's Helm of Triumph", "=ds=#s1#, #a3#"};
- { 18, 48330, "", "=q4=Thrall's Shoulderpads of Triumph", "=ds=#s3#, #a3#"};
- { 19, 48326, "", "=q4=Thrall's Hauberk of Triumph", "=ds=#s5#, #a3#"};
- { 20, 48327, "", "=q4=Thrall's Gloves of Triumph", "=ds=#s9#, #a3#"};
- { 21, 48329, "", "=q4=Thrall's Kilt of Triumph", "=ds=#s11#, #a3#"};
- Back = "T9SET";
+ {
+ Name = "Druid" .. " - " .. AL["Balance"];
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t9s1_3a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48158, "", "=q4=Malfurion's Cover of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#" };
+ { 3, 48161, "", "=q4=Malfurion's Mantle of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#" };
+ { 4, 48159, "", "=q4=Malfurion's Vestments of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#" };
+ { 5, 48162, "", "=q4=Malfurion's Gloves of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#" };
+ { 6, 48160, "", "=q4=Malfurion's Trousers of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#t9s1_3a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48164, "", "=q4=Malfurion's Cover of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48167, "", "=q4=Malfurion's Mantle of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48166, "", "=q4=Malfurion's Vestments of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48163, "", "=q4=Malfurion's Gloves of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48165, "", "=q4=Malfurion's Trousers of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#t9s1_3a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48171, "", "=q4=Malfurion's Cover of Triumph", "=ds=" };
+ { 18, 48168, "", "=q4=Malfurion's Mantle of Triumph", "=ds=" };
+ { 19, 48169, "", "=q4=Malfurion's Vestments of Triumph", "=ds=" };
+ { 20, 48172, "", "=q4=Malfurion's Gloves of Triumph", "=ds=" };
+ { 21, 48170, "", "=q4=Malfurion's Trousers of Triumph", "=ds=" };
};
-
- AtlasLoot_Data["T9ShamanEnhancement_A"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t9s7_2a#", "=q5="..AL["Tier 9"]};
- { 2, 48343, "", "=q4=Nobundo's Faceguard of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#"};
- { 3, 48345, "", "=q4=Nobundo's Shoulderguards of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#"};
- { 4, 48341, "", "=q4=Nobundo's Chestguard of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#"};
- { 5, 48342, "", "=q4=Nobundo's Grips of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#"};
- { 6, 48344, "", "=q4=Nobundo's War-Kilt of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#"};
- { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#t9s7_2a#", "=q5="..AL["Tier 9"]};
- { 9, 48348, "", "=q4=Nobundo's Faceguard of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48350, "", "=q4=Nobundo's Shoulderguards of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48346, "", "=q4=Nobundo's Chestguard of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48347, "", "=q4=Nobundo's Grips of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48349, "", "=q4=Nobundo's War-Kilt of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t9s7_2a#", "=q5="..AL["Tier 9"]};
- { 17, 48353, "", "=q4=Nobundo's Faceguard of Triumph", "=ds=#s1#, #a3#"};
- { 18, 48351, "", "=q4=Nobundo's Shoulderguards of Triumph", "=ds=#s3#, #a3#"};
- { 19, 48355, "", "=q4=Nobundo's Chestguard of Triumph", "=ds=#s5#, #a3#"};
- { 20, 48354, "", "=q4=Nobundo's Grips of Triumph", "=ds=#s9#, #a3#"};
- { 21, 48352, "", "=q4=Nobundo's War-Kilt of Triumph", "=ds=#s11#, #a3#"};
- Back = "T9SET";
+ {
+ Name = "Druid" .. " - " .. AL["Balance"];
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t9s1_3h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48184, "", "=q4=Runetotem's Cover of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#" };
+ { 3, 48187, "", "=q4=Runetotem's Mantle of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#" };
+ { 4, 48186, "", "=q4=Runetotem's Vestments of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#" };
+ { 5, 48183, "", "=q4=Runetotem's Gloves of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#" };
+ { 6, 48185, "", "=q4=Runetotem's Trousers of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#t9s1_3h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48181, "", "=q4=Runetotem's Cover of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48178, "", "=q4=Runetotem's Mantle of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48179, "", "=q4=Runetotem's Vestments of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48182, "", "=q4=Runetotem's Gloves of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48180, "", "=q4=Runetotem's Trousers of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#t9s1_3h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48174, "", "=q4=Runetotem's Cover of Triumph", "=ds=" };
+ { 18, 48177, "", "=q4=Runetotem's Mantle of Triumph", "=ds=" };
+ { 19, 48176, "", "=q4=Runetotem's Vestments of Triumph", "=ds=" };
+ { 20, 48173, "", "=q4=Runetotem's Gloves of Triumph", "=ds=" };
+ { 21, 48175, "", "=q4=Runetotem's Trousers of Triumph", "=ds=" };
};
-
- AtlasLoot_Data["T9ShamanEnhancement_H"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t9s7_2h#", "=q5="..AL["Tier 9"]};
- { 2, 48368, "", "=q4=Thrall's Faceguard of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#"};
- { 3, 48370, "", "=q4=Thrall's Shoulderguards of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#"};
- { 4, 48366, "", "=q4=Thrall's Chestguard of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#"};
- { 5, 48367, "", "=q4=Thrall's Grips of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#"};
- { 6, 48369, "", "=q4=Thrall's War-Kilt of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#"};
- { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#t9s7_2h#", "=q5="..AL["Tier 9"]};
- { 9, 48363, "", "=q4=Thrall's Faceguard of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48361, "", "=q4=Thrall's Shoulderguards of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48365, "", "=q4=Thrall's Chestguard of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48364, "", "=q4=Thrall's Grips of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48362, "", "=q4=Thrall's War-Kilt of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t9s7_2h#", "=q5="..AL["Tier 9"]};
- { 17, 48358, "", "=q4=Thrall's Faceguard of Triumph", "=ds=#s1#, #a3#"};
- { 18, 48360, "", "=q4=Thrall's Shoulderguards of Triumph", "=ds=#s3#, #a3#"};
- { 19, 48356, "", "=q4=Thrall's Chestguard of Triumph", "=ds=#s5#, #a3#"};
- { 20, 48357, "", "=q4=Thrall's Grips of Triumph", "=ds=#s9#, #a3#"};
- { 21, 48359, "", "=q4=Thrall's War-Kilt of Triumph", "=ds=#s11#, #a3#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t9s2_a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48250, "", "=q4=Windrunner's Headpiece of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#" };
+ { 3, 48253, "", "=q4=Windrunner's Spaulders of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#" };
+ { 4, 48251, "", "=q4=Windrunner's Tunic of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#" };
+ { 5, 48254, "", "=q4=Windrunner's Handguards of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#" };
+ { 6, 48252, "", "=q4=Windrunner's Legguards of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#" };
+ { 8, 0, "Ability_Hunter_RunningShot", "=q6=#t9s2_a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48257, "", "=q4=Windrunner's Headpiece of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48259, "", "=q4=Windrunner's Spaulders of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48255, "", "=q4=Windrunner's Tunic of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48256, "", "=q4=Windrunner's Handguards of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48258, "", "=q4=Windrunner's Legguards of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t9s2_h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48262, "", "=q4=Windrunner's Headpiece of Triumph", "=ds=#s1#, #a3#" };
+ { 18, 48260, "", "=q4=Windrunner's Spaulders of Triumph", "=ds=#s3#, #a3#" };
+ { 19, 48264, "", "=q4=Windrunner's Tunic of Triumph", "=ds=#s5#, #a3#" };
+ { 20, 48263, "", "=q4=Windrunner's Handguards of Triumph", "=ds=#s9#, #a3#" };
+ { 21, 48261, "", "=q4=Windrunner's Legguards of Triumph", "=ds=#s11#, #a3#" };
};
-
- AtlasLoot_Data["T9ShamanRestoration_A"] = {
- { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t9s7_1a#", "=q5="..AL["Tier 9"]};
- { 2, 48280, "", "=q4=Nobundo's Headpiece of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#"};
- { 3, 48283, "", "=q4=Nobundo's Spaulders of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#"};
- { 4, 48281, "", "=q4=Nobundo's Tunic of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#"};
- { 5, 48284, "", "=q4=Nobundo's Handguards of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#"};
- { 6, 48282, "", "=q4=Nobundo's Legguards of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t9s7_1a#", "=q5="..AL["Tier 9"]};
- { 9, 48287, "", "=q4=Nobundo's Headpiece of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48289, "", "=q4=Nobundo's Spaulders of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48285, "", "=q4=Nobundo's Tunic of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48286, "", "=q4=Nobundo's Handguards of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48288, "", "=q4=Nobundo's Legguards of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t9s7_1a#", "=q5="..AL["Tier 9"]};
- { 17, 48292, "", "=q4=Nobundo's Headpiece of Triumph", "=ds=#s1#, #a3#"};
- { 18, 48290, "", "=q4=Nobundo's Spaulders of Triumph", "=ds=#s3#, #a3#"};
- { 19, 48294, "", "=q4=Nobundo's Tunic of Triumph", "=ds=#s5#, #a3#"};
- { 20, 48293, "", "=q4=Nobundo's Handguards of Triumph", "=ds=#s9#, #a3#"};
- { 21, 48291, "", "=q4=Nobundo's Legguards of Triumph", "=ds=#s11#, #a3#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t9s2_h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48277, "", "=q4=Windrunner's Headpiece of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#" };
+ { 3, 48279, "", "=q4=Windrunner's Spaulders of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#" };
+ { 4, 48275, "", "=q4=Windrunner's Tunic of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#" };
+ { 5, 48276, "", "=q4=Windrunner's Handguards of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#" };
+ { 6, 48278, "", "=q4=Windrunner's Legguards of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#" };
+ { 8, 0, "Ability_Hunter_RunningShot", "=q6=#t9s2_h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48272, "", "=q4=Windrunner's Headpiece of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48270, "", "=q4=Windrunner's Spaulders of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48274, "", "=q4=Windrunner's Tunic of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48273, "", "=q4=Windrunner's Handguards of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48271, "", "=q4=Windrunner's Legguards of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t9s2_h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48267, "", "=q4=Windrunner's Headpiece of Triumph", "=ds=#s1#, #a3#" };
+ { 18, 48269, "", "=q4=Windrunner's Spaulders of Triumph", "=ds=#s3#, #a3#" };
+ { 19, 48265, "", "=q4=Windrunner's Tunic of Triumph", "=ds=#s5#, #a3#" };
+ { 20, 48266, "", "=q4=Windrunner's Handguards of Triumph", "=ds=#s9#, #a3#" };
+ { 21, 48268, "", "=q4=Windrunner's Legguards of Triumph", "=ds=#s11#, #a3#" };
};
-
- AtlasLoot_Data["T9ShamanRestoration_H"] = {
- { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t9s7_1h#", "=q5="..AL["Tier 9"]};
- { 2, 48297, "", "=q4=Thrall's Headpiece of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#"};
- { 3, 48299, "", "=q4=Thrall's Spaulders of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#"};
- { 4, 48295, "", "=q4=Thrall's Tunic of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#"};
- { 5, 48296, "", "=q4=Thrall's Handguards of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#"};
- { 6, 48298, "", "=q4=Thrall's Legguards of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t9s7_1h#", "=q5="..AL["Tier 9"]};
- { 9, 48302, "", "=q4=Thrall's Headpiece of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48304, "", "=q4=Thrall's Spaulders of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48300, "", "=q4=Thrall's Tunic of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48301, "", "=q4=Thrall's Handguards of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48303, "", "=q4=Thrall's Legguards of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t9s7_1h#", "=q5="..AL["Tier 9"]};
- { 17, 48307, "", "=q4=Thrall's Headpiece of Triumph", "=ds=#s1#, #a3#"};
- { 18, 48309, "", "=q4=Thrall's Spaulders of Triumph", "=ds=#s3#, #a3#"};
- { 19, 48305, "", "=q4=Thrall's Tunic of Triumph", "=ds=#s5#, #a3#"};
- { 20, 48306, "", "=q4=Thrall's Handguards of Triumph", "=ds=#s9#, #a3#"};
- { 21, 48308, "", "=q4=Thrall's Legguards of Triumph", "=ds=#s11#, #a3#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t9s3_a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 47748, "", "=q4=Khadgar's Hood of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#" };
+ { 3, 47751, "", "=q4=Khadgar's Shoulderpads of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#" };
+ { 4, 47749, "", "=q4=Khadgar's Robe of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#" };
+ { 5, 47752, "", "=q4=Khadgar's Gauntlets of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#" };
+ { 6, 47750, "", "=q4=Khadgar's Leggings of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Frost_IceStorm", "=q6=#t9s3_a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 47754, "", "=q4=Khadgar's Hood of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 47757, "", "=q4=Khadgar's Shoulderpads of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 47756, "", "=q4=Khadgar's Robe of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 47753, "", "=q4=Khadgar's Gauntlets of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 47755, "", "=q4=Khadgar's Leggings of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Frost_IceStorm", "=q6=#t9s3_a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 47761, "", "=q4=Khadgar's Hood of Triumph", "=ds=#s1#, #a1#" };
+ { 18, 47758, "", "=q4=Khadgar's Shoulderpads of Triumph", "=ds=#s3#, #a1#" };
+ { 19, 47759, "", "=q4=Khadgar's Robe of Triumph", "=ds=#s5#, #a1#" };
+ { 20, 47762, "", "=q4=Khadgar's Gauntlets of Triumph", "=ds=#s9#, #a1#" };
+ { 21, 47760, "", "=q4=Khadgar's Leggings of Triumph", "=ds=#s11#, #a1#" };
};
-
- AtlasLoot_Data["T9Warlock_A"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t9s8_a#", "=q5="..AL["Tier 9"]};
- { 2, 47784, "", "=q4=Kel'Thuzad's Hood of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#"};
- { 3, 47787, "", "=q4=Kel'Thuzad's Shoulderpads of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#"};
- { 4, 47786, "", "=q4=Kel'Thuzad's Robe of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#"};
- { 5, 47783, "", "=q4=Kel'Thuzad's Gloves of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#"};
- { 6, 47785, "", "=q4=Kel'Thuzad's Leggings of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t9s8_a#", "=q5="..AL["Tier 9"]};
- { 9, 47778, "", "=q4=Kel'Thuzad's Hood of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 47781, "", "=q4=Kel'Thuzad's Shoulderpads of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 47779, "", "=q4=Kel'Thuzad's Robe of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 47782, "", "=q4=Kel'Thuzad's Gloves of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 47780, "", "=q4=Kel'Thuzad's Leggings of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t9s8_a#", "=q5="..AL["Tier 9"]};
- { 17, 47789, "", "=q4=Kel'Thuzad's Hood of Triumph", "=ds=#s1#, #a1#"};
- { 18, 47792, "", "=q4=Kel'Thuzad's Shoulderpads of Triumph", "=ds=#s3#, #a1#"};
- { 19, 47791, "", "=q4=Kel'Thuzad's Robe of Triumph", "=ds=#s5#, #a1#"};
- { 20, 47788, "", "=q4=Kel'Thuzad's Gloves of Triumph", "=ds=#s9#, #a1#"};
- { 21, 47790, "", "=q4=Kel'Thuzad's Leggings of Triumph", "=ds=#s11#, #a1#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t9s3_h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 47774, "", "=q4=Sunstrider's Hood of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#" };
+ { 3, 47777, "", "=q4=Sunstrider's Shoulderpads of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#" };
+ { 4, 47776, "", "=q4=Sunstrider's Robe of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#" };
+ { 5, 47773, "", "=q4=Sunstrider's Gauntlets of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#" };
+ { 6, 47775, "", "=q4=Sunstrider's Leggings of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Frost_IceStorm", "=q6=#t9s3_h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 47771, "", "=q4=Sunstrider's Hood of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 47768, "", "=q4=Sunstrider's Shoulderpads of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 47769, "", "=q4=Sunstrider's Robe of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 47772, "", "=q4=Sunstrider's Gauntlets of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 47770, "", "=q4=Sunstrider's Leggings of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Frost_IceStorm", "=q6=#t9s3_h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 47764, "", "=q4=Sunstrider's Hood of Triumph", "=ds=#s1#, #a1#" };
+ { 18, 47767, "", "=q4=Sunstrider's Shoulderpads of Triumph", "=ds=#s3#, #a1#" };
+ { 19, 47766, "", "=q4=Sunstrider's Robe of Triumph", "=ds=#s5#, #a1#" };
+ { 20, 47763, "", "=q4=Sunstrider's Gauntlets of Triumph", "=ds=#s9#, #a1#" };
+ { 21, 47765, "", "=q4=Sunstrider's Leggings of Triumph", "=ds=#s11#, #a1#" };
};
-
- AtlasLoot_Data["T9Warlock_H"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t9s8_h#", "=q5="..AL["Tier 9"]};
- { 2, 47801, "", "=q4=Gul'dan's Hood of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#"};
- { 3, 47798, "", "=q4=Gul'dan's Shoulderpads of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#"};
- { 4, 47799, "", "=q4=Gul'dan's Robe of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#"};
- { 5, 47802, "", "=q4=Gul'dan's Gloves of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#"};
- { 6, 47800, "", "=q4=Gul'dan's Leggings of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#"};
- { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t9s8_h#", "=q5="..AL["Tier 9"]};
- { 9, 47804, "", "=q4=Gul'dan's Hood of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 47807, "", "=q4=Gul'dan's Shoulderpads of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 47806, "", "=q4=Gul'dan's Robe of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 47803, "", "=q4=Gul'dan's Gloves of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 47805, "", "=q4=Gul'dan's Leggings of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t9s8_h#", "=q5="..AL["Tier 9"]};
- { 17, 47796, "", "=q4=Gul'dan's Hood of Triumph", "=ds=#s1#, #a1#"};
- { 18, 47793, "", "=q4=Gul'dan's Shoulderpads of Triumph", "=ds=#s3#, #a1#"};
- { 19, 47794, "", "=q4=Gul'dan's Robe of Triumph", "=ds=#s5#, #a1#"};
- { 20, 47797, "", "=q4=Gul'dan's Gloves of Triumph", "=ds=#s9#, #a1#"};
- { 21, 47795, "", "=q4=Gul'dan's Leggings of Triumph", "=ds=#s11#, #a1#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Holy"];
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t9s4_1a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48564, "", "=q4=Turalyon's Headpiece of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48572, "", "=q4=Turalyon's Spaulders of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48566, "", "=q4=Turalyon's Tunic of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48574, "", "=q4=Turalyon's Gloves of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48568, "", "=q4=Turalyon's Greaves of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Holy_HolyBolt", "=q6=#t9s4_1a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48577, "", "=q4=Turalyon's Headpiece of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48579, "", "=q4=Turalyon's Spaulders of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48575, "", "=q4=Turalyon's Tunic of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48576, "", "=q4=Turalyon's Gloves of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48578, "", "=q4=Turalyon's Greaves of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Holy_HolyBolt", "=q6=#t9s4_1a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48582, "", "=q4=Turalyon's Headpiece of Triumph", "=ds=#s1#, #a4#" };
+ { 18, 48580, "", "=q4=Turalyon's Spaulders of Triumph", "=ds=#s3#, #a4#" };
+ { 19, 48584, "", "=q4=Turalyon's Tunic of Triumph", "=ds=#s5#, #a4#" };
+ { 20, 48583, "", "=q4=Turalyon's Gloves of Triumph", "=ds=#s9#, #a4#" };
+ { 21, 48581, "", "=q4=Turalyon's Greaves of Triumph", "=ds=#s11#, #a4#" };
};
-
- AtlasLoot_Data["T9WarriorFury_A"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t9s9_1a#", "=q5="..AL["Tier 9"]};
- { 2, 48371, "", "=q4=Wrynn's Helmet of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48374, "", "=q4=Wrynn's Shoulderplates of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48372, "", "=q4=Wrynn's Battleplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48375, "", "=q4=Wrynn's Gauntlets of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48373, "", "=q4=Wrynn's Legplates of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "Ability_Warrior_BattleShout", "=q6=#t9s9_1a#", "=q5="..AL["Tier 9"]};
- { 9, 48378, "", "=q4=Wrynn's Helmet of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48380, "", "=q4=Wrynn's Shoulderplates of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48376, "", "=q4=Wrynn's Battleplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48377, "", "=q4=Wrynn's Gauntlets of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48379, "", "=q4=Wrynn's Legplates of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Ability_Warrior_BattleShout", "=q6=#t9s9_1a#", "=q5="..AL["Tier 9"]};
- { 17, 48383, "", "=q4=Wrynn's Helmet of Triumph", "=ds=#s1#, #a4#"};
- { 18, 48381, "", "=q4=Wrynn's Shoulderplates of Triumph", "=ds=#s3#, #a4#"};
- { 19, 48385, "", "=q4=Wrynn's Battleplate of Triumph", "=ds=#s5#, #a4#"};
- { 20, 48384, "", "=q4=Wrynn's Gauntlets of Triumph", "=ds=#s9#, #a4#"};
- { 21, 48382, "", "=q4=Wrynn's Legplates of Triumph", "=ds=#s11#, #a4#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Holy"];
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t9s4_1h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48597, "", "=q4=Liadrin's Headpiece of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48595, "", "=q4=Liadrin's Spaulders of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48599, "", "=q4=Liadrin's Tunic of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48598, "", "=q4=Liadrin's Gloves of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48596, "", "=q4=Liadrin's Greaves of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Holy_HolyBolt", "=q6=#t9s4_1h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48592, "", "=q4=Liadrin's Headpiece of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48590, "", "=q4=Liadrin's Spaulders of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48594, "", "=q4=Liadrin's Tunic of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48593, "", "=q4=Liadrin's Gloves of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48591, "", "=q4=Liadrin's Greaves of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Holy_HolyBolt", "=q6=#t9s4_1h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48587, "", "=q4=Liadrin's Headpiece of Triumph", "=ds=#s1#, #a4#" };
+ { 18, 48585, "", "=q4=Liadrin's Spaulders of Triumph", "=ds=#s3#, #a4#" };
+ { 19, 48589, "", "=q4=Liadrin's Tunic of Triumph", "=ds=#s5#, #a4#" };
+ { 20, 48588, "", "=q4=Liadrin's Gloves of Triumph", "=ds=#s9#, #a4#" };
+ { 21, 48586, "", "=q4=Liadrin's Greaves of Triumph", "=ds=#s11#, #a4#" };
};
-
- AtlasLoot_Data["T9WarriorFury_H"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t9s9_1h#", "=q5="..AL["Tier 9"]};
- { 2, 48388, "", "=q4=Hellscream's Helmet of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48390, "", "=q4=Hellscream's Shoulderplates of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48386, "", "=q4=Hellscream's Battleplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48387, "", "=q4=Hellscream's Gauntlets of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48389, "", "=q4=Hellscream's Legplates of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "Ability_Warrior_BattleShout", "=q6=#t9s9_1h#", "=q5="..AL["Tier 9"]};
- { 9, 48393, "", "=q4=Hellscream's Helmet of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48395, "", "=q4=Hellscream's Shoulderplates of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48391, "", "=q4=Hellscream's Battleplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48392, "", "=q4=Hellscream's Gauntlets of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48394, "", "=q4=Hellscream's Legplates of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "Ability_Warrior_BattleShout", "=q6=#t9s9_1h#", "=q5="..AL["Tier 9"]};
- { 17, 48398, "", "=q4=Hellscream's Helmet of Triumph", "=ds=#s1#, #a4#"};
- { 18, 48400, "", "=q4=Hellscream's Shoulderplates of Triumph", "=ds=#s3#, #a4#"};
- { 19, 48396, "", "=q4=Hellscream's Battleplate of Triumph", "=ds=#s5#, #a4#"};
- { 20, 48397, "", "=q4=Hellscream's Gauntlets of Triumph", "=ds=#s9#, #a4#"};
- { 21, 48399, "", "=q4=Hellscream's Legplates of Triumph", "=ds=#s11#, #a4#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Retribution"];
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t9s4_2a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48604, "", "=q4=Turalyon's Helm of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48606, "", "=q4=Turalyon's Shoulderplates of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48602, "", "=q4=Turalyon's Battleplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48603, "", "=q4=Turalyon's Gauntlets of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48605, "", "=q4=Turalyon's Legplates of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#t9s4_2a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48609, "", "=q4=Turalyon's Helm of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48611, "", "=q4=Turalyon's Shoulderplates of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48607, "", "=q4=Turalyon's Battleplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48608, "", "=q4=Turalyon's Gauntlets of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48610, "", "=q4=Turalyon's Legplates of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#t9s4_2a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48614, "", "=q4=Turalyon's Helm of Triumph", "=ds=#s1#, #a4#" };
+ { 18, 48612, "", "=q4=Turalyon's Shoulderplates of Triumph", "=ds=#s3#, #a4#" };
+ { 19, 48616, "", "=q4=Turalyon's Battleplate of Triumph", "=ds=#s5#, #a4#" };
+ { 20, 48615, "", "=q4=Turalyon's Gauntlets of Triumph", "=ds=#s9#, #a4#" };
+ { 21, 48613, "", "=q4=Turalyon's Legplates of Triumph", "=ds=#s11#, #a4#" };
};
-
- AtlasLoot_Data["T9WarriorProtection_A"] = {
- { 1, 0, "INV_Shield_05", "=q6=#t9s9_2a#", "=q5="..AL["Tier 9"]};
- { 2, 48429, "", "=q4=Wrynn's Greathelm of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48448, "", "=q4=Wrynn's Pauldrons of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48436, "", "=q4=Wrynn's Breastplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48449, "", "=q4=Wrynn's Handguards of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48445, "", "=q4=Wrynn's Legguards of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "INV_Shield_05", "=q6=#t9s9_2a#", "=q5="..AL["Tier 9"]};
- { 9, 48430, "", "=q4=Wrynn's Greathelm of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48454, "", "=q4=Wrynn's Pauldrons of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48450, "", "=q4=Wrynn's Breastplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48452, "", "=q4=Wrynn's Handguards of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48446, "", "=q4=Wrynn's Legguards of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "INV_Shield_05", "=q6=#t9s9_2a#", "=q5="..AL["Tier 9"]};
- { 17, 48433, "", "=q4=Wrynn's Greathelm of Triumph", "=ds=#s1#, #a4#"};
- { 18, 48455, "", "=q4=Wrynn's Pauldrons of Triumph", "=ds=#s3#, #a4#"};
- { 19, 48451, "", "=q4=Wrynn's Breastplate of Triumph", "=ds=#s5#, #a4#"};
- { 20, 48453, "", "=q4=Wrynn's Handguards of Triumph", "=ds=#s9#, #a4#"};
- { 21, 48447, "", "=q4=Wrynn's Legguards of Triumph", "=ds=#s11#, #a4#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Retribution"];
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t9s4_2h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48629, "", "=q4=Liadrin's Helm of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48627, "", "=q4=Liadrin's Shoulderplates of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48631, "", "=q4=Liadrin's Battleplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48630, "", "=q4=Liadrin's Gauntlets of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48628, "", "=q4=Liadrin's Legplates of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#t9s4_2h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48624, "", "=q4=Liadrin's Helm of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48622, "", "=q4=Liadrin's Shoulderplates of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48626, "", "=q4=Liadrin's Battleplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48625, "", "=q4=Liadrin's Gauntlets of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48623, "", "=q4=Liadrin's Legplates of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#t9s4_2h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48619, "", "=q4=Liadrin's Helm of Triumph", "=ds=#s1#, #a4#" };
+ { 18, 48621, "", "=q4=Liadrin's Shoulderplates of Triumph", "=ds=#s3#, #a4#" };
+ { 19, 48617, "", "=q4=Liadrin's Battleplate of Triumph", "=ds=#s5#, #a4#" };
+ { 20, 48618, "", "=q4=Liadrin's Gauntlets of Triumph", "=ds=#s9#, #a4#" };
+ { 21, 48620, "", "=q4=Liadrin's Legplates of Triumph", "=ds=#s11#, #a4#" };
};
-
- AtlasLoot_Data["T9WarriorProtection_H"] = {
- { 1, 0, "INV_Shield_05", "=q6=#t9s9_2h#", "=q5="..AL["Tier 9"]};
- { 2, 48458, "", "=q4=Hellscream's Greathelm of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#"};
- { 3, 48460, "", "=q4=Hellscream's Pauldrons of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#"};
- { 4, 48456, "", "=q4=Hellscream's Breastplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#"};
- { 5, 48457, "", "=q4=Hellscream's Handguards of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#"};
- { 6, 48459, "", "=q4=Hellscream's Legguards of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#"};
- { 8, 0, "INV_Shield_05", "=q6=#t9s9_2h#", "=q5="..AL["Tier 9"]};
- { 9, 48463, "", "=q4=Hellscream's Greathelm of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 10, 48465, "", "=q4=Hellscream's Pauldrons of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 11, 48461, "", "=q4=Hellscream's Breastplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 12, 48462, "", "=q4=Hellscream's Handguards of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#"};
- { 13, 48464, "", "=q4=Hellscream's Legguards of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#"};
- { 16, 0, "INV_Shield_05", "=q6=#t9s9_2h#", "=q5="..AL["Tier 9"]};
- { 17, 48468, "", "=q4=Hellscream's Greathelm of Triumph", "=ds=#s1#, #a4#"};
- { 18, 48470, "", "=q4=Hellscream's Pauldrons of Triumph", "=ds=#s3#, #a4#"};
- { 19, 48466, "", "=q4=Hellscream's Breastplate of Triumph", "=ds=#s5#, #a4#"};
- { 20, 48467, "", "=q4=Hellscream's Handguards of Triumph", "=ds=#s9#, #a4#"};
- { 21, 48469, "", "=q4=Hellscream's Legguards of Triumph", "=ds=#s11#, #a4#"};
- Back = "T9SET";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Protection"];
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t9s4_3a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48634, "", "=q4=Turalyon's Faceguard of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48636, "", "=q4=Turalyon's Shoulderguards of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48632, "", "=q4=Turalyon's Breastplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48633, "", "=q4=Turalyon's Handguards of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48635, "", "=q4=Turalyon's Legguards of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Holy_SealOfMight", "=q6=#t9s4_3a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48639, "", "=q4=Turalyon's Faceguard of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48637, "", "=q4=Turalyon's Shoulderguards of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48641, "", "=q4=Turalyon's Breastplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48640, "", "=q4=Turalyon's Handguards of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48638, "", "=q4=Turalyon's Legguards of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t9s4_3a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48644, "", "=q4=Turalyon's Faceguard of Triumph", "=ds=#s1#, #a4#" };
+ { 18, 48646, "", "=q4=Turalyon's Shoulderguards of Triumph", "=ds=#s3#, #a4#" };
+ { 19, 48642, "", "=q4=Turalyon's Breastplate of Triumph", "=ds=#s5#, #a4#" };
+ { 20, 48643, "", "=q4=Turalyon's Handguards of Triumph", "=ds=#s9#, #a4#" };
+ { 21, 48645, "", "=q4=Turalyon's Legguards of Triumph", "=ds=#s11#, #a4#" };
};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Protection"];
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t9s4_3h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48654, "", "=q4=Liadrin's Faceguard of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48656, "", "=q4=Liadrin's Shoulderguards of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48652, "", "=q4=Liadrin's Breastplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48653, "", "=q4=Liadrin's Handguards of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48655, "", "=q4=Liadrin's Legguards of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Holy_SealOfMight", "=q6=#t9s4_3h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48659, "", "=q4=Liadrin's Faceguard of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48661, "", "=q4=Liadrin's Shoulderguards of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48657, "", "=q4=Liadrin's Breastplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48658, "", "=q4=Liadrin's Handguards of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48660, "", "=q4=Liadrin's Legguards of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t9s4_3h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48649, "", "=q4=Liadrin's Faceguard of Triumph", "=ds=#s1#, #a4#" };
+ { 18, 48647, "", "=q4=Liadrin's Shoulderguards of Triumph", "=ds=#s3#, #a4#" };
+ { 19, 48651, "", "=q4=Liadrin's Breastplate of Triumph", "=ds=#s5#, #a4#" };
+ { 20, 48650, "", "=q4=Liadrin's Handguards of Triumph", "=ds=#s9#, #a4#" };
+ { 21, 48648, "", "=q4=Liadrin's Legguards of Triumph", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - " .. AL["Shadow"];
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t9s5_1a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48073, "", "=q4=Velen's Circlet of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#" };
+ { 3, 48076, "", "=q4=Velen's Mantle of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#" };
+ { 4, 48075, "", "=q4=Velen's Raiments of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#" };
+ { 5, 48072, "", "=q4=Velen's Handwraps of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#" };
+ { 6, 48074, "", "=q4=Velen's Pants of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#t9s5_1a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48078, "", "=q4=Velen's Circlet of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48081, "", "=q4=Velen's Mantle of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48080, "", "=q4=Velen's Raiments of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48077, "", "=q4=Velen's Handwraps of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48079, "", "=q4=Velen's Pants of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#t9s5_1a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48085, "", "=q4=Velen's Circlet of Triumph", "=ds=#s1#, #a1#" };
+ { 18, 48082, "", "=q4=Velen's Mantle of Triumph", "=ds=#s3#, #a1#" };
+ { 19, 48083, "", "=q4=Velen's Raiments of Triumph", "=ds=#s5#, #a1#" };
+ { 20, 48086, "", "=q4=Velen's Handwraps of Triumph", "=ds=#s9#, #a1#" };
+ { 21, 48084, "", "=q4=Velen's Pants of Triumph", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - " .. AL["Shadow"];
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t9s5_1h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48098, "", "=q4=Zabra's Circlet of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#" };
+ { 3, 48101, "", "=q4=Zabra's Mantle of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#" };
+ { 4, 48100, "", "=q4=Zabra's Raiments of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#" };
+ { 5, 48097, "", "=q4=Zabra's Handwraps of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#" };
+ { 6, 48099, "", "=q4=Zabra's Pants of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#t9s5_1h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48095, "", "=q4=Zabra's Circlet of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48092, "", "=q4=Zabra's Mantle of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48093, "", "=q4=Zabra's Raiments of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48096, "", "=q4=Zabra's Handwraps of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48094, "", "=q4=Zabra's Pants of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#t9s5_1h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48088, "", "=q4=Zabra's Circlet of Triumph", "=ds=#s1#, #a1#" };
+ { 18, 48091, "", "=q4=Zabra's Mantle of Triumph", "=ds=#s3#, #a1#" };
+ { 19, 48090, "", "=q4=Zabra's Raiments of Triumph", "=ds=#s5#, #a1#" };
+ { 20, 48087, "", "=q4=Zabra's Handwraps of Triumph", "=ds=#s9#, #a1#" };
+ { 21, 48089, "", "=q4=Zabra's Pants of Triumph", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - " .. AL["Holy"];
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t9s5_2a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 47914, "", "=q4=Velen's Cowl of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#" };
+ { 3, 47981, "", "=q4=Velen's Shoulderpads of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#" };
+ { 4, 47936, "", "=q4=Velen's Robe of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#" };
+ { 5, 47982, "", "=q4=Velen's Gloves of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#" };
+ { 6, 47980, "", "=q4=Velen's Leggings of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#t9s5_2a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 47984, "", "=q4=Velen's Cowl of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 47987, "", "=q4=Velen's Shoulderpads of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 47986, "", "=q4=Velen's Robe of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 47983, "", "=q4=Velen's Gloves of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 47985, "", "=q4=Velen's Leggings of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t9s5_2a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48035, "", "=q4=Velen's Cowl of Triumph", "=ds=#s1#, #a1#" };
+ { 18, 48029, "", "=q4=Velen's Shoulderpads of Triumph", "=ds=#s3#, #a1#" };
+ { 19, 48031, "", "=q4=Velen's Robe of Triumph", "=ds=#s5#, #a1#" };
+ { 20, 48037, "", "=q4=Velen's Gloves of Triumph", "=ds=#s9#, #a1#" };
+ { 21, 48033, "", "=q4=Velen's Leggings of Triumph", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - " .. AL["Holy"];
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t9s5_2h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48068, "", "=q4=Zabra's Cowl of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#" };
+ { 3, 48071, "", "=q4=Zabra's Shoulderpads of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#" };
+ { 4, 48070, "", "=q4=Zabra's Robe of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#" };
+ { 5, 48067, "", "=q4=Zabra's Gloves of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#" };
+ { 6, 48069, "", "=q4=Zabra's Leggings of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#t9s5_2h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48065, "", "=q4=Zabra's Cowl of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48062, "", "=q4=Zabra's Shoulderpads of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48063, "", "=q4=Zabra's Robe of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48066, "", "=q4=Zabra's Gloves of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48064, "", "=q4=Zabra's Leggings of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t9s5_2h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48058, "", "=q4=Zabra's Cowl of Triumph", "=ds=#s1#, #a1#" };
+ { 18, 48061, "", "=q4=Zabra's Shoulderpads of Triumph", "=ds=#s3#, #a1#" };
+ { 19, 48060, "", "=q4=Zabra's Robe of Triumph", "=ds=#s5#, #a1#" };
+ { 20, 48057, "", "=q4=Zabra's Gloves of Triumph", "=ds=#s9#, #a1#" };
+ { 21, 48059, "", "=q4=Zabra's Leggings of Triumph", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 0, "Ability_BackStab", "=q6=#t9s6_a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48218, "", "=q4=VanCleef's Helmet of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#" };
+ { 3, 48221, "", "=q4=VanCleef's Pauldrons of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#" };
+ { 4, 48219, "", "=q4=VanCleef's Breastplate of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#" };
+ { 5, 48222, "", "=q4=VanCleef's Gauntlets of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#" };
+ { 6, 48220, "", "=q4=VanCleef's Legplates of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#" };
+ { 8, 0, "Ability_BackStab", "=q6=#t9s6_a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48225, "", "=q4=VanCleef's Helmet of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48227, "", "=q4=VanCleef's Pauldrons of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48223, "", "=q4=VanCleef's Breastplate of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48224, "", "=q4=VanCleef's Gauntlets of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48226, "", "=q4=VanCleef's Legplates of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Ability_BackStab", "=q6=#t9s6_a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48230, "", "=q4=VanCleef's Helmet of Triumph", "=ds=#s1#, #a2#" };
+ { 18, 48228, "", "=q4=VanCleef's Pauldrons of Triumph", "=ds=#s3#, #a2#" };
+ { 19, 48232, "", "=q4=VanCleef's Breastplate of Triumph", "=ds=#s5#, #a2#" };
+ { 20, 48231, "", "=q4=VanCleef's Gauntlets of Triumph", "=ds=#s9#, #a2#" };
+ { 21, 48229, "", "=q4=VanCleef's Legplates of Triumph", "=ds=#s11#, #a2#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 0, "Ability_BackStab", "=q6=#t9s6_h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48245, "", "=q4=Garona's Helmet of Conquest", "=ds=#s1#, #a2#", "50 #eoftriumph#" };
+ { 3, 48247, "", "=q4=Garona's Pauldrons of Conquest", "=ds=#s3#, #a2#", "30 #eoftriumph#" };
+ { 4, 48243, "", "=q4=Garona's Breastplate of Conquest", "=ds=#s5#, #a2#", "50 #eoftriumph#" };
+ { 5, 48244, "", "=q4=Garona's Gauntlets of Conquest", "=ds=#s9#, #a2#", "30 #eoftriumph#" };
+ { 6, 48246, "", "=q4=Garona's Legplates of Conquest", "=ds=#s11#, #a2#", "50 #eoftriumph#" };
+ { 8, 0, "Ability_BackStab", "=q6=#t9s6_h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48240, "", "=q4=Garona's Helmet of Triumph", "=ds=#s1#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48238, "", "=q4=Garona's Pauldrons of Triumph", "=ds=#s3#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48242, "", "=q4=Garona's Breastplate of Triumph", "=ds=#s5#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48241, "", "=q4=Garona's Gauntlets of Triumph", "=ds=#s9#, #a2#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48239, "", "=q4=Garona's Legplates of Triumph", "=ds=#s11#, #a2#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Ability_BackStab", "=q6=#t9s6_h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48235, "", "=q4=Garona's Helmet of Triumph", "=ds=#s1#, #a2#" };
+ { 18, 48237, "", "=q4=Garona's Pauldrons of Triumph", "=ds=#s3#, #a2#" };
+ { 19, 48233, "", "=q4=Garona's Breastplate of Triumph", "=ds=#s5#, #a2#" };
+ { 20, 48234, "", "=q4=Garona's Gauntlets of Triumph", "=ds=#s9#, #a2#" };
+ { 21, 48236, "", "=q4=Garona's Legplates of Triumph", "=ds=#s11#, #a2#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Elemental"];
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#t9s7_3a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48313, "", "=q4=Nobundo's Helm of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#" };
+ { 3, 48315, "", "=q4=Nobundo's Shoulderpads of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#" };
+ { 4, 48310, "", "=q4=Nobundo's Hauberk of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#" };
+ { 5, 48312, "", "=q4=Nobundo's Gloves of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#" };
+ { 6, 48314, "", "=q4=Nobundo's Kilt of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Nature_Lightning", "=q6=#t9s7_3a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48318, "", "=q4=Nobundo's Helm of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48320, "", "=q4=Nobundo's Shoulderpads of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48316, "", "=q4=Nobundo's Hauberk of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48317, "", "=q4=Nobundo's Gloves of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48319, "", "=q4=Nobundo's Kilt of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Nature_Lightning", "=q6=#t9s7_3a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48323, "", "=q4=Nobundo's Helm of Triumph", "=ds=#s1#, #a3#" };
+ { 18, 48321, "", "=q4=Nobundo's Shoulderpads of Triumph", "=ds=#s3#, #a3#" };
+ { 19, 48325, "", "=q4=Nobundo's Hauberk of Triumph", "=ds=#s5#, #a3#" };
+ { 20, 48324, "", "=q4=Nobundo's Gloves of Triumph", "=ds=#s9#, #a3#" };
+ { 21, 48322, "", "=q4=Nobundo's Kilt of Triumph", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Elemental"];
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#t9s7_3h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48338, "", "=q4=Thrall's Helm of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#" };
+ { 3, 48340, "", "=q4=Thrall's Shoulderpads of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#" };
+ { 4, 48336, "", "=q4=Thrall's Hauberk of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#" };
+ { 5, 48337, "", "=q4=Thrall's Gloves of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#" };
+ { 6, 48339, "", "=q4=Thrall's Kilt of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Nature_Lightning", "=q6=#t9s7_3h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48333, "", "=q4=Thrall's Helm of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48331, "", "=q4=Thrall's Shoulderpads of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48335, "", "=q4=Thrall's Hauberk of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48334, "", "=q4=Thrall's Gloves of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48332, "", "=q4=Thrall's Kilt of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Nature_Lightning", "=q6=#t9s7_3h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48328, "", "=q4=Thrall's Helm of Triumph", "=ds=#s1#, #a3#" };
+ { 18, 48330, "", "=q4=Thrall's Shoulderpads of Triumph", "=ds=#s3#, #a3#" };
+ { 19, 48326, "", "=q4=Thrall's Hauberk of Triumph", "=ds=#s5#, #a3#" };
+ { 20, 48327, "", "=q4=Thrall's Gloves of Triumph", "=ds=#s9#, #a3#" };
+ { 21, 48329, "", "=q4=Thrall's Kilt of Triumph", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Enhancement"];
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t9s7_2a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48343, "", "=q4=Nobundo's Faceguard of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#" };
+ { 3, 48345, "", "=q4=Nobundo's Shoulderguards of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#" };
+ { 4, 48341, "", "=q4=Nobundo's Chestguard of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#" };
+ { 5, 48342, "", "=q4=Nobundo's Grips of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#" };
+ { 6, 48344, "", "=q4=Nobundo's War-Kilt of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#t9s7_2a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48348, "", "=q4=Nobundo's Faceguard of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48350, "", "=q4=Nobundo's Shoulderguards of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48346, "", "=q4=Nobundo's Chestguard of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48347, "", "=q4=Nobundo's Grips of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48349, "", "=q4=Nobundo's War-Kilt of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t9s7_2a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48353, "", "=q4=Nobundo's Faceguard of Triumph", "=ds=#s1#, #a3#" };
+ { 18, 48351, "", "=q4=Nobundo's Shoulderguards of Triumph", "=ds=#s3#, #a3#" };
+ { 19, 48355, "", "=q4=Nobundo's Chestguard of Triumph", "=ds=#s5#, #a3#" };
+ { 20, 48354, "", "=q4=Nobundo's Grips of Triumph", "=ds=#s9#, #a3#" };
+ { 21, 48352, "", "=q4=Nobundo's War-Kilt of Triumph", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Enhancement"];
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t9s7_2h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48368, "", "=q4=Thrall's Faceguard of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#" };
+ { 3, 48370, "", "=q4=Thrall's Shoulderguards of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#" };
+ { 4, 48366, "", "=q4=Thrall's Chestguard of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#" };
+ { 5, 48367, "", "=q4=Thrall's Grips of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#" };
+ { 6, 48369, "", "=q4=Thrall's War-Kilt of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#t9s7_2h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48363, "", "=q4=Thrall's Faceguard of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48361, "", "=q4=Thrall's Shoulderguards of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48365, "", "=q4=Thrall's Chestguard of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48364, "", "=q4=Thrall's Grips of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48362, "", "=q4=Thrall's War-Kilt of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t9s7_2h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48358, "", "=q4=Thrall's Faceguard of Triumph", "=ds=#s1#, #a3#" };
+ { 18, 48360, "", "=q4=Thrall's Shoulderguards of Triumph", "=ds=#s3#, #a3#" };
+ { 19, 48356, "", "=q4=Thrall's Chestguard of Triumph", "=ds=#s5#, #a3#" };
+ { 20, 48357, "", "=q4=Thrall's Grips of Triumph", "=ds=#s9#, #a3#" };
+ { 21, 48359, "", "=q4=Thrall's War-Kilt of Triumph", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Restoration"];
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t9s7_1a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48280, "", "=q4=Nobundo's Headpiece of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#" };
+ { 3, 48283, "", "=q4=Nobundo's Spaulders of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#" };
+ { 4, 48281, "", "=q4=Nobundo's Tunic of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#" };
+ { 5, 48284, "", "=q4=Nobundo's Handguards of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#" };
+ { 6, 48282, "", "=q4=Nobundo's Legguards of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t9s7_1a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48287, "", "=q4=Nobundo's Headpiece of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48289, "", "=q4=Nobundo's Spaulders of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48285, "", "=q4=Nobundo's Tunic of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48286, "", "=q4=Nobundo's Handguards of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48288, "", "=q4=Nobundo's Legguards of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t9s7_1a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48292, "", "=q4=Nobundo's Headpiece of Triumph", "=ds=#s1#, #a3#" };
+ { 18, 48290, "", "=q4=Nobundo's Spaulders of Triumph", "=ds=#s3#, #a3#" };
+ { 19, 48294, "", "=q4=Nobundo's Tunic of Triumph", "=ds=#s5#, #a3#" };
+ { 20, 48293, "", "=q4=Nobundo's Handguards of Triumph", "=ds=#s9#, #a3#" };
+ { 21, 48291, "", "=q4=Nobundo's Legguards of Triumph", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Restoration"];
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t9s7_1h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48297, "", "=q4=Thrall's Headpiece of Conquest", "=ds=#s1#, #a3#", "50 #eoftriumph#" };
+ { 3, 48299, "", "=q4=Thrall's Spaulders of Conquest", "=ds=#s3#, #a3#", "30 #eoftriumph#" };
+ { 4, 48295, "", "=q4=Thrall's Tunic of Conquest", "=ds=#s5#, #a3#", "50 #eoftriumph#" };
+ { 5, 48296, "", "=q4=Thrall's Handguards of Conquest", "=ds=#s9#, #a3#", "30 #eoftriumph#" };
+ { 6, 48298, "", "=q4=Thrall's Legguards of Conquest", "=ds=#s11#, #a3#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t9s7_1h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48302, "", "=q4=Thrall's Headpiece of Triumph", "=ds=#s1#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48304, "", "=q4=Thrall's Spaulders of Triumph", "=ds=#s3#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48300, "", "=q4=Thrall's Tunic of Triumph", "=ds=#s5#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48301, "", "=q4=Thrall's Handguards of Triumph", "=ds=#s9#, #a3#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48303, "", "=q4=Thrall's Legguards of Triumph", "=ds=#s11#, #a3#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t9s7_1h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48307, "", "=q4=Thrall's Headpiece of Triumph", "=ds=#s1#, #a3#" };
+ { 18, 48309, "", "=q4=Thrall's Spaulders of Triumph", "=ds=#s3#, #a3#" };
+ { 19, 48305, "", "=q4=Thrall's Tunic of Triumph", "=ds=#s5#, #a3#" };
+ { 20, 48306, "", "=q4=Thrall's Handguards of Triumph", "=ds=#s9#, #a3#" };
+ { 21, 48308, "", "=q4=Thrall's Legguards of Triumph", "=ds=#s11#, #a3#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t9s8_a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 47784, "", "=q4=Kel'Thuzad's Hood of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#" };
+ { 3, 47787, "", "=q4=Kel'Thuzad's Shoulderpads of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#" };
+ { 4, 47786, "", "=q4=Kel'Thuzad's Robe of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#" };
+ { 5, 47783, "", "=q4=Kel'Thuzad's Gloves of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#" };
+ { 6, 47785, "", "=q4=Kel'Thuzad's Leggings of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t9s8_a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 47778, "", "=q4=Kel'Thuzad's Hood of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 47781, "", "=q4=Kel'Thuzad's Shoulderpads of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 47779, "", "=q4=Kel'Thuzad's Robe of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 47782, "", "=q4=Kel'Thuzad's Gloves of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 47780, "", "=q4=Kel'Thuzad's Leggings of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t9s8_a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 47789, "", "=q4=Kel'Thuzad's Hood of Triumph", "=ds=#s1#, #a1#" };
+ { 18, 47792, "", "=q4=Kel'Thuzad's Shoulderpads of Triumph", "=ds=#s3#, #a1#" };
+ { 19, 47791, "", "=q4=Kel'Thuzad's Robe of Triumph", "=ds=#s5#, #a1#" };
+ { 20, 47788, "", "=q4=Kel'Thuzad's Gloves of Triumph", "=ds=#s9#, #a1#" };
+ { 21, 47790, "", "=q4=Kel'Thuzad's Leggings of Triumph", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t9s8_h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 47801, "", "=q4=Gul'dan's Hood of Conquest", "=ds=#s1#, #a1#", "50 #eoftriumph#" };
+ { 3, 47798, "", "=q4=Gul'dan's Shoulderpads of Conquest", "=ds=#s3#, #a1#", "30 #eoftriumph#" };
+ { 4, 47799, "", "=q4=Gul'dan's Robe of Conquest", "=ds=#s5#, #a1#", "50 #eoftriumph#" };
+ { 5, 47802, "", "=q4=Gul'dan's Gloves of Conquest", "=ds=#s9#, #a1#", "30 #eoftriumph#" };
+ { 6, 47800, "", "=q4=Gul'dan's Leggings of Conquest", "=ds=#s11#, #a1#", "50 #eoftriumph#" };
+ { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t9s8_h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 47804, "", "=q4=Gul'dan's Hood of Triumph", "=ds=#s1#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 47807, "", "=q4=Gul'dan's Shoulderpads of Triumph", "=ds=#s3#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 47806, "", "=q4=Gul'dan's Robe of Triumph", "=ds=#s5#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 47803, "", "=q4=Gul'dan's Gloves of Triumph", "=ds=#s9#, #a1#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 47805, "", "=q4=Gul'dan's Leggings of Triumph", "=ds=#s11#, #a1#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t9s8_h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 47796, "", "=q4=Gul'dan's Hood of Triumph", "=ds=#s1#, #a1#" };
+ { 18, 47793, "", "=q4=Gul'dan's Shoulderpads of Triumph", "=ds=#s3#, #a1#" };
+ { 19, 47794, "", "=q4=Gul'dan's Robe of Triumph", "=ds=#s5#, #a1#" };
+ { 20, 47797, "", "=q4=Gul'dan's Gloves of Triumph", "=ds=#s9#, #a1#" };
+ { 21, 47795, "", "=q4=Gul'dan's Leggings of Triumph", "=ds=#s11#, #a1#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - " .. AL["Fury"];
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t9s9_1a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48371, "", "=q4=Wrynn's Helmet of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48374, "", "=q4=Wrynn's Shoulderplates of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48372, "", "=q4=Wrynn's Battleplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48375, "", "=q4=Wrynn's Gauntlets of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48373, "", "=q4=Wrynn's Legplates of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "Ability_Warrior_BattleShout", "=q6=#t9s9_1a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48378, "", "=q4=Wrynn's Helmet of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48380, "", "=q4=Wrynn's Shoulderplates of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48376, "", "=q4=Wrynn's Battleplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48377, "", "=q4=Wrynn's Gauntlets of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48379, "", "=q4=Wrynn's Legplates of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Ability_Warrior_BattleShout", "=q6=#t9s9_1a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48383, "", "=q4=Wrynn's Helmet of Triumph", "=ds=#s1#, #a4#" };
+ { 18, 48381, "", "=q4=Wrynn's Shoulderplates of Triumph", "=ds=#s3#, #a4#" };
+ { 19, 48385, "", "=q4=Wrynn's Battleplate of Triumph", "=ds=#s5#, #a4#" };
+ { 20, 48384, "", "=q4=Wrynn's Gauntlets of Triumph", "=ds=#s9#, #a4#" };
+ { 21, 48382, "", "=q4=Wrynn's Legplates of Triumph", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - " .. AL["Fury"];
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t9s9_1h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48388, "", "=q4=Hellscream's Helmet of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48390, "", "=q4=Hellscream's Shoulderplates of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48386, "", "=q4=Hellscream's Battleplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48387, "", "=q4=Hellscream's Gauntlets of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48389, "", "=q4=Hellscream's Legplates of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "Ability_Warrior_BattleShout", "=q6=#t9s9_1h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48393, "", "=q4=Hellscream's Helmet of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48395, "", "=q4=Hellscream's Shoulderplates of Triumph", "=ds=#s3#, #a4#",
+ "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48391, "", "=q4=Hellscream's Battleplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48392, "", "=q4=Hellscream's Gauntlets of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48394, "", "=q4=Hellscream's Legplates of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "Ability_Warrior_BattleShout", "=q6=#t9s9_1h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48398, "", "=q4=Hellscream's Helmet of Triumph", "=ds=#s1#, #a4#" };
+ { 18, 48400, "", "=q4=Hellscream's Shoulderplates of Triumph", "=ds=#s3#, #a4#" };
+ { 19, 48396, "", "=q4=Hellscream's Battleplate of Triumph", "=ds=#s5#, #a4#" };
+ { 20, 48397, "", "=q4=Hellscream's Gauntlets of Triumph", "=ds=#s9#, #a4#" };
+ { 21, 48399, "", "=q4=Hellscream's Legplates of Triumph", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - " .. AL["Protection"];
+ { 1, 0, "INV_Shield_05", "=q6=#t9s9_2a#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48429, "", "=q4=Wrynn's Greathelm of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48448, "", "=q4=Wrynn's Pauldrons of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48436, "", "=q4=Wrynn's Breastplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48449, "", "=q4=Wrynn's Handguards of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48445, "", "=q4=Wrynn's Legguards of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "INV_Shield_05", "=q6=#t9s9_2a#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48430, "", "=q4=Wrynn's Greathelm of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48454, "", "=q4=Wrynn's Pauldrons of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48450, "", "=q4=Wrynn's Breastplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48452, "", "=q4=Wrynn's Handguards of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48446, "", "=q4=Wrynn's Legguards of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "INV_Shield_05", "=q6=#t9s9_2a#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48433, "", "=q4=Wrynn's Greathelm of Triumph", "=ds=#s1#, #a4#" };
+ { 18, 48455, "", "=q4=Wrynn's Pauldrons of Triumph", "=ds=#s3#, #a4#" };
+ { 19, 48451, "", "=q4=Wrynn's Breastplate of Triumph", "=ds=#s5#, #a4#" };
+ { 20, 48453, "", "=q4=Wrynn's Handguards of Triumph", "=ds=#s9#, #a4#" };
+ { 21, 48447, "", "=q4=Wrynn's Legguards of Triumph", "=ds=#s11#, #a4#" };
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - " .. AL["Protection"];
+ { 1, 0, "INV_Shield_05", "=q6=#t9s9_2h#", "=q5=" .. AL["Tier 9"] };
+ { 2, 48458, "", "=q4=Hellscream's Greathelm of Conquest", "=ds=#s1#, #a4#", "50 #eoftriumph#" };
+ { 3, 48460, "", "=q4=Hellscream's Pauldrons of Conquest", "=ds=#s3#, #a4#", "30 #eoftriumph#" };
+ { 4, 48456, "", "=q4=Hellscream's Breastplate of Conquest", "=ds=#s5#, #a4#", "50 #eoftriumph#" };
+ { 5, 48457, "", "=q4=Hellscream's Handguards of Conquest", "=ds=#s9#, #a4#", "30 #eoftriumph#" };
+ { 6, 48459, "", "=q4=Hellscream's Legguards of Conquest", "=ds=#s11#, #a4#", "50 #eoftriumph#" };
+ { 8, 0, "INV_Shield_05", "=q6=#t9s9_2h#", "=q5=" .. AL["Tier 9"] };
+ { 9, 48463, "", "=q4=Hellscream's Greathelm of Triumph", "=ds=#s1#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 10, 48465, "", "=q4=Hellscream's Pauldrons of Triumph", "=ds=#s3#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 11, 48461, "", "=q4=Hellscream's Breastplate of Triumph", "=ds=#s5#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 12, 48462, "", "=q4=Hellscream's Handguards of Triumph", "=ds=#s9#, #a4#", "45 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 13, 48464, "", "=q4=Hellscream's Legguards of Triumph", "=ds=#s11#, #a4#", "75 #eoftriumph# 1 #trophyofthecrusade#" };
+ { 16, 0, "INV_Shield_05", "=q6=#t9s9_2h#", "=q5=" .. AL["Tier 9"] };
+ { 17, 48468, "", "=q4=Hellscream's Greathelm of Triumph", "=ds=#s1#, #a4#" };
+ { 18, 48470, "", "=q4=Hellscream's Pauldrons of Triumph", "=ds=#s3#, #a4#" };
+ { 19, 48466, "", "=q4=Hellscream's Breastplate of Triumph", "=ds=#s5#, #a4#" };
+ { 20, 48467, "", "=q4=Hellscream's Handguards of Triumph", "=ds=#s9#, #a4#" };
+ { 21, 48469, "", "=q4=Hellscream's Legguards of Triumph", "=ds=#s11#, #a4#" };
+ };
+};
- --------------------------
- --- Tier 10 Sets (T10) ---
- --------------------------
-
- AtlasLoot_Data["T10DeathKnightDPS"] = {
- { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t10s10_1#", "=q5="..AL["Tier 10"]};
+--------------------------
+--- Tier 10 Sets (T10) ---
+--------------------------
+AtlasLoot_Data["T10"] = {
+ Name = "Tier 10";
+ Type = "WrathRaid";
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"] .. " DPS";
+ { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t10s10_1#", "=q5=" .. AL["Tier 10"] };
{ 2, 50096, "", "=q4=Scourgelord Helmet", "=ds=#s1#, #a4#", "95 #eoffrost#" };
{ 3, 50098, "", "=q4=Scourgelord Shoulderplates", "=ds=#s3#, #a4#", "60 #eoffrost#" };
{ 4, 50094, "", "=q4=Scourgelord Battleplate", "=ds=#s5#, #a4#", "95 #eoffrost#" };
{ 5, 50095, "", "=q4=Scourgelord Gauntlets", "=ds=#s9#, #a4#", "60 #eoffrost#" };
{ 6, 50097, "", "=q4=Scourgelord Legplates", "=ds=#s11#, #a4#", "95 #eoffrost#" };
- { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t10s10_1#", "=q5="..AL["Tier 10"]};
- { 9, 51127, "", "=q4=Sanctified Scourgelord Helmet", "=ds=#s1#, #a4#"};
- { 10, 51125, "", "=q4=Sanctified Scourgelord Shoulderplates", "=ds=#s3#, #a4#"};
- { 11, 51129, "", "=q4=Sanctified Scourgelord Battleplate", "=ds=#s5#, #a4#"};
- { 12, 51128, "", "=q4=Sanctified Scourgelord Gauntlets", "=ds=#s9#, #a4#"};
- { 13, 51126, "", "=q4=Sanctified Scourgelord Legplates", "=ds=#s11#, #a4#"};
- { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t10s10_1#", "=q5="..AL["Tier 10"]};
- { 17, 51312, "", "=q4=Sanctified Scourgelord Helmet", "=ds="};
- { 18, 51314, "", "=q4=Sanctified Scourgelord Shoulderplates", "=ds="};
- { 19, 51310, "", "=q4=Sanctified Scourgelord Battleplate", "=ds="};
- { 20, 51311, "", "=q4=Sanctified Scourgelord Gauntlets", "=ds="};
- { 21, 51313, "", "=q4=Sanctified Scourgelord Legplates", "=ds="};
- Back = "T10SET";
+ { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t10s10_1#", "=q5=" .. AL["Tier 10"] };
+ { 9, 51127, "", "=q4=Sanctified Scourgelord Helmet", "=ds=#s1#, #a4#" };
+ { 10, 51125, "", "=q4=Sanctified Scourgelord Shoulderplates", "=ds=#s3#, #a4#" };
+ { 11, 51129, "", "=q4=Sanctified Scourgelord Battleplate", "=ds=#s5#, #a4#" };
+ { 12, 51128, "", "=q4=Sanctified Scourgelord Gauntlets", "=ds=#s9#, #a4#" };
+ { 13, 51126, "", "=q4=Sanctified Scourgelord Legplates", "=ds=#s11#, #a4#" };
+ { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t10s10_1#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51312, "", "=q4=Sanctified Scourgelord Helmet", "=ds=" };
+ { 18, 51314, "", "=q4=Sanctified Scourgelord Shoulderplates", "=ds=" };
+ { 19, 51310, "", "=q4=Sanctified Scourgelord Battleplate", "=ds=" };
+ { 20, 51311, "", "=q4=Sanctified Scourgelord Gauntlets", "=ds=" };
+ { 21, 51313, "", "=q4=Sanctified Scourgelord Legplates", "=ds=" };
};
-
- AtlasLoot_Data["T10DeathKnightTank"] = {
- { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t10s10_2#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"] .. " TANK";
+ { 1, 0, "Spell_Deathknight_DeathStrike", "=q6=#t10s10_2#", "=q5=" .. AL["Tier 10"] };
{ 2, 50855, "", "=q4=Scourgelord Faceguard", "=ds=#s1#, #a4#", "95 #eoffrost#" };
{ 3, 50853, "", "=q4=Scourgelord Pauldrons", "=ds=#s3#, #a4#", "60 #eoffrost#" };
{ 4, 50857, "", "=q4=Scourgelord Chestguard", "=ds=#s5#, #a4#", "95 #eoffrost#" };
{ 5, 50856, "", "=q4=Scourgelord Handguards", "=ds=#s9#, #a4#", "60 #eoffrost#" };
{ 6, 50854, "", "=q4=Scourgelord Legguards", "=ds=#s11#, #a4#", "95 #eoffrost#" };
- { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t10s10_2#", "=q5="..AL["Tier 10"]};
- { 9, 51133, "", "=q4=Sanctified Scourgelord Faceguard", "=ds=#s1#, #a4#"};
- { 10, 51130, "", "=q4=Sanctified Scourgelord Pauldrons", "=ds=#s3#, #a4#"};
- { 11, 51134, "", "=q4=Sanctified Scourgelord Chestguard", "=ds=#s5#, #a4#"};
- { 12, 51132, "", "=q4=Sanctified Scourgelord Handguards", "=ds=#s9#, #a4#"};
- { 13, 51131, "", "=q4=Sanctified Scourgelord Legguards", "=ds=#s11#, #a4#"};
- { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t10s10_2#", "=q5="..AL["Tier 10"]};
- { 17, 51306, "", "=q4=Sanctified Scourgelord Faceguard", "=ds="};
- { 18, 51309, "", "=q4=Sanctified Scourgelord Pauldrons", "=ds="};
- { 19, 51305, "", "=q4=Sanctified Scourgelord Chestguard", "=ds="};
- { 20, 51307, "", "=q4=Sanctified Scourgelord Handguards", "=ds="};
- { 21, 51308, "", "=q4=Sanctified Scourgelord Legguards", "=ds="};
- Back = "T10SET";
+ { 8, 0, "Spell_Deathknight_DeathStrike", "=q6=#t10s10_2#", "=q5=" .. AL["Tier 10"] };
+ { 9, 51133, "", "=q4=Sanctified Scourgelord Faceguard", "=ds=#s1#, #a4#" };
+ { 10, 51130, "", "=q4=Sanctified Scourgelord Pauldrons", "=ds=#s3#, #a4#" };
+ { 11, 51134, "", "=q4=Sanctified Scourgelord Chestguard", "=ds=#s5#, #a4#" };
+ { 12, 51132, "", "=q4=Sanctified Scourgelord Handguards", "=ds=#s9#, #a4#" };
+ { 13, 51131, "", "=q4=Sanctified Scourgelord Legguards", "=ds=#s11#, #a4#" };
+ { 16, 0, "Spell_Deathknight_DeathStrike", "=q6=#t10s10_2#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51306, "", "=q4=Sanctified Scourgelord Faceguard", "=ds=" };
+ { 18, 51309, "", "=q4=Sanctified Scourgelord Pauldrons", "=ds=" };
+ { 19, 51305, "", "=q4=Sanctified Scourgelord Chestguard", "=ds=" };
+ { 20, 51307, "", "=q4=Sanctified Scourgelord Handguards", "=ds=" };
+ { 21, 51308, "", "=q4=Sanctified Scourgelord Legguards", "=ds=" };
};
-
- AtlasLoot_Data["T10DruidRestoration"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#t10s1_1#", "=q5="..AL["Tier 10"]};
+ {
+ Name = "Druid" .. " - " .. AL["Restoration"];
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t10s1_1#", "=q5=" .. AL["Tier 10"] };
{ 2, 50108, "", "=q4=Lasherweave's Helmet ", "=ds=#s1#, #a2#", "95 #eoffrost#" };
{ 3, 50113, "", "=q4=Lasherweave's Pauldrons", "=ds=#s3#, #a2#", "60 #eoffrost#" };
{ 4, 50106, "", "=q4=Lasherweave's Robes", "=ds=#s5#, #a2#", "95 #eoffrost#" };
{ 5, 50107, "", "=q4=Lasherweave's Gauntlets", "=ds=#s9#, #a2#", "60 #eoffrost#" };
{ 6, 50109, "", "=q4=Lasherweave's Legplates", "=ds=#s11#, #a2#", "95 #eoffrost#" };
- { 8, 0, "Spell_Nature_Regeneration", "=q6=#t10s1_1#", "=q5="..AL["Tier 10"]};
+ { 8, 0, "Spell_Nature_Regeneration", "=q6=#t10s1_1#", "=q5=" .. AL["Tier 10"] };
{ 9, 51137, "", "=q4=Sanctified Lasherweave's Helmet", "=ds=#s1#, #a2#" };
{ 10, 51135, "", "=q4=Sanctified Lasherweave's Pauldrons", "=ds=#s3#, #a2#" };
{ 11, 51139, "", "=q4=Sanctified Lasherweave's Robes", "=ds=#s5#, #a2#" };
{ 12, 51138, "", "=q4=Sanctified Lasherweave's Gauntlets", "=ds=#s9#, #a2#" };
{ 13, 51136, "", "=q4=Sanctified Lasherweave's Legplates", "=ds=#s11#, #a2#" };
- { 16, 0, "Spell_Nature_Regeneration", "=q6=#t10s1_1#", "=q5="..AL["Tier 10"]};
- { 17, 51302, "", "=q4=Sanctified Lasherweave's Helmet", "=ds="};
- { 18, 51304, "", "=q4=Sanctified Lasherweave's Pauldrons", "=ds="};
- { 19, 51300, "", "=q4=Sanctified Lasherweave's Robes", "=ds="};
- { 20, 51301, "", "=q4=Sanctified Lasherweave's Gauntlets", "=ds="};
- { 21, 51303, "", "=q4=Sanctified Lasherweave's Legplates", "=ds="};
- Back = "T10SET";
+ { 16, 0, "Spell_Nature_Regeneration", "=q6=#t10s1_1#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51302, "", "=q4=Sanctified Lasherweave's Helmet", "=ds=" };
+ { 18, 51304, "", "=q4=Sanctified Lasherweave's Pauldrons", "=ds=" };
+ { 19, 51300, "", "=q4=Sanctified Lasherweave's Robes", "=ds=" };
+ { 20, 51301, "", "=q4=Sanctified Lasherweave's Gauntlets", "=ds=" };
+ { 21, 51303, "", "=q4=Sanctified Lasherweave's Legplates", "=ds=" };
};
-
- AtlasLoot_Data["T10DruidFeral"] = {
- { 1, 0, "Ability_Druid_Maul", "=q6=#t10s1_2#", "=q5="..AL["Tier 10"]};
+ {
+ Name = "Druid" .. " - " .. AL["Feral"];
+ { 1, 0, "Ability_Druid_Maul", "=q6=#t10s1_2#", "=q5=" .. AL["Tier 10"] };
{ 2, 50826, "", "=q4=Lasherweave's Headguard", "=ds=#s1#, #a2#", "95 #eoffrost#" };
{ 3, 50824, "", "=q4=Lasherweave's Shoulderpads", "=ds=#s3#, #a2#", "60 #eoffrost#" };
{ 4, 50828, "", "=q4=Lasherweave's Raiment", "=ds=#s5#, #a2#", "95 #eoffrost#" };
{ 5, 50827, "", "=q4=Lasherweave's Handgrips", "=ds=#s9#, #a2#", "60 #eoffrost#" };
{ 6, 50825, "", "=q4=Lasherweave's Legguards", "=ds=#s11#, #a2#", "95 #eoffrost#" };
- { 8, 0, "Ability_Druid_Maul", "=q6=#t10s1_2#", "=q5="..AL["Tier 10"]};
+ { 8, 0, "Ability_Druid_Maul", "=q6=#t10s1_2#", "=q5=" .. AL["Tier 10"] };
{ 9, 51143, "", "=q4=Sanctified Lasherweave's Headguard", "=ds=#s1#, #a2#" };
{ 10, 51140, "", "=q4=Sanctified Lasherweave's Shoulderpads", "=ds=#s3#, #a2#" };
{ 11, 51141, "", "=q4=Sanctified Lasherweave's Raiment", "=ds=#s5#, #a2#" };
{ 12, 51144, "", "=q4=Sanctified Lasherweave's Handgrips", "=ds=#s9#, #a2#" };
{ 13, 51142, "", "=q4=Sanctified Lasherweave's Legguards", "=ds=#s11#, #a2#" };
- { 16, 0, "Ability_Druid_Maul", "=q6=#t10s1_2#", "=q5="..AL["Tier 10"]};
- { 17, 51296, "", "=q4=Sanctified Lasherweave's Headguard", "=ds="};
- { 18, 51299, "", "=q4=Sanctified Lasherweave's Shoulderpads", "=ds="};
- { 19, 51298, "", "=q4=Sanctified Lasherweave's Raiment", "=ds="};
- { 20, 51295, "", "=q4=Sanctified Lasherweave's Handgrips", "=ds="};
- { 21, 51297, "", "=q4=Sanctified Lasherweave's Legguards", "=ds="};
- Back = "T10SET";
+ { 16, 0, "Ability_Druid_Maul", "=q6=#t10s1_2#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51296, "", "=q4=Sanctified Lasherweave's Headguard", "=ds=" };
+ { 18, 51299, "", "=q4=Sanctified Lasherweave's Shoulderpads", "=ds=" };
+ { 19, 51298, "", "=q4=Sanctified Lasherweave's Raiment", "=ds=" };
+ { 20, 51295, "", "=q4=Sanctified Lasherweave's Handgrips", "=ds=" };
+ { 21, 51297, "", "=q4=Sanctified Lasherweave's Legguards", "=ds=" };
};
-
- AtlasLoot_Data["T10DruidBalance"] = {
- { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t10s1_3#", "=q5="..AL["Tier 10"]};
+ {
+ Name = "Druid" .. " - " .. AL["Balance"];
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t10s1_3#", "=q5=" .. AL["Tier 10"] };
{ 2, 50821, "", "=q4=Lasherweave's Cover", "=ds=#s1#, #a2#", "95 #eoffrost#" };
{ 3, 50819, "", "=q4=Lasherweave's Mantle", "=ds=#s3#, #a2#", "60 #eoffrost#" };
{ 4, 50823, "", "=q4=Lasherweave's Vestment", "=ds=#s5#, #a2#", "95 #eoffrost#" };
{ 5, 50822, "", "=q4=Lasherweave's Gloves", "=ds=#s9#, #a2#", "60 #eoffrost#" };
{ 6, 50820, "", "=q4=Lasherweave's Trousers", "=ds=#s11#, #a2#", "95 #eoffrost#" };
- { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#t10s1_3#", "=q5="..AL["Tier 10"]};
+ { 8, 0, "Spell_Nature_InsectSwarm", "=q6=#t10s1_3#", "=q5=" .. AL["Tier 10"] };
{ 9, 51149, "", "=q4=Sanctified Lasherweave's Cover", "=ds=#s1#, #a2#" };
{ 10, 51147, "", "=q4=Sanctified Lasherweave's Mantle", "=ds=#s3#, #a2#" };
{ 11, 51145, "", "=q4=Sanctified Lasherweave's Vestment", "=ds=#s5#, #a2#" };
{ 12, 51148, "", "=q4=Sanctified Lasherweave's Gloves", "=ds=#s9#, #a2#" };
{ 13, 51146, "", "=q4=Sanctified Lasherweave's Trousers", "=ds=#s11#, #a2#" };
- { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#t10s1_3#", "=q5="..AL["Tier 10"]};
- { 17, 51290, "", "=q4=Sanctified Lasherweave's Cover", "=ds="};
- { 18, 51292, "", "=q4=Sanctified Lasherweave's Mantle", "=ds="};
- { 19, 51294, "", "=q4=Sanctified Lasherweave's Vestment", "=ds="};
- { 20, 51291, "", "=q4=Sanctified Lasherweave's Gloves", "=ds="};
- { 21, 51293, "", "=q4=Sanctified Lasherweave's Trousers", "=ds="};
- Back = "T10SET";
+ { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#t10s1_3#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51290, "", "=q4=Sanctified Lasherweave's Cover", "=ds=" };
+ { 18, 51292, "", "=q4=Sanctified Lasherweave's Mantle", "=ds=" };
+ { 19, 51294, "", "=q4=Sanctified Lasherweave's Vestment", "=ds=" };
+ { 20, 51291, "", "=q4=Sanctified Lasherweave's Gloves", "=ds=" };
+ { 21, 51293, "", "=q4=Sanctified Lasherweave's Trousers", "=ds=" };
};
-
- AtlasLoot_Data["T10Hunter"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t10s2#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t10s2#", "=q5=" .. AL["Tier 10"] };
{ 2, 50115, "", "=q4=Ahn'Kahar Blood Hunter's Headpiece", "=ds=#s1#, #a3#", "95 #eoffrost#" };
{ 3, 50117, "", "=q4=Ahn'Kahar Blood Hunter's Spaulders", "=ds=#s3#, #a3#", "60 #eoffrost#" };
{ 4, 50118, "", "=q4=Ahn'Kahar Blood Hunter's Tunic", "=ds=#s5#, #a3#", "95 #eoffrost#" };
{ 5, 50114, "", "=q4=Ahn'Kahar Blood Hunter's Handguards", "=ds=#s9#, #a3#", "60 #eoffrost#" };
{ 6, 50116, "", "=q4=Ahn'Kahar Blood Hunter's Legguards", "=ds=#s11#, #a3#", "95 #eoffrost#" };
- { 8, 0, "Ability_Hunter_RunningShot", "=q6=#t10s2#", "=q5="..AL["Tier 10"]};
- { 9, 51153, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Headpiece", "=ds=#s1#, #a3#"};
- { 10, 51151, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Spaulders", "=ds=#s3#, #a3#"};
- { 11, 51150, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Tunic", "=ds=#s5#, #a3#"};
- { 12, 51154, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Handguards", "=ds=#s9#, #a3#"};
- { 13, 51152, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Legguards", "=ds=#s11#, #a3#"};
- { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t10s2#", "=q5="..AL["Tier 10"]};
- { 17, 51286, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Headpiece", "=ds=#s1#, #a3#"};
- { 18, 51288, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Spaulders", "=ds=#s3#, #a3#"};
- { 19, 51289, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Tunic", "=ds=#s5#, #a3#"};
- { 20, 51285, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Handguards", "=ds=#s9#, #a3#"};
- { 21, 51287, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Legguards", "=ds=#s11#, #a3#"};
- Back = "T10SET";
+ { 8, 0, "Ability_Hunter_RunningShot", "=q6=#t10s2#", "=q5=" .. AL["Tier 10"] };
+ { 9, 51153, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Headpiece", "=ds=#s1#, #a3#" };
+ { 10, 51151, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Spaulders", "=ds=#s3#, #a3#" };
+ { 11, 51150, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Tunic", "=ds=#s5#, #a3#" };
+ { 12, 51154, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Handguards", "=ds=#s9#, #a3#" };
+ { 13, 51152, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Legguards", "=ds=#s11#, #a3#" };
+ { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t10s2#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51286, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Headpiece", "=ds=#s1#, #a3#" };
+ { 18, 51288, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Spaulders", "=ds=#s3#, #a3#" };
+ { 19, 51289, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Tunic", "=ds=#s5#, #a3#" };
+ { 20, 51285, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Handguards", "=ds=#s9#, #a3#" };
+ { 21, 51287, "", "=q4=Sanctified Ahn'Kahar Blood Hunter's Legguards", "=ds=#s11#, #a3#" };
};
-
- AtlasLoot_Data["T10Mage"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#t10s3#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t10s3#", "=q5=" .. AL["Tier 10"] };
{ 2, 50276, "", "=q4=Bloodmage Hood", "=ds=#s1#, #a1#", "95 #eoffrost#" };
{ 3, 50279, "", "=q4=Bloodmage Shoulderpads", "=ds=#s3#, #a1#", "60 #eoffrost#" };
{ 4, 50278, "", "=q4=Bloodmage Robe", "=ds=#s5#, #a1#", "95 #eoffrost#" };
{ 5, 50275, "", "=q4=Bloodmage Gloves", "=ds=#s9#, #a1#", "60 #eoffrost#" };
{ 6, 50277, "", "=q4=Bloodmage Leggings", "=ds=#s11#, #a1#", "95 #eoffrost#" };
- { 8, 0, "Spell_Frost_IceStorm", "=q6=#t10s3#", "=q5="..AL["Tier 10"]};
- { 9, 51158, "", "=q4=Sanctified Bloodmage Hood", "=ds=#s1#, #a1#"};
- { 10, 51155, "", "=q4=Sanctified Bloodmage Shoulderpads", "=ds=#s3#, #a1#"};
- { 11, 51156, "", "=q4=Sanctified Bloodmage Robe", "=ds=#s5#, #a1#"};
- { 12, 51159, "", "=q4=Sanctified Bloodmage Gloves", "=ds=#s9#, #a1#"};
- { 13, 51157, "", "=q4=Sanctified Bloodmage Leggings", "=ds=#s11#, #a1#"};
- { 16, 0, "Spell_Frost_IceStorm", "=q6=#t10s3#", "=q5="..AL["Tier 10"]};
- { 17, 51281, "", "=q4=Sanctified Bloodmage Hood", "=ds=#s1#, #a1#"};
- { 18, 51284, "", "=q4=Sanctified Bloodmage Shoulderpads", "=ds=#s3#, #a1#"};
- { 19, 51283, "", "=q4=Sanctified Bloodmage Robe", "=ds=#s5#, #a1#"};
- { 20, 51280, "", "=q4=Sanctified Bloodmage Gauntlets", "=ds=#s9#, #a1#"};
- { 21, 51282, "", "=q4=Sanctified Bloodmage Leggings", "=ds=#s11#, #a1#"};
- Back = "T10SET";
+ { 8, 0, "Spell_Frost_IceStorm", "=q6=#t10s3#", "=q5=" .. AL["Tier 10"] };
+ { 9, 51158, "", "=q4=Sanctified Bloodmage Hood", "=ds=#s1#, #a1#" };
+ { 10, 51155, "", "=q4=Sanctified Bloodmage Shoulderpads", "=ds=#s3#, #a1#" };
+ { 11, 51156, "", "=q4=Sanctified Bloodmage Robe", "=ds=#s5#, #a1#" };
+ { 12, 51159, "", "=q4=Sanctified Bloodmage Gloves", "=ds=#s9#, #a1#" };
+ { 13, 51157, "", "=q4=Sanctified Bloodmage Leggings", "=ds=#s11#, #a1#" };
+ { 16, 0, "Spell_Frost_IceStorm", "=q6=#t10s3#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51281, "", "=q4=Sanctified Bloodmage Hood", "=ds=#s1#, #a1#" };
+ { 18, 51284, "", "=q4=Sanctified Bloodmage Shoulderpads", "=ds=#s3#, #a1#" };
+ { 19, 51283, "", "=q4=Sanctified Bloodmage Robe", "=ds=#s5#, #a1#" };
+ { 20, 51280, "", "=q4=Sanctified Bloodmage Gauntlets", "=ds=#s9#, #a1#" };
+ { 21, 51282, "", "=q4=Sanctified Bloodmage Leggings", "=ds=#s11#, #a1#" };
};
-
- AtlasLoot_Data["T10PaladinHoly"] = {
- { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t10s4_1#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Holy"];
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t10s4_1#", "=q5=" .. AL["Tier 10"] };
{ 2, 50867, "", "=q4=Lightsworn Headpiece", "=ds=#s1#, #a4#", "95 #eoffrost#" };
{ 3, 50865, "", "=q4=Lightsworn Spaulders", "=ds=#s3#, #a4#", "60 #eoffrost#" };
{ 4, 50869, "", "=q4=Lightsworn Tunic", "=ds=#s5#, #a4#", "95 #eoffrost#" };
{ 5, 50868, "", "=q4=Lightsworn Gloves", "=ds=#s9#, #a4#", "60 #eoffrost#" };
{ 6, 50866, "", "=q4=Lightsworn Greaves", "=ds=#s11#, #a4#", "95 #eoffrost#" };
- { 8, 0, "Spell_Holy_HolyBolt", "=q6=#t10s4_1#", "=q5="..AL["Tier 10"]};
+ { 8, 0, "Spell_Holy_HolyBolt", "=q6=#t10s4_1#", "=q5=" .. AL["Tier 10"] };
{ 9, 51167, "", "=q4=Sanctified Lightsworn Headpiece", "=ds=#s1#, #a4#" };
{ 10, 51166, "", "=q4=Sanctified Lightsworn Spaulders", "=ds=#s3#, #a4#" };
{ 11, 51165, "", "=q4=Sanctified Lightsworn Tunic", "=ds=#s5#, #a4#" };
{ 12, 51169, "", "=q4=Sanctified Lightsworn Gloves", "=ds=#s9#, #a4#" };
{ 13, 51168, "", "=q4=Sanctified Lightsworn Greaves", "=ds=#s11#, #a4#" };
- { 16, 0, "Spell_Holy_HolyBolt", "=q6=#t10s4_1#", "=q5="..AL["Tier 10"]};
- { 17, 51272, "", "=q4=Sanctified Lightsworn Headpiece", "=ds=#s1#, #a4#"};
- { 18, 51273, "", "=q4=Sanctified Lightsworn Spaulders", "=ds=#s3#, #a4#"};
- { 19, 51274, "", "=q4=Sanctified Lightsworn Tunic", "=ds=#s5#, #a4#"};
- { 20, 51270, "", "=q4=Sanctified Lightsworn Gloves", "=ds=#s9#, #a4#"};
- { 21, 51271, "", "=q4=Sanctified Lightsworn Greaves", "=ds=#s11#, #a4#"};
- Back = "T10SET";
+ { 16, 0, "Spell_Holy_HolyBolt", "=q6=#t10s4_1#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51272, "", "=q4=Sanctified Lightsworn Headpiece", "=ds=#s1#, #a4#" };
+ { 18, 51273, "", "=q4=Sanctified Lightsworn Spaulders", "=ds=#s3#, #a4#" };
+ { 19, 51274, "", "=q4=Sanctified Lightsworn Tunic", "=ds=#s5#, #a4#" };
+ { 20, 51270, "", "=q4=Sanctified Lightsworn Gloves", "=ds=#s9#, #a4#" };
+ { 21, 51271, "", "=q4=Sanctified Lightsworn Greaves", "=ds=#s11#, #a4#" };
};
-
- AtlasLoot_Data["T10PaladinRetribution"] = {
- { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t10s4_2#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Retribution"];
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t10s4_2#", "=q5=" .. AL["Tier 10"] };
{ 2, 50326, "", "=q4=Lightsworn Helmet", "=ds=#s1#, #a4#", "95 #eoffrost#" };
{ 3, 50324, "", "=q4=Lightsworn Shoulderplates", "=ds=#s3#, #a4#", "60 #eoffrost#" };
{ 4, 50328, "", "=q4=Lightsworn Battleplate", "=ds=#s5#, #a4#", "95 #eoffrost#" };
{ 5, 50327, "", "=q4=Lightsworn Gauntlets", "=ds=#s9#, #a4#", "60 #eoffrost#" };
{ 6, 50325, "", "=q4=Lightsworn Legplates", "=ds=#s11#, #a4#", "95 #eoffrost#" };
- { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#t10s4_2#", "=q5="..AL["Tier 10"]};
+ { 8, 0, "Spell_Holy_AuraOfLight", "=q6=#t10s4_2#", "=q5=" .. AL["Tier 10"] };
{ 9, 51162, "", "=q4=Sanctified Lightsworn Helmet", "=ds=#s1#, #a4#" };
{ 10, 51160, "", "=q4=Sanctified Lightsworn Shoulderplates", "=ds=#s3#, #a4#" };
{ 11, 51164, "", "=q4=Sanctified Lightsworn Battleplate", "=ds=#s5#, #a4#" };
{ 12, 51163, "", "=q4=Sanctified Lightsworn Gauntlets", "=ds=#s9#, #a4#" };
{ 13, 51161, "", "=q4=Sanctified Lightsworn Legplates", "=ds=#s11#, #a4#" };
- { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#t10s4_2#", "=q5="..AL["Tier 10"]};
- { 17, 51277, "", "=q4=Sanctified Lightsworn Helmet", "=ds=#s1#, #a4#"};
- { 18, 51279, "", "=q4=Sanctified Lightsworn Shoulderplates", "=ds=#s3#, #a4#"};
- { 19, 51275, "", "=q4=Sanctified Lightsworn Battleplate", "=ds=#s5#, #a4#"};
- { 20, 51276, "", "=q4=Sanctified Lightsworn Gauntlets", "=ds=#s9#, #a4#"};
- { 21, 51278, "", "=q4=Sanctified Lightsworn Legplates", "=ds=#s11#, #a4#"};
- Back = "T10SET";
+ { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#t10s4_2#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51277, "", "=q4=Sanctified Lightsworn Helmet", "=ds=#s1#, #a4#" };
+ { 18, 51279, "", "=q4=Sanctified Lightsworn Shoulderplates", "=ds=#s3#, #a4#" };
+ { 19, 51275, "", "=q4=Sanctified Lightsworn Battleplate", "=ds=#s5#, #a4#" };
+ { 20, 51276, "", "=q4=Sanctified Lightsworn Gauntlets", "=ds=#s9#, #a4#" };
+ { 21, 51278, "", "=q4=Sanctified Lightsworn Legplates", "=ds=#s11#, #a4#" };
};
-
- AtlasLoot_Data["T10PaladinProtection"] = {
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t10s4_3#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - " .. AL["Protection"];
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t10s4_3#", "=q5=" .. AL["Tier 10"] };
{ 2, 50862, "", "=q4=Lightsworn Faceguard", "=ds=#s1#, #a4#", "95 #eoffrost#" };
{ 3, 50860, "", "=q4=Lightsworn Shoulderguards", "=ds=#s3#, #a4#", "60 #eoffrost#" };
{ 4, 50864, "", "=q4=Lightsworn Chestguard", "=ds=#s5#, #a4#", "95 #eoffrost#" };
{ 5, 50863, "", "=q4=Lightsworn Handguards", "=ds=#s9#, #a4#", "60 #eoffrost#" };
{ 6, 50861, "", "=q4=Lightsworn Legguards", "=ds=#s11#, #a4#", "95 #eoffrost#" };
- { 8, 0, "Spell_Holy_SealOfMight", "=q6=#t10s4_3#", "=q5="..AL["Tier 10"]};
+ { 8, 0, "Spell_Holy_SealOfMight", "=q6=#t10s4_3#", "=q5=" .. AL["Tier 10"] };
{ 9, 51173, "", "=q4=Sanctified Lightsworn Faceguard", "=ds=#s1#, #a4#" };
{ 10, 51170, "", "=q4=Sanctified Lightsworn Shoulderguards", "=ds=#s3#, #a4#" };
{ 11, 51174, "", "=q4=Sanctified Lightsworn Chestguard", "=ds=#s5#, #a4#" };
{ 12, 51172, "", "=q4=Sanctified Lightsworn Handguards", "=ds=#s9#, #a4#" };
{ 13, 51171, "", "=q4=Sanctified Lightsworn Legguards", "=ds=#s11#, #a4#" };
- { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t10s4_3#", "=q5="..AL["Tier 10"]};
- { 17, 51266, "", "=q4=Sanctified Lightsworn Faceguard", "=ds=#s1#, #a4#"};
- { 18, 51269, "", "=q4=Sanctified Lightsworn Shoulderguards", "=ds=#s3#, #a4#"};
- { 19, 51265, "", "=q4=Sanctified Lightsworn Chestguard", "=ds=#s5#, #a4#"};
- { 20, 51267, "", "=q4=Sanctified Lightsworn Handguards", "=ds=#s9#, #a4#"};
- { 21, 51268, "", "=q4=Sanctified Lightsworn Legguards", "=ds=#s11#, #a4#"};
- Back = "T10SET";
+ { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t10s4_3#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51266, "", "=q4=Sanctified Lightsworn Faceguard", "=ds=#s1#, #a4#" };
+ { 18, 51269, "", "=q4=Sanctified Lightsworn Shoulderguards", "=ds=#s3#, #a4#" };
+ { 19, 51265, "", "=q4=Sanctified Lightsworn Chestguard", "=ds=#s5#, #a4#" };
+ { 20, 51267, "", "=q4=Sanctified Lightsworn Handguards", "=ds=#s9#, #a4#" };
+ { 21, 51268, "", "=q4=Sanctified Lightsworn Legguards", "=ds=#s11#, #a4#" };
};
-
- AtlasLoot_Data["T10PriestShadow"] = {
- { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t10s5_1#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - " .. AL["Shadow"];
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t10s5_1#", "=q5=" .. AL["Tier 10"] };
{ 2, 50392, "", "=q4=Crimson Acolyte Cowl", "=ds=#s1#, #a1#", "95 #eoffrost#" };
{ 3, 50396, "", "=q4=Crimson Acolyte Mantle", "=ds=#s3#, #a1#", "60 #eoffrost#" };
{ 4, 50394, "", "=q4=Crimson Acolyte Raiments", "=ds=#s5#, #a1#", "95 #eoffrost#" };
{ 5, 50391, "", "=q4=Crimson Acolyte Handwraps", "=ds=#s9#, #a1#", "60 #eoffrost#" };
{ 6, 50393, "", "=q4=Crimson Acolyte Pants", "=ds=#s11#, #a1#", "95 #eoffrost#" };
- { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#t10s5_1#", "=q5="..AL["Tier 10"]};
- { 9, 51184, "", "=q4=Sanctified Crimson Acolyte Cowl", "=ds=#s1#, #a1#"};
- { 10, 51182, "", "=q4=Sanctified Crimson Acolyte Mantle", "=ds=#s3#, #a1#"};
- { 11, 51180, "", "=q4=Sanctified Crimson Acolyte Raiments", "=ds=#s5#, #a1#"};
- { 12, 51183, "", "=q4=Sanctified Crimson Acolyte Handwraps", "=ds=#s9#, #a1#"};
- { 13, 51181, "", "=q4=Sanctified Crimson Acolyte Pants", "=ds=#s11#, #a1#"};
- { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#t10s5_1#", "=q5="..AL["Tier 10"]};
- { 17, 51255, "", "=q4=Sanctified Crimson Acolyte Cowl", "=ds=#s1#, #a1#"};
- { 18, 51257, "", "=q4=Sanctified Crimson Acolyte Mantle", "=ds=#s3#, #a1#"};
- { 19, 51259, "", "=q4=Sanctified Crimson Acolyte Raiments", "=ds=#s5#, #a1#"};
- { 20, 51256, "", "=q4=Sanctified Crimson Acolyte Handwraps", "=ds=#s9#, #a1#"};
- { 21, 51258, "", "=q4=Sanctified Crimson Acolyte Pants", "=ds=#s11#, #a1#"};
- Back = "T10SET";
+ { 8, 0, "Spell_Shadow_AntiShadow", "=q6=#t10s5_1#", "=q5=" .. AL["Tier 10"] };
+ { 9, 51184, "", "=q4=Sanctified Crimson Acolyte Cowl", "=ds=#s1#, #a1#" };
+ { 10, 51182, "", "=q4=Sanctified Crimson Acolyte Mantle", "=ds=#s3#, #a1#" };
+ { 11, 51180, "", "=q4=Sanctified Crimson Acolyte Raiments", "=ds=#s5#, #a1#" };
+ { 12, 51183, "", "=q4=Sanctified Crimson Acolyte Handwraps", "=ds=#s9#, #a1#" };
+ { 13, 51181, "", "=q4=Sanctified Crimson Acolyte Pants", "=ds=#s11#, #a1#" };
+ { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#t10s5_1#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51255, "", "=q4=Sanctified Crimson Acolyte Cowl", "=ds=#s1#, #a1#" };
+ { 18, 51257, "", "=q4=Sanctified Crimson Acolyte Mantle", "=ds=#s3#, #a1#" };
+ { 19, 51259, "", "=q4=Sanctified Crimson Acolyte Raiments", "=ds=#s5#, #a1#" };
+ { 20, 51256, "", "=q4=Sanctified Crimson Acolyte Handwraps", "=ds=#s9#, #a1#" };
+ { 21, 51258, "", "=q4=Sanctified Crimson Acolyte Pants", "=ds=#s11#, #a1#" };
};
-
- AtlasLoot_Data["T10PriestHoly"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t10s5_2#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - " .. AL["Holy"];
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t10s5_2#", "=q5=" .. AL["Tier 10"] };
{ 2, 50765, "", "=q4=Crimson Acolyte Hood", "=ds=#s1#, #a1#", "95 #eoffrost#" };
{ 3, 50767, "", "=q4=Crimson Acolyte Shoulderpads", "=ds=#s3#, #a1#", "60 #eoffrost#" };
{ 4, 50768, "", "=q4=Crimson Acolyte Robe", "=ds=#s5#, #a1#", "95 #eoffrost#" };
{ 5, 50766, "", "=q4=Crimson Acolyte Gloves", "=ds=#s9#, #a1#", "60 #eoffrost#" };
{ 6, 50769, "", "=q4=Crimson Acolyte Leggings", "=ds=#s11#, #a1#", "95 #eoffrost#" };
- { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#t10s5_2#", "=q5="..AL["Tier 10"]};
- { 9, 51178, "", "=q4=Sanctified Crimson Acolyte Hood", "=ds=#s1#, #a1#"};
- { 10, 51175, "", "=q4=Sanctified Crimson Acolyte Shoulderpads", "=ds=#s3#, #a1#"};
- { 11, 51176, "", "=q4=Sanctified Crimson Acolyte Robe", "=ds=#s5#, #a1#"};
- { 12, 51179, "", "=q4=Sanctified Crimson Acolyte Gloves", "=ds=#s9#, #a1#"};
- { 13, 51177, "", "=q4=Sanctified Crimson Acolyte Leggings", "=ds=#s11#, #a1#"};
- { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t10s5_2#", "=q5="..AL["Tier 10"]};
- { 17, 51261, "", "=q4=Sanctified Crimson Acolyte Hood", "=ds=#s1#, #a1#"};
- { 18, 51264, "", "=q4=Sanctified Crimson Acolyte Shoulderpads", "=ds=#s3#, #a1#"};
- { 19, 51263, "", "=q4=Sanctified Crimson Acolyte Robe", "=ds=#s5#, #a1#"};
- { 20, 51260, "", "=q4=Sanctified Crimson Acolyte Gloves", "=ds=#s9#, #a1#"};
- { 21, 51262, "", "=q4=Sanctified Crimson Acolyte Leggings", "=ds=#s11#, #a1#"};
- Back = "T10SET";
+ { 8, 0, "Spell_Holy_PowerWordShield", "=q6=#t10s5_2#", "=q5=" .. AL["Tier 10"] };
+ { 9, 51178, "", "=q4=Sanctified Crimson Acolyte Hood", "=ds=#s1#, #a1#" };
+ { 10, 51175, "", "=q4=Sanctified Crimson Acolyte Shoulderpads", "=ds=#s3#, #a1#" };
+ { 11, 51176, "", "=q4=Sanctified Crimson Acolyte Robe", "=ds=#s5#, #a1#" };
+ { 12, 51179, "", "=q4=Sanctified Crimson Acolyte Gloves", "=ds=#s9#, #a1#" };
+ { 13, 51177, "", "=q4=Sanctified Crimson Acolyte Leggings", "=ds=#s11#, #a1#" };
+ { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t10s5_2#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51261, "", "=q4=Sanctified Crimson Acolyte Hood", "=ds=#s1#, #a1#" };
+ { 18, 51264, "", "=q4=Sanctified Crimson Acolyte Shoulderpads", "=ds=#s3#, #a1#" };
+ { 19, 51263, "", "=q4=Sanctified Crimson Acolyte Robe", "=ds=#s5#, #a1#" };
+ { 20, 51260, "", "=q4=Sanctified Crimson Acolyte Gloves", "=ds=#s9#, #a1#" };
+ { 21, 51262, "", "=q4=Sanctified Crimson Acolyte Leggings", "=ds=#s11#, #a1#" };
};
-
- AtlasLoot_Data["T10Rogue"] = {
- { 1, 0, "Ability_BackStab", "=q6=#t10s6#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 0, "Ability_BackStab", "=q6=#t10s6#", "=q5=" .. AL["Tier 10"] };
{ 2, 50089, "", "=q4=Shadowblade Helmet", "=ds=#s1#, #a2#", "95 #eoffrost#" };
{ 3, 50105, "", "=q4=Shadowblade Pauldrons", "=ds=#s3#, #a2#", "60 #eoffrost#" };
{ 4, 50087, "", "=q4=Shadowblade Breastplate", "=ds=#s5#, #a2#", "95 #eoffrost#" };
{ 5, 50088, "", "=q4=Shadowblade Gauntlets", "=ds=#s9#, #a2#", "60 #eoffrost#" };
{ 6, 50090, "", "=q4=Shadowblade Legplates", "=ds=#s11#, #a2#", "95 #eoffrost#" };
- { 8, 0, "Ability_BackStab", "=q6=#t10s6#", "=q5="..AL["Tier 10"]};
- { 9, 51187, "", "=q4=Sanctified Shadowblade Helmet", "=ds=#s1#, #a2#"};
- { 10, 51185, "", "=q4=Sanctified Shadowblade Pauldrons", "=ds=#s3#, #a2#"};
- { 11, 51189, "", "=q4=Sanctified Shadowblade Breastplate", "=ds=#s5#, #a2#"};
- { 12, 51188, "", "=q4=Sanctified Shadowblade Gauntlets", "=ds=#s9#, #a2#"};
- { 13, 51186, "", "=q4=Sanctified Shadowblade Legplates", "=ds=#s11#, #a2#"};
- { 16, 0, "Ability_BackStab", "=q6=#t10s6#", "=q5="..AL["Tier 10"]};
- { 17, 51252, "", "=q4=Sanctified Shadowblade Helmet", "=ds=#s1#, #a2#"};
- { 18, 51254, "", "=q4=Sanctified Shadowblade Pauldrons", "=ds=#s3#, #a2#"};
- { 19, 51250, "", "=q4=Sanctified Shadowblade Breastplate", "=ds=#s5#, #a2#"};
- { 20, 51251, "", "=q4=Sanctified Shadowblade Gauntlets", "=ds=#s9#, #a2#"};
- { 21, 51253, "", "=q4=Sanctified Shadowblade Legplates", "=ds=#s11#, #a2#"};
- Back = "T10SET";
+ { 8, 0, "Ability_BackStab", "=q6=#t10s6#", "=q5=" .. AL["Tier 10"] };
+ { 9, 51187, "", "=q4=Sanctified Shadowblade Helmet", "=ds=#s1#, #a2#" };
+ { 10, 51185, "", "=q4=Sanctified Shadowblade Pauldrons", "=ds=#s3#, #a2#" };
+ { 11, 51189, "", "=q4=Sanctified Shadowblade Breastplate", "=ds=#s5#, #a2#" };
+ { 12, 51188, "", "=q4=Sanctified Shadowblade Gauntlets", "=ds=#s9#, #a2#" };
+ { 13, 51186, "", "=q4=Sanctified Shadowblade Legplates", "=ds=#s11#, #a2#" };
+ { 16, 0, "Ability_BackStab", "=q6=#t10s6#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51252, "", "=q4=Sanctified Shadowblade Helmet", "=ds=#s1#, #a2#" };
+ { 18, 51254, "", "=q4=Sanctified Shadowblade Pauldrons", "=ds=#s3#, #a2#" };
+ { 19, 51250, "", "=q4=Sanctified Shadowblade Breastplate", "=ds=#s5#, #a2#" };
+ { 20, 51251, "", "=q4=Sanctified Shadowblade Gauntlets", "=ds=#s9#, #a2#" };
+ { 21, 51253, "", "=q4=Sanctified Shadowblade Legplates", "=ds=#s11#, #a2#" };
};
-
- AtlasLoot_Data["T10ShamanElemental"] = {
- { 1, 0, "Spell_Nature_Lightning", "=q6=#t10s7_3#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Elemental"];
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#t10s7_3#", "=q5=" .. AL["Tier 10"] };
{ 2, 50843, "", "=q4=Frost Witch's Helm", "=ds=#s1#, #a3#", "95 #eoffrost#" };
{ 3, 50845, "", "=q4=Frost Witch's Shoulderpads", "=ds=#s3#, #a3#", "60 #eoffrost#" };
{ 4, 50841, "", "=q4=Frost Witch's Hauberk", "=ds=#s5#, #a3#", "95 #eoffrost#" };
{ 5, 50842, "", "=q4=Frost Witch's Gloves", "=ds=#s9#, #a3#", "60 #eoffrost#" };
{ 6, 50844, "", "=q4=Frost Witch's Kilt", "=ds=#s11#, #a3#", "95 #eoffrost#" };
- { 8, 0, "Spell_Nature_Lightning", "=q6=#t10s7_3#", "=q5="..AL["Tier 10"]};
+ { 8, 0, "Spell_Nature_Lightning", "=q6=#t10s7_3#", "=q5=" .. AL["Tier 10"] };
{ 9, 51202, "", "=q4=Sanctified Frost Witch's Helm", "=ds=#s1#, #a3#" };
{ 10, 51204, "", "=q4=Sanctified Frost Witch's Shoulderpads", "=ds=#s3#, #a3#" };
{ 11, 51200, "", "=q4=Sanctified Frost Witch's Hauberk", "=ds=#s5#, #a3#" };
{ 12, 51201, "", "=q4=Sanctified Frost Witch's Gloves", "=ds=#s9#, #a3#" };
{ 13, 51203, "", "=q4=Sanctified Frost Witch's Kilt", "=ds=#s11#, #a3#" };
- { 16, 0, "Spell_Nature_Lightning", "=q6=#t10s7_3#", "=q5="..AL["Tier 10"]};
- { 17, 51237, "", "=q4=Sanctified Frost Witch's Helm", "=ds=#s1#, #a3#"};
- { 18, 51235, "", "=q4=Sanctified Frost Witch's Shoulderpads", "=ds=#s3#, #a3#"};
- { 19, 51239, "", "=q4=Sanctified Frost Witch's Hauberk", "=ds=#s5#, #a3#"};
- { 20, 51238, "", "=q4=Sanctified Frost Witch's Gloves", "=ds=#s9#, #a3#"};
- { 21, 51236, "", "=q4=Sanctified Frost Witch's Kilt", "=ds=#s11#, #a3#"};
- Back = "T10SET";
+ { 16, 0, "Spell_Nature_Lightning", "=q6=#t10s7_3#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51237, "", "=q4=Sanctified Frost Witch's Helm", "=ds=#s1#, #a3#" };
+ { 18, 51235, "", "=q4=Sanctified Frost Witch's Shoulderpads", "=ds=#s3#, #a3#" };
+ { 19, 51239, "", "=q4=Sanctified Frost Witch's Hauberk", "=ds=#s5#, #a3#" };
+ { 20, 51238, "", "=q4=Sanctified Frost Witch's Gloves", "=ds=#s9#, #a3#" };
+ { 21, 51236, "", "=q4=Sanctified Frost Witch's Kilt", "=ds=#s11#, #a3#" };
};
-
- AtlasLoot_Data["T10ShamanEnhancement"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t10s7_2#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Enhancement"];
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t10s7_2#", "=q5=" .. AL["Tier 10"] };
{ 2, 50832, "", "=q4=Frost Witch's Faceguard", "=ds=#s1#, #a3#", "95 #eoffrost#" };
{ 3, 50834, "", "=q4=Frost Witch's Shoulderguards", "=ds=#s3#, #a3#", "60 #eoffrost#" };
{ 4, 50830, "", "=q4=Frost Witch's Chestguard", "=ds=#s5#, #a3#", "95 #eoffrost#" };
{ 5, 50831, "", "=q4=Frost Witch's Grips", "=ds=#s9#, #a3#", "60 #eoffrost#" };
{ 6, 50833, "", "=q4=Frost Witch's War-Kilt", "=ds=#s11#, #a3#", "95 #eoffrost#" };
- { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#t10s7_2#", "=q5="..AL["Tier 10"]};
+ { 8, 0, "Spell_FireResistanceTotem_01", "=q6=#t10s7_2#", "=q5=" .. AL["Tier 10"] };
{ 9, 51197, "", "=q4=Sanctified Frost Witch's Faceguard", "=ds=#s1#, #a3#" };
{ 10, 51199, "", "=q4=Sanctified Frost Witch's Shoulderguards", "=ds=#s3#, #a3#" };
{ 11, 51195, "", "=q4=Sanctified Frost Witch's Chestguard", "=ds=#s5#, #a3#" };
{ 12, 51196, "", "=q4=Sanctified Frost Witch's Grips", "=ds=#s9#, #a3#" };
{ 13, 51198, "", "=q4=Sanctified Frost Witch's War-Kilt", "=ds=#s11#, #a3#" };
- { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t10s7_2#", "=q5="..AL["Tier 10"]};
- { 17, 51242, "", "=q4=Sanctified Frost Witch's Faceguard", "=ds=#s1#, #a3#"};
- { 18, 51240, "", "=q4=Sanctified Frost Witch's Shoulderguards", "=ds=#s3#, #a3#"};
- { 19, 51244, "", "=q4=Sanctified Frost Witch's Chestguard", "=ds=#s5#, #a3#"};
- { 20, 51243, "", "=q4=Sanctified Frost Witch's Grips", "=ds=#s9#, #a3#"};
- { 21, 51241, "", "=q4=Sanctified Frost Witch's War-Kilt", "=ds=#s11#, #a3#"};
- Back = "T10SET";
-
+ { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t10s7_2#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51242, "", "=q4=Sanctified Frost Witch's Faceguard", "=ds=#s1#, #a3#" };
+ { 18, 51240, "", "=q4=Sanctified Frost Witch's Shoulderguards", "=ds=#s3#, #a3#" };
+ { 19, 51244, "", "=q4=Sanctified Frost Witch's Chestguard", "=ds=#s5#, #a3#" };
+ { 20, 51243, "", "=q4=Sanctified Frost Witch's Grips", "=ds=#s9#, #a3#" };
+ { 21, 51241, "", "=q4=Sanctified Frost Witch's War-Kilt", "=ds=#s11#, #a3#" };
};
-
- AtlasLoot_Data["T10ShamanRestoration"] = {
- { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t10s7_1#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - " .. AL["Restoration"];
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t10s7_1#", "=q5=" .. AL["Tier 10"] };
{ 2, 50837, "", "=q4=Frost Witch's Headpiece", "=ds=#s1#, #a3#", "95 #eoffrost#" };
{ 3, 50839, "", "=q4=Frost Witch's Spaulders", "=ds=#s3#, #a3#", "60 #eoffrost#" };
{ 4, 50835, "", "=q4=Frost Witch's Tunic", "=ds=#s5#, #a3#", "95 #eoffrost#" };
{ 5, 50836, "", "=q4=Frost Witch's Handguards", "=ds=#s9#, #a3#", "60 #eoffrost#" };
{ 6, 50838, "", "=q4=Frost Witch's Legguards", "=ds=#s11#, #a3#", "95 #eoffrost#" };
- { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t10s7_1#", "=q5="..AL["Tier 10"]};
+ { 8, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t10s7_1#", "=q5=" .. AL["Tier 10"] };
{ 9, 51192, "", "=q4=Sanctified Frost Witch's Headpiece", "=ds=#s1#, #a3#" };
{ 10, 51194, "", "=q4=Sanctified Frost Witch's Spaulders", "=ds=#s3#, #a3#" };
{ 11, 51190, "", "=q4=Sanctified Frost Witch's Tunic", "=ds=#s5#, #a3#" };
{ 12, 51191, "", "=q4=Sanctified Frost Witch's Handguards", "=ds=#s9#, #a3#" };
{ 13, 51193, "", "=q4=Sanctified Frost Witch's Legguards", "=ds=#s11#, #a3#" };
- { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t10s7_1#", "=q5="..AL["Tier 10"]};
- { 17, 51247, "", "=q4=Sanctified Frost Witch's Headpiece", "=ds=#s1#, #a3#"};
- { 18, 51245, "", "=q4=Sanctified Frost Witch's Spaulders", "=ds=#s3#, #a3#"};
- { 19, 51249, "", "=q4=Sanctified Frost Witch's Tunic", "=ds=#s5#, #a3#"};
- { 20, 51248, "", "=q4=Sanctified Frost Witch's Handguards", "=ds=#s9#, #a3#"};
- { 21, 51246, "", "=q4=Sanctified Frost Witch's Legguards", "=ds=#s11#, #a3#"};
- Back = "T10SET";
+ { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t10s7_1#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51247, "", "=q4=Sanctified Frost Witch's Headpiece", "=ds=#s1#, #a3#" };
+ { 18, 51245, "", "=q4=Sanctified Frost Witch's Spaulders", "=ds=#s3#, #a3#" };
+ { 19, 51249, "", "=q4=Sanctified Frost Witch's Tunic", "=ds=#s5#, #a3#" };
+ { 20, 51248, "", "=q4=Sanctified Frost Witch's Handguards", "=ds=#s9#, #a3#" };
+ { 21, 51246, "", "=q4=Sanctified Frost Witch's Legguards", "=ds=#s11#, #a3#" };
};
-
- AtlasLoot_Data["T10Warlock"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t10s8#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t10s8#", "=q5=" .. AL["Tier 10"] };
{ 2, 50241, "", "=q4=Dark Coven Hood", "=ds=#s1#, #a1#", "95 #eoffrost#" };
{ 3, 50244, "", "=q4=Dark Coven Shoulderpads", "=ds=#s3#, #a1#", "60 #eoffrost#" };
{ 4, 50243, "", "=q4=Dark Coven Robe", "=ds=#s5#, #a1#", "95 #eoffrost#" };
{ 5, 50240, "", "=q4=Dark Coven Gloves", "=ds=#s9#, #a1#", "60 #eoffrost#" };
{ 6, 50242, "", "=q4=Dark Coven Leggings", "=ds=#s11#, #a1#", "95 #eoffrost#" };
- { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t10s8#", "=q5="..AL["Tier 10"]};
- { 9, 51208, "", "=q4=Sanctified Dark Coven Hood", "=ds=#s1#, #a1#"};
- { 10, 51205, "", "=q4=Sanctified Dark Coven Shoulderpads", "=ds=#s3#, #a1#"};
- { 11, 51206, "", "=q4=Sanctified Dark Coven Robe", "=ds=#s5#, #a1#"};
- { 12, 51209, "", "=q4=Sanctified Dark Coven Gloves", "=ds=#s9#, #a1#"};
- { 13, 51207, "", "=q4=Sanctified Dark Coven Leggings", "=ds=#s11#, #a1#"};
- { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t10s8#", "=q5="..AL["Tier 10"]};
- { 17, 51231, "", "=q4=Sanctified Dark Coven Hood", "=ds=#s1#, #a1#"};
- { 18, 51234, "", "=q4=Sanctified Dark Coven Shoulderpads", "=ds=#s3#, #a1#"};
- { 19, 51233, "", "=q4=Sanctified Dark Coven Robe", "=ds=#s5#, #a1#"};
- { 20, 51230, "", "=q4=Sanctified Dark Coven Gloves", "=ds=#s9#, #a1#"};
- { 21, 51232, "", "=q4=Sanctified Dark Coven Leggings", "=ds=#s11#, #a1#"};
- Back = "T10SET";
+ { 8, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t10s8#", "=q5=" .. AL["Tier 10"] };
+ { 9, 51208, "", "=q4=Sanctified Dark Coven Hood", "=ds=#s1#, #a1#" };
+ { 10, 51205, "", "=q4=Sanctified Dark Coven Shoulderpads", "=ds=#s3#, #a1#" };
+ { 11, 51206, "", "=q4=Sanctified Dark Coven Robe", "=ds=#s5#, #a1#" };
+ { 12, 51209, "", "=q4=Sanctified Dark Coven Gloves", "=ds=#s9#, #a1#" };
+ { 13, 51207, "", "=q4=Sanctified Dark Coven Leggings", "=ds=#s11#, #a1#" };
+ { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t10s8#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51231, "", "=q4=Sanctified Dark Coven Hood", "=ds=#s1#, #a1#" };
+ { 18, 51234, "", "=q4=Sanctified Dark Coven Shoulderpads", "=ds=#s3#, #a1#" };
+ { 19, 51233, "", "=q4=Sanctified Dark Coven Robe", "=ds=#s5#, #a1#" };
+ { 20, 51230, "", "=q4=Sanctified Dark Coven Gloves", "=ds=#s9#, #a1#" };
+ { 21, 51232, "", "=q4=Sanctified Dark Coven Leggings", "=ds=#s11#, #a1#" };
};
-
- AtlasLoot_Data["T10WarriorFury"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t10s9_1#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - " .. AL["Fury"];
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t10s9_1#", "=q5=" .. AL["Tier 10"] };
{ 2, 50080, "", "=q4=Ymirjar Lord's Helmet", "=ds=#s1#, #a4#", "95 #eoffrost#" };
{ 3, 50082, "", "=q4=Ymirjar Lord's Shoulderplates", "=ds=#s3#, #a4#", "60 #eoffrost#" };
{ 4, 50078, "", "=q4=Ymirjar Lord's Battleplate", "=ds=#s5#, #a4#", "95 #eoffrost#" };
{ 5, 50079, "", "=q4=Ymirjar Lord's Gauntlets", "=ds=#s9#, #a4#", "60 #eoffrost#" };
{ 6, 50081, "", "=q4=Ymirjar Lord's Legplates", "=ds=#s11#, #a4#", "95 #eoffrost#" };
- { 8, 0, "Ability_Warrior_BattleShout", "=q6=#t10s9_1#", "=q5="..AL["Tier 10"]};
- { 9, 51212, "", "=q4=Ymirjar Lord's Helmet", "=ds=#s1#, #a4#"};
- { 10, 51210, "", "=q4=Ymirjar Lord's Shoulderplates", "=ds=#s3#, #a4#"};
- { 11, 51214, "", "=q4=Ymirjar Lord's Battleplate", "=ds=#s5#, #a4#"};
- { 12, 51213, "", "=q4=Ymirjar Lord's Gauntlets", "=ds=#s9#, #a4#"};
- { 13, 51211, "", "=q4=Ymirjar Lord's Legplates", "=ds=#s11#, #a4#"};
- { 16, 0, "Ability_Warrior_BattleShout", "=q6=#t10s9_1#", "=q5="..AL["Tier 10"]};
- { 17, 51227, "", "=q4=Ymirjar Lord's Helmet", "=ds=#s1#, #a4#"};
- { 18, 51229, "", "=q4=Ymirjar Lord's Shoulderplates", "=ds=#s3#, #a4#"};
- { 19, 51225, "", "=q4=Ymirjar Lord's Battleplate", "=ds=#s5#, #a4#"};
- { 20, 51226, "", "=q4=Ymirjar Lord's Gauntlets", "=ds=#s9#, #a4#"};
- { 21, 51228, "", "=q4=Ymirjar Lord's Legplates", "=ds=#s11#, #a4#"};
- Back = "T10SET";
+ { 8, 0, "Ability_Warrior_BattleShout", "=q6=#t10s9_1#", "=q5=" .. AL["Tier 10"] };
+ { 9, 51212, "", "=q4=Ymirjar Lord's Helmet", "=ds=#s1#, #a4#" };
+ { 10, 51210, "", "=q4=Ymirjar Lord's Shoulderplates", "=ds=#s3#, #a4#" };
+ { 11, 51214, "", "=q4=Ymirjar Lord's Battleplate", "=ds=#s5#, #a4#" };
+ { 12, 51213, "", "=q4=Ymirjar Lord's Gauntlets", "=ds=#s9#, #a4#" };
+ { 13, 51211, "", "=q4=Ymirjar Lord's Legplates", "=ds=#s11#, #a4#" };
+ { 16, 0, "Ability_Warrior_BattleShout", "=q6=#t10s9_1#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51227, "", "=q4=Ymirjar Lord's Helmet", "=ds=#s1#, #a4#" };
+ { 18, 51229, "", "=q4=Ymirjar Lord's Shoulderplates", "=ds=#s3#, #a4#" };
+ { 19, 51225, "", "=q4=Ymirjar Lord's Battleplate", "=ds=#s5#, #a4#" };
+ { 20, 51226, "", "=q4=Ymirjar Lord's Gauntlets", "=ds=#s9#, #a4#" };
+ { 21, 51228, "", "=q4=Ymirjar Lord's Legplates", "=ds=#s11#, #a4#" };
};
-
- AtlasLoot_Data["T10WarriorProtection"] = {
- { 1, 0, "INV_Shield_05", "=q6=#t10s9_2#", "=q5="..AL["Tier 10"]};
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - " .. AL["Protection"];
+ { 1, 0, "INV_Shield_05", "=q6=#t10s9_2#", "=q5=" .. AL["Tier 10"] };
{ 2, 50848, "", "=q4=Ymirjar Lord's Greathelm", "=ds=#s1#, #a4#", "95 #eoffrost#" };
{ 3, 50846, "", "=q4=Ymirjar Lord's Pauldrons", "=ds=#s3#, #a4#", "60 #eoffrost#" };
{ 4, 50850, "", "=q4=Ymirjar Lord's Breastplate", "=ds=#s5#, #a4#", "95 #eoffrost#" };
{ 5, 50849, "", "=q4=Ymirjar Lord's Handguards", "=ds=#s9#, #a4#", "60 #eoffrost#" };
{ 6, 50847, "", "=q4=Ymirjar Lord's Legguards", "=ds=#s11#, #a4#", "95 #eoffrost#" };
- { 8, 0, "INV_Shield_05", "=q6=#t10s9_2#", "=q5="..AL["Tier 10"]};
- { 9, 51218, "", "=q4=Ymirjar Lord's Greathelm", "=ds=#s1#, #a4#"};
- { 10, 51215, "", "=q4=Ymirjar Lord's Pauldrons", "=ds=#s3#, #a4#"};
- { 11, 51219, "", "=q4=Ymirjar Lord's Breastplate", "=ds=#s5#, #a4#"};
- { 12, 51217, "", "=q4=Ymirjar Lord's Handguards", "=ds=#s9#, #a4#"};
- { 13, 51216, "", "=q4=Ymirjar Lord's Legguards", "=ds=#s11#, #a4#"};
- { 16, 0, "INV_Shield_05", "=q6=#t10s9_2#", "=q5="..AL["Tier 10"]};
- { 17, 51221, "", "=q4=Ymirjar Lord's Greathelm", "=ds=#s1#, #a4#"};
- { 18, 51224, "", "=q4=Ymirjar Lord's Pauldrons", "=ds=#s3#, #a4#"};
- { 19, 51220, "", "=q4=Ymirjar Lord's Breastplate", "=ds=#s5#, #a4#"};
- { 20, 51222, "", "=q4=Ymirjar Lord's Handguards", "=ds=#s9#, #a4#"};
- { 21, 51223, "", "=q4=Ymirjar Lord's Legguards", "=ds=#s11#, #a4#"};
- Back = "T10SET";
+ { 8, 0, "INV_Shield_05", "=q6=#t10s9_2#", "=q5=" .. AL["Tier 10"] };
+ { 9, 51218, "", "=q4=Ymirjar Lord's Greathelm", "=ds=#s1#, #a4#" };
+ { 10, 51215, "", "=q4=Ymirjar Lord's Pauldrons", "=ds=#s3#, #a4#" };
+ { 11, 51219, "", "=q4=Ymirjar Lord's Breastplate", "=ds=#s5#, #a4#" };
+ { 12, 51217, "", "=q4=Ymirjar Lord's Handguards", "=ds=#s9#, #a4#" };
+ { 13, 51216, "", "=q4=Ymirjar Lord's Legguards", "=ds=#s11#, #a4#" };
+ { 16, 0, "INV_Shield_05", "=q6=#t10s9_2#", "=q5=" .. AL["Tier 10"] };
+ { 17, 51221, "", "=q4=Ymirjar Lord's Greathelm", "=ds=#s1#, #a4#" };
+ { 18, 51224, "", "=q4=Ymirjar Lord's Pauldrons", "=ds=#s3#, #a4#" };
+ { 19, 51220, "", "=q4=Ymirjar Lord's Breastplate", "=ds=#s5#, #a4#" };
+ { 20, 51222, "", "=q4=Ymirjar Lord's Handguards", "=ds=#s9#, #a4#" };
+ { 21, 51223, "", "=q4=Ymirjar Lord's Legguards", "=ds=#s11#, #a4#" };
};
+};
- -----------------------------------
- --- Wrath Of The Lich King Sets ---
- -----------------------------------
+-------------------
+--- Legendaries ---
+-------------------
- AtlasLoot_Data["WOTLKSets"] = {
- { 1, 0, "INV_Box_01", "=q6=#wotlk1#", "=q1=#z17#"};
- { 2, 37758, "", "=q3=Raine's Choker of Combustion", "=ds=#s2#"};
- { 3, 37821, "", "=q3=Raine's Signet of Blasting", "=ds=#s13#"};
- { 5, 0, "INV_Box_01", "=q6=#wotlk2#", "=q1=#z15#"};
- { 6, 49463, "", "=q4=Purified Shard of the Flame", "=ds=#s14#"};
- { 7, 49310, "", "=q4=Purified Shard of the Scale", "=ds=#s14#"};
- { 16, 0, "INV_Box_01", "=q6=#wotlk3#", "=q1=#z15#"};
- { 17, 49464, "", "=q4=Shiny Shard of the Flame", "=ds=#s14#"};
- { 18, 49488, "", "=q4=Shiny Shard of the Scale", "=ds=#s14#"};
- Back = "SETSWRATHOFLICHKING";
- };
-
- -------------------
- --- Legendaries ---
- -------------------
-
- AtlasLoot_Data["Legendaries"] = {
- { 1, 34334, "", "=q5=Thori'dal, the Stars' Fury", "=ds=#w2#"};
- { 3, 32837, "", "=q5=Warglaive of Azzinoth", "=ds=#h3#, #w10#, =q1=#m1# =ds=#c9#, #c6#"};
- { 4, 32838, "", "=q5=Warglaive of Azzinoth", "=ds=#h4#, #w10#, =q1=#m1# =ds=#c9#, #c6#"};
- { 6, 30312, "", "=q5=Infinity Blade", "=q1=#m26#: =ds=#h1#, #w4#"};
- { 7, 30311, "", "=q5=Warp Slicer", "=q1=#m26#: =ds=#h1#, #w10#"};
- { 8, 30317, "", "=q5=Cosmic Infuser", "=q1=#m26#: =ds=#h3#, #w6#"};
- { 9, 30316, "", "=q5=Devastation", "=q1=#m26#: =ds=#h2#, #w1#"};
- { 10, 30313, "", "=q5=Staff of Disintegration", "=q1=#m26#: =ds=#w9#"};
- { 11, 30314, "", "=q5=Phaseshift Bulwark", "=q1=#m26#: =ds=#w8#"};
- { 12, 30318, "", "=q5=Netherstrand Longbow", "=q1=#m26#: =ds=#w2#, =q1=#m1# =ds=#c2#"};
- { 13, 30319, "", "=q5=Nether Spike", "=q1=#m26#: =ds=#w17#"};
- { 16, 22736, "", "=q5=Andonisus, Reaper of Souls", "=q1=#m26#: =ds=#h3#, #w10#"};
- { 17, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=ds=#h1#, #w10#"};
- { 18, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=ds=#h2#, #w6#"};
- { 19, 21176, "", "=q5=Black Qiraji Resonating Crystal", "=ds=#e12#"};
- { 21, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#"},
- { 22, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#"},
- { 23, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#"},
- { 24, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#"},
+AtlasLoot_Data["Legendaries"] = {
+ Name = AL["Legendary Items"];
+ Type = "WrathRaid";
+ {
+ Name = AL["Legendary Items"];
+ { 1, 34334, "", "=q5=Thori'dal, the Stars' Fury", "=ds=#w2#" };
+ { 3, 32837, "", "=q5=Warglaive of Azzinoth", "=ds=#h3#, #w10#, =q1=#m1# =ds=#c9#, #c6#" };
+ { 4, 32838, "", "=q5=Warglaive of Azzinoth", "=ds=#h4#, #w10#, =q1=#m1# =ds=#c9#, #c6#" };
+ { 6, 30312, "", "=q5=Infinity Blade", "=q1=#m26#: =ds=#h1#, #w4#" };
+ { 7, 30311, "", "=q5=Warp Slicer", "=q1=#m26#: =ds=#h1#, #w10#" };
+ { 8, 30317, "", "=q5=Cosmic Infuser", "=q1=#m26#: =ds=#h3#, #w6#" };
+ { 9, 30316, "", "=q5=Devastation", "=q1=#m26#: =ds=#h2#, #w1#" };
+ { 10, 30313, "", "=q5=Staff of Disintegration", "=q1=#m26#: =ds=#w9#" };
+ { 11, 30314, "", "=q5=Phaseshift Bulwark", "=q1=#m26#: =ds=#w8#" };
+ { 12, 30318, "", "=q5=Netherstrand Longbow", "=q1=#m26#: =ds=#w2#, =q1=#m1# =ds=#c2#" };
+ { 13, 30319, "", "=q5=Nether Spike", "=q1=#m26#: =ds=#w17#" };
+ { 16, 22736, "", "=q5=Andonisus, Reaper of Souls", "=q1=#m26#: =ds=#h3#, #w10#" };
+ { 17, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=ds=#h1#, #w10#" };
+ { 18, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=ds=#h2#, #w6#" };
+ { 19, 21176, "", "=q5=Black Qiraji Resonating Crystal", "=ds=#e12#" };
+ { 21, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#" },
+ { 22, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#" },
+ { 23, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#" },
+ { 24, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#" },
{ 26, 49623, "", "=q5=Shadowmourne", "=ds=#h2# #w1#", "" };
{ 27, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=ds=#h3# #w6#", "" };
- Back = "SETMENU";
- Type = "BCRaid";
};
+};
- ---------------
- --- Tabards ---
- ---------------
+-----------------------
+--- BoE World Epics ---
+-----------------------
- AtlasLoot_Data["Tabards3"] = {
- { 1, 51534, "", "=q4=Wrathful Gladiator's Tabard", "=ds=#s7#"};
- { 2, 49086, "", "=q4=Relentless Gladiator's Tabard", "=ds=#s7#"};
- { 3, 45983, "", "=q4=Furious Gladiator's Tabard", "=ds=#s7#"};
- { 4, 43349, "", "=q4=Tabard of Brute Force", "=ds=#m32#"};
- { 5, 40643, "", "=q4=Tabard of the Achiever", "=ds=#m32#"};
- { 6, 43348, "", "=q4=Tabard of the Explorer", "=ds=#m32#"};
- { 7, 43300, "", "=q4=Loremaster's Colors", "=ds=#m32#"};
- { 8, 49052, "", "=q3=Tabard of Conquest", "=ds=#m32# =ec1=#m7#"};
- { 9, 49054, "", "=q3=Tabard of Conquest", "=ds=#m32# =ec1=#m6#"};
- { 11, 46874, "", "=q3=Argent Crusader's Tabard", "=ds=#s7#"};
- { 12, 46817, "", "=q1=Silver Covenant Tabard", "=ds=#s7# =ec1=#m7#"};
- { 13, 46818, "", "=q1=Sunreaver Tabard", "=ds=#s7# =ec1=#m6#"};
- { 16, 43154, "", "=q1=Tabard of the Argent Crusade", "=ds=#s7#"};
- { 17, 43157, "", "=q1=Tabard of the Kirin Tor", "=ds=#s7#"};
- { 18, 43155, "", "=q1=Tabard of the Ebon Blade", "=ds=#s7#"};
- { 19, 43156, "", "=q1=Tabard of the Wyrmrest Accord", "=ds=#s7#"};
- { 21, 45579, "", "=q1=Darnassus Tabard", "=ds=#s7# =ec1=#m7#"};
- { 22, 45580, "", "=q1=Exodar Tabard", "=ds=#s7# =ec1=#m7#"};
- { 23, 45578, "", "=q1=Gnomeregan Tabard", "=ds=#s7# =ec1=#m7#"};
- { 24, 45577, "", "=q1=Ironforge Tabard", "=ds=#s7# =ec1=#m7#"};
- { 25, 45574, "", "=q1=Stormwind Tabard", "=ds=#s7# =ec1=#m7#"};
- { 26, 45581, "", "=q1=Orgrimmar Tabard", "=ds=#s7# =ec1=#m6#"};
- { 27, 45582, "", "=q1=Sen'jin Tabard", "=ds=#s7# =ec1=#m6#"};
- { 28, 45585, "", "=q1=Silvermoon City Tabard", "=ds=#s7# =ec1=#m6#"};
- { 29, 45584, "", "=q1=Thunder Bluff Tabard", "=ds=#s7# =ec1=#m6#"};
- { 30, 45583, "", "=q1=Undercity Tabard", "=ds=#s7# =ec1=#m6#"};
- Next = "Tabards2";
- Back = "SETMENUWRATH";
+AtlasLoot_Data["WorldEpicsWrath"] = {
+ Name = "World Epics";
+ Type = "WrathDungeon";
+ {
+ Name = "World Epics";
+ { 1, 44309, "", "=q4=Sash of Jordan", "=ds=#s10#, #a1#" };
+ { 2, 44312, "", "=q4=Wapach's Spaulders of Solidarity", "=ds=#s3#, #a4#" };
+ { 3, 44308, "", "=q4=Signet of Edward the Odd", "=ds=#s13#" };
+ { 4, 37835, "", "=q4=Je'Tze's Bell", "=ds=#s14#" };
+ { 5, 37254, "", "=q4=Super Simian Sphere", "=ds=#s14#" };
+ { 16, 44310, "", "=q4=Namlak's Supernumerary Sticker", "=ds=#h1#, #w4#" };
+ { 17, 43613, "", "=q4=The Dusk Blade", "=ds=#h1#, #w4#" };
+ { 18, 44311, "", "=q4=Avool's Sword of Jin", "=ds=#h1#, #w10#" };
+ { 19, 43611, "", "=q4=Krol Cleaver", "=ds=#h1#, #w10#" };
+ { 20, 44313, "", "=q4=Zom's Crackling Bulwark", "=ds=#w8#" };
+ { 21, 43612, "", "=q4=Spineslicer", "=ds=#w11#" };
};
+};
- AtlasLoot_Data["Tabards2"] = {
- { 1, 38312, "", "=q4=Tabard of Brilliance", "=ds=#s7#, =q1=#m24#"};
- { 2, 23705, "", "=q4=Tabard of Flame", "=ds=#s7#, =q1=#m24#"};
- { 3, 23709, "", "=q4=Tabard of Frost", "=ds=#s7#, =q1=#m24#"};
- { 4, 38313, "", "=q4=Tabard of Fury", "=ds=#s7#, =q1=#m24#"};
- { 5, 38309, "", "=q4=Tabard of Nature", "=ds=#s7#, =q1=#m24#"};
- { 6, 38310, "", "=q4=Tabard of the Arcane", "=ds=#s7#, =q1=#m24#"};
- { 7, 38314, "", "=q4=Tabard of the Defender", "=ds=#s7#, =q1=#m24#"};
- { 8, 38311, "", "=q4=Tabard of the Void", "=ds=#s7#, =q1=#m24#"};
- { 9, 35279, "", "=q3=Tabard of Summer Skies", "=ds=#s7#, =q1=#m4#"};
- { 11, 35280, "", "=q3=Tabard of Summer Flames", "=ds=#s7#, =q1=#m4#"};
- { 12, 31404, "", "=q2=Green Trophy Tabard of the Illidari", "=ds=#s7#, =q1=#m4#"};
- { 13, 31405, "", "=q2=Purple Trophy Tabard of the Illidari", "=ds=#s7#, =q1=#m4#"};
- { 14, 24344, "", "=q1=Tabard of the Hand", "=ds=#s7#, =q1=#m4#, =ec1=#m7#"};
- { 15, 25549, "", "=q1=Blood Knight Tabard", "=ds=#s7#, =ec1=#m6#"};
- { 16, 31779, "", "=q1=Aldor Tabard", "=ds=#s7#"};
- { 17, 31804, "", "=q1=Cenarion Expedition Tabard", "=ds=#s7#"};
- { 18, 31776, "", "=q1=Consortium Tabard", "=ds=#s7#"};
- { 19, 23999, "", "=q1=Honor Hold Tabard", "=ds=#s7#, =ec1=#m7#"};
- { 20, 31777, "", "=q1=Keepers of Time Tabard", "=ds=#s7#"};
- { 21, 31774, "", "=q1=Kurenai Tabard", "=ds=#s7#, =ec1=#m7#"};
- { 22, 31778, "", "=q1=Lower City Tabard", "=ds=#s7#"};
- { 23, 31773, "", "=q1=Mag'har Tabard", "=ds=#s7#, =ec1=#m6#"};
- { 24, 32828, "", "=q1=Ogri'la Tabard", "=ds=#s7#"};
- { 25, 31781, "", "=q1=Sha'tar Tabard", "=ds=#s7#"};
- { 26, 31775, "", "=q1=Sporeggar Tabard", "=ds=#s7#"};
- { 27, 31780, "", "=q1=Scryers Tabard", "=ds=#s7#"};
- { 28, 32445, "", "=q1=Skyguard Tabard", "=ds=#s7#"};
- { 29, 35221, "", "=q1=Tabard of the Shattered Sun", "=ds=#s7#"};
- { 30, 24004, "", "=q1=Thrallmar Tabard", "=ds=#s7#, =ec1=#m6#"};
- Prev = "Tabards3";
- Next = "Tabards1";
- Back = "SETMENUWRATH";
+
+-------------------------------
+--- Emblem of Heroism Items ---
+-------------------------------
+
+AtlasLoot_Data["EmblemofHeroism"] = {
+ Name = AL["Emblem of Heroism Rewards"];
+ {
+ Name = "Page 1";
+ { 1, 40697, "", "=q4=Elegant Temple Gardens' Girdle", "=ds=#s10#, #a1#", "40 #eofheroism#" };
+ { 2, 40696, "", "=q4=Plush Sash of Guzbah", "=ds=#s10#, #a1#", "40 #eofheroism#" };
+ { 3, 40694, "", "=q4=Jorach's Crocolisk Skin Belt", "=ds=#s10#, #a2#", "40 #eofheroism#" };
+ { 4, 40695, "", "=q4=Vine Belt of the Woodland Dryad", "=ds=#s10#, #a2#", "40 #eofheroism#" };
+ { 5, 40693, "", "=q4=Beadwork Belt of Shamanic Vision", "=ds=#s10#, #a3#", "40 #eofheroism#" };
+ { 6, 40692, "", "=q4=Vereesa's Silver Chain Belt", "=ds=#s10#, #a3#", "40 #eofheroism#" };
+ { 7, 40691, "", "=q4=Magroth's Meditative Cincture", "=ds=#s10#, #a4#", "40 #eofheroism#" };
+ { 8, 40688, "", "=q4=Verdungo's Barbarian Cord", "=ds=#s10#, #a4#", "40 #eofheroism#" };
+ { 9, 40689, "", "=q4=Waistguard of Living Iron", "=ds=#s10#, #a4#", "40 #eofheroism#" };
+ { 16, 40704, "", "=q4=Pride", "=ds=#w13#, #h4#", "50 #eofheroism#" };
+ { 17, 40702, "", "=q4=Rolfsen's Ripper", "=ds=#w4#, #h4#", "50 #eofheroism#" };
+ { 18, 40703, "", "=q4=Grasscutter", "=ds=#w10#, #h4#", "50 #eofheroism#" };
+ { 19, 40716, "", "=q4=Lillehoff's Winged Blades", "=ds=#w11#", "15 #eofheroism#" };
+ { 20, 40701, "", "=q4=Crygil's Discarded Plate Panel", "=ds=#w8#", "35 #eofheroism#" };
+ { 21, 40700, "", "=q4=Protective Barricade of the Light", "=ds=#w8#", "35 #eofheroism#" };
+ { 22, 40699, "", "=q4=Handbook of Obscure Remedies", "=ds=#s15#", "25 #eofheroism#" };
+ { 23, 40698, "", "=q4=Ward of the Violet Citadel", "=ds=#s15#", "25 #eofheroism#" };
};
-
- AtlasLoot_Data["Tabards1"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", ""};
- { 2, 15196, "", "=q1=Private's Tabard", "=ds=#s7#"};
- { 3, 15198, "", "=q1=Knight's Colors", "=ds=#s7#"};
- { 4, 20132, "", "=q1=Arathor Battle Tabard", "=ds=#s7#, =q1=#m4#"};
- { 5, 19032, "", "=q1=Stormpike Battle Tabard", "=ds=#s7#"};
- { 6, 19506, "", "=q1=Silverwing Battle Tabard", "=ds=#s7#"};
- { 8, 0, "INV_BannerPVP_01", "=q6=#m6#", ""};
- { 9, 15197, "", "=q1=Scout's Tabard", "=ds=#s7#"};
- { 10, 15199, "", "=q1=Stone Guard's Herald", "=ds=#s7#"};
- { 11, 20131, "", "=q1=Battle Tabard of the Defilers", "=ds=#s7#, =q1=#m4#"};
- { 12, 19031, "", "=q1=Frostwolf Battle Tabard", "=ds=#s7#"};
- { 13, 19505, "", "=q1=Warsong Battle Tabard", "=ds=#s7#"};
- { 16, 23192, "", "=q2=Tabard of the Scarlet Crusade", "=ds=#s7#", "", "0.48%"};
- { 17, 5976, "", "=q1=Guild Tabard", "=ds=#s7#"};
- { 19, 0, "INV_Box_01", "=q6=#j29#", ""};
- { 20, 36941, "", "=q3=Competitor's Tabard", "=ds=#s7#"};
- { 21, 22999, "", "=q1=Tabard of the Agent Dawn", "=ds=#s7#, =q1=#m4#"};
- { 22, 28788, "", "=q1=Tabard of the Protector", "=ds=#s7#, =q1=#m4#"};
- { 23, 19160, "", "=q1=Contest Winner's Tabard", "=ds=#s7#"};
- Prev = "Tabards2";
- Back = "SETMENUWRATH";
+ {
+ Name = "Page 2";
+ { 1, 40711, "", "=q4=Idol of Lush Moss", "=ds=#w14#", "15 #eofheroism#" };
+ { 2, 40712, "", "=q4=Idol of Steadfast Renewal", "=ds=#w14#", "15 #eofheroism#" };
+ { 3, 40713, "", "=q4=Idol of the Ravenous Beast", "=ds=#w14#", "15 #eofheroism#" };
+ { 4, 40707, "", "=q4=Libram of Obstruction", "=ds=#w16#", "15 #eofheroism#" };
+ { 5, 40706, "", "=q4=Libram of Reciprocation", "=ds=#w16#", "15 #eofheroism#" };
+ { 6, 40705, "", "=q4=Libram of Renewal", "=ds=#w16#", "15 #eofheroism#" };
+ { 7, 40715, "", "=q4=Sigil of Haunted Dreams", "=ds=#w21#", "15 #eofheroism#" };
+ { 8, 40714, "", "=q4=Sigil of the Unfaltering Knight", "=ds=#w21#", "15 #eofheroism#" };
+ { 9, 40709, "", "=q4=Totem of Forest Growth", "=ds=#w15#", "15 #eofheroism#" };
+ { 10, 40710, "", "=q4=Totem of Splintering", "=ds=#w15#", "15 #eofheroism#" };
+ { 11, 40708, "", "=q4=Totem of the Elemental Plane", "=ds=#w15#", "15 #eofheroism#" };
+ { 16, 40679, "", "=q4=Chained Military Gorget", "=ds=#s2#", "25 #eofheroism#" };
+ { 17, 40680, "", "=q4=Encircling Burnished Gold Chains", "=ds=#s2#", "25 #eofheroism#" };
+ { 18, 40681, "", "=q4=Lattice Choker of Light", "=ds=#s2#", "25 #eofheroism#" };
+ { 19, 40678, "", "=q4=Pendant of the Outcast Hero", "=ds=#s2#", "25 #eofheroism#" };
+ { 20, 40684, "", "=q4=Mirror of Truth", "=ds=#s14#", "40 #eofheroism#" };
+ { 21, 40682, "", "=q4=Sundial of the Exiled", "=ds=#s14#", "40 #eofheroism#" };
+ { 22, 40685, "", "=q4=The Egg of Mortal Essence", "=ds=#s14#", "40 #eofheroism#" };
+ { 23, 40683, "", "=q4=Valor Medal of the First War", "=ds=#s14#", "40 #eofheroism#" };
};
-
- ----------------------------------
- --- Upper Deck Card Game Items ---
- ----------------------------------
-
- AtlasLoot_Data["CardGame1"] = {
- { 1, 0, "INV_Box_01", "=q6=#ud4#", "=q1=#ud47#"};
- { 2, 54068, "", "=q4=Wooly White Rhino ", "=ds=#ud48#"};
- { 3, 54452, "", "=q3=Ethereal Portal", "=ds=#ud49#"};
- { 4, 54455, "", "=q1=Paint Bomb", "=ds=#ud50#"};
- { 6, 0, "INV_Box_01", "=q6=#ud4#", "=q1=#ud43#"};
- { 7, 54069, "", "=q4=Blazing Hippogryph", "=ds=#ud46#"};
- { 8, 54212, "", "=q3=Instant Statue Pedestal", "=ds=#ud45#"};
- { 9, 54218, "", "=q1=Landro's Gift Box", "=ds=#ud44#"};
- { 11, 0, "INV_Box_01", "=q6=#ud4#", "=q1=#ud39#"};
- { 12, 49287, "", "=q4=Tuskarr Kite", "=ds=#ud41#"};
- { 13, 49343, "", "=q3=Spectral Tiger Cub", "=ds=#ud42#"};
- { 14, 49289, "", "=q2=Little White Stallion Bridle", "=ds=#ud40#"};
- { 15, 49288, "", "=q2=Little Ivory Raptor Whistle", "=ds=#ud40#"};
- { 16, 0, "INV_Box_01", "=q6=#ud4#", "=q1=#ud35#"};
- { 17, 49290, "", "=q4=Magic Rooster Egg", "=ds=#ud38#"};
- { 18, 46780, "", "=q3=Ogre Pinata", "=ds=#ud37#"};
- { 19, 46779, "", "=q1=Path of Cenarius", "=ds=#ud36#"};
- { 21, 0, "INV_Box_01", "=q6=#ud4#", "=q1=#ud31#"};
- { 22, 45037, "", "=q4=Epic Purple Shirt", "=ds=#ud32#"};
- { 23, 45063, "", "=q3=Foam Sword Rack", "=ds=#ud33#"};
- { 24, 45047, "", "=q3=Sandbox Tiger", "=ds=#ud34#"};
- { 26, 0, "INV_Box_01", "=q6=#ud4#", "=q1=#ud27#"};
- { 27, 49282, "", "=q4=Big Battle Bear", "=ds=#ud28#"};
- { 28, 38578, "", "=q3=The Flag of Ownership", "=ds=#ud29#"};
- { 29, 38577, "", "=q1=Party G.R.E.N.A.D.E.", "=ds=#ud30#"};
- Next = "CardGame2";
- Back = "SETMENUWRATH";
- };
-
- AtlasLoot_Data["CardGame2"] = {
- { 1, 0, "INV_Box_01", "=q6=#ud4#", "=q1=#ud23#"};
- { 2, 38050, "", "=q3=Soul-Trader Beacon", "=ds=#ud26#"};
- { 3, 38301, "", "=q3=D.I.S.C.O", "=ds=#ud25#"};
- { 4, 38233, "", "=q1=Path of Illidan", "=ds=#ud24#"};
- { 6, 0, "INV_Box_01", "=q6=#ud4#", "=q1=#ud19#"};
- { 7, 35227, "", "=q4=Goblin Weather Machine - Prototype 01-B", "=ds=#ud21#"};
- { 8, 49286, "", "=q4=X-51 Nether-Rocket X-TREME", "=ds=#ud22#"};
- { 9, 49285, "", "=q3=X-51 Nether-Rocket", "=ds=#ud22#"};
- { 10, 35223, "", "=q3=Papa Hummel's Old-Fashioned Pet Biscuit", "=ds=#ud20#"};
- { 12, 0, "INV_Box_01", "=q6=#ud4#", "=q1=#ud15#"};
- { 13, 34493, "", "=q4=Dragon Kite", "=ds=#ud16#"};
- { 14, 34492, "", "=q3=Rocket Chicken", "=ds=#ud17#"};
- { 15, 34499, "", "=q3=Paper Flying Machine Kit", "=ds=#ud18#"};
- { 16, 0, "INV_Box_01", "=q6=#ud4#", "=q1=#ud3#"};
- { 17, 49284, "", "=q4=Reins of the Swift Spectral Tiger", "=ds=#ud14#"};
- { 18, 49283, "", "=q3=Reins of the Spectral Tiger", "=ds=#ud14#"};
- { 19, 33223, "", "=q3=Fishing Chair", "=ds=#ud13#"};
- { 20, 33219, "", "=q3=Goblin Gumbo Kettle", "=ds=#ud12#"};
- { 22, 0, "INV_Box_01", "=q6=#ud4#", "=q1=#ud2#"};
- { 23, 32588, "", "=q3=Banana Charm", "=ds=#ud9#"};
- { 24, 32566, "", "=q3=Picnic Basket", "=ds=#ud10#"};
- { 25, 32542, "", "=q3=Imp in a Ball", "=ds=#ud11#"};
- { 27, 0, "INV_Box_01", "=q6=#ud4#", "=q1=#ud1#"};
- { 28, 23705, "", "=q4=Tabard of Flame", "=ds=#ud6#"};
- { 29, 23713, "", "=q4=Hippogryph Hatchling", "=ds=#ud7#"};
- { 30, 23720, "", "=q4=Riding Turtle", "=ds=#ud8#"};
- Prev = "CardGame1";
- Next = "CardGame3";
- Back = "SETMENUWRATH";
- };
-
- AtlasLoot_Data["CardGame3"] = {
- { 1, 0, "INV_Box_01", "=q6=#ud5#", ""};
- { 2, 38312, "", "=q4=Tabard of Brilliance", "=ds=#s7#"};
- { 3, 23709, "", "=q4=Tabard of Frost", "=ds=#s7#"};
- { 4, 38313, "", "=q4=Tabard of Fury", "=ds=#s7#"};
- { 5, 38309, "", "=q4=Tabard of Nature", "=ds=#s7#"};
- { 6, 38310, "", "=q4=Tabard of the Arcane", "=ds=#s7#"};
- { 7, 38314, "", "=q4=Tabard of the Defender", "=ds=#s7#"};
- { 8, 38314, "", "=q4=Tabard of the Defender", "=ds=#s7#"};
- { 9, 38311, "", "=q4=Tabard of the Void", "=ds=#s7#"};
- { 10, 49704, "", "=q4=Carved Ogre Idol", "=ds="};
- { 11, 49703, "", "=q4=Perpetual Purple Firework", "=ds="};
- Prev = "CardGame2";
- Back = "SETMENUWRATH";
- };
-
- -------------------
- --- Vanity Pets ---
- -------------------
-
- AtlasLoot_Data["PetsMerchant1"] = {
- { 1, 44984, "", "=q3=Ammen Vale Lashling", "=ds=#e13#"};
- { 2, 54436, "", "=q3=Blue Clockwork Rocket Bot", "=ds=#e13#"};
- { 3, 44970, "", "=q3=Dun Morogh Cub", "=ds=#e13#"};
- { 4, 44973, "", "=q3=Durotar Scorpion", "=ds=#e13#"};
- { 5, 44974, "", "=q3=Elwynn Lamb", "=ds=#e13#"};
- { 6, 44982, "", "=q3=Enchanted Broom", "=ds=#e13#"};
- { 7, 39973, "", "=q3=Ghostly Skull", "=ds=#e13#"};
- { 8, 45002, "", "=q3=Mechanopeep", "=ds=#e13#"};
- { 9, 44980, "", "=q3=Mulgore Hatchling", "=ds=#e13#"};
- { 10, 45606, "", "=q3=Sen'jin Fetish", "=ds=#e13#"};
- { 11, 44965, "", "=q3=Teldrassil Sproutling", "=ds=#e13#"};
- { 12, 44971, "", "=q3=Tirisfal Batling", "=ds=#e13#"};
- { 13, 44822, "", "=q1=Albino Snake", "=ds=#e13#"};
- { 14, 11023, "", "=q1=Ancona Chicken", "=ds=#e13#"};
- { 15, 10360, "", "=q1=Black Kingsnake", "=ds=#e13#"};
- { 16, 10361, "", "=q1=Brown Snake", "=ds=#e13#"};
- { 17, 29958, "", "=q1=Blue Dragonhawk Hatchling", "=ds=#e13#"};
- { 18, 29901, "", "=q1=Blue Moth Egg", "=ds=#e13#"};
- { 19, 29364, "", "=q1=Brown Rabbit Crate", "=ds=#e13#"};
- { 20, 46398, "", "=q1=Calico Cat", "=ds=#e13#"};
- { 21, 8485, "", "=q1=Cat Carrier (Bombay)", "=ds=#e13#"};
- { 22, 8486, "", "=q1=Cat Carrier (Cornish Rex)", "=ds=#e13#"};
- { 23, 8487, "", "=q1=Cat Carrier (Orange Tabby)", "=ds=#e13#"};
- { 24, 8490, "", "=q1=Cat Carrier (Siamese)", "=ds=#e13#"};
- { 25, 8488, "", "=q1=Cat Carrier (Silver Tabby)", "=ds=#e13#"};
- { 26, 8489, "", "=q1=Cat Carrier (White Kitten)", "=ds=#e13#"};
- { 27, 10393, "", "=q1=Cockroach", "=ds=#e13#"};
- { 28, 10392, "", "=q1=Crimson Snake", "=ds=#e13#"};
- { 29, 29953, "", "=q1=Golden Dragonhawk Hatchling", "=ds=#e13#"};
- { 30, 8500, "", "=q1=Great Horned Owl", "=ds=#e13#"};
- Next = "PetsMerchant2";
- Back = "PETMENU";
- };
-
- AtlasLoot_Data["PetsMerchant2"] = {
- { 1, 8501, "", "=q1=Hawk Owl", "=ds=#e13#"};
- { 2, 29363, "", "=q1=Mana Wyrmling", "=ds=#e13#"};
- { 3, 48120, "", "=q1=Obsidian Hatchling", "=ds=#e13#"};
- { 4, 8496, "", "=q1=Parrot Cage (Cockatiel)", "=ds=#e13#"};
- { 5, 8492, "", "=q1=Parrot Cage (Green Wing Macaw)", "=ds=#e13#"};
- { 6, 8495, "", "=q1=Parrot Cage (Senegal)", "=ds=#e13#"};
- { 7, 10394, "", "=q1=Prairie Dog Whistle", "=ds=#e13#"};
- { 8, 8497, "", "=q1=Rabbit Crate (Snowshoe)", "=ds=#e13#"};
- { 9, 29956, "", "=q1=Red Dragonhawk Hatchling", "=ds=#e13#"};
- { 10, 29902, "", "=q1=Red Moth Egg", "=ds=#e13#"};
- { 11, 29957, "", "=q1=Silver Dragonhawk Hatchling", "=ds=#e13#"};
- { 12, 11026, "", "=q1=Tree Frog Box", "=ds=#e13#"};
- { 13, 29904, "", "=q1=White Moth Egg", "=ds=#e13#"};
- { 14, 11027, "", "=q1=Wood Frog Box", "=ds=#e13#"};
- { 15, 29903, "", "=q1=Yellow Moth Egg", "=ds=#e13#"};
- Prev = "PetsMerchant1";
- Next = "PetsQuestCrafted1";
- Back = "PETMENU";
- };
-
- AtlasLoot_Data["PetsQuestCrafted1"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Quest"], ""};
- { 2, 45022, "", "=q3=Argent Gruntling", "=ds=#e13# =ec1=#m6#"};
- { 3, 44998, "", "=q3=Argent Squire", "=ds=#e13# =ec1=#m7#"};
- { 4, 35350, "", "=q3=Chuck's Bucket", "=ds=#e13#"};
- { 5, 33818, "", "=q3=Muckbreath's Bucket", "=ds=#e13#"};
- { 6, 35349, "", "=q3=Snarly's Bucket", "=ds=#e13#"};
- { 7, 44983, "", "=q3=Strand Crawler", "=ds=#e13#"};
- { 8, 33816, "", "=q3=Toothy's Bucket", "=ds=#e13#"};
- { 9, 19450, "", "=q1=A Jubling's Tiny Home", "=ds=#e13#"};
- { 10, 11110, "", "=q1=Chicken Egg", "=ds=#e13#"};
- { 11, 10398, "", "=q1=Mechanical Chicken", "=ds=#e13#"};
- { 12, 31760, "", "=q1=Miniwing", "=ds=#e13#"};
- { 13, 12529, "", "=q1=Smolderweb Carrier", "=ds=#e13#"};
- { 14, 11474, "", "=q1=Sprite Darter Egg", "=ds=#e13#"};
- { 15, 12264, "", "=q1=Worg Carrier", "=ds=#e13#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Crafted"], ""};
- { 17, 15996, "", "=q1=Lifelike Mechanical Toad", "=ds=#e13#"};
- { 18, 11826, "", "=q1=Lil' Smoky", "=ds=#e13#"};
- { 19, 4401, "", "=q1=Mechanical Squirrel Box", "=ds=#e13#"};
- { 20, 11825, "", "=q1=Pet Bombling", "=ds=#e13#"};
- { 21, 21277, "", "=q1=Tranquil Mechanical Yeti", "=ds=#e13#"};
- Prev = "PetsMerchant2";
- Next = "PetsRare1";
- Back = "PETMENU";
- };
-
- AtlasLoot_Data["PetsRare1"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Achievement"], ""};
- { 2, 44738, "", "=q3=Kirin Tor Familiar", "=ds=#e13#"};
- { 3, 44841, "", "=q3=Little Fawn's Salt Lick", "=ds=#e13#"};
- { 4, 49912, "", "=q3=Perky Pug", "=ds=#e13#"};
- { 5, 49646, "", "=q3=Core Hound Pup", "=ds=#e13#"};
- { 6, 40653, "", "=q3=Reeking Pet Carrier", "=ds=#e13#"};
- { 7, 44810, "", "=q3=Turkey Cage", "=ds=#e13#"};
- { 8, 44819, "", "=q1=Baby Blizzard Bear", "=ds=#e13#"};
- { 9, 49362, "", "=q1=Onyxian Whelpling", "=ds=#e13#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Faction"], ""};
- { 17, 38628, "", "=q3=Nether Ray Fry", "=ds=#e13#"};
- { 18, 44723, "", "=q3=Nurtured Penguin Egg", "=ds=#e13#"};
- { 19, 46820, "", "=q3=Shimmering Wyrmling", "=ds=#e13# =ec1=#m7#"};
- { 20, 46821, "", "=q3=Shimmering Wyrmling", "=ds=#e13# =ec1=#m6#"};
- { 21, 34478, "", "=q3=Tiny Sporebat", "=ds=#e13#"};
- { 22, 39898, "", "=q1=Cobra Hatchling", "=ds=#e13#"};
- { 23, 44721, "", "=q1=Proto-Drake Whelp", "=ds=#e13#"};
- { 24, 39896, "", "=q1=Tickbird Hatchling", "=ds=#e13#"};
- { 25, 39899, "", "=q1=White Tickbird Hatchling", "=ds=#e13#"};
- Prev = "PetsQuestCrafted1";
- Next = "PetsRare2";
- Back = "PETMENU";
- };
-
- AtlasLoot_Data["PetsRare2"] = {
- { 1, 0, "INV_Box_01", "=q6=#z17#", ""};
- { 2, 8494, "", "=q4=Parrot Cage (Hyacinth Macaw)", "=ds=#e13#"};
- { 3, 43698, "", "=q3=Giant Sewer Rat", "=ds=#e13#"};
- { 4, 34535, "", "=q1=Azure Whelpling", "=ds=#e13#"};
- { 5, 29960, "", "=q1=Captured Firefly", "=ds=#e13#"};
- { 6, 8491, "", "=q1=Cat Carrier (Black Tabby)", "=ds=#e13#"};
- { 7, 10822, "", "=q1=Dark Whelpling", "=ds=#e13#"};
- { 8, 48112, "", "=q1=Darting Hatchling", "=ds=#e13#"};
- { 9, 20769, "", "=q1=Disgusting Oozeling", "=ds=#e13#"};
- { 10, 48116, "", "=q1=Gundrak Hatchling", "=ds=#e13#"};
- { 11, 48118, "", "=q1=Leaping Hatchling", "=ds=#e13#"};
- { 12, 27445, "", "=q1=Magical Crawdad Box", "=ds=#e13#"};
- { 13, 48122, "", "=q1=Ravasaur Hatchling", "=ds=#e13#"};
- { 14, 48124, "", "=q1=Razormaw Hatchling", "=ds=#e13#"};
- { 15, 8499, "", "=q1=Tiny Crimson Whelpling", "=ds=#e13#"};
- { 16, 8498, "", "=q1=Tiny Emerald Whelpling", "=ds=#e13#"};
- { 18, 0, "INV_Box_01", "=q6="..AL["Dungeon/Raid"], ""};
- { 19, 33993, "", "=q3=Mojo", "=q1="..BabbleZone["Zul'Aman"]};
- { 20, 35504, "", "=q3=Phoenix Hatchling", "=q2="..BabbleBoss["Kael'thas Sunstrider"]..", =q1="..BabbleZone["Magisters' Terrace"]};
- { 21, 38658, "", "=q3=Vampiric Batling", "=q2="..BabbleBoss["Prince Tenris Mirkblood"]..", =q1="..BabbleZone["Karazhan"]};
- { 22, 48114, "", "=q1=Deviate Hatchling", "=q2="..AL["Deviate Ravager/Deviate Guardian"]..", =q1="..BabbleZone["Wailing Caverns"]};
- { 23, 48126, "", "=q1=Razzashi Hatchling", "=q2="..AL["Razzashi Raptor"]..", =q1="..BabbleZone["Zul'Gurub"]};
- Prev = "PetsRare1";
- Next = "PetsEvent1";
- Back = "PETMENU";
- };
-
- AtlasLoot_Data["PetsEvent1"] = {
- { 1, 23083, "", "=q3=Captured Flame", "=ds=#e13#"};
- { 2, 34425, "", "=q3=Clockwork Rocket Bot", "=ds=#e13#"};
- { 3, 46545, "", "=q3=Curious Oracle Hatchling", "=ds=#e13#"};
- { 4, 46544, "", "=q3=Curious Wolvar Pup", "=ds=#e13#"};
- { 5, 32616, "", "=q3=Egbert's Egg", "=ds=#e13#"};
- { 6, 32622, "", "=q3=Elekk Training Collar", "=ds=#e13#"};
- { 7, 53641, "", "=q3=Ice Chip", "=ds=#e13#"};
- { 8, 46707, "", "=q3=Pint-Sized Pink Pachyderm", "=ds=#e13#"};
- { 9, 34955, "", "=q3=Scorched Stone", "=ds=#e13#"};
- { 10, 33154, "", "=q3=Sinister Squashling", "=ds=#e13#"};
- { 11, 32617, "", "=q3=Sleepy Willy", "=ds=#e13#"};
- { 12, 44794, "", "=q3=Spring Rabbit's Foot", "=ds=#e13#"};
- { 13, 32233, "", "=q3=Wolpertinger's Tankard", "=ds=#e13#"};
- { 14, 50446, "", "=q3=Toxic Wasteling", "=ds=#e13#"};
- { 16, 21301, "", "=q1=Green Helper Box", "=ds=#e13#"};
- { 17, 21308, "", "=q1=Jingling Bell", "=ds=#e13#"};
- { 18, 23007, "", "=q1=Piglet's Collar", "=ds=#e13#"};
- { 19, 23015, "", "=q1=Rat Cage", "=ds=#e13#"};
- { 20, 21305, "", "=q1=Red Helper Box", "=ds=#e13#"};
- { 21, 21309, "", "=q1=Snowman Kit", "=ds=#e13#"};
- { 22, 22235, "", "=q1=Truesilver Shafted Arrow", "=ds=#e13#"};
- { 23, 23002, "", "=q1=Turtle Box", "=ds=#e13#"};
- Prev = "PetsRare1";
- Next = "PetsPromotional1";
- Back = "PETMENU";
- };
-
- AtlasLoot_Data["PetsPromotional1"] = {
- { 1, 34493, "", "=q4=Dragon Kite", "=ds=#e13#"};
- { 2, 23713, "", "=q4=Hippogryph Hatchling", "=ds=#e13#"};
- { 3, 49287, "", "=q4=Tuskarr Kite", "=ds=#e13#"};
- { 4, 32588, "", "=q3=Banana Charm", "=ds=#e13#"};
- { 5, 20371, "", "=q3=Blue Murloc Egg", "=ds=#e13#"};
- { 6, 13584, "", "=q3=Diablo Stone", "=ds=#e13#"};
- { 7, 39286, "", "=q3=Frosty's Collar", "=ds=#e13#"};
- { 8, 37297, "", "=q3=Gold Medallion", "=ds=#e13#"};
- { 9, 46802, "", "=q3=Heavy Murloc Egg", "=ds=#e13#"};
- { 10, 30360, "", "=q3=Lurky's Egg", "=ds=#e13#"};
- { 11, 45180, "", "=q3=Murkimus' Little Spear", "=ds=#e13#"};
- { 12, 25535, "", "=q3=Netherwhelp's Collar", "=ds=#e13#"};
- { 13, 13583, "", "=q3=Panda Collar", "=ds=#e13#"};
- { 14, 22114, "", "=q3=Pink Murloc Egg", "=ds=#e13#"};
- { 15, 34492, "", "=q3=Rocket Chicken", "=ds=#e13#"};
- { 16, 38050, "", "=q3=Soul-Trader Beacon", "=ds=#e13#"};
- { 17, 49343, "", "=q3=Spectral Tiger Cub", "=ds=#e13#"};
- { 18, 39656, "", "=q3=Tyrael's Hilt", "=ds=#e13#"};
- { 19, 41133, "", "=q3=Unhatched Mr. Chilly", "=ds=#e13#"};
- { 20, 46767, "", "=q3=Warbot Ignition Key", "=ds=#e13#"};
- { 21, 13582, "", "=q3=Zergling Leash", "=ds=#e13#"};
- { 22, 56806, "", "=q3=Mini Thor", "=ds=#e13#"};
- Prev = "PetsEvent1";
- Next = "PetsPetStore1";
- Back = "PETMENU";
- };
-
- AtlasLoot_Data["PetsPetStore1"] = {
- { 1, 49693, "", "=q3=Lil' Phylactery", "=ds=#e13#"};
- { 2, 54847, "", "=q3=Lil' XT", "=ds=#e13#"};
- { 3, 49665, "", "=q3=Pandaren Monk", "=ds=#e13#"};
- { 4, 49663, "", "=q3=Wind Rider Cub", "=ds=#e13#"};
- { 5, 49662, "", "=q3=Gryphon Hatchling", "=ds=#e13#"};
- Prev = "PetsPromotional1";
- Next = "PetsAccessories1";
- Back = "PETMENU";
- };
-
- AtlasLoot_Data["PetsAccessories1"] = {
- { 1, 47541, "", "=q3=Argent Pony Bridle", "=ds="};
- { 2, 35223, "", "=q3=Papa Hummel's Old-Fashioned Pet Biscuit", "=ds="};
- { 3, 37431, "", "=q2=Fetch Ball", "=ds="};
- { 4, 43626, "", "=q2=Happy Pet Snack", "=ds="};
- { 5, 43352, "", "=q2=Pet Grooming Kit", "=ds="};
- { 6, 44820, "", "=q1=Red Ribbon Pet Leash", "=ds="};
- { 7, 37460, "", "=q1=Rope Pet Leash", "=ds="};
- Prev = "PetsPetStore1";
- Back = "PETMENU";
- };
-
- --------------
- --- Mounts ---
- --------------
-
- AtlasLoot_Data["MountsAlliance1"] = {
- { 1, 0, "inv_misc_tournaments_symbol_nightelf", "=q6="..BabbleFaction["Darnassus"].." #j30#", "=ec1=#m7#"};
- { 2, 18766, "", "=q4=Reins of the Swift Frostsaber", "=ds=#e12#"};
- { 3, 18767, "", "=q4=Reins of the Swift Mistsaber", "=ds=#e12#"};
- { 4, 18902, "", "=q4=Reins of the Swift Stormsaber", "=ds=#e12#"};
- { 5, 8632, "", "=q3=Reins of the Spotted Frostsaber", "=ds=#e12#"};
- { 6, 47100, "", "=q3=Reins of the Striped Dawnsaber", "=ds=#e12#"};
- { 7, 8631, "", "=q3=Reins of the Striped Frostsaber", "=ds=#e12#"};
- { 8, 8629, "", "=q3=Reins of the Striped Nightsaber", "=ds=#e12#"};
- { 16, 0, "inv_misc_tournaments_symbol_gnome", "=q6="..BabbleFaction["Gnomeregan Exiles"].." #j30#", "=ec1=#m7#"};
- { 17, 18772, "", "=q4=Swift Green Mechanostrider", "=ds=#e12#"};
- { 18, 18773, "", "=q4=Swift White Mechanostrider", "=ds=#e12#"};
- { 19, 18774, "", "=q4=Swift Yellow Mechanostrider", "=ds=#e12#"};
- { 20, 8595, "", "=q3=Blue Mechanostrider", "=ds=#e12#"};
- { 21, 13321, "", "=q3=Green Mechanostrider", "=ds=#e12#"};
- { 22, 8563, "", "=q3=Red Mechanostrider", "=ds=#e12#"};
- { 23, 13322, "", "=q3=Unpainted Mechanostrider", "=ds=#e12#"};
- Next = "MountsAlliance2";
- Back = "MOUNTMENU";
- };
-
- AtlasLoot_Data["MountsAlliance2"] = {
- { 1, 0, "inv_misc_tournaments_symbol_dwarf", "=q6="..BabbleFaction["Ironforge"].." #j30#", "=ec1=#m7#"};
- { 2, 18786, "", "=q4=Swift Brown Ram", "=ds=#e12#"};
- { 3, 18787, "", "=q4=Swift Gray Ram", "=ds=#e12#"};
- { 4, 18785, "", "=q4=Swift White Ram", "=ds=#e12#"};
- { 5, 5872, "", "=q3=Brown Ram", "=ds=#e12#"};
- { 6, 5864, "", "=q3=Gray Ram", "=ds=#e12#"};
- { 7, 5873, "", "=q3=White Ram", "=ds=#e12#"};
- { 9, 0, "inv_misc_tournaments_symbol_draenei", "=q6="..BabbleFaction["Exodar"].." #j30#", "=ec1=#m7#"};
- { 10, 29745, "", "=q4=Great Blue Elekk", "=ds=#e12#"};
- { 11, 29746, "", "=q4=Great Green Elekk", "=ds=#e12#"};
- { 12, 29747, "", "=q4=Great Purple Elekk", "=ds=#e12#"};
- { 13, 28481, "", "=q3=Brown Elekk", "=ds=#e12#"};
- { 14, 29744, "", "=q3=Gray Elekk", "=ds=#e12#"};
- { 15, 29743, "", "=q3=Purple Elekk", "=ds=#e12#"};
- { 16, 0, "inv_misc_tournaments_symbol_human", "=q6="..BabbleFaction["Stormwind"].." #j30#", "=ec1=#m7#"};
- { 17, 18777, "", "=q4=Swift Brown Steed", "=ds=#e12#"};
- { 18, 18776, "", "=q4=Swift Palomino", "=ds=#e12#"};
- { 19, 18778, "", "=q4=Swift White Steed", "=ds=#e12#"};
- { 20, 2411, "", "=q3=Black Stallion Bridle", "=ds=#e12#"};
- { 21, 5656, "", "=q3=Brown Horse Bridle", "=ds=#e12#"};
- { 22, 5655, "", "=q3=Chestnut Mare Bridle", "=ds=#e12#"};
- { 23, 2414, "", "=q3=Pinto Bridle", "=ds=#e12#"};
- Prev = "MountsAlliance1";
- Next = "MountsAlliance3";
- Back = "MOUNTMENU";
- };
-
- AtlasLoot_Data["MountsAlliance3"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6="..AL["Alliance Flying Mounts"], "=ec1=#m7#"};
- { 2, 25473, "", "=q4=Swift Blue Gryphon", "=ds=#e12#"};
- { 3, 25528, "", "=q4=Swift Green Gryphon", "=ds=#e12#"};
- { 4, 25529, "", "=q4=Swift Purple Gryphon", "=ds=#e12#"};
- { 5, 25527, "", "=q4=Swift Red Gryphon", "=ds=#e12#"};
- { 6, 25471, "", "=q3=Ebon Gryphon", "=ds=#e12#"};
- { 7, 25470, "", "=q3=Golden Gryphon", "=ds=#e12#"};
- { 8, 25472, "", "=q3=Snowy Gryphon", "=ds=#e12#"};
- { 10, 44225, "", "=q4=Reins of the Armored Brown Bear", "=ds=#e12#"};
- { 11, 44230, "", "=q4=Reins of the Wooly Mammoth", "=ds=#e12#"};
- { 12, 44235, "", "=q4=Reins of the Traveler's Tundra Mammoth", "=ds=#e12#"};
- { 13, 44689, "", "=q4=Armored Snowy Gryphon", "=ds=#e12#"};
- { 16, 0, "INV_BannerPVP_02", "=q6="..BabbleFaction["Kurenai"].." #j30#", "=ec1=#m7#"};
- { 17, 29227, "", "=q4=Reins of the Cobalt War Talbuk", "=ds=#e12#"};
- { 18, 29229, "", "=q4=Reins of the Silver War Talbuk", "=ds=#e12#"};
- { 19, 29230, "", "=q4=Reins of the Tan War Talbuk", "=ds=#e12#"};
- { 20, 29231, "", "=q4=Reins of the White War Talbuk", "=ds=#e12#"};
- { 21, 31830, "", "=q4=Reins of the Cobalt Riding Talbuk", "=ds=#e12#"};
- { 22, 31832, "", "=q4=Reins of the Silver Riding Talbuk", "=ds=#e12#"};
- { 23, 31834, "", "=q4=Reins of the Tan Riding Talbuk", "=ds=#e12#"};
- { 24, 31836, "", "=q4=Reins of the White Riding Talbuk", "=ds=#e12#"};
- { 26, 0, "INV_BannerPVP_02", "=q6="..BabbleFaction["Wintersaber Trainers"].." #j30#", "=ec1=#m7#"};
- { 27, 13086, "", "=q4=Reins of the Winterspring Frostsaber", "=ds=#e12#"};
- { 28, 0, "INV_BannerPVP_02", "=q6="..BabbleFaction["The Silver Covenant"].." #j30#", "=ec1=#m7#"};
- { 29, 46815, "", "=q4=Quel'dorei Steed", "=ds=#e12#"};
- { 30, 46813, "", "=q4=Silver Covenant Hippogryph", "=ds=#e12#"};
- Prev = "MountsAlliance2";
- Back = "MOUNTMENU";
- };
-
- AtlasLoot_Data["MountsHorde1"] = {
- { 1, 0, "inv_misc_tournaments_symbol_orc", "=q6="..BabbleFaction["Orgrimmar"].." #j30#", "=ec1=#m6#"};
- { 2, 18796, "", "=q4=Horn of the Swift Brown Wolf", "=ds=#e12#"};
- { 3, 18798, "", "=q4=Horn of the Swift Gray Wolf", "=ds=#e12#"};
- { 4, 18797, "", "=q4=Horn of the Swift Timber Wolf", "=ds=#e12#"};
- { 5, 46099, "", "=q3=Horn of the Black Wolf", "=ds=#e12#"};
- { 6, 5668, "", "=q3=Horn of the Brown Wolf", "=ds=#e12#"};
- { 7, 5665, "", "=q3=Horn of the Dire Wolf", "=ds=#e12#"};
- { 8, 1132, "", "=q3=Horn of the Timber Wolf", "=ds=#e12#"};
- { 16, 0, "inv_misc_tournaments_symbol_bloodelf", "=q6="..BabbleFaction["Silvermoon City"].." #j30#", "=ec1=#m6#"};
- { 17, 29223, "", "=q4=Swift Green Hawkstrider", "=ds=#e12#"};
- { 18, 28936, "", "=q4=Swift Pink Hawkstrider", "=ds=#e12#"};
- { 19, 29224, "", "=q4=Swift Purple Hawkstrider", "=ds=#e12#"};
- { 20, 29221, "", "=q3=Black Hawkstrider", "=ds=#e12#"};
- { 21, 29220, "", "=q3=Blue Hawkstrider", "=ds=#e12#"};
- { 22, 29222, "", "=q3=Purple Hawkstrider", "=ds=#e12#"};
- { 23, 28927, "", "=q3=Red Hawkstrider", "=ds=#e12#"};
- Next = "MountsHorde2";
- Back = "MOUNTMENU";
- };
-
- AtlasLoot_Data["MountsHorde2"] = {
- { 1, 0, "inv_misc_tournaments_symbol_troll", "=q6="..BabbleFaction["Darkspear Trolls"].." #j30#", "=ec1=#m6#"};
- { 2, 18788, "", "=q4=Swift Blue Raptor", "=ds=#e12#"};
- { 3, 18789, "", "=q4=Swift Olive Raptor", "=ds=#e12#"};
- { 4, 18790, "", "=q4=Swift Orange Raptor", "=ds=#e12#"};
- { 5, 8588, "", "=q3=Whistle of the Emerald Raptor", "=ds=#e12#"};
- { 6, 8591, "", "=q3=Whistle of the Turquoise Raptor", "=ds=#e12#"};
- { 7, 8592, "", "=q3=Whistle of the Violet Raptor", "=ds=#e12#"};
- { 9, 0, "inv_misc_tournaments_symbol_tauren", "=q6="..BabbleFaction["Thunder Bluff"].." #j30#", "=ec1=#m6#"};
- { 10, 18794, "", "=q4=Great Brown Kodo", "=ds=#e12#"};
- { 11, 18795, "", "=q4=Great Gray Kodo", "=ds=#e12#"};
- { 12, 18793, "", "=q4=Great White Kodo", "=ds=#e12#"};
- { 13, 15290, "", "=q3=Brown Kodo", "=ds=#e12#"};
- { 14, 15277, "", "=q3=Gray Kodo", "=ds=#e12#"};
- { 15, 46100, "", "=q3=White Kodo", "=ds=#e12#"};
- { 16, 0, "inv_misc_tournaments_symbol_scourge", "=q6="..BabbleFaction["Undercity"].." #j30#", "=ec1=#m6#"};
- { 17, 13334, "", "=q4=Green Skeletal Warhorse", "=ds=#e12#"};
- { 18, 47101, "", "=q4=Ochre Skeletal Warhorse", "=ds=#e12#"};
- { 19, 18791, "", "=q4=Purple Skeletal Warhorse", "=ds=#e12#"};
- { 20, 46308, "", "=q3=Black Skeletal Horse", "=ds=#e12#"};
- { 21, 13332, "", "=q3=Blue Skeletal Horse", "=ds=#e12#"};
- { 22, 13333, "", "=q3=Brown Skeletal Horse", "=ds=#e12#"};
- { 23, 13331, "", "=q3=Red Skeletal Horse", "=ds=#e12#"};
- Prev = "MountsHorde1";
- Next = "MountsHorde3";
- Back = "MOUNTMENU";
- };
-
- AtlasLoot_Data["MountsHorde3"] = {
- { 1, 0, "INV_BannerPVP_01", "=q6="..AL["Horde Flying Mounts"], "=ec1=#m6#"};
- { 2, 25531, "", "=q4=Swift Green Wind Rider", "=ds=#e12#"};
- { 3, 25533, "", "=q4=Swift Purple Wind Rider", "=ds=#e12#"};
- { 4, 25477, "", "=q4=Swift Red Wind Rider", "=ds=#e12#"};
- { 5, 25532, "", "=q4=Swift Yellow Wind Rider", "=ds=#e12#"};
- { 6, 25475, "", "=q3=Blue Wind Rider", "=ds=#e12#"};
- { 7, 25476, "", "=q3=Green Wind Rider", "=ds=#e12#"};
- { 8, 25474, "", "=q3=Tawny Wind Rider", "=ds=#e12#"};
- { 10, 44226, "", "=q4=Reins of the Armored Brown Bear", "=ds=#e12#"};
- { 11, 44231, "", "=q4=Reins of the Wooly Mammoth", "=ds=#e12#"};
- { 12, 44234, "", "=q4=Reins of the Traveler's Tundra Mammoth", "=ds=#e12#"};
- { 13, 44690, "", "=q4=Armored Blue Wind Rider", "=ds=#e12#"};
- { 16, 0, "INV_BannerPVP_01", "=q6="..BabbleFaction["The Mag'har"].." #j30#", "=ec1=#m6#"};
- { 17, 29102, "", "=q4=Reins of the Cobalt War Talbuk", "=ds=#e12#"};
- { 18, 29104, "", "=q4=Reins of the Silver War Talbuk", "=ds=#e12#"};
- { 19, 29105, "", "=q4=Reins of the Tan War Talbuk", "=ds=#e12#"};
- { 20, 29103, "", "=q4=Reins of the White War Talbuk", "=ds=#e12#"};
- { 21, 31829, "", "=q4=Reins of the Cobalt Riding Talbuk", "=ds=#e12#"};
- { 22, 31831, "", "=q4=Reins of the Silver Riding Talbuk", "=ds=#e12#"};
- { 23, 31833, "", "=q4=Reins of the Tan Riding Talbuk", "=ds=#e12#"};
- { 24, 31835, "", "=q4=Reins of the White Riding Talbuk", "=ds=#e12#"};
- { 26, 0, "INV_BannerPVP_02", "=q6=Ravasaur Trainers #j30#", "=ec1=#m7#"};
- { 27, 46102, "", "=q4=Whistle of the Venomhide Ravasaur", "=ds=#e12#"};
- { 28, 0, "INV_BannerPVP_02", "=q6="..BabbleFaction["The Sunreavers"].." #j30#", "=ec1=#m7#"};
- { 29, 46816, "", "=q4=Sunreaver Hawkstrider", "=ds=#e12#"};
- { 30, 46814, "", "=q4=Sunreaver Dragonhawk", "=ds=#e12#"};
- Prev = "MountsHorde2";
- Back = "MOUNTMENU";
- };
-
- AtlasLoot_Data["MountsFaction1"] = {
- { 1, 0, "INV_Box_01", "=q6="..BabbleFaction["Netherwing"].." #j30#", ""};
- { 2, 32858, "", "=q4=Reins of the Azure Netherwing Drake", "=ds=#e12#"};
- { 3, 32859, "", "=q4=Reins of the Cobalt Netherwing Drake", "=ds=#e12#"};
- { 4, 32857, "", "=q4=Reins of the Onyx Netherwing Drake", "=ds=#e12#"};
- { 5, 32860, "", "=q4=Reins of the Purple Netherwing Drake", "=ds=#e12#"};
- { 6, 32861, "", "=q4=Reins of the Veridian Netherwing Drake", "=ds=#e12#"};
- { 7, 32862, "", "=q4=Reins of the Violet Netherwing Drake", "=ds=#e12#"};
- { 9, 0, "INV_Box_01", "=q6="..BabbleFaction["Sha'tari Skyguard"].." #j30#", ""};
- { 10, 32319, "", "=q4=Blue Riding Nether Ray", "=ds=#e12#"};
- { 11, 32314, "", "=q4=Green Riding Nether Ray", "=ds=#e12#"};
- { 12, 32317, "", "=q4=Red Riding Nether Ray", "=ds=#e12#"};
- { 13, 32316, "", "=q4=Purple Riding Nether Ray", "=ds=#e12#"};
- { 14, 32318, "", "=q4=Silver Riding Nether Ray", "=ds=#e12#"};
- { 16, 0, "INV_Box_01", "=q6="..BabbleFaction["Cenarion Expedition"].." #j30#", ""};
- { 17, 33999, "", "=q4=Cenarion War Hippogryph", "=ds=#e12#"};
- { 19, 0, "INV_Box_01", "=q6="..BabbleFaction["The Sons of Hodir"].." #j30#", ""};
- { 20, 43958, "", "=q4=Reins of the Ice Mammoth", "=ds=#e12# =ec1=#m7#"};
- { 21, 44080, "", "=q4=Reins of the Ice Mammoth", "=ds=#e12# =ec1=#m6#"};
- { 22, 43961, "", "=q4=Reins of the Grand Ice Mammoth", "=ds=#e12# =ec1=#m7#"};
- { 23, 44086, "", "=q4=Reins of the Grand Ice Mammoth", "=ds=#e12# =ec1=#m6#"};
- { 25, 0, "INV_Box_01", "=q6="..BabbleFaction["The Wyrmrest Accord"].." #j30#", ""};
- { 26, 43955, "", "=q4=Reins of the Red Drake", "=ds=#e12#"};
- { 28, 0, "INV_Box_01", "=q6="..BabbleFaction["The Oracles"].." #j30#", ""};
- { 29, 44707, "", "=q4=Reins of the Green Proto-Drake", "=q2=#x38#", ""};
- Back = "MOUNTMENU";
- };
-
- AtlasLoot_Data["MountsPvP1"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Arena Reward"], ""};
- { 2, 30609, "", "=q4=Swift Nether Drake", "=ds=#e12#"};
- { 3, 34092, "", "=q4=Merciless Nether Drake", "=ds=#e12#"};
- { 4, 37676, "", "=q4=Vengeful Nether Drake", "=ds=#e12#"};
- { 5, 43516, "", "=q4=Brutal Nether Drake", "=ds=#e12#"};
- { 6, 46171, "", "=q4=Deadly Gladiator's Frostwyrm", "=ds=#e12#"};
- { 8, 0, "INV_Box_01", "=q6="..AL["Alliance PvP Mounts"], ""};
- { 9, 29465, "", "=q4=Black Battlestrider", "=ds=#e12# =ec1=#m7#"};
- { 10, 29467, "", "=q4=Black War Ram", "=ds=#e12# =ec1=#m7#"};
- { 11, 29468, "", "=q4=Black War Steed Bridle", "=ds=#e12# =ec1=#m7#"};
- { 12, 35906, "", "=q4=Reins of the Black War Elekk", "=ds=#e12# =ec1=#m7#"};
- { 13, 29471, "", "=q4=Reins of the Black War Tiger", "=ds=#e12# =ec1=#m7#"};
- { 14, 19030, "", "=q4=Stormpike Battle Charger", "=ds=#e12# =ec1=#m7#"};
- { 15, 43956, "", "=q4=Reins of the Black War Mammoth", "=ds=#e12# =ec1=#m7#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Halaa PvP Mounts"], ""};
- { 17, 28915, "", "=q4=Reins of the Dark Riding Talbuk", "=ds=#e12#"};
- { 18, 29228, "", "=q4=Reins of the Dark War Talbuk", "=ds=#e12#"};
- { 23, 0, "INV_Box_01", "=q6="..AL["Horde PvP Mounts"], ""};
- { 24, 29466, "", "=q4=Black War Kodo", "=ds=#e12# =ec1=#m6#"};
- { 25, 29469, "", "=q4=Horn of the Black War Wolf", "=ds=#e12# =ec1=#m6#"};
- { 26, 29470, "", "=q4=Red Skeletal Warhorse", "=ds=#e12# =ec1=#m6#"};
- { 27, 34129, "", "=q4=Swift Warstrider", "=ds=#e12# =ec1=#m6#"};
- { 28, 29472, "", "=q4=Whistle of the Black War Raptor", "=ds=#e12# =ec1=#m6#"};
- { 29, 19029, "", "=q4=Horn of the Frostwolf Howler", "=ds=#e12# =ec1=#m6#"};
- { 30, 44077, "", "=q4=Reins of the Black War Mammoth", "=ds=#e12# =ec1=#m6#"};
- Back = "MOUNTMENU";
- };
-
- AtlasLoot_Data["MountsRare1"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Dungeon/Raid"], ""};
- { 2, 33809, "", "=q4=Amani War Bear", "=q2=#x33#, =q1=#z29#"};
- { 3, 32458, "", "=q4=Ashes of Al'ar", "=q2=#n59#, =q1=#z19#"};
- { 4, 49098, "", "=q4=Crusader's Black Warhorse", "=q2="..AL["A Tribute to Immortality"]..", =q1="..BabbleZone["Trial of the Crusader"], "", ""};
- { 5, 49096, "", "=q4=Crusader's White Warhorse", "=q2="..AL["A Tribute to Immortality"]..", =q1="..BabbleZone["Trial of the Crusader"], "", ""};
- { 6, 13335, "", "=q4=Deathcharger's Reins", "=q2=#n52#, =q1=#z6#", "", "0.10%"};
- { 7, 30480, "", "=q4=Fiery Warhorse's Reins", "=q2=#n53#, =q1=#z12#", "", "0.25%"};
- { 8, 50818, "", "=q4=Invincible's Reins", "=q2="..BabbleBoss["The Lich King"]..", =q1="..BabbleZone["Icecrown Citadel"], "", ""};
- { 9, 45693, "", "=q4=Mimiron's Head", "=q2="..AL["Alone in the Darkness"]..", =q1="..BabbleZone["Ulduar"], "", ""};
- { 10, 43986, "", "=q4=Reins of the Black Drake", "=q2=#n153#, =q1=#j37# #z38# #j46#", ""};
- { 11, 43954, "", "=q4=Reins of the Twilight Drake", "=q2=#n153#, =q1=#j38# #z38# #j46#", ""};
- { 12, 43953, "", "=q4=Reins of the Blue Drake", "=q2="..BabbleZone["The Oculus"], ""};
- { 13, 43952, "", "=q4=Reins of the Azure Drake", "=q2=#n154#, =q1=#j38# #z39#", ""};
- { 14, 44151, "", "=q4=Reins of the Blue Proto-Drake", "=q2=#n151#, =q1=#j47# #z35#", ""};
- { 15, 43951, "", "=q4=Reins of the Bronze Drake", "=q2=#n152#, =q1=#j47# #z36#", ""};
- { 17, 52200, "", "=q4=Reins of the Crimson Deathcharger", "=q2="..BabbleBoss["The Lich King"]..", =q1="..BabbleZone["Icecrown Citadel"], "", ""};
- { 18, 44083, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m7#", "", ""};
- { 19, 43959, "", "=q4=Reins of the Grand Black War Mammoth", "=ds=#e12# =ec1=#m6#", "", ""};
- { 20, 32768, "", "=q4=Reins of the Raven Lord", "=q2=#n58#, =q1=#z16#"};
- { 21, 49046, "", "=q4=Swift Horde Wolf", "=q2="..AL["A Tribute to Insanity (50)"]..", =q1="..BabbleZone["Trial of the Crusader"], "", ""};--Horde
- { 22, 49044, "", "=q4=Swift Alliance Steed", "=q2="..AL["A Tribute to Insanity (50)"]..", =q1="..BabbleZone["Trial of the Crusader"], "", ""};--Alliance
- { 23, 35513, "", "=q4=Swift White Hawkstrider", "=q2=#n59#, =q1=#z30#"};
- { 24, 19872, "", "=q4=Swift Razzashi Raptor", "=q2=#n33#, =q1=#z8#", "", "0.43%"};
- { 25, 19902, "", "=q4=Swift Zulian Tiger", "=q2=#n28#, =q1=#z8#", "", " 0.70%"};
- Next = "MountsRare2";
- Back = "MOUNTMENU";
- };
-
- AtlasLoot_Data["MountsRare2"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Achievement Reward"], ""};
- { 2, 44223, "", "=q4=Reins of the Black War Bear", "=ds=#e12# =ec1=#m7#"};
- { 3, 44224, "", "=q4=Reins of the Black War Bear", "=ds=#e12# =ec1=#m6#"};
- { 4, 44843, "", "=q4=Blue Dragonhawk Mount", "=ds=#e12# =ec1=#m7#"};
- { 5, 44842, "", "=q4=Red Dragonhawk Mount", "=ds=#e12# =ec1=#m6#"};
- { 6, 44178, "", "=q4=Reins of the Albino Drake", "=ds=#e12#"};
- { 7, 44164, "", "=q4=Reins of the Black Proto-Drake", "=ds=#e12#"};
- { 8, 45801, "", "=q4=Reins of the Ironbound Proto-Drake", "=ds=#e12#"};
- { 9, 44175, "", "=q4=Reins of the Plagued Proto-Drake", "=ds=#e12#"};
- { 10, 44160, "", "=q4=Reins of the Red Proto-Drake", "=ds=#e12#"};
- { 11, 45802, "", "=q4=Reins of the Rusted Proto-Drake", "=ds=#e12#"};
- { 12, 44177, "", "=q4=Reins of the Violet Proto-Drake", "=ds=#e12#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Rare Mounts"], ""};
- { 17, 44168, "", "=q4=Reins of the Time-Lost Proto-Drake", "=q2=#n155#, =q1=#z37#", ""};
- { 18, 46109, "", "=q3=Sea Turtle", "=q2=#p24#", ""};
- { 20, 21218, "", "=q3=Blue Qiraji Resonating Crystal", "=q2=#n11#, =q1=#z11#", "", "10.91%"};
- { 21, 21323, "", "=q3=Green Qiraji Resonating Crystal", "=q2=#n11#, =q1=#z11#", "", "11.77%"};
- { 22, 21321, "", "=q3=Red Qiraji Resonating Crystal", "=q2=#n11#, =q1=#z11#", "", "1.32%"};
- { 23, 21324, "", "=q3=Yellow Qiraji Resonating Crystal", "=q2=#n11#, =q1=#z11#", "", "12.64%"};
- Prev = "MountsRare1";
- Back = "MOUNTMENU";
- };
-
- AtlasLoot_Data["MountsCraftQuestPromotion1"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Quest Reward"], ""};
- { 2, 21176, "", "=q5=Black Qiraji Resonating Crystal", "=q2=#m4#"};
- { 3, 43962, "", "=q4=Reins of the White Polar Bear", "=q2=#m4#: #x39#", ""};
- { 5, 0, "INV_Box_01", "=q6="..AL["Crafted Mounts"], ""};
- { 6, 54797, "", "=q4=Frosty Flying Carpet", "=q2=#p8#"};
- { 7, 44558, "", "=q4=Magnificent Flying Carpet", "=q2=#p8#"};
- { 8, 44413, "", "=q4=Mekgineer's Chopper", "=q2=#p5# =ec1=#m7#"};
- { 9, 41508, "", "=q4=Mechano-hog", "=q2=#p5# =ec1=#m6#"};
- { 10, 34061, "", "=q4=Turbo-Charged Flying Machine Control", "=q2=#p5#"};
- { 11, 44554, "", "=q3=Flying Carpet", "=q2=#p8#"};
- { 12, 34060, "", "=q3=Flying Machine Control", "=q2=#p5#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Promotional Mounts"], ""};
- { 17, 43599, "", "=q3=Big Blizzard Bear", "=ds=#e12#"};
- { 18, 37719, "", "=q4=Swift Zhevra", "=ds=#e12#"};
- { 19, 54860, "", "=q4=X-53 Touring Rocket", "=ds=#e12#"};
- { 21, 0, "INV_Box_01", "=q6="..AL["Card Game Mounts"], ""};
- { 22, 54068, "", "=q4=Wooly White Rhino ", "=q2=#m24#"};
- { 23, 49282, "", "=q4=Big Battle Bear", "=q2=#m24#"};
- { 24, 49290, "", "=q4=Magic Rooster Egg", "=q2=#m24#"};
- { 25, 49284, "", "=q4=Reins of the Swift Spectral Tiger", "=q2=#m24#"};
- { 26, 23720, "", "=q4=Riding Turtle", "=q2=#m24#"};
- { 27, 49286, "", "=q4=X-51 Nether-Rocket X-TREME", "=q2=#m24#"};
- { 28, 49283, "", "=q3=Reins of the Spectral Tiger", "=q2=#m24#"};
- { 29, 49285, "", "=q3=X-51 Nether-Rocket", "=q2=#m24#"};
- Back = "MOUNTMENU";
- };
-
- AtlasLoot_Data["MountsEvent1"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", ""};
- { 2, 45591, "", "=q4=Darnassian Nightsaber", "=ds=#e12#", "100 #champseal#"};
- { 3, 45590, "", "=q4=Exodar Elekk", "=ds=#e12#", "100 #champseal#"};
- { 4, 45589, "", "=q4=Gnomeregan Mechanostrider", "=ds=#e12#", "100 #champseal#"};
- { 5, 45586, "", "=q4=Ironforge Ram", "=ds=#e12#", "100 #champseal#"};
- { 6, 45125, "", "=q4=Stormwind Steed", "=ds=#e12#", "100 #champseal#"};
- { 8, 46745, "", "=q4=Great Red Elekk", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 9, 46752, "", "=q4=Swift Gray Steed", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 10, 46744, "", "=q4=Swift Moonsaber", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 11, 46748, "", "=q4=Swift Violet Ram", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 12, 46747, "", "=q4=Turbostrider", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 14, 47179, "", "=q4=Argent Charger", "=ds=#e12#", "100 #champseal#"};
- { 15, 47180, "", "=q4=Argent Warhorse", "=ds=#e12#", "100 #champseal#"};
- { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", ""};
- { 17, 45593, "", "=q4=Darkspear Raptor", "=ds=#e12#", "100 #champseal#"};
- { 18, 45597, "", "=q4=Forsaken Warhorse", "=ds=#e12#", "100 #champseal#"};
- { 19, 45595, "", "=q4=Orgrimmar Wolf", "=ds=#e12#", "100 #champseal#"};
- { 20, 45596, "", "=q4=Silvermoon Hawkstrider", "=ds=#e12#", "100 #champseal#"};
- { 21, 45592, "", "=q4=Thunder Bluff Kodo", "=ds=#e12#", "100 #champseal#"};
- { 23, 46750, "", "=q4=Great Golden Kodo", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 24, 46749, "", "=q4=Swift Burgundy Wolf", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 25, 46743, "", "=q4=Swift Purple Raptor", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 26, 46751, "", "=q4=Swift Red Hawkstrider", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 27, 46746, "", "=q4=White Skeletal Warhorse", "=ds=#e12#", "500 #gold# 5 #champseal#"};
- { 29, 45725, "", "=q4=Argent Hippogryph", "=ds=#e12#", "150 #champseal#"};
- Next = "MountsEvent2";
- Back = "MOUNTMENU";
- };
-
- AtlasLoot_Data["MountsEvent2"] = {
- { 1, 0, "INV_Box_01", "=q6="..AL["Brewfest"], ""};
- { 2, 37828, "", "=q4=Great Brewfest Kodo", "=q2=#n150#"};
- { 3, 33977, "", "=q4=Swift Brewfest Ram", "=q2=#n150#"};
- { 4, 33976, "", "=q3=Brewfest Ram", "=ds=#e12#"};
- { 6, 0, "INV_Box_01", "=q6="..AL["Hallow's End"], ""};
- { 7, 37012, "", "=q4=The Horseman's Reins", "=q2=#n136#"};
- { 8, 37011, "", "=q3=Magic Broom", "=q2=#n136#"};
- { 16, 0, "INV_Box_01", "=q6="..AL["Love is in the Air"], ""};
- { 17, 50250, "", "=q4=Big Love Rocket", "=ds=#e12#"};
- Prev = "MountsEvent1";
- Back = "MOUNTMENU";
- };
-
- -----------------------
- --- BoE World Epics ---
- -----------------------
-
- AtlasLoot_Data["WorldEpicsWrath"] = {
- { 1, 44309, "", "=q4=Sash of Jordan", "=ds=#s10#, #a1#"};
- { 2, 44312, "", "=q4=Wapach's Spaulders of Solidarity", "=ds=#s3#, #a4#"};
- { 3, 44308, "", "=q4=Signet of Edward the Odd", "=ds=#s13#"};
- { 4, 37835, "", "=q4=Je'Tze's Bell", "=ds=#s14#"};
- { 5, 37254, "", "=q4=Super Simian Sphere", "=ds=#s14#"};
- { 16, 44310, "", "=q4=Namlak's Supernumerary Sticker", "=ds=#h1#, #w4#"};
- { 17, 43613, "", "=q4=The Dusk Blade", "=ds=#h1#, #w4#"};
- { 18, 44311, "", "=q4=Avool's Sword of Jin", "=ds=#h1#, #w10#"};
- { 19, 43611, "", "=q4=Krol Cleaver", "=ds=#h1#, #w10#"};
- { 20, 44313, "", "=q4=Zom's Crackling Bulwark", "=ds=#w8#"};
- { 21, 43612, "", "=q4=Spineslicer", "=ds=#w11#"};
- Back = "SETMENUWRATH";
- };
-
- ----------------------
- --- Heirloom Items ---
- ----------------------
-
- AtlasLoot_Data["Heirloom"] = {
- { 1, 42985, "", "=q7=Tattered Dreadmist Mantle", "=ds=#s3#, #a1#", "40 #eofheroism# / 60 #champseal#"};
- { 2, 42984, "", "=q7=Preened Ironfeather Shoulders", "=ds=#s3#, #a2#", "40 #eofheroism# / 60 #champseal#"};
- { 3, 42952, "", "=q7=Stained Shadowcraft Spaulders", "=ds=#s3#, #a2#", "40 #eofheroism# / 60 #champseal#"};
- { 4, 42950, "", "=q7=Champion Herod's Shoulder", "=ds=#s3#, #a3#", "40 #eofheroism# / 60 #champseal#"};
- { 5, 42951, "", "=q7=Mystical Pauldrons of Elements", "=ds=#s3#, #a3#", "40 #eofheroism# / 60 #champseal#"};
- { 6, 42949, "", "=q7=Polished Spaulders of Valor", "=ds=#s3#, #a4#", "40 #eofheroism# / 60 #champseal#"};
- { 8, 42992, "", "=q7=Discerning Eye of the Beast", "=ds=#s14#", "50 #eofheroism# / 75 #champseal#"};
- { 9, 42991, "", "=q7=Swift Hand of Justice", "=ds=#s14#", "50 #eofheroism# / 75 #champseal#"};
- { 11, 50255, "", "=q7=Dread Pirate Ring", "=ds=#s13#", ""};
- { 13, 49177, "", "=q7=Tome of Cold Weather Flight", "=ds=", "1000 #gold#"};
- { 16, 48691, "", "=q7=Tattered Dreadmist Robe", "=ds=#s5#, #a1#", "40 #eofheroism# / 60 #champseal#"};
- { 17, 48687, "", "=q7=Preened Ironfeather Breastplate", "=ds=#s5#, #a2#", "40 #eofheroism# / 60 #champseal#"};
- { 18, 48689, "", "=q7=Stained Shadowcraft Tunic", "=ds=#s5#, #a2#", "40 #eofheroism# / 60 #champseal#"};
- { 19, 48677, "", "=q7=Champion's Deathdealer Breastplate", "=ds=#s5#, #a3#", "40 #eofheroism# / 60 #champseal#"};
- { 20, 48683, "", "=q7=Mystical Vest of Elements", "=ds=#s5#, #a3#", "40 #eofheroism# / 60 #champseal#"};
- { 21, 48685, "", "=q7=Polished Breastplate of Valor", "=ds=#s5#, #a4#", "40 #eofheroism# / 60 #champseal#"};
- { 23, 42944, "", "=q7=Balanced Heartseeker", "=ds=#w4#, #h1#", "40 #eofheroism# / 60 #champseal#"};
- { 24, 42945, "", "=q7=Venerable Dal'Rend's Sacred Charge", "=ds=#w10#, #h3#", "40 #eofheroism# / 60 #champseal#"};
- { 25, 42943, "", "=q7=Bloodied Arcanite Reaper", "=ds=#w1#, #h2#", "65 #eofheroism# / 95 #champseal#"};
- { 26, 42948, "", "=q7=Devout Aurastone Hammer", "=ds=#w6#, #h3#", "50 #eofheroism# / 75 #champseal#"};
- { 27, 48716, "", "=q7=Venerable Mass of McGowan", "=ds=#w6#, #h1#", "40 #eofheroism# / 75 #champseal#"};
- { 28, 48718, "", "=q7=Repurposed Lava Dredger", "=ds=#w6#, #h2#", "65 #eofheroism# / 95 #champseal#"};
- { 29, 42947, "", "=q7=Dignified Headmaster's Charge", "=ds=#w9#", "65 #eofheroism# / 95 #champseal#"};
- { 30, 42946, "", "=q7=Charmed Ancient Bone Bow", "=ds=#w2#", "65 #eofheroism# / 95 #champseal#"};
- Next = "Heirloom2";
- Back = "SETMENU";
- };
-
- AtlasLoot_Data["Heirloom2"] = {
- { 1, 44107, "", "=q7=Exquisite Sunderseer Mantle", "=ds=#s3#, #a1#", "200 #wintergrasp#"};
- { 2, 44103, "", "=q7=Exceptional Stormshroud Shoulders", "=ds=#s3#, #a2#", "200 #wintergrasp#"};
- { 3, 44105, "", "=q7=Lasting Feralheart Spaulders", "=ds=#s3#, #a2#", "200 #wintergrasp#"};
- { 4, 44102, "", "=q7=Aged Pauldrons of The Five Thunders", "=ds=#s3#, #a3#", "200 #wintergrasp#"};
- { 5, 44101, "", "=q7=Prized Beastmaster's Mantle", "=ds=#s3#, #a3#", "200 #wintergrasp#"};
- { 6, 44100, "", "=q7=Pristine Lightforge Spaulders", "=ds=#s3#, #a4#", "200 #wintergrasp#"};
- { 7, 44099, "", "=q7=Strengthened Stockade Pauldrons", "=ds=#s3#, #a4#", "200 #wintergrasp#"};
- { 9, 44098, "", "=q7=Inherited Insignia of the Alliance", "=ds=#s14#", "250 #wintergrasp#"};
- { 10, 44097, "", "=q7=Inherited Insignia of the Horde", "=ds=#s14#", "250 #wintergrasp#"};
- { 12, 44115, "", "=q7=Wintergrasp Commendation", "=ds=", "30 #wintergrasp# / 9 #wintergraspmark#"};
- { 16, 44091, "", "=q7=Sharpened Scarlet Kris", "=ds=#h1#, #w4#", "200 #wintergrasp#"};
- { 17, 44096, "", "=q7=Battleworn Thrash Blade", "=ds=#h1#, #w10#", "200 #wintergrasp#"};
- { 18, 44092, "", "=q7=Reforged Truesilver Champion", "=ds=#h2#, #w10#", "325 #wintergrasp#"};
- { 19, 44094, "", "=q7=The Blessed Hammer of Grace", "=ds=#h3#, #w6#", "250 #wintergrasp#"};
- { 20, 44095, "", "=q7=Grand Staff of Jordan", "=ds=#w9#", "325 #wintergrasp#"};
- { 21, 44093, "", "=q7=Upgraded Dwarven Hand Cannon", "=ds=#w5#", "325 #wintergrasp#"};
- Prev = "Heirloom";
- Back = "SETMENU";
- };
-
- -------------------------------
- --- Emblem of Heroism Items ---
- -------------------------------
-
- AtlasLoot_Data["EmblemofHeroism"] = {
- { 1, 40697, "", "=q4=Elegant Temple Gardens' Girdle", "=ds=#s10#, #a1#", "40 #eofheroism#"};
- { 2, 40696, "", "=q4=Plush Sash of Guzbah", "=ds=#s10#, #a1#", "40 #eofheroism#"};
- { 3, 40694, "", "=q4=Jorach's Crocolisk Skin Belt", "=ds=#s10#, #a2#", "40 #eofheroism#"};
- { 4, 40695, "", "=q4=Vine Belt of the Woodland Dryad", "=ds=#s10#, #a2#", "40 #eofheroism#"};
- { 5, 40693, "", "=q4=Beadwork Belt of Shamanic Vision", "=ds=#s10#, #a3#", "40 #eofheroism#"};
- { 6, 40692, "", "=q4=Vereesa's Silver Chain Belt", "=ds=#s10#, #a3#", "40 #eofheroism#"};
- { 7, 40691, "", "=q4=Magroth's Meditative Cincture", "=ds=#s10#, #a4#", "40 #eofheroism#"};
- { 8, 40688, "", "=q4=Verdungo's Barbarian Cord", "=ds=#s10#, #a4#", "40 #eofheroism#"};
- { 9, 40689, "", "=q4=Waistguard of Living Iron", "=ds=#s10#, #a4#", "40 #eofheroism#"};
- { 16, 40704, "", "=q4=Pride", "=ds=#w13#, #h4#", "50 #eofheroism#"};
- { 17, 40702, "", "=q4=Rolfsen's Ripper", "=ds=#w4#, #h4#", "50 #eofheroism#"};
- { 18, 40703, "", "=q4=Grasscutter", "=ds=#w10#, #h4#", "50 #eofheroism#"};
- { 19, 40716, "", "=q4=Lillehoff's Winged Blades", "=ds=#w11#", "15 #eofheroism#"};
- { 20, 40701, "", "=q4=Crygil's Discarded Plate Panel", "=ds=#w8#", "35 #eofheroism#"};
- { 21, 40700, "", "=q4=Protective Barricade of the Light", "=ds=#w8#", "35 #eofheroism#"};
- { 22, 40699, "", "=q4=Handbook of Obscure Remedies", "=ds=#s15#", "25 #eofheroism#"};
- { 23, 40698, "", "=q4=Ward of the Violet Citadel", "=ds=#s15#", "25 #eofheroism#"};
- Next = "EmblemofHeroism2";
- Back = "EMBLEMOFHEROISMMENU";
- };
-
- AtlasLoot_Data["EmblemofHeroism2"] = {
- { 1, 40711, "", "=q4=Idol of Lush Moss", "=ds=#w14#", "15 #eofheroism#"};
- { 2, 40712, "", "=q4=Idol of Steadfast Renewal", "=ds=#w14#", "15 #eofheroism#"};
- { 3, 40713, "", "=q4=Idol of the Ravenous Beast", "=ds=#w14#", "15 #eofheroism#"};
- { 4, 40707, "", "=q4=Libram of Obstruction", "=ds=#w16#", "15 #eofheroism#"};
- { 5, 40706, "", "=q4=Libram of Reciprocation", "=ds=#w16#", "15 #eofheroism#"};
- { 6, 40705, "", "=q4=Libram of Renewal", "=ds=#w16#", "15 #eofheroism#"};
- { 7, 40715, "", "=q4=Sigil of Haunted Dreams", "=ds=#w21#", "15 #eofheroism#"};
- { 8, 40714, "", "=q4=Sigil of the Unfaltering Knight", "=ds=#w21#", "15 #eofheroism#"};
- { 9, 40709, "", "=q4=Totem of Forest Growth", "=ds=#w15#", "15 #eofheroism#"};
- { 10, 40710, "", "=q4=Totem of Splintering", "=ds=#w15#", "15 #eofheroism#"};
- { 11, 40708, "", "=q4=Totem of the Elemental Plane", "=ds=#w15#", "15 #eofheroism#"};
- { 16, 40679, "", "=q4=Chained Military Gorget", "=ds=#s2#", "25 #eofheroism#"};
- { 17, 40680, "", "=q4=Encircling Burnished Gold Chains", "=ds=#s2#", "25 #eofheroism#"};
- { 18, 40681, "", "=q4=Lattice Choker of Light", "=ds=#s2#", "25 #eofheroism#"};
- { 19, 40678, "", "=q4=Pendant of the Outcast Hero", "=ds=#s2#", "25 #eofheroism#"};
- { 20, 40684, "", "=q4=Mirror of Truth", "=ds=#s14#", "40 #eofheroism#"};
- { 21, 40682, "", "=q4=Sundial of the Exiled", "=ds=#s14#", "40 #eofheroism#"};
- { 22, 40685, "", "=q4=The Egg of Mortal Essence", "=ds=#s14#", "40 #eofheroism#"};
- { 23, 40683, "", "=q4=Valor Medal of the First War", "=ds=#s14#", "40 #eofheroism#"};
- Prev = "EmblemofHeroism";
- Next = "EmblemofHeroism3";
- Back = "EMBLEMOFHEROISMMENU";
- };
-
- AtlasLoot_Data["EmblemofHeroism3"] = {
- { 1, 40610, "", "=q4=Chestguard of the Lost Conqueror", "=ds=#e15#", "80 #eofheroism#"};
- { 2, 40611, "", "=q4=Chestguard of the Lost Protector", "=ds=#e15#", "80 #eofheroism#"};
- { 3, 40612, "", "=q4=Chestguard of the Lost Vanquisher", "=ds=#e15#", "80 #eofheroism#"};
- { 5, 40613, "", "=q4=Gloves of the Lost Conqueror", "=ds=#e15#", "60 #eofheroism#"};
- { 6, 40614, "", "=q4=Gloves of the Lost Protector", "=ds=#e15#", "60 #eofheroism#"};
- { 7, 40615, "", "=q4=Gloves of the Lost Vanquisher", "=ds=#e15#", "60 #eofheroism#"};
- { 9, 44230, "", "=q4=Reins of the Wooly Mammoth", "=ds=#e12# =ec1=#m7#", "200 #eofheroism#"};
- { 10, 44231, "", "=q4=Reins of the Wooly Mammoth", "=ds=#e12# =ec1=#m6#", "200 #eofheroism#"};
+ {
+ Name = "Page 3";
+ { 1, 40610, "", "=q4=Chestguard of the Lost Conqueror", "=ds=#e15#", "80 #eofheroism#" };
+ { 2, 40611, "", "=q4=Chestguard of the Lost Protector", "=ds=#e15#", "80 #eofheroism#" };
+ { 3, 40612, "", "=q4=Chestguard of the Lost Vanquisher", "=ds=#e15#", "80 #eofheroism#" };
+ { 5, 40613, "", "=q4=Gloves of the Lost Conqueror", "=ds=#e15#", "60 #eofheroism#" };
+ { 6, 40614, "", "=q4=Gloves of the Lost Protector", "=ds=#e15#", "60 #eofheroism#" };
+ { 7, 40615, "", "=q4=Gloves of the Lost Vanquisher", "=ds=#e15#", "60 #eofheroism#" };
+ { 9, 44230, "", "=q4=Reins of the Wooly Mammoth", "=ds=#e12# =ec1=#m7#", "200 #eofheroism#" };
+ { 10, 44231, "", "=q4=Reins of the Wooly Mammoth", "=ds=#e12# =ec1=#m6#", "200 #eofheroism#" };
{ 16, 36919, "", "=q4=Cardinal Ruby", "=ds=#e7#", "20 #eofheroism#" };
{ 17, 36922, "", "=q4=King's Amber", "=ds=#e7#", "20 #eofheroism#" };
{ 18, 36925, "", "=q4=Majestic Zircon", "=ds=#e7#", "20 #eofheroism#" };
{ 19, 36931, "", "=q4=Ametrine", "=ds=#e7#", "10 #eofheroism#" };
{ 20, 36928, "", "=q4=Dreadstone", "=ds=#e7#", "10 #eofheroism#" };
{ 21, 36934, "", "=q4=Eye of Zul", "=ds=#e7#", "10 #eofheroism#" };
- { 23, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "10 #eofheroism#"};
- Prev = "EmblemofHeroism2";
- Next = "EmblemofHeroism4";
- Back = "EMBLEMOFHEROISMMENU";
+ { 23, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "10 #eofheroism#" };
};
-
- AtlasLoot_Data["EmblemofHeroism4"] = {
- { 1, 42985, "", "=q7=Tattered Dreadmist Mantle", "=ds=#s3#, #a1#", "40 #eofheroism#"};
- { 2, 42984, "", "=q7=Preened Ironfeather Shoulders", "=ds=#s3#, #a2#", "40 #eofheroism#"};
- { 3, 42952, "", "=q7=Stained Shadowcraft Spaulders", "=ds=#s3#, #a2#", "40 #eofheroism#"};
- { 4, 42950, "", "=q7=Champion Herod's Shoulder", "=ds=#s3#, #a3#", "40 #eofheroism#"};
- { 5, 42951, "", "=q7=Mystical Pauldrons of Elements", "=ds=#s3#, #a3#", "40 #eofheroism#"};
- { 6, 42949, "", "=q7=Polished Spaulders of Valor", "=ds=#s3#, #a4#", "40 #eofheroism#"};
- { 8, 48691, "", "=q7=Tattered Dreadmist Robe", "=ds=#s5#, #a1#", "40 #eofheroism#"};
- { 9, 48687, "", "=q7=Preened Ironfeather Breastplate", "=ds=#s5#, #a2#", "40 #eofheroism#"};
- { 10, 48689, "", "=q7=Stained Shadowcraft Tunic", "=ds=#s5#, #a2#", "40 #eofheroism#"};
- { 11, 48677, "", "=q7=Champion's Deathdealer Breastplate", "=ds=#s5#, #a3#", "40 #eofheroism#"};
- { 12, 48683, "", "=q7=Mystical Vest of Elements", "=ds=#s5#, #a3#", "40 #eofheroism#"};
- { 13, 48685, "", "=q7=Polished Breastplate of Valor", "=ds=#s5#, #a4#", "40 #eofheroism#"};
- { 16, 42992, "", "=q7=Discerning Eye of the Beast", "=ds=#s14#", "50 #eofheroism#"};
- { 17, 42991, "", "=q7=Swift Hand of Justice", "=ds=#s14#", "50 #eofheroism#"};
- { 19, 42944, "", "=q7=Balanced Heartseeker", "=ds=#w4#, #h1#", "40 #eofheroism#"};
- { 20, 42945, "", "=q7=Venerable Dal'Rend's Sacred Charge", "=ds=#w10#, #h3#", "40 #eofheroism#"};
- { 21, 42943, "", "=q7=Bloodied Arcanite Reaper", "=ds=#w1#, #h2#", "65 #eofheroism#"};
- { 22, 42948, "", "=q7=Devout Aurastone Hammer", "=ds=#w6#, #h3#", "50 #eofheroism#"};
- { 23, 48716, "", "=q7=Venerable Mass of McGowan", "=ds=#w6#, #h1#", "40 #eofheroism#"};
- { 24, 48718, "", "=q7=Repurposed Lava Dredger", "=ds=#w6#, #h2#", "65 #eofheroism#"};
- { 25, 42947, "", "=q7=Dignified Headmaster's Charge", "=ds=#w9#", "65 #eofheroism#"};
- { 26, 42946, "", "=q7=Charmed Ancient Bone Bow", "=ds=#w2#", "65 #eofheroism#"};
- Prev = "EmblemofHeroism3";
- Back = "EMBLEMOFHEROISMMENU";
+ {
+ Name = "Page 4";
+ { 1, 42985, "", "=q7=Tattered Dreadmist Mantle", "=ds=#s3#, #a1#", "40 #eofheroism#" };
+ { 2, 42984, "", "=q7=Preened Ironfeather Shoulders", "=ds=#s3#, #a2#", "40 #eofheroism#" };
+ { 3, 42952, "", "=q7=Stained Shadowcraft Spaulders", "=ds=#s3#, #a2#", "40 #eofheroism#" };
+ { 4, 42950, "", "=q7=Champion Herod's Shoulder", "=ds=#s3#, #a3#", "40 #eofheroism#" };
+ { 5, 42951, "", "=q7=Mystical Pauldrons of Elements", "=ds=#s3#, #a3#", "40 #eofheroism#" };
+ { 6, 42949, "", "=q7=Polished Spaulders of Valor", "=ds=#s3#, #a4#", "40 #eofheroism#" };
+ { 8, 48691, "", "=q7=Tattered Dreadmist Robe", "=ds=#s5#, #a1#", "40 #eofheroism#" };
+ { 9, 48687, "", "=q7=Preened Ironfeather Breastplate", "=ds=#s5#, #a2#", "40 #eofheroism#" };
+ { 10, 48689, "", "=q7=Stained Shadowcraft Tunic", "=ds=#s5#, #a2#", "40 #eofheroism#" };
+ { 11, 48677, "", "=q7=Champion's Deathdealer Breastplate", "=ds=#s5#, #a3#", "40 #eofheroism#" };
+ { 12, 48683, "", "=q7=Mystical Vest of Elements", "=ds=#s5#, #a3#", "40 #eofheroism#" };
+ { 13, 48685, "", "=q7=Polished Breastplate of Valor", "=ds=#s5#, #a4#", "40 #eofheroism#" };
+ { 16, 42992, "", "=q7=Discerning Eye of the Beast", "=ds=#s14#", "50 #eofheroism#" };
+ { 17, 42991, "", "=q7=Swift Hand of Justice", "=ds=#s14#", "50 #eofheroism#" };
+ { 19, 42944, "", "=q7=Balanced Heartseeker", "=ds=#w4#, #h1#", "40 #eofheroism#" };
+ { 20, 42945, "", "=q7=Venerable Dal'Rend's Sacred Charge", "=ds=#w10#, #h3#", "40 #eofheroism#" };
+ { 21, 42943, "", "=q7=Bloodied Arcanite Reaper", "=ds=#w1#, #h2#", "65 #eofheroism#" };
+ { 22, 42948, "", "=q7=Devout Aurastone Hammer", "=ds=#w6#, #h3#", "50 #eofheroism#" };
+ { 23, 48716, "", "=q7=Venerable Mass of McGowan", "=ds=#w6#, #h1#", "40 #eofheroism#" };
+ { 24, 48718, "", "=q7=Repurposed Lava Dredger", "=ds=#w6#, #h2#", "65 #eofheroism#" };
+ { 25, 42947, "", "=q7=Dignified Headmaster's Charge", "=ds=#w9#", "65 #eofheroism#" };
+ { 26, 42946, "", "=q7=Charmed Ancient Bone Bow", "=ds=#w2#", "65 #eofheroism#" };
};
+};
- -----------------------------
- --- Emblem of Valor Items ---
- -----------------------------
+-----------------------------
+--- Emblem of Valor Items ---
+-----------------------------
- AtlasLoot_Data["EmblemofValor"] = {
- { 1, 40724, "", "=q4=Cloak of Kea Feathers", "=ds=#s4#", "25 #eofvalor#"};
- { 2, 40723, "", "=q4=Disguise of the Kumiho", "=ds=#s4#", "25 #eofvalor#"};
- { 3, 40722, "", "=q4=Platinum Mesh Cloak", "=ds=#s4#", "25 #eofvalor#"};
- { 4, 40721, "", "=q4=Hammerhead Sharkskin Cloak", "=ds=#s4#", "25 #eofvalor#"};
- { 6, 40741, "", "=q4=Cuffs of the Shadow Ascendant", "=ds=#s8#, #a1#", "60 #eofvalor#"};
- { 7, 40740, "", "=q4=Wraps of the Astral Traveler", "=ds=#s8#, #a1#", "60 #eofvalor#"};
- { 8, 40751, "", "=q4=Slippers of the Holy Light", "=ds=#s12#, #a1#", "40 #eofvalor#"};
- { 9, 40750, "", "=q4=Xintor's Expeditionary Boots", "=ds=#s12#, #a1#", "40 #eofvalor#"};
- { 11, 40739, "", "=q4=Bands of the Great Tree", "=ds=#s8#, #a2#", "60 #eofvalor#"};
- { 12, 40738, "", "=q4=Wristwraps of the Cutthroat", "=ds=#s8#, #a2#", "60 #eofvalor#"};
- { 13, 40748, "", "=q4=Boots of Captain Ellis", "=ds=#s12#, #a2#", "40 #eofvalor#"};
- { 14, 40749, "", "=q4=Rainey's Chewed Boots", "=ds=#s12#, #a2#", "40 #eofvalor#"};
- { 16, 40736, "", "=q4=Armguard of the Tower Archer", "=ds=#s8#, #a3#", "60 #eofvalor#"};
- { 17, 40737, "", "=q4=Pigmented Clan Bindings", "=ds=#s8#, #a3#", "60 #eofvalor#"};
- { 18, 40746, "", "=q4=Pack-Ice Striders", "=ds=#s12#, #a3#", "40 #eofvalor#"};
- { 19, 40747, "", "=q4=Treads of Coastal Wandering", "=ds=#s12#, #a3#", "40 #eofvalor#"};
- { 21, 40734, "", "=q4=Bracers of Dalaran's Parapets", "=ds=#s8#, #a4#", "60 #eofvalor#"};
- { 22, 40733, "", "=q4=Wristbands of the Sentinel Huntress", "=ds=#s8#, #a4#", "60 #eofvalor#"};
- { 23, 40735, "", "=q4=Zartson's Jungle Vambraces", "=ds=#s8#, #a4#", "60 #eofvalor#"};
- { 24, 40742, "", "=q4=Bladed Steelboots", "=ds=#s12#, #a4#", "40 #eofvalor#"};
- { 25, 40743, "", "=q4=Kyzoc's Ground Stompers", "=ds=#s12#, #a4#", "40 #eofvalor#"};
- { 26, 40745, "", "=q4=Sabatons of Rapid Recovery", "=ds=#s12#, #a4#", "40 #eofvalor#"};
- Next = "EmblemofValor2";
- Back = "EMBLEMOFVALORMENU";
+AtlasLoot_Data["EmblemofValor"] = {
+ Name = AL["Emblem of Valor Rewards"];
+ {
+ Name = "Page 1";
+ { 1, 40724, "", "=q4=Cloak of Kea Feathers", "=ds=#s4#", "25 #eofvalor#" };
+ { 2, 40723, "", "=q4=Disguise of the Kumiho", "=ds=#s4#", "25 #eofvalor#" };
+ { 3, 40722, "", "=q4=Platinum Mesh Cloak", "=ds=#s4#", "25 #eofvalor#" };
+ { 4, 40721, "", "=q4=Hammerhead Sharkskin Cloak", "=ds=#s4#", "25 #eofvalor#" };
+ { 6, 40741, "", "=q4=Cuffs of the Shadow Ascendant", "=ds=#s8#, #a1#", "60 #eofvalor#" };
+ { 7, 40740, "", "=q4=Wraps of the Astral Traveler", "=ds=#s8#, #a1#", "60 #eofvalor#" };
+ { 8, 40751, "", "=q4=Slippers of the Holy Light", "=ds=#s12#, #a1#", "40 #eofvalor#" };
+ { 9, 40750, "", "=q4=Xintor's Expeditionary Boots", "=ds=#s12#, #a1#", "40 #eofvalor#" };
+ { 11, 40739, "", "=q4=Bands of the Great Tree", "=ds=#s8#, #a2#", "60 #eofvalor#" };
+ { 12, 40738, "", "=q4=Wristwraps of the Cutthroat", "=ds=#s8#, #a2#", "60 #eofvalor#" };
+ { 13, 40748, "", "=q4=Boots of Captain Ellis", "=ds=#s12#, #a2#", "40 #eofvalor#" };
+ { 14, 40749, "", "=q4=Rainey's Chewed Boots", "=ds=#s12#, #a2#", "40 #eofvalor#" };
+ { 16, 40736, "", "=q4=Armguard of the Tower Archer", "=ds=#s8#, #a3#", "60 #eofvalor#" };
+ { 17, 40737, "", "=q4=Pigmented Clan Bindings", "=ds=#s8#, #a3#", "60 #eofvalor#" };
+ { 18, 40746, "", "=q4=Pack-Ice Striders", "=ds=#s12#, #a3#", "40 #eofvalor#" };
+ { 19, 40747, "", "=q4=Treads of Coastal Wandering", "=ds=#s12#, #a3#", "40 #eofvalor#" };
+ { 21, 40734, "", "=q4=Bracers of Dalaran's Parapets", "=ds=#s8#, #a4#", "60 #eofvalor#" };
+ { 22, 40733, "", "=q4=Wristbands of the Sentinel Huntress", "=ds=#s8#, #a4#", "60 #eofvalor#" };
+ { 23, 40735, "", "=q4=Zartson's Jungle Vambraces", "=ds=#s8#, #a4#", "60 #eofvalor#" };
+ { 24, 40742, "", "=q4=Bladed Steelboots", "=ds=#s12#, #a4#", "40 #eofvalor#" };
+ { 25, 40743, "", "=q4=Kyzoc's Ground Stompers", "=ds=#s12#, #a4#", "40 #eofvalor#" };
+ { 26, 40745, "", "=q4=Sabatons of Rapid Recovery", "=ds=#s12#, #a4#", "40 #eofvalor#" };
};
-
- AtlasLoot_Data["EmblemofValor2"] = {
- { 1, 40719, "", "=q4=Band of Channeled Magic", "=ds=#s13#", "25 #eofvalor#"};
- { 2, 40720, "", "=q4=Renewal of Life", "=ds=#s13#", "25 #eofvalor#"};
- { 3, 40717, "", "=q4=Ring of Invincibility", "=ds=#s13#", "25 #eofvalor#"};
- { 4, 40718, "", "=q4=Signet of the Impregnable Fortress", "=ds=#s13#", "25 #eofvalor#"};
+ {
+ Name = "Page 2";
+ { 1, 40719, "", "=q4=Band of Channeled Magic", "=ds=#s13#", "25 #eofvalor#" };
+ { 2, 40720, "", "=q4=Renewal of Life", "=ds=#s13#", "25 #eofvalor#" };
+ { 3, 40717, "", "=q4=Ring of Invincibility", "=ds=#s13#", "25 #eofvalor#" };
+ { 4, 40718, "", "=q4=Signet of the Impregnable Fortress", "=ds=#s13#", "25 #eofvalor#" };
{ 6, 40342, "", "=q4=Idol of Awakening", "=ds=#s16#, #w14#", "25 #eofvalor#" };
{ 7, 40321, "", "=q4=Idol of the Shooting Star", "=ds=#s16#, #w14#", "25 #eofvalor#" };
{ 8, 39757, "", "=q4=Idol of Worship", "=ds=#s16#, #w14#", "25 #eofvalor#" };
@@ -11487,22 +10223,24 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 13, 40322, "", "=q4=Totem of Dueling", "=ds=#s16#, #w15#", "25 #eofvalor#" };
{ 14, 40267, "", "=q4=Totem of Hex", "=ds=#s16#, #w15#", "25 #eofvalor#" };
{ 15, 39728, "", "=q4=Totem of Misery", "=ds=#s16#, #w15#", "25 #eofvalor#" };
- { 16, 40637, "", "=q4=Mantle of the Lost Conqueror", "=ds=#e15#", "60 #eofvalor#"};
- { 17, 40638, "", "=q4=Mantle of the Lost Protector", "=ds=#e15#", "60 #eofvalor#"};
- { 18, 40639, "", "=q4=Mantle of the Lost Vanquisher", "=ds=#e15#", "60 #eofvalor#"};
- { 20, 40634, "", "=q4=Legplates of the Lost Conqueror", "=ds=#e15#", "75 #eofvalor#"};
- { 21, 40635, "", "=q4=Legplates of the Lost Protector", "=ds=#e15#", "75 #eofvalor#"};
- { 22, 40636, "", "=q4=Legplates of the Lost Vanquisher", "=ds=#e15#", "75 #eofvalor#"};
+ { 16, 40637, "", "=q4=Mantle of the Lost Conqueror", "=ds=#e15#", "60 #eofvalor#" };
+ { 17, 40638, "", "=q4=Mantle of the Lost Protector", "=ds=#e15#", "60 #eofvalor#" };
+ { 18, 40639, "", "=q4=Mantle of the Lost Vanquisher", "=ds=#e15#", "60 #eofvalor#" };
+ { 20, 40634, "", "=q4=Legplates of the Lost Conqueror", "=ds=#e15#", "75 #eofvalor#" };
+ { 21, 40635, "", "=q4=Legplates of the Lost Protector", "=ds=#e15#", "75 #eofvalor#" };
+ { 22, 40636, "", "=q4=Legplates of the Lost Vanquisher", "=ds=#e15#", "75 #eofvalor#" };
{ 24, 40752, "", "=q4=Emblem of Heroism", "=ds=#m17#", "1 #eofvalor#" };
- Prev = "EmblemofValor";
- Back = "EMBLEMOFVALORMENU";
};
+};
- --------------------------------
- --- Emblem of Conquest Items ---
- --------------------------------
+--------------------------------
+--- Emblem of Conquest Items ---
+--------------------------------
- AtlasLoot_Data["EmblemofConquest1"] = {
+AtlasLoot_Data["EmblemofConquest"] = {
+ Name = AL["Emblem of Conquest Rewards"];
+ {
+ Name = "Page 1";
{ 1, 45840, "", "=q4=Touch of the Occult", "=ds=#s9#, #a1#", "28 #eofconquest#" };
{ 2, 45831, "", "=q4=Sash of Potent Incantations", "=ds=#s10#, #a1#", "28 #eofconquest#" };
{ 3, 45848, "", "=q4=Legwraps of the Master Conjurer", "=ds=#s11#, #a1#", "39 #eofconquest#" };
@@ -11527,11 +10265,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 26, 45828, "", "=q4=Windchill Binding", "=ds=#s10#, #a3#", "28 #eofconquest#" };
{ 27, 45844, "", "=q4=Leggings of the Tireless Sentry", "=ds=#s11#, #a3#", "39 #eofconquest#" };
{ 28, 45845, "", "=q4=Leggings of the Weary Mystic", "=ds=#s11#, #a3#", "39 #eofconquest#" };
- Next = "EmblemofConquest2";
- Back = "EMBLEMOFCONQUESTMENU";
};
-
- AtlasLoot_Data["EmblemofConquest2"] = {
+ {
+ Name = "Page 2";
{ 1, 45820, "", "=q4=Broach of the Wailing Night", "=ds=#s2#", "19 #eofconquest#" };
{ 2, 45822, "", "=q4=Evoker's Charm", "=ds=#s2#", "19 #eofconquest#" };
{ 3, 45823, "", "=q4=Frozen Tear of Elune", "=ds=#s2#", "19 #eofconquest#" };
@@ -11556,15 +10292,17 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 26, 45169, "", "=q4=Totem of the Dancing Flame", "=ds=#s16#, #w15#", "19 #eofconquest#" };
{ 28, 40753, "", "=q4=Emblem of Valor", "=ds=#m17#", "1 #eofconquest#" };
{ 29, 45087, "", "=q3=Runed Orb", "=ds=#e6#", "18 #eofconquest#" };
- Prev = "EmblemofConquest1";
- Back = "EMBLEMOFCONQUESTMENU";
};
+};
- -------------------------------
- --- Emblem of Triumph Items ---
- -------------------------------
+-------------------------------
+--- Emblem of Triumph Items ---
+-------------------------------
- AtlasLoot_Data["EmblemofTriumph1_A"] = {
+AtlasLoot_Data["EmblemofTriumph"] = {
+ Name = AL["Emblem of Triumph Rewards"];
+ {
+ Name = "Page 1";
{ 2, 47694, "", "=q4=Helm of Clouded Sight", "=ds=#s1#, #a1#", "75 #eoftriumph#" };
{ 3, 47693, "", "=q4=Hood of Fiery Aftermath", "=ds=#s1#, #a1#", "75 #eoftriumph#" };
{ 4, 47713, "", "=q4=Mantle of Catastrophic Emanation", "=ds=#s3#, #a1#", "45 #eoftriumph#" };
@@ -11583,11 +10321,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 25, 47702, "", "=q4=Pauldrons of the Cavalier", "=ds=#s3#, #a4#", "45 #eoftriumph#" };
{ 26, 47697, "", "=q4=Pauldrons of Trembling Rage", "=ds=#s3#, #a4#", "45 #eoftriumph#" };
{ 27, 47698, "", "=q4=Shoulderplates of Enduring Order", "=ds=#s3#, #a4#", "45 #eoftriumph#" };
- Next = "EmblemofTriumph2";
- Back = "EMBLEMOFTRIUMPHMENU";
};
-
- AtlasLoot_Data["EmblemofTriumph1_H"] = {
+ {
+ Name = "Page 2";
{ 2, 47695, "", "=q4=Hood of Clouded Sight", "=ds=#s1#, #a1#", "75 #eoftriumph#" };
{ 3, 47692, "", "=q4=Hood of Smoldering Aftermath", "=ds=#s1#, #a1#", "75 #eoftriumph#" };
{ 4, 47714, "", "=q4=Pauldrons of Catastrophic Emanation", "=ds=#s3#, #a1#", "45 #eoftriumph#" };
@@ -11606,11 +10342,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 25, 47701, "", "=q4=Shoulderplates of the Cavalier", "=ds=#s3#, #a4#", "45 #eoftriumph#" };
{ 26, 47696, "", "=q4=Shoulderplates of Trembling Rage", "=ds=#s3#, #a4#", "45 #eoftriumph#" };
{ 27, 47699, "", "=q4=Shoulderguards of Enduring Order", "=ds=#s3#, #a4#", "45 #eoftriumph#" };
- Next = "EmblemofTriumph2";
- Back = "EMBLEMOFTRIUMPHMENU";
};
-
- AtlasLoot_Data["EmblemofTriumph2"] = {
+ {
+ Name = "Page 3";
{ 1, 47732, "", "=q4=Band of the Invoker", "=ds=#s13#", "35 #eoftriumph#" };
{ 2, 47729, "", "=q4=Bloodshed Band", "=ds=#s13#", "35 #eoftriumph#" };
{ 3, 47731, "", "=q4=Clutch of Fortification", "=ds=#s13#", "35 #eoftriumph#" };
@@ -11620,7 +10354,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 8, 47734, "", "=q4=Mark of Supremacy", "=ds=#s14#", "50 #eoftriumph#" };
{ 9, 48722, "", "=q4=Shard of the Crystal Heart", "=ds=#s14#", "50 #eoftriumph#" };
{ 10, 48724, "", "=q4=Talisman of Resurgence", "=ds=#s14#", "50 #eoftriumph#" };
- { 12, 47556, "", "=q3=Crusader Orb", "=ds=#e6#", "15 #eoftriumph#"};
+ { 12, 47556, "", "=q3=Crusader Orb", "=ds=#e6#", "15 #eoftriumph#" };
{ 16, 47671, "", "=q4=Idol of Flaring Growth", "=ds=#s16#, #w14#", "25 #eoftriumph#" };
{ 17, 47670, "", "=q4=Idol of Lunar Fury", "=ds=#s16#, #w14#", "25 #eoftriumph#" };
{ 18, 47668, "", "=q4=Idol of Mutilation", "=ds=#s16#, #w14#", "25 #eoftriumph#" };
@@ -11635,15 +10369,17 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 28, 47659, "", "=q4=Crimson Star", "=ds=#w11#", "25 #eoftriumph#" };
{ 29, 47660, "", "=q4=Blades of the Sable Cross", "=ds=#w11#", "25 #eoftriumph#" };
{ 30, 47658, "", "=q4=Brimstone Igniter", "=ds=#w12#", "25 #eoftriumph#" };
- Prev = "EmblemofTriumph1_A";
- Back = "EMBLEMOFTRIUMPHMENU";
};
+};
- -----------------------------
- --- Emblem of Frost Items ---
- -----------------------------
+-----------------------------
+--- Emblem of Frost Items ---
+-----------------------------
- AtlasLoot_Data["EmblemofFrost"] = {
+AtlasLoot_Data["EmblemofFrost"] = {
+ Name = AL["Emblem of Frost Rewards"];
+ {
+ Name = "Page 1";
{ 1, 50975, "", "=q4=Ermine Coronation Robes", "=ds=#s5#, #a1#", "95 #eoffrost#" };
{ 2, 50974, "", "=q4=Meteor Chaser's Raiment", "=ds=#s5#, #a1#", "95 #eoffrost#" };
{ 3, 50984, "", "=q4=Gloves of Ambivalence", "=ds=#s9#, #a1#", "60 #eoffrost#" };
@@ -11671,11 +10407,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 28, 50989, "", "=q4=Lich Killer's Lanyard", "=ds=#s10#, #a4#", "60 #eoffrost#" };
{ 29, 50987, "", "=q4=Malevolant Girdle", "=ds=#s10#, #a4#", "60 #eoffrost#" };
{ 30, 50991, "", "=q4=Verdigris Chain Belt", "=ds=#s10#, #a4#", "60 #eoffrost#" };
- Next = "EmblemofFrost2";
- Back = "SETMENUWRATH";
};
-
- AtlasLoot_Data["EmblemofFrost2"] = {
+ {
+ Name = "Page 2";
{ 1, 50468, "", "=q4=Drape of the Violet Tower", "=ds=#s4#", "50 #eoffrost#" };
{ 2, 50467, "", "=q4=Might of the Ocean Serpent", "=ds=#s4#", "50 #eoffrost#" };
{ 3, 50470, "", "=q4=Recovered Scarlet Onslaught Cape", "=ds=#s4#", "50 #eoffrost#" };
@@ -11699,6 +10433,5 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 25, 50463, "", "=q4=Totem of the Avalanche", "=ds=#s16#, #w15#", "30 #eoffrost#" };
{ 26, 50464, "", "=q4=Totem of the Surging Sea", "=ds=#s16#, #w15#", "30 #eoffrost#" };
{ 28, 50474, "", "=q4=Shrapnel Star", "=ds=#w11#", "30 #eoffrost#" };
- Prev = "EmblemofFrost";
- Back = "SETMENUWRATH";
- };
\ No newline at end of file
+ };
+};
diff --git a/README.md b/README.md
index f760060..71c2b0e 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,3 @@
# Atlas Loot
-This is the repository for Atlas Loot. Modified for Ascension.gg.
\ No newline at end of file
+This is the repository for Atlas Loot. Modified for Ascension.gg.