diff --git a/AtlasLoot/Core/AtlasDifficulty.lua b/AtlasLoot/Core/AtlasDifficulty.lua
index bc4b83e..adf3b8a 100644
--- a/AtlasLoot/Core/AtlasDifficulty.lua
+++ b/AtlasLoot/Core/AtlasDifficulty.lua
@@ -88,7 +88,7 @@ AtlasLoot_Difficulty = {
["Crafting"] = {
{"Crafting Patterns", "" },
- {"Item Normal", "=s=Normal" },
+ {"Item Normal", 2 },
{"Bloodforged", 1 },
};
diff --git a/AtlasLoot/Core/AtlasLoot.lua b/AtlasLoot/Core/AtlasLoot.lua
index 5549fb4..ceebd91 100644
--- a/AtlasLoot/Core/AtlasLoot.lua
+++ b/AtlasLoot/Core/AtlasLoot.lua
@@ -14,7 +14,6 @@ AtlasLoot_OnLoad()
AtlasLootBoss_OnClick()
AtlasLoot_ShowItemsFrame()
AtlasLoot_GenerateAtlasMenu(dataID, pFrame)
-AtlasLootOptions_ItemAutoQuery()
AtlasLoot_SetItemInfoFrame()
AtlasLootItemsFrame_OnCloseButton()
AtlasLootMenuItem_OnClick()
@@ -28,12 +27,13 @@ AtlasLoot_AddTooltip(frameb, tooltiptext)
AL_FindId(name, difficulty)
]]
-AtlasLoot = LibStub("AceAddon-3.0"):NewAddon("AtlasLoot");
+AtlasLoot = LibStub("AceAddon-3.0"):NewAddon("AtlasLoot", "AceTimer-3.0");
--Instance required libraries
local BabbleBoss = AtlasLoot_GetLocaleLibBabble("LibBabble-Boss-3.0")
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
+
--Establish version number and compatible version of Atlas
local VERSION_MAJOR = "5";
local VERSION_MINOR = "11";
@@ -206,12 +206,6 @@ function AtlasLoot_OnVariablesLoaded()
if not AtlasLootCharDB["WishList"] then AtlasLootCharDB["WishList"] = {} end
if not AtlasLootCharDB["QuickLooks"] then AtlasLootCharDB["QuickLooks"] = {} end
if not AtlasLootCharDB["SearchResult"] then AtlasLootCharDB["SearchResult"] = {} end
- AtlasLoot.db.profile.LastBoss = "EmptyTable";
- if AtlasLoot_TableNames then
- AtlasLoot_TableNames["EmptyTable"] = { AL["Select a Loot Table..."], "Menu" };
- AtlasLoot_TableNames["EmptyInstance"] = { "AtlasLoot", "AtlasLootFallback" };
- AtlasLoot_TableNames["AtlasLootFallback"] = { "AtlasLoot", "AtlasLootFallback" };
- end
if AtlasLoot_Data then
AtlasLoot_Data["EmptyTable"] = {
Name = AL["Select a Loot Table..."];
@@ -389,7 +383,6 @@ function AtlasLoot_Reset(data)
AtlasFrame:Hide();
end
if data == "frames" then
- AtlasLoot.db.profile.LastBoss = "EmptyTable";
AtlasLootDefaultFrame:ClearAllPoints();
AtlasLootDefaultFrame:SetPoint("CENTER", "UIParent", "CENTER", 0, 0);
if AtlasLootFu then
@@ -400,16 +393,13 @@ function AtlasLoot_Reset(data)
AtlasLoot.db.profile.LootBrowserScale = 1.0;
AtlasLoot_UpdateLootBrowserScale();
elseif data == "quicklooks" then
- AtlasLoot.db.profile.LastBoss = "EmptyTable";
AtlasLootCharDB["QuickLooks"] = {};
AtlasLoot_RefreshQuickLookButtons();
elseif data == "wishlist" then
- AtlasLoot.db.profile.LastBoss = "EmptyTable";
AtlasLootCharDB["WishList"] = {};
AtlasLootCharDB["SearchResult"] = {};
AtlasLootCharDB.LastSearchedText = "";
elseif data == "all" then
- AtlasLoot.db.profile.LastBoss = "EmptyTable";
AtlasLootDefaultFrame:ClearAllPoints();
AtlasLootDefaultFrame:SetPoint("CENTER", "UIParent", "CENTER", 0, 0);
if AtlasLootFu then
@@ -490,21 +480,67 @@ function AtlasLoot_OnLoad()
end
function AtlasLoot_CleandataID(newID, listnum)
- local cleanlist = { [1] = {"CLASSIC", "TBC", "WRATH", "1", "2", "3", "4", "5", "6", "7", "8"},
- [2] = {"1", "2", "3", "4", "5", "6", "7", "8"}
- };
+ local cleanlist = { [1] = {"CLASSIC", "TBC", "WRATH"} };
for i = 1, #cleanlist[listnum] do
newID = gsub(newID, cleanlist[listnum][i], "");
end
return newID;
end
+--Creates tables for raid tokens from the collections tables
+function Atlasloot_CreateToken(dataID)
+ local itemType, slotType, itemName, itemType2
+ --orginal dataID
+ local orgID = dataID;
+ --list of item types to find
+ local names = { {"HEAD", "INVTYPE_HEAD", "Head"}, {"SHOULDER", "INVTYPE_SHOULDER", "Shoulders"}, {"CHEST", "INVTYPE_CHEST", "Chest", "INVTYPE_ROBE"}, {"WRIST", "INVTYPE_WRIST", "Wrists"}, {"HAND", "INVTYPE_HAND", "Hands"}, {"WAIST", "INVTYPE_WAIST", "Waist"}, {"LEGS", "INVTYPE_LEGS", "Legs"}, {"FEET", "INVTYPE_FEET", "Feet"}, {"FINGER", "INVTYPE_FINGER", "Rings"}};
+ --finds the item type to create a list of
+ for a, b in pairs(names) do
+ dataID = gsub(dataID, b[1], "");
+ slotType = gsub(orgID, dataID, "");
+ if slotType == b[1] then
+ itemType = b[2];
+ itemType2 = b[4];
+ itemName = b[3];
+ end
+ end
+ --Creates data set of the item type
+ AtlasLoot_Data[orgID] = {};
+ local newData = AtlasLoot_Data[orgID];
+ newData.Name = itemName;
+ newData.Type = AtlasLoot_Data[dataID].Type;
+ newData.Back = true;
+ newData[1] = {};
+ newData[1].Name = itemName;
+ --used to refresh the page after its loaded all the items
+ function AtlasLoot:callShowloot()
+ AtlasLoot_ShowItemsFrame(AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3], AtlasLootItemsFrame.refresh[4], AtlasLootItemsFrame.refresh[5])
+ end
+ --Adds all the items to the new data set
+ --Uses a timer so that AtlasLoot:callShowloot() only fires once after all then items have been loaded
+ for i, v in ipairs(AtlasLoot_Data[dataID]) do
+ for t, id in ipairs(v) do
+ local itemID = id[2];
+ local item = Item:CreateFromID(itemID);
+ item:ContinueOnLoad(function(itemID)
+ AtlasLoot:CancelTimer(AtlasLoot.refreshTimer);
+ if itemType == select(9,GetItemInfo(itemID)) or itemType2 == select(9,GetItemInfo(itemID)) then
+ local newTable = rawset(id, 1, i);
+ table.insert(newData[1],newTable);
+ end
+ AtlasLoot.refreshTimer = AtlasLoot:ScheduleTimer("callShowloot", .5);
+ end)
+ end
+ end
+end
+
--[[
AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame):
dataID - Name of the loot table
dataSource - Table in the database where the loot table is stored
boss - Text string to use as a title for the loot page
pFrame - Data structure describing how and where to anchor the item frame (more details, see the function AtlasLoot_SetItemInfoFrame)
+tablenum - Table number of the loot table being displayed
This fuction is not normally called directly, it is usually invoked by AtlasLoot_ShowBossLoot.
It is the workhorse of the mod and allows the loot tables to be displayed any way anywhere in any mod.
]]
@@ -531,7 +567,6 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame, tablenum)
--Hide Advanced search if it is up and reshow Querybutton
AtlasLootAdvancedSearch:Hide();
- AtlasLootServerQueryButton:Show();
--Ditch the Quicklook selector
AtlasLoot_QuickLooks:Hide();
@@ -652,8 +687,8 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame, tablenum)
--Store data about the state of the items frame to allow minor tweaks or a recall of the current loot page
AtlasLootItemsFrame.refresh = {dataID, dataSource_backup, boss, pFrame, tablenum};
- if dataID ~= "FilterList" then
- AtlasLootItemsFrame.refreshOri = {dataID, dataSource_backup, boss, pFrame, tablenum}
+ if dataID ~= "FilterList" and dataSource[dataID].Back ~= true then
+ AtlasLootItemsFrame.refreshOri = {dataID, dataSource_backup, boss, pFrame, tablenum};
end
--Insert the item description
@@ -775,32 +810,29 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame, tablenum)
end
AtlasLootItemsFrame.refresh = {dataID, dataSource_backup, boss, pFrame, tablenum};
- if dataID ~= "FilterList" then
+ if dataID ~= "FilterList" and dataSource[dataID].Back ~= true then
AtlasLootItemsFrame.refreshOri = {dataID, dataSource_backup, boss, pFrame, tablenum};
+ AtlasLoot.db.profile.LastBoss = {dataID, dataSource_backup, boss, pFrame, tablenum, ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE};
end
- --If the item is not in cache, querying the server may cause a disconnect
- --Show a red box around the item to indicate this to the user
- --((dataSource[dataID][i][2] ~= 0) and (not GetItemInfo(dataSource[dataID][i][2]))
- for i = 1, 30, 1 do
- itemID = getglobal("AtlasLootItem_"..i).itemID;
- if itemID and itemID ~= 0 and (string.sub(itemID, 1, 1) ~= "s") then
- if GetItemInfo(itemID) then
- getglobal("AtlasLootItem_"..i.."_Unsafe"):Hide();
- else
- getglobal("AtlasLootItem_"..i.."_Unsafe"):Show();
- end
- else
- getglobal("AtlasLootItem_"..i.."_Unsafe"):Hide();
- end
- end
-
--This is a valid QuickLook, so show the UI objects
AtlasLoot_QuickLooks:Show();
AtlasLootQuickLooksButton:Show();
+ -- Checks dataID with submenus to stop filter button loading on certain tables
+ 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;
+ end
+ end
+ end
+ end
+
-- Show the Filter Check-Box
- if dataID ~= "WishList" and dataID ~= "SearchResult" and dataSource[dataID].NoFilter ~= true then
+ if dataID ~= "WishList" and dataID ~= "SearchResult" and filterCheck(dataID) ~= true then
AtlasLootFilterCheck:Show();
end
@@ -809,8 +841,10 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame, tablenum)
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
- AtlasLoot_BossName:SetText(dataSource[dataID][tablenum].Name);
- AtlasLootDefaultFrame_SubMenu:SetText(dataSource[dataID].Name);
+ if dataID ~= "FilterList" then
+ AtlasLoot_BossName:SetText(dataSource[dataID][tablenum].Name);
+ AtlasLootDefaultFrame_SubMenu:SetText(dataSource[dataID].Name);
+ end
--Consult the button registry to determine what nav buttons are required
if dataID == "SearchResult" or dataID == "WishList" then
@@ -823,11 +857,11 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame, tablenum)
getglobal("AtlasLootItemsFrame_PREV").lootpage = dataID.."Page"..(wlPage - 1);
end
else
- local tablebase = dataID;
+ local tablebase = dataID;
if ATLASLOOT_FILTER_ENABLE and dataID == "FilterList" then
tablebase = AtlasLootItemsFrame.refreshOri[1];
end
-
+
if tablenum + 1 ~= AtlasLoot_GetNumOfRows(dataSource[tablebase]) then
getglobal("AtlasLootItemsFrame_NEXT"):Show();
getglobal("AtlasLootItemsFrame_NEXT").lootpage = tablebase;
@@ -838,11 +872,10 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame, tablenum)
getglobal("AtlasLootItemsFrame_PREV").lootpage = tablebase;
getglobal("AtlasLootItemsFrame_PREV").tablenum = tablenum - 1;
end
---[[ if tablebase.Back then
+ if dataSource[tablebase].Back then
getglobal("AtlasLootItemsFrame_BACK"):Show();
- getglobal("AtlasLootItemsFrame_BACK").lootpage = tablebase.Back;
end
- ]] end
+ end
end
--Anchor the item frame where it is supposed to be
@@ -850,7 +883,9 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame, tablenum)
if ATLASLOOT_FILTER_ENABLE and dataID ~= "FilterList" then
AtlasLoot_HideNoUsableItems();
end
- if AtlasLoot.db.profile.ItemAutoQuery then AtlasLoot_QueryLootPage(); end
+
+ AtlasLoot_QueryLootPage();
+
end
--[[
@@ -915,7 +950,6 @@ Called when <-, -> are pressed and calls up the appropriate loot page
function AtlasLoot_NavButton_OnClick()
local tabelname = this.lootpage;
local tablenum = this.tablenum;
- local filtercheck = false;
if AtlasLootItemsFrame.refresh and AtlasLootItemsFrame.refresh[4] and AtlasLootItemsFrame.refresh[5] then
if strsub(tabelname, 1, 16) == "SearchResultPage" then
@@ -937,22 +971,7 @@ AtlasLoot_NavButton_OnClick:
Called when 'Back'Button is pressed and calls up the appropriate loot page
]]
function AtlasLoot_BackButton_OnClick()
- if AtlasLootItemsFrame.refresh and AtlasLootItemsFrame.refresh[4] then
- if strsub(this.lootpage, 1, 16) == "SearchResultPage" then
- AtlasLoot_ShowItemsFrame("SearchResult", this.lootpage, (AL["Search Result: %s"]):format(AtlasLootCharDB.LastSearchedText or ""), AtlasLootItemsFrame.refresh[4]);
- elseif strsub(this.lootpage, 1, 12) == "WishListPage" then
- AtlasLoot_ShowItemsFrame("WishList", this.lootpage, AL["Wishlist"], AtlasLootItemsFrame.refresh[4]);
- elseif AtlasLoot_Hold == true then
- AtlasLoot_ShowItemsFrame(AtlasLoot_Lastboss, AtlasLootItemsFrame.refresh[2], "", AtlasLootItemsFrame.refresh[4]);
- -- Lets AtlasLoot_Lastboss be updated after going back to main table
- AtlasLoot_Hold = false;
- else
- AtlasLoot_ShowItemsFrame(this.lootpage, AtlasLootItemsFrame.refresh[2], "", AtlasLootItemsFrame.refresh[4]);
- end
- else
- --Fallback for if the requested loot page is a menu and does not have a .refresh instance
- AtlasLoot_ShowItemsFrame(this.lootpage, "", "", AtlasFrame);
- end
+ AtlasLoot_ShowItemsFrame(AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4], AtlasLootItemsFrame.refreshOri[5]);
end
--[[
@@ -960,16 +979,17 @@ AtlasLoot_IsLootTableAvailable(dataID):
Checks if a loot table is in memory and attempts to load the correct LoD module if it isn't
dataID: Loot table dataID
]]
-function AtlasLoot_IsLootTableAvailable(dataID,dataSource)
+function AtlasLoot_IsLootTableAvailable(dataSource)
local moduleName=nil;
moduleName = AtlasLoot_GetLODModule(dataSource);
- if AtlasLoot_Data[dataID] then
+ if IsAddOnLoaded(moduleName) then
return true;
else
- if moduleName then
+ LoadAddOn(moduleName);
+ --[[ if moduleName then
if not IsAddOnLoaded(moduleName) then
loaded, reason=LoadAddOn(moduleName);
if not loaded then
@@ -982,7 +1002,7 @@ function AtlasLoot_IsLootTableAvailable(dataID,dataSource)
end
end
end
- --[[ if AtlasLoot_Data[dataID] then
+ if AtlasLoot_Data[dataID] then
if ATLASLOOT_DEBUGMESSAGES then
DEFAULT_CHAT_FRAME:AddMessage(GREEN..AL["AtlasLoot"]..": "..ORANGE..moduleName..WHITE.." "..AL["sucessfully loaded."]);
end
@@ -991,11 +1011,11 @@ function AtlasLoot_IsLootTableAvailable(dataID,dataSource)
else
DEFAULT_CHAT_FRAME:AddMessage(RED..AL["AtlasLoot Error!"].." "..ORANGE..AtlasLoot_TableNames[dataID][1]..WHITE..AL[" could not be accessed, the following module may be out of date: "]..ORANGE..moduleName);
return false;
- end ]]
+ end
else
DEFAULT_CHAT_FRAME:AddMessage(RED..AL["AtlasLoot Error!"].." "..ORANGE..AL["Loot module returned as nil!"]);
return false;
- end
+ end ]]
end
end
@@ -1074,7 +1094,7 @@ function AtlasLoot_ShowQuickLooks(button)
"tooltipTitle", AL["QuickLook"].." 1",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 1",
"func", function()
- AtlasLootCharDB["QuickLooks"][1]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4], AtlasLootItemsFrame.refreshOri[5]};
+ AtlasLootCharDB["QuickLooks"][1]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4], AtlasLootItemsFrame.refreshOri[5], ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE};
AtlasLoot_RefreshQuickLookButtons();
dewdrop:Close(1);
end
@@ -1084,7 +1104,7 @@ function AtlasLoot_ShowQuickLooks(button)
"tooltipTitle", AL["QuickLook"].." 2",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 2",
"func", function()
- AtlasLootCharDB["QuickLooks"][2]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4], AtlasLootItemsFrame.refreshOri[5]};
+ AtlasLootCharDB["QuickLooks"][2]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4], AtlasLootItemsFrame.refreshOri[5], ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE};
AtlasLoot_RefreshQuickLookButtons();
dewdrop:Close(1);
end
@@ -1094,7 +1114,7 @@ function AtlasLoot_ShowQuickLooks(button)
"tooltipTitle", AL["QuickLook"].." 3",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 3",
"func", function()
- AtlasLootCharDB["QuickLooks"][3]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4], AtlasLootItemsFrame.refreshOri[5]};
+ AtlasLootCharDB["QuickLooks"][3]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4], AtlasLootItemsFrame.refreshOri[5], ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE};
AtlasLoot_RefreshQuickLookButtons();
dewdrop:Close(1);
end
@@ -1104,7 +1124,7 @@ function AtlasLoot_ShowQuickLooks(button)
"tooltipTitle", AL["QuickLook"].." 4",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 4",
"func", function()
- AtlasLootCharDB["QuickLooks"][4]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4], AtlasLootItemsFrame.refreshOri[5]};
+ AtlasLootCharDB["QuickLooks"][4]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4], AtlasLootItemsFrame.refreshOri[5], ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE};
AtlasLoot_RefreshQuickLookButtons();
dewdrop:Close(1);
end
@@ -1142,19 +1162,16 @@ AtlasLoot_QueryLootPage()
Querys all valid items on the current loot page.
]]
function AtlasLoot_QueryLootPage()
- i=1;
- local querytime = 0;
- local now = 0;
- while i<31 do
- now = GetTime();
- if now - querytime > 0.01 then
- querytime = GetTime();
- button = getglobal("AtlasLootItem_"..i);
- queryitem = button.itemID;
- if (queryitem) and (queryitem ~= nil) and (queryitem ~= "") and (queryitem ~= 0) and (string.sub(queryitem, 1, 1) ~= "s") then
- AtlasLootTooltip:SetHyperlink("item:"..queryitem..":0:0:0:0:0:0:0");
- end
- i=i+1;
+ for i = 1, 30, 1 do
+ button = getglobal("AtlasLootItem_"..i);
+ 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);
+ item:ContinueOnLoad(function(itemId)
+ if item:GetInfo() then
+ AtlasLootTooltip:SetHyperlink("item:"..itemId..":0:0:0:0:0:0:0");
+ end
+ end)
end
end
end
diff --git a/AtlasLoot/Core/AtlasLoot.xml b/AtlasLoot/Core/AtlasLoot.xml
index 6632109..8f7071e 100644
--- a/AtlasLoot/Core/AtlasLoot.xml
+++ b/AtlasLoot/Core/AtlasLoot.xml
@@ -481,43 +481,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
- this:SetText(AL["Query Server"]);
- this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
-
-
- local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
- GameTooltip:ClearLines();
- GameTooltip:SetOwner(this, "ANCHOR_RIGHT", -(this:GetWidth() / 2), 5);
- GameTooltip:AddLine("|cffff0000"..AL["Query Server"]);
- GameTooltip:AddLine(AL["Queries the server for all items"]);
- GameTooltip:AddLine(AL["on this page. The items will be"]);
- GameTooltip:AddLine(AL["refreshed when you next mouse"]);
- GameTooltip:AddLine(AL["over them. |cffff0000 (Includes Bloodforged)"]);
- GameTooltip:Show();
-
-
- GameTooltip:Hide();
-
-
- GameTooltip:Hide();
- AtlasLoot_QueryLootPage();
-
-
-
@@ -763,24 +726,6 @@
-
-
-
-
-
-
-
-
-
-
- local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
- getglobal(this:GetName().."Text"):SetText("Swap Subtable/Difficuilty Menus");
-
-
- AtlasLootOptions_SubtablePositionToggle();
-
-
-
@@ -863,26 +808,6 @@
-
-
-
-
-
-
-
-
-
-
-
- local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
- getglobal(this:GetName().."Text"):SetText(AL["Auto Query items on page load"]);
-
-
- AtlasLootOptions_ItemAutoQuery();
-
-
-
-
diff --git a/AtlasLoot/Core/ItemIDsDatabaseFixes.lua b/AtlasLoot/Core/ItemIDsDatabaseFixes.lua
index 84d7ce0..b219aaf 100644
--- a/AtlasLoot/Core/ItemIDsDatabaseFixes.lua
+++ b/AtlasLoot/Core/ItemIDsDatabaseFixes.lua
@@ -4,10 +4,12 @@ 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, 100174, 222589};
-ItemIDsDatabase[22632] = {6022632, 22632, 22632, 222632};
-ItemIDsDatabase[22631] = {6022631, 22631, 22631, 222631};
-ItemIDsDatabase[22630] = {6022630, 22630, 22630, 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};
@@ -69,3 +71,11 @@ ItemIDsDatabase[30249] = {30249, 30249, 330249, 230249};
ItemIDsDatabase[30237] = {30237, 30237, 330237, 230237};
ItemIDsDatabase[30240] = {30240, 30240, 330240, 230240};
ItemIDsDatabase[30246] = {30246, 30246, 30246, 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};
diff --git a/AtlasLoot/Core/LootButtons.lua b/AtlasLoot/Core/LootButtons.lua
index 36377b9..5f3ff05 100644
--- a/AtlasLoot/Core/LootButtons.lua
+++ b/AtlasLoot/Core/LootButtons.lua
@@ -265,8 +265,10 @@ function AtlasLootItem_OnClick(arg1)
end
elseif (arg1=="LeftButton") and this.sourcePage ~= nil then
--Holds AtlasLoot_Lastboss so back button works
- AtlasLoot_Hold = true;
- AtlasLoot_ShowBossLoot(this.sourcePage, this.sourcePage, pFrame);
+ if AtlasLoot_Data[this.sourcePage] == nil then
+ Atlasloot_CreateToken(this.sourcePage)
+ end
+ AtlasLoot_ShowItemsFrame(this.sourcePage, "",this.sourcePage, pFrame,1);
end
else
if IsShiftKeyDown() then
diff --git a/AtlasLoot/Core/Options.lua b/AtlasLoot/Core/Options.lua
index 2d5ed43..103e336 100644
--- a/AtlasLoot/Core/Options.lua
+++ b/AtlasLoot/Core/Options.lua
@@ -13,7 +13,6 @@ AtlasLootOptions_EquipCompareToggle()
AtlasLootOptions_OpaqueToggle()
AtlasLootOptions_ItemIDToggle()
AtlasLootOptions_ItemSpam()
-AtlasLootOptions_ItemAutoQuery()
AtlasLootOptions_MinimapToggle()
AtlasLootOptions_LoDSpam()
AtlasLootOptions_LoDStartup()
@@ -46,10 +45,8 @@ function AtlasLootOptions_Init()
AtlasLootOptionsFrameLootlinkTT:SetChecked(AtlasLoot.db.profile.LootlinkTT);
AtlasLootOptionsFrameItemSyncTT:SetChecked(AtlasLoot.db.profile.ItemSyncTT);
AtlasLootOptionsFrameEquipCompare:SetChecked(AtlasLoot.db.profile.EquipCompare);
- AtlasLootOptionsFrameItemAutoQuery:SetChecked(AtlasLoot.db.profile.ItemAutoQuery);
AtlasLootOptionsFrameOpaque:SetChecked(AtlasLoot.db.profile.Opaque);
AtlasLootOptionsFrameItemID:SetChecked(AtlasLoot.db.profile.ItemIDs);
- AtlasLootOptionsFrameSubtablePosition:SetChecked(AtlasLoot.db.profile.SubtablePosition);
AtlasLootOptionsFrameItemSpam:SetChecked(AtlasLoot.db.profile.ItemSpam);
AtlasLootOptionsFrameLoDStartup:SetChecked(AtlasLoot.db.profile.LoadAllLoDStartup);
AtlasLootOptionsFrameHidePanel:SetChecked(AtlasLoot.db.profile.HidePanel);
@@ -122,15 +119,6 @@ function AtlasLootOptions_ItemSpam()
AtlasLootOptions_Init();
end
-function AtlasLootOptions_ItemAutoQuery()
- if (AtlasLoot.db.profile.ItemAutoQuery) then
- AtlasLoot.db.profile.ItemAutoQuery = false;
- else
- AtlasLoot.db.profile.ItemAutoQuery = true;
- end
- AtlasLootOptions_Init();
-end
-
function AtlasLootOptions_LoDStartup()
if (AtlasLoot.db.profile.LoadAllLoDStartup) then
AtlasLoot.db.profile.LoadAllLoDStartup = false;
@@ -235,7 +223,6 @@ function AtlasLoot_CreateOptionsInfoTooltips()
AtlasLoot_AddTooltip("AtlasLootOptionsFrameHidePanel", nil) -- AL["Hide AtlasLoot Panel"]
AtlasLoot_AddTooltip("AtlasLootOptionsFrameItemSpam", nil) -- AL["Suppress Item Query Text"]
AtlasLoot_AddTooltip("AtlasLootOptionsFrameLoDSpam", nil) -- AL["Notify on LoD Module Load"]
- AtlasLoot_AddTooltip("AtlasLootOptionsFrameItemAutoQuery", nil) -- AL["Auto Query items on page load"]
AtlasLoot_AddTooltip("AtlasLootOptionsFrameLootBrowserScale", nil) -- Scale SLIDER
AtlasLoot_AddTooltip("AtlasLootOptionsFrame_ResetAtlasLoot", nil) -- AL["Reset Frames"]
AtlasLoot_AddTooltip("AtlasLootOptionsFrame_ResetWishlist", nil) -- AL["Reset Wishlist"]
@@ -243,7 +230,6 @@ function AtlasLoot_CreateOptionsInfoTooltips()
AtlasLoot_AddTooltip("AtlasLootOptionsFrame_FuBarShow", nil) -- AL["Show FuBar Plugin"]
AtlasLoot_AddTooltip("AtlasLootOptionsFrame_FuBarHide", nil) -- AL["Hide FuBar Plugin"]
AtlasLoot_AddTooltip("AtlasLoot_SelectLootBrowserStyle", nil)
- --AtlasLoot_AddTooltip("AtlasLoot_SelectMythicPlussTier", nil)
end
function AtlasLoot_OptionsOnShow()
@@ -255,10 +241,6 @@ function AtlasLoot_OptionsOnShow()
UIDropDownMenu_Initialize(AtlasLoot_CraftingLink, AtlasLoot_CraftingLink_Initialize);
UIDropDownMenu_SetSelectedID(AtlasLoot_CraftingLink, AtlasLoot.db.profile.CraftingLink);
UIDropDownMenu_SetWidth(AtlasLoot_CraftingLink, 150);
- -- AtlasLoot_SelectMythicPlussTier_Label:SetText(AL["Select Mythic Pluss Tier:"]);
- -- UIDropDownMenu_Initialize(AtlasLoot_SelectMythicPlussTier, AtlasLoot_SelectMythicPlussTier_Initialize);
- -- UIDropDownMenu_SetSelectedID(AtlasLoot_SelectMythicPlussTier, AtlasLoot.db.profile.MythicPlussTier);
- -- UIDropDownMenu_SetWidth(AtlasLoot_SelectMythicPlussTier, 150);
end
function AtlasLoot_SelectLootBrowserStyle_Initialize()
@@ -306,35 +288,11 @@ function AtlasLoot_CraftingLink_OnClick()
UIDropDownMenu_SetSelectedID(AtlasLoot_CraftingLink, thisID);
AtlasLoot.db.profile.CraftingLink = thisID;
if AtlasLootItemsFrame:IsVisible() and AtlasLootItemsFrame.refresh then
- AtlasLoot_ShowItemsFrame(AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3], AtlasLootItemsFrame.refresh[4]);
+ AtlasLoot_ShowItemsFrame(AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3], AtlasLootItemsFrame.refresh[4], AtlasLootItemsFrame.refresh[5]);
end
AtlasLoot_OptionsOnShow();
end
--- function AtlasLoot_SelectMythicPlussTier_Initialize()
- -- local info;
-
- -- for t = 0, 10, 1 do
- -- info = {
- -- text = AL["Mythic Tier "..t];
- -- func = AtlasLoot_MythicPlussTier_OnClick;
- -- };
- -- UIDropDownMenu_AddButton(info);
- -- end
-
--- end
-
--- function AtlasLoot_MythicPlussTier_OnClick()
- -- local thisID = this:GetID();
- -- UIDropDownMenu_SetSelectedID(AtlasLoot_SelectMythicPlussTier, thisID);
- -- AtlasLoot.db.profile.MythicPlussTier = thisID;
- -- if AtlasLootItemsFrame:IsVisible() and AtlasLootItemsFrame.refresh then
- -- Mythic_Reload();
- -- AtlasLoot_ShowItemsFrame(AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3], AtlasLootItemsFrame.refresh[4]);
- -- end
- -- AtlasLoot_OptionsOnShow();
--- end
-
local Authors = {
["Calî"] = "Arthas",
["Lâg"] = "Arthas",
@@ -347,9 +305,9 @@ function AtlasLoot_UnitTarget()
local name = GameTooltip:GetUnit()
if UnitName("mouseover") == name then
local _, realm = UnitName("mouseover")
- if not realm then
+ if not realm then
realm = GetRealmName()
- end;
+ 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 )
diff --git a/AtlasLoot/Core/Search.lua b/AtlasLoot/Core/Search.lua
index ab83557..35758c1 100644
--- a/AtlasLoot/Core/Search.lua
+++ b/AtlasLoot/Core/Search.lua
@@ -676,29 +676,31 @@ local function DoSearch(searchText)
local difficulty = TermsContainDifficulty(searchTerms);
for dataID, data in pairs(AtlasLoot_Data) do
- for _, v in ipairs(data) do
- local _, itemId, itemType, atlasName = unpack(v)
+ for _, datatable in pairs(data) do
+ for _, v in ipairs(datatable) do
+ local _, itemId, itemType, atlasName = unpack(v)
- if type(itemId) == "number" and itemId > 0 then
- if difficulty ~= 2 then
- itemId = AL_FindId(itemId, difficulty) or itemId;
- end
+ if type(itemId) == "number" and itemId > 0 then
+ if difficulty ~= 2 then
+ itemId = AL_FindId(itemId, difficulty) or itemId;
+ end
- local itemDetails = {GetItemDetails(itemId, atlasName)};
- itemDetails[8] = difficulty;
+ local itemDetails = {GetItemDetails(itemId, atlasName)};
+ itemDetails[8] = difficulty;
- if #searchTerms == 1 and searchTerms[1].name then
- if nameMatches(atlasName, searchTerms[1].name) then
+ if #searchTerms == 1 and searchTerms[1].name then
+ if nameMatches(atlasName, searchTerms[1].name) then
+ AddItemToSearchResult(itemId, itemType, atlasName, dataID);
+ end
+ elseif ItemMatchesAllTerms(searchTerms, itemDetails) then
AddItemToSearchResult(itemId, itemType, atlasName, dataID);
end
- elseif ItemMatchesAllTerms(searchTerms, itemDetails) then
- AddItemToSearchResult(itemId, itemType, atlasName, dataID);
- end
- elseif not equipableFilterOn and itemId and itemId ~= "" and string.sub(itemId, 1, 1) == "s" then
- local spellName = GetSpellName(itemId, atlasName)
- if nameMatches(spellName, searchText) then
- spellName = string.sub(atlasName, 1, 4) .. spellName;
- AddItemToSearchResult(itemId, itemType, spellName, dataID)
+ elseif not equipableFilterOn and itemId and itemId ~= "" and string.sub(itemId, 1, 1) == "s" then
+ local spellName = GetSpellName(itemId, atlasName)
+ if nameMatches(spellName, searchText) then
+ spellName = string.sub(atlasName, 1, 4) .. spellName;
+ AddItemToSearchResult(itemId, itemType, spellName, dataID)
+ end
end
end
end
diff --git a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua
index 0479d77..2d51935 100644
--- a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua
+++ b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua
@@ -33,47 +33,6 @@ AtlasLoot_Data["AtlasLootFallback"] = {
EmptyInstance = {};
};
---[[
-AtlasLoot_DewDropClick(tablename, text, tabletype):
-tablename - Name of the loot table in the database
-text - Heading for the loot table
-Called when a button in AtlasLoot_Dewdrop is clicked
-]]
-function AtlasLoot_DewDropClick(tablename, text, tablenum)
- ATLASLOOT_FILTER_ENABLE = false;
- AtlasLootFilterCheck:SetChecked(false);
- AltasLoot_CurrentTable = tablename;
- tablename = tablename .. AtlasLoot_Expac;
- AtlasLootDefaultFrame_Menu:SetText(text);
- AtlasLoot_IsLootTableAvailable(tablename,AtlasLoot_SubMenus[tablename].Module);
- AtlasLoot_DewdropSubMenu:Unregister(AtlasLootDefaultFrame_SubMenu);
- AtlasLoot_DewdropSubMenuRegister(AtlasLoot_SubMenus[tablename]);
- if AtlasLoot_SubMenus[tablename].AutoLoad then
- AtlasLoot_DewDropSubMenuClick(AtlasLoot_SubMenus[tablename][1][2])
- end
- AtlasLoot_Dewdrop:Close(1);
-end
-
---[[
-AtlasLoot_DewDropSubMenuClick(tablename, text):
-tablename - Name of the loot table in the database
-text - Heading for the loot table
-Called when a button in AtlasLoot_DewdropSubMenu is clicked
-]]
-function AtlasLoot_DewDropSubMenuClick(tablename, text)
- --Definition of where I want the loot table to be shown
- pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
- --Show the select loot table
- local tablenum = AtlasLoot_Data[tablename].Loadfirst or 1;
- ItemindexID = ItemindexID or 2;
- AtlasLoot_ShowItemsFrame(tablename, AtlasLoot_Data, AtlasLoot_Data[tablename][tablenum].Name, pFrame, tablenum);
- AtlasLootDefaultFrame_SubTableScrollFrameUpdate(tablename, AtlasLoot_Data, pFrame, tablenum);
- --Save needed info for fuure re-display of the table
- AtlasLoot.db.profile.LastBoss = {tablename, AtlasLoot_Data, AtlasLoot_Data[tablename][tablenum].Name, pFrame, tablenum};
- --Show the table that has been selected
- AtlasLoot_DewdropSubMenu:Close(1);
-end
-
--[[
AtlasLootDefaultFrame_OnShow:
Called whenever the loot browser is shown and sets up buttons and loot tables
@@ -86,18 +45,23 @@ function AtlasLootDefaultFrame_OnShow()
if AtlasFrame then
AtlasFrame:Hide();
end
-
--Remove the selection of a loot table in Atlas
AtlasLootItemsFrame.activeBoss = nil;
--Set the item table to the loot table
AtlasLoot_SetItemInfoFrame(pFrame);
--Show the last displayed loot table
local lastboss = AtlasLoot.db.profile.LastBoss;
- if AtlasLoot_IsLootTableAvailable(lastboss[2]) then
- AtlasLoot_ShowItemsFrame(lastboss[1], lastboss[2], lastboss[3], lastboss[4], lastboss[5]);
- else
- AtlasLoot_ShowItemsFrame("EmptyTable", "",AL["Select a Loot Table..."], pFrame);
- end
+ if lastboss then
+ ATLASLOOT_CURRENTTABLE = lastboss[7];
+ ATLASLOOT_LASTMODULE = lastboss[6];
+ AtlasLoot_IsLootTableAvailable(lastboss[6]);
+ AtlasLoot_ShowItemsFrame(lastboss[1], AtlasLoot_Data, AtlasLoot_Data[lastboss[1]][lastboss[5]].Name, pFrame, lastboss[5]);
+ AtlasLootDefaultFrame_SubTableScrollFrameUpdate(lastboss[1], AtlasLoot_Data, pFrame, lastboss[5]);
+ AtlasLoot_DewdropSubMenu:Unregister(AtlasLootDefaultFrame_SubMenu);
+ AtlasLoot_DewdropSubMenuRegister(AtlasLoot_SubMenus[lastboss[7]]);
+ else
+ AtlasLoot_ShowItemsFrame("EmptyTable", AtlasLoot_Data, AtlasLoot_Data["EmptyTable"].Name,pFrame,1);
+ end
end
--[[
@@ -111,13 +75,60 @@ function AtlasLootDefaultFrame_OnHide()
AtlasLoot_DewdropExpansionMenu:Close(1);
end
+--[[
+AtlasLoot_DewDropClick(tablename, text, tabletype):
+tablename - Name of the loot table in the database
+text - Heading for the loot table
+Called when a button in AtlasLoot_Dewdrop is clicked
+]]
+function AtlasLoot_DewDropClick(tablename, text, tablenum)
+ ATLASLOOT_FILTER_ENABLE = false;
+ AtlasLootFilterCheck:SetChecked(false);
+ tablename = tablename .. AtlasLoot_Expac;
+ ATLASLOOT_CURRENTTABLE = tablename;
+ tablenum = tablenum or 1;
+ ATLASLOOT_LASTMODULE = AtlasLoot_SubMenus[tablename].Module;
+ AtlasLootDefaultFrame_Menu:SetText(text);
+ AtlasLoot_IsLootTableAvailable(AtlasLoot_SubMenus[tablename].Module);
+ AtlasLoot_DewdropSubMenu:Unregister(AtlasLootDefaultFrame_SubMenu);
+ AtlasLoot_DewdropSubMenuRegister(AtlasLoot_SubMenus[tablename]);
+ AtlasLoot_DewDropSubMenuClick(AtlasLoot_SubMenus[tablename][tablenum][2])
+ AtlasLoot_Dewdrop:Close(1);
+end
+
+--[[
+AtlasLoot_DewDropSubMenuClick(tablename, text):
+tablename - Name of the loot table in the database
+text - Heading for the loot table
+Called when a button in AtlasLoot_DewdropSubMenu is clicked
+]]
+function AtlasLoot_DewDropSubMenuClick(tablename)
+ --Definition of where I want the loot table to be shown
+ pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
+ --Show the select loot table
+ local tablenum = AtlasLoot_Data[tablename].Loadfirst or 1;
+ ItemindexID = ItemindexID or 2;
+ AtlasLoot_ShowItemsFrame(tablename, AtlasLoot_Data, AtlasLoot_Data[tablename][tablenum].Name, pFrame, tablenum);
+ AtlasLootDefaultFrame_SubTableScrollFrameUpdate(tablename, AtlasLoot_Data, pFrame, tablenum);
+ --Save needed info for fuure re-display of the table
+ -- AtlasLoot.db.profile.LastBoss = {tablename, AtlasLoot_Data, AtlasLoot_Data[tablename][tablenum].Name, pFrame, tablenum, ATLASLOOT_LASTMODULE, ATLASLOOT_CURRENTTABLE};
+ --Show the table that has been selected
+ AtlasLoot_DewdropSubMenu:Close(1);
+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
+]]
function AtlasLoot_DewdropExpansionMenuClick(expansion, name)
AtlasLootDefaultFrame_ExpansionMenu:SetText(name);
AtlasLoot_DewdropExpansionMenu:Close(1);
AtlasLoot_Expac = expansion;
- if AltasLoot_CurrentTable then
- local tablename = AltasLoot_CurrentTable .. AtlasLoot_Expac;
- AtlasLoot_IsLootTableAvailable(tablename,AtlasLoot_SubMenus[tablename].Module);
+ if ATLASLOOT_CURRENTTABLE then
+ local tablename = AtlasLoot_CleandataID(ATLASLOOT_CURRENTTABLE, 1) .. AtlasLoot_Expac;
+ AtlasLoot_IsLootTableAvailable(AtlasLoot_SubMenus[tablename].Module);
AtlasLoot_DewdropSubMenu:Unregister(AtlasLootDefaultFrame_SubMenu);
AtlasLoot_DewdropSubMenuRegister(AtlasLoot_SubMenus[tablename]);
end
@@ -188,6 +199,7 @@ function AtlasLoot_DewdropSubMenuRegister(loottable)
'func', AtlasLoot_DewDropSubMenuClick,
'arg1', v[2],
'arg2', v[1],
+ 'arg2', v[3],
'notCheckable', true
)
else
@@ -228,18 +240,18 @@ function AtlasLoot_DewdropRegister()
if AtlasLoot_Modules then
for k,v in ipairs(AtlasLoot_Modules) do
--If a link to show a submenu
- local checked = false;
- AtlasLoot_Dewdrop:AddLine(
- 'text', v[1],
- 'textR', 1,
- 'textG', 0.82,
- 'textB', 0,
- 'func', AtlasLoot_DewDropClick,
- 'arg1', v[2],
- 'arg2', v[1],
- 'arg3', k,
- 'notCheckable', true
- )
+ local checked = false;
+ AtlasLoot_Dewdrop:AddLine(
+ 'text', v[1],
+ 'textR', 1,
+ 'textG', 0.82,
+ 'textB', 0,
+ 'func', AtlasLoot_DewDropClick,
+ 'arg1', v[2],
+ 'arg2', v[1],
+ 'arg3', v[3],
+ 'notCheckable', true
+ )
end
end
--Close button
diff --git a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua
index 344657a..40ea04c 100644
--- a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua
+++ b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua
@@ -1,11 +1,12 @@
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
-
+
--Main AtlasLoot Frame
local mainframe = CreateFrame("FRAME", "AtlasLootDefaultFrame", UIParent, nil);
mainframe:SetPoint("CENTER",0,0);
mainframe:SetSize(880,690);
mainframe:EnableMouse(true);
mainframe:SetMovable(1);
+ mainframe:SetFrameStrata("HIGH");
mainframe:SetBackdropColor(0.75,0,0,0.75);
mainframe:RegisterForDrag("LeftButton");
mainframe:SetMovable(true);
@@ -20,7 +21,6 @@ local mainframe = CreateFrame("FRAME", "AtlasLootDefaultFrame", UIParent, nil);
titleSize = 32,
});
mainframe:SetScript("OnShow", function()
- local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
getglobal("AtlasLootDefaultFrame_Notice"):SetText(AL["This is a loot browser only. To view maps as well, install either Atlas or Alphamap."]);
AtlasLootDefaultFrame_OnShow();
end);
@@ -71,7 +71,7 @@ local optionsbtn = CreateFrame("Button", "AtlasLootDefaultFrame_Options", AtlasL
--Moduel Menu Button
local menubtn = CreateFrame("Button", "AtlasLootDefaultFrame_Menu", AtlasLootDefaultFrame, "OptionsButtonTemplate");
- menubtn:SetSize(179,25);
+ menubtn:SetSize(174,25);
menubtn:SetPoint("TOPLEFT", AtlasLootDefaultFrame, "TOPLEFT",38,-55);
menubtn.Lable = menubtn:CreateFontString("AtlasLootDefaultFrame_SelectedCategory", "OVERLAY","GameFontNormal")
menubtn.Lable:SetPoint("TOP",menubtn,"BOTTOM",0,37);
@@ -91,8 +91,8 @@ local menubtn = CreateFrame("Button", "AtlasLootDefaultFrame_Menu", AtlasLootDef
--SubMenu Button
local submenubtn = CreateFrame("Button", "AtlasLootDefaultFrame_SubMenu", AtlasLootDefaultFrame, "OptionsButtonTemplate");
- submenubtn:SetSize(179,25);
- submenubtn:SetPoint("LEFT", "AtlasLootDefaultFrame_Menu", "RIGHT",5,0);
+ submenubtn:SetSize(200,25);
+ submenubtn:SetPoint("LEFT", "AtlasLootDefaultFrame_Menu", "RIGHT",0,0);
submenubtn.Lable = submenubtn:CreateFontString("AtlasLootDefaultFrame_SelectedTable", "OVERLAY","GameFontNormal")
submenubtn.Lable:SetPoint("TOP",submenubtn,"BOTTOM",0,37);
submenubtn.Lable:SetText("Select Subcategory");
@@ -111,8 +111,8 @@ local submenubtn = CreateFrame("Button", "AtlasLootDefaultFrame_SubMenu", AtlasL
--Expansion Menu Button
local expansionmenubtn = CreateFrame("Button", "AtlasLootDefaultFrame_ExpansionMenu", AtlasLootDefaultFrame, "OptionsButtonTemplate");
- expansionmenubtn:SetSize(179,25);
- expansionmenubtn:SetPoint("LEFT", "AtlasLootDefaultFrame_SubMenu", "RIGHT",5,0);
+ expansionmenubtn:SetSize(174,25);
+ expansionmenubtn:SetPoint("LEFT", "AtlasLootDefaultFrame_SubMenu", "RIGHT",0,0);
expansionmenubtn:SetText(AtlasLoot_ExpansionMenu[GetAccountExpansionLevel()+1][1]);
expansionmenubtn.Lable = expansionmenubtn:CreateFontString("AtlasLootDefaultFrame_SelectedTable2", "OVERLAY","GameFontNormal")
expansionmenubtn.Lable:SetPoint("TOP",expansionmenubtn,"BOTTOM",0,37);
@@ -145,7 +145,6 @@ local wishbtn = CreateFrame("Button", "AtlasLootDefaultFrameWishListButton", Atl
wishbtn:SetSize(105,20);
wishbtn:SetScript("OnClick", function(self)AtlasLoot_ShowWishListDropDown("","","","","",self,true) end);
wishbtn:SetScript("OnShow", function(self)
- local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
self:SetText(AL["Wishlist"]);
self:SetFrameLevel( (self:GetParent()):GetFrameLevel() + 1 );
end);
@@ -167,14 +166,15 @@ local function presetcreate(preset,num)
end
end);
preset:SetScript("OnClick", function()
- if AtlasLoot_IsLootTableAvailable(AtlasLootCharDB["QuickLooks"][num][1]) then
+ if AtlasLoot_IsLootTableAvailable(AtlasLootCharDB["QuickLooks"][num][6]) then
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
+ ATLASLOOT_LASTMODULE = AtlasLootCharDB["QuickLooks"][num][6];
+ ATLASLOOT_CURRENTTABLE = AtlasLootCharDB["QuickLooks"][num][7];
AtlasLootDefaultFrame_SubTableScrollFrameUpdate(AtlasLootCharDB["QuickLooks"][num][1], AtlasLootCharDB["QuickLooks"][num][2], pFrame, AtlasLootCharDB["QuickLooks"][num][5])
AtlasLoot_ShowItemsFrame(AtlasLootCharDB["QuickLooks"][num][1], AtlasLootCharDB["QuickLooks"][num][2], AtlasLootCharDB["QuickLooks"][num][3], pFrame, AtlasLootCharDB["QuickLooks"][num][5]);
end
end);
preset:SetScript("OnShow", function(self)
- local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
self:SetText(AL["QuickLook"].." "..num);
self:SetFrameLevel( (self:GetParent()):GetFrameLevel() + 1 );
if ((not AtlasLootCharDB["QuickLooks"][num]) or (not AtlasLootCharDB["QuickLooks"][num][1])) or (AtlasLootCharDB["QuickLooks"][num][1]==nil) then
@@ -218,7 +218,6 @@ local searchbtn = CreateFrame("Button","AtlasLootDefaultFrameSearchButton",Atlas
searchbtn:SetSize(69,32);
searchbtn:SetPoint("LEFT","AtlasLootDefaultFrameSearchBox","RIGHT",2,0);
searchbtn:SetScript("OnShow", function(self)
- local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
self:SetText(AL["Search"]);
self:SetFrameLevel( (self:GetParent()):GetFrameLevel() + 1 );
end);
@@ -243,7 +242,6 @@ local searchclear = CreateFrame("Button","AtlasLootDefaultFrameSearchClearButton
searchclear:SetSize(58,32);
searchclear:SetPoint("LEFT",AtlasLootDefaultFrameSearchOptionsButton,"RIGHT",-2,0);
searchclear:SetScript("OnShow", function(self)
- local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
self:SetText(AL["Clear"]);
self:SetFrameLevel( (self:GetParent()):GetFrameLevel() + 1 );
end);
@@ -256,8 +254,7 @@ local searchclear = CreateFrame("Button","AtlasLootDefaultFrameSearchClearButton
local lastresult = CreateFrame("Button","AtlasLootDefaultFrameLastResultButton",AtlasLootDefaultFrameSearchBox,"UIPanelButtonTemplate2");
lastresult:SetSize(100,32);
lastresult:SetPoint("LEFT",AtlasLootDefaultFrameSearchClearButton,"RIGHT",1,0);
- lastresult:SetScript("OnShow", function(self)
- local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
+ lastresult:SetScript("OnShow", function(self)
self:SetText(AL["Last Result"]);
self:SetFrameLevel( (self:GetParent()):GetFrameLevel() + 1 );
end);
@@ -267,8 +264,7 @@ local lastresult = CreateFrame("Button","AtlasLootDefaultFrameLastResultButton",
local advSearch = CreateFrame("Button","AtlasLootDefaultFrameAdvancedSearchButton", AtlasLootDefaultFrame,"UIPanelButtonTemplate2");
advSearch:SetSize(95,32);
advSearch:SetPoint("LEFT",AtlasLootDefaultFrameLastResultButton,"RIGHT",2);
- advSearch:SetScript("OnShow", function(self)
- local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
+ advSearch:SetScript("OnShow", function(self)
self:SetText("Advanced");
self:SetFrameLevel( (self:GetParent()):GetFrameLevel() + 1 );
end)
@@ -346,7 +342,7 @@ local rows = setmetatable({}, { __index = function(t, i)
row:SetCheckedTexture("Interface\\QuestFrame\\UI-QuestTitleHighlight", "ADD");
row:SetScript("OnClick", function()
ItemindexID = row.itemIndex;
- AtlasLoot_ShowItemsFrame(AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], AtlasLootItemsFrame.refreshOri[4], AtlasLootItemsFrame.refreshOri[5]);
+ AtlasLoot_ShowItemsFrame(AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3], AtlasLootItemsFrame.refresh[4], AtlasLootItemsFrame.refresh[5]);
AtlasLootDefaultFrame_ScrollFrameUpdate();
end)
if i == 1 then
@@ -372,7 +368,7 @@ local subtableFrame = CreateFrame("Frame", "Atlasloot_SubTableFrame", AtlasLootD
edgeFile = "Interface\\Tooltips\\UI-Tooltip-Border", edgeSize = 16,
insets = { left = 4, right = 4, top = 4, bottom = 4 },
});
-
+
function AtlasLootDefaultFrame_SubTableScrollFrameUpdate(tablename, dataSource, pFrame, currenttablenum)
if dataSource ~= nil then
local maxValue = AtlasLoot_GetNumOfRows(dataSource[tablename]);
@@ -408,13 +404,13 @@ local scrollSlider2 = CreateFrame("ScrollFrame","AtlasLootDefaultFrameSubTableSc
self.offset = math.floor(offset / ROW_HEIGHT + 0.5)
AtlasLootDefaultFrame_SubTableScrollFrameUpdate(subtableFrame.tablename);
end)
-
+
scrollSlider2:SetScript("OnShow", function()
AtlasLootDefaultFrame_SubTableScrollFrameUpdate(subtableFrame.tablename);
end)
-
+
subtableFrame.scrollBar = scrollSlider2
-
+
local rows2 = setmetatable({}, { __index = function(t, i)
local row = CreateFrame("CheckButton", "$parentRow"..i, subtableFrame)
row:SetSize(150, ROW_HEIGHT)
@@ -423,7 +419,6 @@ local rows2 = setmetatable({}, { __index = function(t, i)
row:SetScript("OnClick", function()
AtlasLootDefaultFrame_SubTableScrollFrameUpdate(row.tablename, row.dataSource, row.pFrame, row.tablenum);
AtlasLoot_ShowItemsFrame(row.tablename, row.dataSource, row.dataSource[row.tablename][row.tablenum].Name, row.pFrame, row.tablenum);
- AtlasLoot.db.profile.LastBoss = {row.tablename, row.dataSource, row.dataSource[row.tablename][row.tablenum].Name, row.pFrame, row.tablenum};
end)
if i == 1 then
row:SetPoint("TOPLEFT", subtableFrame, 8, -8)
@@ -434,5 +429,5 @@ local rows2 = setmetatable({}, { __index = function(t, i)
rawset(t, i, row)
return row
end })
-
+
subtableFrame.rows = rows2
diff --git a/AtlasLoot/Libs/AceTimer-3.0/AceTimer-3.0.lua b/AtlasLoot/Libs/AceTimer-3.0/AceTimer-3.0.lua
new file mode 100644
index 0000000..c376f16
--- /dev/null
+++ b/AtlasLoot/Libs/AceTimer-3.0/AceTimer-3.0.lua
@@ -0,0 +1,473 @@
+--- **AceTimer-3.0** provides a central facility for registering timers.
+-- AceTimer supports one-shot timers and repeating timers. All timers are stored in an efficient
+-- data structure that allows easy dispatching and fast rescheduling. Timers can be registered, rescheduled
+-- or canceled at any time, even from within a running timer, without conflict or large overhead.\\
+-- AceTimer is currently limited to firing timers at a frequency of 0.1s. This constant may change
+-- in the future, but for now it seemed like a good compromise in efficiency and accuracy.
+--
+-- All `:Schedule` functions will return a handle to the current timer, which you will need to store if you
+-- need to cancel or reschedule the timer you just registered.
+--
+-- **AceTimer-3.0** can be embeded into your addon, either explicitly by calling AceTimer:Embed(MyAddon) or by
+-- specifying it as an embeded library in your AceAddon. All functions will be available on your addon object
+-- and can be accessed directly, without having to explicitly call AceTimer itself.\\
+-- It is recommended to embed AceTimer, otherwise you'll have to specify a custom `self` on all calls you
+-- make into AceTimer.
+-- @class file
+-- @name AceTimer-3.0
+-- @release $Id: AceTimer-3.0.lua 895 2009-12-06 16:28:55Z nevcairiel $
+
+--[[
+ Basic assumptions:
+ * In a typical system, we do more re-scheduling per second than there are timer pulses per second
+ * Regardless of timer implementation, we cannot guarantee timely delivery due to FPS restriction (may be as low as 10)
+
+ This implementation:
+ CON: The smallest timer interval is constrained by HZ (currently 1/10s).
+ PRO: It will still correctly fire any timer slower than HZ over a length of time, e.g. 0.11s interval -> 90 times over 10 seconds
+ PRO: In lag bursts, the system simly skips missed timer intervals to decrease load
+ CON: Algorithms depending on a timer firing "N times per minute" will fail
+ PRO: (Re-)scheduling is O(1) with a VERY small constant. It's a simple linked list insertion in a hash bucket.
+ CAUTION: The BUCKETS constant constrains how many timers can be efficiently handled. With too many hash collisions, performance will decrease.
+
+ Major assumptions upheld:
+ - ALLOWS scheduling multiple timers with the same funcref/method
+ - ALLOWS scheduling more timers during OnUpdate processing
+ - ALLOWS unscheduling ANY timer (including the current running one) at any time, including during OnUpdate processing
+]]
+
+local MAJOR, MINOR = "AceTimer-3.0", 5
+local AceTimer, oldminor = LibStub:NewLibrary(MAJOR, MINOR)
+
+if not AceTimer then return end -- No upgrade needed
+
+AceTimer.hash = AceTimer.hash or {} -- Array of [0..BUCKET-1] = linked list of timers (using .next member)
+ -- Linked list gets around ACE-88 and ACE-90.
+AceTimer.selfs = AceTimer.selfs or {} -- Array of [self]={[handle]=timerobj, [handle2]=timerobj2, ...}
+AceTimer.frame = AceTimer.frame or CreateFrame("Frame", "AceTimer30Frame")
+
+-- Lua APIs
+local assert, error, loadstring = assert, error, loadstring
+local setmetatable, rawset, rawget = setmetatable, rawset, rawget
+local select, pairs, type, next, tostring = select, pairs, type, next, tostring
+local floor, max, min = math.floor, math.max, math.min
+local tconcat = table.concat
+
+-- WoW APIs
+local GetTime = GetTime
+
+-- Global vars/functions that we don't upvalue since they might get hooked, or upgraded
+-- List them here for Mikk's FindGlobals script
+-- GLOBALS: DEFAULT_CHAT_FRAME, geterrorhandler
+
+-- Simple ONE-SHOT timer cache. Much more efficient than a full compost for our purposes.
+local timerCache = nil
+
+--[[
+ Timers will not be fired more often than HZ-1 times per second.
+ Keep at intended speed PLUS ONE or we get bitten by floating point rounding errors (n.5 + 0.1 can be n.599999)
+ If this is ever LOWERED, all existing timers need to be enforced to have a delay >= 1/HZ on lib upgrade.
+ If this number is ever changed, all entries need to be rehashed on lib upgrade.
+ ]]
+local HZ = 11
+
+--[[
+ Prime for good distribution
+ If this number is ever changed, all entries need to be rehashed on lib upgrade.
+]]
+local BUCKETS = 131
+
+local hash = AceTimer.hash
+for i=1,BUCKETS do
+ hash[i] = hash[i] or false -- make it an integer-indexed array; it's faster than hashes
+end
+
+--[[
+ xpcall safecall implementation
+]]
+local xpcall = xpcall
+
+local function errorhandler(err)
+ return geterrorhandler()(err)
+end
+
+local function CreateDispatcher(argCount)
+ local code = [[
+ local xpcall, eh = ... -- our arguments are received as unnamed values in "..." since we don't have a proper function declaration
+ local method, ARGS
+ local function call() return method(ARGS) end
+
+ local function dispatch(func, ...)
+ method = func
+ if not method then return end
+ ARGS = ...
+ return xpcall(call, eh)
+ end
+
+ return dispatch
+ ]]
+
+ local ARGS = {}
+ for i = 1, argCount do ARGS[i] = "arg"..i end
+ code = code:gsub("ARGS", tconcat(ARGS, ", "))
+ return assert(loadstring(code, "safecall Dispatcher["..argCount.."]"))(xpcall, errorhandler)
+end
+
+local Dispatchers = setmetatable({}, {
+ __index=function(self, argCount)
+ local dispatcher = CreateDispatcher(argCount)
+ rawset(self, argCount, dispatcher)
+ return dispatcher
+ end
+})
+Dispatchers[0] = function(func)
+ return xpcall(func, errorhandler)
+end
+
+local function safecall(func, ...)
+ return Dispatchers[select('#', ...)](func, ...)
+end
+
+local lastint = floor(GetTime() * HZ)
+
+-- --------------------------------------------------------------------
+-- OnUpdate handler
+--
+-- traverse buckets, always chasing "now", and fire timers that have expired
+
+local function OnUpdate()
+ local now = GetTime()
+ local nowint = floor(now * HZ)
+
+ -- Have we passed into a new hash bucket?
+ if nowint == lastint then return end
+
+ local soon = now + 1 -- +1 is safe as long as 1 < HZ < BUCKETS/2
+
+ -- Pass through each bucket at most once
+ -- Happens on e.g. instance loads, but COULD happen on high local load situations also
+ for curint = (max(lastint, nowint - BUCKETS) + 1), nowint do -- loop until we catch up with "now", usually only 1 iteration
+ local curbucket = (curint % BUCKETS)+1
+ -- Yank the list of timers out of the bucket and empty it. This allows reinsertion in the currently-processed bucket from callbacks.
+ local nexttimer = hash[curbucket]
+ hash[curbucket] = false -- false rather than nil to prevent the array from becoming a hash
+
+ while nexttimer do
+ local timer = nexttimer
+ nexttimer = timer.next
+ local when = timer.when
+
+ if when < soon then
+ -- Call the timer func, either as a method on given object, or a straight function ref
+ local callback = timer.callback
+ if type(callback) == "string" then
+ safecall(timer.object[callback], timer.object, timer.arg)
+ elseif callback then
+ safecall(callback, timer.arg)
+ else
+ -- probably nilled out by CancelTimer
+ timer.delay = nil -- don't reschedule it
+ end
+
+ local delay = timer.delay -- NOW make a local copy, can't do it earlier in case the timer cancelled itself in the callback
+
+ if not delay then
+ -- single-shot timer (or cancelled)
+ AceTimer.selfs[timer.object][tostring(timer)] = nil
+ timerCache = timer
+ else
+ -- repeating timer
+ local newtime = when + delay
+ if newtime < now then -- Keep lag from making us firing a timer unnecessarily. (Note that this still won't catch too-short-delay timers though.)
+ newtime = now + delay
+ end
+ timer.when = newtime
+
+ -- add next timer execution to the correct bucket
+ local bucket = (floor(newtime * HZ) % BUCKETS) + 1
+ timer.next = hash[bucket]
+ hash[bucket] = timer
+ end
+ else -- if when>=soon
+ -- reinsert (yeah, somewhat expensive, but shouldn't be happening too often either due to hash distribution)
+ timer.next = hash[curbucket]
+ hash[curbucket] = timer
+ end -- if whenhandle->timer registry
+ local handle = tostring(timer)
+
+ local selftimers = AceTimer.selfs[self]
+ if not selftimers then
+ selftimers = {}
+ AceTimer.selfs[self] = selftimers
+ end
+ selftimers[handle] = timer
+ selftimers.__ops = (selftimers.__ops or 0) + 1
+
+ return handle
+end
+
+--- Schedule a new one-shot timer.
+-- The timer will fire once in `delay` seconds, unless canceled before.
+-- @param callback Callback function for the timer pulse (funcref or method name).
+-- @param delay Delay for the timer, in seconds.
+-- @param arg An optional argument to be passed to the callback function.
+-- @usage
+-- MyAddon = LibStub("AceAddon-3.0"):NewAddon("TimerTest", "AceTimer-3.0")
+--
+-- function MyAddon:OnEnable()
+-- self:ScheduleTimer("TimerFeedback", 5)
+-- end
+--
+-- function MyAddon:TimerFeedback()
+-- print("5 seconds passed")
+-- end
+function AceTimer:ScheduleTimer(callback, delay, arg)
+ return Reg(self, callback, delay, arg)
+end
+
+--- Schedule a repeating timer.
+-- The timer will fire every `delay` seconds, until canceled.
+-- @param callback Callback function for the timer pulse (funcref or method name).
+-- @param delay Delay for the timer, in seconds.
+-- @param arg An optional argument to be passed to the callback function.
+-- @usage
+-- MyAddon = LibStub("AceAddon-3.0"):NewAddon("TimerTest", "AceTimer-3.0")
+--
+-- function MyAddon:OnEnable()
+-- self.timerCount = 0
+-- self.testTimer = self:ScheduleRepeatingTimer("TimerFeedback", 5)
+-- end
+--
+-- function MyAddon:TimerFeedback()
+-- self.timerCount = self.timerCount + 1
+-- print(("%d seconds passed"):format(5 * self.timerCount))
+-- -- run 30 seconds in total
+-- if self.timerCount == 6 then
+-- self:CancelTimer(self.testTimer)
+-- end
+-- end
+function AceTimer:ScheduleRepeatingTimer(callback, delay, arg)
+ return Reg(self, callback, delay, arg, true)
+end
+
+--- Cancels a timer with the given handle, registered by the same addon object as used for `:ScheduleTimer`
+-- Both one-shot and repeating timers can be canceled with this function, as long as the `handle` is valid
+-- and the timer has not fired yet or was canceled before.
+-- @param handle The handle of the timer, as returned by `:ScheduleTimer` or `:ScheduleRepeatingTimer`
+-- @param silent If true, no error is raised if the timer handle is invalid (expired or already canceled)
+-- @return True if the timer was successfully cancelled.
+function AceTimer:CancelTimer(handle, silent)
+ if not handle then return end -- nil handle -> bail out without erroring
+ if type(handle) ~= "string" then
+ error(MAJOR..": CancelTimer(handle): 'handle' - expected a string", 2) -- for now, anyway
+ end
+ local selftimers = AceTimer.selfs[self]
+ local timer = selftimers and selftimers[handle]
+ if silent then
+ if timer then
+ timer.callback = nil -- don't run it again
+ timer.delay = nil -- if this is the currently-executing one: don't even reschedule
+ -- The timer object is removed in the OnUpdate loop
+ end
+ return not not timer -- might return "true" even if we double-cancel. we'll live.
+ else
+ if not timer then
+ geterrorhandler()(MAJOR..": CancelTimer(handle[, silent]): '"..tostring(handle).."' - no such timer registered")
+ return false
+ end
+ if not timer.callback then
+ geterrorhandler()(MAJOR..": CancelTimer(handle[, silent]): '"..tostring(handle).."' - timer already cancelled or expired")
+ return false
+ end
+ timer.callback = nil -- don't run it again
+ timer.delay = nil -- if this is the currently-executing one: don't even reschedule
+ return true
+ end
+end
+
+--- Cancels all timers registered to the current addon object ('self')
+function AceTimer:CancelAllTimers()
+ if not(type(self) == "string" or type(self) == "table") then
+ error(MAJOR..": CancelAllTimers(): 'self' - must be a string or a table",2)
+ end
+ if self == AceTimer then
+ error(MAJOR..": CancelAllTimers(): supply a meaningful 'self'", 2)
+ end
+
+ local selftimers = AceTimer.selfs[self]
+ if selftimers then
+ for handle,v in pairs(selftimers) do
+ if type(v) == "table" then -- avoid __ops, etc
+ AceTimer.CancelTimer(self, handle, true)
+ end
+ end
+ end
+end
+
+--- Returns the time left for a timer with the given handle, registered by the current addon object ('self').
+-- This function will raise a warning when the handle is invalid, but not stop execution.
+-- @param handle The handle of the timer, as returned by `:ScheduleTimer` or `:ScheduleRepeatingTimer`
+-- @return The time left on the timer, or false if the handle is invalid.
+function AceTimer:TimeLeft(handle)
+ if not handle then return end
+ if type(handle) ~= "string" then
+ error(MAJOR..": TimeLeft(handle): 'handle' - expected a string", 2) -- for now, anyway
+ end
+ local selftimers = AceTimer.selfs[self]
+ local timer = selftimers and selftimers[handle]
+ if not timer then
+ geterrorhandler()(MAJOR..": TimeLeft(handle): '"..tostring(handle).."' - no such timer registered")
+ return false
+ end
+ return timer.when - GetTime()
+end
+
+
+-- ---------------------------------------------------------------------
+-- PLAYER_REGEN_ENABLED: Run through our .selfs[] array step by step
+-- and clean it out - otherwise the table indices can grow indefinitely
+-- if an addon starts and stops a lot of timers. AceBucket does this!
+--
+-- See ACE-94 and tests/AceTimer-3.0-ACE-94.lua
+
+local lastCleaned = nil
+
+local function OnEvent(this, event)
+ if event~="PLAYER_REGEN_ENABLED" then
+ return
+ end
+
+ -- Get the next 'self' to process
+ local selfs = AceTimer.selfs
+ local self = next(selfs, lastCleaned)
+ if not self then
+ self = next(selfs)
+ end
+ lastCleaned = self
+ if not self then -- should only happen if .selfs[] is empty
+ return
+ end
+
+ -- Time to clean it out?
+ local list = selfs[self]
+ if (list.__ops or 0) < 250 then -- 250 slosh indices = ~10KB wasted (max!). For one 'self'.
+ return
+ end
+
+ -- Create a new table and copy all members over
+ local newlist = {}
+ local n=0
+ for k,v in pairs(list) do
+ newlist[k] = v
+ n=n+1
+ end
+ newlist.__ops = 0 -- Reset operation count
+
+ -- And since we now have a count of the number of live timers, check that it's reasonable. Emit a warning if not.
+ if n>BUCKETS then
+ DEFAULT_CHAT_FRAME:AddMessage(MAJOR..": Warning: The addon/module '"..tostring(self).."' has "..n.." live timers. Surely that's not intended?")
+ end
+
+ selfs[self] = newlist
+end
+
+-- ---------------------------------------------------------------------
+-- Embed handling
+
+AceTimer.embeds = AceTimer.embeds or {}
+
+local mixins = {
+ "ScheduleTimer", "ScheduleRepeatingTimer",
+ "CancelTimer", "CancelAllTimers",
+ "TimeLeft"
+}
+
+function AceTimer:Embed(target)
+ AceTimer.embeds[target] = true
+ for _,v in pairs(mixins) do
+ target[v] = AceTimer[v]
+ end
+ return target
+end
+
+-- AceTimer:OnEmbedDisable( target )
+-- target (object) - target object that AceTimer is embedded in.
+--
+-- cancel all timers registered for the object
+function AceTimer:OnEmbedDisable( target )
+ target:CancelAllTimers()
+end
+
+
+for addon in pairs(AceTimer.embeds) do
+ AceTimer:Embed(addon)
+end
+
+-- ---------------------------------------------------------------------
+-- Debug tools (expose copies of internals to test suites)
+AceTimer.debug = AceTimer.debug or {}
+AceTimer.debug.HZ = HZ
+AceTimer.debug.BUCKETS = BUCKETS
+
+-- ---------------------------------------------------------------------
+-- Finishing touchups
+
+AceTimer.frame:SetScript("OnUpdate", OnUpdate)
+AceTimer.frame:SetScript("OnEvent", OnEvent)
+AceTimer.frame:RegisterEvent("PLAYER_REGEN_ENABLED")
+
+-- In theory, we should hide&show the frame based on there being timers or not.
+-- However, this job is fairly expensive, and the chance that there will
+-- actually be zero timers running is diminuitive to say the lest.
diff --git a/AtlasLoot/Libs/AceTimer-3.0/AceTimer-3.0.xml b/AtlasLoot/Libs/AceTimer-3.0/AceTimer-3.0.xml
new file mode 100644
index 0000000..38e9021
--- /dev/null
+++ b/AtlasLoot/Libs/AceTimer-3.0/AceTimer-3.0.xml
@@ -0,0 +1,4 @@
+
+
+
\ No newline at end of file
diff --git a/AtlasLoot/Locales/constants.en.lua b/AtlasLoot/Locales/constants.en.lua
index d00195b..0fa7611 100644
--- a/AtlasLoot/Locales/constants.en.lua
+++ b/AtlasLoot/Locales/constants.en.lua
@@ -19,6 +19,8 @@ local AL = AceLocale:NewLocale("AtlasLoot", "enUS", true);
--Register translations
if AL then
+ AL["Druid"] = true;
+
-- Text strings for UI objects
AL["AtlasLoot"] = true;
AL["Select Loot Table"] = true;
@@ -96,7 +98,6 @@ if AL then
AL["|cff9d9d9dShow Basic Minimap Button|r"] = true;
AL["Set Minimap Button Position"] = true;
AL["Suppress Item Query Text"] = true;
- AL["Auto Query items on page load"] = true;
AL["Notify on LoD Module Load"] = true;
AL["Load Loot Modules at Startup"] = true;
AL["Loot Browser Scale: "] = true;
@@ -1153,6 +1154,7 @@ if AL then
AL["The Defiler's Determination"] = true;
AL["The Defiler's Fortitude"] = true;
AL["The Defiler's Resolution"] = true;
+ AL["The Defiler's Resolve"] = true;
-- PvP Level 60 Rare Sets - Alliance
AL["Lieutenant Commander's Refuge"] = true;
diff --git a/AtlasLoot/Menus/CraftingMenus.lua b/AtlasLoot/Menus/CraftingMenus.lua
index 5a0bab6..3310967 100644
--- a/AtlasLoot/Menus/CraftingMenus.lua
+++ b/AtlasLoot/Menus/CraftingMenus.lua
@@ -10,10 +10,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ "", "EngineeringCLASSIC"};
{ "", "LeatherworkingCLASSIC"};
{ "", "TailoringCLASSIC"};
- { "", "Inscription"};
- { "", "Mining"};
+ { "", "MiningCLASSIC"};
{ "", "CookingCLASSIC"};
- { "", "FirstAid"};
+ { "", "FirstAidCLASSIC"};
{"High Risk:", "", "Header"};
{ "", "AlchemyHighRiskCLASSIC"};
{ "", "SmithingHighRiskCLASSIC"};
@@ -33,10 +32,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ "", "JewelcraftingTBC"};
{ "", "LeatherworkingTBC"};
{ "", "TailoringTBC"};
- { "", "Inscription"};
- { "", "Mining"};
+ { "", "MiningTBC"};
{ "", "CookingTBC"};
- { "", "FirstAid"};
+ { "", "FirstAidTBC"};
{"High Risk:", "", "Header"};
{ "", "AlchemyHighRiskTBC"};
{ "", "SmithingHighRiskTBC"};
@@ -58,9 +56,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ "", "LeatherworkingWRATH"};
{ "", "TailoringWRATH"};
{ "", "Inscription"};
- { "", "Mining"};
+ { "", "MiningWRATH"};
{ "", "CookingWRATH"};
- { "", "FirstAid"};
+ { "", "FirstAidWRATH"};
{"High Risk:", "", "Header"};
--[[ { "", "AlchemyHighRiskWRATH"};
{ "", "SmithingHighRiskWRATH"};
diff --git a/AtlasLoot/Menus/DungeonRaidMenus.lua b/AtlasLoot/Menus/DungeonRaidMenus.lua
index 090ca73..c8ed9ee 100644
--- a/AtlasLoot/Menus/DungeonRaidMenus.lua
+++ b/AtlasLoot/Menus/DungeonRaidMenus.lua
@@ -107,12 +107,10 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0");
AtlasLoot_SubMenus["WorldBossesMenuCLASSIC"] = {
Module = "AtlasLootOriginalWoW";
- AutoLoad = true;
{ "","WorldBossesCLASSIC"};
};
AtlasLoot_SubMenus["WorldBossesMenuTBC"] = {
Module = "AtlasLootBurningCrusade";
- AutoLoad = true;
{ "","WorldBossesTBC"};
};
\ No newline at end of file
diff --git a/AtlasLoot/Menus/Mainmenu.lua b/AtlasLoot/Menus/Mainmenu.lua
index 7ecc800..3d9c692 100644
--- a/AtlasLoot/Menus/Mainmenu.lua
+++ b/AtlasLoot/Menus/Mainmenu.lua
@@ -13,7 +13,7 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0")
--This is a multi-layer table defining the main loot listing.
--Entries have the text to display, loot table or sub table to link to and if the link is to a loot table or sub table
AtlasLoot_Modules = {
- {AL["Dungeons and Raids"], "Dungeons and Raids "};
+ {AL["Dungeons and Raids"], "Dungeons and Raids ", 2};
{AL["Crafting"], "Crafting"};
{AL["Sets/Collections"], "Collections"};
{AL["PvP Rewards"], "PVP"};
@@ -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 64eb93e..207743b 100644
--- a/AtlasLoot/Menus/PvPMenus.lua
+++ b/AtlasLoot/Menus/PvPMenus.lua
@@ -3,150 +3,48 @@ local BabbleBoss = AtlasLoot_GetLocaleLibBabble("LibBabble-Boss-3.0")
local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0")
local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
- AtlasLoot_Data["PVPMENUCLASSIC"] = {
- { 1, "PvP60Accessories1_A", "inv_jewelry_trinketpvp_01", "=ds="..AL["PvP Accessories"], "=q5="..AL["Level 60"]};
- { 2, "PVPSET", "INV_Axe_02", "=ds="..AL["PvP Armor Sets"], "=q5="..AL["Level 60"]};
- { 4, "PVPMENU2", "INV_Jewelry_Necklace_21", "=ds="..AL["BG PvP Rewards"], ""};
- { 16, "PVPWeapons_A", "INV_Weapon_Bow_08", "=ds="..AL["PvP Weapons"], "=q5="..AL["Level 60"]};
- { 17, "PvP60Ench", "INV_Scroll_06", "=ds="..AL["PvP Enchants"], "=q5="..AL["Level 60"]};
- Prev = "PVPMENUWRATH";
- Next = "PVPMENUTBC";
- Back = "PVPMENU"..AtlasLoot_Expac;
- Submenu = "Expansion";
+ AtlasLoot_SubMenus["PVPCLASSIC"] = {
+ Module = "AtlasLootOriginalWoW";
+ { "PVP Factions", "AVMisc", "Header"};
+ { "", "AVMisc"};
+ { "", "AB_A"};
+ { "", "AB_H"};
+ { "", "WSG_A"};
+ { "", "WSG_H"};
+ { "", "PVPWeapons60"};
+ { "", "PvP60Accessories"};
+ { "", "PvP60Ench"};
+ { "PVP Sets", "PVPDruid", "Header"};
+ { "", "PVPDruid"};
+ { "", "PVPHunter"};
+ { "", "PVPMage"};
+ { "", "PVPPaladin"};
+ { "", "PVPPriest"};
+ { "", "PVPRogue"};
+ { "", "PVPShaman"};
+ { "", "PVPWarlock"};
+ { "", "PVPWarrior"};
};
- AtlasLoot_Data["PVPMENUTBC"] = {
- { 1, "PvP70Accessories1_A", "inv_jewelry_ring_60", "=ds="..AL["PvP Accessories"], "=q5="..AL["Level 70"]};
- { 2, "PVP70RepSET", "INV_Axe_02", "=ds="..AL["PvP Reputation Sets"], "=q5="..AL["Level 70"]};
- { 3, "ARENASET", "inv_gauntlets_29", "=ds="..AL["PvP Armor Sets"], "=q5="..AL["Level 70"]};
- { 4, "PvP70NonSet1", "inv_belt_13", "=ds="..AL["PvP Non-Set Epics"], "=q5="..AL["Level 70"]};
- { 6, "Hellfire", "INV_Misc_Token_HonorHold", "=ds="..BabbleZone["Hellfire Peninsula"], "=q5="..AL["Hellfire Fortifications"]};
- { 7, "Zangarmarsh", "Spell_Nature_ElementalPrecision_1", "=ds="..BabbleZone["Zangarmarsh"], "=q5="..AL["Twin Spire Ruins"]};
- { 8, "Terokkar", "INV_Jewelry_FrostwolfTrinket_04", "=ds="..BabbleZone["Terokkar Forest"], "=q5="..AL["Spirit Towers"]};
- { 9, "Nagrand1", "INV_Misc_Rune_09", "=ds="..BabbleZone["Nagrand"], "=q5="..AL["Halaa"]};
- { 16, "Arena0Weapons1_A", "INV_Weapon_Crossbow_09", "=ds="..AL["Arena Season 0 Weapons"], "=q5="..AL["Level 70"]};
- { 17, "Arena1Weapons1", "INV_Weapon_Crossbow_10", "=ds="..AL["Arena Season 1 Weapons"], "=q5="..AL["Level 70"]};
- { 18, "Arena2Weapons1", "INV_Weapon_Crossbow_11", "=ds="..AL["Arena Season 2 Weapons"], "=q5="..AL["Level 70"]};
- { 19, "Arena3Weapons1", "INV_Weapon_Crossbow_12", "=ds="..AL["Arena Season 3 Weapons"], "=q5="..AL["Level 70"]};
- { 20, "Arena4Weapons1", "inv_weapon_crossbow_26", "=ds="..AL["Arena Season 4 Weapons"], "=q5="..AL["Level 70"]};
- Prev = "PVPMENUCLASSIC";
- Next = "PVPMENUWRATH";
- Back = "PVPMENU"..AtlasLoot_Expac;
- Submenu = "Expansion";
+ AtlasLoot_SubMenus["PVPTBC"] = {
+ Module = "AtlasLootBurningCrusade";
+ { "PVP Factions", "PVPHellfire", "Header"};
+ { "", "PVPHellfire"};
+ { "", "PVPHalaa"};
+ { "", "PVPSpiritTowers"};
+ { "", "PVPTwinSpireRuins"};
+ { "", "PVP70RepGear"};
+ { "", "PvP70Accessories"};
+ { "", "PvP70NonSet"};
+ { "", "WeaponsTBC"};
+ { "PVP Sets", "ArenaDruidTBC", "Header"};
+ { "", "ArenaDruidTBC"};
+ { "", "ArenaHunterTBC"};
+ { "", "ArenaMageTBC"};
+ { "", "ArenaPaladinTBC"};
+ { "", "ArenaPriestTBC"};
+ { "", "ArenaRogueTBC"};
+ { "", "ArenaShamanTBC"};
+ { "", "ArenaWarlockTBC"};
+ { "", "ArenaWarriorTBC"};
};
-
- AtlasLoot_Data["PVPMENUWRATH"] = {
- { 1, "PvP80NonSet1", "INV_Jewelry_Necklace_36", "=ds="..AL["PvP Accessories"], "=q5="..AL["Level 80"]};
- { 2, "PvP80Misc", "INV_Scroll_06", "=ds="..AL["PvP Misc"], "=q5="..AL["Level 80"]};
- { 3, "LEVEL80PVPSETS", "INV_Boots_01", "=ds="..AL["PvP Armor Sets"], "=q5="..AL["Level 80"], "" };
- { 4, "WINTERGRASPMENU", "INV_Misc_Platnumdisks", "=ds="..BabbleZone["Wintergrasp"], ""};
- { 6, "VentureBay1", "INV_Misc_Coin_16", "=ds="..BabbleZone["Grizzly Hills"], "=q5="..AL["Venture Bay"]};
- { 16, "PVP80NONSETEPICS", "inv_bracer_51", "=ds="..AL["PvP Non-Set Epics"], "=q5="..AL["Level 80"]};
- { 17, "WrathfulGladiatorWeapons1", "INV_Sword_86", "=ds="..AL["Wrathful Gladiator\'s Weapons"], "=q5="..AL["Level 80"] };
- Prev = "PVPMENUTBC";
- Next = "PVPMENUCLASSIC";
- Back = "PVPMENU"..AtlasLoot_Expac;
- Submenu = "Expansion";
- };
-
- AtlasLoot_Data["PVPMENU2"] = {
- { 1, "ABMisc_A", "INV_Jewelry_Amulet_07", "=ds="..AL["Misc. Rewards"], "=q5="..BabbleZone["Arathi Basin"]};
- { 2, "ABSets1_A", "INV_Jewelry_Amulet_07", "=ds="..AL["Arathi Basin Sets"], ""};
- { 16, "AB4049_A", "INV_Jewelry_Amulet_07", "=ds="..AL["Level 40-49 Rewards"], "=q5="..BabbleZone["Arathi Basin"]};
- { 17, "AB2039_A", "INV_Jewelry_Amulet_07", "=ds="..AL["Level 20-39 Rewards"], "=q5="..BabbleZone["Arathi Basin"]};
- { 4, "WSGMisc", "INV_Misc_Rune_07", "=ds="..AL["Misc. Rewards"], "=q5="..BabbleZone["Warsong Gulch"]};
- { 5, "WSGAccessories_A", "INV_Misc_Rune_07", "=ds="..AL["Accessories"], "=q5="..BabbleZone["Warsong Gulch"]};
- { 19, "WSGWeapons_A", "INV_Misc_Rune_07", "=ds="..AL["Weapons"], "=q5="..BabbleZone["Warsong Gulch"]};
- { 20, "WSGArmor_A", "INV_Misc_Rune_07", "=ds="..BabbleInventory["Armor"], "=q5="..BabbleZone["Warsong Gulch"]};
- { 7, "AVMisc", "INV_Jewelry_Necklace_21", "=ds="..BabbleZone["Alterac Valley"], ""};
- Back = "PVPMENUCLASSIC";
- };
-
- AtlasLoot_Data["PVPSET"] = {
- { 3, "PVPDruid", "Spell_Nature_Regeneration", "=ds=".."Druid", ""};
- { 4, "PVPMage", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 5, "PVPPriest", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], ""};
- { 6, "PVPShaman", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], ""};
- { 7, "PVPWarrior", "INV_Shield_05", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], ""};
- { 18, "PVPHunter", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 19, "PVPPaladin", "Spell_Holy_SealOfMight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], ""};
- { 20, "PVPRogue", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 21, "PVPWarlock", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- Back = "PVPMENUCLASSIC";
- };
-
- -- PVP arena set BC
- AtlasLoot_Data["ARENASET"] = {
- { 3, "ArenaDruidBalance", "Spell_Nature_InsectSwarm", "=ds=".."Druid", "=q5="..AL["Balance"]};
- { 4, "ArenaDruidFeral", "Ability_Druid_Maul", "=ds=".."Druid", "=q5="..AL["Feral"]};
- { 5, "ArenaDruidRestoration", "Spell_Nature_Regeneration", "=ds=".."Druid", "=q5="..AL["Restoration"]};
- { 7, "ArenaHunter", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 9, "ArenaMage", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 11, "ArenaPaladinHoly", "Spell_Holy_HolyBolt", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 12, "ArenaPaladinProtection", "Spell_Holy_SealOfMight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Protection"]};
- { 13, "ArenaPaladinRetribution", "Spell_Holy_AuraOfLight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 17, "ArenaPriestHoly", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 18, "ArenaPriestShadow", "Spell_Shadow_AntiShadow", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 20, "ArenaRogue", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 22, "ArenaShamanElemental", "Spell_Nature_Lightning", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 23, "ArenaShamanEnhancement", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 24, "ArenaShamanRestoration", "Spell_Nature_HealingWaveGreater", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 26, "ArenaWarlockDemonology", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "=q5="..AL["Demonology"]};
- { 27, "ArenaWarlockDestruction", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "=q5="..AL["Destruction"]};
- { 29, "ArenaWarrior", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], ""};
- Back = "PVPMENUTBC";
- };
-
- AtlasLoot_Data["PVP70RepSET"] = {
- { 2, "PVP70RepCloth", "INV_Boots_Cloth_12", "=ds="..BabbleInventory["Cloth"], "=q5=".."Reputation"};
- { 3, "PVP70RepMail", "INV_Boots_Plate_06", "=ds="..BabbleInventory["Mail"], "=q5=".."Reputation"};
- { 17, "PVP70RepLeather", "INV_Boots_08", "=ds="..BabbleInventory["Leather"], "=q5=".."Reputation"};
- { 18, "PVP70RepPlate", "INV_Boots_Plate_04", "=ds="..BabbleInventory["Plate"], "=q5=".."Reputation"};
- { 5, "PVP70RareCloth_A", "INV_Boots_Cloth_12", "=ds="..BabbleInventory["Cloth"], "=q5=".."Pre-Arena"};
- { 6, "PVP70RareMail_A", "INV_Boots_Plate_06", "=ds="..BabbleInventory["Mail"], "=q5=".."Pre-Arena"};
- { 20, "PVP70RareLeather_A", "INV_Boots_08", "=ds="..BabbleInventory["Leather"], "=q5=".."Pre-Arena"};
- { 21, "PVP70RarePlate_A", "INV_Boots_Plate_04", "=ds="..BabbleInventory["Plate"], "=q5=".."Pre-Arena"};
- Back = "PVPMENUTBC";
- };
-
- AtlasLoot_Data["PVP80NONSETEPICS"] = {
- { 2, "PvP80NonSet3", "INV_Boots_Cloth_12", "=ds="..BabbleInventory["Cloth"], ""};
- { 3, "PvP80NonSet5", "INV_Boots_Plate_06", "=ds="..BabbleInventory["Mail"], ""};
- { 4, "PvP80ClassItems1", "Spell_Frost_SummonWaterElemental", "=ds="..BabbleInventory["Relic"], "" };
- { 17, "PvP80NonSet4", "INV_Boots_08", "=ds="..BabbleInventory["Leather"], ""};
- { 18, "PvP80NonSet6", "INV_Boots_Plate_04", "=ds="..BabbleInventory["Plate"], ""};
- Back = "PVPMENUWRATH";
- };
-
- AtlasLoot_Data["LEVEL80PVPSETS"] = {
- { 2, "PvP80DeathKnight", "Spell_Deathknight_DeathStrike", "=ds="..LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"], ""};
- { 4, "PvP80DruidBalance", "Spell_Nature_InsectSwarm", "=ds=".."Druid", "=q5="..AL["Balance"]};
- { 5, "PvP80DruidFeral", "Ability_Druid_Maul", "=ds=".."Druid", "=q5="..AL["Feral"]};
- { 6, "PvP80DruidRestoration", "Spell_Nature_Regeneration", "=ds=".."Druid", "=q5="..AL["Restoration"]};
- { 8, "PvP80Hunter", "Ability_Hunter_RunningShot", "=ds="..LOCALIZED_CLASS_NAMES_MALE["HUNTER"], ""};
- { 10, "PvP80Mage", "Spell_Frost_IceStorm", "=ds="..LOCALIZED_CLASS_NAMES_MALE["MAGE"], ""};
- { 12, "PvP80PaladinHoly", "Spell_Holy_HolyBolt", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Holy"]};
- { 13, "PvP80PaladinRetribution", "Spell_Holy_AuraOfLight", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "=q5="..AL["Retribution"]};
- { 17, "PvP80PriestHoly", "Spell_Holy_PowerWordShield", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Holy"]};
- { 18, "PvP80PriestShadow", "Spell_Shadow_AntiShadow", "=ds="..LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "=q5="..AL["Shadow"]};
- { 20, "PvP80Rogue", "Ability_BackStab", "=ds="..LOCALIZED_CLASS_NAMES_MALE["ROGUE"], ""};
- { 22, "PvP80ShamanElemental", "Spell_Nature_Lightning", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Elemental"]};
- { 23, "PvP80ShamanEnhancement", "Spell_FireResistanceTotem_01", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Enhancement"]};
- { 24, "PvP80ShamanRestoration", "Spell_Nature_HealingWaveGreater", "=ds="..LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "=q5="..AL["Restoration"]};
- { 26, "PvP80Warlock", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], ""};
- { 28, "PvP80Warrior", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], ""};
- Back = "PVPMENUWRATH";
- };
-
- AtlasLoot_Data["WINTERGRASPMENU"] = {
- { 2, "LakeWintergrasp2", "inv_helmet_136", "=ds="..BabbleInventory["Cloth"], ""};
- { 3, "LakeWintergrasp3", "INV_Helmet_141", "=ds="..BabbleInventory["Leather"], ""};
- { 4, "LakeWintergrasp4", "INV_Helmet_138", "=ds="..BabbleInventory["Mail"], ""};
- { 5, "LakeWintergrasp5", "inv_helmet_134", "=ds="..BabbleInventory["Plate"], ""};
- { 17, "LakeWintergrasp1", "inv_misc_rune_11", "=ds="..AL["Accessories"], ""};
- { 18, "LakeWintergrasp7", "inv_sword_19", "=ds="..AL["Heirloom"], ""};
- { 19, "LakeWintergrasp6", "inv_jewelcrafting_icediamond_02", "=ds="..AL["PVP Gems/Enchants/Jewelcrafting Designs"], ""};
- Back = "PVPMENU2";
- };
-
-
\ No newline at end of file
diff --git a/AtlasLoot/Menus/RepMenus.lua b/AtlasLoot/Menus/RepMenus.lua
index 860ab53..f28d722 100644
--- a/AtlasLoot/Menus/RepMenus.lua
+++ b/AtlasLoot/Menus/RepMenus.lua
@@ -21,26 +21,27 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
AtlasLoot_SubMenus["ReputationsTBC"] = {
Module = "AtlasLootBurningCrusade";
- { "", "Aldor1", "INV_Jewelry_Talisman_08", "=ds="..BabbleFaction["The Aldor"], ""};
- { "", "CExpedition1", "INV_Misc_Ammo_Arrow_02", "=ds="..BabbleFaction["Cenarion Expedition"], "=q5="..BabbleZone["Zangarmarsh"]};
- { "", "HonorHold1", "INV_BannerPVP_02", "=ds="..BabbleFaction["Honor Hold"], "=q5="..BabbleFaction["Alliance"].." - "..BabbleZone["Hellfire Peninsula"]};
- { "", "Kurenai1", "INV_Misc_Foot_Centaur", "=ds="..BabbleFaction["Kurenai"], "=q5="..BabbleFaction["Alliance"].." - "..BabbleZone["Nagrand"]};
- { "", "Maghar1", "INV_Misc_Foot_Centaur", "=ds="..BabbleFaction["The Mag'har"], "=q5="..BabbleFaction["Horde"].." - "..BabbleZone["Nagrand"]};
- { "", "Ogrila1", "inv_misc_apexis_crystal", "=ds="..BabbleFaction["Ogri'la"], "=q5="..BabbleZone["Blade's Edge Mountains"]};
- { "", "Scryer1", "INV_Misc_Foot_Centaur", "=ds="..BabbleFaction["The Scryers"], ""};
- { "", "Skyguard1", "INV_Misc_Ribbon_01", "=ds="..BabbleFaction["Sha'tari Skyguard"], "=q5="..BabbleZone["Terokkar Forest"].." / "..BabbleZone["Blade's Edge Mountains"]};
- { "", "Sporeggar1", "inv_mushroom_11", "=ds="..BabbleFaction["Sporeggar"], "=q5="..BabbleZone["Zangarmarsh"]};
- { "", "Tranquillien1", "INV_Misc_Bandana_03", "=ds="..BabbleFaction["Tranquillien"], "=q5="..BabbleFaction["Horde"].." - "..BabbleZone["Ghostlands"]};
- { "", "Ashtongue1", "achievement_reputation_ashtonguedeathsworn", "=ds="..BabbleFaction["Ashtongue Deathsworn"], "=q5="..BabbleZone["Shadowmoon Valley"].." / "..BabbleZone["Black Temple"]};
- { "", "Consortium1", "INV_Weapon_Shortblade_31", "=ds="..BabbleFaction["The Consortium"], ""};
- { "", "KeepersofTime1", "Ability_Warrior_VictoryRush", "=ds="..BabbleFaction["Keepers of Time"], "=q5="..BabbleZone["Caverns of Time"]};
- { "", "LowerCity1", "Spell_Holy_ChampionsBond", "=ds="..BabbleFaction["Lower City"], ""};
- { "", "Netherwing1", "Ability_Mount_Netherdrakepurple", "=ds="..BabbleFaction["Netherwing"], "=q5="..BabbleZone["Shadowmoon Valley"]};
- { "", "ScaleSands1", "INV_Misc_MonsterScales_13", "=ds="..BabbleFaction["The Scale of the Sands"], "=q5="..BabbleZone["Hyjal Summit"]};
- { "", "Shatar1", "Ability_Warrior_ShieldMastery", "=ds="..BabbleFaction["The Sha'tar"], ""};
- { "", "SunOffensive1", "inv_shield_48", "=ds="..BabbleFaction["Shattered Sun Offensive"], "=q5="..BabbleZone["Isle of Quel'Danas"]};
- { "", "Thrallmar1", "INV_BannerPVP_01", "=ds="..BabbleFaction["Thrallmar"], "=q5="..BabbleFaction["Horde"].." - "..BabbleZone["Hellfire Peninsula"]};
- { "", "VioletEye1", "spell_holy_mindsooth", "=ds="..BabbleFaction["The Violet Eye"], "=q5="..BabbleZone["Karazhan"]};
+ { "", "ShattrathFlasks"};
+ { "", "Aldor"};
+ { "", "Scryer"};
+ { "", "Shatar"};
+ { "", "LowerCity"};
+ { "", "CExpedition"};
+ { "", "HonorHold"};
+ { "", "Thrallmar"};
+ { "", "Kurenai"};
+ { "", "Maghar"};
+ { "", "Ogrila"};
+ { "", "Skyguard"};
+ { "", "Sporeggar"};
+ { "", "Tranquillien"};
+ { "", "Ashtongue"};
+ { "", "Consortium"};
+ { "", "KeepersofTime"};
+ { "", "Netherwing"};
+ { "", "ScaleSands"};
+ { "", "SunOffensive"};
+ { "", "VioletEye"};
};
AtlasLoot_SubMenus["ReputationsWRATH"] = {
diff --git a/AtlasLoot/Menus/SetMenus.lua b/AtlasLoot/Menus/SetMenus.lua
index cec0cb3..5e5e044 100644
--- a/AtlasLoot/Menus/SetMenus.lua
+++ b/AtlasLoot/Menus/SetMenus.lua
@@ -9,40 +9,32 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
-- { #, "CardGame1", "INV_Misc_Ticket_Tarot_Madness", "=ds="..AL["Upper Deck Card Game Items"], ""};
-- { #, "PVPMENU", "INV_Axe_02", "=ds="..AL["PvP Rewards"], ""};
- AtlasLoot_Data["SETMENUCLASSIC"] = {
- { 1, "SETSCLASSIC", "INV_Sword_43", "=ds="..AL["Classic Sets"], ""};
- { 3, 0, "INV_Box_01", "=q6="..AL["BoE World Epics"], ""};
- { 4, "WorldEpics1", "INV_Jewelry_Ring_15", "=ds="..AL["Level 30-39"], ""};
- { 5, "WorldEpics2", "INV_Staff_29", "=ds="..AL["Level 40-49"], ""};
- { 6, "WorldEpics3", "INV_Jewelry_Amulet_01", "=ds="..AL["Level 50-60"], ""};
- { 8, "Heirloom", "INV_Sword_43", "=ds="..AL["Heirloom"], ""};
- { 9, "Legendaries", "INV_Staff_Medivh", "=ds="..AL["Legendary Items"], ""};
- { 16, "T0SET", "INV_Chest_Chain_03", "=ds="..AL["Dungeon 1/2 Sets"], ""};
- { 17, "ZGSets1", "INV_Misc_MonsterClaw_04", "=ds="..AL["Zul'Gurub Sets"], ""};
- { 18, "AQ20Sets1", "INV_Jewelry_Ring_AhnQiraj_03", "=ds="..AL["Ruins of Ahn'Qiraj Sets"], ""};
- { 19, "AQ40Sets1", "INV_Sword_59", "=ds="..AL["Temple of Ahn'Qiraj Sets"], ""};
- { 21, "T1SET", "INV_Pants_Mail_03", "=ds="..AL["Tier 1 Sets"], ""};
- { 22, "T2SET", "INV_Pants_Mail_26", "=ds="..AL["Tier 2 Sets"], ""};
- { 23, "T3SET", "INV_Pants_Mail_38v3", "=ds="..AL["Tier 3 Sets"], ""};
- Prev = "SETMENUWRATH";
- Next = "SETMENUTBC";
- Submenu = "Expansion";
- };
+ AtlasLoot_SubMenus["CollectionsCLASSIC"] = {
+ Module = "AtlasLootOriginalWoW";
+ { "", "ClassicSets"};
+ { "", "WorldEpicsCLASSIC"};
+ { "", "ZGSets"};
+ { "", "AQ20Sets"};
+ { "", "T0"};
+ { "", "T1"};
+ { "", "T2"};
+ { "", "T2.5"};
+ { "", "T3"};
+ };
- AtlasLoot_Data["SETMENUTBC"] = {
- { 1, "70TOKENMENU", "Spell_Holy_ChampionsBond", "=ds="..AL["Badge of Justice Rewards"], "=q5="..AL["Burning Crusade"]};
- { 3, "Heirloom", "INV_Sword_43", "=ds="..AL["Heirloom"], ""};
- { 4, "WorldEpics4", "INV_Sword_76", "=ds=".."World Epics", ""};
- { 5, "TBCSets", "INV_Weapon_Glave_01", "=ds="..AL["Burning Crusade Misc Sets"], ""};
- { 6, "Legendaries", "INV_Staff_Medivh", "=ds="..AL["Legendary Items"], ""};
- { 16, "DS3SET", "INV_Helmet_15", "=ds="..AL["Dungeon 3 Sets"], ""};
- { 18, "T4SET", "inv_helmet_58", "=ds="..AL["Tier 4 Sets"], ""};
- { 19, "T5SET", "inv_helmet_92", "=ds="..AL["Tier 5 Sets"], ""};
- { 20, "T6SET", "inv_helmet_98", "=ds="..AL["Tier 6 Sets"], ""};
- Prev = "SETMENUCLASSIC";
- Next = "SETMENUWRATH";
- Submenu = "Expansion";
- };
+ AtlasLoot_SubMenus["CollectionsTBC"] = {
+ Module = "AtlasLootBurningCrusade";
+ { "", "DS3"};
+ { "", "WorldEpicsTBC"};
+ { "", "TBCSets"};
+ { AL["Badge of Justice Rewards"], "BadgeShatt", "Header"};
+ { "", "BadgeShatt"};
+ { "", "BadgeSunwell"};
+ { "Teir Sets", "T4", "Header"};
+ { "", "T4"};
+ { "", "T5"};
+ { "", "T6"};
+ };
AtlasLoot_Data["SETMENUWRATH"] = {
{ 1, "EMBLEMOFFROSTMENU", "inv_misc_frostemblem_01", "=ds="..AL["Emblem of Frost Rewards"], "=q5="..AL["Wrath of the Lich King"]};
diff --git a/AtlasLoot/Menus/WorldEventMenus.lua b/AtlasLoot/Menus/WorldEventMenus.lua
index c78576f..6cc61ef 100644
--- a/AtlasLoot/Menus/WorldEventMenus.lua
+++ b/AtlasLoot/Menus/WorldEventMenus.lua
@@ -3,75 +3,73 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0")
local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
+AtlasLoot_SubMenus["WorldEventsCLASSIC"] = {
+ Module = "AtlasLootWorldEvents";
+ { "Seasonal", "BrewfestCLASSIC", "Header"};
+ { "", "BrewfestCLASSIC"};
+ { "", "DayoftheDead"};
+ { "", "HalloweenCLASSIC"};
+ { "", "Valentineday"};
+ { "", "MidsummerFestivalCLASSIC"};
+ { "", "PilgrimsBounty"};
+ { "", "ChildrensWeek"};
+ { "", "Winterviel"};
+ { "", "HarvestFestival"};
+ { "", "LunarFestival"};
+ { "", "Noblegarden"};
+ { "Other", "Darkmoon", "Header"};
+ { "", "Darkmoon"};
+ { "", "GurubashiArena"};
+ { "", "AbyssalCouncil"};
+ { "", "ElementalInvasion"};
+ { "", "ScourgeInvasionEvent"};
+ { "", "FishingExtravaganza"};
+};
- AtlasLoot_Data["WORLDEVENTMENU"] = {
- { 1, "ARGENTMENU", "Ability_Paladin_ArtofWar", "=ds="..AL["Argent Tournament"], "=q5="..BabbleZone["Icecrown"]};
- { 3, "Brewfest1", "INV_Cask_04", "=ds="..AL["Brewfest"], "=q5="..AL["Various Locations"]};
- { 4, "DayoftheDead", "INV_Misc_Bone_HumanSkull_02", "=ds="..AL["Day of the Dead"], "=q5="..AL["Various Locations"]};
- { 5, "Halloween1", "INV_Misc_Bag_28_Halloween", "=ds="..AL["Hallow's End"], "=q5="..AL["Various Locations"]};
- { 6, "Valentineday", "INV_ValentinesBoxOfChocolates02", "=ds="..AL["Love is in the Air"], "=q5="..AL["Various Locations"]};
- { 7, "MidsummerFestival", "INV_SummerFest_FireFlower", "=ds="..AL["Midsummer Fire Festival"], "=q5="..AL["Various Locations"]};
- { 8, "PilgrimsBounty_H", "inv_helmet_65", "=ds="..AL["Pilgrim's Bounty"], "=q5="..AL["Various Locations"]};
- { 10, "BashirLanding", "INV_Trinket_Naxxramas02", "=ds="..AL["Bash'ir Landing Skyguard Raid"], "=q5="..BabbleZone["Blade's Edge Mountains"]};
- { 11, "GurubashiArena", "INV_Box_02", "=ds="..AL["Gurubashi Arena Booty Run"], "=q5="..BabbleZone["Stranglethorn Vale"]};
- { 12, "Shartuul", "INV_Misc_Rune_04", "=ds="..AL["Shartuul"], "=q5="..BabbleZone["Blade's Edge Mountains"]};
- { 14, "ABYSSALMENU", "INV_Staff_13", "=ds="..AL["Abyssal Council"], "=q5="..BabbleZone["Silithus"]};
- { 15, "SKETTISMENU", "Spell_Nature_NaturesWrath", "=ds="..AL["Skettis"], "=q5="..BabbleZone["Terokkar Forest"]};
- { 16, "DARKMOONMENU", "INV_Misc_Ticket_Tarot_Madness", "=ds="..BabbleFaction["Darkmoon Faire"], "=q5="..AL["Various Locations"]};
- { 18, "ChildrensWeek", "Ability_Hunter_BeastCall", "=ds="..AL["Children's Week"], "=q5="..AL["Various Locations"]};
- { 19, "Winterviel1", "INV_Holiday_Christmas_Present_01", "=ds="..AL["Feast of Winter Veil"], "=q5="..AL["Various Locations"]};
- { 20, "HarvestFestival", "INV_Misc_Food_33", "=ds="..AL["Harvest Festival"], "=q5="..AL["Various Locations"]};
- { 21, "LunarFestival1", "INV_Misc_ElvenCoins", "=ds="..AL["Lunar Festival"], "=q5="..AL["Various Locations"]};
- { 22, "Noblegarden", "INV_Egg_03", "=ds="..AL["Noblegarden"], "=q5="..AL["Various Locations"]};
- { 25, "ElementalInvasion", "INV_DataCrystal03", "=ds="..AL["Elemental Invasion"], "=q5="..AL["Various Locations"]};
- { 26, "ScourgeInvasionEvent1", "INV_Jewelry_Talisman_13", "=ds="..AL["Scourge Invasion"], "=q5="..AL["Various Locations"]};
- { 27, "FishingExtravaganza", "INV_Fishingpole_02", "=ds="..AL["Stranglethorn Fishing Extravaganza"], "=q5="..BabbleZone["Stranglethorn Vale"]};
- { 29, "ETHEREUMMENU", "INV_Misc_PunchCards_Prismatic", "=ds="..AL["Ethereum Prison"], ""};
+ AtlasLoot_SubMenus["WorldEventsTBC"] = {
+ Module = "AtlasLootWorldEvents";
+ { "Seasonal", "BrewfestTBC", "Header"};
+ { "", "BrewfestTBC"};
+ { "", "DayoftheDead"};
+ { "", "HalloweenTBC"};
+ { "", "Valentineday"};
+ { "", "MidsummerFestivalTBC"};
+ { "", "PilgrimsBounty"};
+ { "", "ChildrensWeek"};
+ { "", "Winterviel"};
+ { "", "HarvestFestival"};
+ { "", "LunarFestival"};
+ { "", "Noblegarden"};
+ { "Other", "BashirLanding", "Header"};
+ { "", "BashirLanding"};
+ { "", "GurubashiArena"};
+ { "", "Shartuul"};
+ { "", "AbyssalCouncil"};
+ { "", "Skettis"};
+ { "", "Darkmoon"};
+ { "", "FishingExtravaganza"};
+ { "", "EthereumPrison"};
};
- AtlasLoot_Data["ARGENTMENU"] = {
- { 2, "ArgentTournament1", "inv_scroll_11", "=ds="..BabbleInventory["Miscellaneous"], ""};
- { 3, "ArgentTournament3", "inv_boots_plate_09", "=ds="..BabbleInventory["Armor"], ""};
- { 4, "ArgentTournament5", "achievement_reputation_argentchampion", "=ds="..AL["Vanity Pets"], ""};
- { 5, "ArgentTournament8", "inv_jewelry_talisman_01", "=ds="..AL["Heirloom"], ""};
- { 17, "ArgentTournament2", "inv_misc_tournaments_tabard_human", "=ds="..AL["Tabards"].." / "..AL["Banner"], ""};
- { 18, "ArgentTournament4", "inv_mace_29", "=ds="..AL["Weapons"], ""};
- { 19, "ArgentTournament6", "ability_mount_charger", "=ds="..AL["Mounts"], ""};
- Back = "WORLDEVENTMENU";
+ AtlasLoot_SubMenus["WorldEventsWRATH"] = {
+ Module = "AtlasLootWorldEvents";
+ { "Seasonal", "BrewfestWRATH", "Header"};
+ { "", "BrewfestWRATH"};
+ { "", "DayoftheDead"};
+ { "", "HalloweenWRATH"};
+ { "", "Valentineday"};
+ { "", "MidsummerFestivalWRATH"};
+ { "", "PilgrimsBounty"};
+ { "", "ChildrensWeek"};
+ { "", "Winterviel"};
+ { "", "HarvestFestival"};
+ { "", "LunarFestival"};
+ { "", "Noblegarden"};
+ { "Other", "ArgentTournament", "Header"};
+ { "", "ArgentTournament"};
+ { "", "GurubashiArena"};
+ { "", "Shartuul"};
+ { "", "Skettis"};
+ { "", "Darkmoon"};
+ { "", "FishingExtravaganza"};
};
-
- AtlasLoot_Data["DARKMOONMENU"] = {
- { 2, "Darkmoon1", "INV_Misc_Ticket_Darkmoon_01", "=ds="..AL["Darkmoon Faire Rewards"], ""};
- { 3, "Darkmoon3", "INV_Misc_Ticket_Tarot_Madness", "=ds="..AL["Original and BC Trinkets"], ""};
- { 17, "Darkmoon2", "INV_Misc_Ticket_Tarot_Furies", "=ds="..AL["Low Level Decks"], ""};
- { 18, "Darkmoon4", "INV_Inscription_TarotGreatness", "=ds="..AL["WotLK Trinkets"], ""};
- Back = "WORLDEVENTMENU";
- };
-
- AtlasLoot_Data["ABYSSALMENU"] = {
- { 2, "Templars", "INV_Jewelry_Talisman_05", "=ds="..AL["Abyssal Council"].." - "..AL["Templars"], ""};
- { 3, "HighCouncil", "INV_Staff_13", "=ds="..AL["Abyssal Council"].." - "..AL["High Council"], ""};
- { 17, "Dukes", "INV_Jewelry_Ring_36", "=ds="..AL["Abyssal Council"].." - "..AL["Dukes"], ""};
- Back = "WORLDEVENTMENU";
- };
-
- AtlasLoot_Data["ETHEREUMMENU"] = {
- { 2, "ArmbreakerHuffaz", "INV_Jewelry_Ring_59", "=ds="..AL["Armbreaker Huffaz"], ""};
- { 3, "Forgosh", "INV_Boots_05", "=ds="..AL["Forgosh"], ""};
- { 4, "MalevustheMad", "INV_Boots_Chain_04", "=ds="..AL["Malevus the Mad"], ""};
- { 5, "WrathbringerLaztarash", "INV_Misc_Orb_01", "=ds="..AL["Wrathbringer Laz-tarash"], ""};
- { 17, "FelTinkererZortan", "INV_Boots_Chain_08", "=ds="..AL["Fel Tinkerer Zortan"], ""};
- { 18, "Gulbor", "INV_Jewelry_Necklace_29Naxxramas", "=ds="..AL["Gul'bor"], ""};
- { 19, "PorfustheGemGorger", "INV_Boots_Cloth_01", "=ds="..AL["Porfus the Gem Gorger"], ""};
- { 20, "BashirStasisChambers", "INV_Trinket_Naxxramas02", "=ds="..AL["Bash'ir Landing Stasis Chambers"], ""};
- Back = "WORLDEVENTMENU";
- };
-
- AtlasLoot_Data["SKETTISMENU"] = {
- { 2, "DarkscreecherAkkarai", "INV_Misc_Rune_07", "=ds="..AL["Darkscreecher Akkarai"], ""};
- { 3, "GezzaraktheHuntress", "INV_Misc_Rune_07", "=ds="..AL["Gezzarak the Huntress"], ""};
- { 4, "Terokk", "INV_Misc_Rune_07", "=ds="..AL["Terokk"], ""};
- { 17, "Karrog", "INV_Misc_Rune_07", "=ds="..AL["Karrog"], ""};
- { 18, "VakkiztheWindrager", "INV_Misc_Rune_07", "=ds="..AL["Vakkiz the Windrager"], ""};
- Back = "WORLDEVENTMENU";
- };
\ No newline at end of file
diff --git a/AtlasLoot/TableRegister/loottables.en.lua b/AtlasLoot/TableRegister/loottables.en.lua
index ed6c1b4..b8ff17c 100644
--- a/AtlasLoot/TableRegister/loottables.en.lua
+++ b/AtlasLoot/TableRegister/loottables.en.lua
@@ -1129,41 +1129,41 @@ end
AtlasLoot_TableNames["T3Warrior"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["T3DPSWarrior"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
-- T4 Sets
- AtlasLoot_TableNames["T4DruidBalance"] = { "Druid".." - T4 "..AL["Balance"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4DruidFeral"] = { "Druid".." - T4 "..AL["Feral"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4DruidRestoration"] = { "Druid".." - T4 "..AL["Restoration"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4Hunter"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"].." - T4 ", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4Mage"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"].." - T4 ", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4PaladinHoly"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T4 "..AL["Holy"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4PaladinProtection"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T4 "..AL["Protection"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4PaladinRetribution"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T4 "..AL["Retribution"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4PriestHoly"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - T4 "..AL["Holy"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4PriestShadow"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - T4 "..AL["Shadow"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4Rogue"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"].." - T4 ", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4ShamanElemental"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T4 "..AL["Elemental"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4ShamanEnhancement"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T4 "..AL["Enhancement"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4ShamanRestoration"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T4 "..AL["Restoration"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4Warlock"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"].." - T4 ", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4WarriorFury"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T4 "..AL["Fury"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T4WarriorProtection"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T4 "..AL["Protection"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4DruidBalance"] = { "Druid".." - "..AL["Balance"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4DruidFeral"] = { "Druid".." - "..AL["Feral"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4DruidRestoration"] = { "Druid".." - "..AL["Restoration"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4Hunter"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"].." - ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4Mage"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"].." - ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PaladinHoly"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Holy"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PaladinProtection"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"]..AL["Protection"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PaladinRetribution"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Retribution"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PriestHoly"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Holy"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PriestShadow"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Shadow"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4Rogue"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"].." - ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4ShamanElemental"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Elemental"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4ShamanEnhancement"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Enhancement"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4ShamanRestoration"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Restoration"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4Warlock"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"].." - ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4WarriorFury"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Fury"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4WarriorProtection"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"], "AtlasLootBurningCrusade" };
-- T5 Sets
- AtlasLoot_TableNames["T5DruidBalance"] = { "Druid".." - T5 "..AL["Balance"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5DruidFeral"] = { "Druid".." - T5 "..AL["Feral"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5DruidRestoration"] = { "Druid".." - T5 "..AL["Restoration"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5Hunter"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"].." - T5 ", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5Mage"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"].." - T5 ", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5PaladinHoly"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T5 "..AL["Holy"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5PaladinProtection"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T5 "..AL["Protection"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5PaladinRetribution"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T5 "..AL["Retribution"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5PriestHoly"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - T5 "..AL["Holy"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5PriestShadow"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - T5 "..AL["Shadow"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5Rogue"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"].." - T5 ", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5ShamanElemental"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T5 "..AL["Elemental"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5ShamanEnhancement"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T5 "..AL["Enhancement"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5ShamanRestoration"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T5 "..AL["Restoration"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5Warlock"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"].." - T5 ", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5WarriorFury"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T5 "..AL["Fury"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["T5WarriorProtection"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T5 "..AL["Protection"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5DruidBalance"] = { "Druid".." - "..AL["Balance"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5DruidFeral"] = { "Druid".." - "..AL["Feral"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5DruidRestoration"] = { "Druid".." - "..AL["Restoration"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5Hunter"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"].." - ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5Mage"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"].." - ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PaladinHoly"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Holy"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PaladinProtection"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Protection"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PaladinRetribution"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Retribution"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PriestHoly"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Holy"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PriestShadow"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Shadow"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5Rogue"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"].." - ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5ShamanElemental"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Elemental"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5ShamanEnhancement"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Enhancement"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5ShamanRestoration"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Restoration"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5Warlock"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"].." - ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5WarriorFury"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Fury"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5WarriorProtection"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"], "AtlasLootBurningCrusade" };
-- T6 Sets
AtlasLoot_TableNames["T6DruidBalance"] = { "Druid".." - T6 "..AL["Balance"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["T6DruidFeral"] = { "Druid".." - T6 "..AL["Feral"], "AtlasLootBurningCrusade" };
diff --git a/AtlasLoot/embeds.xml b/AtlasLoot/embeds.xml
index ca0cbd4..9858203 100644
--- a/AtlasLoot/embeds.xml
+++ b/AtlasLoot/embeds.xml
@@ -17,6 +17,7 @@
+
diff --git a/AtlasLoot_BurningCrusade/burningcrusade.lua b/AtlasLoot_BurningCrusade/burningcrusade.lua
index e83fcc8..85120e2 100644
--- a/AtlasLoot_BurningCrusade/burningcrusade.lua
+++ b/AtlasLoot_BurningCrusade/burningcrusade.lua
@@ -1,6 +1,8 @@
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
-local BabbleBoss = AtlasLoot_GetLocaleLibBabble("LibBabble-Boss-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");
-- Index
--- Dungeons & BCRaids
@@ -1234,7 +1236,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T5Gloves"};
+ { 16, 30240, "", "=q4=Gloves of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5HAND"};
{ 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
};
{
@@ -1245,7 +1247,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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"};
+ { 16, 30246, "", "=q4=Leggings of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5LEGS"};
{ 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
};
{
@@ -1279,7 +1281,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T5Helms"};
+ { 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%"};
@@ -1329,7 +1331,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T4Shoulders"};
+ { 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)", "", "5%"};
};
@@ -1345,7 +1347,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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"};
+ { 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%"};
@@ -1643,7 +1645,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T4Chests"};
+ { 16, 29753, "", "=q4=Chestguard of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T5CHEST"};
{ 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#"};
@@ -1794,7 +1796,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T4Gloves"};
+ { 16, 29758, "", "=q4=Gloves of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T4HAND"};
};
{
Name = BabbleBoss["Terestian Illhoof"];
@@ -1877,7 +1879,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T4Helms"};
+ { 16, 29761, "", "=q4=Helm of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T5HEAD"};
{ 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
{ 28, 499438, "", "=q4=Smoldering Emberwyrm", "=ds=#e12#", [AtlasLoot_Difficulty.MIN_DIF] = AtlasLoot_Difficulty.Heroic, "" };
};
@@ -2518,7 +2520,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T5Shoulders"};
+ { 16, 30249, "", "=q4=Pauldrons of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5SHOULDER"};
{ 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
};
{
@@ -2553,7 +2555,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T5Chests"};
+ { 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#"};
@@ -2745,859 +2747,951 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
--- Ashtongue Deathsworn ---
----------------------------
- AtlasLoot_Data["Ashtongue1"] = {
- { 1, 0, "INV_Misc_Gem_Pearl_05", "=q6=#r2#", ""};
- { 2, 32444, "", "=q1=Plans: Shadesteel Girdle", "=ds=#p2# (375)"};
- { 3, 32442, "", "=q1=Plans: Shadesteel Bracers", "=ds=#p2# (375)"};
- { 4, 32436, "", "=q1=Pattern: Redeemed Soul Cinch", "=ds=#p7# (375)"};
- { 5, 32435, "", "=q1=Pattern: Redeemed Soul Legguards", "=ds=#p7# (375)"};
- { 6, 32430, "", "=q1=Pattern: Bracers of Shackled Souls", "=ds=#p7# (375)"};
- { 7, 32429, "", "=q1=Pattern: Boots of Shackled Souls", "=ds=#p7# (375)"};
- { 8, 32440, "", "=q1=Pattern: Soulguard Girdle", "=ds=#p8# (375)"};
- { 9, 32438, "", "=q1=Pattern: Soulguard Bracers", "=ds=#p8# (375)"};
- { 16, 0, "INV_Misc_Gem_Pearl_05", "=q6=#r3#", ""};
- { 17, 32443, "", "=q1=Plans: Shadesteel Greaves", "=ds=#p2# (375)"};
- { 18, 32441, "", "=q1=Plans: Shadesteel Sabots", "=ds=#p2# (375)"};
- { 19, 32433, "", "=q1=Pattern: Redeemed Soul Mocassins", "=ds=#p7# (375)"};
- { 20, 32434, "", "=q1=Pattern: Redeemed Soul Wristguards", "=ds=#p7# (375)"};
- { 21, 32431, "", "=q1=Pattern: Greaves of Shackled Souls", "=ds=#p7# (375)"};
- { 22, 32432, "", "=q1=Pattern: Waistguard of Shackled Souls", "=ds=#p7# (375)"};
- { 23, 32447, "", "=q1=Pattern: Night's End", "=ds=#p8# (375)"};
- { 24, 32439, "", "=q1=Pattern: Soulguard Leggings", "=ds=#p8# (375)"};
- { 25, 32437, "", "=q1=Pattern: Soulguard Slippers", "=ds=#p8# (375)"};
- Next = "Ashtongue2";
- Back = "REPMENU_BURNINGCRUSADE";
- };
-
- AtlasLoot_Data["Ashtongue2"] = {
- { 1, 0, "INV_Misc_Gem_Pearl_05", "=q6=#r5#", ""};
- { 2, 32486, "", "=q4=Ashtongue Talisman of Equilibrium", "=ds=#s14#, =q1=#m1# =ds=#c1#"};
- { 3, 32487, "", "=q4=Ashtongue Talisman of Swiftness", "=ds=#s14#, =q1=#m1# =ds=#c2#"};
- { 4, 32488, "", "=q4=Ashtongue Talisman of Insight", "=ds=#s14#, =q1=#m1# =ds=#c3#"};
- { 5, 32489, "", "=q4=Ashtongue Talisman of Zeal", "=ds=#s14#, =q1=#m1# =ds=#c4#"};
- { 6, 32490, "", "=q4=Ashtongue Talisman of Acumen", "=ds=#s14#, =q1=#m1# =ds=#c5#"};
- { 7, 32492, "", "=q4=Ashtongue Talisman of Lethality", "=ds=#s14#, =q1=#m1# =ds=#c6#"};
- { 8, 32491, "", "=q4=Ashtongue Talisman of Vision", "=ds=#s14#, =q1=#m1# =ds=#c7#"};
- { 9, 32493, "", "=q4=Ashtongue Talisman of Shadows", "=ds=#s14#, =q1=#m1# =ds=#c8#"};
- { 10, 32485, "", "=q4=Ashtongue Talisman of Valor", "=ds=#s14#, =q1=#m1# =ds=#c9#"};
- Prev = "Ashtongue1";
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["CExpedition1"] = {
- { 1, 0, "INV_Misc_Ammo_Arrow_02", "=q6=#r2#", ""};
- { 2, 25737, "", "=q3=Pattern: Heavy Clefthoof Boots", "=ds=#p7# (355)"};
- { 3, 24417, "", "=q2=Scout's Arrow", "=ds=#w17#"};
- { 4, 23814, "", "=q1=Schematic: Green Smoke Flare", "=ds=#p5# (335)"};
- { 5, 24429, "", "=q1=Expedition Flare", ""};
- { 16, 0, "INV_Misc_Ammo_Arrow_02", "=q6=#r3#", ""};
- { 17, 25838, "", "=q3=Warden's Hauberk", "=ds=#s5#, #a2#"};
- { 18, 25836, "", "=q3=Preserver's Cudgel", "=ds=#h3#, #w6#"};
- { 19, 25835, "", "=q3=Explorer's Walking Stick", "=ds=#h2#, #w9#"};
- { 20, 25735, "", "=q3=Pattern: Heavy Clefthoof Vest", "=ds=#p7# (360)"};
- { 21, 25736, "", "=q3=Pattern: Heavy Clefthoof Leggings", "=ds=#p7# (355)"};
- { 22, 29194, "", "=q2=Arcanum of Nature Warding", "#s1# #e17#"};
- { 23, 25869, "", "=q1=Recipe: Transmute Earthstorm Diamond", "=ds=#p1# (350)"};
- { 24, 32070, "", "=q1=Recipe: Earthen Elixir", "=ds=#p1# (320)"};
- { 25, 23618, "", "=q1=Plans: Adamantite Sharpening Stone", "=ds=#p2# (350)"};
- { 26, 28632, "", "=q1=Plans: Adamantite Weightstone", "=ds=#p2# (350)"};
- { 27, 25526, "", "=q1=Plans: Greater Rune of Warding", "=ds=#p2# (350)"};
- { 28, 29720, "", "=q1=Pattern: Clefthide Leg Armor", "=ds=#p7# (335)"};
- { 29, 30623, "", "=q1=Reservoir Key", "=ds=#e9#"};
- Next = "CExpedition2";
- Back = "REPMENU_BURNINGCRUSADE";
- };
-
- AtlasLoot_Data["CExpedition2"] = {
- { 1, 0, "INV_Misc_Ammo_Arrow_02", "=q6=#r4#", ""};
- { 2, 31392, "", "=q4=Plans: Wildguard Helm", "=ds=#p2# (375)"};
- { 3, 31391, "", "=q4=Plans: Wildguard Leggings", "=ds=#p2# (375)"};
- { 4, 29174, "", "=q3=Watcher's Cowl", "=ds=#s1#, #a1#"};
- { 5, 29173, "", "=q3=Strength of the Untamed", "=ds=#s2#"};
- { 6, 31949, "", "=q3=Warden's Arrow", "=ds=#w17#"};
- { 7, 24183, "", "=q3=Design: Nightseye Panther", "=ds=#p12# (370)"};
- { 8, 29192, "", "=q2=Arcanum of Ferocity", "=ds=#s1# #e17#"};
- { 9, 22918, "", "=q2=Recipe: Transmute Primal Water to Air", "=ds=#p1# (350)"};
- { 10, 28271, "", "=q2=Formula: Enchant Gloves - Spell Strike", "=ds=#p4# (360)"};
- { 16, 0, "INV_Misc_Ammo_Arrow_02", "=q6=#r5#", ""};
- { 17, 29170, "", "=q4=Windcaller's Orb", "=ds=#s15#"};
- { 18, 29172, "", "=q4=Ashyen's Gift", "=ds=#s13#"};
- { 19, 29171, "", "=q4=Earthwarden", "=ds=#h2#, #w6#"};
- { 20, 33999, "", "=q4=Cenarion War Hippogryph", "=ds=#e12#"};
- { 21, 31390, "", "=q4=Plans: Wildguard Breastplate", "=ds=#p2# (375)"};
- { 22, 31402, "", "=q4=Design: The Natural Ward", "=ds=#p12# (375)"};
- { 23, 33149, "", "=q3=Formula: Enchant Cloak - Stealth", "=ds=#p4# (300)"};
- { 24, 31356, "", "=q2=Recipe: Flask of Distilled Wisdom", "=ds=#p1# (300)"};
- { 25, 22922, "", "=q1=Recipe: Major Nature Protection Potion", "=ds=#p1# (360)"};
- { 26, 29721, "", "=q1=Pattern: Nethercleft Leg Armor", "=ds=#p7# (365)"};
- { 27, 31804, "", "=q1=Cenarion Expedition Tabard", "=ds=#s7#"};
- Prev = "CExpedition1";
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["HonorHold1"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#r2#", ""};
- { 2, 29213, "", "=q3=Pattern: Felstalker Belt", "=ds=#p7# (350)"};
- { 3, 23142, "", "=q2=Design: Enduring Deep Peridot", "=ds=#p12# (315)"};
- { 4, 22531, "", "=q1=Formula: Enchant Bracer - Superior Healing", "=ds=#p4# (325)"};
- { 5, 24007, "", "=q1=Footman's Waterskin", "=ds=#e4#"};
- { 6, 24008, "", "=q1=Dried Mushroom Rations", "=ds=#e3#"};
- { 16, 0, "INV_BannerPVP_02", "=q6=#r3#", ""};
- { 17, 25826, "", "=q3=Sage's Band", "=ds=#s13#"};
- { 18, 25825, "", "=q3=Footman's Longsword", "=ds=#h1#, #w10#"};
- { 19, 29214, "", "=q3=Pattern: Felstalker Bracers", "=ds=#p7# (360)"};
- { 20, 29215, "", "=q3=Pattern: Felstalker Breastplate", "=ds=#p7# (360)"};
- { 21, 29196, "", "=q2=Arcanum of Fire Warding", "=ds=#s1# #e17#"};
- { 22, 25870, "", "=q1=Recipe: Transmute Skyfire Diamond", "=ds=#p1# (350)"};
- { 23, 22905, "", "=q1=Recipe: Elixir of Major Agility", "=ds=#p1# (330)"};
- { 24, 29719, "", "=q1=Pattern: Cobrahide Leg Armor", "=ds=#p7# (335)"};
- { 25, 30622, "", "=q1=Flamewrought Key", "=ds=#e9#"};
- Next = "HonorHold2";
- Back = "REPMENU_BURNINGCRUSADE";
- };
-
- AtlasLoot_Data["HonorHold2"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#r4#", ""};
- { 2, 29169, "", "=q3=Ring of Convalescence", "=ds=#s13#"};
- { 3, 29166, "", "=q3=Hellforged Halberd", "=ds=#w7#"};
- { 4, 32883, "", "=q3=Felbane Slugs", "=ds=#w18#"};
- { 5, 24180, "", "=q3=Design: Dawnstone Crab", "=ds=#p12# (370)"};
- { 6, 29189, "", "=q2=Arcanum of Renewal", "=ds=#s1# #e17#"};
- { 7, 22547, "", "=q1=Formula: Enchant Chest - Exceptional Stats", "=ds=#p4# (345)"};
- { 8, 34218, "", "=q1=Pattern: Netherscale Ammo Pouch", "=ds=#p7# (350)"};
- { 16, 0, "INV_BannerPVP_02", "=q6=#r5#", ""};
- { 17, 29153, "", "=q4=Blade of the Archmage", "=ds=#h3#, #w10#"};
- { 18, 29156, "", "=q4=Honor's Call", "=ds=#h1#, #w10#"};
- { 19, 29151, "", "=q4=Veteran's Musket", "=ds=#w5#"};
- { 20, 33150, "", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# (300)"};
- { 21, 23619, "", "=q1=Plans: Felsteel Shield Spike", "=ds=#p2# (360)"};
- { 22, 29722, "", "=q1=Pattern: Nethercobra Leg Armor", "=ds=#p7# (365)"};
- { 23, 23999, "", "=q1=Honor Hold Tabard", "=ds=#s7#"};
- Prev = "HonorHold1";
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["KeepersofTime1"] = {
- { 1, 0, "Ability_Warrior_VictoryRush", "=q6=#r3#", ""};
- { 2, 29198, "", "=q2=Arcanum of Frost Warding", "=ds=#s1# #e17#"};
- { 3, 28272, "", "=q2=Formula: Enchant Gloves - Major Spellpower", "=ds=#p4# (360)"};
- { 4, 22536, "", "=q1=Formula: Enchant Ring - Spellpower", "=ds=#p4# (360)"};
- { 5, 25910, "", "=q1=Design: Enigmatic Skyfire Diamond", "=ds=#p12# (365)"};
- { 6, 33160, "", "=q1=Design: Facet of Eternity", "=ds=#p12# (360)"};
- { 7, 29713, "", "=q1=Pattern: Drums of Panic", "=ds=#p7# (370)"};
- { 8, 30635, "", "=q1=Key of Time", "=ds=#e9#"};
- { 16, 0, "Ability_Warrior_VictoryRush", "=q6=#r4#", ""};
- { 17, 29184, "", "=q3=Timewarden's Leggings", "=ds=#s11#, #a4#"};
- { 18, 29185, "", "=q3=Continuum Blade", "=ds=#h3#, #w10#"};
- { 19, 24181, "", "=q3=Design: Living Ruby Serpent", "=ds=#p12# (370)"};
- { 20, 24174, "", "=q3=Design: Pendant of Frozen Flame", "=ds=#p12# (360)"};
- { 21, 29186, "", "=q2=Arcanum of the Defender", "=ds=#s1# #e17#"};
- { 22, 33158, "", "=q1=Design: Stone of Blades", "=ds=#p12# (360)"};
- { 24, 0, "Ability_Warrior_VictoryRush", "=q6=#r5#", ""};
- { 25, 29183, "", "=q4=Bindings of the Timewalker", "=ds=#s8#, #a1#"};
- { 26, 29181, "", "=q4=Timelapse Shard", "=ds=#s14#"};
- { 27, 29182, "", "=q4=Riftmaker", "=ds=#h1#, #w4#"};
- { 28, 33152, "", "=q3=Formula: Enchant Gloves - Superior Agility", "=ds=#p4# (300)"};
- { 29, 31355, "", "=q2=Recipe: Flask of Supreme Power", "=ds=#p1# (300)"};
- { 30, 31777, "", "=q1=Keepers of Time Tabard", "=ds=#s7#"};
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["Kurenai1"] = {
- { 1, 0, "INV_Misc_Foot_Centaur", "=q6=#r2#", ""};
- { 2, 29217, "", "=q3=Pattern: Netherfury Belt", "=ds=#p7# (340)"};
- { 4, 0, "INV_Misc_Foot_Centaur", "=q6=#r3#", ""};
- { 5, 29144, "", "=q3=Worg Hide Quiver", "=ds=#m14# #w19# =q1=#m1# =ds=#c2#"};
- { 6, 29219, "", "=q3=Pattern: Netherfury Leggings", "=ds=#p7# (340)"};
- { 7, 34175, "", "=q1=Pattern: Drums of Restoration", "=ds=#p7# (350)"};
- { 8, 34173, "", "=q1=Pattern: Drums of Speed", "=ds=#p7# (345)"};
- { 9, 30444, "", "=q1=Pattern: Reinforced Mining Bag", "=ds=#p7# (325)"};
- { 11, 0, "INV_Misc_Foot_Centaur", "=q6=#r4#", ""};
- { 12, 29148, "", "=q3=Blackened Leather Spaulders", "=ds=#s3#, #a2#"};
- { 13, 29142, "", "=q3=Kurenai Kilt", "=ds=#s11#, #a2#"};
- { 14, 29146, "", "=q3=Band of Elemental Spirits", "=ds=#s13#"};
- { 15, 29218, "", "=q3=Pattern: Netherfury Boots", "=ds=#p7# (350)"};
- { 16, 30443, "", "=q2=Recipe: Transmute Primal Fire to Earth", "=ds=#p1# (350)"};
- { 18, 0, "INV_Misc_Foot_Centaur", "=q6=#r5#", ""};
- { 19, 29227, "", "=q4=Reins of the Cobalt War Talbuk", "=ds=#e12#"};
- { 20, 29229, "", "=q4=Reins of the Silver War Talbuk", "=ds=#e12#"};
- { 21, 29230, "", "=q4=Reins of the Tan War Talbuk", "=ds=#e12#"};
- { 22, 29231, "", "=q4=Reins of the White War Talbuk", "=ds=#e12#"};
- { 23, 31830, "", "=q4=Reins of the Cobalt Riding Talbuk", "=ds=#e12#"};
- { 24, 31832, "", "=q4=Reins of the Silver Riding Talbuk", "=ds=#e12#"};
- { 25, 31834, "", "=q4=Reins of the Tan Riding Talbuk", "=ds=#e12#"};
- { 26, 31836, "", "=q4=Reins of the White Riding Talbuk", "=ds=#e12#"};
- { 27, 29140, "", "=q3=Cloak of the Ancient Spirits", "=ds=#s4#"};
- { 28, 29136, "", "=q3=Far Seer's Helm", "=ds=#s1#, #a3#"};
- { 29, 29138, "", "=q3=Arechron's Gift", "=ds=#h2#, #w6#"};
- { 30, 31774, "", "=q1=Kurenai Tabard", "=ds=#s7#"};
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["LowerCity1"] = {
- { 1, 0, "Ability_Rogue_MasterOfSubtlety", "=q6=#r2#", ""};
- { 2, 23138, "", "=q2=Design: Potent Flame Spessarite", "=ds=#p12# (325)"};
- { 4, 0, "Ability_Rogue_MasterOfSubtlety", "=q6=#r4#", ""};
- { 5, 30836, "", "=q3=Leggings of the Skettis Exile", "=ds=#s11#, #a1#"};
- { 6, 30835, "", "=q3=Salvager's Hauberk", "=ds=#s5#, #a3#"};
- { 7, 30841, "", "=q3=Lower City Prayerbook", "=ds=#s14#"};
- { 8, 24179, "", "=q3=Design: Felsteel Boar", "=ds=#p12# (370)"};
- { 9, 24175, "", "=q3=Design: Pendant of Thawing", "=ds=#p12# (360)"};
- { 10, 30846, "", "=q2=Arcanum of the Outcast", "=ds=#s1# #e17#"};
- { 11, 22910, "", "=q2=Recipe: Elixir of Major Shadow Power", "=ds=#p1# (350)"};
- { 12, 33157, "", "=q1=Design: Falling Star", "=ds=#p12# (360)"};
- { 13, 34200, "", "=q1=Pattern: Quiver of a Thousand Arrows", "=ds=#p7# (350)"};
- { 16, 0, "Ability_Rogue_MasterOfSubtlety", "=q6=#r3#", ""};
- { 17, 29199, "", "=q2=Arcanum of Shadow Warding", "=ds=#s1# #e17#"};
- { 18, 22538, "", "=q1=Formula: Enchant Ring - Stats", "=ds=#p4# (375)"};
- { 19, 30833, "", "=q1=Pattern: Cloak of Arcane Evasion", "=ds=#p8# (350)"};
- { 20, 30633, "", "=q1=Auchenai Key", "=ds=#e9#"};
- { 22, 0, "Ability_Rogue_MasterOfSubtlety", "=q6=#r5#", ""};
- { 23, 30834, "", "=q4=Shapeshifter's Signet", "=ds=#s13#"};
- { 24, 30832, "", "=q4=Gavel of Unearthed Secrets", "=ds=#h3#, #w6#"};
- { 25, 30830, "", "=q4=Trident of the Outcast Tribe", "=ds=#w7#"};
- { 26, 33148, "", "=q3=Formula: Enchant Cloak - Dodge", "=ds=#p4# (300)"};
- { 27, 31357, "", "=q2=Recipe: Flask of Chromatic Resistance", "=ds=#p1# (300)"};
- { 28, 31778, "", "=q1=Lower City Tabard", "=ds=#s7#"};
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["Netherwing1"] = {
- { 1, 0, "Ability_Mount_Netherdrakepurple", "=q6=#r2#", ""};
- { 2, 32694, "", "=q2=Overseer's Badge", "=ds=#s14#"};
- { 4, 0, "Ability_Mount_Netherdrakepurple", "=q6=#r3#", ""};
- { 5, 32695, "", "=q3=Captain's Badge", "=ds=#s14#"};
- { 6, 32863, "", "=q3=Skybreaker Whip", "=q1=#m4#: =ds=#s14#"};
- { 8, 0, "Ability_Mount_Netherdrakepurple", "=q6=#r4#", ""};
- { 9, 32864, "", "=q3=Commander's Badge", "=ds=#s14#"};
- { 16, 0, "Ability_Mount_Netherdrakepurple", "=q6=#r5#", ""};
- { 17, 32858, "", "=q4=Reins of the Azure Netherwing Drake", "=ds=#e12#"};
- { 18, 32859, "", "=q4=Reins of the Cobalt Netherwing Drake", "=ds=#e12#"};
- { 19, 32857, "", "=q4=Reins of the Onyx Netherwing Drake", "=ds=#e12#"};
- { 20, 32860, "", "=q4=Reins of the Purple Netherwing Drake", "=ds=#e12#"};
- { 21, 32861, "", "=q4=Reins of the Veridian Netherwing Drake", "=ds=#e12#"};
- { 22, 32862, "", "=q4=Reins of the Violet Netherwing Drake", "=ds=#e12#"};
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["Ogrila1"] = {
- { 1, 0, "INV_DataCrystal01", "=q6=#r2#", ""};
- { 2, 32910, "", "=q1=Red Ogre Brew Special", "=q1=#m4#: =ds=#e2#"};
- { 3, 32909, "", "=q1=Blue Ogre Brew Special", "=q1=#m4#: =ds=#e2#"};
- { 5, 0, "INV_DataCrystal01", "=q6=#r3#", ""};
- { 6, 32784, "", "=q1=Red Ogre Brew", "=ds=#e2#", "2 #ogrilashard#", ""};
- { 7, 32783, "", "=q1=Blue Ogre Brew", "=ds=#e2#", "3 #ogrilashard#", ""};
- { 14, 32572, "", "=q3=Apexis Crystal", "=ds=#m17#"};
- { 16, 0, "INV_DataCrystal01", "=q6=#r4#", ""};
- { 17, 32653, "", "=q3=Apexis Cloak", "=ds=#s4#", "1 #ogrilacrystal# 50 #ogrilashard#", ""};
- { 18, 32654, "", "=q3=Crystalforged Trinket", "=ds=#s14#", "1 #ogrilacrystal# 50 #ogrilashard#", ""};
- { 19, 32652, "", "=q3=Ogri'la Aegis", "=ds=#w8#", "1 #ogrilacrystal# 50 #ogrilashard#", ""};
- { 20, 32650, "", "=q3=Cerulean Crystal Rod", "=ds=#w12#", "1 #ogrilacrystal# 50 #ogrilashard#", ""};
- { 22, 0, "INV_DataCrystal01", "=q6=#r5#", ""};
- { 23, 32647, "", "=q4=Shard-bound Bracers", "=ds=#s8#, #a2#", "4 #ogrilacrystal# 100 #ogrilashard#", ""};
- { 24, 32648, "", "=q4=Vortex Walking Boots", "=ds=#s12#, #a4#", "4 #ogrilacrystal# 100 #ogrilashard#", ""};
- { 25, 32651, "", "=q4=Crystal Orb of Enlightenment", "=ds=#s15#", "4 #ogrilacrystal# 100 #ogrilashard#", ""};
- { 26, 32645, "", "=q4=Crystalline Crossbow", "=ds=#w3#", "4 #ogrilacrystal# 100 #ogrilashard#", ""};
- { 27, 32828, "", "=q1=Ogri'la Tabard", "=ds=#s7#", "10 #ogrilashard#", ""};
- { 29, 32569, "", "=q1=Apexis Shard", "=ds=#m17#"};
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["Skyguard1"] = {
- { 1, 0, "INV_Misc_Ribbon_01", "=q6=#r2#", ""};
- { 2, 32722, "", "=q1=Enriched Terocone Juice", "=ds=#e4#"};
- { 4, 0, "INV_Misc_Ribbon_01", "=q6=#r3#", ""};
- { 5, 32721, "", "=q1=Skyguard Rations", "=ds=#e3#"};
- { 7, 0, "INV_Misc_Ribbon_01", "=q6=#r4#", ""};
- { 8, 32539, "", "=q3=Skyguard's Drape", "=ds=#s4#"};
- { 9, 32538, "", "=q3=Skywitch's Drape", "=ds=#s4#"};
- { 16, 0, "INV_Misc_Ribbon_01", "=q6=#r5#", ""};
- { 17, 32770, "", "=q4=Skyguard Silver Cross", "=ds=#s14#"};
- { 18, 32771, "", "=q4=Airman's Ribbon of Gallantry", "=ds=#s14#"};
- { 19, 32319, "", "=q4=Blue Riding Nether Ray", "=ds=#e12#"};
- { 20, 32314, "", "=q4=Green Riding Nether Ray", "=ds=#e12#"};
- { 21, 32317, "", "=q4=Red Riding Nether Ray", "=ds=#e12#"};
- { 22, 32316, "", "=q4=Purple Riding Nether Ray", "=ds=#e12#"};
- { 23, 32318, "", "=q4=Silver Riding Nether Ray", "=ds=#e12#"};
- { 24, 38628, "", "=q3=Nether Ray Fry", "=ds=#e13#"};
- { 25, 32445, "", "=q1=Skyguard Tabard", "=ds=#s7#"};
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["SunOffensive1"] = {
- { 1, 0, "INV_Misc_Statue_04", "=q6=#r2#", ""};
- { 2, 35244, "", "=q1=Design: Bold Crimson Spinel", "=ds=#p12# (375)"};
- { 3, 35245, "", "=q1=Design: Bright Crimson Spinel", "=ds=#p12# (375)"};
- { 4, 35255, "", "=q1=Design: Brilliant Lionseye", "=ds=#p12# (375)"};
- { 5, 35246, "", "=q1=Design: Delicate Crimson Spinel", "=ds=#p12# (375)"};
- { 6, 35256, "", "=q1=Design: Gleaming Lionseye", "=ds=#p12# (375)"};
- { 7, 35262, "", "=q1=Design: Lustrous Empyrean Sapphire", "=ds=#p12# (375)"};
- { 8, 35248, "", "=q1=Design: Runed Crimson Spinel", "=ds=#p12# (375)"};
- { 9, 35260, "", "=q1=Design: Smooth Lionseye", "=ds=#p12# (375)"};
- { 10, 35263, "", "=q1=Design: Solid Empyrean Sapphire", "=ds=#p12# (375)"};
- { 11, 35264, "", "=q1=Design: Sparkling Empyrean Sapphire", "=ds=#p12# (375)"};
- { 12, 35249, "", "=q1=Design: Subtle Crimson Spinel", "=ds=#p12# (375)"};
- { 13, 35250, "", "=q1=Design: Teardrop Crimson Spinel", "=ds=#p12# (375)"};
- { 14, 35261, "", "=q1=Design: Thick Lionseye", "=ds=#p12# (375)"};
- { 15, 34780, "", "=q1=Naaru Ration", "=ds=#e3#"};
- { 16, 0, "INV_Misc_Statue_04", "=q6=#r3#", ""};
- { 17, 35238, "", "=q1=Design: Balanced Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 18, 35251, "", "=q1=Design: Dazzling Seaspray Emerald", "=ds=#p12# (375)"};
- { 19, 35266, "", "=q1=Design: Glinting Pyrestone", "=ds=#p12# (375)"};
- { 20, 35239, "", "=q1=Design: Glowing Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 21, 35240, "", "=q1=Design: Infused Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 22, 35253, "", "=q1=Design: Jagged Seaspray Emerald", "=ds=#p12# (375)"};
- { 23, 35268, "", "=q1=Design: Luminous Pyrestone", "=ds=#p12# (375)"};
- { 24, 35269, "", "=q1=Design: Potent Pyrestone", "=ds=#p12# (375)"};
- { 25, 35254, "", "=q1=Design: Radiant Seaspray Emerald", "=ds=#p12# (375)"};
- { 26, 34872, "", "=q1=Formula: Void Shatter", "=ds=#p4# (375)"};
- { 27, 35500, "", "=q1=Formula: Enchant Chest - Defense", "=ds=#p4# (360)"};
- Next = "SunOffensive2";
- Back = "REPMENU_BURNINGCRUSADE";
- };
-
- AtlasLoot_Data["SunOffensive2"] = {
- { 1, 0, "INV_Misc_Statue_04", "=q6=#r4#", ""};
- { 2, 35769, "", "=q4=Design: Forceful Seaspray Emerald", "=ds=#p12# (375)"};
- { 3, 35768, "", "=q4=Design: Quick Lionseye", "=ds=#p12# (375)"};
- { 4, 35767, "", "=q4=Design: Reckless Pyrestone", "=ds=#p12# (375)"};
- { 5, 35766, "", "=q4=Design: Steady Seaspray Emerald", "=ds=#p12# (375)"};
- { 6, 34665, "", "=q3=Bombardier's Blade", "=ds=#h1#, #w4#"};
- { 7, 34667, "", "=q3=Archmage's Guile", "=ds=#h3#, #w10#"};
- { 8, 34672, "", "=q3=Inuuro's Blade", "=ds=#h1#, #w10#"};
- { 9, 34666, "", "=q3=The Sunbreaker", "=ds=#h1#, #w10#"};
- { 10, 34671, "", "=q3=K'iru's Presage", "=ds=#h3#, #w6#"};
- { 11, 34670, "", "=q3=Seeker's Gavel", "=ds=#h3#, #w6#"};
- { 12, 34673, "", "=q3=Legionfoe", "=ds=#h2#, #w1#"};
- { 13, 34674, "", "=q3=Truestrike Crossbow", "=ds=#w3#"};
- { 14, 29193, "", "=q2=Arcanum of the Gladiator", "=ds=#s1# #e17#"};
- { 17, 35252, "", "=q1=Design: Enduring Seaspray Emerald", "=ds=#p12# (375)"};
- { 18, 35697, "", "=q1=Design: Figurine - Crimson Serpent", "=ds=#p12# (375)"};
- { 19, 35695, "", "=q1=Design: Figurine - Empyrean Tortoise", "=ds=#p12# (375)"};
- { 20, 35696, "", "=q1=Design: Figurine - Khorium Boar", "=ds=#p12# (375)"};
- { 21, 35699, "", "=q1=Design: Figurine - Seaspray Albatross", "=ds=#p12# (375)"};
- { 22, 35698, "", "=q1=Design: Figurine - Shadowsong Panther", "=ds=#p12# (375)"};
- { 23, 35259, "", "=q1=Design: Rigid Lionseye", "=ds=#p12# (375)"};
- { 24, 35241, "", "=q1=Design: Royal Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 25, 35271, "", "=q1=Design: Wicked Pyrestone", "=ds=#p12# (375)"};
- { 26, 35505, "", "=q1=Design: Ember Skyfire Diamond", "=ds=#p12# (370)"};
- { 27, 35502, "", "=q1=Design: Eternal Earthstorm Diamond", "=ds=#p12# (370)"};
- { 28, 35708, "", "=q1=Design: Regal Nightseye", "=ds=#p12# (350)"};
- Next = "SunOffensive3";
- Prev = "SunOffensive1";
- Back = "REPMENU_BURNINGCRUSADE";
- };
-
- AtlasLoot_Data["SunOffensive3"] = {
- { 1, 0, "INV_Misc_Statue_04", "=q6=#r5#", ""};
- { 2, 34678, "", "=q4=Shattered Sun Pendant of Acumen", "=ds=#s2#"};
- { 3, 34679, "", "=q4=Shattered Sun Pendant of Might", "=ds=#s2#"};
- { 4, 34680, "", "=q4=Shattered Sun Pendant of Resolve", "=ds=#s2#"};
- { 5, 34677, "", "=q4=Shattered Sun Pendant of Restoration", "=ds=#s2#"};
- { 6, 34676, "", "=q4=Dawnforged Defender", "=ds=#w8#"};
- { 7, 34675, "", "=q4=Sunward Crest", "=ds=#w8#"};
- { 8, 35325, "", "=q3=Design: Forceful Talasite", "=ds=#p12# (350)"};
- { 9, 35322, "", "=q3=Design: Quick Dawnstone", "=ds=#p12# (350)"};
- { 10, 35323, "", "=q3=Design: Reckless Noble Topaz", "=ds=#p12# (350)"};
- { 11, 35221, "", "=q1=Tabard of the Shattered Sun", "=ds=#s7#"};
- { 17, 35247, "", "=q1=Design: Flashing Crimson Spinel", "=ds=#p12# (375)"};
- { 18, 35257, "", "=q1=Design: Great Lionseye", "=ds=#p12# (375)"};
- { 19, 35267, "", "=q1=Design: Inscribed Pyrestone", "=ds=#p12# (375)"};
- { 20, 35258, "", "=q1=Design: Mystic Lionseye", "=ds=#p12# (375)"};
- { 21, 37504, "", "=q1=Design: Purified Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 22, 35242, "", "=q1=Design: Shifting Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 23, 35243, "", "=q1=Design: Sovereign Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 24, 35265, "", "=q1=Design: Stormy Empyrean Sapphire", "=ds=#p12# (375)"};
- { 25, 35270, "", "=q1=Design: Veiled Pyrestone", "=ds=#p12# (375)"};
- { 26, 35755, "", "=q1=Recipe: Assassin's Alchemist Stone", "=ds=#p1# (375)"};
- { 27, 35752, "", "=q1=Recipe: Guardian's Alchemist Stone", "=ds=#p1# (375)"};
- { 28, 35754, "", "=q1=Recipe: Redeemer's Alchemist Stone", "=ds=#p1# (375)"};
- { 29, 35753, "", "=q1=Recipe: Sorcerer's Alchemist Stone", "=ds=#p1# (375)"};
- Prev = "SunOffensive2";
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["Sporeggar1"] = {
- { 1, 0, "INV_Mushroom_10", "=q6=#r2#", ""};
- { 2, 27689, "", "=q1=Recipe: Sporeling Snack", "=ds=#p3# (310)", "2 #glowcap#", ""};
- { 3, 30156, "", "=q1=Recipe: Clam Bar", "=ds=#p3# (300)", "1 #glowcap#", ""};
- { 4, 25548, "", "=q1=Tallstalk Mushroom", "=ds=#e3#", "1 #glowcap#", ""};
- { 5, 24539, "", "=q1=Marsh Lichen", "=ds=#e3#", "2 #glowcap#", ""};
- { 7, 0, "INV_Mushroom_10", "=q6=#r3#", ""};
- { 8, 25827, "", "=q3=Muck-Covered Drape", "=ds=#s4#", "25 #glowcap#", ""};
- { 9, 25828, "", "=q3=Petrified Lichen Guard", "=ds=#w8#", "15 #glowcap#", ""};
- { 10, 25550, "", "=q1=Redcap Toadstool", "=ds=#e3#", "1 #glowcap#", ""};
- { 12, 24245, "", "=q1=Glowcap", "=ds=#m17#", "", ""};
- { 16, 0, "INV_Mushroom_10", "=q6=#r4#", ""};
- { 17, 29150, "", "=q3=Hardened Stone Shard", "=ds=#h1#, #w4#", "45 #glowcap#", ""};
- { 18, 29149, "", "=q3=Sporeling's Firestick", "=ds=#w12#", "20 #glowcap#", ""};
- { 19, 22916, "", "=q2=Recipe: Transmute Primal Earth to Water", "=ds=#p1# (350)", "25 #glowcap#", ""};
- { 20, 38229, "", "=q1=Pattern: Mycah's Botanical Bag", "=ds=#p8# (375)", "25 #glowcap#", ""};
- { 22, 0, "INV_Mushroom_10", "=q6=#r5#", ""};
- { 23, 34478, "", "=q3=Tiny Sporebat", "=ds=#e13#", "30 #glowcap#", ""};
- { 24, 22906, "", "=q2=Recipe: Shrouding Potion", "=ds=#p1# (335)", "30 #glowcap#", ""};
- { 25, 31775, "", "=q1=Sporeggar Tabard", "=ds=#s7#", "10 #glowcap#", ""};
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["Aldor1"] = {
- { 1, 0, "Spell_Holy_SealOfSalvation", "=q6=#r2#", ""};
- { 2, 23149, "", "=q2=Design: Gleaming Golden Draenite", "=ds=#p12# (305)"};
- { 3, 23601, "", "=q1=Plans: Flamebane Bracers", "=ds=#p2# (350)"};
- { 4, 30842, "", "=q1=Pattern: Flameheart Bracers", "=ds=#p8# (350)"};
- { 16, 0, "Spell_Holy_SealOfSalvation", "=q6=#r3#", ""};
- { 17, 29129, "", "=q3=Anchorite's Robes", "=ds=#a1#, #s5#"};
- { 18, 28881, "", "=q2=Inscription of Discipline", "=ds=#s3# #e17#"};
- { 19, 28878, "", "=q2=Inscription of Faith", "=ds=#s3# #e17#"};
- { 20, 28885, "", "=q2=Inscription of Vengeance", "=ds=#s3# #e17#"};
- { 21, 28882, "", "=q2=Inscription of Warding", "=ds=#s3# #e17#"};
- { 22, 23145, "", "=q2=Design: Royal Shadow Draenite", "=ds=#p12# (305)"};
- { 23, 23603, "", "=q1=Plans: Flamebane Gloves", "=ds=#p2# (360)"};
- { 24, 29704, "", "=q1=Pattern: Blastguard Belt", "=ds=#p7# (350)"};
- { 25, 29693, "", "=q1=Pattern: Flamescale Belt", "=ds=#p7# (350)"};
- { 26, 30843, "", "=q1=Pattern: Flameheart Gloves", "=ds=#p8# (360)"};
- { 27, 24293, "", "=q1=Pattern: Silver Spellthread", "=ds=#p8# (335)"};
- Next = "Aldor2";
- Back = "REPMENU_BURNINGCRUSADE";
- };
-
- AtlasLoot_Data["Aldor2"] = {
- { 1, 0, "Spell_Holy_SealOfSalvation", "=q6=#r4#", ""};
- { 2, 29127, "", "=q3=Vindicator's Hauberk", "=ds=#s5#, #a4#"};
- { 3, 29128, "", "=q3=Lightwarden's Band", "=ds=#s13#"};
- { 4, 29130, "", "=q3=Auchenai Staff", "=ds=#h2#, #w9#"};
- { 5, 24177, "", "=q3=Design: Pendant of Shadow's End", "=ds=#p12# (360)"};
- { 6, 23604, "", "=q1=Plans: Flamebane Breastplate", "=ds=#p2# (365)"};
- { 7, 29703, "", "=q1=Pattern: Blastguard Boots", "=ds=#p7# (350)"};
- { 8, 29691, "", "=q1=Pattern: Flamescale Boots", "=ds=#p7# (350)"};
- { 9, 25721, "", "=q1=Pattern: Vindicator's Armor Kit", "=ds=#p7# (325)"};
- { 16, 0, "Spell_Holy_SealOfSalvation", "=q6=#r5#", ""};
- { 17, 29123, "", "=q4=Medallion of the Lightbearer", "=ds=#s2#"};
- { 18, 29124, "", "=q4=Vindicator's Brand", "=ds=#h1#, #w10#"};
- { 19, 28886, "", "=q3=Greater Inscription of Discipline", "=ds=#s3# #e17#"};
- { 20, 28887, "", "=q3=Greater Inscription of Faith", "=ds=#s3# #e17#"};
- { 21, 28888, "", "=q3=Greater Inscription of Vengeance", "=ds=#s3# #e17#"};
- { 22, 28889, "", "=q3=Greater Inscription of Warding", "=ds=#s3# #e17#"};
- { 23, 23602, "", "=q1=Plans: Flamebane Helm", "=ds=#p2# (355)"};
- { 24, 29702, "", "=q1=Pattern: Blastguard Pants", "=ds=#p7# (350)"};
- { 25, 29689, "", "=q1=Pattern: Flamescale Leggings", "=ds=#p7# (350)"};
- { 26, 24295, "", "=q1=Pattern: Golden Spellthread", "=ds=#p8# (375)"};
- { 27, 30844, "", "=q1=Pattern: Flameheart Vest", "=ds=#p8# (370)"};
- { 28, 31779, "", "=q1=Aldor Tabard", "=ds=#s7#"};
- Prev = "Aldor1";
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["Consortium1"] = {
- { 1, 0, "INV_Weapon_Shortblade_31", "=q6=#r2#", ""};
- { 2, 25732, "", "=q3=Pattern: Fel Leather Gloves", "=ds=#p7# (340)"};
- { 3, 28274, "", "=q2=Formula: Enchant Cloak - Spell Penetration", "=ds=#p4# (325)"};
- { 4, 23146, "", "=q2=Design: Shifting Shadow Draenite", "=ds=#p12# (315)"};
- { 5, 23136, "", "=q2=Design: Luminous Flame Spessarite", "=ds=#p12# (305)"};
- { 16, 0, "INV_Weapon_Shortblade_31", "=q6=#r3#", ""};
- { 17, 29457, "", "=q3=Nethershard", "=ds=#h3#, #w4#"};
- { 18, 29456, "", "=q3=Gift of the Ethereal", "=ds=#h1#, #w10#"};
- { 19, 29118, "", "=q3=Smuggler's Ammo Pouch", "=ds=#m14# #w20# =q1=#m1# =ds=#c2#"};
- { 20, 25733, "", "=q3=Pattern: Fel Leather Boots", "=ds=#p7# (350)"};
- { 21, 23134, "", "=q2=Design: Delicate Blood Garnet", "=ds=#p12# (325)"};
- { 22, 23155, "", "=q2=Design: Lustrous Azure Moonstone", "=ds=#p12# (325)"};
- { 23, 23150, "", "=q2=Design: Thick Golden Draenite", "=ds=#p12# (315)"};
- { 24, 22552, "", "=q1=Formula: Enchant Weapon - Major Striking", "=ds=#p4# (340)"};
- { 25, 25908, "", "=q1=Design: Swift Skyfire Diamond", "=ds=#p12# (365)"};
- { 26, 25902, "", "=q1=Design: Powerful Earthstorm Diamond", "=ds=#p12# (365) (#z12#)"};
- { 27, 24314, "", "=q1=Pattern: Bag of Jewels", "=ds=#p8# (340)"};
- Next = "Consortium2";
- Back = "REPMENU_BURNINGCRUSADE";
- };
-
- AtlasLoot_Data["Consortium2"] = {
- { 1, 0, "INV_Weapon_Shortblade_31", "=q6=#r4#", ""};
- { 2, 29117, "", "=q3=Stormspire Vest", "=ds=#s5#, #a1#"};
- { 3, 29116, "", "=q3=Nomad's Leggings", "=ds=#s11#, #a2#"};
- { 4, 29115, "", "=q3=Consortium Blaster", "=ds=#w5#"};
- { 5, 24178, "", "=q3=Design: Pendant of the Null Rune", "=ds=#p12# (360)"};
- { 6, 25734, "", "=q3=Pattern: Fel Leather Leggings", "=ds=#p7# (350)"};
- { 7, 22535, "", "=q1=Formula: Enchant Ring - Striking", "=ds=#p4# (360) (#z12#)"};
- { 8, 23874, "", "=q1=Schematic: Elemental Seaforium Charge", "=ds=#p5# (350)"};
- { 9, 25903, "", "=q1=Design: Bracing Earthstorm Diamond", "=ds=#p12# (365) (#z12#)"};
- { 10, 33156, "", "=q1=Design: Crimson Sun", "=ds=#p12# (360)"};
- { 11, 33305, "", "=q1=Design: Don Julio's Heart", "=ds=#p12# (360)"};
- { 16, 0, "INV_Weapon_Shortblade_31", "=q6=#r5#", ""};
- { 17, 29122, "", "=q4=Nether Runner's Cowl", "=ds=#s1#, #a1#"};
- { 18, 29119, "", "=q4=Haramad's Bargain", "=ds=#s2#"};
- { 19, 29121, "", "=q4=Guile of Khoraazi", "=ds=#h1#, #w4#"};
- { 20, 33622, "", "=q3=Design: Relentless Earthstorm Diamond", "=ds=#p12# (365)"};
- { 21, 31776, "", "=q1=Consortium Tabard", "=ds=#s7#"};
- Prev = "Consortium1";
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["Maghar1"] = {
- { 1, 0, "INV_Misc_Foot_Centaur", "=q6=#r2#", ""};
- { 2, 25741, "", "=q3=Pattern: Netherfury Belt", "=ds=#p7# (340)"};
- { 4, 0, "INV_Misc_Foot_Centaur", "=q6=#r3#", ""};
- { 5, 29143, "", "=q3=Clefthoof Hide Quiver", "=ds=#m14# #w19# =q1=#m1# =ds=#c2#"};
- { 6, 25742, "", "=q3=Pattern: Netherfury Leggings", "=ds=#p7# (340)"};
- { 7, 34174, "", "=q1=Pattern: Drums of Restoration", "=ds=#p7# (350)"};
- { 8, 34172, "", "=q1=Pattern: Drums of Speed", "=ds=#p7# (345)"};
- { 9, 29664, "", "=q1=Pattern: Reinforced Mining Bag", "=ds=#p7# (325)"};
- { 11, 0, "INV_Misc_Foot_Centaur", "=q6=#r4#", ""};
- { 12, 29147, "", "=q3=Talbuk Hide Spaulders", "=ds=#s3#, #a2#"};
- { 13, 29141, "", "=q3=Tempest Leggings", "=ds=#s11#, #a2#"};
- { 14, 29145, "", "=q3=Band of Ancestral Spirits", "=ds=#s13#"};
- { 15, 25743, "", "=q3=Pattern: Netherfury Boots", "=ds=#p7# (350)"};
- { 16, 22917, "", "=q2=Recipe: Transmute Primal Fire to Earth", "=ds=#p1# (350)"};
- { 18, 0, "INV_Misc_Foot_Centaur", "=q6=#r5#", ""};
- { 19, 29102, "", "=q4=Reins of the Cobalt War Talbuk", "=ds=#e12#"};
- { 20, 29104, "", "=q4=Reins of the Silver War Talbuk", "=ds=#e12#"};
- { 21, 29105, "", "=q4=Reins of the Tan War Talbuk", "=ds=#e12#"};
- { 22, 29103, "", "=q4=Reins of the White War Talbuk", "=ds=#e12#"};
- { 23, 31829, "", "=q4=Reins of the Cobalt Riding Talbuk", "=ds=#e12#"};
- { 24, 31831, "", "=q4=Reins of the Silver Riding Talbuk", "=ds=#e12#"};
- { 25, 31833, "", "=q4=Reins of the Tan Riding Talbuk", "=ds=#e12#"};
- { 26, 31835, "", "=q4=Reins of the White Riding Talbuk", "=ds=#e12#"};
- { 27, 29139, "", "=q3=Ceremonial Cover", "=ds=#s4#"};
- { 28, 29135, "", "=q3=Earthcaller's Headdress", "=ds=#s1#, #a3#"};
- { 29, 29137, "", "=q3=Hellscream's Will", "=ds=#h2#, #w1#"};
- { 30, 31773, "", "=q1=Mag'har Tabard", "=ds=#s7#"};
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["ScaleSands1"] = {
- { 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#"};
- Next = "ScaleSands2";
- Back = "REPMENU_BURNINGCRUSADE";
- };
-
- AtlasLoot_Data["ScaleSands2"] = {
- { 1, 0, "INV_Misc_MonsterScales_13", "=q6=#r2#", ""};
- { 2, 32274, "", "=q4=Design: Bold Crimson Spinel", "=ds=#p12# (375)"};
- { 3, 32283, "", "=q4=Design: Bright Crimson Spinel", "=ds=#p12# (375)"};
- { 4, 32277, "", "=q4=Design: Delicate Crimson Spinel", "=ds=#p12# (375)"};
- { 5, 32282, "", "=q4=Design: Runed Crimson Spinel", "=ds=#p12# (375)"};
- { 6, 32284, "", "=q4=Design: Subtle Crimson Spinel", "=ds=#p12# (375)"};
- { 7, 32281, "", "=q4=Design: Teardrop Crimson Spinel", "=ds=#p12# (375)"};
- { 8, 32288, "", "=q4=Design: Lustrous Empyrean Sapphire", "=ds=#p12# (375)"};
- { 9, 32286, "", "=q4=Design: Solid Empyrean Sapphire", "=ds=#p12# (375)"};
- { 10, 32287, "", "=q4=Design: Sparkling Empyrean Sapphire", "=ds=#p12# (375)"};
- { 11, 32290, "", "=q4=Design: Brilliant Lionseye", "=ds=#p12# (375)"};
- { 12, 32293, "", "=q4=Design: Gleaming Lionseye", "=ds=#p12# (375)"};
- { 13, 32291, "", "=q4=Design: Smooth Lionseye", "=ds=#p12# (375)"};
- { 14, 32294, "", "=q4=Design: Thick Lionseye", "=ds=#p12# (375)"};
- { 16, 0, "INV_Misc_MonsterScales_13", "=q6=#r3#", ""};
- { 17, 35763, "", "=q4=Design: Quick Lionseye", "=ds=#p12# (375)"};
- { 18, 32306, "", "=q4=Design: Glinting Pyrestone", "=ds=#p12# (375)"};
- { 19, 32305, "", "=q4=Design: Luminous Pyrestone", "=ds=#p12# (375)"};
- { 20, 32304, "", "=q4=Design: Potent Pyrestone", "=ds=#p12# (375)"};
- { 21, 35762, "", "=q4=Design: Reckless Pyrestone", "=ds=#p12# (375)"};
- { 22, 32299, "", "=q4=Design: Balanced Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 23, 32301, "", "=q4=Design: Glowing Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 24, 32300, "", "=q4=Design: Infused Shadowsong Amethyst", "=ds=#p12# (375)"};
- { 25, 32311, "", "=q4=Design: Dazzling Seaspray Emerald", "=ds=#p12# (375)"};
- { 26, 35765, "", "=q4=Design: Forceful Seaspray Emerald", "=ds=#p12# (375)"};
- { 27, 32312, "", "=q4=Design: Jagged Seaspray Emerald", "=ds=#p12# (375)"};
- { 28, 32310, "", "=q4=Design: Radiant Seaspray Emerald", "=ds=#p12# (375)"};
- { 29, 35764, "", "=q4=Design: Steady Seaspray Emerald", "=ds=#p12# (375)"};
- Next = "ScaleSands3";
- Prev = "ScaleSands1";
- Back = "REPMENU_BURNINGCRUSADE";
- };
-
- AtlasLoot_Data["ScaleSands3"] = {
- { 1, 0, "INV_Misc_MonsterScales_13", "=q6=#r3#", ""};
- { 2, 31737, "", "=q4=Timeless Arrow", "=ds=#w17#"};
- { 3, 31735, "", "=q4=Timeless Shell", "=ds=#w18#"};
- { 5, 0, "INV_Misc_MonsterScales_13", "=q6=#r4#", ""};
- { 6, 32292, "", "=q4=Design: Rigid Lionseye", "=ds=#p12# (375)"};
- { 7, 32308, "", "=q4=Design: Wicked Pyrestone", "=ds=#p12# (375)"};
- { 8, 32309, "", "=q4=Design: Enduring Seaspray Emerald", "=ds=#p12# (375)"};
- { 9, 32302, "", "=q4=Design: Royal Shadowsong Amethyst", "=ds=#p12# (375)"};
- Prev = "ScaleSands2";
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["Scryer1"] = {
- { 1, 0, "Spell_Holy_ChampionsBond", "=q6=#r2#", ""};
- { 2, 23133, "", "=q2=Design: Runed Blood Garnet", "=ds=#p12# (315)"};
- { 3, 23597, "", "=q1=Plans: Enchanted Adamantite Belt", "=ds=#p2# (355)"};
- { 16, 0, "Spell_Holy_ChampionsBond", "=q6=#r3#", ""};
- { 17, 28907, "", "=q2=Inscription of the Blade", "=ds=#s3# #e17#"};
- { 18, 28908, "", "=q2=Inscription of the Knight", "=ds=#s3# #e17#"};
- { 19, 28904, "", "=q2=Inscription of the Oracle", "=ds=#s3# #e17#"};
- { 20, 28903, "", "=q2=Inscription of the Orb", "=ds=#s3# #e17#"};
- { 21, 23143, "", "=q2=Design: Dazzling Deep Peridot", "=ds=#p12# (325)"};
- { 22, 23598, "", "=q1=Plans: Enchanted Adamantite Boots", "=ds=#p2# (355)"};
- { 23, 29701, "", "=q1=Pattern: Enchanted Clefthoof Boots", "=ds=#p7# (350)"};
- { 24, 29682, "", "=q1=Pattern: Enchanted Felscale Gloves", "=ds=#p7# (350)"};
- { 25, 24292, "", "=q1=Pattern: Mystic Spellthread", "=ds=#p8# (335)"};
- Next = "Scryer2";
- Back = "REPMENU_BURNINGCRUSADE";
- };
-
- AtlasLoot_Data["Scryer2"] = {
- { 1, 0, "Spell_Holy_ChampionsBond", "=q6=#r4#", ""};
- { 2, 29131, "", "=q3=Retainer's Leggings", "=ds=#s11#, #a2# "};
- { 3, 29134, "", "=q3=Gauntlets of the Chosen", "=ds=#s9#, #a4# "};
- { 4, 29132, "", "=q3=Scryer's Bloodgem", "=ds=#s14#"};
- { 5, 29133, "", "=q3=Seer's Cane", "=ds=#h2#, #w9#"};
- { 6, 24176, "", "=q3=Design: Pendant of Withering", "=ds=#p12# (360)"};
- { 7, 22908, "", "=q2=Recipe: Elixir of Major Firepower", "=ds=#p1# (345)"};
- { 8, 23599, "", "=q1=Plans: Enchanted Adamantite Breastplate", "=ds=#p2# (360)"};
- { 9, 29700, "", "=q1=Pattern: Enchanted Clefthoof Gloves", "=ds=#p7# (350)"};
- { 10, 29684, "", "=q1=Pattern: Enchanted Felscale Boots", "=ds=#p7# (350)"};
- { 11, 25722, "", "=q1=Pattern: Magister's Armor Kit", "=ds=#p7# (325)"};
- { 16, 0, "Spell_Holy_ChampionsBond", "=q6=#r5#", ""};
- { 17, 29126, "", "=q4=Seer's Signet", "=ds=#s13#"};
- { 18, 29125, "", "=q4=Retainer's Blade", "=ds=#h1#, #w4#"};
- { 19, 28910, "", "=q3=Greater Inscription of the Blade", "=ds=#s3# #e17#"};
- { 20, 28911, "", "=q3=Greater Inscription of the Knight", "=ds=#s3# #e17#"};
- { 21, 28912, "", "=q3=Greater Inscription of the Oracle", "=ds=#s3# #e17#"};
- { 22, 28909, "", "=q3=Greater Inscription of the Orb", "=ds=#s3# #e17#"};
- { 23, 23600, "", "=q1=Plans: Enchanted Adamantite Leggings", "=ds=#p2# (365)"};
- { 24, 29698, "", "=q1=Pattern: Enchanted Clefthoof Leggings", "=ds=#p7# (350)"};
- { 25, 29677, "", "=q1=Pattern: Enchanted Felscale Leggings", "=ds=#p7# (350)"};
- { 26, 24294, "", "=q1=Pattern: Runic Spellthread", "=ds=#p8# (375)"};
- { 27, 31780, "", "=q1=Scryers Tabard", "=ds=#s7#"};
- Prev = "Scryer1";
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["Shatar1"] = {
- { 1, 0, "Spell_Nature_LightningOverload", "=q6=#r2#", ""};
- { 2, 25904, "", "=q1=Design: Insightful Earthstorm Diamond", "=ds=#p12# (365)"};
- { 4, 0, "Spell_Nature_LightningOverload", "=q6=#r4#", ""};
- { 5, 29180, "", "=q3=Blessed Scale Girdle", "=ds=#s10#, #a3#"};
- { 6, 29179, "", "=q3=Xi'ri's Gift", "=ds=#s14#"};
- { 7, 24182, "", "=q3=Design: Talasite Owl", "=ds=#p12# (370)"};
- { 8, 29191, "", "=q2=Arcanum of Power", "=ds=#s1# #e17#"};
- { 9, 22915, "", "=q2=Recipe: Transmute Primal Air to Fire", "=ds=#p1# (350)"};
- { 10, 28281, "", "=q2=Formula: Enchant Weapon - Major Healing", "=ds=#p4# (350)"};
- { 11, 13517, "", "=q1=Recipe: Alchemist's Stone", "=ds=#p1# (350)"};
- { 12, 22537, "", "=q1=Formula: Enchant Ring - Healing Power", "=ds=#p4# (370)"};
- { 13, 33159, "", "=q1=Design: Blood of Amber", "=ds=#p12# (360)"};
- { 16, 0, "Spell_Nature_LightningOverload", "=q6=#r3#", ""};
- { 17, 30826, "", "=q3=Design: Ring of Arcane Shielding", "=ds=#p12# (360)"};
- { 18, 29195, "", "=q2=Arcanum of Arcane Warding", "=ds=#s1# #e17#"};
- { 19, 28273, "", "=q2=Formula: Enchant Gloves - Major Healing", "=ds=#p4# (350)"};
- { 20, 33155, "", "=q1=Design: Kailee's Rose", "=ds=#p12# (360)"};
- { 21, 29717, "", "=q1=Pattern: Drums of Battle", "=ds=#p7# (365)"};
- { 22, 30634, "", "=q1=Warpforged Key", "=ds=#e9#"};
- { 24, 0, "Spell_Nature_LightningOverload", "=q6=#r5#", ""};
- { 25, 29177, "", "=q4=A'dal's Command", "=ds=#s13#"};
- { 26, 29175, "", "=q4=Gavel of Pure Light", "=ds=#h3#, #w6#"};
- { 27, 29176, "", "=q4=Crest of the Sha'tar", "=ds=#w8#"};
- { 28, 33153, "", "=q3=Formula: Enchant Gloves - Threat", "=ds=#p4# (300)"};
- { 29, 31354, "", "=q2=Recipe: Flask of the Titans", "=ds=#p1# (300)"};
- { 30, 31781, "", "=q1=Sha'tar Tabard", "=ds=#s7#"};
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["VioletEye1"] = {
- { 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#"};
- Next = "VioletEye2";
- Back = "REPMENU_BURNINGCRUSADE";
- };
-
- AtlasLoot_Data["VioletEye2"] = {
- { 1, 0, "Ability_Warrior_ShieldMastery", "=q6=#r3#", ""};
- { 2, 31113, "", "=q4=Violet Badge", "=q1=#m4#: =ds=#s14#"};
- { 3, 31395, "", "=q4=Plans: Iceguard Helm", "=ds=#p2# (375)"};
- { 4, 31393, "", "=q4=Plans: Iceguard Breastplate", "=ds=#p2# (375)"};
- { 5, 31401, "", "=q4=Design: The Frozen Eye", "=ds=#p12# (375)"};
- { 6, 29187, "", "=q2=Inscription of Endurance", "=ds=#s3# #e17#"};
- { 7, 33209, "", "=q2=Recipe: Flask of Chromatic Wonder", "=ds=#p1# (375)"};
- { 9, 0, "Ability_Warrior_ShieldMastery", "=q6=#r4#", ""};
- { 10, 34581, "", "=q4=Mysterious Arrow", "=ds=#w17#"};
- { 11, 34582, "", "=q4=Mysterious Shell", "=ds=#w18#"};
- { 12, 31394, "", "=q4=Plans: Iceguard Leggings", "=ds=#p2# (375)"};
- { 13, 33205, "", "=q4=Pattern: Shadowprowler's Chestguard", "=ds=#p7# (365)"};
- { 16, 0, "Ability_Warrior_ShieldMastery", "=q6=#r5#", ""};
- { 17, 33124, "", "=q3=Pattern: Cloak of Darkness", "=ds=#p7# (360)"};
- { 18, 33165, "", "=q1=Formula: Enchant Weapon - Greater Agility", "=ds=#p4# (350)"};
- Prev = "VioletEye1";
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["Thrallmar1"] = {
- { 1, 0, "INV_BannerPVP_01", "=q6=#r2#", ""};
- { 2, 25738, "", "=q3=Pattern: Felstalker Belt", "=ds=#p7# (350)"};
- { 3, 31359, "", "=q2=Design: Enduring Deep Peridot", "=ds=#p12# (315)"};
- { 4, 24000, "", "=q1=Formula: Enchant Bracer - Superior Healing", "=ds=#p4# (325)"};
- { 5, 24006, "", "=q1=Grunt's Waterskin", "=ds=#e4#"};
- { 6, 24009, "", "=q1=Dried Fruit Rations", "=ds=#e3#"};
- { 16, 0, "INV_BannerPVP_01", "=q6=#r3#", ""};
- { 17, 25824, "", "=q3=Farseer's Band", "=ds=#s13#"};
- { 18, 25823, "", "=q3=Grunt's Waraxe", "=ds=#h1#, #w1#"};
- { 19, 25739, "", "=q3=Pattern: Felstalker Bracers", "=ds=#p7# (360)"};
- { 20, 25740, "", "=q3=Pattern: Felstalker Breastplate", "=ds=#p7# (360)"};
- { 21, 29197, "", "=q2=Arcanum of Fire Warding", "=ds=#s1# #e17#"};
- { 22, 29232, "", "=q1=Recipe: Transmute Skyfire Diamond", "=ds=#p1# (350)"};
- { 23, 24001, "", "=q1=Recipe: Elixir of Major Agility", "=ds=#p1# (330)"};
- { 24, 31361, "", "=q1=Pattern: Cobrahide Leg Armor", "=ds=#p7# (335)"};
- { 25, 30637, "", "=q1=Flamewrought Key", "=ds=#e9#"};
- Next = "Thrallmar2";
- Back = "REPMENU_BURNINGCRUSADE";
- };
-
- AtlasLoot_Data["Thrallmar2"] = {
- { 1, 0, "INV_BannerPVP_01", "=q6=#r4#", ""};
- { 2, 29168, "", "=q3=Ancestral Band", "=ds=#s13#"};
- { 3, 29167, "", "=q3=Blackened Spear", "=ds=#w7#"};
- { 4, 32882, "", "=q3=Hellfire Shot", "=ds=#w18#"};
- { 5, 31358, "", "=q3=Design: Dawnstone Crab", "=ds=#p12# (370)"};
- { 6, 29190, "", "=q2=Arcanum of Renewal", "=ds=#s1# #e17#"};
- { 7, 24003, "", "=q1=Formula: Enchant Chest - Exceptional Stats", "=ds=#p4# (345)"};
- { 8, 34201, "", "=q1=Pattern: Netherscale Ammo Pouch", "=ds=#p7# (350)"};
- { 16, 0, "INV_BannerPVP_01", "=q6=#r5#", ""};
- { 17, 29155, "", "=q4=Stormcaller", "=ds=#h3#, #w10#"};
- { 18, 29165, "", "=q4=Warbringer", "=ds=#h1#, #w1#"};
- { 19, 29152, "", "=q4=Marksman's Bow", "=ds=#w2#"};
- { 20, 33151, "", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# (300)"};
- { 21, 24002, "", "=q1=Plans: Felsteel Shield Spike", "=ds=#p2# (360)"};
- { 22, 31362, "", "=q1=Pattern: Nethercobra Leg Armor", "=ds=#p7# (365)"};
- { 23, 24004, "", "=q1=Thrallmar Tabard", "=ds=#s7#"};
- Prev = "Thrallmar1";
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["Tranquillien1"] = {
- { 1, 0, "INV_Misc_Bandana_03", "=q6=#r2#", ""};
- { 2, 22991, "", "=q2=Apprentice Boots", "=ds=#s12#, #a1# "};
- { 3, 22992, "", "=q2=Bogwalker Boots", "=ds=#s12#, #a2# "};
- { 4, 22993, "", "=q2=Volunteer's Greaves", "=ds=#s12#, #a3# "};
- { 5, 28164, "", "=q2=Tranquillien Flamberge", "=ds=#h2#, #w10#"};
- { 7, 0, "INV_Misc_Bandana_03", "=q6=#r3#", ""};
- { 8, 28155, "", "=q2=Apothecary's Waistband", "=ds=#s10#, #a1# "};
- { 9, 28158, "", "=q2=Batskin Belt", "=ds=#s10#, #a2# "};
- { 10, 28162, "", "=q2=Tranquillien Defender's Girdle", "=ds=#s10#, #a3# "};
- { 16, 0, "INV_Misc_Bandana_03", "=q6=#r4#", ""};
- { 17, 22986, "", "=q2=Apothecary's Robe", "=ds=#s5#, #a1# "};
- { 18, 22987, "", "=q2=Deathstalker's Vest", "=ds=#s5#, #a2# "};
- { 19, 22985, "", "=q2=Suncrown Hauberk", "=ds=#s5#, #a3# "};
- { 22, 0, "INV_Misc_Bandana_03", "=q6=#r5#", ""};
- { 23, 22990, "", "=q3=Tranquillien Champion's Cloak", "=ds=#s4#"};
- Back = "REPMENU_BURNINGCRUSADE";
+ 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["ShattrathFlasks1"] = {
- { 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#"};
+ 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#"};
+ };
};
-----------
@@ -3608,1405 +3702,1336 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
--- World PvP - Hellfire Peninsula: Hellfire Fortifications ---
---------------------------------------------------------------
- AtlasLoot_Data["Hellfire"] = {
- { 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#"};
- Back = "PVPMENU2";
- Type = "PVP";
+ 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#"};
+ };
};
- ----------------------------------
- --- World PvP - Nagrand: Halaa ---
- ----------------------------------
-
- AtlasLoot_Data["Nagrand1"] = {
- { 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#"};
- Next = "Nagrand2";
- Back = "PVPMENU2";
- Type = "PVP";
+ AtlasLoot_Data["PVPHalaa"] = {
+ Name = BabbleZone["Nagrand"]..": "..AL["Halaa"];
+ {
+ Name = "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 = " - 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["Nagrand2"] = {
- { 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#"};
- Prev = "Nagrand1";
- Back = "PVPMENU2";
- Type = "PVP";
+ 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#", ""};
+ };
};
- ------------------------------------------------
- --- World PvP - Terokkar Forest: Bone Wastes ---
- ------------------------------------------------
-
- AtlasLoot_Data["Terokkar"] = {
- { 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#", ""};
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- -------------------------------------------------
- --- World PvP - Zangarmarsh: Twin Spire Ruins ---
- -------------------------------------------------
-
- AtlasLoot_Data["Zangarmarsh"] = {
- { 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#"};
- Back = "PVPMENU2";
- Type = "PVP";
+ 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["PVP70RepCloth"] = {
- { 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#"};
- Next = "PVP70RepLeather";
- Back = "PVP70RepSET";
- Type = "PVP";
- };
+ 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"].." - 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"};
- AtlasLoot_Data["PVP70RepLeather"] = {
- { 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#"};
- Prev = "PVP70RepCloth";
- Next = "PVP70RepMail";
- Back = "PVP70RepSET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PVP70RepMail"] = {
- { 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#"};
- Prev = "PVP70RepLeather";
- Next = "PVP70RepPlate";
- Back = "PVP70RepSET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PVP70RepPlate"] = {
- { 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#"};
- Prev = "PVP70RepMail";
- Back = "PVP70RepSET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PVP70RareCloth_H"] = {
- { 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"};
- Next = "PVP70RareLeather_H";
- Back = "PVP70RepSET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PVP70RareLeather_H"] = {
- { 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"};
- Prev = "PVP70RareCloth_H";
- Next = "PVP70RareMail_H";
- Back = "PVP70RepSET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PVP70RareMail_H"] = {
- { 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"};
- Prev = "PVP70RareLeather_H";
- Next = "PVP70RarePlate_H";
- Back = "PVP70RepSET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PVP70RarePlate_H"] = {
- { 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"};
- Prev = "PVP70RareMail_H";
- Back = "PVP70RepSET";
- Type = "PVP";
+ };
+ {
+ Name = BabbleInventory["Leather"].." - 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"].." - 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"].." - 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"};
+ };
};
- AtlasLoot_Data["PVP70RareCloth_A"] = {
- { 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"};
- Next = "PVP70RareLeather_A";
- Back = "PVP70RepSET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PVP70RareLeather_A"] = {
- { 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"};
- Prev = "PVP70RareCloth_A";
- Next = "PVP70RareMail_A";
- Back = "PVP70RepSET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PVP70RareMail_A"] = {
- { 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"};
- Prev = "PVP70RareLeather_A";
- Next = "PVP70RarePlate_A";
- Back = "PVP70RepSET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PVP70RarePlate_A"] = {
- { 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"};
- Prev = "PVP70RareMail_A";
- Back = "PVP70RepSET";
- Type = "PVP";
- };
+
----------------------------------
--- PvP Level 70 - Accessories ---
----------------------------------
- AtlasLoot_Data["PvP70Accessories1_A"] = {
- { 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#"};
- Next = "PvP70Accessories2";
- Back = "PVPMENUTBC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PvP70Accessories1_H"] = {
- { 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#"};
- Next = "PvP70Accessories2";
- Back = "PVPMENUTBC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PvP70Accessories2"] = {
- { 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#"};
- Prev = "PvP70Accessories1_A";
- Back = "PVPMENUTBC";
- Type = "PVP";
+ AtlasLoot_Data["PvP70Accessories"] = {
+ Name = "Off Set";
+ {
+ Name = "PvP Accessories - 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["PvP70NonSet1"] = {
- { 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#"};
- Next = "PvP70NonSet2";
- Back = "PVPMENUTBC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PvP70NonSet2"] = {
- { 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#"};
- Prev = "PvP70NonSet1";
- Back = "PVPMENUTBC";
- Type = "PVP";
+ 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["ArenaDruidFeral"] = {
- { 1, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
+ AtlasLoot_Data["ArenaDruidTBC"] = {
+ Name = AL["Druid"];
+ {
+ Name = AL["Feral"];
+ { 1, 0, "Ability_Druid_Maul", "=q6=#arenas1_1#", "=q1=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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["ArenaDruidBalance"] = {
- { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#arenas1_2#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
+ AtlasLoot_Data["ArenaHunterTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "=q1=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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["ArenaDruidRestoration"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#arenas1_3#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
+
+ AtlasLoot_Data["ArenaMageTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "=q1=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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["ArenaHunter"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#arenas2#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
+
+ AtlasLoot_Data["ArenaPaladinTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"];
+ {
+ Name = AL["Protection"];
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#arenas4_1#", "=q1=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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["ArenaMage"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#arenas3#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
+ AtlasLoot_Data["ArenaPriestTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"];
+ {
+ Name = AL["Shadow"];
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "=q1=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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["ArenaPaladinProtection"] = {
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#arenas4_1#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
+ AtlasLoot_Data["ArenaRogueTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 0, "Ability_BackStab", "=q6=#arenas6#", "=q1=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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["ArenaPaladinRetribution"] = {
- { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#arenas4_2#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
+ AtlasLoot_Data["ArenaWarlockTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ {
+ Name = AL["Demonology"];
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_1#", "=q1=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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["ArenaPaladinHoly"] = {
- { 1, 0, "Spell_Holy_HolyBolt", "=q6=#arenas4_3#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
+
+ AtlasLoot_Data["ArenaShamanTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"];
+ {
+ Name = AL["Enhancement"];
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "=q1=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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["ArenaPriestShadow"] = {
- { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#arenas5_1#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ArenaPriestHoly"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#arenas5_2#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ArenaRogue"] = {
- { 1, 0, "Ability_BackStab", "=q6=#arenas6#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ArenaWarlockDemonology"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_1#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ArenaWarlockDestruction"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#arenas8_2#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ArenaShamanEnhancement"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#arenas7_1#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ArenaShamanElemental"] = {
- { 1, 0, "Spell_Nature_Lightning", "=q6=#arenas7_2#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ArenaShamanRestoration"] = {
- { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#arenas7_3#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ArenaWarrior"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "=q1=#m21# #e15#"};
- { 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=#m22#/#m23# #e15#"};
- { 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=#m36#"};
- { 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#", ""};
- { 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#", ""};
- Back = "ARENASET";
- Type = "PVP";
+ AtlasLoot_Data["ArenaWarriorTBC"] = {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"];
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#arenas9#", "=q1=#m21# #e15#"};
+ { 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=#m22#/#m23# #e15#"};
+ { 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=#m36#"};
+ { 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#", ""};
+ { 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["Arena0Weapons1_H"] = {
- {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"};
- Back = "PVPMENUTBC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["Arena0Weapons1_A"] = {
- {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"};
- Back = "PVPMENUTBC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["Arena1Weapons1"] = {
- {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#", ""};
- Next = "Arena1Weapons2";
- Back = "PVPMENUTBC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["Arena1Weapons2"] = {
- {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#", ""};
- Prev = "Arena1Weapons1";
- Back = "PVPMENUTBC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["Arena3Weapons1"] = {
- {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#", ""};
- Next = "Arena3Weapons2";
- Back = "PVPMENUTBC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["Arena3Weapons2"] = {
- {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#", ""};
- {14, 0,"","","" };
- {15, 0,"","","" };
- {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#", ""};
- Prev = "Arena3Weapons1";
- Back = "PVPMENUTBC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["Arena2Weapons1"] = {
- {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#", ""};
- Next = "Arena2Weapons2";
- Back = "PVPMENUTBC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["Arena2Weapons2"] = {
- {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#", ""};
- Prev = "Arena2Weapons1";
- Back = "PVPMENUTBC";
- };
- AtlasLoot_Data["Arena4Weapons1"] = {
- { 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#", ""};
- Next = "Arena4Weapons2";
- Back = "PVPMENUTBC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["Arena4Weapons2"] = {
- { 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#", ""};
- Prev = "Arena4Weapons1";
- Back = "PVPMENUTBC";
- Type = "PVP";
+ 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#", ""};
+ };
};
--------------------------
@@ -5017,1513 +5042,1025 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
--- Dungeon 3 Sets (D3) ---
---------------------------
- AtlasLoot_Data["DS3Cloth"] = {
- { 1, 0, "Spell_Holy_InnerFire", "=q6=#ds3s1#", ""};
- { 2, 28413, "", "=q3=Hallowed Crown", "=ds="..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")"};
- { 3, 27775, "", "=q3=Hallowed Pauldrons", "=ds="..BabbleBoss["Grandmaster Vorpil"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
- { 4, 28230, "", "=q3=Hallowed Garments", "=ds="..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
- { 5, 27536, "", "=q3=Hallowed Handwraps", "=ds="..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")"};
- { 6, 27875, "", "=q3=Hallowed Trousers", "=ds="..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")"};
- { 8, 0, "INV_Elemental_Mote_Nether", "=q6=#ds3s3#", ""};
- { 9, 28193, "", "=q3=Mana-Etched Crown", "=ds="..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")"};
- { 10, 27796, "", "=q3=Mana-Etched Spaulders", "=ds="..BabbleBoss["Quagmirran"].." (#j3#)"};
- { 11, 28191, "", "=q3=Mana-Etched Vestments", "=ds="..BabbleBoss["Epoch Hunter"].." ("..BabbleZone["Old Hillsbrad Foothills"]..") (#j3#)"};
- { 12, 27465, "", "=q3=Mana-Etched Gloves", "=ds="..BabbleBoss["Omor the Unscarred"].." ("..BabbleZone["Hellfire Ramparts"]..") (#j3#)"};
- { 13, 27907, "", "=q3=Mana-Etched Pantaloons", "=ds="..BabbleBoss["The Black Stalker"].." (#j3#)"};
- { 16, 0, "Ability_Creature_Cursed_04", "=q6=#ds3s2#", ""};
- { 17, 28278, "", "=q3=Incanter's Cowl", "=ds="..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")"};
- { 18, 27738, "", "=q3=Incanter's Pauldrons", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
- { 19, 28229, "", "=q3=Incanter's Robe", "=ds="..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")"};
- { 20, 27508, "", "=q3=Incanter's Gloves", "=ds="..BabbleBoss["Hydromancer Thespia"].." ("..BabbleZone["The Steamvault"]..")"};
- { 21, 27838, "", "=q3=Incanter's Trousers", "=ds="..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")"};
- { 23, 0, "Ability_Creature_Cursed_03", "=q6=#ds3s4#", ""};
- { 24, 28415, "", "=q3=Hood of Oblivion", "=ds="..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")"};
- { 25, 27778, "", "=q3=Spaulders of Oblivion", "=ds="..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
- { 26, 28232, "", "=q3=Robe of Oblivion", "=ds="..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
- { 27, 27537, "", "=q3=Gloves of Oblivion", "=ds="..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")"};
- { 28, 27948, "", "=q3=Trousers of Oblivion", "=ds="..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")"};
- Next = "DS3Leather";
- Back = "DS3SET";
- Type = "D3Set";
- };
-
- AtlasLoot_Data["DS3Leather"] = {
- { 1, 0, "Ability_Rogue_SinisterCalling", "=q6=#ds3s5#", ""};
- { 2, 28414, "", "=q3=Helm of Assassination", "=ds="..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")"};
- { 3, 27776, "", "=q3=Shoulderpads of Assassination", "=ds="..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")"};
- { 4, 28204, "", "=q3=Tunic of Assassination", "=ds="..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")"};
- { 5, 27509, "", "=q3=Handgrips of Assassination", "=ds="..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")"};
- { 6, 27908, "", "=q3=Leggings of Assassination", "=ds="..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
- { 8, 0, "Ability_Hunter_RapidKilling", "=q6=#ds3s7#", ""};
- { 9, 28224, "", "=q3=Wastewalker Helm", "=ds="..BabbleBoss["Epoch Hunter"].." ("..BabbleZone["Old Hillsbrad Foothills"]..") (#j3#)"};
- { 10, 27797, "", "=q3=Wastewalker Shoulderpads", "=ds="..AL["Avatar"].." ("..BabbleZone["Auchenai Crypts"]..") (#j3#)"};
- { 11, 28264, "", "=q3=Wastewalker Tunic", "=ds="..BabbleBoss["Keli'dan the Breaker"].." ("..BabbleZone["The Blood Furnace"]..") (#j3#)"};
- { 12, 27531, "", "=q3=Wastewalker Gloves", "=ds="..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")"};
- { 13, 27837, "", "=q3=Wastewalker Leggings", "=ds="..BabbleBoss["Nexus-Prince Shaffar"].." ("..BabbleZone["Mana-Tombs"]..") (#j3#)"};
- { 16, 0, "Spell_Holy_SealOfRighteousness", "=q6=#ds3s6#", ""};
- { 17, 28348, "", "=q3=Moonglade Cowl", "=ds="..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")"};
- { 18, 27737, "", "=q3=Moonglade Shoulders", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
- { 19, 28202, "", "=q3=Moonglade Robe", "=ds="..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")"};
- { 20, 27468, "", "=q3=Moonglade Handwraps", "=ds="..BabbleBoss["Blackheart the Inciter"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
- { 21, 27873, "", "=q3=Moonglade Pants", "=ds="..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")"};
- Prev = "DS3Cloth";
- Next = "DS3Mail";
- Back = "DS3SET";
- Type = "D3Set";
- };
-
- AtlasLoot_Data["DS3Mail"] = {
- { 1, 0, "Ability_Hunter_Pet_Wolf", "=q6=#ds3s8#", ""};
- { 2, 28275, "", "=q3=Beast Lord Helm", "=ds="..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")"};
- { 3, 27801, "", "=q3=Beast Lord Mantle", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
- { 4, 28228, "", "=q3=Beast Lord Curiass", "=ds="..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")"};
- { 5, 27474, "", "=q3=Beast Lord Handguards", "=ds="..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")"};
- { 6, 27874, "", "=q3=Beast Lord Leggings", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
- { 8, 0, "INV_Helmet_70", "=q6=#ds3s10#", ""};
- { 9, 28349, "", "=q3=Tidefury Helm", "=ds="..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")"};
- { 10, 27802, "", "=q3=Tidefury Shoulderguards", "=ds="..BabbleBoss["Warbringer O'mrogg"].." ("..BabbleZone["The Shattered Halls"]..")"};
- { 11, 28231, "", "=q3=Tidefury Chestpiece", "=ds="..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")"};
- { 12, 27510, "", "=q3=Tidefury Gauntlets", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
- { 13, 27909, "", "=q3=Tidefury Kilt", "=ds="..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
- { 16, 0, "Ability_FiegnDead", "=q6=#ds3s9#", ""};
- { 17, 28192, "", "=q3=Helm of Desolation", "=ds="..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")"};
- { 18, 27713, "", "=q3=Pauldrons of Desolation", "=ds="..BabbleBoss["Quagmirran"].." (#j3#)"};
- { 19, 28401, "", "=q3=Hauberk of Desolation", "=ds="..BabbleBoss["Epoch Hunter"].." ("..BabbleZone["Old Hillsbrad Foothills"]..") (#j3#)"};
- { 20, 27528, "", "=q3=Gauntlets of Desolation", "=ds="..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")"};
- { 21, 27936, "", "=q3=Greaves of Desolation", "=ds="..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")"};
- Prev = "DS3Leather";
- Next = "DS3Plate";
- Back = "DS3SET";
- Type = "D3Set";
- };
-
- AtlasLoot_Data["DS3Plate"] = {
- { 1, 0, "Spell_Fire_EnchantWeapon", "=q6=#ds3s11#", ""};
- { 2, 28350, "", "=q3=Warhelm of the Bold", "=ds="..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")"};
- { 3, 27803, "", "=q3=Shoulderguards of the Bold", "=ds="..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
- { 4, 28205, "", "=q3=Breastplate of the Bold", "=ds="..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")"};
- { 5, 27475, "", "=q3=Gauntlets of the Bold", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
- { 6, 27977, "", "=q3=Legplates of the Bold", "=ds="..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")"};
- { 8, 0, "INV_Hammer_02", "=q6=#ds3s13#", ""};
- { 9, 28285, "", "=q3=Helm of the Righteous", "=ds="..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")"};
- { 10, 27739, "", "=q3=Spaulders of the Righteous", "=ds="..BabbleBoss["Laj"].." ("..BabbleZone["The Botanica"]..")"};
- { 11, 28203, "", "=q3=Breastplate of the Righteous", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
- { 12, 27535, "", "=q3=Gauntlets of the Righteous", "=ds="..BabbleBoss["Warbringer O'mrogg"].." ("..BabbleZone["The Shattered Halls"]..")"};
- { 13, 27839, "", "=q3=Legplates of the Righteous", "=ds="..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")"};
- { 16, 0, "INV_Helmet_08", "=q6=#ds3s12#", ""};
- { 17, 28225, "", "=q3=Doomplate Warhelm", "=ds="..BabbleBoss["Epoch Hunter"].." ("..BabbleZone["Old Hillsbrad Foothills"]..") (#j3#)"};
- { 18, 27771, "", "=q3=Doomplate Shouldergards", "=ds="..BabbleBoss["The Black Stalker"].." (#j3#)"};
- { 19, 28403, "", "=q3=Doomplate Chestguard", "=ds="..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")"};
- { 20, 27497, "", "=q3=Doomplate Gauntlets", "=ds="..BabbleBoss["Keli'dan the Breaker"].." ("..BabbleZone["The Blood Furnace"]..") (#j3#)"};
- { 21, 27870, "", "=q3=Doomplate Legguards", "=ds="..BabbleBoss["Exarch Maladaar"].." ("..BabbleZone["Auchenai Crypts"]..") (#j3#)"};
- Prev = "DS3Mail";
- Back = "DS3SET";
- Type = "D3Set";
+ AtlasLoot_Data["DS3"] = {
+ Name = AL["Dungeon 3 Sets"];
+ Type = "BCDungeon";
+ {
+ Name = AL["Hallowed Raiment"];
+ { 1, 28413, "", "=q3=Hallowed Crown", "=ds="..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")"};
+ { 2, 27775, "", "=q3=Hallowed Pauldrons", "=ds="..BabbleBoss["Grandmaster Vorpil"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
+ { 3, 28230, "", "=q3=Hallowed Garments", "=ds="..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
+ { 4, 27536, "", "=q3=Hallowed Handwraps", "=ds="..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")"};
+ { 5, 27875, "", "=q3=Hallowed Trousers", "=ds="..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")"};
+ };
+ {
+ Name = AL["Mana-Etched Regalia"];
+ { 1, 28193, "", "=q3=Mana-Etched Crown", "=ds="..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")"};
+ { 2, 27796, "", "=q3=Mana-Etched Spaulders", "=ds="..BabbleBoss["Quagmirran"].." (#j3#)"};
+ { 3, 28191, "", "=q3=Mana-Etched Vestments", "=ds="..BabbleBoss["Epoch Hunter"].." ("..BabbleZone["Old Hillsbrad Foothills"]..") (#j3#)"};
+ { 4, 27465, "", "=q3=Mana-Etched Gloves", "=ds="..BabbleBoss["Omor the Unscarred"].." ("..BabbleZone["Hellfire Ramparts"]..") (#j3#)"};
+ { 5, 27907, "", "=q3=Mana-Etched Pantaloons", "=ds="..BabbleBoss["The Black Stalker"].." (#j3#)"};
+ };
+ {
+ Name = AL["Incanter's Regalia"];
+ { 1, 28278, "", "=q3=Incanter's Cowl", "=ds="..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")"};
+ { 2, 27738, "", "=q3=Incanter's Pauldrons", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
+ { 3, 28229, "", "=q3=Incanter's Robe", "=ds="..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")"};
+ { 4, 27508, "", "=q3=Incanter's Gloves", "=ds="..BabbleBoss["Hydromancer Thespia"].." ("..BabbleZone["The Steamvault"]..")"};
+ { 5, 27838, "", "=q3=Incanter's Trousers", "=ds="..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")"};
+ };
+ {
+ Name = AL["Oblivion Raiment"];
+ { 1, 28415, "", "=q3=Hood of Oblivion", "=ds="..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")"};
+ { 2, 27778, "", "=q3=Spaulders of Oblivion", "=ds="..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
+ { 3, 28232, "", "=q3=Robe of Oblivion", "=ds="..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
+ { 4, 27537, "", "=q3=Gloves of Oblivion", "=ds="..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")"};
+ { 5, 27948, "", "=q3=Trousers of Oblivion", "=ds="..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")"};
+ };
+ {
+ Name = AL["Assassination Armor"];
+ { 1, 28414, "", "=q3=Helm of Assassination", "=ds="..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")"};
+ { 2, 27776, "", "=q3=Shoulderpads of Assassination", "=ds="..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")"};
+ { 3, 28204, "", "=q3=Tunic of Assassination", "=ds="..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")"};
+ { 4, 27509, "", "=q3=Handgrips of Assassination", "=ds="..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")"};
+ { 5, 27908, "", "=q3=Leggings of Assassination", "=ds="..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
+ };
+ {
+ Name = AL["Wastewalker Armor"];
+ { 1, 28224, "", "=q3=Wastewalker Helm", "=ds="..BabbleBoss["Epoch Hunter"].." ("..BabbleZone["Old Hillsbrad Foothills"]..") (#j3#)"};
+ { 2, 27797, "", "=q3=Wastewalker Shoulderpads", "=ds="..AL["Avatar"].." ("..BabbleZone["Auchenai Crypts"]..") (#j3#)"};
+ { 3, 28264, "", "=q3=Wastewalker Tunic", "=ds="..BabbleBoss["Keli'dan the Breaker"].." ("..BabbleZone["The Blood Furnace"]..") (#j3#)"};
+ { 4, 27531, "", "=q3=Wastewalker Gloves", "=ds="..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")"};
+ { 5, 27837, "", "=q3=Wastewalker Leggings", "=ds="..BabbleBoss["Nexus-Prince Shaffar"].." ("..BabbleZone["Mana-Tombs"]..") (#j3#)"};
+ };
+ {
+ Name = AL["Moonglade Raiment"];
+ { 1, 28348, "", "=q3=Moonglade Cowl", "=ds="..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")"};
+ { 2, 27737, "", "=q3=Moonglade Shoulders", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
+ { 3, 28202, "", "=q3=Moonglade Robe", "=ds="..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")"};
+ { 4, 27468, "", "=q3=Moonglade Handwraps", "=ds="..BabbleBoss["Blackheart the Inciter"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
+ { 5, 27873, "", "=q3=Moonglade Pants", "=ds="..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")"};
+ };
+ {
+ Name = AL["Beast Lord Armor"];
+ { 1, 28275, "", "=q3=Beast Lord Helm", "=ds="..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")"};
+ { 2, 27801, "", "=q3=Beast Lord Mantle", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
+ { 3, 28228, "", "=q3=Beast Lord Curiass", "=ds="..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")"};
+ { 4, 27474, "", "=q3=Beast Lord Handguards", "=ds="..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")"};
+ { 5, 27874, "", "=q3=Beast Lord Leggings", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
+ };
+ {
+ Name = AL["Tidefury Raiment"];
+ { 1, 28349, "", "=q3=Tidefury Helm", "=ds="..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")"};
+ { 2, 27802, "", "=q3=Tidefury Shoulderguards", "=ds="..BabbleBoss["Warbringer O'mrogg"].." ("..BabbleZone["The Shattered Halls"]..")"};
+ { 3, 28231, "", "=q3=Tidefury Chestpiece", "=ds="..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")"};
+ { 4, 27510, "", "=q3=Tidefury Gauntlets", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
+ { 5, 27909, "", "=q3=Tidefury Kilt", "=ds="..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
+ };
+ {
+ Name = AL["Desolation Battlegear"];
+ { 1, 28192, "", "=q3=Helm of Desolation", "=ds="..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")"};
+ { 2, 27713, "", "=q3=Pauldrons of Desolation", "=ds="..BabbleBoss["Quagmirran"].." (#j3#)"};
+ { 3, 28401, "", "=q3=Hauberk of Desolation", "=ds="..BabbleBoss["Epoch Hunter"].." ("..BabbleZone["Old Hillsbrad Foothills"]..") (#j3#)"};
+ { 4, 27528, "", "=q3=Gauntlets of Desolation", "=ds="..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")"};
+ { 5, 27936, "", "=q3=Greaves of Desolation", "=ds="..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")"};
+ };
+ {
+ Name = AL["Bold Armor"];
+ { 1, 28350, "", "=q3=Warhelm of the Bold", "=ds="..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")"};
+ { 2, 27803, "", "=q3=Shoulderguards of the Bold", "=ds="..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")"};
+ { 3, 28205, "", "=q3=Breastplate of the Bold", "=ds="..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")"};
+ { 4, 27475, "", "=q3=Gauntlets of the Bold", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
+ { 5, 27977, "", "=q3=Legplates of the Bold", "=ds="..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")"};
+ };
+ {
+ Name = AL["Righteous Armor"];
+ { 1, 28285, "", "=q3=Helm of the Righteous", "=ds="..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")"};
+ { 2, 27739, "", "=q3=Spaulders of the Righteous", "=ds="..BabbleBoss["Laj"].." ("..BabbleZone["The Botanica"]..")"};
+ { 3, 28203, "", "=q3=Breastplate of the Righteous", "=ds="..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")"};
+ { 4, 27535, "", "=q3=Gauntlets of the Righteous", "=ds="..BabbleBoss["Warbringer O'mrogg"].." ("..BabbleZone["The Shattered Halls"]..")"};
+ { 5, 27839, "", "=q3=Legplates of the Righteous", "=ds="..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")"};
+ };
+ {
+ Name = AL["Doomplate Battlegear"];
+ { 1, 28225, "", "=q3=Doomplate Warhelm", "=ds="..BabbleBoss["Epoch Hunter"].." ("..BabbleZone["Old Hillsbrad Foothills"]..") (#j3#)"};
+ { 2, 27771, "", "=q3=Doomplate Shouldergards", "=ds="..BabbleBoss["The Black Stalker"].." (#j3#)"};
+ { 3, 28403, "", "=q3=Doomplate Chestguard", "=ds="..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")"};
+ { 4, 27497, "", "=q3=Doomplate Gauntlets", "=ds="..BabbleBoss["Keli'dan the Breaker"].." ("..BabbleZone["The Blood Furnace"]..") (#j3#)"};
+ { 5, 27870, "", "=q3=Doomplate Legguards", "=ds="..BabbleBoss["Exarch Maladaar"].." ("..BabbleZone["Auchenai Crypts"]..") (#j3#)"};
+ };
};
--------------
--- Tier 4 ---
--------------
- AtlasLoot_Data["T4DruidFeral"] = {
- { 1, 0, "Ability_Druid_Maul", "=q6=#t4s1_1#", "=ec1=#m21# - Fallen Defender"};
- { 2, 29098, "", "=q4=Stag-Helm of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29100, "", "=q4=Mantle of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29096, "", "=q4=Breastplate of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29097, "", "=q4=Gauntlets of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29099, "", "=q4=Greaves of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5DruidFeral";
- Type = "BCRaid";
+ AtlasLoot_Data["T4"] = {
+ Name = "Teir 4";
+ Type = "BCRaid";
+ {
+ Name = "Druid".." - "..AL["Feral"];
+ { 1, 29098, "", "=q4=Stag-Helm of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29100, "", "=q4=Mantle of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29096, "", "=q4=Breastplate of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29097, "", "=q4=Gauntlets of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29099, "", "=q4=Greaves of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = "Druid".." - "..AL["Restoration"];
+ { 1, 29086, "", "=q4=Crown of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29089, "", "=q4=Shoulderguards of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29087, "", "=q4=Chestguard of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29090, "", "=q4=Handguards of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29088, "", "=q4=Legguards of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = "Druid".." - "..AL["Balance"];
+ { 1, 29093, "", "=q4=Antlers of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29095, "", "=q4=Pauldrons of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29091, "", "=q4=Chestpiece of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29092, "", "=q4=Gloves of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29094, "", "=q4=Britches of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 29081, "", "=q4=Demon Stalker Greathelm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29084, "", "=q4=Demon Stalker Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29082, "", "=q4=Demon Stalker Harness", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29085, "", "=q4=Demon Stalker Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29083, "", "=q4=Demon Stalker Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 29076, "", "=q4=Collar of the Aldor", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29079, "", "=q4=Pauldrons of the Aldor", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29077, "", "=q4=Vestments of the Aldor", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29080, "", "=q4=Gloves of the Aldor", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29078, "", "=q4=Legwraps of the Aldor", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Retribution"];
+ { 1, 29068, "", "=q4=Justicar Faceguard", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29070, "", "=q4=Justicar Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29066, "", "=q4=Justicar Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29067, "", "=q4=Justicar Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29069, "", "=q4=Justicar Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Protection"];
+ { 1, 29073, "", "=q4=Justicar Crown", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29075, "", "=q4=Justicar Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29071, "", "=q4=Justicar Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29072, "", "=q4=Justicar Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29074, "", "=q4=Justicar Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Holy"];
+ { 1, 29061, "", "=q4=Justicar Diadem", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29064, "", "=q4=Justicar Pauldrons", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29062, "", "=q4=Justicar Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29065, "", "=q4=Justicar Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29063, "", "=q4=Justicar Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Holy"];
+ { 1, 29049, "", "=q4=Light-Collar of the Incarnate", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29054, "", "=q4=Light-Mantle of the Incarnate", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29050, "", "=q4=Robes of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29055, "", "=q4=Handwraps of the Incarnate", "The Curator ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29053, "", "=q4=Trousers of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Shadow"];
+ { 1, 29058, "", "=q4=Soul-Collar of the Incarnate", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29060, "", "=q4=Soul-Mantle of the Incarnate", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29056, "", "=q4=Shroud of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29057, "", "=q4=Gloves of the Incarnate", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29059, "", "=q4=Leggings of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 29044, "", "=q4=Netherblade Facemask", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29047, "", "=q4=Netherblade Shoulderpads", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29045, "", "=q4=Netherblade Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29048, "", "=q4=Netherblade Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29046, "", "=q4=Netherblade Breeches", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Enhancement"];
+ { 1, 29040, "", "=q4=Cyclone Helm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29043, "", "=q4=Cyclone Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29038, "", "=q4=Cyclone Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29039, "", "=q4=Cyclone Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29042, "", "=q4=Cyclone War-Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Restoration"];
+ { 1, 29028, "", "=q4=Cyclone Headdress", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29031, "", "=q4=Cyclone Shoulderpads", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29029, "", "=q4=Cyclone Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29032, "", "=q4=Cyclone Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29030, "", "=q4=Cyclone Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Elemental"];
+ { 1, 29035, "", "=q4=Cyclone Faceguard", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29037, "", "=q4=Cyclone Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29033, "", "=q4=Cyclone Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29034, "", "=q4=Cyclone Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29036, "", "=q4=Cyclone Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 28963, "", "=q4=Voidheart Crown", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 28967, "", "=q4=Voidheart Mantle", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 28964, "", "=q4=Voidheart Robe", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 28968, "", "=q4=Voidheart Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 28966, "", "=q4=Voidheart Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"];
+ { 1, 29011, "", "=q4=Warbringer Greathelm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29016, "", "=q4=Warbringer Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29012, "", "=q4=Warbringer Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29017, "", "=q4=Warbringer Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29015, "", "=q4=Warbringer Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"];
+ { 1, 14984, "", "=q4=Warbringer Helmet", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 14988, "", "=q4=Warbringer Pauldrons", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 14985, "", "=q4=Warbringer Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 14989, "", "=q4=Warbringer Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 14987, "", "=q4=Warbringer Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Fury"];
+ { 1, 29021, "", "=q4=Warbringer Battle-Helm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 2, 29023, "", "=q4=Warbringer Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 3, 29019, "", "=q4=Warbringer Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 4, 29020, "", "=q4=Warbringer Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 5, 29022, "", "=q4=Warbringer Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ }
};
-
-
- AtlasLoot_Data["T4DruidRestoration"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#t4s1_2#", "=ec1=#m21# - Fallen Defender"};
- { 2, 29086, "", "=q4=Crown of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29089, "", "=q4=Shoulderguards of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29087, "", "=q4=Chestguard of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29090, "", "=q4=Handguards of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29088, "", "=q4=Legguards of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5DruidRestoration";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4DruidBalance"] = {
- { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t4s1_3#", "=ec1=#m21# - Fallen Defender"};
- { 2, 29093, "", "=q4=Antlers of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29095, "", "=q4=Pauldrons of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29091, "", "=q4=Chestpiece of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29092, "", "=q4=Gloves of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29094, "", "=q4=Britches of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5DruidBalance";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4Hunter"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t4s2#", "=ec1=#m21# - Fallen Hero"};
- { 2, 29081, "", "=q4=Demon Stalker Greathelm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29084, "", "=q4=Demon Stalker Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29082, "", "=q4=Demon Stalker Harness", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29085, "", "=q4=Demon Stalker Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29083, "", "=q4=Demon Stalker Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5Hunter";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4Mage"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#t4s3#", "=ec1=#m21# - Fallen Hero"};
- { 2, 29076, "", "=q4=Collar of the Aldor", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29079, "", "=q4=Pauldrons of the Aldor", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29077, "", "=q4=Vestments of the Aldor", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29080, "", "=q4=Gloves of the Aldor", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29078, "", "=q4=Legwraps of the Aldor", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5Mage";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4PaladinProtection"] = {
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t4s4_1#", "=ec1=#m21# - Fallen Champion"};
- { 2, 29068, "", "=q4=Justicar Faceguard", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29070, "", "=q4=Justicar Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29066, "", "=q4=Justicar Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29067, "", "=q4=Justicar Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29069, "", "=q4=Justicar Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5PaladinProtection";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4PaladinRetribution"] = {
- { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t4s4_2#", "=ec1=#m21# - Fallen Champion"};
- { 2, 29073, "", "=q4=Justicar Crown", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29075, "", "=q4=Justicar Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29071, "", "=q4=Justicar Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29072, "", "=q4=Justicar Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29074, "", "=q4=Justicar Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5PaladinRetribution";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4PaladinHoly"] = {
- { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t4s4_3#", "=ec1=#m21# - Fallen Champion"};
- { 2, 29061, "", "=q4=Justicar Diadem", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29064, "", "=q4=Justicar Pauldrons", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29062, "", "=q4=Justicar Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29065, "", "=q4=Justicar Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29063, "", "=q4=Justicar Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5PaladinHoly";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4PriestHoly"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t4s5_1#", "=ec1=#m21# - Fallen Defender"};
- { 2, 29049, "", "=q4=Light-Collar of the Incarnate", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29054, "", "=q4=Light-Mantle of the Incarnate", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29050, "", "=q4=Robes of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29055, "", "=q4=Handwraps of the Incarnate", "The Curator ("..BabbleZone["Karazhan"]..")"};
- { 6, 29053, "", "=q4=Trousers of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5PriestHoly";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4PriestShadow"] = {
- { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t4s5_2#", "=ec1=#m21# - Fallen Defender"};
- { 2, 29058, "", "=q4=Soul-Collar of the Incarnate", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29060, "", "=q4=Soul-Mantle of the Incarnate", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29056, "", "=q4=Shroud of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29057, "", "=q4=Gloves of the Incarnate", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29059, "", "=q4=Leggings of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5PriestShadow";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4Rogue"] = {
- { 1, 0, "Ability_BackStab", "=q6=#t4s6#", "=ec1=#m21# - Fallen Champion"};
- { 2, 29044, "", "=q4=Netherblade Facemask", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29047, "", "=q4=Netherblade Shoulderpads", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29045, "", "=q4=Netherblade Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29048, "", "=q4=Netherblade Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29046, "", "=q4=Netherblade Breeches", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5Rogue";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4ShamanEnhancement"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t4s7_1#", "=ec1=#m21# - Fallen Champion"};
- { 2, 29040, "", "=q4=Cyclone Helm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29043, "", "=q4=Cyclone Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29038, "", "=q4=Cyclone Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29039, "", "=q4=Cyclone Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29042, "", "=q4=Cyclone War-Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5ShamanEnhancement";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4ShamanRestoration"] = {
- { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t4s7_2#", "=ec1=#m21# - Fallen Champion"};
- { 2, 29028, "", "=q4=Cyclone Headdress", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29031, "", "=q4=Cyclone Shoulderpads", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29029, "", "=q4=Cyclone Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29032, "", "=q4=Cyclone Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29030, "", "=q4=Cyclone Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5ShamanRestoration";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4ShamanElemental"] = {
- { 1, 0, "Spell_Nature_Lightning", "=q6=#t4s7_3#", "=ec1=#m21# - Fallen Champion"};
- { 2, 29035, "", "=q4=Cyclone Faceguard", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29037, "", "=q4=Cyclone Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29033, "", "=q4=Cyclone Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29034, "", "=q4=Cyclone Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29036, "", "=q4=Cyclone Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5ShamanElemental";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4Warlock"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t4s8#", "=ec1=#m21# - Fallen Hero"};
- { 2, 28963, "", "=q4=Voidheart Crown", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 28967, "", "=q4=Voidheart Mantle", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 28964, "", "=q4=Voidheart Robe", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 28968, "", "=q4=Voidheart Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 28966, "", "=q4=Voidheart Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5Warlock";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4WarriorProtection"] = {
- { 1, 0, "INV_Shield_05", "=q6=#t4s9_1#", "=ec1=#m21# - Fallen Defender"};
- { 2, 29011, "", "=q4=Warbringer Greathelm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29016, "", "=q4=Warbringer Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29012, "", "=q4=Warbringer Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29017, "", "=q4=Warbringer Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29015, "", "=q4=Warbringer Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 8, 0, "INV_Shield_05", "=q6=#t4s9_1#", "=ec1=#m21# - Fallen Defender"};
- { 9, 14984, "", "=q4=Warbringer Helmet", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 10, 14988, "", "=q4=Warbringer Pauldrons", "=ds="..BabbleBoss["High King Maulgar"]};
- { 11, 14985, "", "=q4=Warbringer Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
- { 12, 14989, "", "=q4=Warbringer Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 13, 14987, "", "=q4=Warbringer Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5WarriorProtection";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T4WarriorFury"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t4s9_2#", "=ec1=#m21# - Fallen Defender"};
- { 2, 29021, "", "=q4=Warbringer Battle-Helm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29023, "", "=q4=Warbringer Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29019, "", "=q4=Warbringer Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29020, "", "=q4=Warbringer Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29022, "", "=q4=Warbringer Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = "T4SET";
- Next = "T5WarriorFury";
- Type = "BCRaid";
- };
-
- AtlasLoot_Data["T4Helms"] = {
- { 1, 29098, "", "=q4=Stag-Helm of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 2, 29086, "", "=q4=Crown of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29093, "", "=q4=Antlers of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 4, 29081, "", "=q4=Demon Stalker Greathelm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 5, 29076, "", "=q4=Collar of the Aldor", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29068, "", "=q4=Justicar Faceguard", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 7, 29073, "", "=q4=Justicar Crown", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 8, 29061, "", "=q4=Justicar Diadem", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 9, 29049, "", "=q4=Light-Collar of the Incarnate", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 16, 29058, "", "=q4=Soul-Collar of the Incarnate", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 17, 29044, "", "=q4=Netherblade Facemask", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 29040, "", "=q4=Cyclone Helm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 19, 29028, "", "=q4=Cyclone Headdress", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 20, 29035, "", "=q4=Cyclone Faceguard", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 28963, "", "=q4=Voidheart Crown", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 22, 29011, "", "=q4=Warbringer Greathelm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 23, 14984, "", "=q4=Warbringer Helmet", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 24, 29021, "", "=q4=Warbringer Battle-Helm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- Back = AtlasLoot_Lastboss;
- Type = "BCRaid";
- };
-
-
- AtlasLoot_Data["T4Shoulders"] = {
- { 1, 29100, "", "=q4=Mantle of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
- { 2, 29089, "", "=q4=Shoulderguards of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
- { 3, 29095, "", "=q4=Pauldrons of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
- { 4, 29084, "", "=q4=Demon Stalker Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
- { 5, 29079, "", "=q4=Pauldrons of the Aldor", "=ds="..BabbleBoss["High King Maulgar"]};
- { 6, 29070, "", "=q4=Justicar Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
- { 7, 29075, "", "=q4=Justicar Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
- { 8, 29064, "", "=q4=Justicar Pauldrons", "=ds="..BabbleBoss["High King Maulgar"]};
- { 9, 29054, "", "=q4=Light-Mantle of the Incarnate", "=ds="..BabbleBoss["High King Maulgar"]};
- { 16, 29060, "", "=q4=Soul-Mantle of the Incarnate", "=ds="..BabbleBoss["High King Maulgar"]};
- { 17, 29047, "", "=q4=Netherblade Shoulderpads", "=ds="..BabbleBoss["High King Maulgar"]};
- { 18, 29043, "", "=q4=Cyclone Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 29031, "", "=q4=Cyclone Shoulderpads", "=ds="..BabbleBoss["High King Maulgar"]};
- { 20, 29037, "", "=q4=Cyclone Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
- { 21, 28967, "", "=q4=Voidheart Mantle", "=ds="..BabbleBoss["High King Maulgar"]};
- { 22, 29016, "", "=q4=Warbringer Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
- { 23, 14988, "", "=q4=Warbringer Pauldrons", "=ds="..BabbleBoss["High King Maulgar"]};
- { 24, 29023, "", "=q4=Warbringer Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
- Back = AtlasLoot_Lastboss;
- Type = "BCRaid";
- };
-
- AtlasLoot_Data["T4Legs"] = {
- { 1, 29099, "", "=q4=Greaves of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 2, 29088, "", "=q4=Legguards of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 3, 29094, "", "=q4=Britches of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 4, 29083, "", "=q4=Demon Stalker Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 5, 29078, "", "=q4=Legwraps of the Aldor", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 6, 29069, "", "=q4=Justicar Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 7, 29074, "", "=q4=Justicar Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 8, 29063, "", "=q4=Justicar Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 9, 29053, "", "=q4=Trousers of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 29059, "", "=q4=Leggings of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 17, 29046, "", "=q4=Netherblade Breeches", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 18, 29042, "", "=q4=Cyclone War-Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 19, 29030, "", "=q4=Cyclone Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 20, 29036, "", "=q4=Cyclone Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 21, 28966, "", "=q4=Voidheart Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 22, 29015, "", "=q4=Warbringer Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 23, 14987, "", "=q4=Warbringer Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 24, 29022, "", "=q4=Warbringer Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- Back = AtlasLoot_Lastboss;
- Type = "BCRaid";
- };
-
- AtlasLoot_Data["T4Gloves"] = {
- { 1, 29097, "", "=q4=Gauntlets of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 2, 29090, "", "=q4=Handguards of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 3, 29092, "", "=q4=Gloves of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 4, 29085, "", "=q4=Demon Stalker Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 5, 29080, "", "=q4=Gloves of the Aldor", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 6, 29067, "", "=q4=Justicar Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 7, 29072, "", "=q4=Justicar Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 8, 29065, "", "=q4=Justicar Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 9, 29055, "", "=q4=Handwraps of the Incarnate", "The Curator ("..BabbleZone["Karazhan"]..")"};
- { 16, 29057, "", "=q4=Gloves of the Incarnate", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 17, 29048, "", "=q4=Netherblade Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 29039, "", "=q4=Cyclone Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 19, 29032, "", "=q4=Cyclone Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 20, 29034, "", "=q4=Cyclone Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 28968, "", "=q4=Voidheart Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 22, 29017, "", "=q4=Warbringer Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 23, 14989, "", "=q4=Warbringer Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 24, 29020, "", "=q4=Warbringer Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
-
- Back = AtlasLoot_Lastboss;
- Type = "BCRaid";
- };
-
- AtlasLoot_Data["T4Chests"] = {
- { 1, 29096, "", "=q4=Breastplate of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
- { 2, 29087, "", "=q4=Chestguard of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
- { 3, 29091, "", "=q4=Chestpiece of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
- { 4, 29082, "", "=q4=Demon Stalker Harness", "=ds="..BabbleBoss["Magtheridon"]};
- { 5, 29077, "", "=q4=Vestments of the Aldor", "=ds="..BabbleBoss["Magtheridon"]};
- { 6, 29066, "", "=q4=Justicar Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
- { 7, 29071, "", "=q4=Justicar Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
- { 8, 29062, "", "=q4=Justicar Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
- { 9, 29050, "", "=q4=Robes of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
- { 16, 29056, "", "=q4=Shroud of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
- { 17, 29045, "", "=q4=Netherblade Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
- { 18, 29038, "", "=q4=Cyclone Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
- { 19, 29029, "", "=q4=Cyclone Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 29033, "", "=q4=Cyclone Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
- { 21, 28964, "", "=q4=Voidheart Robe", "=ds="..BabbleBoss["Magtheridon"]};
- { 22, 29012, "", "=q4=Warbringer Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
- { 23, 14985, "", "=q4=Warbringer Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
- { 24, 29019, "", "=q4=Warbringer Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
- Back = AtlasLoot_Lastboss;
- Type = "BCRaid";
- };
-
-
-
-
--------------
--- Tier 5 ---
--------------
- AtlasLoot_Data["T5DruidFeral"] = {
- { 1, 0, "Ability_Druid_Maul", "=q6=#t5s1_1#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30228, "", "=q4=Nordrassil Headdress", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30230, "", "=q4=Nordrassil Feral-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30222, "", "=q4=Nordrassil Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30223, "", "=q4=Nordrassil Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30229, "", "=q4=Nordrassil Feral-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4DruidFeral";
- Next = "T6DruidFeral";
- Type = "BCRaid";
+ AtlasLoot_Data["T5"] = {
+ Name = "Teir 5";
+ Type = "BCRaid";
+ {
+ Name = "Druid".." - "..AL["Feral"];
+ { 1, 30228, "", "=q4=Nordrassil Headdress", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30230, "", "=q4=Nordrassil Feral-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30222, "", "=q4=Nordrassil Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30223, "", "=q4=Nordrassil Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30229, "", "=q4=Nordrassil Feral-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = "Druid".." - "..AL["Restoration"];
+ { 1, 30219, "", "=q4=Nordrassil Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30221, "", "=q4=Nordrassil Life-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30216, "", "=q4=Nordrassil Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30217, "", "=q4=Nordrassil Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30220, "", "=q4=Nordrassil Life-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = "Druid".." - "..AL["Balance"];
+ { 1, 30233, "", "=q4=Nordrassil Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30235, "", "=q4=Nordrassil Wrath-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30231, "", "=q4=Nordrassil Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30232, "", "=q4=Nordrassil Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30234, "", "=q4=Nordrassil Wrath-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 30141, "", "=q4=Rift Stalker Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30143, "", "=q4=Rift Stalker Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30139, "", "=q4=Rift Stalker Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30140, "", "=q4=Rift Stalker Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30142, "", "=q4=Rift Stalker Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 30206, "", "=q4=Cowl of Tirisfal", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30210, "", "=q4=Mantle of Tirisfal", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30196, "", "=q4=Robes of Tirisfal", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30205, "", "=q4=Gloves of Tirisfal", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30207, "", "=q4=Leggings of Tirisfal", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Retribution"];
+ { 1, 30125, "", "=q4=Crystalforge Faceguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30127, "", "=q4=Crystalforge Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30123, "", "=q4=Crystalforge Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30124, "", "=q4=Crystalforge Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30126, "", "=q4=Crystalforge Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Protection"];
+ { 1, 30131, "", "=q4=Crystalforge War-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30133, "", "=q4=Crystalforge Shoulderbraces", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30129, "", "=q4=Crystalforge Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30130, "", "=q4=Crystalforge Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30132, "", "=q4=Crystalforge Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Holy"];
+ { 1, 30136, "", "=q4=Crystalforge Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30138, "", "=q4=Crystalforge Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30134, "", "=q4=Crystalforge Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30135, "", "=q4=Crystalforge Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30137, "", "=q4=Crystalforge Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Holy"];
+ { 1, 30152, "", "=q4=Cowl of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30154, "", "=q4=Mantle of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30150, "", "=q4=Vestments of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30151, "", "=q4=Gloves of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30153, "", "=q4=Breeches of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Shadow"];
+ { 1, 30161, "", "=q4=Hood of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30163, "", "=q4=Wings of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30159, "", "=q4=Shroud of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30160, "", "=q4=Handguards of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30162, "", "=q4=Leggings of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 30146, "", "=q4=Deathmantle Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30149, "", "=q4=Deathmantle Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30144, "", "=q4=Deathmantle Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30145, "", "=q4=Deathmantle Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30148, "", "=q4=Deathmantle Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Enhancement"];
+ { 1, 30190, "", "=q4=Cataclysm Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30194, "", "=q4=Cataclysm Shoulderplates", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30185, "", "=q4=Cataclysm Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30189, "", "=q4=Cataclysm Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30192, "", "=q4=Cataclysm Legplates", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Restoration"];
+ { 1, 30166, "", "=q4=Cataclysm Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30168, "", "=q4=Cataclysm Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30164, "", "=q4=Cataclysm Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30165, "", "=q4=Cataclysm Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30167, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Elemental"];
+ { 1, 30171, "", "=q4=Cataclysm Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30173, "", "=q4=Cataclysm Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30169, "", "=q4=Cataclysm Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30170, "", "=q4=Cataclysm Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30172, "", "=q4=Cataclysm Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 30212, "", "=q4=Hood of the Corruptor", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30215, "", "=q4=Mantle of the Corruptor", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30214, "", "=q4=Robe of the Corruptor", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30211, "", "=q4=Gloves of the Corruptor", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30213, "", "=q4=Leggings of the Corruptor", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"];
+ { 1, 30115, "", "=q4=Destroyer Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30117, "", "=q4=Destroyer Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30113, "", "=q4=Destroyer Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30114, "", "=q4=Destroyer Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30116, "", "=q4=Destroyer Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"];
+ { 1, 14992, "", "=q4=Destroyer Helmet", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 14994, "", "=q4=Destroyer Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 14990, "", "=q4=Destroyer Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 14991, "", "=q4=Destroyer Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 14993, "", "=q4=Destroyer Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Fury"];
+ { 1, 30120, "", "=q4=Destroyer Battle-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30122, "", "=q4=Destroyer Shoulderblades", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 3, 30118, "", "=q4=Destroyer Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30119, "", "=q4=Destroyer Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30121, "", "=q4=Destroyer Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
};
-
-
- AtlasLoot_Data["T5DruidRestoration"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#t5s1_2#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30219, "", "=q4=Nordrassil Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30221, "", "=q4=Nordrassil Life-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30216, "", "=q4=Nordrassil Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30217, "", "=q4=Nordrassil Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30220, "", "=q4=Nordrassil Life-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4DruidRestoration";
- Next = "T6DruidRestoration";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5DruidBalance"] = {
- { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t5s1_3#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30233, "", "=q4=Nordrassil Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30235, "", "=q4=Nordrassil Wrath-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30231, "", "=q4=Nordrassil Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30232, "", "=q4=Nordrassil Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30234, "", "=q4=Nordrassil Wrath-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4DruidBalance";
- Next = "T6DruidBalance";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5Hunter"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t5s2#", "=ec1=#m22# - Vanquished Hero"};
- { 2, 30141, "", "=q4=Rift Stalker Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30143, "", "=q4=Rift Stalker Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30139, "", "=q4=Rift Stalker Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30140, "", "=q4=Rift Stalker Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30142, "", "=q4=Rift Stalker Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4Hunter";
- Next = "T6Hunter";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5Mage"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#t5s3#", "=ec1=#m22# - Vanquished Hero"};
- { 2, 30206, "", "=q4=Cowl of Tirisfal", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30210, "", "=q4=Mantle of Tirisfal", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30196, "", "=q4=Robes of Tirisfal", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30205, "", "=q4=Gloves of Tirisfal", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30207, "", "=q4=Leggings of Tirisfal", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4Mage";
- Next = "T6Mage";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5PaladinProtection"] = {
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t5s4_1#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30125, "", "=q4=Crystalforge Faceguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30127, "", "=q4=Crystalforge Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30123, "", "=q4=Crystalforge Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30124, "", "=q4=Crystalforge Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30126, "", "=q4=Crystalforge Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4PaladinProtection";
- Next = "T6PaladinProtection";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5PaladinRetribution"] = {
- { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t5s4_2#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30131, "", "=q4=Crystalforge War-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30133, "", "=q4=Crystalforge Shoulderbraces", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30129, "", "=q4=Crystalforge Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30130, "", "=q4=Crystalforge Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30132, "", "=q4=Crystalforge Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4PaladinRetribution";
- Next = "T6PaladinRetribution";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5PaladinHoly"] = {
- { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t5s4_3#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30136, "", "=q4=Crystalforge Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30138, "", "=q4=Crystalforge Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30134, "", "=q4=Crystalforge Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30135, "", "=q4=Crystalforge Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30137, "", "=q4=Crystalforge Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4PaladinHoly";
- Next = "T6PaladinHoly";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5PriestHoly"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t5s5_1#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30152, "", "=q4=Cowl of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30154, "", "=q4=Mantle of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30150, "", "=q4=Vestments of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30151, "", "=q4=Gloves of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30153, "", "=q4=Breeches of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4PriestHoly";
- Next = "T6PriestHoly";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5PriestShadow"] = {
- { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t5s5_2#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30161, "", "=q4=Hood of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30163, "", "=q4=Wings of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30159, "", "=q4=Shroud of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30160, "", "=q4=Handguards of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30162, "", "=q4=Leggings of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4PriestShadow";
- Next = "T6PriestShadow";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5Rogue"] = {
- { 1, 0, "Ability_BackStab", "=q6=#t5s6#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30146, "", "=q4=Deathmantle Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30149, "", "=q4=Deathmantle Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30144, "", "=q4=Deathmantle Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30145, "", "=q4=Deathmantle Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30148, "", "=q4=Deathmantle Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4Rogue";
- Next = "T6Rogue";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5ShamanEnhancement"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t5s7_1#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30190, "", "=q4=Cataclysm Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30194, "", "=q4=Cataclysm Shoulderplates", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30185, "", "=q4=Cataclysm Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30189, "", "=q4=Cataclysm Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30192, "", "=q4=Cataclysm Legplates", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4ShamanEnhancement";
- Next = "T6ShamanEnhancement";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5ShamanRestoration"] = {
- { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t5s7_2#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30166, "", "=q4=Cataclysm Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30168, "", "=q4=Cataclysm Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30164, "", "=q4=Cataclysm Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30165, "", "=q4=Cataclysm Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30167, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4ShamanRestoration";
- Next = "T6ShamanRestoration";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5ShamanElemental"] = {
- { 1, 0, "Spell_Nature_Lightning", "=q6=#t5s7_3#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30171, "", "=q4=Cataclysm Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30173, "", "=q4=Cataclysm Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30169, "", "=q4=Cataclysm Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30170, "", "=q4=Cataclysm Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30172, "", "=q4=Cataclysm Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4ShamanElemental";
- Next = "T6ShamanElemental";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5Warlock"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t5s8#", "=ec1=#m22# - Vanquished Hero"};
- { 2, 30212, "", "=q4=Hood of the Corruptor", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30215, "", "=q4=Mantle of the Corruptor", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30214, "", "=q4=Robe of the Corruptor", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30211, "", "=q4=Gloves of the Corruptor", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30213, "", "=q4=Leggings of the Corruptor", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4Warlock";
- Next = "T6Warlock";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5WarriorProtection"] = {
- { 1, 0, "INV_Shield_05", "=q6=#t5s9_1#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30115, "", "=q4=Destroyer Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30117, "", "=q4=Destroyer Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30113, "", "=q4=Destroyer Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30114, "", "=q4=Destroyer Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30116, "", "=q4=Destroyer Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 8, 0, "INV_Shield_05", "=q6=#t5s9_1#", "=ec1=#m22# - Vanquished Defender"};
- { 9, 14992, "", "=q4=Destroyer Helmet", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 10, 14994, "", "=q4=Destroyer Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 11, 14990, "", "=q4=Destroyer Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 12, 14991, "", "=q4=Destroyer Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 13, 14993, "", "=q4=Destroyer Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4WarriorProtection";
- Next = "T6WarriorProtection";
- Type = "BCRaid";
- };
-
-
-
- AtlasLoot_Data["T5WarriorFury"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t5s9_2#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30120, "", "=q4=Destroyer Battle-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30122, "", "=q4=Destroyer Shoulderblades", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30118, "", "=q4=Destroyer Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30119, "", "=q4=Destroyer Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30121, "", "=q4=Destroyer Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4WarriorFury";
- Next = "T6WarriorFury";
- Type = "BCRaid";
- };
-
- AtlasLoot_Data["T5Helms"] = {
- { 1, 30228, "", "=q4=Nordrassil Headdress", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 2, 30219, "", "=q4=Nordrassil Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30233, "", "=q4=Nordrassil Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 4, 30141, "", "=q4=Rift Stalker Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 5, 30206, "", "=q4=Cowl of Tirisfal", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30125, "", "=q4=Crystalforge Faceguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 7, 30131, "", "=q4=Crystalforge War-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 8, 30136, "", "=q4=Crystalforge Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 9, 30152, "", "=q4=Cowl of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 30161, "", "=q4=Hood of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 17, 30146, "", "=q4=Deathmantle Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 30190, "", "=q4=Cataclysm Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 19, 30166, "", "=q4=Cataclysm Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 20, 30171, "", "=q4=Cataclysm Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 30212, "", "=q4=Hood of the Corruptor", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 22, 30115, "", "=q4=Destroyer Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 23, 14992, "", "=q4=Destroyer Helmet", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 24, 30120, "", "=q4=Destroyer Battle-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = AtlasLoot_Lastboss;
- Type = "BCRaid";
- };
-
-
- AtlasLoot_Data["T5Shoulders"] = {
- { 1, 30230, "", "=q4=Nordrassil Feral-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 2, 30221, "", "=q4=Nordrassil Life-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 3, 30235, "", "=q4=Nordrassil Wrath-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30143, "", "=q4=Rift Stalker Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30210, "", "=q4=Mantle of Tirisfal", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 6, 30127, "", "=q4=Crystalforge Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 7, 30133, "", "=q4=Crystalforge Shoulderbraces", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 8, 30138, "", "=q4=Crystalforge Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 9, 30154, "", "=q4=Mantle of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 16, 30163, "", "=q4=Wings of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 17, 30149, "", "=q4=Deathmantle Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 18, 30194, "", "=q4=Cataclysm Shoulderplates", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 30168, "", "=q4=Cataclysm Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 30173, "", "=q4=Cataclysm Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 21, 30215, "", "=q4=Mantle of the Corruptor", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 22, 30117, "", "=q4=Destroyer Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 23, 14994, "", "=q4=Destroyer Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 24, 30122, "", "=q4=Destroyer Shoulderblades", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- Back = AtlasLoot_Lastboss;
- Type = "BCRaid";
- };
-
- AtlasLoot_Data["T5Legs"] = {
- { 1, 30229, "", "=q4=Nordrassil Feral-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 2, 30220, "", "=q4=Nordrassil Life-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30234, "", "=q4=Nordrassil Wrath-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 4, 30142, "", "=q4=Rift Stalker Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 5, 30207, "", "=q4=Leggings of Tirisfal", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30126, "", "=q4=Crystalforge Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 7, 30132, "", "=q4=Crystalforge Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 8, 30137, "", "=q4=Crystalforge Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 9, 30153, "", "=q4=Breeches of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 30162, "", "=q4=Leggings of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 17, 30148, "", "=q4=Deathmantle Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 30192, "", "=q4=Cataclysm Legplates", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 19, 30167, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 20, 30172, "", "=q4=Cataclysm Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 30213, "", "=q4=Leggings of the Corruptor", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 22, 30116, "", "=q4=Destroyer Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 23, 14993, "", "=q4=Destroyer Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 24, 30121, "", "=q4=Destroyer Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = AtlasLoot_Lastboss;
- Type = "BCRaid";
- };
-
- AtlasLoot_Data["T5Gloves"] = {
- { 1, 30223, "", "=q4=Nordrassil Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 2, 30217, "", "=q4=Nordrassil Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30232, "", "=q4=Nordrassil Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 4, 30140, "", "=q4=Rift Stalker Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 5, 30205, "", "=q4=Gloves of Tirisfal", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30124, "", "=q4=Crystalforge Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 7, 30130, "", "=q4=Crystalforge Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 8, 30135, "", "=q4=Crystalforge Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 9, 30151, "", "=q4=Gloves of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 30160, "", "=q4=Handguards of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 17, 30145, "", "=q4=Deathmantle Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 30189, "", "=q4=Cataclysm Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 19, 30165, "", "=q4=Cataclysm Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 20, 30170, "", "=q4=Cataclysm Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 30211, "", "=q4=Gloves of the Corruptor", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 22, 30114, "", "=q4=Destroyer Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 23, 14991, "", "=q4=Destroyer Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 24, 30119, "", "=q4=Destroyer Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = AtlasLoot_Lastboss;
- Type = "BCRaid";
- };
-
- AtlasLoot_Data["T5Chests"] = {
- { 1, 30222, "", "=q4=Nordrassil Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 2, 30216, "", "=q4=Nordrassil Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 3, 30231, "", "=q4=Nordrassil Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30139, "", "=q4=Rift Stalker Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30196, "", "=q4=Robes of Tirisfal", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 6, 30123, "", "=q4=Crystalforge Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 7, 30129, "", "=q4=Crystalforge Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 8, 30134, "", "=q4=Crystalforge Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 9, 30150, "", "=q4=Vestments of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 16, 30159, "", "=q4=Shroud of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 17, 30144, "", "=q4=Deathmantle Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 18, 30185, "", "=q4=Cataclysm Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 30164, "", "=q4=Cataclysm Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 30169, "", "=q4=Cataclysm Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 21, 30214, "", "=q4=Robe of the Corruptor", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 22, 30113, "", "=q4=Destroyer Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 23, 14990, "", "=q4=Destroyer Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 24, 30118, "", "=q4=Destroyer Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
-
- Back = AtlasLoot_Lastboss;
- Type = "BCRaid";
+ AtlasLoot_Data["SSC"] = {
+ Name = "ssc";
+ {
+ Name = "SSC";
+ { 1, 30228, "", "=q4=Nordrassil Headdress", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 2, 30219, "", "=q4=Nordrassil Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30233, "", "=q4=Nordrassil Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 4, 30141, "", "=q4=Rift Stalker Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 5, 30206, "", "=q4=Cowl of Tirisfal", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30125, "", "=q4=Crystalforge Faceguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 7, 30131, "", "=q4=Crystalforge War-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 8, 30136, "", "=q4=Crystalforge Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 9, 30152, "", "=q4=Cowl of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 16, 30161, "", "=q4=Hood of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 17, 30146, "", "=q4=Deathmantle Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 18, 30190, "", "=q4=Cataclysm Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 19, 30166, "", "=q4=Cataclysm Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 20, 30171, "", "=q4=Cataclysm Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 21, 30212, "", "=q4=Hood of the Corruptor", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 22, 30115, "", "=q4=Destroyer Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 23, 14992, "", "=q4=Destroyer Helmet", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 24, 30120, "", "=q4=Destroyer Battle-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ };
};
--------------
--- Tier 6 ---
--------------
-AtlasLoot_Data["T6DruidFeral"] = {
- { 1, 0, "Ability_Druid_Maul", "=q6=#t6s1_1#", "=ec1=#m23# - Forgotten Vanquisher"};
- { 2, 31039, "", "=q4=Thunderheart Cover", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 31048, "", "=q4=Thunderheart Pauldrons", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 31042, "", "=q4=Thunderheart Chestguard", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34444, "", "=q4=Thunderheart Wristguards", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 31034, "", "=q4=Thunderheart Gauntlets", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34556, "", "=q4=Thunderheart Waistguard", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 31044, "", "=q4=Thunderheart Leggings", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34573, "", "=q4=Thunderheart Treads", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5DruidFeral";
- Type = "BCRaid";
-};
+ AtlasLoot_Data["T6"] = {
+ Name = "Teir 6";
+ Type = "BCRaid";
+ {
+ Name = "Druid".." - "..AL["Feral"];
+ { 1, 31039, "", "=q4=Thunderheart Cover", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 31048, "", "=q4=Thunderheart Pauldrons", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 31042, "", "=q4=Thunderheart Chestguard", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34444, "", "=q4=Thunderheart Wristguards", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 31034, "", "=q4=Thunderheart Gauntlets", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34556, "", "=q4=Thunderheart Waistguard", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 31044, "", "=q4=Thunderheart Leggings", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34573, "", "=q4=Thunderheart Treads", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = "Druid".." - "..AL["Restoration"];
+ { 1, 31037, "", "=q4=Thunderheart Helmet", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 31047, "", "=q4=Thunderheart Spaulders", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 31041, "", "=q4=Thunderheart Tunic", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34445, "", "=q4=Thunderheart Bracers", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 31032, "", "=q4=Thunderheart Gloves", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34554, "", "=q4=Thunderheart Belt", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 31045, "", "=q4=Thunderheart Legguards", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34571, "", "=q4=Thunderheart Boots", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = "Druid".." - "..AL["Balance"];
+ { 1, 31040, "", "=q4=Thunderheart Headguard", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 31049, "", "=q4=Thunderheart Shoulderpads", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 31043, "", "=q4=Thunderheart Vest", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34446, "", "=q4=Thunderheart Bands", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 31035, "", "=q4=Thunderheart Handguards", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34555, "", "=q4=Thunderheart Cord", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 31046, "", "=q4=Thunderheart Pants", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34572, "", "=q4=Thunderheart Footwraps", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"];
+ { 1, 31003, "", "=q4=Gronnstalker's Helmet", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 31006, "", "=q4=Gronnstalker's Spaulders", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 31004, "", "=q4=Gronnstalker's Chestguard", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34443, "", "=q4=Gronnstalker's Bracers", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 31001, "", "=q4=Gronnstalker's Gloves", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34549, "", "=q4=Gronnstalker's Belt", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 31005, "", "=q4=Gronnstalker's Leggings", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34570, "", "=q4=Gronnstalker's Boots", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"];
+ { 1, 31056, "", "=q4=Cowl of the Tempest", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 31059, "", "=q4=Mantle of the Tempest", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 31057, "", "=q4=Robes of the Tempest", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34447, "", "=q4=Bracers of the Tempest", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 31055, "", "=q4=Gloves of the Tempest", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34557, "", "=q4=Belt of the Tempest", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 31058, "", "=q4=Leggings of the Tempest", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34574, "", "=q4=Boots of the Tempest", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Retribution"];
+ { 1, 30987, "", "=q4=Lightbringer Faceguard", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 30998, "", "=q4=Lightbringer Shoulderguards", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 30991, "", "=q4=Lightbringer Chestguard", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34433, "", "=q4=Lightbringer Wristguards", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 30985, "", "=q4=Lightbringer Handguards", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34488, "", "=q4=Lightbringer Waistguard", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 30995, "", "=q4=Lightbringer Legguards", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34560, "", "=q4=Lightbringer Greaves", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Protection"];
+ { 1, 30989, "", "=q4=Lightbringer War-Helm", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 30997, "", "=q4=Lightbringer Shoulderbraces", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 30990, "", "=q4=Lightbringer Breastplate", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34431, "", "=q4=Lightbringer Bands", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 30982, "", "=q4=Lightbringer Gauntlets", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34485, "", "=q4=Lightbringer Girdle", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 30993, "", "=q4=Lightbringer Greaves", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34561, "", "=q4=Lightbringer Boots", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Holy"];
+ { 1, 30988, "", "=q4=Lightbringer Greathelm", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 30996, "", "=q4=Lightbringer Pauldrons", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 30992, "", "=q4=Lightbringer Chestpiece", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34432, "", "=q4=Lightbringer Bracers", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 30983, "", "=q4=Lightbringer Gloves", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34487, "", "=q4=Lightbringer Belt", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 30994, "", "=q4=Lightbringer Leggings", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34559, "", "=q4=Lightbringer Treads", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Holy"];
+ { 1, 31063, "", "=q4=Cowl of Absolution", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 31069, "", "=q4=Mantle of Absolution", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 31066, "", "=q4=Vestments of Absolution", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34435, "", "=q4=Cuffs of Absolution", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 31060, "", "=q4=Gloves of Absolution", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34527, "", "=q4=Belt of Absolution", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 31068, "", "=q4=Breeches of Absolution", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34562, "", "=q4=Boots of Absolution", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Shadow"];
+ { 1, 31064, "", "=q4=Hood of Absolution", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 31070, "", "=q4=Shoulderpads of Absolution", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 31065, "", "=q4=Shroud of Absolution", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34434, "", "=q4=Bracers of Absolution", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 31061, "", "=q4=Handguards of Absolution", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34528, "", "=q4=Cord of Absolution", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 31067, "", "=q4=Leggings of Absolution", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34563, "", "=q4=Treads of Absolution", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"];
+ { 1, 31027, "", "=q4=Slayer's Helm", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 31030, "", "=q4=Slayer's Shoulderpads", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 31028, "", "=q4=Slayer's Chestguard", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34448, "", "=q4=Slayer's Bracers", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 31026, "", "=q4=Slayer's Handguards", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34558, "", "=q4=Slayer's Belt", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 31029, "", "=q4=Slayer's Legguards", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34575, "", "=q4=Slayer's Boots", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Enhancement"];
+ { 1, 31015, "", "=q4=Skyshatter Cover", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 31024, "", "=q4=Skyshatter Pauldrons", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 31018, "", "=q4=Skyshatter Tunic", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34439, "", "=q4=Skyshatter Wristguards", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 31011, "", "=q4=Skyshatter Grips", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34545, "", "=q4=Skyshatter Girdle", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 31021, "", "=q4=Skyshatter Pants", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34567, "", "=q4=Skyshatter Greaves", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Restoration"];
+ { 1, 31012, "", "=q4=Skyshatter Helmet", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 31022, "", "=q4=Skyshatter Shoulderpads", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 31016, "", "=q4=Skyshatter Chestguard", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34438, "", "=q4=Skyshatter Bracers", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 31007, "", "=q4=Skyshatter Gloves", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34543, "", "=q4=Skyshatter Belt", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 31019, "", "=q4=Skyshatter Leggings", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34565, "", "=q4=Skyshatter Boots", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Elemental"];
+ { 1, 31014, "", "=q4=Skyshatter Headguard", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 31023, "", "=q4=Skyshatter Mantle", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 31017, "", "=q4=Skyshatter Breastplate", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34437, "", "=q4=Skyshatter Bands", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 31008, "", "=q4=Skyshatter Gauntlets", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34542, "", "=q4=Skyshatter Cord", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 31020, "", "=q4=Skyshatter Legguards", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34566, "", "=q4=Skyshatter Treads", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"];
+ { 1, 31051, "", "=q4=Hood of the Malefic", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 31054, "", "=q4=Mantle of the Malefic", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 31052, "", "=q4=Robe of the Malefic", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34436, "", "=q4=Bracers of the Malefic", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 31050, "", "=q4=Gloves of the Malefic", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34541, "", "=q4=Belt of the Malefic", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 31053, "", "=q4=Leggings of the Malefic", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34564, "", "=q4=Boots of the Malefic", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"];
+ { 1, 30974, "", "=q4=Onslaught Greathelm", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 30980, "", "=q4=Onslaught Shoulderguards", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 30976, "", "=q4=Onslaught Chestguard", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34442, "", "=q4=Onslaught Wristguards", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 30970, "", "=q4=Onslaught Handguards", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34547, "", "=q4=Onslaught Waistguard", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 30978, "", "=q4=Onslaught Legguards", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34568, "", "=q4=Onslaught Boots", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ {
+ Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Fury"];
+ { 1, 30972, "", "=q4=Onslaught Battle-Helm", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 2, 30979, "", "=q4=Onslaught Shoulderblades", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
+ { 3, 30975, "", "=q4=Onslaught Breastplate", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
+ { 4, 34441, "", "=q4=Onslaught Bracers", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 5, 30969, "", "=q4=Onslaught Gauntlets", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
+ { 6, 34546, "", "=q4=Onslaught Belt", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ { 7, 30977, "", "=q4=Onslaught Greaves", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
+ { 8, 34569, "", "=q4=Onslaught Treads", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
+ };
+ };
-
-AtlasLoot_Data["T6DruidRestoration"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#t6s1_2#", "=ec1=#m23# - Forgotten Vanquisher"};
- { 2, 31037, "", "=q4=Thunderheart Helmet", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 31047, "", "=q4=Thunderheart Spaulders", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 31041, "", "=q4=Thunderheart Tunic", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34445, "", "=q4=Thunderheart Bracers", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 31032, "", "=q4=Thunderheart Gloves", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34554, "", "=q4=Thunderheart Belt", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 31045, "", "=q4=Thunderheart Legguards", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34571, "", "=q4=Thunderheart Boots", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5DruidRestoration";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6DruidBalance"] = {
- { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t6s1_3#", "=ec1=#m23# - Forgotten Vanquisher"};
- { 2, 31040, "", "=q4=Thunderheart Headguard", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 31049, "", "=q4=Thunderheart Shoulderpads", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 31043, "", "=q4=Thunderheart Vest", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34446, "", "=q4=Thunderheart Bands", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 31035, "", "=q4=Thunderheart Handguards", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34555, "", "=q4=Thunderheart Cord", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 31046, "", "=q4=Thunderheart Pants", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34572, "", "=q4=Thunderheart Footwraps", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5DruidBalance";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6Hunter"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t6s2#", "=ec1=#m23# - Forgotten Protector"};
- { 2, 31003, "", "=q4=Gronnstalker's Helmet", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 31006, "", "=q4=Gronnstalker's Spaulders", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 31004, "", "=q4=Gronnstalker's Chestguard", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34443, "", "=q4=Gronnstalker's Bracers", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 31001, "", "=q4=Gronnstalker's Gloves", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34549, "", "=q4=Gronnstalker's Belt", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 31005, "", "=q4=Gronnstalker's Leggings", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34570, "", "=q4=Gronnstalker's Boots", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5Hunter";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6Mage"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#t6s3#", "=ec1=#m23# - Forgotten Vanquisher"};
- { 2, 31056, "", "=q4=Cowl of the Tempest", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 31059, "", "=q4=Mantle of the Tempest", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 31057, "", "=q4=Robes of the Tempest", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34447, "", "=q4=Bracers of the Tempest", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 31055, "", "=q4=Gloves of the Tempest", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34557, "", "=q4=Belt of the Tempest", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 31058, "", "=q4=Leggings of the Tempest", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34574, "", "=q4=Boots of the Tempest", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5Mage";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6PaladinProtection"] = {
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t6s4_1#", "=ec1=#m23# - Forgotten Conqueror"};
- { 2, 30987, "", "=q4=Lightbringer Faceguard", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 30998, "", "=q4=Lightbringer Shoulderguards", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 30991, "", "=q4=Lightbringer Chestguard", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34433, "", "=q4=Lightbringer Wristguards", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 30985, "", "=q4=Lightbringer Handguards", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34488, "", "=q4=Lightbringer Waistguard", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 30995, "", "=q4=Lightbringer Legguards", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34560, "", "=q4=Lightbringer Greaves", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5PaladinProtection";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6PaladinRetribution"] = {
- { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t6s4_2#", "=ec1=#m23# - Forgotten Conqueror"};
- { 2, 30989, "", "=q4=Lightbringer War-Helm", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 30997, "", "=q4=Lightbringer Shoulderbraces", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 30990, "", "=q4=Lightbringer Breastplate", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34431, "", "=q4=Lightbringer Bands", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 30982, "", "=q4=Lightbringer Gauntlets", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34485, "", "=q4=Lightbringer Girdle", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 30993, "", "=q4=Lightbringer Greaves", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34561, "", "=q4=Lightbringer Boots", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5PaladinRetribution";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6PaladinHoly"] = {
- { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t6s4_3#", "=ec1=#m23# - Forgotten Conqueror"};
- { 2, 30988, "", "=q4=Lightbringer Greathelm", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 30996, "", "=q4=Lightbringer Pauldrons", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 30992, "", "=q4=Lightbringer Chestpiece", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34432, "", "=q4=Lightbringer Bracers", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 30983, "", "=q4=Lightbringer Gloves", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34487, "", "=q4=Lightbringer Belt", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 30994, "", "=q4=Lightbringer Leggings", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34559, "", "=q4=Lightbringer Treads", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5PaladinHoly";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6PriestHoly"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t6s5_1#", "=ec1=#m23# - Forgotten Conqueror"};
- { 2, 31063, "", "=q4=Cowl of Absolution", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 31069, "", "=q4=Mantle of Absolution", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 31066, "", "=q4=Vestments of Absolution", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34435, "", "=q4=Cuffs of Absolution", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 31060, "", "=q4=Gloves of Absolution", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34527, "", "=q4=Belt of Absolution", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 31068, "", "=q4=Breeches of Absolution", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34562, "", "=q4=Boots of Absolution", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5PriestHoly";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6PriestShadow"] = {
- { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t6s5_2#", "=ec1=#m23# - Forgotten Conqueror"};
- { 2, 31064, "", "=q4=Hood of Absolution", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 31070, "", "=q4=Shoulderpads of Absolution", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 31065, "", "=q4=Shroud of Absolution", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34434, "", "=q4=Bracers of Absolution", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 31061, "", "=q4=Handguards of Absolution", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34528, "", "=q4=Cord of Absolution", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 31067, "", "=q4=Leggings of Absolution", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34563, "", "=q4=Treads of Absolution", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5PriestShadow";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6Rogue"] = {
- { 1, 0, "Ability_BackStab", "=q6=#t6s6#", "=ec1=#m23# - Forgotten Vanquisher"};
- { 2, 31027, "", "=q4=Slayer's Helm", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 31030, "", "=q4=Slayer's Shoulderpads", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 31028, "", "=q4=Slayer's Chestguard", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34448, "", "=q4=Slayer's Bracers", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 31026, "", "=q4=Slayer's Handguards", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34558, "", "=q4=Slayer's Belt", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 31029, "", "=q4=Slayer's Legguards", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34575, "", "=q4=Slayer's Boots", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5Rogue";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6ShamanEnhancement"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t6s7_1#", "=ec1=#m23# - Forgotten Protector"};
- { 2, 31015, "", "=q4=Skyshatter Cover", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 31024, "", "=q4=Skyshatter Pauldrons", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 31018, "", "=q4=Skyshatter Tunic", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34439, "", "=q4=Skyshatter Wristguards", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 31011, "", "=q4=Skyshatter Grips", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34545, "", "=q4=Skyshatter Girdle", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 31021, "", "=q4=Skyshatter Pants", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34567, "", "=q4=Skyshatter Greaves", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5ShamanEnhancement";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6ShamanRestoration"] = {
- { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t6s7_2#", "=ec1=#m23# - Forgotten Protector"};
- { 2, 31012, "", "=q4=Skyshatter Helmet", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 31022, "", "=q4=Skyshatter Shoulderpads", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 31016, "", "=q4=Skyshatter Chestguard", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34438, "", "=q4=Skyshatter Bracers", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 31007, "", "=q4=Skyshatter Gloves", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34543, "", "=q4=Skyshatter Belt", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 31019, "", "=q4=Skyshatter Leggings", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34565, "", "=q4=Skyshatter Boots", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5ShamanRestoration";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6ShamanElemental"] = {
- { 1, 0, "Spell_Nature_Lightning", "=q6=#t6s7_3#", "=ec1=#m23# - Forgotten Protector"};
- { 2, 31014, "", "=q4=Skyshatter Headguard", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 31023, "", "=q4=Skyshatter Mantle", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 31017, "", "=q4=Skyshatter Breastplate", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34437, "", "=q4=Skyshatter Bands", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 31008, "", "=q4=Skyshatter Gauntlets", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34542, "", "=q4=Skyshatter Cord", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 31020, "", "=q4=Skyshatter Legguards", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34566, "", "=q4=Skyshatter Treads", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5ShamanElemental";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6Warlock"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t6s8#", "=ec1=#m23# - Forgotten Conqueror"};
- { 2, 31051, "", "=q4=Hood of the Malefic", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 31054, "", "=q4=Mantle of the Malefic", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 31052, "", "=q4=Robe of the Malefic", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34436, "", "=q4=Bracers of the Malefic", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 31050, "", "=q4=Gloves of the Malefic", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34541, "", "=q4=Belt of the Malefic", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 31053, "", "=q4=Leggings of the Malefic", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34564, "", "=q4=Boots of the Malefic", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5Warlock";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6WarriorProtection"] = {
- { 1, 0, "INV_Shield_05", "=q6=#t6s9_1#", "=ec1=#m23# - Forgotten Protector"};
- { 2, 30974, "", "=q4=Onslaught Greathelm", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 30980, "", "=q4=Onslaught Shoulderguards", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 30976, "", "=q4=Onslaught Chestguard", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34442, "", "=q4=Onslaught Wristguards", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 30970, "", "=q4=Onslaught Handguards", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34547, "", "=q4=Onslaught Waistguard", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 30978, "", "=q4=Onslaught Legguards", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34568, "", "=q4=Onslaught Boots", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5WarriorProtection";
- Type = "BCRaid";
-};
-
-
-AtlasLoot_Data["T6WarriorFury"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t6s9_2#", "=ec1=#m23# - Forgotten Protector"};
- { 2, 30972, "", "=q4=Onslaught Battle-Helm", "=ds="..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 3, 30979, "", "=q4=Onslaught Shoulderblades", "=ds="..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")"};
- { 4, 30975, "", "=q4=Onslaught Breastplate", "=ds="..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")"};
- { 5, 34441, "", "=q4=Onslaught Bracers", "=ds="..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 6, 30969, "", "=q4=Onslaught Gauntlets", "=ds="..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")"};
- { 7, 34546, "", "=q4=Onslaught Belt", "=ds="..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- { 8, 30977, "", "=q4=Onslaught Greaves", "=ds="..BabbleBoss["The Illidari Council"].." ("..BabbleZone["Black Temple"]..")"};
- { 9, 34569, "", "=q4=Onslaught Treads", "=ds="..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")"};
- Back = "T6SET";
- Prev = "T5WarriorFury";
- Type = "BCRaid";
-};
-
--------------------------------
--- The Burning Crusade Sets ---
--------------------------------
AtlasLoot_Data["TBCSets"] = {
- { 1, 0, "INV_Box_01", "=q6=#bcs3#", "=q1=#z7#"};
- { 2, 34703, "", "=q3=Latro's Dancing Blade", "=ds=#h1#, #w10#, =q2=#n138# (#z30#)", "", ""};
- { 3, 28189, "", "=q3=Latro's Shifting Sword", "=ds=#h1#, #w10#, =q2=#n139# (#z33#)", "", ""};
- { 5, 0, "INV_Box_01", "=q6=#bcs1#", "=q1=#z17#"};
- { 6, 31338, "", "=q4=Charlotte's Ivy", "=ds=#s2#", "", "0.01%"};
- { 7, 31339, "", "=q4=Lola's Eve", "=ds=#s13#", "", "0.01%"};
- { 16, 0, "INV_Box_01", "=q6=#bcs4#", "=q2=#n11#, =q1=#z34#"};
- { 17, 32946, "", "=q4=Claw of Molten Fury", "=ds=#h3#, #w13#"};
- { 18, 32945, "", "=q4=Fist of Molten Fury", "=ds=#h4#, #w13#"};
- { 20, 0, "INV_Box_01", "=q6=#bcs2#", "=q2=#n137#, =q1=#z18#"};
- { 21, 32837, "", "=q5=Warglaive of Azzinoth", "=ds=#h3#, #w10#, =q1=#m1# =ds=#c9#, #c6#"};
- { 22, 32838, "", "=q5=Warglaive of Azzinoth", "=ds=#h4#, #w10#, =q1=#m1# =ds=#c9#, #c6#"};
- Back = "SETMENUTBC";
+ 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#"};
+ };
};
--------------------------------
--- Badge of Justice Rewards ---
--------------------------------
- AtlasLoot_Data["HardModeCloth"] = {
- { 1, 0, "INV_Box_01", "=q6=#z31#", ""};
- { 2, 32090, "", "=q4=Cowl of Naaru Blessings", "=ds=#s1#", "50 #heroic#", ""};
- { 3, 32089, "", "=q4=Mana-Binders Cowl", "=ds=#s1#", "50 #heroic#", ""};
- { 4, 33588, "", "=q4=Runed Spell-cuffs", "=ds=#s8#", "35 #heroic#", ""};
- { 5, 33589, "", "=q4=Wristguards of Tranquil Thought", "=ds=#s8#", "35 #heroic#", ""};
- { 6, 33587, "", "=q4=Light-Blessed Bonds", "=ds=#s9#", "60 #heroic#", ""};
- { 7, 33586, "", "=q4=Studious Wraps", "=ds=#s9#", "60 #heroic#", ""};
- { 8, 33291, "", "=q4=Voodoo-woven Belt", "=ds=#s10#", "60 #heroic#", ""};
- { 9, 33585, "", "=q4=Achromic Trousers of the Naaru", "=ds=#s11#", "75 #heroic#", ""};
- { 10, 33584, "", "=q4=Pantaloons of Arcane Annihilation", "=ds=#s11#", "75 #heroic#", ""};
- { 16, 0, "INV_Box_01", "=q6=#z32#", ""};
- { 17, 34924, "", "=q4=Gown of Spiritual Wonder", "=ds=#s5#", "100 #heroic#", ""};
- { 18, 34917, "", "=q4=Shroud of the Lore`nial", "=ds=#s5#", "100 #heroic#", ""};
- { 19, 34936, "", "=q4=Tormented Demonsoul Robes", "=ds=#s5#", "100 #heroic#", ""};
- { 20, 34938, "", "=q4=Enslaved Doomguard Soulgrips", "=ds=#s9#", "75 #heroic#", ""};
- { 21, 34925, "", "=q4=Adorned Supernal Legwraps", "=ds=#s11#", "100 #heroic#", ""};
- { 22, 34937, "", "=q4=Corrupted Soulcloth Pantaloons", "=ds=#s11#", "100 #heroic#", ""};
- { 23, 34918, "", "=q4=Legwraps of Sweltering Flame", "=ds=#s11#", "100 #heroic#", ""};
- { 24, 34919, "", "=q4=Boots of Incantations", "=ds=#s12#", "75 #heroic#", ""};
- { 25, 34926, "", "=q4=Slippers of Dutiful Mending", "=ds=#s12#", "75 #heroic#", ""};
- Back = "70TOKENMENU";
+ 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["HardModeLeather"] = {
- { 1, 0, "INV_Box_01", "=q6=#z31#", ""};
- { 2, 32088, "", "=q4=Cowl of Beastly Rage", "=ds=#s1#", "50 #heroic#", ""};
- { 3, 33972, "", "=q4=Mask of Primal Power", "=ds=#s1#", "75 #heroic#", ""};
- { 4, 32087, "", "=q4=Mask of the Deceiver", "=ds=#s1#", "50 #heroic#", ""};
- { 5, 33287, "", "=q4=Gnarled Ironwood Pauldrons", "=ds=#s3#", "60 #heroic#", ""};
- { 6, 33973, "", "=q4=Pauldrons of Tribal Fury", "=ds=#s3#", "60 #heroic#", ""};
- { 7, 33566, "", "=q4=Blessed Elunite Coverings", "=ds=#s5#", "75 #heroic#", ""};
- { 8, 33579, "", "=q4=Vestments of Hibernation", "=ds=#s5#", "75 #heroic#", ""};
- { 9, 33578, "", "=q4=Armwraps of the Kaldorei Protector", "=ds=#s8#", "35 #heroic#", ""};
- { 10, 33580, "", "=q4=Band of the Swift Paw", "=ds=#s8#", "35 #heroic#", ""};
- { 11, 33557, "", "=q4=Gargon's Bracers Peaceful Slumber", "=ds=#s8#", "35 #heroic#", ""};
- { 12, 33540, "", "=q4=Master Assassin Wristwraps", "=ds=#s8#", "35 #heroic#", ""};
- { 13, 33974, "", "=q4=Grasp of the Moonkin", "=ds=#s9#", "60 #heroic#", ""};
- { 14, 33539, "", "=q4=Trickster's Stickyfingers", "=ds=#s9#", "60 #heroic#", ""};
- { 15, 33559, "", "=q4=Starfire Waistband", "=ds=#s10#", "60 #heroic#", ""};
- { 17, 33583, "", "=q4=Waistguard of the Great Beast", "=ds=#s10#", "60 #heroic#", ""};
- { 18, 33552, "", "=q4=Pants of Splendid Recovery", "=ds=#s11#", "75 #heroic#", ""};
- { 19, 33538, "", "=q4=Shallow-grave Trousers", "=ds=#s11#", "75 #heroic#", ""};
- { 20, 33582, "", "=q4=Footwraps of Wild Encroachment", "=ds=#s12#", "60 #heroic#", ""};
- { 21, 33577, "", "=q4=Moon-walkers", "=ds=#s12#", "60 #heroic#", ""};
- { 22, 33222, "", "=q4=Nyn'jah's Tabi Boots", "=ds=#s12#", "60 #heroic#", ""};
- Next = "HardModeLeather2";
- Back = "70TOKENMENU";
+ 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["HardModeLeather2"] = {
- { 1, 0, "INV_Box_01", "=q6=#z32#", ""};
- { 2, 34906, "", "=q4=Embrace of Everlasting Prowess", "=ds=#s5#", "100 #heroic#", ""};
- { 3, 34903, "", "=q4=Embrace of Starlight", "=ds=#s5#", "100 #heroic#", ""};
- { 4, 34900, "", "=q4=Shroud of Nature's Harmony", "=ds=#s5#", "100 #heroic#", ""};
- { 5, 34927, "", "=q4=Tunic of the Dark Hour", "=ds=#s5#", "100 #heroic#", ""};
- { 6, 34904, "", "=q4=Barbed Gloves of the Sage", "=ds=#s9#", "75 #heroic#", ""};
- { 7, 34911, "", "=q4=Handwraps of the Aggressor", "=ds=#s9#", "75 #heroic#", ""};
- { 8, 34902, "", "=q4=Oakleaf-Spun Handguards", "=ds=#s9#", "75 #heroic#", ""};
- { 9, 34929, "", "=q4=Belt of the Silent Path", "=ds=#s10#", "75 #heroic#", ""};
- { 10, 34905, "", "=q4=Crystalwind Leggings", "=ds=#s11#", "100 #heroic#", ""};
- { 11, 34901, "", "=q4=Grovewalker's Leggings", "=ds=#s11#", "100 #heroic#", ""};
- { 12, 34910, "", "=q4=Tameless Breeches", "=ds=#s11#", "100 #heroic#", ""};
- { 13, 34928, "", "=q4=Trousers of the Scryers' Retainer", "=ds=#s11#", "100 #heroic#", ""};
- Prev = "HardModeLeather";
- Back = "70TOKENMENU";
- };
- AtlasLoot_Data["HardModeMail"] = {
- { 1, 0, "INV_Box_01", "=q6=#z31#", ""};
- { 2, 32086, "", "=q4=Storm Master's Helmet", "=ds=#s1#, #a3#", "50 #heroic#", ""};
- { 3, 32085, "", "=q4=Warpstalker Helm", "=ds=#s1#, #a3#", "50 #heroic#", ""};
- { 4, 33970, "", "=q4=Pauldrons of the Furious Elements", "=ds=#s3#, #a3#", "60 #heroic#", ""};
- { 5, 33965, "", "=q4=Hauberk of the Furious Elements", "=ds=#s5#, #a3#", "75 #heroic#", ""};
- { 6, 33535, "", "=q4=Earthquake Bracers", "=ds=#s8#, #a3#", "35 #heroic#", ""};
- { 7, 33532, "", "=q4=Gleaming Earthen Bracers", "=ds=#s8#, #a3#", "35 #heroic#", ""};
- { 8, 33529, "", "=q4=Steadying Bracers", "=ds=#s8#, #a3#", "35 #heroic#", ""};
- { 9, 33528, "", "=q4=Gauntlets of Sniping", "=ds=#s9#, #a3#", "60 #heroic#", ""};
- { 10, 33534, "", "=q4=Grips of Nature's Wrath", "=ds=#s9#, #a3#", "60 #heroic#", ""};
- { 11, 33531, "", "=q4=Polished Waterscale Gloves", "=ds=#s9#, #a3#", "60 #heroic#", ""};
- { 12, 33386, "", "=q4=Man'kin'do's Belt", "=ds=#s10#, #a3#", "60 #heroic#", ""};
- { 13, 33536, "", "=q4=Stormwrap", "=ds=#s10#, #a3#", "60 #heroic#", ""};
- { 14, 33280, "", "=q4=War-Feathered Loop", "=ds=#s10#, #a3#", "60 #heroic#", ""};
- { 15, 33530, "", "=q4=Natural Life Leggings", "=ds=#s11#, #a3#", "75 #heroic#", ""};
- { 16, 33527, "", "=q4=Shifting Camouflage Pants", "=ds=#s11#, #a3#", "75 #heroic#", ""};
- { 17, 33537, "", "=q4=Treads of Booming Thunder", "=ds=#s12#, #a3#", "60 #heroic#", ""};
- { 18, 33324, "", "=q4=Treads of Life Path", "=ds=#s12#, #a3#", "60 #heroic#", ""};
- { 21, 0, "INV_Box_01", "=q6=#z32#", ""};
- { 22, 34933, "", "=q4=Hauberk of Whirling Fury", "=ds=#s5#", "100 #heroic#", ""};
- { 23, 34912, "", "=q4=Scaled Drakeskin Chestguard", "=ds=#s5#", "100 #heroic#", ""};
- { 24, 34930, "", "=q4=Wave of Life Chestguard", "=ds=#s5#", "100 #heroic#", ""};
- { 25, 34916, "", "=q4=Gauntlets of Rapidity", "=ds=#s9#", "75 #heroic#", ""};
- { 26, 34935, "", "=q4=Aftershock Waistguard", "=ds=#s10#", "75 #heroic#", ""};
- { 27, 34932, "", "=q4=Clutch of the Soothing Breeze", "=ds=#s10#", "75 #heroic#", ""};
- { 28, 34914, "", "=q4=Leggings of the Pursuit", "=ds=#s11#", "100 #heroic#", ""};
- { 29, 34931, "", "=q4=Runed Scales of Antiquity", "=ds=#s11#", "100 #heroic#", ""};
- { 30, 34934, "", "=q4=Rushing Storm Kilt", "=ds=#s11#", "100 #heroic#", ""};
- Back = "70TOKENMENU";
- };
-
- AtlasLoot_Data["HardModePlate"] = {
- { 1, 0, "INV_Box_01", "=q6=#z31#", ""};
- { 2, 33810, "", "=q4=Amani Mask of Death", "=ds=#s1#, #a4#", "75 #heroic#", ""};
- { 3, 32083, "", "=q4=Faceguard of Determination", "=ds=#s1#, #a4#", "50 #heroic#", ""};
- { 4, 32084, "", "=q4=Helmet of the Steadfast Champion", "=ds=#s1#, #a4#", "50 #heroic#", ""};
- { 5, 33514, "", "=q4=Pauldrons of Gruesome Fate", "=ds=#s3#, #a4#", "60 #heroic#", ""};
- { 6, 33522, "", "=q4=Chestguard of the Stoic Guardian", "=ds=#s5#, #a4#", "75 #heroic#", ""};
- { 7, 33516, "", "=q4=Bracers of the Ancient Phalanx", "=ds=#s8#, #a4#", "35 #heroic#", ""};
- { 8, 33513, "", "=q4=Eternium Rage-shackles", "=ds=#s8#, #a4#", "35 #heroic#", ""};
- { 9, 33520, "", "=q4=Vambraces of the Naaru", "=ds=#s8#, #a4#", "35 #heroic#", ""};
- { 10, 33517, "", "=q4=Bonefist Gauntlets", "=ds=#s9#, #a4#", "60 #heroic#", ""};
- { 11, 33512, "", "=q4=Furious Deathgrips", "=ds=#s9#, #a4#", "60 #heroic#", ""};
- { 12, 33519, "", "=q4=Handguards of the Templar", "=ds=#s9#, #a4#", "60 #heroic#", ""};
- { 13, 33331, "", "=q4=Chain of Unleashed Rage", "=ds=#s10#, #a4#", "60 #heroic#", ""};
- { 14, 33524, "", "=q4=Girdle of the Protector", "=ds=#s10#, #a4#", "60 #heroic#", ""};
- { 15, 33279, "", "=q4=Iron-tusk Girdle", "=ds=#s10#, #a4#", "60 #heroic#", ""};
- { 17, 33501, "", "=q4=Bloodthirster's Greaves", "=ds=#s11#, #a4#", "75 #heroic#", ""};
- { 18, 33518, "", "=q4=High Justicar's Legplates", "=ds=#s11#, #a4#", "75 #heroic#", ""};
- { 19, 33515, "", "=q4=Unwavering Legguards", "=ds=#s11#, #a4#", "75 #heroic#", ""};
- { 20, 33207, "", "=q4=Implacable Guardian Sabatons", "=ds=#s12#, #a4#", "60 #heroic#", ""};
- { 21, 33523, "", "=q4=Sabatons of the Righteous Defender", "=ds=#s12#, #a4#", "60 #heroic#", ""};
- Next = "HardModePlate2";
- Back = "70TOKENMENU";
- };
-
- AtlasLoot_Data["HardModePlate2"] = {
- { 1, 0, "INV_Box_01", "=q6=#z32#", ""};
- { 2, 34942, "", "=q4=Breastplate of Ire", "=ds=#s5#", "100 #heroic#", ""};
- { 3, 34939, "", "=q4=Chestplate of Stoicism", "=ds=#s5#", "100 #heroic#", ""};
- { 4, 34921, "", "=q4=Ecclesiastical Cuirass", "=ds=#s5#", "100 #heroic#", ""};
- { 5, 34945, "", "=q4=Shattrath Protectorate's Breastplate", "=ds=#s5#", "100 #heroic#", ""};
- { 6, 34944, "", "=q4=Girdle of Seething Rage", "=ds=#s10#", "75 #heroic#", ""};
- { 7, 34941, "", "=q4=Girdle of the Fearless", "=ds=#s10#", "75 #heroic#", ""};
- { 8, 34923, "", "=q4=Waistguard of Reparation", "=ds=#s10#", "75 #heroic#", ""};
- { 9, 34922, "", "=q4=Greaves of Pacification", "=ds=#s11#", "100 #heroic#", ""};
- { 10, 34946, "", "=q4=Inscribed Legplates of the Aldor", "=ds=#s11#", "100 #heroic#", ""};
- { 11, 34943, "", "=q4=Legplates of Unending Fury", "=ds=#s11#", "100 #heroic#", ""};
- { 12, 34940, "", "=q4=Sunguard Legplates", "=ds=#s11#", "100 #heroic#", ""};
- { 13, 34947, "", "=q4=Blue's Greaves of the Righteous Guardian", "=ds=#s12#", "75 #heroic#", ""};
- Prev = "HardModePlate";
- Back = "70TOKENMENU";
- };
-
- AtlasLoot_Data["HardModeResist"] = {
- { 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#", ""};
- Back = "70TOKENMENU";
- };
-
- AtlasLoot_Data["HardModeCloaks"] = {
- { 1, 0, "INV_Box_01", "=q6=#z31#", ""};
- { 2, 29375, "", "=q4=Bishop's Cloak", "=ds=#s4#", "25 #heroic#", ""};
- { 3, 29382, "", "=q4=Blood Knight War Cloak", "=ds=#s4#", "25 #heroic#", ""};
- { 4, 35321, "", "=q4=Cloak of Arcane Alacrity", "=ds=#s4#", "60 #heroic#", ""};
- { 5, 33304, "", "=q4=Cloak of Subjugated Power", "=ds=#s4#", "60 #heroic#", ""};
- { 6, 35324, "", "=q4=Cloak of Swift Reprieve", "=ds=#s4#", "60 #heroic#", ""};
- { 7, 33484, "", "=q4=Dory's Embrace", "=ds=#s4#", "60 #heroic#", ""};
- { 8, 29385, "", "=q4=Farstrider Defender's Cloak", "=ds=#s4#", "25 #heroic#", ""};
- { 9, 33333, "", "=q4=Kharmaa's Shroud of Hope", "=ds=#s4#", "60 #heroic#", ""};
- { 10, 29369, "", "=q4=Shawl of Shifting Probabilities", "=ds=#s4#", "25 #heroic#", ""};
- { 11, 33593, "", "=q4=Slikk's Cloak of Placation", "=ds=#s4#", "35 #heroic#", ""};
- Back = "70TOKENMENU";
- };
-
- AtlasLoot_Data["HardModeRelic"] = {
- { 1, 0, "INV_Box_01", "=q6=#z31#", ""};
- { 2, 29390, "", "=q4=Everbloom Idol", "=ds=#s16#, #w14#", "15 #heroic#", ""};
- { 3, 33508, "", "=q4=Idol of Budding Life", "=ds=#s16#, #w14#", "20 #heroic#", ""};
- { 4, 33509, "", "=q4=Idol of Terror", "=ds=#s16#, #w14#", "20 #heroic#", ""};
- { 5, 33510, "", "=q4=Idol of the Unseen Moon", "=ds=#s16#, #w14#", "20 #heroic#", ""};
- { 7, 33506, "", "=q4=Skycall Totem", "=ds=#s16#, #w15#", "20 #heroic#", ""};
- { 8, 33507, "", "=q4=Stonebreaker's Totem", "=ds=#s16#, #w15#", "20 #heroic#", ""};
- { 9, 33505, "", "=q4=Totem of Living Water", "=ds=#s16#, #w15#", "20 #heroic#", ""};
- { 10, 29389, "", "=q4=Totem of the Pulsing Earth", "=ds=#s16#, #w15#", "15 #heroic#", ""};
- { 17, 33503, "", "=q4=Libram of Divine Judgement", "=ds=#s16#, #w16#", "20 #heroic#", ""};
- { 18, 33504, "", "=q4=Libram of Divine Purpose", "=ds=#s16#, #w16#", "20 #heroic#", ""};
- { 19, 33502, "", "=q4=Libram of Mending", "=ds=#s16#, #w16#", "20 #heroic#", ""};
- { 20, 29388, "", "=q4=Libram of Repentance", "=ds=#s16#, #w16#", "15 #heroic#", ""};
- Back = "70TOKENMENU";
- };
-
- AtlasLoot_Data["HardModeArena"] = {
- { 1, 32811, "", "=q4=Veteran's Dreadweave Cuffs", "=ds=#s8#, #a1#", "25 #heroic#", ""};
- { 2, 32799, "", "=q4=Veteran's Dreadweave Belt", "=ds=#s10#, #a1#", "40 #heroic#", ""};
- { 3, 32787, "", "=q4=Veteran's Dreadweave Stalkers", "=ds=#s12#, #a1#", "40 #heroic#", ""};
- { 5, 32980, "", "=q4=Veteran's Mooncloth Cuffs", "=ds=#s8#, #a1#", "25 #heroic#", ""};
- { 6, 32979, "", "=q4=Veteran's Mooncloth Belt", "=ds=#s10#, #a1#", "40 #heroic#", ""};
- { 7, 32981, "", "=q4=Veteran's Mooncloth Slippers", "=ds=#s12#, #a1#", "40 #heroic#", ""};
- { 9, 32820, "", "=q4=Veteran's Silk Cuffs", "=ds=#s8#, #a1#", "25 #heroic#", ""};
- { 10, 32807, "", "=q4=Veteran's Silk Belt", "=ds=#s10#, #a1#", "40 #heroic#", ""};
- { 11, 32795, "", "=q4=Veteran's Silk Footguards", "=ds=#s12#, #a1#", "40 #heroic#", ""};
- { 16, 32810, "", "=q4=Veteran's Dragonhide Bracers", "=ds=#s8#, #a2#", "25 #heroic#", ""};
- { 17, 32798, "", "=q4=Veteran's Dragonhide Belt", "=ds=#s10#, #a2#", "40 #heroic#", ""};
- { 18, 32786, "", "=q4=Veteran's Dragonhide Boots", "=ds=#s12#, #a2#", "40 #heroic#", ""};
- { 20, 32812, "", "=q4=Veteran's Kodohide Bracers", "=ds=#s8#, #a2#", "25 #heroic#", ""};
- { 21, 32800, "", "=q4=Veteran's Kodohide Belt", "=ds=#s10#, #a2#", "40 #heroic#", ""};
- { 22, 32788, "", "=q4=Veteran's Kodohide Boots", "=ds=#s12#, #a2#", "40 #heroic#", ""};
- { 24, 32814, "", "=q4=Veteran's Leather Bracers", "=ds=#s8#, #a2#", "25 #heroic#", ""};
- { 25, 32802, "", "=q4=Veteran's Leather Belt", "=ds=#s10#, #a2#", "40 #heroic#", ""};
- { 26, 32790, "", "=q4=Veteran's Leather Boots", "=ds=#s12#, #a2#", "40 #heroic#", ""};
- { 28, 32821, "", "=q4=Veteran's Wyrmhide Bracers", "=ds=#s8#, #a2#", "25 #heroic#", ""};
- { 29, 32808, "", "=q4=Veteran's Wyrmhide Belt", "=ds=#s10#, #a2#", "40 #heroic#", ""};
- { 30, 32796, "", "=q4=Veteran's Wyrmhide Boots", "=ds=#s12#, #a2#", "40 #heroic#", ""};
- Next = "HardModeArena2";
- Back = "70TOKENMENU";
+ AtlasLoot_Data["HardModeArena"] = {
+ Name = "Hardmode arena";
+ {
+ Name = "Hardmode arena";
+ { 1, 32811, "", "=q4=Veteran's Dreadweave Cuffs", "=ds=#s8#, #a1#", "25 #heroic#", ""};
+ { 2, 32799, "", "=q4=Veteran's Dreadweave Belt", "=ds=#s10#, #a1#", "40 #heroic#", ""};
+ { 3, 32787, "", "=q4=Veteran's Dreadweave Stalkers", "=ds=#s12#, #a1#", "40 #heroic#", ""};
+ { 5, 32980, "", "=q4=Veteran's Mooncloth Cuffs", "=ds=#s8#, #a1#", "25 #heroic#", ""};
+ { 6, 32979, "", "=q4=Veteran's Mooncloth Belt", "=ds=#s10#, #a1#", "40 #heroic#", ""};
+ { 7, 32981, "", "=q4=Veteran's Mooncloth Slippers", "=ds=#s12#, #a1#", "40 #heroic#", ""};
+ { 9, 32820, "", "=q4=Veteran's Silk Cuffs", "=ds=#s8#, #a1#", "25 #heroic#", ""};
+ { 10, 32807, "", "=q4=Veteran's Silk Belt", "=ds=#s10#, #a1#", "40 #heroic#", ""};
+ { 11, 32795, "", "=q4=Veteran's Silk Footguards", "=ds=#s12#, #a1#", "40 #heroic#", ""};
+ { 16, 32810, "", "=q4=Veteran's Dragonhide Bracers", "=ds=#s8#, #a2#", "25 #heroic#", ""};
+ { 17, 32798, "", "=q4=Veteran's Dragonhide Belt", "=ds=#s10#, #a2#", "40 #heroic#", ""};
+ { 18, 32786, "", "=q4=Veteran's Dragonhide Boots", "=ds=#s12#, #a2#", "40 #heroic#", ""};
+ { 20, 32812, "", "=q4=Veteran's Kodohide Bracers", "=ds=#s8#, #a2#", "25 #heroic#", ""};
+ { 21, 32800, "", "=q4=Veteran's Kodohide Belt", "=ds=#s10#, #a2#", "40 #heroic#", ""};
+ { 22, 32788, "", "=q4=Veteran's Kodohide Boots", "=ds=#s12#, #a2#", "40 #heroic#", ""};
+ { 24, 32814, "", "=q4=Veteran's Leather Bracers", "=ds=#s8#, #a2#", "25 #heroic#", ""};
+ { 25, 32802, "", "=q4=Veteran's Leather Belt", "=ds=#s10#, #a2#", "40 #heroic#", ""};
+ { 26, 32790, "", "=q4=Veteran's Leather Boots", "=ds=#s12#, #a2#", "40 #heroic#", ""};
+ { 28, 32821, "", "=q4=Veteran's Wyrmhide Bracers", "=ds=#s8#, #a2#", "25 #heroic#", ""};
+ { 29, 32808, "", "=q4=Veteran's Wyrmhide Belt", "=ds=#s10#, #a2#", "40 #heroic#", ""};
+ { 30, 32796, "", "=q4=Veteran's Wyrmhide Boots", "=ds=#s12#, #a2#", "40 #heroic#", ""};
+ };
};
AtlasLoot_Data["HardModeArena2"] = {
- { 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#", ""};
- Prev = "HardModeArena";
- Back = "70TOKENMENU";
- };
-
- AtlasLoot_Data["HardModeWeapons"] = {
- { 1, 0, "INV_Box_01", "=q6=#z31#", ""};
- { 2, 29275, "", "=q4=Searing Sunblade", "=ds=#h4#, #w4#", "50 #heroic#", ""};
- { 3, 33192, "", "=q4=Carved Witch Doctor's Stick", "=ds=#w12#", "25 #heroic#", ""};
- { 4, 29266, "", "=q4=Azure-Shield of Coldarra", "=ds=#w8#", "33 #heroic#", ""};
- { 5, 29267, "", "=q4=Light-Bearer's Faith Shield", "=ds=#w8#", "33 #heroic#", ""};
- { 6, 29268, "", "=q4=Mazthoril Honor Shield", "=ds=#w8#", "33 #heroic#", ""};
- { 7, 33334, "", "=q4=Fetish of the Primal Gods", "=ds=#s15#", "35 #heroic#", ""};
- { 8, 29270, "", "=q4=Flametounge Seal", "=ds=#s15#", "25 #heroic#", ""};
- { 9, 29273, "", "=q4=Khadgar's Knapsack", "=ds=#s15#", "25 #heroic#", ""};
- { 10, 29272, "", "=q4=Orb of the Soul-Eater", "=ds=#s15#", "25 #heroic#", ""};
- { 11, 29269, "", "=q4=Sapphiron's Wing Bone", "=ds=#s15#", "25 #heroic#", ""};
- { 12, 29271, "", "=q4=Talisman of Kalecgos", "=ds=#s15#", "25 #heroic#", ""};
- { 13, 29274, "", "=q4=Tears of Heaven", "=ds=#s15#", "25 #heroic#", ""};
- { 14, 33325, "", "=q4=Voodoo Shaker", "=ds=#s15#", "35 #heroic#", ""};
- { 16, 0, "INV_Box_01", "=q6=#z32#", ""};
- { 17, 34893, "", "=q4=Vanir's Right Fist of Brutality", "=ds=#h3#, #w13#", "105 #heroic#", ""};
- { 18, 34951, "", "=q4=Vanir's Left Fist of Brutality", "=ds=#h4#, #w13#", "45 #heroic#", ""};
- { 19, 34950, "", "=q4=Vanir's Left Fist of Savagery", "=ds=#h4#, #w13#", "45 #heroic#", ""};
- { 20, 34895, "", "=q4=Scryer's Blade of Focus", "=ds=#h3#, #w4#", "150 #heroic#", ""};
- { 21, 34894, "", "=q4=Blade of Serration", "=ds=#h1#, #w4#", "105 #heroic#", ""};
- { 22, 34949, "", "=q4=Swift Blade of Uncertainty", "=ds=#h4#, #w4#", "45 #heroic#", ""};
- { 23, 34952, "", "=q4=The Mutilator", "=ds=#h4#, #w4#", "45 #heroic#", ""};
- { 24, 34891, "", "=q4=The Blade of Harbingers", "=ds=#h2#, #w1#", "150 #heroic#", ""};
- { 25, 34896, "", "=q4=Gavel of Naaru Blessings", "=ds=#h3#, #w6#", "150 #heroic#", ""};
- { 26, 34898, "", "=q4=Staff of the Forest Lord", "=ds=#h2#, #w9#", "150 #heroic#", ""};
- { 27, 34892, "", "=q4=Crossbow of Relentless Strikes", "=ds=#w3#", "150 #heroic#", ""};
- Back = "70TOKENMENU";
- };
-
- AtlasLoot_Data["HardModeAccessories"] = {
- { 1, 0, "INV_Box_01", "=q6=#z31#", ""};
- { 2, 33296, "", "=q4=Brooch of Deftness", "=ds=#s2#", "35 #heroic#", ""};
- { 3, 29381, "", "=q4=Choker of Vile Intent", "=ds=#s2#", "25 #heroic#", ""};
- { 4, 29374, "", "=q4=Necklace of Eternal Hope", "=ds=#s2#", "25 #heroic#", ""};
- { 5, 29368, "", "=q4=Manasurge Pendant", "=ds=#s2#", "25 #heroic#", ""};
- { 6, 29386, "", "=q4=Necklace of the Juggernaut", "=ds=#s2#", "25 #heroic#", ""};
- { 7, 29373, "", "=q4=Band of Halos", "=ds=#s13#", "25 #heroic#", ""};
- { 8, 29379, "", "=q4=Ring of Arathi Warlords", "=ds=#s13#", "25 #heroic#", ""};
- { 9, 29367, "", "=q4=Ring of Cryptic Dreams", "=ds=#s13#", "25 #heroic#", ""};
- { 10, 29384, "", "=q4=Ring of Unyielding Force", "=ds=#s13#", "25 #heroic#", ""};
- { 12, 23572, "", "=q3=Primal Nether", "=ds=#e8#", "10 #heroic#", ""};
- { 13, 32227, "", "=q4=Crimson Spinel", "=ds=#e7#", "15 #heroic#", ""};
- { 14, 32229, "", "=q4=Lionseye", "=ds=#e7#", "15 #heroic#", ""};
- { 15, 32249, "", "=q4=Seaspray Emerald", "=ds=#e7#", "15 #heroic#", ""};
- { 16, 35326, "", "=q4=Battlemaster's Alacrity", "=ds=#s14#", "75 #heroic#", ""};
- { 17, 34049, "", "=q4=Battlemaster's Audacity", "=ds=#s14#", "75 #heroic#", ""};
- { 18, 34163, "", "=q4=Battlemaster's Cruelty", "=ds=#s14#", "75 #heroic#", ""};
- { 19, 34162, "", "=q4=Battlemaster's Depravity", "=ds=#s14#", "75 #heroic#", ""};
- { 20, 33832, "", "=q4=Battlemaster's Determination", "=ds=#s14#", "75 #heroic#", ""};
- { 21, 34050, "", "=q4=Battlemaster's Perseverance", "=ds=#s14#", "75 #heroic#", ""};
- { 22, 29383, "", "=q4=Bloodlust Brooch", "=ds=#s14#", "41 #heroic#", ""};
- { 23, 29376, "", "=q4=Essence of the Martyr", "=ds=#s14#", "41 #heroic#", ""};
- { 24, 29387, "", "=q4=Gnomeregan Auto-Blocker 600", "=ds=#s14#", "41 #heroic#", ""};
- { 25, 29370, "", "=q4=Icon of the Silver Crescent", "=ds=#s14#", "41 #heroic#", ""};
- { 27, 30183, "", "=q4=Nether Vortex", "=ds=#e8#", "15 #heroic#", ""};
- { 28, 32228, "", "=q4=Empyrean Sapphire", "=ds=#e7#", "15 #heroic#", ""};
- { 29, 32231, "", "=q4=Pyrestone", "=ds=#e7#", "15 #heroic#", ""};
- { 30, 32230, "", "=q4=Shadowsong Amethyst", "=ds=#e7#", "15 #heroic#", ""};
- Next = "HardModeAccessories2";
- Back = "70TOKENMENU";
- };
-
- AtlasLoot_Data["HardModeAccessories2"] = {
- { 1, 0, "INV_Box_01", "=q6=#z32#", ""};
- { 2, 34887, "", "=q4=Angelista's Revenge", "=ds=#s13#", "60 #heroic#", ""};
- { 3, 34890, "", "=q4=Anveena's Touch", "=ds=#s13#", "60 #heroic#", ""};
- { 4, 34889, "", "=q4=Fused Nethergon Band", "=ds=#s13#", "60 #heroic#", ""};
- { 5, 34888, "", "=q4=Ring of the Stalwart Protector", "=ds=#s13#", "60 #heroic#", ""};
- Prev = "HardModeAccessories";
- Back = "70TOKENMENU";
+ 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 ---
-----------------------
- AtlasLoot_Data["WorldEpics4"] = {
- { 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#", "", ""};
- Back = "SETMENUTBC";
- Type = "BCDungeon";
+ 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#", "", ""};
+ };
};
------------------------
diff --git a/AtlasLoot_Crafting/craftingCLASSIC.lua b/AtlasLoot_Crafting/craftingCLASSIC.lua
index 8bcfca9..8d472ad 100644
--- a/AtlasLoot_Crafting/craftingCLASSIC.lua
+++ b/AtlasLoot_Crafting/craftingCLASSIC.lua
@@ -98,8 +98,7 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["AlchemyCLASSIC"] = {
Name = ALCHEMY;
Type = "Crafting";
- NoFilter = true;
- {
+ {
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"]};
@@ -235,8 +234,7 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["SmithingCLASSIC"] = {
Name = BLACKSMITHING;
Type = "Crafting";
- NoFilter = true;
- {
+ {
Name = BabbleInventory["Armor"].." - Chest";
{ 1, "s28242", "22669", "=q4=Icebane Breastplate", "=ds=#sr# 300"};
{ 2, "s16746", "12641", "=q4=Invulnerable Mail", "=ds=#sr# 300"};
@@ -400,90 +398,94 @@ local MASTER = select(2, GetSpellInfo(28596));
{ 10, "s2663", "2853", "=q1=Copper Bracers", "=ds=#sr# 1"};
};
{
- Name = "Weapon - OneHanded";
+ Name = "Weapon - One Handed";
{ 1, "s23638", "19166", "=q4=Black Amnesty", "=ds=#sr# 300"};
- { 2, "s23639", "19167", "=q4=Blackfury", "=ds=#sr# 300"};
- { 3, "s23652", "19168", "=q4=Blackguard", "=ds=#sr# 300"};
- { 4, "s23650", "19170", "=q4=Ebon Hand", "=ds=#sr# 300"};
- { 5, "s23653", "19169", "=q4=Nightfall", "=ds=#sr# 300"};
- { 6, "s27830", "22384", "=q4=Persuader", "=ds=#sr# 300"};
- { 7, "s27832", "22383", "=q4=Sageblade", "=ds=#sr# 300"};
- { 8, "s21161", "17193", "=q4=Sulfuron Hammer", "=ds=#sr# 300"};
- { 9, "s16991", "12798", "=q3=Annihilator", "=ds=#sr# 300"};
- { 10, "s16990", "12790", "=q3=Arcanite Champion", "=ds=#sr# 300"};
- { 11, "s16994", "12784", "=q3=Arcanite Reaper", "=ds=#sr# 300"};
- { 12, "s20897", "17016", "=q3=Dark Iron Destroyer", "=ds=#sr# 300"};
- { 13, "s20890", "17015", "=q3=Dark Iron Reaver", "=ds=#sr# 300"};
- { 14, "s16992", "12797", "=q3=Frostguard", "=ds=#sr# 300"};
- { 15, "s16988", "12796", "=q3=Hammer of the Titans", "=ds=#sr# 300"};
- { 16, "s16995", "12783", "=q3=Heartseeker", "=ds=#sr# 300"};
- { 17, "s16993", "12794", "=q3=Masterwork Stormhammer", "=ds=#sr# 300"};
- { 18, "s16985", "12782", "=q3=Corruption", "=ds=#sr# 290"};
- { 19, "s16983", "12781", "=q3=Serenity", "=ds=#sr# 285"};
- { 20, "s16978", "12777", "=q3=Blazing Rapier", "=ds=#sr# 280"};
- { 21, "s16973", "12776", "=q3=Enchanted Battlehammer", "=ds=#sr# 280"};
- { 22, "s15294", "11607", "=q3=Dark Iron Sunderer", "=ds=#sr# 275"};
- { 23, "s16970", "12774", "=q3=Dawn's Edge", "=ds=#sr# 275"};
- { 24, "s15292", "11608", "=q3=Dark Iron Pulverizer", "=ds=#sr# 265"};
- { 25, "s36125", "30071", "=q3=Light Earthforged Blade", "=ds=#sr# 260"};
- { 26, "s36128", "30073", "=q3=Light Emberforged Hammer", "=ds=#sr# 260"};
- { 27, "s36126", "30072", "=q3=Light Skyforged Axe", "=ds=#sr# 260"};
- { 28, "s10015", "7960", "=q3=Truesilver Champion", "=ds=#sr# 260"};
- { 29, "s10011", "7959", "=q3=Blight", "=ds=#sr# 250"};
- { 30, "s10007", "7961", "=q3=Phantom Blade", "=ds=#sr# 245"};
+ { 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 - Twohanded";
- { 1, "s10003", "7954", "=q3=The Shatterer", "=ds=#sr# 235"};
- { 2, "s34982", "29203", "=q2=Enchanted Thorium Blades", "=ds=#sr# 300"};
- { 3, "s16984", "12792", "=q2=Volcanic Hammer", "=ds=#sr# 290"};
- { 4, "s16971", "12775", "=q2=Huge Thorium Battleaxe", "=ds=#sr# 280"};
- { 5, "s16969", "12773", "=q2=Ornate Thorium Handaxe", "=ds=#sr# 275"};
- { 6, "s10013", "7947", "=q2=Ebon Shiv", "=ds=#sr# 255"};
- { 7, "s10009", "7946", "=q2=Runed Mithril Hammer", "=ds=#sr# 245"};
- { 8, "s10005", "7944", "=q2=Dazzling Mithril Rapier", "=ds=#sr# 240"};
- { 9, "s10001", "7945", "=q2=Big Black Mace", "=ds=#sr# 230"};
- { 10, "s9997", "7943", "=q2=Wicked Mithril Blade", "=ds=#sr# 225"};
- { 11, "s9995", "7942", "=q2=Blue Glittering Axe", "=ds=#sr# 220"};
- { 12, "s9993", "7941", "=q2=Heavy Mithril Axe", "=ds=#sr# 210"};
- { 13, "s3500", "3856", "=q2=Shadow Crescent Axe", "=ds=#sr# 200"};
- { 14, "s34981", "29202", "=q2=Whirling Steel Axes", "=ds=#sr# 200"};
+ 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, "s15973", "12260", "=q2=Searing Golden Blade", "=ds=#sr# 190"};
- { 17, "s21913", "17704", "=q2=Edge of Winter", "=ds=#sr# 190"};
- { 18, "s3498", "3855", "=q2=Massive Iron Axe", "=ds=#sr# 185"};
- { 19, "s15972", "12259", "=q2=Glinting Steel Dagger", "=ds=#sr# 180"};
- { 20, "s3496", "3853", "=q2=Moonsteel Broadsword", "=ds=#sr# 180"};
- { 21, "s3493", "3850", "=q2=Jade Serpentblade", "=ds=#sr# 175"};
- { 22, "s3495", "3852", "=q2=Golden Iron Destroyer", "=ds=#sr# 170"};
- { 23, "s3492", "3849", "=q2=Hardened Iron Shortsword", "=ds=#sr# 160"};
- { 24, "s3494", "3851", "=q2=Solid Iron Maul", "=ds=#sr# 155"};
- { 25, "s3297", "3492", "=q2=Mighty Iron Hammer", "=ds=#sr# 145"};
- { 26, "s6518", "5541", "=q2=Iridescent Hammer", "=ds=#sr# 140"};
- { 27, "s3296", "3491", "=q2=Heavy Bronze Mace", "=ds=#sr# 130"};
- { 28, "s3295", "3490", "=q2=Deadly Bronze Poniard", "=ds=#sr# 125"};
- { 29, "s6517", "5540", "=q2=Pearl-handled Dagger", "=ds=#sr# 110"};
- { 30, "s3491", "3848", "=q2=Big Bronze Knife", "=ds=#sr# 105"};
+ { 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 - ";
+ Name = "Weapon - Thrown";
{ 1, "s34979", "29201", "=q2=Thick Bronze Darts", "=ds=#sr# 100"};
- { 2, "s3292", "3487", "=q2=Heavy Copper Broadsword", "=ds=#sr# 95"};
- { 3, "s3294", "3489", "=q2=Thick War Axe", "=ds=#sr# 70"};
- { 4, "s3293", "3488", "=q2=Copper Battle Axe", "=ds=#sr# 35"};
- { 5, "s43549", "33791", "=q2=Heavy Copper Longsword", "=ds=#sr# 35"};
- { 6, "s9987", "7958", "=q1=Bronze Battle Axe", "=ds=#sr# 135"};
- { 7, "s9986", "7957", "=q1=Bronze Greatsword", "=ds=#sr# 130"};
- { 8, "s9985", "7956", "=q1=Bronze Warhammer", "=ds=#sr# 125"};
- { 9, "s2742", "2850", "=q1=Bronze Shortsword", "=ds=#sr# 120"};
- { 10, "s2741", "2849", "=q1=Bronze Axe", "=ds=#sr# 115"};
- { 11, "s2740", "2848", "=q1=Bronze Mace", "=ds=#sr# 110"};
- { 12, "s7408", "6214", "=q1=Heavy Copper Maul", "=ds=#sr# 65"};
- { 13, "s9983", "7955", "=q1=Copper Claymore", "=ds=#sr# 30"};
- { 14, "s8880", "7166", "=q1=Copper Dagger", "=ds=#sr# 30"};
- { 15, "s2739", "2847", "=q1=Copper Shortsword", "=ds=#sr# 25"};
- { 16, "s2738", "2845", "=q1=Copper Axe", "=ds=#sr# 20"};
- { 17, "s2737", "2844", "=q1=Copper Mace", "=ds=#sr# 15"};
+ { 2, "s34982", "29203", "=q2=Enchanted Thorium Blades", "=ds=#sr# 300"};
+ { 3, "s34981", "29202", "=q2=Whirling Steel Axes", "=ds=#sr# 200"};
};
{
Name = "Shield";
@@ -498,8 +500,8 @@ local MASTER = select(2, GetSpellInfo(28596));
{ 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"};
- { 7, "s2674", "2871", "=q1=Heavy Sharpening Stone", "=ds=#sr# 125"};
- { 8, "s3117", "3241", "=q1=Heavy Weightstone", "=ds=#sr# 125"};
+ { 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"};
@@ -533,58 +535,12 @@ local MASTER = select(2, GetSpellInfo(28596));
Name = ARMORSMITH;
{ 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"};
};
{
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"};
- { 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"};
};
};
---------------
@@ -593,90 +549,8 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["CookingCLASSIC"] = {
Name = COOKING;
- NoFilter = true;
{
Name = COOKING;
- { 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"]};
- };
- {
- Name = COOKING;
- { 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"]..""};
- };
- {
- Name = COOKING;
- { 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"]..""};
@@ -813,8 +687,7 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["EnchantingCLASSIC"] = {
Name = ENCHANTING;
Type = "Crafting";
- NoFilter = true;
- {
+ {
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"};
@@ -999,8 +872,7 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["EngineeringCLASSIC"] = {
Name = ENGINEERING;
Type = "Crafting";
- NoFilter = true;
- {
+ {
Name = AL["Ammunition"];
{ 1, "s19800", "15997", "=q2=Thorium Shells", "=ds=#sr# 285"};
{ 2, "s12621", "10513", "=q2=Mithril Gyro-Shot", "=ds=#sr# 245"};
@@ -1214,28 +1086,23 @@ local MASTER = select(2, GetSpellInfo(28596));
--- First Aid ---
-----------------
- AtlasLoot_Data["FirstAid"] = {
+ AtlasLoot_Data["FirstAidCLASSIC"] = {
Name = FIRSTAID;
- NoFilter = true;
- {
+ {
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"};
+ { 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"};
};
};
-------------------
@@ -1244,8 +1111,7 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["Inscription"] = {
Name = INSCRIPTION;
- NoFilter = true;
- {
+ {
Name = AL["Off-Hand Items"];
{ 1, "s59498", "44210", "=q4=Faces of Doom", "=ds=" };
{ 2, "s59497", "38322", "=q4=Iron-bound Tome", "=ds=" };
@@ -1394,7 +1260,7 @@ local MASTER = select(2, GetSpellInfo(28596));
{ 6, "s57228", "43673", "=q1=Glyph of Raise Dead", "=ds="..GetSpellInfo(61288) };
};
{
- Name = AL["Major Glyph"].." - ".."Druid";
+ 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"]};
@@ -1427,7 +1293,7 @@ local MASTER = select(2, GetSpellInfo(28596));
{ 30, "s56963", "40922", "=q1=Glyph of WRATH", "=ds="..AL["Trainer"] };
};
{
- Name = AL["Minor Glyph"].." - ".."Druid";
+ 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) };
@@ -1766,454 +1632,356 @@ local MASTER = select(2, GetSpellInfo(28596));
----------------------
AtlasLoot_Data["LeatherworkingCLASSIC"] = {
- Name = LEATHERWORKING;
- Type = "Crafting";
- NoFilter = true;
- {
- 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"]};
- { 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, "s22927", "18510", "=q4=Hide of the Wild", "=ds=#sr# 300"};
- { 7, "s55199", "41238", "=q3=Cloak of Tormented Skies", "=ds="..AL["Trainer"]};
- { 8, "s60631", "38441", "=q3=Cloak of Harsh Winds", "=ds="..AL["Trainer"]};
- { 9, "s19093", "15138", "=q3=Onyxia Scale Cloak", "=ds=#sr# 300"};
- { 10, "s10574", "8215", "=q2=Wild Leather Cloak", "=ds=#sr# 250"};
- { 11, "s10562", "8216", "=q2=Big Voodoo Cloak", "=ds=#sr# 240"};
- { 12, "s7153", "5965", "=q2=Guardian Cloak", "=ds=#sr# 185"};
- { 13, "s9198", "7377", "=q2=Frost Leather Cloak", "=ds=#sr# 180"};
- { 14, "s9070", "7283", "=q2=Black Whelp Cloak", "=ds=#sr# 100"};
- { 15, "s7953", "6466", "=q2=Deviate Scale Cloak", "=ds=#sr# 90"};
- { 16, "s2159", "2308", "=q2=Fine Leather Cloak", "=ds=#sr# 85"};
- { 17, "s3760", "3719", "=q1=Hillman's Cloak", "=ds=#sr# 150"};
- { 18, "s2168", "2316", "=q1=Dark Leather Cloak", "=ds=#sr# 110"};
- { 19, "s2162", "2310", "=q1=Embossed Leather Cloak", "=ds=#sr# 60"};
- };
- {
- Name = AL["Leather Armor"].." - Chest";
- { 1, "s19079", "15056", "=q3=Stormshroud Armor", "=ds=#sr# 285"};
- { 2, "s19080", "15065", "=q3=Warbear Woolies", "=ds=#sr# 285"};
- { 3, "s19067", "15057", "=q3=Stormshroud Pants", "=ds=#sr# 275"};
- { 4, "s19068", "15064", "=q3=Warbear Harness", "=ds=#sr# 275"};
- { 5, "s19062", "15067", "=q3=Ironfeather Shoulders", "=ds=#sr# 270"};
- { 6, "s19061", "15061", "=q3=Living Shoulders", "=ds=#sr# 270"};
- { 7, "s36074", "29964", "=q3=Blackstorm Leggings", "=ds=#sr# 260"};
- { 8, "s36075", "29970", "=q3=Wildfeather Leggings", "=ds=#sr# 260"};
- { 9, "s10647", "8349", "=q3=Feathered Breastplate", "=ds=#sr# 250"};
- { 10, "s10632", "8348", "=q3=Helm of Fire", "=ds=#sr# 250"};
- { 11, "s10630", "8346", "=q3=Gauntlets of the Sea", "=ds=#sr# 230"};
- { 12, "s10621", "8345", "=q3=Wolfshead Helm", "=ds=#sr# 225"};
- { 13, "s22711", "18238", "=q3=Shadowskin Gloves", "=ds=#sr# 200"};
- { 14, "s3778", "4262", "=q3=Gem-studded Leather Belt", "=ds=#sr# 185"};
- { 15, "s23399", "18948", "=q3=Barbaric Bracers", "=ds=#sr# 155"};
- { 16, "s3770", "4253", "=q3=Toughened Leather Gloves", "=ds=#sr# 135"};
- { 17, "s7955", "6468", "=q3=Deviate Scale Belt", "=ds=#sr# 115"};
- { 18, "s19104", "15068", "=q2=Frostsaber Tunic", "=ds=#sr# 300"};
- { 19, "s19102", "15090", "=q2=Runic Leather Armor", "=ds=#sr# 300"};
- { 20, "s19091", "15095", "=q2=Runic Leather Pants", "=ds=#sr# 300"};
- { 21, "s19103", "15096", "=q2=Runic Leather Shoulders", "=ds=#sr# 300"};
- { 22, "s19101", "15055", "=q2=Volcanic Shoulders", "=ds=#sr# 300"};
- { 23, "s19098", "15085", "=q2=Wicked Leather Armor", "=ds=#sr# 300"};
- { 24, "s19092", "15088", "=q2=Wicked Leather Belt", "=ds=#sr# 300"};
- { 25, "s19087", "15070", "=q2=Frostsaber Gloves", "=ds=#sr# 295"};
- { 26, "s19081", "15075", "=q2=Chimeric Vest", "=ds=#sr# 290"};
- { 27, "s19082", "15094", "=q2=Runic Leather Headband", "=ds=#sr# 290"};
- { 28, "s19083", "15087", "=q2=Wicked Leather Pants", "=ds=#sr# 290"};
- { 29, "s19074", "15069", "=q2=Frostsaber Leggings", "=ds=#sr# 285"};
- { 30, "s19076", "15053", "=q2=Volcanic Breastplate", "=ds=#sr# 285"};
- };
- {
- Name = AL["Leather Armor"].." - Feet";
- { 1, "s19073", "15072", "=q2=Chimeric Leggings", "=ds=#sr# 280"};
- { 2, "s19072", "15093", "=q2=Runic Leather Belt", "=ds=#sr# 280"};
- { 3, "s19071", "15086", "=q2=Wicked Leather Headband", "=ds=#sr# 280"};
- { 4, "s19065", "15092", "=q2=Runic Leather Bracers", "=ds=#sr# 275"};
- { 5, "s19063", "15073", "=q2=Chimeric Boots", "=ds=#sr# 275"};
- { 6, "s19066", "15071", "=q2=Frostsaber Boots", "=ds=#sr# 275"};
- { 7, "s19055", "15091", "=q2=Runic Leather Gauntlets", "=ds=#sr# 270"};
- { 8, "s19059", "15054", "=q2=Volcanic Leggings", "=ds=#sr# 270"};
- { 9, "s19053", "15074", "=q2=Chimeric Gloves", "=ds=#sr# 265"};
- { 10, "s19052", "15084", "=q2=Wicked Leather Bracers", "=ds=#sr# 265"};
- { 11, "s19049", "15083", "=q2=Wicked Leather Gauntlets", "=ds=#sr# 260"};
- { 12, "s10572", "8212", "=q2=Wild Leather Leggings", "=ds=#sr# 250"};
- { 13, "s10566", "8213", "=q2=Wild Leather Boots", "=ds=#sr# 245"};
- { 14, "s10560", "8202", "=q2=Big Voodoo Pants", "=ds=#sr# 240"};
- { 15, "s10558", "8197", "=q2=Nightscape Boots", "=ds=#sr# 235"};
- { 16, "s10548", "8193", "=q2=Nightscape Pants", "=ds=#sr# 230"};
- { 17, "s10546", "8214", "=q2=Wild Leather Helmet", "=ds=#sr# 225"};
- { 18, "s10544", "8211", "=q2=Wild Leather Vest", "=ds=#sr# 225"};
- { 19, "s10531", "8201", "=q2=Big Voodoo Mask", "=ds=#sr# 220"};
- { 20, "s10529", "8210", "=q2=Wild Leather Shoulders", "=ds=#sr# 220"};
- { 21, "s10520", "8200", "=q2=Big Voodoo Robe", "=ds=#sr# 215"};
- { 22, "s10516", "8192", "=q2=Nightscape Shoulders", "=ds=#sr# 210"};
- { 23, "s10507", "8176", "=q2=Nightscape Headband", "=ds=#sr# 205"};
- { 24, "s10499", "8175", "=q2=Nightscape Tunic", "=ds=#sr# 205"};
- { 25, "s3779", "4264", "=q2=Barbaric Belt", "=ds=#sr# 200"};
- { 26, "s10490", "8174", "=q2=Comfortable Leather Hat", "=ds=#sr# 200"};
- { 27, "s9207", "7390", "=q2=Dusky Boots", "=ds=#sr# 200"};
- { 28, "s9208", "7391", "=q2=Swift Boots", "=ds=#sr# 200"};
- { 29, "s9206", "7387", "=q2=Dusky Belt", "=ds=#sr# 195"};
- { 30, "s3777", "4260", "=q2=Guardian Leather Bracers", "=ds=#sr# 195"};
- };
- {
- Name = AL["Leather Armor"].." - Hands";
- { 1, "s21943", "17721", "=q2=Gloves of the Greatfather", "=ds=#sr# 190"};
- { 2, "s9202", "7386", "=q2=Green Whelp Bracers", "=ds=#sr# 190"};
- { 3, "s6705", "5783", "=q2=Murloc Scale Bracers", "=ds=#sr# 190"};
- { 4, "s9201", "7378", "=q2=Dusky Bracers", "=ds=#sr# 185"};
- { 5, "s3776", "4259", "=q2=Green Leather Bracers", "=ds=#sr# 180"};
- { 6, "s7151", "5964", "=q2=Barbaric Shoulders", "=ds=#sr# 175"};
- { 7, "s9196", "7374", "=q2=Dusky Leather Armor", "=ds=#sr# 175"};
- { 8, "s9197", "7375", "=q2=Green Whelp Armor", "=ds=#sr# 175"};
- { 9, "s3773", "4256", "=q2=Guardian Armor", "=ds=#sr# 175"};
- { 10, "s7149", "5963", "=q2=Barbaric Leggings", "=ds=#sr# 170"};
- { 11, "s3775", "4258", "=q2=Guardian Belt", "=ds=#sr# 170"};
- { 12, "s6704", "5782", "=q2=Thick Murloc Armor", "=ds=#sr# 170"};
- { 13, "s9195", "7373", "=q2=Dusky Leather Leggings", "=ds=#sr# 165"};
- { 14, "s4097", "4456", "=q2=Raptor Hide Belt", "=ds=#sr# 165"};
- { 15, "s4096", "4455", "=q2=Raptor Hide Harness", "=ds=#sr# 165"};
- { 16, "s3774", "4257", "=q2=Green Leather Belt", "=ds=#sr# 160"};
- { 17, "s7147", "5962", "=q2=Guardian Pants", "=ds=#sr# 160"};
- { 18, "s3772", "4255", "=q2=Green Leather Armor", "=ds=#sr# 155"};
- { 19, "s3771", "4254", "=q2=Barbaric Gloves", "=ds=#sr# 150"};
- { 20, "s9149", "7359", "=q2=Heavy Earthen Gloves", "=ds=#sr# 145"};
- { 21, "s3764", "4247", "=q2=Hillman's Leather Gloves", "=ds=#sr# 145"};
- { 22, "s3769", "4252", "=q2=Dark Leather Shoulders", "=ds=#sr# 140"};
- { 23, "s9148", "7358", "=q2=Pilferer's Gloves", "=ds=#sr# 140"};
- { 24, "s9147", "7352", "=q2=Earthen Leather Shoulders", "=ds=#sr# 135"};
- { 25, "s9146", "7349", "=q2=Herbalist's Gloves", "=ds=#sr# 135"};
- { 26, "s3768", "4251", "=q2=Hillman's Shoulders", "=ds=#sr# 130"};
- { 27, "s3766", "4249", "=q2=Dark Leather Belt", "=ds=#sr# 125"};
- { 28, "s9145", "7348", "=q2=Fletcher's Gloves", "=ds=#sr# 125"};
- { 29, "s3767", "4250", "=q2=Hillman's Belt", "=ds=#sr# 120"};
- { 30, "s9074", "7285", "=q2=Nimble Leather Gloves", "=ds=#sr# 120"};
- };
- {
- Name = AL["Leather Armor"].." - Head";
- { 1, "s9072", "7284", "=q2=Red Whelp Gloves", "=ds=#sr# 120"};
- { 2, "s3765", "4248", "=q2=Dark Leather Gloves", "=ds=#sr# 120"};
- { 3, "s7135", "5961", "=q2=Dark Leather Pants", "=ds=#sr# 115"};
- { 4, "s7954", "6467", "=q2=Deviate Scale Gloves", "=ds=#sr# 105"};
- { 5, "s7133", "5958", "=q2=Fine Leather Pants", "=ds=#sr# 105"};
- { 6, "s24940", "20575", "=q2=Black Whelp Tunic", "=ds=#sr# 100"};
- { 7, "s2169", "2317", "=q2=Dark Leather Tunic", "=ds=#sr# 100"};
- { 8, "s3762", "4244", "=q2=Hillman's Leather Vest", "=ds=#sr# 100"};
- { 9, "s9068", "7282", "=q2=Light Leather Pants", "=ds=#sr# 95"};
- { 10, "s6703", "5781", "=q2=Murloc Scale Breastplate", "=ds=#sr# 95"};
- { 11, "s8322", "6709", "=q2=Moonglow Vest", "=ds=#sr# 90"};
- { 12, "s6702", "5780", "=q2=Murloc Scale Belt", "=ds=#sr# 90"};
- { 13, "s3761", "4243", "=q2=Fine Leather Tunic", "=ds=#sr# 85"};
- { 14, "s3759", "4242", "=q2=Embossed Leather Pants", "=ds=#sr# 75"};
- { 15, "s2164", "2312", "=q2=Fine Leather Gloves", "=ds=#sr# 75"};
- { 16, "s2161", "2309", "=q2=Embossed Leather Boots", "=ds=#sr# 55"};
- { 17, "s2160", "2300", "=q2=Embossed Leather Vest", "=ds=#sr# 40"};
- { 18, "s9064", "7280", "=q2=Rugged Leather Pants", "=ds=#sr# 35"};
- { 19, "s44953", "34086", "=q1=Winter Boots", "=ds=#sr# 285"};
- { 20, "s6661", "5739", "=q1=Barbaric Harness", "=ds=#sr# 190"};
- { 21, "s7156", "5966", "=q1=Guardian Gloves", "=ds=#sr# 190"};
- { 22, "s2166", "2314", "=q1=Toughened Leather Armor", "=ds=#sr# 120"};
- { 23, "s2167", "2315", "=q1=Dark Leather Boots", "=ds=#sr# 100"};
- { 24, "s2158", "2307", "=q1=Fine Leather Boots", "=ds=#sr# 90"};
- { 25, "s3763", "4246", "=q1=Fine Leather Belt", "=ds=#sr# 80"};
- { 26, "s9065", "7281", "=q1=Light Leather Bracers", "=ds=#sr# 70"};
- { 27, "s2163", "2311", "=q1=White Leather Jerkin", "=ds=#sr# 60"};
- { 28, "s3756", "4239", "=q1=Embossed Leather Gloves", "=ds=#sr# 55"};
- { 29, "s3753", "4237", "=q1=Handstitched Leather Belt", "=ds=#sr# 25"};
- { 30, "s2153", "2303", "=q1=Handstitched Leather Pants", "=ds=#sr# 15"};
- };
- {
- Name = AL["Leather Armor"].." - Legs";
- { 1, "s2149", "2302", "=q1=Handstitched Leather Boots", "=ds=#sr# 1"};
- { 2, "s9059", "7277", "=q1=Handstitched Leather Bracers", "=ds=#sr# 1"};
- { 3, "s9058", "7276", "=q1=Handstitched Leather Cloak", "=ds=#sr# 1"};
- { 4, "s7126", "5957", "=q1=Handstitched Leather Vest", "=ds=#sr# 1"};
- };
- {
- Name = AL["Leather Armor"].." - Shoulder";
- { 1, "s23709", "19162", "=q4=Corehound Belt", "=ds=#sr# 300"};
- { 3, "s23707", "19149", "=q4=Lava Belt", "=ds=#sr# 300"};
- { 4, "s23710", "19163", "=q4=Molten Belt", "=ds=#sr# 300"};
- { 5, "s20854", "16983", "=q4=Molten Helm", "=ds=#sr# 300"};
- { 6, "s28221", "22663", "=q4=Polar Bracers", "=ds=#sr# 300"};
- { 7, "s28220", "22662", "=q4=Polar Gloves", "=ds=#sr# 300"};
- { 8, "s28219", "22661", "=q4=Polar Tunic", "=ds=#sr# 300"};
- { 9, "s20853", "16982", "=q4=Corehound Boots", "=ds=#sr# 295"};
- { 10, "s24124", "19688", "=q3=Blood Tiger Breastplate", "=ds=#sr# 300"};
- { 11, "s24125", "19689", "=q3=Blood Tiger Shoulders", "=ds=#sr# 300"};
- { 12, "s28474", "22761", "=q3=Bramblewood Belt", "=ds=#sr# 300"};
- { 13, "s28473", "22760", "=q3=Bramblewood Boots", "=ds=#sr# 300"};
- { 14, "s28472", "22759", "=q3=Bramblewood Helm", "=ds=#sr# 300"};
- { 15, "s19097", "15062", "=q3=Devilsaur Leggings", "=ds=#sr# 300"};
- { 16, "s22921", "18504", "=q3=Girdle of Insight", "=ds=#sr# 300"};
- { 17, "s23706", "19058", "=q3=Golden Mantle of the Dawn", "=ds=#sr# 300"};
- { 18, "s19095", "15059", "=q3=Living Breastplate", "=ds=#sr# 300"};
- { 19, "s22922", "18506", "=q3=Mongoose Boots", "=ds=#sr# 300"};
- { 20, "s24123", "19687", "=q3=Primal Batskin Bracers", "=ds=#sr# 300"};
- { 21, "s24122", "19686", "=q3=Primal Batskin Gloves", "=ds=#sr# 300"};
- { 22, "s24121", "19685", "=q3=Primal Batskin Jerkin", "=ds=#sr# 300"};
- { 23, "s26279", "21278", "=q3=Stormshroud Gloves", "=ds=#sr# 300"};
- { 24, "s23704", "19049", "=q3=Timbermaw Brawlers", "=ds=#sr# 300"};
- { 25, "s19090", "15058", "=q3=Stormshroud Shoulders", "=ds=#sr# 295"};
- { 26, "s23705", "19052", "=q3=Dawn Treaders", "=ds=#sr# 290"};
- { 27, "s19084", "15063", "=q3=Devilsaur Gauntlets", "=ds=#sr# 290"};
- { 28, "s19086", "15066", "=q3=Ironfeather Breastplate", "=ds=#sr# 290"};
- { 29, "s23703", "19044", "=q3=Might of the Timbermaw", "=ds=#sr# 290"};
- { 30, "s19078", "15060", "=q3=Living Leggings", "=ds=#sr# 285"};
+ 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"].." - Waist";
+ {
+ 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"].." - Wrist";
+ };
+ {
+ 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"].." - Chest";
- { 1, "s28224", "22665", "=q4=Icy Scale Bracers", "=ds=#sr# 300"};
- { 2, "s28222", "22664", "=q4=Icy Scale Breastplate", "=ds=#sr# 300"};
- { 3, "s28223", "22666", "=q4=Icy Scale Gauntlets", "=ds=#sr# 300"};
- { 4, "s24703", "20380", "=q4=Dreamscale Breastplate", "=ds=#sr# 300"};
- { 5, "s23708", "19157", "=q4=Chromatic Gauntlets", "=ds=#sr# 300"};
- { 6, "s20855", "16984", "=q4=Black Dragonscale Boots", "=ds=#sr# 300"};
- { 7, "s22923", "18508", "=q3=Swift Flight Bracers", "=ds=#sr# 300"};
- { 8, "s24849", "20476", "=q3=Sandstalker Bracers", "=ds=#sr# 300"};
- { 9, "s24851", "20478", "=q3=Sandstalker Breastplate", "=ds=#sr# 300"};
- { 10, "s24850", "20477", "=q3=Sandstalker Gauntlets", "=ds=#sr# 300"};
- { 11, "s24846", "20481", "=q3=Spitfire Bracers", "=ds=#sr# 300"};
- { 12, "s24848", "20479", "=q3=Spitfire Breastplate", "=ds=#sr# 300"};
- { 13, "s24847", "20480", "=q3=Spitfire Gauntlets", "=ds=#sr# 300"};
- { 14, "s19054", "15047", "=q3=Red Dragonscale Breastplate", "=ds=#sr# 300"};
- { 15, "s24654", "20295", "=q3=Blue Dragonscale Leggings", "=ds=#sr# 300"};
- { 16, "s19107", "15052", "=q3=Black Dragonscale Leggings", "=ds=#sr# 300"};
- { 17, "s19094", "15051", "=q3=Black Dragonscale Shoulders", "=ds=#sr# 300"};
- { 18, "s19089", "15049", "=q3=Blue Dragonscale Shoulders", "=ds=#sr# 295"};
- { 19, "s19085", "15050", "=q3=Black Dragonscale Breastplate", "=ds=#sr# 290"};
- { 20, "s19077", "15048", "=q3=Blue Dragonscale Breastplate", "=ds=#sr# 285"};
- { 21, "s24655", "20296", "=q3=Green Dragonscale Gauntlets", "=ds=#sr# 280"};
- { 22, "s19060", "15046", "=q3=Green Dragonscale Leggings", "=ds=#sr# 270"};
- { 23, "s36076", "29971", "=q3=Dragonstrike Leggings", "=ds=#sr# 260"};
- { 24, "s19050", "15045", "=q3=Green Dragonscale Breastplate", "=ds=#sr# 260"};
- { 25, "s10650", "8367", "=q3=Dragonscale Breastplate", "=ds=#sr# 255"};
- { 26, "s10619", "8347", "=q3=Dragonscale Gauntlets", "=ds=#sr# 225"};
- { 27, "s19100", "15081", "=q2=Heavy Scorpid Shoulders", "=ds=#sr# 300"};
- { 28, "s19088", "15080", "=q2=Heavy Scorpid Helm", "=ds=#sr# 295"};
- { 29, "s19075", "15079", "=q2=Heavy Scorpid Leggings", "=ds=#sr# 285"};
- { 30, "s19070", "15082", "=q2=Heavy Scorpid Belt", "=ds=#sr# 280"};
- };
- {
- Name = AL["Mail Armor"].." - Feet";
- { 1, "s19064", "15078", "=q2=Heavy Scorpid Gauntlets", "=ds=#sr# 275"};
- { 2, "s19051", "15076", "=q2=Heavy Scorpid Vest", "=ds=#sr# 265"};
- { 3, "s19048", "15077", "=q2=Heavy Scorpid Bracers", "=ds=#sr# 255"};
- { 4, "s10570", "8208", "=q2=Tough Scorpid Helm", "=ds=#sr# 250"};
- { 5, "s10568", "8206", "=q2=Tough Scorpid Leggings", "=ds=#sr# 245"};
- { 6, "s10564", "8207", "=q2=Tough Scorpid Shoulders", "=ds=#sr# 240"};
- { 7, "s10554", "8209", "=q2=Tough Scorpid Boots", "=ds=#sr# 235"};
- { 8, "s10556", "8185", "=q2=Turtle Scale Leggings", "=ds=#sr# 235"};
- { 9, "s10552", "8191", "=q2=Turtle Scale Helm", "=ds=#sr# 230"};
- { 10, "s10542", "8204", "=q2=Tough Scorpid Gloves", "=ds=#sr# 225"};
- { 11, "s10533", "8205", "=q2=Tough Scorpid Bracers", "=ds=#sr# 220"};
- { 12, "s10525", "8203", "=q2=Tough Scorpid Breastplate", "=ds=#sr# 220"};
- { 13, "s10518", "8198", "=q2=Turtle Scale Bracers", "=ds=#sr# 210"};
- { 14, "s10511", "8189", "=q2=Turtle Scale Breastplate", "=ds=#sr# 210"};
- { 15, "s10509", "8187", "=q2=Turtle Scale Gloves", "=ds=#sr# 205"};
- };
- {
- Name = AL["Mail Armor"].." - Hands";
-
- };
- {
- Name = AL["Mail Armor"].." - Head";
-
- };
- {
- Name = AL["Mail Armor"].." - Legs";
-
- };
- {
- Name = AL["Mail Armor"].." - Shoulder";
-
- };
- {
- Name = AL["Mail Armor"].." - Waist";
-
- };
- {
- Name = AL["Mail Armor"].." - Wrist";
-
- };
- {
- Name = AL["Item Enhancements"];
- { 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"};
- };
- {
- Name = AL["Item Enhancements"];
- { 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"};
- };
- {
- 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"]};
- { 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"};
- };
- {
- 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, "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"};
- };
- {
- Name = BabbleInventory["Leather"];
- { 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"};
- };
- {
- Name = DRAGONSCALE;
- { 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"};
- };
- {
- Name = ELEMENTAL;
- { 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"};
- };
- {
- Name = TRIBAL;
- { 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"};
- };
+ };
+ {
+ 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["Mining"] = {
+ AtlasLoot_Data["MiningCLASSIC"] = {
Name = MINING;
- NoFilter = true;
- {
+ {
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"};
- { 5, "s46353", "35128", "=q2=Smelt Hardened Khorium", "=ds=#sr# 375"};
- { 6, "s29686", "23573", "=q1=Smelt Hardened Adamantite", "=ds=#sr# 375"};
- { 7, "s29361", "23449", "=q2=Smelt Khorium", "=ds=#sr# 375"};
- { 8, "s29360", "23448", "=q2=Smelt Felsteel", "=ds=#sr# 350"};
- { 9, "s29359", "23447", "=q2=Smelt Eternium", "=ds=#sr# 350"};
- { 10, "s29358", "23446", "=q1=Smelt Adamantite", "=ds=#sr# 325"};
- { 11, "s29356", "23445", "=q1=Smelt Fel Iron", "=ds=#sr# 300"};
- { 12, "s35751", "22574", "=q1=Fire Sunder", "=ds=#sr# 300"};
- { 13, "s35750", "22573", "=q1=Earth Shatter", "=ds=#sr# 300"};
- { 14, "s22967", "17771", "=q5=Smelt Elementium", "=ds=#sr# 300"};
- { 15, "s70524", "12655", "=q1=Enchanted Thorium", "=ds=#sr# 250"};
- { 16, "s16153", "12359", "=q1=Smelt Thorium", "=ds=#sr# 250"};
- { 17, "s14891", "11371", "=q1=Smelt Dark Iron", "=ds=#sr# 230"};
- { 18, "s10098", "6037", "=q2=Smelt Truesilver", "=ds=#sr# 230"};
- { 19, "s10097", "3860", "=q1=Smelt Mithril", "=ds=#sr# 175"};
- { 20, "s3569", "3859", "=q1=Smelt Steel", "=ds=#sr# 165"};
- { 21, "s3308", "3577", "=q2=Smelt Gold", "=ds=#sr# 155"};
- { 22, "s3307", "3575", "=q1=Smelt Iron", "=ds=#sr# 125"};
- { 23, "s2658", "2842", "=q2=Smelt Silver", "=ds=#sr# 75"};
- { 24, "s2659", "2841", "=q1=Smelt Bronze", "=ds=#sr# 65"};
- { 25, "s3304", "3576", "=q1=Smelt Tin", "=ds=#sr# 65"};
- { 26, "s2657", "2840", "=q1=Smelt Copper", "=ds=#sr# 1"};
+ { 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"};
};
};
@@ -2224,349 +1992,278 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["TailoringCLASSIC"] = {
Name = TAILORING;
Type = "Crafting";
- NoFilter = true;
- {
+ {
Name = AL["Cloth Armor"].." - Back";
- { 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"};
+ { 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, "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"};
+ { 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, "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"};
+ { 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, "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"};
+ { 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, "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"};
+ { 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, "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"};
+ { 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, "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"};
+ { 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"
-
+ 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, "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"};
- };
- {
- Name = AL["Bags"];
- { 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"};
- };
- {
- Name = AL["Miscellaneous"];
- { 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"};
+ { 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, "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"};
+ { 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, "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"};
- };
- {
- Name = MOONCLOTH;
- { 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"};
- };
- {
- Name = SHADOWEAVE;
- { 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"};
- };
- {
- Name = SPELLFIRE;
- { 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"};
+ { 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"};
};
};
@@ -3250,8 +2947,7 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["AlchemyHighRiskCLASSIC"] = {
Name = ALCHEMY.." High Risk";
- NoFilter = true;
- {
+ {
Name = "Common";
{ 1, "s968402", "967443", "=q2=Flask of Manifesting Power", "=ds=#sr# 300"};
{ 2, "s968405", "967446", "=q2=Flask of the Warsong", "=ds=#sr# 300"};
@@ -3297,8 +2993,7 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["SmithingHighRiskCLASSIC"] = {
Name = BLACKSMITHING.." High Risk";
- NoFilter = true;
- {
+ {
Name = "Common";
{ 1, "s968018", "967172", "=q2=Living Belt Buckle", "=ds=#sr# 300"};
{ 2, "s968021", "967175", "=q2=Deflecting Buckle", "=ds=#sr# 300"};
@@ -3338,8 +3033,7 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["LeatherworkingHighRiskCLASSIC"] = {
Name = LEATHERWORKING.." High Risk";
- NoFilter = true;
- {
+ {
Name = "Common";
{ 1, "s968000", "967154", "=q2=Yeti Gambeson", "=ds=#sr# 300"};
{ 2, "s968003", "967157", "=q2=Devilsaur Gambeson", "=ds=#sr# 300"};
@@ -3370,8 +3064,7 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["EngineeringHighRiskCLASSIC"] = {
Name = ENGINEERING.." High Risk";
- NoFilter = true;
- {
+ {
Name = "Common";
{ 1, "s968042", "967196", "=q2=Gnomish Magnifying Lense I", "=ds=#sr# 300"};
{ 2, "s968045", "967199", "=q2=Gnomish Focusing Lense", "=ds=#sr# 300"};
@@ -3402,8 +3095,7 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["EnchantingHighRiskCLASSIC"] = {
Name = ENCHANTING.." High Risk";
- NoFilter = true;
- {
+ {
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"};
@@ -3445,8 +3137,7 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["TailoringHighRiskCLASSIC"] = {
Name = TAILORING.." High Risk";
- NoFilter = true;
- {
+ {
Name = "Common";
{ 1, "s968060", "967214", "=q2=Dragonweave Cloak Lining", "=ds=#sr# 300"};
{ 2, "s968063", "967217", "=q2=Twilight Cloak Lining", "=ds=#sr# 300"};
@@ -3477,8 +3168,7 @@ local MASTER = select(2, GetSpellInfo(28596));
AtlasLoot_Data["CookingHighRiskCLASSIC"] = {
Name = COOKING.." High Risk";
- NoFilter = true;
- {
+ {
Name = "Common";
{ 1, "s968279", "967509", "=q2=Animated Soup for the Soul", "=ds=#sr# 300"};
{ 2, "s968282", "967512", "=q2=Volcanic Sandwich", "=ds=#sr# 300"};
diff --git a/AtlasLoot_Crafting/craftingTBC.lua b/AtlasLoot_Crafting/craftingTBC.lua
index 647a674..1b6a098 100644
--- a/AtlasLoot_Crafting/craftingTBC.lua
+++ b/AtlasLoot_Crafting/craftingTBC.lua
@@ -99,8 +99,7 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["AlchemyTBC"] = {
Name = ALCHEMY;
Type = "Crafting";
- NoFilter = true;
- {
+ {
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"]};
@@ -200,8 +199,7 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["SmithingTBC"] = {
Name = BLACKSMITHING;
Type = "Crafting";
- NoFilter = true;
- {
+ {
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"};
@@ -444,216 +442,68 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["CookingTBC"] = {
Name = COOKING;
- NoFilter = true;
{
Name = COOKING;
- { 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"]};
+ { 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, "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"]..""};
- };
- {
- Name = COOKING;
- { 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"]..""};
- };
- {
- Name = COOKING;
- { 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"]..""};
- };
- {
- 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"]};
+ { 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"]..""};
};
};
@@ -663,8 +513,7 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["EnchantingTBC"] = {
Name = ENCHANTING;
- NoFilter = true;
- {
+ {
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"};
@@ -788,8 +637,7 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["EngineeringTBC"] = {
Name = ENGINEERING;
Type = "Crafting";
- NoFilter = true;
- {
+ {
Name = AL["Ammunition"];
{ 1, "s43676", "20475", "=q1=Adamantite Arrow Maker", "=ds=#sr# 335"};
{ 2, "s30347", "34504", "=q1=Adamantite Shell Machine", "=ds=#sr# 335"};
@@ -902,8 +750,7 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["FirstAid"] = {
Name = FIRSTAID;
- NoFilter = true;
- {
+ {
Name = FIRSTAID;
{ 1, "s45546", "34722", "=q1=Heavy Frostweave Bandage", "=ds=#sr# 400"};
{ 2, "s45545", "34721", "=q1=Frostweave Bandage", "=ds=#sr# 375"};
@@ -1086,34 +933,11 @@ local SPELLFIRE = GetSpellInfo(26797);
};
{
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 = AL["Dragons Eye"];
- { 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#"};
+ { 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"];
@@ -1144,119 +968,86 @@ local SPELLFIRE = GetSpellInfo(26797);
};
{
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"] };
- { 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"};
+ { 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, "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"};
- };
- {
- Name = AL["Rings"];
- { 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"};
+ { 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, "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"};
+ { 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"];
@@ -1278,7 +1069,6 @@ local SPELLFIRE = GetSpellInfo(26797);
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"]};
{ 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"};
@@ -1307,130 +1097,8 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["LeatherworkingTBC"] = {
Name = LEATHERWORKING;
Type = "Crafting";
- NoFilter = true;
{
Name = AL["Leather Armor"].." - Back";
-
-
- };
- {
- Name = AL["Leather Armor"].." - Chest";
- { 1, "s36351", "30040", "=q4=Belt of Deep Shadow", "=ds=#sr# 375"};
- { 2, "s36349", "30042", "=q4=Belt of Natural Power", "=ds=#sr# 375"};
- { 3, "s36355", "30041", "=q4=Boots of Natural Grace", "=ds=#sr# 375"};
- { 4, "s36357", "30039", "=q4=Boots of Utter Darkness", "=ds=#sr# 375"};
- { 5, "s41156", "32582", "=q4=Bracers of Renewed Life", "=ds=#sr# 375"};
- { 6, "s35590", "29526", "=q4=Primalstrike Belt", "=ds=#sr# 375"};
- { 7, "s35591", "29527", "=q4=Primalstrike Bracers", "=ds=#sr# 375"};
- { 8, "s35589", "29525", "=q4=Primalstrike Vest", "=ds=#sr# 375"};
- { 9, "s40006", "32393", "=q4=Redeemed Soul Cinch", "=ds=#sr# 375"};
- { 10, "s40005", "32396", "=q4=Redeemed Soul Legguards", "=ds=#sr# 375"};
- { 11, "s40003", "32394", "=q4=Redeemed Soul Moccasins", "=ds=#sr# 375"};
- { 12, "s40004", "32395", "=q4=Redeemed Soul Wristguards", "=ds=#sr# 375"};
- { 13, "s41157", "32583", "=q4=Shoulderpads of Renewed Life", "=ds=#sr# 375"};
- { 14, "s41158", "32580", "=q4=Swiftstrike Bracers", "=ds=#sr# 375"};
- { 15, "s41160", "32581", "=q4=Swiftstrike Shoulders", "=ds=#sr# 375"};
- { 16, "s35587", "29524", "=q4=Windhawk Belt", "=ds=#sr# 375"};
- { 17, "s35588", "29523", "=q4=Windhawk Bracers", "=ds=#sr# 375"};
- { 18, "s35585", "29522", "=q4=Windhawk Hauberk", "=ds=#sr# 375"};
- { 19, "s46138", "34369", "=q4=Carapace of Sun and Shadow", "=ds=#sr# 365"};
- { 20, "s35559", "29503", "=q4=Cobrascale Gloves", "=ds=#sr# 365"};
- { 21, "s35558", "29502", "=q4=Cobrascale Hood", "=ds=#sr# 365"};
- { 22, "s46134", "34370", "=q4=Gloves of Immortal Dusk", "=ds=#sr# 365"};
- { 23, "s35562", "29506", "=q4=Gloves of the Living Touch", "=ds=#sr# 365"};
- { 24, "s35561", "29505", "=q4=Hood of Primal Life", "=ds=#sr# 365"};
- { 25, "s46136", "34371", "=q4=Leather Chestguard of the Sun", "=ds=#sr# 365"};
- { 26, "s46132", "34372", "=q4=Leather Gauntlets of the Sun", "=ds=#sr# 365"};
- { 27, "s42731", "33204", "=q4=Shadowprowler's Chestguard", "=ds=#sr# 365"};
- { 28, "s35560", "29504", "=q4=Windscale Hood", "=ds=#sr# 365"};
- { 29, "s35563", "29507", "=q4=Windslayer Wraps", "=ds=#sr# 365"};
- { 30, "s32495", "25689", "=q3=Heavy Clefthoof Vest", "=ds=#sr# 360"};
- };
- {
- Name = AL["Leather Armor"].." - Feet";
- { 1, "s32497", "25691", "=q3=Heavy Clefthoof Boots", "=ds=#sr# 355"};
- { 2, "s32496", "25690", "=q3=Heavy Clefthoof Leggings", "=ds=#sr# 355"};
- { 3, "s35537", "29500", "=q3=Blastguard Belt", "=ds=#sr# 350"};
- { 4, "s35536", "29499", "=q3=Blastguard Boots", "=ds=#sr# 350"};
- { 5, "s35535", "29498", "=q3=Blastguard Pants", "=ds=#sr# 350"};
- { 6, "s35534", "29497", "=q3=Enchanted Clefthoof Boots", "=ds=#sr# 350"};
- { 7, "s35533", "29496", "=q3=Enchanted Clefthoof Gloves", "=ds=#sr# 350"};
- { 8, "s35532", "29495", "=q3=Enchanted Clefthoof Leggings", "=ds=#sr# 350"};
- { 9, "s32493", "25686", "=q3=Fel Leather Boots", "=ds=#sr# 350"};
- { 10, "s32494", "25687", "=q3=Fel Leather Leggings", "=ds=#sr# 350"};
- { 11, "s32489", "25682", "=q3=Stylin' Jungle Hat", "=ds=#sr# 350"};
- { 12, "s32485", "25680", "=q3=Stylin' Purple Hat", "=ds=#sr# 350"};
- { 13, "s32490", "25685", "=q3=Fel Leather Gloves", "=ds=#sr# 340"};
- { 14, "s36078", "29974", "=q3=Living Crystal Breastplate", "=ds=#sr# 330"};
- { 15, "s36077", "29973", "=q3=Primalstorm Breastplate", "=ds=#sr# 330"};
- { 16, "s32473", "25671", "=q2=Thick Draenic Vest", "=ds=#sr# 330"};
- { 17, "s32481", "25676", "=q2=Wild Draenish Vest", "=ds=#sr# 330"};
- { 18, "s32472", "25668", "=q2=Thick Draenic Boots", "=ds=#sr# 320"};
- { 19, "s32480", "25675", "=q2=Wild Draenish Leggings", "=ds=#sr# 320"};
- { 20, "s32471", "25670", "=q2=Thick Draenic Pants", "=ds=#sr# 315"};
- { 21, "s32479", "25674", "=q2=Wild Draenish Gloves", "=ds=#sr# 310"};
- { 22, "s32470", "25669", "=q2=Thick Draenic Gloves", "=ds=#sr# 300"};
- { 23, "s32478", "25673", "=q2=Wild Draenish Boots", "=ds=#sr# 300"};
- };
- {
- Name = AL["Leather Armor"].." - Hands";
- { 1, "s40002", "32397", "=q4=Waistguard of Shackled Souls", "=ds=#sr# 375"};
- { 2, "s41162", "32575", "=q4=Shoulders of Lightning Reflexes", "=ds=#sr# 375"};
- { 3, "s35582", "29520", "=q4=Netherstrike Belt", "=ds=#sr# 375"};
- { 4, "s35584", "29521", "=q4=Netherstrike Bracers", "=ds=#sr# 375"};
- { 5, "s35580", "29519", "=q4=Netherstrike Breastplate", "=ds=#sr# 375"};
- { 6, "s36353", "30044", "=q4=Monsoon Belt", "=ds=#sr# 375"};
- { 7, "s52733", "32399", "=q4=Bracers of Shackled Souls", "=ds="..AL["Vendor"]..""};
- { 8, "s35576", "29516", "=q4=Ebon Netherscale Belt", "=ds=#sr# 375"};
- { 9, "s35577", "29517", "=q4=Ebon Netherscale Bracers", "=ds=#sr# 375"};
- { 10, "s35575", "29515", "=q4=Ebon Netherscale Breastplate", "=ds=#sr# 375"};
- { 11, "s40001", "32400", "=q4=Greaves of Shackled Souls", "=ds=#sr# 375"};
- { 12, "s36359", "30043", "=q4=Hurricane Boots", "=ds=#sr# 375"};
- { 13, "s41163", "32577", "=q4=Living Earth Bindings", "=ds=#sr# 375"};
- { 14, "s41164", "32579", "=q4=Living Earth Shoulders", "=ds=#sr# 375"};
- { 15, "s39997", "32398", "=q4=Boots of Shackled Souls", "=ds=#sr# 375"};
- { 16, "s36358", "30045", "=q4=Boots of the Crimson Hawk", "=ds=#sr# 375"};
- { 17, "s36352", "30046", "=q4=Belt of the Black Eagle", "=ds=#sr# 375"};
- { 18, "s41161", "32574", "=q4=Bindings of Lightning Reflexes", "=ds=#sr# 375"};
- { 19, "s46139", "34375", "=q4=Sun-Drenched Scale Chestguard", "=ds=#sr# 365"};
- { 20, "s46135", "34376", "=q4=Sun-Drenched Scale Gloves", "=ds=#sr# 365"};
- { 21, "s46137", "34373", "=q4=Embrace of the Phoenix", "=ds=#sr# 365"};
- { 22, "s46133", "34374", "=q4=Fletcher's Gloves of the Phoenix", "=ds=#sr# 365"};
- { 23, "s35568", "29509", "=q4=Windstrike Gloves", "=ds=#sr# 365"};
- { 24, "s35574", "29514", "=q4=Thick Netherscale Breastplate", "=ds=#sr# 365"};
- { 25, "s35564", "29508", "=q4=Living Dragonscale Helm", "=ds=#sr# 365"};
- { 26, "s35573", "29511", "=q4=Netherdrake Gloves", "=ds=#sr# 365"};
- { 27, "s35572", "29510", "=q4=Netherdrake Helm", "=ds=#sr# 365"};
- { 28, "s35567", "29512", "=q4=Earthen Netherscale Boots", "=ds=#sr# 365"};
- { 29, "s32499", "25697", "=q3=Felstalker Bracer", "=ds=#sr# 360"};
- { 30, "s32500", "25696", "=q3=Felstalker Breastplate", "=ds=#sr# 360"};
- };
- {
- Name = AL["Leather Armor"].." - Head";
- { 1, "s32487", "25681", "=q3=Stylin' Adventure Hat", "=ds=#sr# 350"};
- { 2, "s32488", "25683", "=q3=Stylin' Crimson Hat", "=ds=#sr# 350"};
- { 3, "s32498", "25695", "=q3=Felstalker Belt", "=ds=#sr# 350"};
- { 4, "s35531", "29494", "=q3=Flamescale Belt", "=ds=#sr# 350"};
- { 5, "s35528", "29493", "=q3=Flamescale Boots", "=ds=#sr# 350"};
- { 6, "s35529", "29492", "=q3=Flamescale Leggings", "=ds=#sr# 350"};
- { 7, "s32503", "25693", "=q3=Netherfury Boots", "=ds=#sr# 350"};
- { 8, "s35527", "29491", "=q3=Enchanted Felscale Boots", "=ds=#sr# 350"};
- { 9, "s35526", "29490", "=q3=Enchanted Felscale Gloves", "=ds=#sr# 350"};
- { 10, "s35525", "29489", "=q3=Enchanted Felscale Leggings", "=ds=#sr# 350"};
- { 11, "s32501", "25694", "=q3=Netherfury Belt", "=ds=#sr# 340"};
- { 12, "s32502", "25692", "=q3=Netherfury Leggings", "=ds=#sr# 340"};
- { 13, "s36079", "29975", "=q3=Golden Dragonstrike Breastplate", "=ds=#sr# 330"};
- { 14, "s32465", "25657", "=q2=Felscale Breastplate", "=ds=#sr# 335"};
- { 15, "s32469", "25659", "=q2=Scaled Draenic Boots", "=ds=#sr# 335"};
- { 16, "s32468", "25660", "=q2=Scaled Draenic Vest", "=ds=#sr# 325"};
- { 17, "s32464", "25656", "=q2=Felscale Pants", "=ds=#sr# 320"};
- { 18, "s32467", "25661", "=q2=Scaled Draenic Gloves", "=ds=#sr# 310"};
- { 19, "s32463", "25655", "=q2=Felscale Boots", "=ds=#sr# 310"};
- { 20, "s32466", "25662", "=q2=Scaled Draenic Pants", "=ds=#sr# 300"};
- { 21, "s32462", "25654", "=q2=Felscale Gloves", "=ds=#sr# 300"};
- };
- {
- Name = AL["Leather Armor"].." - Legs";
{ 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"};
@@ -1449,186 +1117,260 @@ local SPELLFIRE = GetSpellInfo(26797);
{ 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"};
+
+ };
+ {
+ 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, "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"};
- };
- {
- Name = AL["Item Enhancements"];
- { 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"};
+ { 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, "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"};
+ { 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, "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"};
+ { 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, "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"};
+ { 1, "s32455", "23793", "=q1=Heavy Knothide Leather", "=ds=#sr# 325"};
+ { 2, "s32454", "21887", "=q1=Knothide Leather", "=ds=#sr# 300"};
};
{
Name = DRAGONSCALE;
- { 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"};
+ { 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, "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"};
+ { 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"};
- { 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"};
};
{
Name = TRIBAL;
- { 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"};
+ { 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"};
- { 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"};
};
};
-
+ AtlasLoot_Data["MiningTBC"] = {
+ 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"};
+ };
+};
+ 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 ---
-----------------
@@ -1636,233 +1378,148 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["TailoringTBC"] = {
- Name = TAILORING;
- Type = "Crafting";
- NoFilter = true;
- {
- Name = AL["Cloth Armor"].." - Back";
- { 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"};
+ 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, "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"};
+ { 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, "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"};
+ { 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"].." - Wrist"
+ 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, "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"};
- };
- {
- Name = AL["Bags"];
- { 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"};
+ { 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, "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"};
- };
- {
- Name = AL["Miscellaneous"];
- { 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"};
- };
- {
- 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"};
+ { 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, "s26760", "21873", "=q4=Primal Mooncloth Belt", "=ds=#sr# 355"};
+ { 1, "s26762", "21875", "=q4=Primal Mooncloth Robe", "=ds=#sr# 375"};
{ 2, "s26761", "21874", "=q4=Primal Mooncloth Shoulders", "=ds=#sr# 365"};
- { 3, "s26762", "21875", "=q4=Primal Mooncloth Robe", "=ds=#sr# 375"};
+ { 3, "s26760", "21873", "=q4=Primal Mooncloth Belt", "=ds=#sr# 355"};
};
{
Name = SHADOWEAVE;
- { 1, "s26756", "21869", "=q4=Frozen Shadoweave Shoulders", "=ds=#sr# 355"};
+ { 1, "s26758", "21871", "=q4=Frozen Shadoweave Robe", "=ds=#sr# 375"};
{ 2, "s26757", "21870", "=q4=Frozen Shadoweave Boots", "=ds=#sr# 365"};
- { 3, "s26758", "21871", "=q4=Frozen Shadoweave Robe", "=ds=#sr# 375"};
+ { 3, "s26756", "21869", "=q4=Frozen Shadoweave Shoulders", "=ds=#sr# 355"};
};
{
Name = SPELLFIRE;
- { 1, "s26752", "21846", "=q4=Spellfire Belt", "=ds=#sr# 355"};
+ { 1, "s26754", "21848", "=q4=Spellfire Robe", "=ds=#sr# 375"};
{ 2, "s26753", "21847", "=q4=Spellfire Gloves", "=ds=#sr# 365"};
- { 3, "s26754", "21848", "=q4=Spellfire Robe", "=ds=#sr# 375"};
+ { 3, "s26752", "21846", "=q4=Spellfire Belt", "=ds=#sr# 355"};
};
};
@@ -2946,8 +2603,7 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["AlchemyHighRiskTBC"] = {
Name = ALCHEMY.." High Risk";
- NoFilter = true;
- {
+ {
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"};
@@ -3005,8 +2661,7 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["LeatherworkingHighRiskTBC"] = {
Name = LEATHERWORKING.." High Risk";
- NoFilter = true;
- {
+ {
Name = "Rare";
{ 1, "s979522", "1204021", "=q3=Cobra Strike Gambeson", "=ds=#sr# 300"};
{ 2, "s979524", "1204023", "=q3=Fel Strike Gambeson", "=ds=#sr# 300"};
@@ -3028,8 +2683,7 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["EngineeringHighRiskTBC"] = {
Name = ENGINEERING.." High Risk";
- NoFilter = true;
- {
+ {
Name = "Rare";
{ 1, "s979550", "1204049", "=q3=Gnomish Magnification Polish", "=ds=#sr# 300"};
{ 2, "s979552", "1204051", "=q3=Gnomish Sharpening Polish", "=ds=#sr# 300"};
@@ -3051,8 +2705,7 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["EnchantingHighRiskTBC"] = {
Name = ENCHANTING.." High Risk";
- NoFilter = true;
- {
+ {
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"};
@@ -3082,8 +2735,7 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["TailoringHighRiskTBC"] = {
Name = TAILORING.." High Risk";
- NoFilter = true;
- {
+ {
Name = "Rare";
{ 1, "s979562", "1204061", "=q3=Armored Cloak Lining", "=ds=#sr# 300"};
{ 2, "s979564", "1204063", "=q3=Chaneller\'s Cloak Lining", "=ds=#sr# 300"};
@@ -3105,8 +2757,7 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["JewelcraftingHighRiskTBC"] = {
Name = JEWELCRAFTING.." High Risk";
- NoFilter = true;
- {
+ {
Name = "Rare";
{ 1, "s979639", "1204165", "=q3=Deep Gold Twisted Pendant", "=ds=#sr# 300"};
{ 2, "s979641", "1204167", "=q3=Bloodshadow Twisted Pendant", "=ds=#sr# 300"};
@@ -3134,8 +2785,7 @@ local SPELLFIRE = GetSpellInfo(26797);
AtlasLoot_Data["CookingHighRiskTBC"] = {
Name = COOKING.." High Risk";
- NoFilter = true;
- {
+ {
Name = "Rare";
{ 1, "s979384", "1203280", "=q3=Infused Living Soup", "=ds=#sr# 300"};
{ 2, "s979386", "1203282", "=q3=Infused Charred Steak", "=ds=#sr# 300"};
diff --git a/AtlasLoot_Crafting/craftingWRATH.lua b/AtlasLoot_Crafting/craftingWRATH.lua
index aea65eb..8e70262 100644
--- a/AtlasLoot_Crafting/craftingWRATH.lua
+++ b/AtlasLoot_Crafting/craftingWRATH.lua
@@ -2232,6 +2232,25 @@ local MASTER = select(2, GetSpellInfo(28596));
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"};
+ };
+};
+
+ 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 ---
-----------------
diff --git a/AtlasLoot_OriginalWoW/originalwow.lua b/AtlasLoot_OriginalWoW/originalwow.lua
index f97645f..12faaf7 100644
--- a/AtlasLoot_OriginalWoW/originalwow.lua
+++ b/AtlasLoot_OriginalWoW/originalwow.lua
@@ -408,8 +408,8 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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.5Shoulders"};
- { 11, 20928, "", "=q4=Bindings of the Lost Nomad","=ds=#tt2.5#", "", "100%", "=LT=T2.5Boots"};
+ { 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#"};
@@ -428,8 +428,8 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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.5Shoulders"};
- { 10, 20928, "", "=q4=Bindings of the Lost Nomad","=ds=#tt2.5#", "", "100%", "=LT=T2.5Boots"};
+ { 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#"};
@@ -454,7 +454,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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.5Helms"};
+ { 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%"};
@@ -476,7 +476,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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"};
+ { 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#"};
@@ -502,7 +502,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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.5Chests"};
+ { 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#"};
@@ -553,24 +553,27 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
};
AtlasLoot_Data["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#"};
- Type = "ClassicRaid";
+ 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#"};
+ };
};
-------------------------
@@ -1274,7 +1277,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T1Bracers"};
+ { 16, 2522362, "", "=q4=Molten Wristgaurds", "=ds=#tt1#", "", "100%", "=LT=T1WRIST"};
{ 18, 17329, "", "=q1=Hand of Lucifron", "=ds=#m3#"};
};
{
@@ -1294,7 +1297,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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"};
+ { 16, 2522359, "", "=q4=Molten Leggaurds", "=ds=#tt1#", "", "100%", "=LT=T1LEGS"};
};
{
Name = BabbleBoss["Gehennas"];
@@ -1308,7 +1311,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T1Gloves"};
+ { 16, 2522364, "", "=q4=Molten Girdle", "=ds=#tt1#", "", "100%", "=LT=T1HAND"};
{ 18, 17331, "", "=q1=Hand of Gehennas", "=ds=#m3#"};
};
{
@@ -1328,7 +1331,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T1Helms"};
+ { 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#", "", ""};
@@ -1346,7 +1349,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T1Belts"};
+ { 16, 2522363, "", "=q4=Molten Handgaurds", "=ds=#tt1#", "", "100%", "=LT=T1WAIST"};
{ 18, 17332, "", "=q1=Hand of Shazzrah", "=ds=#m3#"};
};
{
@@ -1363,7 +1366,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T1Shoulders"};
+ { 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#"};
};
@@ -1383,7 +1386,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T1Chests"};
+ { 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#"};
};
@@ -1400,7 +1403,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T1Boots"};
+ { 16, 2522365, "", "=q4=Molten Boots", "=ds=#tt1#", "", "100%", "=LT=T1FEET"};
{ 18, 17330, "", "=q1=Hand of Sulfuron", "=ds=#m3#"};
};
{
@@ -1439,7 +1442,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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"};
+ { 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%"};
@@ -1495,7 +1498,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T2Bracers"};
+ { 16, 2522462, "", "=q4=Chromatic Wristgaurds", "=ds=#tt2#", "", "100%", "=LT=T2WRIST"};
};
{
Name = BabbleBoss["Vaelastrasz the Corrupt"];
@@ -1508,7 +1511,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T2Belts"};
+ { 16, 2522463, "", "=q4=Chromatic Girdle", "=ds=#tt2#", "", "100%", "=LT=T2WAIST"};
};
{
Name = BabbleBoss["Broodlord Lashlayer"];
@@ -1523,7 +1526,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T2Boots"};
+ { 16, 2522465, "", "=q4=Chromatic Boots", "=ds=#tt2#", "", "100%", "=LT=T2FEET"};
{ 18, 20383, "", "=q1=Head of the Broodlord Lashlayer", "=ds=#m3#", "", "100%"};
};
{
@@ -1542,7 +1545,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T2Gloves"};
+ { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=LT=T2HAND"};
};
{
Name = BabbleBoss["Ebonroc"];
@@ -1558,7 +1561,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T2Gloves"};
+ { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=LT=T2HAND"};
};
{
Name = BabbleBoss["Flamegor"];
@@ -1574,7 +1577,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T2Gloves"};
+ { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=LT=T2HAND"};
};
{
Name = BabbleBoss["Chromaggus"];
@@ -1591,7 +1594,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T2Shoulders"};
+ { 16, 2522461, "", "=q4=Chromatic Spaulders", "=ds=#tt2#", "", "100%", "=LT=T2SHOULDER"};
};
{
Name = BabbleBoss["Nefarian"];
@@ -1608,7 +1611,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T2Chests"};
+ { 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#"};
@@ -3052,73 +3055,73 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
---------------------
AtlasLoot_Data["TheDeadmines"] = {
- Name = BabbleZone["The Deadmines"];
- {
- 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#"};
- };
+ Name = BabbleZone["The Deadmines"];
+ {
+ 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#"};
+ };
};
--------------------
@@ -3503,89 +3506,89 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
------------------
AtlasLoot_Data["ZulFarrak"] = {
- Name = BabbleZone["Zul'Farrak"];
- {
- 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 = BabbleZone["Zul'Farrak"];
+ {
+ 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%"};
- };
+ {
+ 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%"};
+ };
};
-----------------
@@ -3892,7 +3895,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Shoulders"};
+ { 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#" },
};
@@ -3903,7 +3906,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Shoulders"};
+ { 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#" },
};
@@ -3914,10 +3917,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Shoulders"};
- { 17, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#","", "8.33%", "=LT=T3Bracers"};
- { 18, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#","", "8.33%", "=LT=T3Belts"};
- { 19, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#","", "8.33%", "=LT=T3Boots"};
+ { 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#" },
};
@@ -3928,7 +3931,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Helms"};
+ { 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#" },
};
@@ -3939,7 +3942,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Bracers"};
+ { 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#" },
};
@@ -3950,7 +3953,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Bracers"};
+ { 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#" },
};
@@ -3961,7 +3964,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Gloves"};
+ { 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#" },
};
@@ -3973,7 +3976,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Boots"};
+ { 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#" },
};
@@ -3984,7 +3987,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Shoulders"};
+ { 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#" },
};
@@ -3996,7 +3999,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Chests"};
+ { 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#" },
};
@@ -4009,7 +4012,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Belts"};
+ { 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#" },
};
@@ -4020,7 +4023,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Belts"};
+ { 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#" },
};
@@ -4031,7 +4034,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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"};
+ { 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#" },
};
@@ -4072,7 +4075,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T3Rings"};
+ { 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#"},
@@ -4122,7 +4125,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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=T2Helms"};
+ { 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#" },
@@ -4139,1510 +4142,949 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
--- Dungeon 1 and 2 Sets (D1/D2) ---
------------------------------------
- AtlasLoot_Data["T0Druid"] = {
- { 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};
- Next = "T1Druid";
- Back = "T0SET";
- Type = "ClassicDungeonExt";
- };
-
- AtlasLoot_Data["T0Hunter"] = {
- { 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};
- Next = "T1Hunter";
- Back = "T0SET";
- Type = "ClassicDungeonExt";
- };
-
- AtlasLoot_Data["T0Mage"] = {
- { 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};
- Next = "T1Mage";
- Back = "T0SET";
- Type = "ClassicDungeonExt";
- };
-
- AtlasLoot_Data["T0Paladin"] = {
- { 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};
- Next = "T1Paladin";
- Back = "T0SET";
- Type = "ClassicDungeonExt";
- };
-
- AtlasLoot_Data["T0Priest"] = {
- { 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};
- Next = "T1Priest";
- Back = "T0SET";
- Type = "ClassicDungeonExt";
- };
-
- AtlasLoot_Data["T0Rogue"] = {
- { 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};
- Next = "T1Rogue";
- Back = "T0SET";
- Type = "ClassicDungeonExt";
- };
-
- AtlasLoot_Data["T0Shaman"] = {
- { 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};
- Next = "T1Shaman";
- Back = "T0SET";
- Type = "ClassicDungeonExt";
- };
-
- AtlasLoot_Data["T0Warlock"] = {
- { 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};
- Next = "T1Warlock";
- Back = "T0SET";
- Type = "ClassicDungeonExt";
- };
-
- AtlasLoot_Data["T0Warrior"] = {
- { 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};
- Next = "T1Warrior";
- Back = "T0SET";
- Type = "ClassicDungeonExt";
+ AtlasLoot_Data["T0"] = {
+ Name = "Teir 0";
+ Type = "ClassicRaid";
+ {
+ 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["T1Druid"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#t1s1#", "=ec1=#m30#"};
- { 2, 16834, "", "=q4=Cenarion Helm", "=ds="..BabbleBoss["Garr"], "", "11.51%"};
- { 3, 16836, "", "=q4=Cenarion Spaulders", "=ds="..BabbleBoss["Baron Geddon"], "", "19.52%"};
- { 4, 16833, "", "=q4=Cenarion Vestments", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.21%"};
- { 5, 16830, "", "=q4=Cenarion Bracers", "=ds="..AL["Trash Mobs"], "", "0.17%"};
- { 6, 16831, "", "=q4=Cenarion Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "19.53%"};
- { 7, 16828, "", "=q4=Cenarion Belt", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 8, 16835, "", "=q4=Cenarion Leggings", "=ds="..BabbleBoss["Magmadar"], "", "12.90%"};
- { 9, 16829, "", "=q4=Cenarion Boots", "=ds="..BabbleBoss["Lucifron"], "", "10.72%"};
- Prev = "T0Druid";
- Next = "T2Druid";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1Hunter"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t1s2#", "=ec1=#m30#"};
- { 2, 16846, "", "=q4=Giantstalker's Helmet", "=ds="..BabbleBoss["Garr"], "", "11.57%"};
- { 3, 16848, "", "=q4=Giantstalker's Epaulets", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "19.64%"};
- { 4, 16845, "", "=q4=Giantstalker's Breastplate", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.83%"};
- { 5, 16850, "", "=q4=Giantstalker's Bracers", "=ds="..AL["Trash Mobs"], "", "0.18%"};
- { 6, 16852, "", "=q4=Giantstalker's Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "18.58%"};
- { 7, 16851, "", "=q4=Giantstalker's Belt", "=ds="..AL["Trash Mobs"], "", "0.17%"};
- { 8, 16847, "", "=q4=Giantstalker's Leggings", "=ds="..BabbleBoss["Magmadar"], "", "13.28%"};
- { 9, 16849, "", "=q4=Giantstalker's Boots", "=ds="..BabbleBoss["Gehennas"], "", "14.54%"};
- Prev = "T0Hunter";
- Next = "T2Hunter";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1Mage"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#t1s3#", "=ec1=#m30#"};
- { 2, 16795, "", "=q4=Arcanist Crown", "=ds="..BabbleBoss["Garr"], "", "11.31%"};
- { 3, 16797, "", "=q4=Arcanist Mantle", "=ds="..BabbleBoss["Baron Geddon"], "", "19.92%"};
- { 4, 16798, "", "=q4=Arcanist Robes", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "16.51%"};
- { 5, 16799, "", "=q4=Arcanist Bindings", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 6, 16801, "", "=q4=Arcanist Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "19.59%"};
- { 7, 16802, "", "=q4=Arcanist Belt", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 8, 16796, "", "=q4=Arcanist Leggings", "=ds="..BabbleBoss["Magmadar"], "", "14.57%"};
- { 9, 16800, "", "=q4=Arcanist Boots", "=ds="..BabbleBoss["Lucifron"], "", "12.06%"};
- Prev = "T0Mage";
- Next = "T2Mage";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1Paladin"] = {
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t1s4#", "=ec1=#m30#"};
- { 2, 16854, "", "=q4=Lawbringer Helm", "=ds="..BabbleBoss["Garr"], "", "7.23%"};
- { 3, 16856, "", "=q4=Lawbringer Spaulders", "=ds="..BabbleBoss["Baron Geddon"], "", "12.62%"};
- { 4, 16853, "", "=q4=Lawbringer Chestguard", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "9.53%"};
- { 5, 16857, "", "=q4=Lawbringer Bracers", "=ds="..AL["Trash Mobs"], "", "0.11%"};
- { 6, 16860, "", "=q4=Lawbringer Gauntlets", "=ds="..BabbleBoss["Gehennas"], "", "11.77%"};
- { 7, 16858, "", "=q4=Lawbringer Belt", "=ds="..AL["Trash Mobs"], "", "0.10%"};
- { 8, 16855, "", "=q4=Lawbringer Legplates", "=ds="..BabbleBoss["Magmadar"], "", "8.54%"};
- { 9, 16859, "", "=q4=Lawbringer Boots", "=ds="..BabbleBoss["Lucifron"], "", "7.20%"};
- Prev = "T0Paladin";
- Next = "T2Paladin";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1Priest"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t1s5#", "=ec1=#m30#"};
- { 2, 16813, "", "=q4=Circlet of Prophecy", "=ds="..BabbleBoss["Garr"], "", "11.36%"};
- { 3, 16816, "", "=q4=Mantle of Prophecy", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "21.06%"};
- { 4, 16815, "", "=q4=Robes of Prophecy", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.65%"};
- { 5, 16819, "", "=q4=Vambraces of Prophecy", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 6, 16812, "", "=q4=Gloves of Prophecy", "=ds="..BabbleBoss["Gehennas"], "", "18.65%"};
- { 7, 16817, "", "=q4=Girdle of Prophecy", "=ds="..AL["Trash Mobs"], "", "0.18%"};
- { 8, 16814, "", "=q4=Pants of Prophecy", "=ds="..BabbleBoss["Magmadar"], "", "14.33%"};
- { 9, 16811, "", "=q4=Boots of Prophecy", "=ds="..BabbleBoss["Shazzrah"], "", "14.90%"};
- Prev = "T0Priest";
- Next = "T2Priest";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1Rogue"] = {
- { 1, 0, "Ability_BackStab", "=q6=#t1s6#", "=ec1=#m30#"};
- { 2, 16821, "", "=q4=Nightslayer Cover", "=ds="..BabbleBoss["Garr"], "", "10.38%"};
- { 3, 16823, "", "=q4=Nightslayer Shoulder Pads", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "20.66%"};
- { 4, 16820, "", "=q4=Nightslayer Chestpiece", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "16.76%"};
- { 5, 16825, "", "=q4=Nightslayer Bracelets", "=ds="..AL["Trash Mobs"], "", "0.17%"};
- { 6, 16826, "", "=q4=Nightslayer Gloves", "=ds="..BabbleBoss["Gehennas"], "", "19.47%"};
- { 7, 16827, "", "=q4=Nightslayer Belt", "=ds="..AL["Trash Mobs"], "", "0.15%"};
- { 8, 16822, "", "=q4=Nightslayer Pants", "=ds="..BabbleBoss["Magmadar"], "", "13.83%"};
- { 9, 16824, "", "=q4=Nightslayer Boots", "=ds="..BabbleBoss["Shazzrah"], "", "15.58%"};
- Prev = "T0Rogue";
- Next = "T2Rogue";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1Shaman"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t1s7#", "=ec1=#m30#"};
- { 2, 16842, "", "=q4=Earthfury Helmet", "=ds="..BabbleBoss["Garr"], "", "3.91%"};
- { 3, 16844, "", "=q4=Earthfury Epaulets", "=ds="..BabbleBoss["Baron Geddon"], "", "7.29%"};
- { 4, 16841, "", "=q4=Earthfury Vestments", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "6.08%"};
- { 5, 16840, "", "=q4=Earthfury Bracers", "=ds="..AL["Trash Mobs"], "", "0.06%"};
- { 6, 16839, "", "=q4=Earthfury Gauntlets", "=ds="..BabbleBoss["Gehennas"], "", "7.38%"};
- { 7, 16838, "", "=q4=Earthfury Belt", "=ds="..AL["Trash Mobs"], "", "0.07%"};
- { 8, 16843, "", "=q4=Earthfury Legguards", "=ds="..BabbleBoss["Magmadar"], "", "4.73%"};
- { 9, 16837, "", "=q4=Earthfury Boots", "=ds="..BabbleBoss["Lucifron"], "", "4.16%"};
- Prev = "T0Shaman";
- Next = "T2Shaman";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1Warlock"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t1s8#", "=ec1=#m30#"};
- { 2, 16808, "", "=q4=Felheart Horns", "=ds="..BabbleBoss["Garr"], "", "10.62%"};
- { 3, 16807, "", "=q4=Felheart Shoulder Pads", "=ds="..BabbleBoss["Baron Geddon"], "", "19.78%"};
- { 4, 16809, "", "=q4=Felheart Robes", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.66%"};
- { 5, 16804, "", "=q4=Felheart Bracers", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 6, 16805, "", "=q4=Felheart Gloves", "=ds="..BabbleBoss["Lucifron"], "", "14.89%"};
- { 7, 16806, "", "=q4=Felheart Belt", "=ds="..AL["Trash Mobs"], "", "0.19%"};
- { 8, 16810, "", "=q4=Felheart Pants", "=ds="..BabbleBoss["Magmadar"], "", "13.75%"};
- { 9, 16803, "", "=q4=Felheart Slippers", "=ds="..BabbleBoss["Shazzrah"], "", "15.28%"};
- Prev = "T0Warlock";
- Next = "T2Warlock";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1Warrior"] = {
- { 1, 0, "INV_Shield_05", "=q6=#t1s9#", "=ec1=#m30#"};
- { 2, 16866, "", "=q4=Helm of Might", "=ds="..BabbleBoss["Garr"], "", "11.39%"};
- { 3, 16868, "", "=q4=Pauldrons of Might", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "21.14%"};
- { 4, 16865, "", "=q4=Breastplate of Might", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.28%"};
- { 5, 16861, "", "=q4=Bracers of Might", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 6, 16863, "", "=q4=Gauntlets of Might", "=ds="..BabbleBoss["Lucifron"], "", "16.40%"};
- { 7, 16864, "", "=q4=Belt of Might", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 8, 16867, "", "=q4=Legplates of Might", "=ds="..BabbleBoss["Magmadar"], "", "13.97%"};
- { 9, 16862, "", "=q4=Sabatons of Might", "=ds="..BabbleBoss["Gehennas"], "", "14.48%"};
- Prev = "T0Warrior";
- Next = "T2Warrior";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1DPSWarrior"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t1s10#", "=ec1=#m30#"};
- { 2, 10480, "", "=q4=Faceguard of Might", "=ds="..BabbleBoss["Garr"], ""};
- { 3, 10481, "", "=q4=Shoulderpads of Might", "=ds="..BabbleBoss["Sulfuron Harbinger"], ""};
- { 4, 10482, "", "=q4=Chesttplate of Might", "=ds="..BabbleBoss["Golemagg the Incinerator"], ""};
- { 5, 10483, "", "=q4=Wristguards of Might", "=ds="..AL["Trash Mobs"], ""};
- { 6, 10484, "", "=q4=Handguards of Might", "=ds="..BabbleBoss["Lucifron"], ""};
- { 7, 10485, "", "=q4=Girdle of Might", "=ds="..AL["Trash Mobs"], ""};
- { 8, 10486, "", "=q4=Legguards of Might", "=ds="..BabbleBoss["Magmadar"], ""};
- { 9, 10487, "", "=q4=Stompers of Might", "=ds="..BabbleBoss["Gehennas"], ""};
- Next = "T2DPSWarrior";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
- -- T1 Token Items
- AtlasLoot_Data["T1Bracers"] = {
- { 1, 16830, "", "=q4=Cenarion Bracers", "=ds=#c1#", "", ""};
- { 2, 16850, "", "=q4=Giantstalker's Bracers", "=ds=#c2#", "", ""};
- { 3, 16799, "", "=q4=Arcanist Bindings", "=ds=#c3#", "", ""};
- { 4, 16857, "", "=q4=Lawbringer Bracers", "=ds=#c4#", "", ""};
- { 5, 16819, "", "=q4=Vambraces of Prophecy", "=ds=#c5#", "", ""};
- { 6, 16825, "", "=q4=Nightslayer Bracelets", "=ds=#c6#", "", ""};
- { 7, 16840, "", "=q4=Earthfury Bracers", "=ds=#c7#", "", ""};
- { 8, 16804, "", "=q4=Felheart Bracers", "=ds=#c8#", "", ""};
- { 9, 16861, "", "=q4=Bracers of Might", "=ds=#c9#", "", ""};
- { 10, 10483, "", "=q4=Wristguards of Might", "=ds=#c9#", "", ""};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
-
- };
-
- AtlasLoot_Data["T1Belts"] = {
- { 1, 16828, "", "=q4=Cenarion Belt", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 2, 16851, "", "=q4=Giantstalker's Belt", "=ds="..AL["Trash Mobs"], "", "0.17%"};
- { 3, 16802, "", "=q4=Arcanist Belt", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 4, 16858, "", "=q4=Lawbringer Belt", "=ds="..AL["Trash Mobs"], "", "0.10%"};
- { 5, 16817, "", "=q4=Girdle of Prophecy", "=ds="..AL["Trash Mobs"], "", "0.18%"};
- { 6, 16827, "", "=q4=Nightslayer Belt", "=ds="..AL["Trash Mobs"], "", "0.15%"};
- { 7, 16838, "", "=q4=Earthfury Belt", "=ds="..AL["Trash Mobs"], "", "0.07%"};
- { 8, 16806, "", "=q4=Felheart Belt", "=ds="..AL["Trash Mobs"], "", "0.19%"};
- { 9, 16864, "", "=q4=Belt of Might", "=ds="..AL["Trash Mobs"], "", "0.16%"};
- { 10, 10485, "", "=q4=Girdle of Might", "=ds="..AL["Trash Mobs"], ""};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1Gloves"] = {
- { 1, 16831, "", "=q4=Cenarion Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "19.53%"};
- { 2, 16852, "", "=q4=Giantstalker's Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "18.58%"};
- { 3, 16801, "", "=q4=Arcanist Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "19.59%"};
- { 4, 16860, "", "=q4=Lawbringer Gauntlets", "=ds="..BabbleBoss["Gehennas"], "", "11.77%"};
- { 5, 16812, "", "=q4=Gloves of Prophecy", "=ds="..BabbleBoss["Gehennas"], "", "18.65%"};
- { 6, 16826, "", "=q4=Nightslayer Gloves", "=ds="..BabbleBoss["Gehennas"], "", "19.47%"};
- { 7, 16839, "", "=q4=Earthfury Gauntlets", "=ds="..BabbleBoss["Gehennas"], "", "7.38%"};
- { 8, 16805, "", "=q4=Felheart Gloves", "=ds="..BabbleBoss["Lucifron"], "", "14.89%"};
- { 9, 16863, "", "=q4=Gauntlets of Might", "=ds="..BabbleBoss["Lucifron"], "", "16.40%"};
- { 10, 10484, "", "=q4=Handguards of Might", "=ds="..BabbleBoss["Lucifron"], ""};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
-
- AtlasLoot_Data["T1Shoulders"] = {
- { 1, 16836, "", "=q4=Cenarion Spaulders", "=ds="..BabbleBoss["Baron Geddon"], "", "19.52%"};
- { 2, 16848, "", "=q4=Giantstalker's Epaulets", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "19.64%"};
- { 3, 16797, "", "=q4=Arcanist Mantle", "=ds="..BabbleBoss["Baron Geddon"], "", "19.92%"};
- { 4, 16856, "", "=q4=Lawbringer Spaulders", "=ds="..BabbleBoss["Baron Geddon"], "", "12.62%"};
- { 5, 16816, "", "=q4=Mantle of Prophecy", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "21.06%"};
- { 6, 16823, "", "=q4=Nightslayer Shoulder Pads", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "20.66%"};
- { 7, 16844, "", "=q4=Earthfury Epaulets", "=ds="..BabbleBoss["Baron Geddon"], "", "7.29%"};
- { 8, 16807, "", "=q4=Felheart Shoulder Pads", "=ds="..BabbleBoss["Baron Geddon"], "", "19.78%"};
- { 9, 16868, "", "=q4=Pauldrons of Might", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "21.14%"};
- { 10, 10481, "", "=q4=Shoulderpads of Might", "=ds="..BabbleBoss["Sulfuron Harbinger"], ""};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1Boots"] = {
- { 1, 16829, "", "=q4=Cenarion Boots", "=ds="..BabbleBoss["Lucifron"], "", "10.72%"};
- { 2, 16849, "", "=q4=Giantstalker's Boots", "=ds="..BabbleBoss["Gehennas"], "", "14.54%"};
- { 3, 16800, "", "=q4=Arcanist Boots", "=ds="..BabbleBoss["Lucifron"], "", "12.06%"};
- { 4, 16859, "", "=q4=Lawbringer Boots", "=ds="..BabbleBoss["Lucifron"], "", "7.20%"};
- { 5, 16811, "", "=q4=Boots of Prophecy", "=ds="..BabbleBoss["Shazzrah"], "", "14.90%"};
- { 6, 16824, "", "=q4=Nightslayer Boots", "=ds="..BabbleBoss["Shazzrah"], "", "15.58%"};
- { 7, 16837, "", "=q4=Earthfury Boots", "=ds="..BabbleBoss["Lucifron"], "", "4.16%"};
- { 8, 16803, "", "=q4=Felheart Slippers", "=ds="..BabbleBoss["Shazzrah"], "", "15.28%"};
- { 9, 16862, "", "=q4=Sabatons of Might", "=ds="..BabbleBoss["Gehennas"], "", "14.48%"};
- { 10, 10487, "", "=q4=Stompers of Might", "=ds="..BabbleBoss["Gehennas"], ""};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
-
- };
-
- AtlasLoot_Data["T1Legs"] = {
- { 1, 16835, "", "=q4=Cenarion Leggings", "=ds="..BabbleBoss["Magmadar"], "", "12.90%"};
- { 2, 16847, "", "=q4=Giantstalker's Leggings", "=ds="..BabbleBoss["Magmadar"], "", "13.28%"};
- { 3, 16796, "", "=q4=Arcanist Leggings", "=ds="..BabbleBoss["Magmadar"], "", "14.57%"};
- { 4, 16855, "", "=q4=Lawbringer Legplates", "=ds="..BabbleBoss["Magmadar"], "", "8.54%"};
- { 5, 16814, "", "=q4=Pants of Prophecy", "=ds="..BabbleBoss["Magmadar"], "", "14.33%"};
- { 6, 16822, "", "=q4=Nightslayer Pants", "=ds="..BabbleBoss["Magmadar"], "", "13.83%"};
- { 7, 16843, "", "=q4=Earthfury Legguards", "=ds="..BabbleBoss["Magmadar"], "", "4.73%"};
- { 8, 16810, "", "=q4=Felheart Pants", "=ds="..BabbleBoss["Magmadar"], "", "13.75%"};
- { 9, 16867, "", "=q4=Legplates of Might", "=ds="..BabbleBoss["Magmadar"], "", "13.97%"};
- { 10, 10486, "", "=q4=Legguards of Might", "=ds="..BabbleBoss["Magmadar"], ""};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1Helms"] = {
- { 1, 16834, "", "=q4=Cenarion Helm", "=ds="..BabbleBoss["Garr"], "", ""};
- { 2, 16846, "", "=q4=Giantstalker's Helmet", "=ds="..BabbleBoss["Garr"], "", ""};
- { 3, 16795, "", "=q4=Arcanist Crown", "=ds="..BabbleBoss["Garr"], "", ""};
- { 4, 16854, "", "=q4=Lawbringer Helm", "=ds="..BabbleBoss["Garr"], "", ""};
- { 5, 16813, "", "=q4=Circlet of Prophecy", "=ds="..BabbleBoss["Garr"], "", ""};
- { 6, 16821, "", "=q4=Nightslayer Cover", "=ds="..BabbleBoss["Garr"], "", ""};
- { 7, 16842, "", "=q4=Earthfury Helmet", "=ds="..BabbleBoss["Garr"], "", ""};
- { 8, 16808, "", "=q4=Felheart Horns", "=ds="..BabbleBoss["Garr"], "", ""};
- { 9, 16866, "", "=q4=Helm of Might", "=ds="..BabbleBoss["Garr"], "", ""};
- { 10, 10480, "", "=q4=Faceguard of Might", "=ds="..BabbleBoss["Garr"], ""};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T1Chests"] = {
- { 1, 16833, "", "=q4=Cenarion Vestments", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.21%"};
- { 2, 16845, "", "=q4=Giantstalker's Breastplate", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.83%"};
- { 3, 16798, "", "=q4=Arcanist Robes", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "16.51%"};
- { 4, 16853, "", "=q4=Lawbringer Chestguard", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "9.53%"};
- { 5, 16815, "", "=q4=Robes of Prophecy", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.65%"};
- { 6, 16820, "", "=q4=Nightslayer Chestpiece", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "16.76%"};
- { 7, 16841, "", "=q4=Earthfury Vestments", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "6.08%"};
- { 8, 16809, "", "=q4=Felheart Robes", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.66%"};
- { 9, 16865, "", "=q4=Breastplate of Might", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.28%"};
- { 10, 10482, "", "=q4=Chesttplate of Might", "=ds="..BabbleBoss["Golemagg the Incinerator"], ""};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
+ AtlasLoot_Data["T1"] = {
+ Name = "Teir 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"];
+ { 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"];
+ { 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["T2Druid"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#t2s1#", "=ec1=#m31#"};
- { 2, 16900, "", "=q4=Stormrage Cover", "=ds="..BabbleBoss["Nefarian"], "", "13.08%"};
- { 3, 16902, "", "=q4=Stormrage Pauldrons", "=ds="..BabbleBoss["Chromaggus"], "", "14.63%"};
- { 4, 16897, "", "=q4=Stormrage Chestguard", "=ds="..BabbleBoss["Nefarian"], "", "11.89%"};
- { 5, 16904, "", "=q4=Stormrage Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "17.38%"};
- { 6, 16899, "", "=q4=Stormrage Handguards", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.34%"};
- { 7, 16903, "", "=q4=Stormrage Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "16.90%"};
- { 8, 16901, "", "=q4=Stormrage Legguards", "=ds="..BabbleBoss["Ragnaros"], "", "15.49%"};
- { 9, 16898, "", "=q4=Stormrage Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "13.79%"};
- Prev = "T1Druid";
- Next = "T3Druid";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2Hunter"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t2s2#", "=ec1=#m31#"};
- { 2, 16939, "", "=q4=Dragonstalker's Helm", "=ds="..BabbleBoss["Nefarian"], "", "13.91%"};
- { 3, 16937, "", "=q4=Dragonstalker's Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "16.20%"};
- { 4, 16942, "", "=q4=Dragonstalker's Breastplate", "=ds="..BabbleBoss["Nefarian"], "", "13.30%"};
- { 5, 16935, "", "=q4=Dragonstalker's Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "19.13%"};
- { 6, 16940, "", "=q4=Dragonstalker's Gauntlets", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.13%"};
- { 7, 16936, "", "=q4=Dragonstalker's Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.17%"};
- { 8, 16938, "", "=q4=Dragonstalker's Legguards", "=ds="..BabbleBoss["Ragnaros"], "", "16.02%"};
- { 9, 16941, "", "=q4=Dragonstalker's Greaves", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "17.78%"};
- Prev = "T1Hunter";
- Next = "T3Hunter";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2Mage"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#t2s3#", "=ec1=#m31#"};
- { 2, 16914, "", "=q4=Netherwind Crown", "=ds="..BabbleBoss["Nefarian"], "", "14.09%"};
- { 3, 16917, "", "=q4=Netherwind Mantle", "=ds="..BabbleBoss["Chromaggus"], "", "18.09%"};
- { 4, 16916, "", "=q4=Netherwind Robes", "=ds="..BabbleBoss["Nefarian"], "", "14.03%"};
- { 5, 16918, "", "=q4=Netherwind Bindings", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.41%"};
- { 6, 16913, "", "=q4=Netherwind Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "7.37%"};
- { 7, 16818, "", "=q4=Netherwind Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "19.94%"};
- { 8, 16915, "", "=q4=Netherwind Pants", "=ds="..BabbleBoss["Ragnaros"], "", "17.37%"};
- { 9, 16912, "", "=q4=Netherwind Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "17.17%"};
- Prev = "T1Mage";
- Next = "T3Mage";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2Paladin"] = {
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t2s4#", "=ec1=#m31#"};
- { 2, 16955, "", "=q4=Judgement Crown", "=ds="..BabbleBoss["Nefarian"], "", "8.64%"};
- { 3, 16953, "", "=q4=Judgement Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "10.97%"};
- { 4, 16958, "", "=q4=Judgement Breastplate", "=ds="..BabbleBoss["Nefarian"], "", "9.24%"};
- { 5, 16951, "", "=q4=Judgement Bindings", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "13.61%"};
- { 6, 16956, "", "=q4=Judgement Gauntlets", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "3.58%"};
- { 7, 16952, "", "=q4=Judgement Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "12.23%"};
- { 8, 16954, "", "=q4=Judgement Legplates", "=ds="..BabbleBoss["Ragnaros"], "", "10.81%"};
- { 9, 16957, "", "=q4=Judgement Sabatons", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "11.28%"};
- Prev = "T1Paladin";
- Next = "T3Paladin";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2Priest"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t2s5#", "=ec1=#m31#"};
- { 2, 16921, "", "=q4=Halo of Transcendence", "=ds="..BabbleBoss["Nefarian"], "", "13.39%"};
- { 3, 16924, "", "=q4=Pauldrons of Transcendence", "=ds="..BabbleBoss["Chromaggus"], "", "17.83%"};
- { 4, 16923, "", "=q4=Robes of Transcendence", "=ds="..BabbleBoss["Nefarian"], "", "14.83%"};
- { 5, 16926, "", "=q4=Bindings of Transcendence", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.37%"};
- { 6, 16920, "", "=q4=Handguards of Transcendence", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.01%"};
- { 7, 16925, "", "=q4=Belt of Transcendence", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "18.76%"};
- { 8, 16922, "", "=q4=Leggings of Transcendence", "=ds="..BabbleBoss["Ragnaros"], "", "17.30%"};
- { 9, 16919, "", "=q4=Boots of Transcendence", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "14.61%"};
- Prev = "T1Priest";
- Next = "T3Priest";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2Rogue"] = {
- { 1, 0, "Ability_BackStab", "=q6=#t2s6#", "=ec1=#m31#"};
- { 2, 16908, "", "=q4=Bloodfang Hood", "=ds="..BabbleBoss["Nefarian"], "", "13.21%"};
- { 3, 16832, "", "=q4=Bloodfang Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "17.03%"};
- { 4, 16905, "", "=q4=Bloodfang Chestpiece", "=ds="..BabbleBoss["Nefarian"], "", "14.21%"};
- { 5, 16911, "", "=q4=Bloodfang Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.69%"};
- { 6, 16907, "", "=q4=Bloodfang Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.84%"};
- { 7, 16910, "", "=q4=Bloodfang Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "19.69%"};
- { 8, 16909, "", "=q4=Bloodfang Pants", "=ds="..BabbleBoss["Ragnaros"], "", "17.18%"};
- { 9, 16906, "", "=q4=Bloodfang Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "15.66%"};
- Prev = "T1Rogue";
- Next = "T3Rogue";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2Shaman"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t2s7#", "=ec1=#m31#"};
- { 2, 16947, "", "=q4=Helmet of Ten Storms", "=ds="..BabbleBoss["Nefarian"], "", "4.86%"};
- { 3, 16945, "", "=q4=Epaulets of Ten Storms", "=ds="..BabbleBoss["Chromaggus"], "", "6.73%"};
- { 4, 16950, "", "=q4=Breastplate of Ten Storms", "=ds="..BabbleBoss["Nefarian"], "", "5.65%"};
- { 5, 16943, "", "=q4=Bracers of Ten Storms", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "7.54%"};
- { 6, 16948, "", "=q4=Gauntlets of Ten Storms", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "2.13%"};
- { 7, 16944, "", "=q4=Belt of Ten Storms", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "6.93%"};
- { 8, 16946, "", "=q4=Legplates of Ten Storms", "=ds="..BabbleBoss["Ragnaros"], "", "5.97%"};
- { 9, 16949, "", "=q4=Greaves of Ten Storms", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "5.57%"};
- Prev = "T1Shaman";
- Next = "T3Shaman";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2Warlock"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t2s8#", "=ec1=#m31#"};
- { 2, 16929, "", "=q4=Nemesis Skullcap", "=ds="..BabbleBoss["Nefarian"], "", "13.54%"};
- { 3, 16932, "", "=q4=Nemesis Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "16.26%"};
- { 4, 16931, "", "=q4=Nemesis Robes", "=ds="..BabbleBoss["Nefarian"], "", "12.46%"};
- { 5, 16934, "", "=q4=Nemesis Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "18.11%"};
- { 6, 16928, "", "=q4=Nemesis Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.28%"};
- { 7, 16933, "", "=q4=Nemesis Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "18.42%"};
- { 8, 16930, "", "=q4=Nemesis Leggings", "=ds="..BabbleBoss["Ragnaros"], "", "16.87%"};
- { 9, 16927, "", "=q4=Nemesis Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "15.32%"};
- Prev = "T1Warlock";
- Next = "T3Warlock";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2Warrior"] = {
- { 1, 0, "INV_Shield_05", "=q6=#t2s9#", "=ec1=#m31#"};
- { 2, 16963, "", "=q4=Helm of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "13.65%"};
- { 3, 16961, "", "=q4=Pauldrons of Wrath", "=ds="..BabbleBoss["Chromaggus"], "", "16.83%"};
- { 4, 16966, "", "=q4=Breastplate of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "15.06%"};
- { 5, 16959, "", "=q4=Bracelets of Wrath", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.29%"};
- { 6, 16964, "", "=q4=Gauntlets of Wrath", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.93%"};
- { 7, 16960, "", "=q4=Waistband of Wrath", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.03%"};
- { 8, 16962, "", "=q4=Legplates of Wrath", "=ds="..BabbleBoss["Ragnaros"], "", "17.23%"};
- { 9, 16965, "", "=q4=Sabatons of Wrath", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "16.84%"};
- Prev = "T1Warrior";
- Next = "T3Warrior";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2DPSWarrior"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t2s10#", "=ec1=#m31#"};
- { 2, 10904, "", "=q4=Faceguard of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "13.65%"};
- { 3, 10902, "", "=q4=Shoulderpads of Wrath", "=ds="..BabbleBoss["Chromaggus"], "", "16.83%"};
- { 4, 10907, "", "=q4=Chestplate of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "15.06%"};
- { 5, 10900, "", "=q4=Wristguards of Wrath", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.29%"};
- { 6, 10905, "", "=q4=Grippers of Wrath", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.93%"};
- { 7, 10901, "", "=q4=Belt of Wrath", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.03%"};
- { 8, 10903, "", "=q4=Legguards of Wrath", "=ds="..BabbleBoss["Ragnaros"], "", "17.23%"};
- { 9, 10906, "", "=q4=Stompers of Wrath", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "16.84%"};
- Next = "T3DPSWarrior";
- Back = "T1SET";
- Type = "ClassicRaid";
- };
-
- -- T2 Token Items
- AtlasLoot_Data["T2Bracers"] = {
- { 1, 16904, "", "=q4=Stormrage Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "17.38%"};
- { 2, 16935, "", "=q4=Dragonstalker's Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "19.13%"};
- { 3, 16918, "", "=q4=Netherwind Bindings", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.41%"};
- { 4, 16951, "", "=q4=Judgement Bindings", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "13.61%"};
- { 5, 16926, "", "=q4=Bindings of Transcendence", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.37%"};
- { 6, 16911, "", "=q4=Bloodfang Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.69%"};
- { 7, 16943, "", "=q4=Bracers of Ten Storms", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "7.54%"};
- { 8, 16934, "", "=q4=Nemesis Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "18.11%"};
- { 9, 16959, "", "=q4=Bracelets of Wrath", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.29%"};
- { 10, 10900, "", "=q4=Wristguards of Wrath", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.29%"};
- Back = AtlasLoot_Lastboss;
+ AtlasLoot_Data["T2"] = {
+ Name = "Teir 2";
Type = "ClassicRaid";
-
- };
-
- AtlasLoot_Data["T2Belts"] = {
- { 1, 16903, "", "=q4=Stormrage Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "16.90%"};
- { 2, 16936, "", "=q4=Dragonstalker's Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.17%"};
- { 3, 16818, "", "=q4=Netherwind Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "19.94%"};
- { 4, 16952, "", "=q4=Judgement Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "12.23%"};
- { 5, 16925, "", "=q4=Belt of Transcendence", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "18.76%"};
- { 6, 16910, "", "=q4=Bloodfang Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "19.69%"};
- { 7, 16944, "", "=q4=Belt of Ten Storms", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "6.93%"};
- { 8, 16933, "", "=q4=Nemesis Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "18.42%"};
- { 9, 16960, "", "=q4=Waistband of Wrath", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.03%"};
- { 10, 10901, "", "=q4=Belt of Wrath", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.03%"};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2Gloves"] = {
- { 1, 16899, "", "=q4=Stormrage Handguards", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.34%"};
- { 2, 16940, "", "=q4=Dragonstalker's Gauntlets", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.13%"};
- { 3, 16913, "", "=q4=Netherwind Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "7.37%"};
- { 4, 16956, "", "=q4=Judgement Gauntlets", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "3.58%"};
- { 5, 16920, "", "=q4=Handguards of Transcendence", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.01%"};
- { 6, 16907, "", "=q4=Bloodfang Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.84%"};
- { 7, 16948, "", "=q4=Gauntlets of Ten Storms", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "2.13%"};
- { 8, 16928, "", "=q4=Nemesis Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.28%"};
- { 9, 16964, "", "=q4=Gauntlets of Wrath", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.93%"};
- { 10, 10905, "", "=q4=Grippers of Wrath", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.93%"};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
-
- AtlasLoot_Data["T2Shoulders"] = {
- { 1, 16902, "", "=q4=Stormrage Pauldrons", "=ds="..BabbleBoss["Chromaggus"], "", "14.63%"};
- { 2, 16937, "", "=q4=Dragonstalker's Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "16.20%"};
- { 3, 16917, "", "=q4=Netherwind Mantle", "=ds="..BabbleBoss["Chromaggus"], "", "18.09%"};
- { 4, 16953, "", "=q4=Judgement Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "10.97%"};
- { 5, 16924, "", "=q4=Pauldrons of Transcendence", "=ds="..BabbleBoss["Chromaggus"], "", "17.83%"};
- { 6, 16832, "", "=q4=Bloodfang Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "17.03%"};
- { 7, 16945, "", "=q4=Epaulets of Ten Storms", "=ds="..BabbleBoss["Chromaggus"], "", "6.73%"};
- { 8, 16932, "", "=q4=Nemesis Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "16.26%"};
- { 9, 16961, "", "=q4=Pauldrons of Wrath", "=ds="..BabbleBoss["Chromaggus"], "", "16.83%"};
- { 10, 10902, "", "=q4=Shoulderpads of Wrath", "=ds="..BabbleBoss["Chromaggus"], "", "16.83%"};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2Boots"] = {
- { 1, 16898, "", "=q4=Stormrage Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "13.79%"};
- { 2, 16941, "", "=q4=Dragonstalker's Greaves", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "17.78%"};
- { 3, 16912, "", "=q4=Netherwind Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "17.17%"};
- { 4, 16957, "", "=q4=Judgement Sabatons", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "11.28%"};
- { 5, 16919, "", "=q4=Boots of Transcendence", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "14.61%"};
- { 6, 16906, "", "=q4=Bloodfang Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "15.66%"};
- { 7, 16949, "", "=q4=Greaves of Ten Storms", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "5.57%"};
- { 8, 16927, "", "=q4=Nemesis Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "15.32%"};
- { 9, 16965, "", "=q4=Sabatons of Wrath", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "16.84%"};
- { 10, 10906, "", "=q4=Stompers of Wrath", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "16.84%"};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
-
- };
-
- AtlasLoot_Data["T2Legs"] = {
- { 1, 16901, "", "=q4=Stormrage Legguards", "=ds="..BabbleBoss["Ragnaros"], "", "15.49%"};
- { 2, 16938, "", "=q4=Dragonstalker's Legguards", "=ds="..BabbleBoss["Ragnaros"], "", "16.02%"};
- { 3, 16915, "", "=q4=Netherwind Pants", "=ds="..BabbleBoss["Ragnaros"], "", "17.37%"};
- { 4, 16954, "", "=q4=Judgement Legplates", "=ds="..BabbleBoss["Ragnaros"], "", "10.81%"};
- { 5, 16922, "", "=q4=Leggings of Transcendence", "=ds="..BabbleBoss["Ragnaros"], "", "17.30%"};
- { 6, 16909, "", "=q4=Bloodfang Pants", "=ds="..BabbleBoss["Ragnaros"], "", "17.18%"};
- { 7, 16946, "", "=q4=Legplates of Ten Storms", "=ds="..BabbleBoss["Ragnaros"], "", "5.97%"};
- { 8, 16930, "", "=q4=Nemesis Leggings", "=ds="..BabbleBoss["Ragnaros"], "", "16.87%"};
- { 9, 16962, "", "=q4=Legplates of Wrath", "=ds="..BabbleBoss["Ragnaros"], "", "17.23%"};
- { 10, 10903, "", "=q4=Legguards of Wrath", "=ds="..BabbleBoss["Ragnaros"], "", "17.23%"};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2Helms"] = {
+ {
+ Name = AL["Druid"];
{ 1, 16900, "", "=q4=Stormrage Cover", "=ds="..BabbleBoss["Nefarian"], "", "13.08%"};
- { 2, 16939, "", "=q4=Dragonstalker's Helm", "=ds="..BabbleBoss["Nefarian"], "", "13.91%"};
- { 3, 16914, "", "=q4=Netherwind Crown", "=ds="..BabbleBoss["Nefarian"], "", "14.09%"};
- { 4, 16955, "", "=q4=Judgement Crown", "=ds="..BabbleBoss["Nefarian"], "", "8.64%"};
- { 5, 16921, "", "=q4=Halo of Transcendence", "=ds="..BabbleBoss["Nefarian"], "", "13.39%"};
- { 6, 16908, "", "=q4=Bloodfang Hood", "=ds="..BabbleBoss["Nefarian"], "", "13.21%"};
- { 7, 16947, "", "=q4=Helmet of Ten Storms", "=ds="..BabbleBoss["Nefarian"], "", "4.86%"};
- { 8, 16929, "", "=q4=Nemesis Skullcap", "=ds="..BabbleBoss["Nefarian"], "", "13.54%"};
- { 9, 16963, "", "=q4=Helm of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "13.65%"};
- { 10, 10904, "", "=q4=Faceguard of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "13.65%"};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
+ { 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%"};
};
-
- AtlasLoot_Data["T2Chests"] = {
- { 1, 16897, "", "=q4=Stormrage Chestguard", "=ds="..BabbleBoss["Nefarian"], "", "11.89%"}; { 19, 16942, "", "=q4=Dragonstalker's Breastplate", "=ds="..BabbleBoss["Nefarian"], "", "13.30%"};
- { 2, 16942, "", "=q4=Dragonstalker's Breastplate", "=ds="..BabbleBoss["Nefarian"], "", "13.30%"};
+ {
+ 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, 16958, "", "=q4=Judgement Breastplate", "=ds="..BabbleBoss["Nefarian"], "", "9.24%"};
- { 5, 16923, "", "=q4=Robes of Transcendence", "=ds="..BabbleBoss["Nefarian"], "", "14.83%"};
- { 6, 16905, "", "=q4=Bloodfang Chestpiece", "=ds="..BabbleBoss["Nefarian"], "", "14.21%"};
- { 7, 16950, "", "=q4=Breastplate of Ten Storms", "=ds="..BabbleBoss["Nefarian"], "", "5.65%"};
- { 8, 16931, "", "=q4=Nemesis Robes", "=ds="..BabbleBoss["Nefarian"], "", "12.46%"};
- { 9, 16966, "", "=q4=Breastplate of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "15.06%"};
- { 10, 10907, "", "=q4=Chestplate of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "15.06%"};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
+ { 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"];
+ { 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"];
+ { 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["T3Druid"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#t3s1#", "=ec1=#m35#"};
- { 2, 22490, "", "=q4=Dreamwalker Headpiece", "=ds="};
- { 3, 22491, "", "=q4=Dreamwalker Spaulders", "=ds="};
- { 4, 22488, "", "=q4=Dreamwalker Tunic", "=ds="};
- { 5, 22495, "", "=q4=Dreamwalker Wristguards", "=ds="};
- { 6, 22493, "", "=q4=Dreamwalker Handguards", "=ds="};
- { 7, 22494, "", "=q4=Dreamwalker Girdle", "=ds="};
- { 8, 22489, "", "=q4=Dreamwalker Legguards", "=ds="};
- { 9, 22492, "", "=q4=Dreamwalker Boots", "=ds="};
- { 10, 23064, "", "=q4=Ring of the Dreamwalker", "=ds="};
- Prev = "T2Druid";
- Back = "T3SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Hunter"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t3s2#", "=ec1=#m35#"};
- { 2, 22438, "", "=q4=Cryptstalker Headpiece", "=ds="};
- { 3, 22439, "", "=q4=Cryptstalker Spaulders", "=ds="};
- { 4, 22436, "", "=q4=Cryptstalker Tunic", "=ds="};
- { 5, 22443, "", "=q4=Cryptstalker Wristguards", "=ds="};
- { 6, 22441, "", "=q4=Cryptstalker Handguards", "=ds="};
- { 7, 22442, "", "=q4=Cryptstalker Girdle", "=ds="};
- { 8, 22437, "", "=q4=Cryptstalker Legguards", "=ds="};
- { 9, 22440, "", "=q4=Cryptstalker Boots", "=ds="};
- { 10, 23067, "", "=q4=Ring of the Cryptstalker", "=ds="};
- Prev = "T2Hunter";
- Back = "T3SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Mage"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#t3s3#", "=ec1=#m35#"};
- { 2, 22498, "", "=q4=Frostfire Circlet", "=ds="};
- { 3, 22499, "", "=q4=Frostfire Shoulderpads", "=ds="};
- { 4, 22496, "", "=q4=Frostfire Robe", "=ds="};
- { 5, 22503, "", "=q4=Frostfire Bindings", "=ds="};
- { 6, 22501, "", "=q4=Frostfire Gloves", "=ds="};
- { 7, 22502, "", "=q4=Frostfire Belt", "=ds="};
- { 8, 22497, "", "=q4=Frostfire Leggings", "=ds="};
- { 9, 22500, "", "=q4=Frostfire Sandals", "=ds="};
- { 10, 23062, "", "=q4=Frostfire Ring", "=ds="};
- Prev = "T2Mage";
- Back = "T3SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Paladin"] = {
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t3s4#", "=ec1=#m35#"};
- { 2, 22428, "", "=q4=Redemption Headpiece", "=ds="};
- { 3, 22429, "", "=q4=Redemption Spaulders", "=ds="};
- { 4, 22425, "", "=q4=Redemption Tunic", "=ds="};
- { 5, 22424, "", "=q4=Redemption Wristguards", "=ds="};
- { 6, 22426, "", "=q4=Redemption Handguards", "=ds="};
- { 7, 22431, "", "=q4=Redemption Girdle", "=ds="};
- { 8, 22427, "", "=q4=Redemption Legguards", "=ds="};
- { 9, 22430, "", "=q4=Redemption Boots", "=ds="};
- { 10, 23066, "", "=q4=Ring of Redemption", "=ds="};
- Prev = "T2Paladin";
- Back = "T3SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Priest"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t3s5#", "=ec1=#m35#"};
- { 2, 22514, "", "=q4=Circlet of Faith", "=ds="};
- { 3, 22515, "", "=q4=Shoulderpads of Faith", "=ds="};
- { 4, 22512, "", "=q4=Robe of Faith", "=ds="};
- { 5, 22519, "", "=q4=Bindings of Faith", "=ds="};
- { 6, 22517, "", "=q4=Gloves of Faith", "=ds="};
- { 7, 22518, "", "=q4=Belt of Faith", "=ds="};
- { 8, 22513, "", "=q4=Leggings of Faith", "=ds="};
- { 9, 22516, "", "=q4=Sandals of Faith", "=ds="};
- { 10, 23061, "", "=q4=Ring of Faith", "=ds="};
- Prev = "T2Priest";
- Back = "T3SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Rogue"] = {
- { 1, 0, "Ability_BackStab", "=q6=#t3s6#", "=ec1=#m35#"};
- { 2, 22478, "", "=q4=Bonescythe Helmet", "=ds="};
- { 3, 22479, "", "=q4=Bonescythe Pauldrons", "=ds="};
- { 4, 22476, "", "=q4=Bonescythe Breastplate", "=ds="};
- { 5, 22483, "", "=q4=Bonescythe Bracers", "=ds="};
- { 6, 22481, "", "=q4=Bonescythe Gauntlets", "=ds="};
- { 7, 22482, "", "=q4=Bonescythe Waistguard", "=ds="};
- { 8, 22477, "", "=q4=Bonescythe Legplates", "=ds="};
- { 9, 22480, "", "=q4=Bonescythe Sabatons", "=ds="};
- { 10, 23060, "", "=q4=Bonescythe Ring", "=ds="};
- Prev = "T2Rogue";
- Back = "T3SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Shaman"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t3s7#", "=ec1=#m35#"};
- { 2, 22466, "", "=q4=Earthshatter Headpiece", "=ds="};
- { 3, 22467, "", "=q4=Earthshatter Spaulders", "=ds="};
- { 4, 22464, "", "=q4=Earthshatter Tunic", "=ds="};
- { 5, 22471, "", "=q4=Earthshatter Wristguards", "=ds="};
- { 6, 22469, "", "=q4=Earthshatter Handguards", "=ds="};
- { 7, 22470, "", "=q4=Earthshatter Girdle", "=ds="};
- { 8, 22465, "", "=q4=Earthshatter Legguards", "=ds="};
- { 9, 22468, "", "=q4=Earthshatter Boots", "=ds="};
- { 10, 23065, "", "=q4=Ring of the Earthshatterer", "=ds="};
- Prev = "T2Shaman";
- Back = "T3SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Warlock"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t3s8#", "=ec1=#m35#"};
- { 2, 22506, "", "=q4=Plagueheart Circlet", "=ds="};
- { 3, 22507, "", "=q4=Plagueheart Shoulderpads", "=ds="};
- { 4, 22504, "", "=q4=Plagueheart Robe", "=ds="};
- { 5, 22511, "", "=q4=Plagueheart Bindings", "=ds="};
- { 6, 22509, "", "=q4=Plagueheart Gloves", "=ds="};
- { 7, 22510, "", "=q4=Plagueheart Belt", "=ds="};
- { 8, 22505, "", "=q4=Plagueheart Leggings", "=ds="};
- { 9, 22508, "", "=q4=Plagueheart Sandals", "=ds="};
- { 10, 23063, "", "=q4=Plagueheart Ring", "=ds="};
- Prev = "T2Warlock";
- Back = "T3SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Warrior"] = {
- { 1, 0, "INV_Shield_05", "=q6=#t3s9#", "=ec1=#m35#"};
- { 2, 22418, "", "=q4=Dreadnaught Helmet", "=ds="};
- { 3, 22419, "", "=q4=Dreadnaught Pauldrons", "=ds="};
- { 4, 22416, "", "=q4=Dreadnaught Breastplate", "=ds="};
- { 5, 22423, "", "=q4=Dreadnaught Bracers", "=ds="};
- { 6, 22421, "", "=q4=Dreadnaught Gauntlets", "=ds="};
- { 7, 22422, "", "=q4=Dreadnaught Waistguard", "=ds="};
- { 8, 22417, "", "=q4=Dreadnaught Legplates", "=ds="};
- { 9, 22420, "", "=q4=Dreadnaught Sabatons", "=ds="};
- { 10, 23059, "", "=q4=Ring of the Dreadnaught", "=ds="};
- Prev = "T2Warrior";
- Back = "T3SET";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3DPSWarrior"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t3s10#", "=ec1=#m35#"};
- { 2, 10490, "", "=q4=Dreadborne Helmet", "=ds="};
- { 3, 10491, "", "=q4=Dreadborne Pauldrons", "=ds="};
- { 4, 10488, "", "=q4=Dreadborne Breastplate", "=ds="};
- { 5, 10495, "", "=q4=Dreadborne Bracers", "=ds="};
- { 6, 10493, "", "=q4=Dreadborne Gauntlets", "=ds="};
- { 7, 10494, "", "=q4=Dreadborne Waistguard", "=ds="};
- { 8, 10489, "", "=q4=Dreadborne Legplates", "=ds="};
- { 9, 10492, "", "=q4=Dreadborne Sabatons", "=ds="};
- { 10, 10496, "", "=q4=Dreadborne Ring", "=ds="};
- Prev = "T2DPSWarrior";
- Back = "T3SET";
- Type = "ClassicRaid";
- };
-
- -- T3 Token Items
- AtlasLoot_Data["T3Bracers"] = {
- { 1, 22495, "", "=q4=Dreamwalker Wristguards", "=ds="};
- { 2, 22443, "", "=q4=Cryptstalker Wristguards", "=ds="};
- { 3, 22503, "", "=q4=Frostfire Bindings", "=ds="};
- { 4, 22424, "", "=q4=Redemption Wristguards", "=ds="};
- { 5, 22519, "", "=q4=Bindings of Faith", "=ds="};
- { 6, 22483, "", "=q4=Bonescythe Bracers", "=ds="};
- { 7, 22471, "", "=q4=Earthshatter Wristguards", "=ds="};
- { 8, 22511, "", "=q4=Plagueheart Bindings", "=ds="};
- { 9, 22423, "", "=q4=Dreadnaught Bracers", "=ds="};
- { 10, 10495, "", "=q4=Dreadborne Bracers", "=ds="};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Belts"] = {
- { 1, 22494, "", "=q4=Dreamwalker Girdle", "=ds="};
- { 2, 22442, "", "=q4=Cryptstalker Girdle", "=ds="};
- { 3, 22502, "", "=q4=Frostfire Belt", "=ds="};
- { 4, 22431, "", "=q4=Redemption Girdle", "=ds="};
- { 5, 22518, "", "=q4=Belt of Faith", "=ds="};
- { 6, 22482, "", "=q4=Bonescythe Waistguard", "=ds="};
- { 7, 22470, "", "=q4=Earthshatter Girdle", "=ds="};
- { 8, 22510, "", "=q4=Plagueheart Belt", "=ds="};
- { 9, 22422, "", "=q4=Dreadnaught Waistguard", "=ds="};
- { 10, 10494, "", "=q4=Dreadborne Waistguard", "=ds="};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Gloves"] = {
- { 1, 22493, "", "=q4=Dreamwalker Handguards", "=ds="};
- { 2, 22441, "", "=q4=Cryptstalker Handguards", "=ds="};
- { 3, 22501, "", "=q4=Frostfire Gloves", "=ds="};
- { 4, 22426, "", "=q4=Redemption Handguards", "=ds="};
- { 5, 22517, "", "=q4=Gloves of Faith", "=ds="};
- { 6, 22481, "", "=q4=Bonescythe Gauntlets", "=ds="};
- { 7, 22469, "", "=q4=Earthshatter Handguards", "=ds="};
- { 8, 22509, "", "=q4=Plagueheart Gloves", "=ds="};
- { 9, 22421, "", "=q4=Dreadnaught Gauntlets", "=ds="};
- { 10, 10493, "", "=q4=Dreadborne Gauntlets", "=ds="};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
-
- AtlasLoot_Data["T3Shoulders"] = {
- { 1, 22491, "", "=q4=Dreamwalker Spaulders", "=ds="};
- { 2, 22439, "", "=q4=Cryptstalker Spaulders", "=ds="};
- { 3, 22499, "", "=q4=Frostfire Shoulderpads", "=ds="};
- { 4, 22429, "", "=q4=Redemption Spaulders", "=ds="};
- { 5, 22515, "", "=q4=Shoulderpads of Faith", "=ds="};
- { 6, 22479, "", "=q4=Bonescythe Pauldrons", "=ds="};
- { 7, 22467, "", "=q4=Earthshatter Spaulders", "=ds="};
- { 8, 22507, "", "=q4=Plagueheart Shoulderpads", "=ds="};
- { 9, 22419, "", "=q4=Dreadnaught Pauldrons", "=ds="};
- { 10, 10491, "", "=q4=Dreadborne Pauldrons", "=ds="};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Boots"] = {
- { 1, 22492, "", "=q4=Dreamwalker Boots", "=ds="};
- { 2, 22440, "", "=q4=Cryptstalker Boots", "=ds="};
- { 3, 22500, "", "=q4=Frostfire Sandals", "=ds="};
- { 4, 22430, "", "=q4=Redemption Boots", "=ds="};
- { 5, 22516, "", "=q4=Sandals of Faith", "=ds="};
- { 6, 22480, "", "=q4=Bonescythe Sabatons", "=ds="};
- { 7, 22468, "", "=q4=Earthshatter Boots", "=ds="};
- { 8, 22508, "", "=q4=Plagueheart Sandals", "=ds="};
- { 9, 22420, "", "=q4=Dreadnaught Sabatons", "=ds="};
- { 10, 10492, "", "=q4=Dreadborne Sabatons", "=ds="};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
-
- };
-
- AtlasLoot_Data["T3Legs"] = {
- { 1, 22489, "", "=q4=Dreamwalker Legguards", "=ds="};
- { 2, 22437, "", "=q4=Cryptstalker Legguards", "=ds="};
- { 3, 22497, "", "=q4=Frostfire Leggings", "=ds="};
- { 4, 22427, "", "=q4=Redemption Legguards", "=ds="};
- { 5, 22513, "", "=q4=Leggings of Faith", "=ds="};
- { 6, 22477, "", "=q4=Bonescythe Legplates", "=ds="};
- { 7, 22465, "", "=q4=Earthshatter Legguards", "=ds="};
- { 8, 22505, "", "=q4=Plagueheart Leggings", "=ds="};
- { 9, 22417, "", "=q4=Dreadnaught Legplates", "=ds="};
- { 10, 10489, "", "=q4=Dreadborne Legplates", "=ds="};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Helms"] = {
- { 1, 22490, "", "=q4=Dreamwalker Headpiece", "=ds="};
- { 2, 22438, "", "=q4=Cryptstalker Headpiece", "=ds="};
- { 3, 22498, "", "=q4=Frostfire Circlet", "=ds="};
- { 4, 22428, "", "=q4=Redemption Headpiece", "=ds="};
- { 5, 22514, "", "=q4=Circlet of Faith", "=ds="};
- { 6, 22478, "", "=q4=Bonescythe Helmet", "=ds="};
- { 7, 22466, "", "=q4=Earthshatter Headpiece", "=ds="};
- { 8, 22506, "", "=q4=Plagueheart Circlet", "=ds="};
- { 9, 22418, "", "=q4=Dreadnaught Helmet", "=ds="};
- { 10, 10490, "", "=q4=Dreadborne Helmet", "=ds="};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Chests"] = {
- { 1, 22488, "", "=q4=Dreamwalker Tunic", "=ds="};
- { 2, 22436, "", "=q4=Cryptstalker Tunic", "=ds="};
- { 3, 22496, "", "=q4=Frostfire Robe", "=ds="};
- { 4, 22425, "", "=q4=Redemption Tunic", "=ds="};
- { 5, 22512, "", "=q4=Robe of Faith", "=ds="};
- { 6, 22476, "", "=q4=Bonescythe Breastplate", "=ds="};
- { 7, 22464, "", "=q4=Earthshatter Tunic", "=ds="};
- { 8, 22504, "", "=q4=Plagueheart Robe", "=ds="};
- { 9, 22416, "", "=q4=Dreadnaught Breastplate", "=ds="};
- { 10, 10488, "", "=q4=Dreadborne Breastplate", "=ds="};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T3Rings"] = {
- { 1, 23064, "", "=q4=Ring of the Dreamwalker", "=ds=#s13# =q1=#m1# =ds=#c1#","","22.22%" },
- { 2, 23067, "", "=q4=Ring of the Cryptstalker", "=ds=#s13# =q1=#m1# =ds=#c2#" ,"","22.22%"},
- { 3, 23062, "", "=q4=Frostfire Ring", "=ds=#s13# =q1=#m1# =ds=#c3#" ,"","22.22%"},
- { 4, 23066, "", "=q4=Ring of Redemption", "=ds=#s13# =q1=#m1# =ds=#c4#" ,"","22.22%"},
- { 5, 23061, "", "=q4=Ring of Faith", "=ds=#s13# =q1=#m1# =ds=#c5#" ,"","22.22%"},
- { 6, 23060, "", "=q4=Bonescythe Ring", "=ds=#s13# =q1=#m1# =ds=#c6#" ,"","22.22%"},
- { 7, 23065, "", "=q4=Ring of the Earthshatterer", "=ds=#s13# =q1=#m1# =ds=#c7#" ,"","22.22%"},
- { 8, 23063, "", "=q4=Plagueheart Ring", "=ds=#s13# =q1=#m1# =ds=#c8#" ,"","22.22%"},
- { 9, 23059, "", "=q4=Ring of the Dreadnaught", "=ds=#s13# =q1=#m1# =ds=#c9#" ,"","22.22%"},
- { 10, 23059, "", "=q4=Dreadborne Ring", "=ds=#s13# =q1=#m1# =ds=#c9#" ,"","22.22%"},
-
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
+ AtlasLoot_Data["T3"] = {
+ Name = "Teir 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"];
+ { 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"];
+ { 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["VWOWSets1"] = {
- { 1, 0, "INV_Box_01", "=q6=#pre60s1#", "=ec1=#a2#. =q1=#z1#"};
- { 2, 10399, "", "=q3=Blackened Defias Armor", "=ds=#s5#, =q2=#n6#", "", "14.77%"};
- { 3, 10401, "", "=q2=Blackened Defias Gloves", "=ds=#s9#, =q2=#n9#", "", "1.76%"};
- { 4, 10403, "", "=q3=Blackened Defias Belt", "=ds=#s10#, =q2=#n7#", "", "23.26%"};
- { 5, 10400, "", "=q2=Blackened Defias Leggings", "=ds=#s11#, =q2=#n9#", "", "1.64%"};
- { 6, 10402, "", "=q2=Blackened Defias Boots", "=ds=#s12#, =q2=#n8#", "", "1.23%"};
- { 8, 0, "INV_Box_01", "=q6=#pre60s2#", "=ec1=#a2#. =q1=#z2#"};
- { 9, 6473, "", "=q3=Armor of the Fang", "=ds=#s5#, =q2=#n5#", "", "52.05%"};
- { 10, 10413, "", "=q3=Gloves of the Fang", "=ds=#s9#, =q2=#n4#", "", "1.20%"};
- { 11, 10412, "", "=q3=Belt of the Fang", "=ds=#s10#, =q2=#n2#", "", "8.64%"};
- { 12, 10410, "", "=q3=Leggings of the Fang", "=ds=#s11#, =q2=#n1#", "", "16.03%"};
- { 13, 10411, "", "=q3=Footpads of the Fang", "=ds=#s12#, =q2=#n3#", "", "19.08%"};
- { 16, 0, "INV_Box_01", "=q6=#pre60s3#", "=ec1=#a3#. =q1=#z3#"};
- { 17, 10328, "", "=q3=Scarlet Chestpiece", "=ds=#s5#, =q2=#n12#", "", "0.3%"};
- { 18, 10333, "", "=q2=Scarlet Wristguards", "=ds=#s8#, =q2=#n15#", "", "1.6%"};
- { 19, 10331, "", "=q2=Scarlet Gauntlets", "=ds=#s9#, =q2=#n13#", "", "1.7%"};
- { 20, 10329, "", "=q2=Scarlet Belt", "=ds=#s10#, =q2=#n10#", "", "1.6%"};
- { 21, 10330, "", "=q3=Scarlet Leggings", "=ds=#s11#, =q2=#n14#", "", "13.2%"};
- { 22, 10332, "", "=q3=Scarlet Boots", "=ds=#s12#, =q2=#n11#", "", "0.1%"};
- { 24, 0, "INV_Box_01", "=q6=#pre60s4#", "=ec1=#a3#. =q1=#z4#"};
- { 25, 11729, "", "=q3=Savage Gladiator Helm", "=ds=#s1#, =q2=#brd3#, #brd5#", "", "10.08%"};
- { 26, 11726, "", "=q4=Savage Gladiator Chain", "=ds=#s5#, =q2=#brd3#", "", "14.52%"};
- { 27, 11730, "", "=q3=Savage Gladiator Grips", "=ds=#s9#, =q2=#brd2#", "", "14.12%"};
- { 28, 11728, "", "=q3=Savage Gladiator Leggings", "=ds=#s11#, =q2=#brd6#", "", "14.95%"};
- { 29, 11731, "", "=q3=Savage Gladiator Greaves", "=ds=#s12#, =q2=#brd1#", "", "15.14%"};
- Back = "SETSCLASSIC";
- };
-
- AtlasLoot_Data["VWOWSets2"] = {
- { 1, 0, "INV_Box_01", "=q6=#pre60s5#", "=ec1=#a1#, =q1=#m1# #c5#, #c3#, #c8#"};
- { 2, 22302, "", "=q3=Ironweave Cowl", "=ds=#s1#, =q2=#n16# (#z9#)", "", "27.72%"};
- { 3, 22305, "", "=q3=Ironweave Mantle", "=ds=#s3#, =q2=#n17# (#z4#)", "", "30.39%"};
- { 4, 22301, "", "=q3=Ironweave Robe", "=ds=#s5#, =q2=#n18# (#z6#)", "", "19.00%"};
- { 5, 22313, "", "=q3=Ironweave Bracers", "=ds=#s8#, =q2=#n19# (#z10#)", "", "18.16%"};
- { 6, 22304, "", "=q3=Ironweave Gloves", "=ds=#s9#, =q2=#n20# (#z13#)", "", "16.24%"};
- { 7, 22306, "", "=q3=Ironweave Belt", "=ds=#s10#, =q2=#n21# (#z10#)", "", "20.28%"};
- { 8, 22303, "", "=q3=Ironweave Pants", "=ds=#s11#, =q2=#n22# (#z5#)", "", "23.33%"};
- { 9, 22311, "", "=q3=Ironweave Boots", "=ds=#s12#, =q2=#n23# (#z9#)", "", "12.31%"};
- { 16, 0, "INV_Box_01", "=q6=#pre60s10#", "=ec1=#a1#, =q2=#n24#. =q1=#z6#"};
- { 17, 13390, "", "=q3=The Postmaster's Band", "=ds=#s1#", "", ""};
- { 18, 13388, "", "=q3=The Postmaster's Tunic", "=ds=#s5#", "", ""};
- { 19, 13389, "", "=q3=The Postmaster's Trousers", "=ds=#s11#", "", ""};
- { 20, 13391, "", "=q3=The Postmaster's Treads", "=ds=#s12#", "", ""};
- { 21, 13392, "", "=q3=The Postmaster's Seal", "=ds=#s13#", "", ""};
- Back = "SETSCLASSIC";
- };
-
- AtlasLoot_Data["VWOWSets3"] = {
- { 1, 0, "INV_Box_01", "=q6=#pre60s15#", "=q1=#z7#"};
- { 2, 17082, "", "=q4=Shard of the Flame", "=ds=#s14#, =q2=#n35# (#z14#)", "", "4.46%"};
- { 3, 17064, "", "=q4=Shard of the Scale", "=ds=#s14#, =q2=#n36# (#z15#)", "", "3.71%"};
- { 5, 0, "INV_Box_01", "=q6=#pre60s20#", "=q1=#z7#"};
- { 6, 18204, "", "=q4=Eskhandar's Pelt", "=ds=#s4#, =q2=#n37#", "", "9.16%"};
- { 7, 18203, "", "=q4=Eskhandar's Right Claw", "=ds=#h3#, #w13#, =q2=#n38# (#z14#)", "", "16.97%"};
- { 8, 18202, "", "=q4=Eskhandar's Left Claw", "=ds=#h4#, #w13#, =q2=#n39#", "", "12.36%"};
- { 16, 0, "INV_Box_01", "=q6=#pre60s24#", "=q1=#z10#"};
- { 17, 13218, "", "=q3=Fang of the Crystal Spider", "=ds=#h1#, #w4#, =q2=#n41#", "", "15.46%"};
- { 18, 13183, "", "=q3=Venomspitter", "=ds=#h1#, #w6#, =q2=#n42#", "", "13.07%"};
- { 20, 0, "INV_Box_01", "=q6=#pre60s23#", "=q1=#z9#"};
- { 21, 12940, "", "=q3=Dal'Rend's Sacred Charge", "=ds=#h3#, #w10#, =q2=#n40#", "", "6.62%"};
- { 22, 12939, "", "=q3=Dal'Rend's Tribal Guardian", "=ds=#h4#, #w10#, =q2=#n40#", "", "7.44%"};
- Back = "SETSCLASSIC";
- };
- AtlasLoot_Data["VWOWScholo"] = {
- { 1, 0, "INV_Box_01", "=q6=#pre60s6#", "=ec1=#a1#. =q1=#z5#"};
- { 2, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#", "", "1.12%"};
- { 3, 14626, "", "=q3=Necropile Robe", "=ds=#s5#", "", "1.27%"};
- { 4, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#", "", "1.03%"};
- { 5, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#", "", "0.85%"};
- { 6, 14631, "", "=q3=Necropile Boots", "=ds=#s12#", "", "0.88%"};
- { 8, 0, "INV_Box_01", "=q6=#pre60s7#", "=ec1=#a2#. =q1=#z5#"};
- { 9, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#", "", "1.51%"};
- { 10, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#", "", "0.82%"};
- { 11, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#", "", "0.60%"};
- { 12, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#", "", "1.09%"};
- { 13, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#", "", "0.67%"};
- { 16, 0, "INV_Box_01", "=q6=#pre60s8#", "=ec1=#a3#. =q1=#z5#"};
- { 17, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#", "", "0.54%"};
- { 18, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#", "", "0.09%"};
- { 19, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#", "", "0.60%"};
- { 20, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#", "", "0.42%"};
- { 21, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#", "", "0.36%"};
- { 23, 0, "INV_Box_01", "=q6=#pre60s9#", "=ec1=#a4#. =q1=#z5#"};
- { 24, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#", "", "0.45%"};
- { 25, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#", "", "0.45%"};
- { 26, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#", "", "0.67%"};
- { 27, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#", "", "1.12%"};
- { 28, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#", "", "0.57%"};
- Back = "SETSCLASSIC";
- };
-
- AtlasLoot_Data["VWOWZulGurub"] = {
- { 1, 0, "INV_Box_01", "=q6=#pre60s16#", "=q1=#z8#"};
- { 2, 19898, "", "=q3=Seal of Jin", "=ds=#s13#, =q2=#n28#", "", "8.81%"};
- { 3, 19925, "", "=q3=Band of Jin", "=ds=#s13#, =q2=#n29#", "", "10.36%"};
- { 5, 0, "INV_Box_01", "=q6=#pre60s17#", "=q1=#z8#"};
- { 6, 19873, "", "=q3=Overlord's Crimson Band", "=ds=#s13#, =q2=#n33#", "", "10.12%"};
- { 7, 19912, "", "=q3=Overlord's Onyx Band", "=ds=#s13#, =q2=#n30#", "", "14.51%"};
- { 9, 0, "INV_Box_01", "=q6=#pre60s22#", "=q1=#z8#"};
- { 10, 19896, "", "=q4=Thekal's Grasp", "=ds=#h3#, #w13#, =q2=#n28#", "", "5.20%"};
- { 11, 19910, "", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#, =q2=#n30#", "", "4.54%"};
- { 16, 0, "INV_Box_01", "=q6=#pre60s18#", "=q1=#z8#"};
- { 17, 19863, "", "=q3=Primalist's Seal", "=ds=#s13#, =q2=#n33#", "", "9.72%"};
- { 18, 19920, "", "=q3=Primalist's Band", "=ds=#s13#, =q2=#n31#", "", "8.95%"};
- { 20, 0, "INV_Box_01", "=q6=#pre60s19#", "=q1=#z8#"};
- { 21, 19905, "", "=q3=Zanzil's Band", "=ds=#s13#, =q2=#n32#", "", "9.24%"};
- { 22, 19893, "", "=q3=Zanzil's Seal", "=ds=#s13#, =q2=#n33#", "", "10.12%"};
- { 24, 0, "INV_Box_01", "=q6=#pre60s21#", "=q1=#z8#"};
- { 25, 19865, "", "=q4=Warblade of the Hakkari", "=ds=#h3#, #w10#, =q2=#n34#", "", "5.18%"};
- { 26, 19866, "", "=q4=Warblade of the Hakkari", "=ds=#h4#, #w10#, =q2=#n33#", "", "4.55%"};
- Back = "SETSCLASSIC";
- Type = "ClassicRaid";
+ 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["ZGSets1"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#zgs1#", "=ec1=#c1#"};
- { 2, 19955, "", "=q4=Wushoolay's Charm of Nature", ""};
- { 3, 19613, "", "=q4=Pristine Enchanted South Seas Kelp", "=ds=#r5#"};
- { 4, 19838, "", "=q4=Zandalar Haruspex's Tunic", "=q4=#zgt9#, =ds=#r4#"};
- { 5, 19839, "", "=q4=Zandalar Haruspex's Belt", "=q4=#zgt4#, =ds=#r3#"};
- { 6, 19840, "", "=q4=Zandalar Haruspex's Bracers", "=q4=#zgt5#, =ds=#r2#"};
- { 8, 0, "Ability_Hunter_RunningShot", "=q6=#zgs2#", "=ec1=#c2#"};
- { 9, 19953, "", "=q4=Renataki's Charm of Beasts", ""};
- { 10, 19621, "", "=q4=Maelstrom's Wrath", "=ds=#r5#"};
- { 11, 19831, "", "=q4=Zandalar Predator's Mantle", "=q4=#zgt6#, =ds=#r4#"};
- { 12, 19832, "", "=q4=Zandalar Predator's Belt", "=q4=#zgt2#, =ds=#r3#"};
- { 13, 19833, "", "=q4=Zandalar Predator's Bracers", "=q4=#zgt3#, =ds=#r2#"};
- { 16, 0, "Spell_Frost_IceStorm", "=q6=#zgs3#", "=ec1=#c3#"};
- { 17, 19959, "", "=q4=Hazza'rah's Charm of Magic", ""};
- { 18, 19601, "", "=q4=Jewel of Kajaro", "=ds=#r5#"};
- { 19, 20034, "", "=q4=Zandalar Illusionist's Robe", "=q4=#zgt1#, =ds=#r4#"};
- { 20, 19845, "", "=q4=Zandalar Illusionist's Mantle", "=q4=#zgt2#, =ds=#r3#"};
- { 21, 19846, "", "=q4=Zandalar Illusionist's Wraps", "=q4=#zgt3#, =ds=#r2#"};
- { 23, 0, "Spell_Holy_SealOfMight", "=q6=#zgs4#", "=ec1=#c4#"};
- { 24, 19952, "", "=q4=Gri'lek's Charm of Valor", ""};
- { 25, 19588, "", "=q4=Hero's Brand", "=ds=#r5#"};
- { 26, 19825, "", "=q4=Zandalar Freethinker's Breastplate", "=q4=#zgt9#, =ds=#r4#"};
- { 27, 19826, "", "=q4=Zandalar Freethinker's Belt", "=q4=#zgt2#, =ds=#r3#"};
- { 28, 19827, "", "=q4=Zandalar Freethinker's Armguards", "=q4=#zgt3#, =ds=#r2#"};
- Next = "ZGSets2";
- Back = "SETMENUCLASSIC";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["ZGSets2"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#zgs5#", "=ec1=#c5#"};
- { 2, 19958, "", "=q4=Hazza'rah's Charm of Healing", ""};
- { 3, 19594, "", "=q4=The All-Seeing Eye of Zuldazar", "=ds=#r5#"};
- { 4, 19841, "", "=q4=Zandalar Confessor's Mantle", "=q4=#zgt6#, =ds=#r4#"};
- { 5, 19842, "", "=q4=Zandalar Confessor's Bindings", "=q4=#zgt4#, =ds=#r3#"};
- { 6, 19843, "", "=q4=Zandalar Confessor's Wraps", "=q4=#zgt5#, =ds=#r2#"};
- { 8, 0, "Ability_BackStab", "=q6=#zgs6#", "=ec1=#c6#"};
- { 9, 19954, "", "=q4=Renataki's Charm of Trickery", ""};
- { 10, 19617, "", "=q4=Zandalarian Shadow Mastery Talisman", "=ds=#r5#"};
- { 11, 19834, "", "=q4=Zandalar Madcap's Tunic", "=q4=#zgt6#, =ds=#r4#"};
- { 12, 19835, "", "=q4=Zandalar Madcap's Mantle", "=q4=#zgt7#, =ds=#r3#"};
- { 13, 19836, "", "=q4=Zandalar Madcap's Bracers", "=q4=#zgt8#, =ds=#r2#"};
- { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#zgs7#", "=ec1=#c7#"};
- { 17, 19956, "", "=q4=Wushoolay's Charm of Spirits", ""};
- { 18, 19609, "", "=q4=Unmarred Vision of Voodress", "=ds=#r5#"};
- { 19, 19828, "", "=q4=Zandalar Augur's Hauberk", "=q4=#zgt9#, =ds=#r4#"};
- { 20, 19829, "", "=q4=Zandalar Augur's Belt", "=q4=#zgt7#, =ds=#r3#"};
- { 21, 19830, "", "=q4=Zandalar Augur's Bracers", "=q4=#zgt8#, =ds=#r2#"};
- { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#zgs8#", "=ec1=#c8#"};
- { 24, 19957, "", "=q4=Hazza'rah's Charm of Destruction", ""};
- { 25, 19605, "", "=q4=Kezan's Unstoppable Taint", "=ds=#r5#"};
- { 26, 20033, "", "=q4=Zandalar Demoniac's Robe", "=q4=#zgt1#, =ds=#r4#"};
- { 27, 19849, "", "=q4=Zandalar Demoniac's Mantle", "=q4=#zgt4#, =ds=#r3#"};
- { 28, 19848, "", "=q4=Zandalar Demoniac's Wraps", "=q4=#zgt5#, =ds=#r2#"};
- Next = "ZGSets3";
- Prev = "ZGSets1";
- Back = "SETMENUCLASSIC";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["ZGSets3"] = {
- { 1, 0, "INV_Shield_05", "=q6=#zgs9#", "=ec1=#c9#"};
- { 2, 19951, "", "=q4=Gri'lek's Charm of Might", ""};
- { 3, 19577, "", "=q4=Rage of Mugamba", "=ds=#r5#"};
- { 4, 19822, "", "=q4=Zandalar Vindicator's Breastplate", "=q4=#zgt1#, =ds=#r4#"};
- { 5, 19823, "", "=q4=Zandalar Vindicator's Belt", "=q4=#zgt7#, =ds=#r3#"};
- { 6, 19824, "", "=q4=Zandalar Vindicator's Armguards", "=q4=#zgt8#, =ds=#r2#"};
- Prev = "ZGSets2";
- Back = "SETMENUCLASSIC";
- Type = "ClassicRaid";
+ 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["AQ20Sets1"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#aq20s1#", "=ec1=#c1#"};
- { 2, 21407, "", "=q4=Mace of Unending Life", "=q4=#aq20t1#, =ds=#r5#"};
- { 3, 21409, "", "=q4=Cloak of Unending Life", "=q3=#aq20t5#, =ds=#r4#"};
- { 4, 21408, "", "=q4=Band of Unending Life", "=q3=#aq20t3#, =ds=#r3#"};
- { 6, 0, "Ability_Hunter_RunningShot", "=q6=#aq20s2#", "=ec1=#c2#"};
- { 7, 21401, "", "=q4=Scythe of the Unseen Path", "=q4=#aq20t6#, =ds=#r5#"};
- { 8, 21403, "", "=q4=Cloak of the Unseen Path", "=q3=#aq20t5#, =ds=#r4#"};
- { 9, 21402, "", "=q4=Signet of the Unseen Path", "=q3=#aq20t4#, =ds=#r3#"};
- { 11, 0, "Spell_Frost_IceStorm", "=q6=#aq20s3#", "=ec1=#c3#"};
- { 12, 21413, "", "=q4=Blade of Vaulted Secrets", "=q4=#aq20t1#, =ds=#r5#"};
- { 13, 21415, "", "=q4=Drape of Vaulted Secrets", "=q3=#aq20t2#, =ds=#r4#"};
- { 14, 21414, "", "=q4=Band of Vaulted Secrets", "=q3=#aq20t3#, =ds=#r3#"};
- { 16, 0, "Spell_Holy_SealOfMight", "=q6=#aq20s4#", "=ec1=#c4#"};
- { 17, 21395, "", "=q4=Blade of Eternal Justice", "=q4=#aq20t6#, =ds=#r5#"};
- { 18, 21397, "", "=q4=Cape of Eternal Justice", "=q3=#aq20t5#, =ds=#r4#"};
- { 19, 21396, "", "=q4=Ring of Eternal Justice", "=q3=#aq20t3#, =ds=#r3#"};
- { 21, 0, "Spell_Holy_PowerWordShield", "=q6=#aq20s5#", "=ec1=#c5#"};
- { 22, 21410, "", "=q4=Gavel of Infinite Wisdom", "=q4=#aq20t1#, =ds=#r5#"};
- { 23, 21412, "", "=q4=Shroud of Infinite Wisdom", "=q3=#aq20t2#, =ds=#r4#"};
- { 24, 21411, "", "=q4=Ring of Infinite Wisdom", "=q3=#aq20t4#, =ds=#r3#"};
- { 26, 0, "Ability_BackStab", "=q6=#aq20s6#", "=ec1=#c6#"};
- { 27, 21404, "", "=q4=Dagger of Veiled Shadows", "=q4=#aq20t6#, =ds=#r5#"};
- { 28, 21406, "", "=q4=Cloak of Veiled Shadows", "=q3=#aq20t2#, =ds=#r4#"};
- { 29, 21405, "", "=q4=Band of Veiled Shadows", "=q3=#aq20t4#, =ds=#r3#"};
- Next = "AQ20Sets2";
- Back = "SETMENUCLASSIC";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["AQ20Sets2"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#aq20s7#", "=ec1=#c7#"};
- { 2, 21398, "", "=q4=Hammer of the Gathering Storm", "=q4=#aq20t6#, =ds=#r5#"};
- { 3, 21400, "", "=q4=Cloak of the Gathering Storm", "=q3=#aq20t5#, =ds=#r4#"};
- { 4, 21399, "", "=q4=Ring of the Gathering Storm", "=q3=#aq20t3#, =ds=#r3#"};
- { 6, 0, "Spell_Shadow_CurseOfTounges", "=q6=#aq20s8#", "=ec1=#c8#"};
- { 7, 21416, "", "=q4=Kris of Unspoken Names", "=q4=#aq20t1#, =ds=#r5#"};
- { 8, 21418, "", "=q4=Shroud of Unspoken Names", "=q3=#aq20t5#, =ds=#r4#"};
- { 9, 21417, "", "=q4=Ring of Unspoken Names", "=q3=#aq20t4#, =ds=#r3#"};
- { 11, 0, "INV_Shield_05", "=q6=#aq20s9#", "=ec1=#c9#"};
- { 12, 21392, "", "=q4=Sickle of Unyielding Strength", "=q4=#aq20t6#, =ds=#r5#"};
- { 13, 21394, "", "=q4=Drape of Unyielding Strength", "=q3=#aq20t2#, =ds=#r4#"};
- { 14, 21393, "", "=q4=Signet of Unyielding Strength", "=q3=#aq20t3#=ds=, #r3#"};
- Prev = "AQ20Sets1";
- Back = "SETMENUCLASSIC";
- Type = "ClassicRaid";
+ 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["AQ40Sets1"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#aq40s1#", "=ec1=#c1#"};
- { 2, 21357, "", "=q4=Genesis Vest", ""};
- { 3, 21353, "", "=q4=Genesis Helm", ""};
- { 4, 21356, "", "=q4=Genesis Trousers", ""};
- { 5, 21354, "", "=q4=Genesis Shoulderpads", ""};
- { 6, 21355, "", "=q4=Genesis Boots", ""};
- { 8, 0, "Ability_Hunter_RunningShot", "=q6=#aq40s2#", "=ec1=#c2#"};
- { 9, 21370, "", "=q4=Striker's Hauberk", ""};
- { 10, 21366, "", "=q4=Striker's Diadem", ""};
- { 11, 21368, "", "=q4=Striker's Leggings", ""};
- { 12, 21367, "", "=q4=Striker's Pauldrons", ""};
- { 13, 21365, "", "=q4=Striker's Footguards", ""};
- { 16, 0, "Spell_Frost_IceStorm", "=q6=#aq40s3#", "=ec1=#c3#"};
- { 17, 21343, "", "=q4=Enigma Robes", ""};
- { 18, 21347, "", "=q4=Enigma Circlet", ""};
- { 19, 21346, "", "=q4=Enigma Leggings", ""};
- { 20, 21345, "", "=q4=Enigma Shoulderpads", ""};
- { 21, 21344, "", "=q4=Enigma Boots", ""};
- { 23, 0, "Spell_Holy_SealOfMight", "=q6=#aq40s4#", "=ec1=#c4#"};
- { 24, 21389, "", "=q4=Avenger's Breastplate", ""};
- { 25, 21387, "", "=q4=Avenger's Crown", ""};
- { 26, 21390, "", "=q4=Avenger's Legguards", ""};
- { 27, 21391, "", "=q4=Avenger's Pauldrons", ""};
- { 28, 21388, "", "=q4=Avenger's Greaves", ""};
- Next = "AQ40Sets2";
- Back = "SETMENUCLASSIC";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["AQ40Sets2"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#aq40s5#", "=ec1=#c5#"};
- { 2, 21351, "", "=q4=Vestments of the Oracle", ""};
- { 3, 21348, "", "=q4=Tiara of the Oracle", ""};
- { 4, 21352, "", "=q4=Trousers of the Oracle", ""};
- { 5, 21350, "", "=q4=Mantle of the Oracle", ""};
- { 6, 21349, "", "=q4=Footwraps of the Oracle", ""};
- { 8, 0, "Ability_BackStab", "=q6=#aq40s6#", "=ec1=#c6#"};
- { 9, 21364, "", "=q4=Deathdealer's Vest", ""};
- { 10, 21360, "", "=q4=Deathdealer's Helm", ""};
- { 11, 21362, "", "=q4=Deathdealer's Leggings", ""};
- { 12, 21361, "", "=q4=Deathdealer's Spaulders", ""};
- { 13, 21359, "", "=q4=Deathdealer's Boots", ""};
- { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#aq40s7#", "=ec1=#c7#"};
- { 17, 21374, "", "=q4=Stormcaller's Hauberk", ""};
- { 18, 21372, "", "=q4=Stormcaller's Diadem", ""};
- { 19, 21375, "", "=q4=Stormcaller's Leggings", ""};
- { 20, 21376, "", "=q4=Stormcaller's Pauldrons", ""};
- { 21, 21373, "", "=q4=Stormcaller's Footguards", ""};
- { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#aq40s8#", "=ec1=#c8#"};
- { 24, 21334, "", "=q4=Doomcaller's Robes", ""};
- { 25, 21337, "", "=q4=Doomcaller's Circlet", ""};
- { 26, 21336, "", "=q4=Doomcaller's Trousers", ""};
- { 27, 21335, "", "=q4=Doomcaller's Mantle", ""};
- { 28, 21338, "", "=q4=Doomcaller's Footwraps", ""};
- Next = "AQ40Sets3";
- Prev = "AQ40Sets1";
- Back = "SETMENUCLASSIC";
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["AQ40Sets3"] = {
- { 1, 0, "INV_Shield_05", "=q6=#aq40s9#", "=ec1=#c9#"};
- { 2, 21331, "", "=q4=Conqueror's Breastplate", ""};
- { 3, 21329, "", "=q4=Conqueror's Crown", ""};
- { 4, 21332, "", "=q4=Conqueror's Legguards", ""};
- { 5, 21330, "", "=q4=Conqueror's Spaulders", ""};
- { 6, 21333, "", "=q4=Conqueror's Greaves", ""};
- { 16, 0, "Ability_Warrior_BattleShout", "=q6=#aq40s9#", "=ec1=#c9#"};
- { 17, 10912, "", "=q4=Conqueror's Chestplate", ""};
- { 18, 10910, "", "=q4=Conqueror's Headguard", ""};
- { 19, 10913, "", "=q4=Conqueror's Platelegs", ""};
- { 20, 10911, "", "=q4=Conqueror's Shoulderpads", ""};
- { 21, 10914, "", "=q4=Conqueror's War Stompers", ""};
- Prev = "AQ40Sets2";
- Back = "SETMENUCLASSIC";
- Type = "ClassicRaid";
- };
-
- --Teir 2.5 Sets
-
- AtlasLoot_Data["T2.5Chests"] = {
- { 1, 21357, "", "=q4=Genesis Vest", "=ec1=#c1#"};
- { 2, 21370, "", "=q4=Striker's Hauberk", "=ec1=#c2#"};
- { 3, 21343, "", "=q4=Enigma Robes", "=ec1=#c3#"};
- { 4, 21389, "", "=q4=Avenger's Breastplate", "=ec1=#c4#"};
- { 5, 21351, "", "=q4=Vestments of the Oracle", "=ec1=#c5#"};
- { 6, 21364, "", "=q4=Deathdealer's Vest", "=ec1=#c6#"};
- { 7, 21374, "", "=q4=Stormcaller's Hauberk", "=ec1=#c7#"};
- { 8, 21334, "", "=q4=Doomcaller's Robes", "=ec1=#c8#"};
- { 9, 21331, "", "=q4=Conqueror's Breastplate", "=ec1=#c9#"};
- { 10, 10912, "", "=q4=Conqueror's Chestplate", "=ec1=#c9#"};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
-
- AtlasLoot_Data["T2.5Shoulders"] = {
- { 1, 21354, "", "=q4=Genesis Shoulderpads", "=ec1=#c1#"};
- { 2, 21367, "", "=q4=Striker's Pauldrons", "=ec1=#c2#"};
- { 3, 21345, "", "=q4=Enigma Shoulderpads", "=ec1=#c3#"};
- { 4, 21391, "", "=q4=Avenger's Pauldrons", "=ec1=#c4#"};
- { 5, 21350, "", "=q4=Mantle of the Oracle", "=ec1=#c5#"};
- { 6, 21361, "", "=q4=Deathdealer's Spaulders", "=ec1=#c6#"};
- { 7, 21376, "", "=q4=Stormcaller's Pauldrons", "=ec1=#c7#"};
- { 8, 21335, "", "=q4=Doomcaller's Mantle", "=ec1=#c8#"};
- { 9, 21330, "", "=q4=Conqueror's Spaulders", "=ec1=#c9#"};
- { 10, 10911, "", "=q4=Conqueror's Shoulderpads", "=ec1=#c9#"};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2.5Legs"] = {
- { 1, 21356, "", "=q4=Genesis Trousers", "=ec1=#c1#"};
- { 2, 21368, "", "=q4=Striker's Leggings", "=ec1=#c2#"};
- { 3, 21346, "", "=q4=Enigma Leggings", "=ec1=#c3#"};
- { 4, 21390, "", "=q4=Avenger's Legguards", "=ec1=#c4#"};
- { 5, 21352, "", "=q4=Trousers of the Oracle", "=ec1=#c5#"};
- { 6, 21362, "", "=q4=Deathdealer's Leggings", "=ec1=#c6#"};
- { 7, 21375, "", "=q4=Stormcaller's Leggings", "=ec1=#c7#"};
- { 8, 21336, "", "=q4=Doomcaller's Trousers", "=ec1=#c8#"};
- { 9, 21332, "", "=q4=Conqueror's Legguards", "=ec1=#c9#"};
- { 10, 10913, "", "=q4=Conqueror's Platelegs", "=ec1=#c9#"};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2.5Boots"] = {
- { 1, 21355, "", "=q4=Genesis Boots", "=ec1=#c1#"};
- { 2, 21365, "", "=q4=Striker's Footguards", "=ec1=#c2#"};
- { 3, 21344, "", "=q4=Enigma Boots", "=ec1=#c3#"};
- { 4, 21388, "", "=q4=Avenger's Greaves", "=ec1=#c4#"};
- { 5, 21349, "", "=q4=Footwraps of the Oracle", "=ec1=#c5#"};
- { 6, 21359, "", "=q4=Deathdealer's Boots", "=ec1=#c6#"};
- { 7, 21373, "", "=q4=Stormcaller's Footguards", "=ec1=#c7#"};
- { 8, 21338, "", "=q4=Doomcaller's Footwraps", "=ec1=#c8#"};
- { 9, 21333, "", "=q4=Conqueror's Greaves", "=ec1=#c9#"};
- { 10, 10914, "", "=q4=Conqueror's War Stompers", "=ec1=#c9#"};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
- };
-
- AtlasLoot_Data["T2.5Helms"] = {
- { 1, 21353, "", "=q4=Genesis Helm", "=ec1=#c1#"};
- { 2, 21366, "", "=q4=Striker's Diadem", "=ec1=#c2#"};
- { 3, 21347, "", "=q4=Enigma Circlet", "=ec1=#c3#"};
- { 4, 21387, "", "=q4=Avenger's Crown", "=ec1=#c4#"};
- { 5, 21348, "", "=q4=Tiara of the Oracle", "=ec1=#c5#"};
- { 6, 21360, "", "=q4=Deathdealer's Helm", "=ec1=#c6#"};
- { 7, 21372, "", "=q4=Stormcaller's Diadem", "=ec1=#c7#"};
- { 8, 21337, "", "=q4=Doomcaller's Circlet", "=ec1=#c8#"};
- { 9, 21329, "", "=q4=Conqueror's Crown", "=ec1=#c9#"};
- { 10, 10910, "", "=q4=Conqueror's Headguard", "=ec1=#c9#"};
- Back = AtlasLoot_Lastboss;
- Type = "ClassicRaid";
+ AtlasLoot_Data["T2.5"] = {
+ Name = AL["AQ40 Class Sets"].." (Teir 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"];
+ { 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"];
+ { 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["WorldEpics1"] = {
+ 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#", "", ""};
@@ -5653,10 +5095,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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#", "", ""};
- Back = "SETMENUCLASSIC";
};
-
- AtlasLoot_Data["WorldEpics2"] = {
+ {
+ 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#", "", ""};
@@ -5678,10 +5119,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 26, 1979, "", "=q4=Wall of the Dead", "=ds=#w8#", "", ""};
{ 27, 2824, "", "=q4=Hurricane", "=ds=#w2#", "", ""};
{ 28, 2100, "", "=q4=Precisely Calibrated Boomstick", "=ds=#w5#", "", ""};
- Back = "SETMENUCLASSIC";
};
-
- AtlasLoot_Data["WorldEpics3"] = {
+ {
+ 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#", "", ""};
@@ -5703,9 +5143,8 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 24, 944, "", "=q4=Elemental Mage Staff", "=ds=#w9#", "", ""};
{ 25, 1168, "", "=q4=Skullflame Shield", "=ds=#w8#", "", ""};
{ 26, 2099, "", "=q4=Dwarven Hand Cannon", "=ds=#w5#", "", ""};
- Back = "SETMENUCLASSIC";
- Type = "ClassicDungeonExt";
};
+};
-----------
--- PvP ---
@@ -5716,1397 +5155,1435 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
----------------------
AtlasLoot_Data["AVMisc"] = {
- { 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#"};
- Next = "AVBlue_A";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["AVBlue_A"] = {
- { 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#"};
- Prev = "AVMisc";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["AVBlue_H"] = {
- { 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#"};
- Prev = "AVMisc";
- Back = "PVPMENU2";
- Type = "PVP";
+ 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["ABMisc_A"] = {
- { 2, 17349, "", "=q1=Superior Healing Draught", "=ds=", "5 #silver# 1 #alliance#", ""};
- { 3, 17352, "", "=q1=Superior Mana Draught", "=ds=", "5 #silver# 1 #alliance#", ""};
- { 4, 20225, "", "=q1=Highlander's Enriched Ration", "=ds=", "18 #silver#", ""};
- { 5, 20227, "", "=q1=Highlander's Iron Ration", "=ds=", "13,5 #silver#", ""};
- { 6, 20226, "", "=q1=Highlander's Field Ration", "=ds=", "9 #silver#", ""};
- { 7, 20243, "", "=q1=Highlander's Runecloth Bandage", "=ds=", "18 #silver#", ""};
- { 8, 20237, "", "=q1=Highlander's Mageweave Bandage", "=ds=", "13,5 #silver#", ""};
- { 9, 20244, "", "=q1=Highlander's Silk Bandage", "=ds=", "9 #silver#", ""};
- { 11, 21119, "", "=q3=Talisman of Arathor", "=ds=", "300 #alliance#", ""};
- { 12, 21118, "", "=q3=Talisman of Arathor", "=ds=", "300 #alliance#", ""};
- { 13, 21117, "", "=q3=Talisman of Arathor", "=ds=", "400 #alliance#", ""};
- { 14, 20071, "", "=q3=Talisman of Arathor", "=ds=", "3000 #alliance#", ""};
- { 17, 0, "INV_BannerPVP_02", "=q6="..AL["Level 60 Rewards"], "=q5=#b5#" };
- { 18, 20073, "", "=q4=Cloak of the Honor Guard", "=ds=", "5000 #alliance#", ""};
- { 19, 20070, "", "=q4=Sageclaw", "=ds=", "9000 #alliance#", ""};
- { 20, 20069, "", "=q4=Ironbark Staff", "=ds=", "16000 #alliance#", ""};
- Next = "AB4049_A";
- Back = "PVPMENU2";
- Type = "PVP";
+ 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["AB4049_A"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6="..AL["Level 40-49 Rewards"], "=q5=#b5#"};
- { 2, 20097, "", "=q3=Highlander's Cloth Girdle", "=ds=", "400 #alliance#", ""};
- { 3, 20094, "", "=q3=Highlander's Cloth Boots", "=ds=", "400 #alliance#", ""};
- { 4, 20115, "", "=q3=Highlander's Leather Girdle", "=ds=", "400 #alliance#", ""};
- { 5, 20103, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "400 #alliance#", ""};
- { 6, 20112, "", "=q3=Highlander's Leather Boots", "=ds=", "400 #alliance#", ""};
- { 7, 20100, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "400 #alliance#", ""};
- { 8, 20089, "", "=q3=Highlander's Chain Girdle", "=ds=", "300 #alliance#", ""};
- { 9, 20088, "", "=q3=Highlander's Chain Girdle", "=ds=", "400 #alliance#", ""};
- { 10, 20119, "", "=q3=Highlander's Mail Girdle", "=ds=", "300 #alliance#", ""};
- { 11, 20118, "", "=q3=Highlander's Mail Girdle", "=ds=", "400 #alliance#", ""};
- { 12, 20092, "", "=q3=Highlander's Chain Greaves", "=ds=", "300 #alliance#", ""};
- { 13, 20091, "", "=q3=Highlander's Chain Greaves", "=ds=", "400 #alliance#", ""};
- { 14, 20122, "", "=q3=Highlander's Mail Greaves", "=ds=", "300 #alliance#", ""};
- { 15, 20121, "", "=q3=Highlander's Mail Greaves", "=ds=", "400 #alliance#", ""};
- { 17, 20107, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "300 #alliance#", ""};
- { 18, 20106, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "400 #alliance#", ""};
- { 19, 20125, "", "=q3=Highlander's Plate Girdle", "=ds=", "300 #alliance#", ""};
- { 20, 20124, "", "=q3=Highlander's Plate Girdle", "=ds=", "400 #alliance#", ""};
- { 21, 20110, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "300 #alliance#", ""};
- { 22, 20109, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "400 #alliance#", ""};
- { 23, 20128, "", "=q3=Highlander's Plate Greaves", "=ds=", "300 #alliance#", ""};
- { 24, 20127, "", "=q3=Highlander's Plate Greaves", "=ds=", "400 #alliance#", ""};
- Prev = "ABMisc_A";
- Next = "AB2039_A";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["AB2039_A"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6="..AL["Level 30-39 Rewards"], "=q5=#b5#"};
- { 2, 20098, "", "=q3=Highlander's Cloth Girdle", "=ds=", "300 #alliance#", ""};
- { 3, 20095, "", "=q3=Highlander's Cloth Boots", "=ds=", "300 #alliance#", ""};
- { 4, 20116, "", "=q3=Highlander's Leather Girdle", "=ds=", "300 #alliance#", ""};
- { 5, 20104, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "300 #alliance#", ""};
- { 6, 20113, "", "=q3=Highlander's Leather Boots", "=ds=", "300 #alliance#", ""};
- { 7, 20101, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "300 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_02", "=q6="..AL["Level 20-29 Rewards"], "=q5=#b5#" };
- { 17, 20099, "", "=q3=Highlander's Cloth Girdle", "=ds=", "300 #alliance#", ""};
- { 18, 20096, "", "=q3=Highlander's Cloth Boots", "=ds=", "300 #alliance#", ""};
- { 19, 20117, "", "=q3=Highlander's Leather Girdle", "=ds=", "300 #alliance#", ""};
- { 20, 20105, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "300 #alliance#", ""};
- { 21, 20120, "", "=q3=Highlander's Mail Girdle", "=ds=", "300 #alliance#", ""};
- { 22, 20090, "", "=q3=Highlander's Padded Girdle", "=ds=", "300 #alliance#", ""};
- { 23, 20114, "", "=q3=Highlander's Leather Boots", "=ds=", "300 #alliance#", ""};
- { 24, 20102, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "300 #alliance#", ""};
- { 25, 20123, "", "=q3=Highlander's Mail Greaves", "=ds=", "300 #alliance#", ""};
- { 26, 20093, "", "=q3=Highlander's Padded Greaves", "=ds=", "300 #alliance#", ""};
- { 27, 20108, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "300 #alliance#", ""};
- { 28, 20126, "", "=q3=Highlander's Mail Girdle", "=ds=", "300 #alliance#", ""};
- { 29, 20111, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "300 #alliance#", ""};
- { 30, 20129, "", "=q3=Highlander's Mail Greaves", "=ds=", "300 #alliance#", ""};
- Prev = "AB4049_A";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ABMisc_H"] = {
- { 2, 17349, "", "=q1=Superior Healing Draught", "=ds=", "5 #silver# 5 #horde#", ""};
- { 3, 17352, "", "=q1=Superior Mana Draught", "=ds=", "5 #silver# 5 #horde#", ""};
- { 4, 20222, "", "=q1=Defiler's Enriched Ration", "=ds=", "18 #silver#", ""};
- { 5, 20224, "", "=q1=Defiler's Iron Ration", "=ds=", "15 #silver#", ""};
- { 6, 20223, "", "=q1=Defiler's Field Ration", "=ds=", "9 #silver#", ""};
- { 7, 20234, "", "=q1=Defiler's Runecloth Bandage", "=ds=", "18 #silver#", ""};
- { 8, 20232, "", "=q1=Defiler's Mageweave Bandage", "=ds=", "15 #silver#", ""};
- { 9, 20235, "", "=q1=Defiler's Silk Bandage", "=ds=", "9 #silver#", ""};
- { 11, 21116, "", "=q3=Defiler's Talisman", "=ds=", "300 #horde#", ""};
- { 12, 21120, "", "=q3=Defiler's Talisman", "=ds=", "300 #horde#", ""};
- { 13, 21115, "", "=q3=Defiler's Talisman", "=ds=", "400 #horde#", ""};
- { 14, 20072, "", "=q3=Defiler's Talisman", "=ds=", "3000 #horde#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6="..AL["Level 60 Rewards"], "=q5=#b6#"};
- { 17, 20068, "", "=q4=Deathguard's Cloak", "=ds=", "5000 #horde#", ""};
- { 25, 20214, "", "=q4=Mindfang", "=ds=", "9000 #horde#", ""};
- { 26, 20220, "", "=q4=Ironbark Staff", "=ds=", "16000 #horde#", ""};
- Next = "AB4049_H";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["AB4049_H"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6="..AL["Level 40-49 Rewards"], "=q5=#b6#"};
- { 2, 20165, "", "=q3=Defiler's Cloth Girdle", "=ds=", "400 #horde#", ""};
- { 3, 20160, "", "=q3=Defiler's Cloth Boots", "=ds=", "400 #horde#", ""};
- { 4, 20193, "", "=q3=Defiler's Leather Girdle", "=ds=", "400 #horde#", ""};
- { 5, 20174, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "400 #horde#", ""};
- { 6, 20189, "", "=q3=Defiler's Leather Boots", "=ds=", "400 #horde#", ""};
- { 7, 20170, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "400 #horde#", ""};
- { 8, 20153, "", "=q3=Defiler's Chain Girdle", "=ds=", "300 #horde#", ""};
- { 9, 20151, "", "=q3=Defiler's Chain Girdle", "=ds=", "400 #horde#", ""};
- { 10, 20198, "", "=q3=Defiler's Mail Girdle", "=ds=", "300 #horde#", ""};
- { 11, 20196, "", "=q3=Defiler's Mail Girdle", "=ds=", "400 #horde#", ""};
- { 12, 20156, "", "=q3=Defiler's Chain Greaves", "=ds=", "300 #horde#", ""};
- { 13, 20155, "", "=q3=Defiler's Chain Greaves", "=ds=", "400 #horde#", ""};
- { 14, 20200, "", "=q3=Defiler's Mail Greaves", "=ds=", "300 #horde#", ""};
- { 15, 20202, "", "=q3=Defiler's Mail Greaves", "=ds=", "400 #horde#", ""};
- { 16, 20180, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "300 #horde#", ""};
- { 17, 20179, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "400 #horde#", ""};
- { 18, 20206, "", "=q3=Defiler's Plate Girdle", "=ds=", "300 #horde#", ""};
- { 19, 20205, "", "=q3=Defiler's Plate Girdle", "=ds=", "400 #horde#", ""};
- { 20, 20183, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "300 #horde#", ""};
- { 21, 20185, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "400 #horde#", ""};
- { 22, 20209, "", "=q3=Defiler's Plate Greaves", "=ds=", "300 #horde#", ""};
- { 23, 20211, "", "=q3=Defiler's Plate Greaves", "=ds=", "400 #horde#", ""};
- Prev = "ABMisc_H";
- Next = "AB2039_H";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["AB2039_H"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6="..AL["Level 30-39 Rewards"], "=q5=#b6#"};
- { 2, 20166, "", "=q3=Defiler's Cloth Girdle", "=ds=", "300 #horde#", ""};
- { 3, 20161, "", "=q3=Defiler's Cloth Boots", "=ds=", "300 #horde#", ""};
- { 4, 20192, "", "=q3=Defiler's Leather Girdle", "=ds=", "300 #horde#", ""};
- { 5, 20173, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "300 #horde#", ""};
- { 6, 20187, "", "=q3=Defiler's Leather Boots", "=ds=", "300 #horde#", ""};
- { 7, 20168, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "300 #horde#", ""};
- { 16, 0, "INV_BannerPVP_02", "=q6="..AL["Level 20-29 Rewards"], "=q5=#b6#" };
- { 17, 20164, "", "=q3=Defiler's Cloth Girdle", "=ds=", "300 #horde#", ""};
- { 18, 20162, "", "=q3=Defiler's Cloth Boots", "=ds=", "300 #horde#", ""};
- { 19, 20191, "", "=q3=Defiler's Leather Girdle", "=ds=", "300 #horde#", ""};
- { 20, 20172, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "300 #horde#", ""};
- { 21, 20152, "", "=q3=Defiler's Chain Girdle", "=ds=", "300 #horde#", ""};
- { 22, 20197, "", "=q3=Defiler's Padded Girdle", "=ds=", "300 #horde#", ""};
- { 23, 20188, "", "=q3=Defiler's Leather Boots", "=ds=", "300 #horde#", ""};
- { 24, 20169, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "300 #horde#", ""};
- { 25, 20201, "", "=q3=Defiler's Mail Greaves", "=ds=", "300 #horde#", ""};
- { 26, 20157, "", "=q3=Defiler's Chain Greaves", "=ds=", "300 #horde#", ""};
- { 27, 20178, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "300 #horde#", ""};
- { 28, 20207, "", "=q3=Defiler's Mail Girdle", "=ds=", "300 #horde#", ""};
- { 29, 20182, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "300 #horde#", ""};
- { 30, 20210, "", "=q3=Defiler's Mail Greaves", "=ds=", "300 #horde#", ""};
- Prev = "AB4049_H";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ABSets1_A"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#absa1#", "=ec1=#c5#, #c3#, #c8#"};
- { 2, 20061, "", "=q4=Highlander's Epaulets", "=ds=", "9000 #alliance#", ""};
- { 3, 20047, "", "=q3=Highlander's Cloth Girdle", "=ds=", "3000 #alliance#", ""};
- { 4, 20054, "", "=q3=Highlander's Cloth Boots", "=ds=", "3000 #alliance#", ""};
- { 6, 0, "INV_BannerPVP_02", "=q6=#absa2#", "=ec1=#c6#, #c1#"};
- { 7, 20059, "", "=q4=Highlander's Leather Shoulders", "=ds=", "9000 #alliance#", ""};
- { 8, 20045, "", "=q3=Highlander's Leather Girdle", "=ds=", "3000 #alliance#", ""};
- { 9, 20052, "", "=q3=Highlander's Leather Boots", "=ds=", "3000 #alliance#", ""};
- { 11, 0, "INV_BannerPVP_02", "=q6=#absa3#", "=ec1=#c6#, #c1#"};
- { 12, 20060, "", "=q4=Highlander's Lizardhide Shoulders", "=ds=", "9000 #alliance#", ""};
- { 13, 20046, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "3000 #alliance#", ""};
- { 14, 20053, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "3000 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_02", "=q6=#absa4#", "=ec1=#c2#, #c7#"};
- { 17, 20055, "", "=q4=Highlander's Chain Pauldrons", "=ds=", "9000 #alliance#", ""};
- { 18, 20043, "", "=q3=Highlander's Chain Girdle", "=ds=", "3000 #alliance#", ""};
- { 19, 20050, "", "=q3=Highlander's Chain Greaves", "=ds=", "3000 #alliance#", ""};
- { 21, 0, "INV_BannerPVP_02", "=q6=#absa5#", "=ec1=#c2#, #c7#"};
- { 22, 20056, "", "=q4=Highlander's Mail Pauldrons", "=ds=", "9000 #alliance#", ""};
- { 23, 20044, "", "=q3=Highlander's Mail Girdle", "=ds=", "3000 #alliance#", ""};
- { 24, 20051, "", "=q3=Highlander's Mail Greaves", "=ds=", "3000 #alliance#", ""};
- { 26, 0, "INV_BannerPVP_02", "=q6=#absa6#", "=ec1=#c9#, #c4#"};
- { 27, 20057, "", "=q4=Highlander's Plate Spaulders", "=ds=", "9000 #alliance#", ""};
- { 28, 20041, "", "=q3=Highlander's Plate Girdle", "=ds=", "3000 #alliance#", ""};
- { 29, 20048, "", "=q3=Highlander's Plate Greaves", "=ds=", "3000 #alliance#", ""};
- Next = "ABSets2_A";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ABSets1_H"] = {
- { 1, 0, "INV_BannerPVP_01", "=q6=#absh1#", "=ec1=#c5#, #c3#, #c8#"};
- { 2, 20176, "", "=q4=Defiler's Epaulets", "=ds=", "9000 #horde#", ""};
- { 3, 20163, "", "=q3=Defiler's Cloth Girdle", "=ds=", "3000 #horde#", ""};
- { 4, 20159, "", "=q3=Defiler's Cloth Boots", "=ds=", "3000 #horde#", ""};
- { 6, 0, "INV_BannerPVP_01", "=q6=#absh2#", "=ec1=#c6#, #c1#"};
- { 7, 20194, "", "=q4=Defiler's Leather Shoulders", "=ds=", "9000 #horde#", ""};
- { 8, 20190, "", "=q3=Defiler's Leather Girdle", "=ds=", "3000 #horde#", ""};
- { 9, 20186, "", "=q3=Defiler's Leather Boots", "=ds=", "3000 #horde#", ""};
- { 11, 0, "INV_BannerPVP_01", "=q6=#absh3#", "=ec1=#c6#, #c1#"};
- { 12, 20175, "", "=q4=Defiler's Lizardhide Shoulders", "=ds=", "9000 #horde#", ""};
- { 13, 20171, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "3000 #horde#", ""};
- { 14, 20167, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "3000 #horde#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#absh4#", "=ec1=#c2#, #c7#"};
- { 17, 20158, "", "=q3=Defiler's Chain Pauldrons", "=ds=", "9000 #horde#", ""};
- { 18, 20150, "", "=q3=Defiler's Chain Girdle", "=ds=", "3000 #horde#", ""};
- { 19, 20154, "", "=q3=Defiler's Chain Greaves", "=ds=", "3000 #horde#", ""};
- { 21, 0, "INV_BannerPVP_01", "=q6=#absh5#", "=ec1=#c2#, #c7#"};
- { 22, 20203, "", "=q4=Defiler's Mail Pauldrons", "=ds=", "9000 #horde#", ""};
- { 23, 20195, "", "=q3=Defiler's Mail Girdle", "=ds=", "3000 #horde#", ""};
- { 24, 20199, "", "=q3=Defiler's Mail Greaves", "=ds=", "3000 #horde#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#absh6#", "=ec1=#c9#, #c4#"};
- { 17, 20212, "", "=q4=Defiler's Plate Spaulders", "=ds=", "9000 #horde#", ""};
- { 18, 20204, "", "=q3=Defiler's Plate Girdle", "=ds=", "3000 #horde#", ""};
- { 19, 20208, "", "=q3=Defiler's Plate Greaves", "=ds=", "3000 #horde#", ""};
- Next = "ABSets2_H";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ABSets2_A"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#absa7#", "=ec1=#c4#"};
- { 2, 20058, "", "=q4=Highlander's Lamellar Spaulders", "=ds=", "9000 #alliance#", ""};
- { 3, 20042, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "3000 #alliance#", ""};
- { 4, 20049, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "3000 #alliance#", ""};
- Prev = "ABSets1_A";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["ABSets2_H"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#absa7#", "=ec1=#c4#"};
- { 2, 20184, "", "=q4=Defiler's Lamellar Spaulders", "=ds=", "9000 #horde#", ""};
- { 3, 20177, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "3000 #horde#", ""};
- { 4, 20181, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "3000 #horde#", ""};
- Prev = "ABSets1_H";
- Back = "PVPMENU2";
- Type = "PVP";
+ 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["WSGMisc"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "=q5=#b3#"};
- { 2, 19506, "", "=q1=Silverwing Battle Tabard", "=ds=", "12000 #faction#", ""};
- { 5, 17348, "", "=q1=Major Healing Draught", "=ds=", "10 #silver# 2 #faction#", ""};
- { 6, 17349, "", "=q1=Superior Healing Draught", "=ds=", "5 #silver# 5 #faction#", ""};
- { 7, 19060, "", "=q1=Warsong Gulch Enriched Ration", "=ds=", "20 #silver#", ""};
- { 8, 19062, "", "=q1=Warsong Gulch Field Ration", "=ds=", "10 #silver#", ""};
- { 9, 19067, "", "=q1=Warsong Gulch Mageweave Bandage", "=ds=", "15 #silver#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", "=q5=#b4#"};
- { 17, 19505, "", "=q1=Warsong Battle Tabard", "=ds=", "12000 #faction#", ""};
- { 20, 17351, "", "=q1=Major Mana Draught", "=ds=", "10 #silver# 2 #faction#", ""};
- { 21, 17352, "", "=q1=Superior Mana Draught", "=ds=", "5 #silver# 5 #faction#", ""};
- { 22, 19061, "", "=q1=Warsong Gulch Iron Ration", "=ds=", "15 #silver#", ""};
- { 23, 19066, "", "=q1=Warsong Gulch Runecloth Bandage", "=ds=", "20 #silver#", ""};
- { 24, 19068, "", "=q1=Warsong Gulch Silk Bandage", "=ds=", "10 #silver#", ""};
- Next = "WSGAccessories_A";
- Back = "PVPMENU2";
- Type = "PVP";
+ 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["WSGAccessories_A"] = {
- { 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#", ""};
- Next = "WSGWeapons_A";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["WSGAccessories_H"] = {
- { 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#", ""};
- Next = "WSGWeapons_H";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["WSGWeapons_A"] = {
- { 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#", ""};
- Prev = "WSGAccessories_A";
- Next = "WSGArmor_A";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["WSGWeapons_H"] = {
- { 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#", ""};
- Prev = "WSGAccessories_H";
- Next = "WSGArmor_H";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["WSGArmor_A"] = {
- { 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#", ""};
- Prev = "WSGWeapons_A";
- Back = "PVPMENU2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["WSGArmor_H"] = {
- { 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#", ""};
- Prev = "WSGWeapons_H";
- Back = "PVPMENU2";
- Type = "PVP";
+ 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"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpeea1#", "=q5=#pvps4#"};
- { 2, 6116451, "", "=q4=High Warlord's Dragonhide Helmet, =ds=", "2370 #arena# #alliance#", ""};
- { 3, 6116449, "", "=q4=High Warlord's Dragonhide Epaulets, =ds=", "1930 #arena# #alliance#", ""};
- { 4, 6116452, "", "=q4=High Warlord's Dragonhide Hauberk, =ds=", "2370 #arena# #alliance#", ""};
- { 5, 6116448, "", "=q4=High High Warlord's Dragonhide Gloves, =ds=", "1430 #arena# #alliance#", ""};
- { 6, 6116450, "", "=q4=High High Warlord's Dragonhide Leggings, =ds=", "2370 #arena# #alliance#", ""};
- { 7, 6116459, "", "=q4=High High Warlord's Dragonhide Boots, =ds=", "1430 #arena# #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpea1#", "=q5=#pvps1#"};
- { 10, 16451, "", "=q4=Field Marshal's Dragonhide Helmet", "=ds=", "68200 #alliance#", ""};
- { 11, 16449, "", "=q4=Field Marshal's Dragonhide Spaulders", "=ds=", "52200 #alliance#", ""};
- { 12, 16452, "", "=q4=Field Marshal's Dragonhide Breastplate", "=ds=", "68200 #alliance#", ""};
- { 13, 16448, "", "=q4=Marshal's Dragonhide Gauntlets", "=ds=", "52200 #alliance#", ""};
- { 14, 16450, "", "=q4=Marshal's Dragonhide Legguards", "=ds=", "68200 #alliance#", ""};
- { 15, 16459, "", "=q4=Marshal's Dragonhide Boots", "=ds=", "52200 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeeh1#", "=q5=#pvps4#"};
- { 17, 6116550, "", "=q4=Grand Marshal's Chain Helm, =ds=", "2370 #arena# #horde#", ""};
- { 18, 6116551, "", "=q4=Grand Marshal's Chain Spaulders, =ds=", "1930 #arena# #horde#", ""};
- { 19, 6116549, "", "=q4=Grand Marshal's Chain Breastplate, =ds=", "2370 #arena# #horde#", ""};
- { 20, 6116555, "", "=q4=Grand Marshal's Chain Grips, =ds=", "1430 #arena# #horde#", ""};
- { 21, 6116552, "", "=q4=Grand Marshal's Chain Legguards, =ds=", "2370 #arena# #horde#", ""};
- { 22, 6116554, "", "=q4=Grand Marshal's Chain Boots, =ds=", "1430 #arena# #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvpeh1#", "=q5=#pvps1#"};
- { 25, 16550, "", "=q4=Warlord's Dragonhide Helmet", "=ds=", "68200 #horde#", ""};
- { 26, 16551, "", "=q4=Warlord's Dragonhide Epaulets", "=ds=", "52200 #horde#", ""};
- { 27, 16549, "", "=q4=Warlord's Dragonhide Hauberk", "=ds=", "68200 #horde#", ""};
- { 28, 16555, "", "=q4=General's Dragonhide Gloves", "=ds=", "52200 #horde#", ""};
- { 29, 16552, "", "=q4=General's Dragonhide Leggings", "=ds=", "68200 #horde#", ""};
- { 30, 16554, "", "=q4=General's Dragonhide Boots", "=ds=", "52200 #horde#", ""};
- Back = "PVPSET";
- Next = "PVPDruid2";
-};
-
-AtlasLoot_Data["PVPDruid2"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpra1#", "=q5=#pvps2#"};
- { 2, 23308, "", "=q3=Lieutenant Commander's Dragonhide Headguard", "=ds=", "24000 #alliance#", ""};
- { 3, 23309, "", "=q3=Lieutenant Commander's Dragonhide Shoulders", "=ds=", "14000 #alliance#", ""};
- { 4, 23294, "", "=q3=Knight-Captain's Dragonhide Chestpiece", "=ds=", "24000 #alliance#", ""};
- { 5, 23280, "", "=q3=Knight-Lieutenant's Dragonhide Grips", "=ds=", "14000 #alliance#", ""};
- { 6, 23295, "", "=q3=Knight-Captain's Dragonhide Leggings", "=ds=", "24000 #alliance#", ""};
- { 7, 23281, "", "=q3=Knight-Lieutenant's Dragonhide Treads", "=ds=", "14000 #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra1#", "=q5=#pvps3#"};
- { 10, 16424, "", "=q3=Lieutenant Commander's Dragonhide Headguard, =ds=", "9435 #alliance#", ""};
- { 11, 16423, "", "=q3=Lieutenant Commander's Dragonhide Shoulders, =ds=", "6885 #alliance#", ""};
- { 12, 16421, "", "=q3=Knight-Captain's Dragonhide Chestpiece, =ds=", "9435 #alliance#", ""};
- { 13, 16397, "", "=q3=Knight-Lieutenant's Dragonhide Grips, =ds=", "5000 #alliance#", ""};
- { 14, 16422, "", "=q3=Knight-Captain's Dragonhide Leggings, =ds=", "9435 #alliance#", ""};
- { 15, 16393, "", "=q3=Knight-Lieutenant's Dragonhide Treads, =ds=", "5000 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvprh1#", "=q5=#pvps2#"};
- { 17, 23253, "", "=q3=Champion's Dragonhide Headguard", "=ds=", "24000 #horde#", ""};
- { 18, 23254, "", "=q3=Champion's Dragonhide Shoulders", "=ds=", "14000 #horde#", ""};
- { 19, 22877, "", "=q3=Legionnaire's Dragonhide Chestpiece", "=ds=", "24000 #horde#", ""};
- { 20, 22863, "", "=q3=Blood Guard's Dragonhide Grips", "=ds=", "14000 #horde#", ""};
- { 21, 22878, "", "=q3=Legionnaire's Dragonhide Leggings", "=ds=", "24000 #horde#", ""};
- { 22, 22852, "", "=q3=Blood Guard's Dragonhide Treads", "=ds=", "14000 #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh1#", "=q5=#pvps3#"};
- { 25, 16503, "", "=q3=Champion's Dragonhide Headguard, =ds=", "9435 #horde#", ""};
- { 26, 16501, "", "=q3=Champion's Dragonhide Shoulders, =ds=", "6885 #horde#", ""};
- { 27, 16504, "", "=q3=Legionnaire's Dragonhide Chestpiece, =ds=", "9435 #horde#", ""};
- { 28, 16496, "", "=q3=Blood Guard's Dragonhide Grips, =ds=", "5000 #horde#", ""};
- { 29, 16502, "", "=q3=Legionnaire's Dragonhide Leggings, =ds=", "9435 #horde#", ""};
- { 30, 16494, "", "=q3=Blood Guard's Dragonhide Treads, =ds=", "5000 #horde#", ""};
- Back = "PVPSET";
- Prev = "PVPDruid";
-};
+ 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"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpeea2#", "=q5=#pvps4#"};
- { 2, 6116465, "", "=q4=Grand Marshal's Chain Helm, =ds=", "2370 #arena# #alliance#", ""};
- { 3, 6116468, "", "=q4=Grand Marshal's Chain Spaulders, =ds=", "1930 #arena# #alliance#", ""};
- { 4, 6116466, "", "=q4=Grand Marshal's Chain Breastplate, =ds=", "2370 #arena# #alliance#", ""};
- { 5, 6116463, "", "=q4=Grand Marshal's Chain Grips, =ds=", "1430 #arena# #alliance#", ""};
- { 6, 6116467, "", "=q4=Grand Marshal's Chain Legguards, =ds=", "2370 #arena# #alliance#", ""};
- { 7, 6116462, "", "=q4=Grand Marshal's Chain Boots, =ds=", "1430 #arena# #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpea2#", "=q5=#pvps1#"};
- { 10, 16465, "", "=q4=Field Marshal's Chain Helm", "=ds=", "68200 #alliance#", ""};
- { 11, 16468, "", "=q4=Field Marshal's Chain Spaulders", "=ds=", "52200 #alliance#", ""};
- { 12, 16466, "", "=q4=Field Marshal's Chain Breastplate", "=ds=", "68200 #alliance#", ""};
- { 13, 16463, "", "=q4=Marshal's Chain Grips", "=ds=", "52200 #alliance#", ""};
- { 14, 16467, "", "=q4=Marshal's Chain Legguards", "=ds=", "68200 #alliance#", ""};
- { 15, 16462, "", "=q4=Marshal's Chain Boots", "=ds=", "52200 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeeh2#", "=q5=#pvps4#"};
- { 17, 6116566, "", "=q4=High Warlord's Chain Helmet, =ds=", "2370 #arena# #horde#", ""};
- { 18, 6116568, "", "=q4=High Warlord's Chain Shoulders, =ds=", "1930 #arena# #horde#", ""};
- { 19, 6116565, "", "=q4=High Warlord's Chain Chestpiece, =ds=", "2370 #arena# #horde#", ""};
- { 20, 6116571, "", "=q4=High High Warlord's Chain Gloves, =ds=", "1430 #arena# #horde#", ""};
- { 21, 6116567, "", "=q4=High High Warlord's Chain Legguards, =ds=", "2370 #arena# #horde#", ""};
- { 22, 6116569, "", "=q4=High High Warlord's Chain Boots, =ds=", "1430 #arena# #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvpeh2#", "=q5=#pvps1#"};
- { 25, 16566, "", "=q4=Warlord's Chain Helmet", "=ds=", "68200 #horde#", ""};
- { 26, 16568, "", "=q4=Warlord's Chain Shoulders", "=ds=", "52200 #horde#", ""};
- { 27, 16565, "", "=q4=Warlord's Chain Chestpiece", "=ds=", "68200 #horde#", ""};
- { 28, 16571, "", "=q4=General's Chain Gloves", "=ds=", "52200 #horde#", ""};
- { 29, 16567, "", "=q4=General's Chain Legguards", "=ds=", "68200 #horde#", ""};
- { 30, 16569, "", "=q4=General's Chain Boots", "=ds=", "52200 #horde#", ""};
- Back = "PVPSET";
- Next = "PVPHunter2";
-};
-
-AtlasLoot_Data["PVPHunter2"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpra2#", "=q5=#pvps2#"};
- { 2, 23306, "", "=q3=Lieutenant Commander's Chain Helm", "=ds=", "24000 #alliance#", ""};
- { 3, 23307, "", "=q3=Lieutenant Commander's Chain Shoulders", "=ds=", "14000 #alliance#", ""};
- { 4, 23292, "", "=q3=Knight-Captain's Chain Hauberk", "=ds=", "24000 #alliance#", ""};
- { 5, 23279, "", "=q3=Knight-Lieutenant's Chain Vices", "=ds=", "14000 #alliance#", ""};
- { 6, 23293, "", "=q3=Knight-Captain's Chain Legguards", "=ds=", "24000 #alliance#", ""};
- { 7, 23278, "", "=q3=Knight-Lieutenant's Chain Greaves", "=ds=", "14000 #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra2#", "=q5=#pvps3#"};
- { 10, 16428, "", "=q3=Lieutenant Commander's Chain Helm, =ds=", "9435 #alliance#", ""};
- { 11, 16427, "", "=q3=Lieutenant Commander's Chain Shoulders, =ds=", "6885 #alliance#", ""};
- { 12, 16425, "", "=q3=Knight-Captain's Chain Hauberk, =ds=", "9435 #alliance#", ""};
- { 13, 16403, "", "=q3=Knight-Lieutenant's Chain Vices, =ds=", "5000 #alliance#", ""};
- { 14, 16426, "", "=q3=Knight-Captain's Chain Legguards, =ds=", "9435 #alliance#", ""};
- { 15, 16401, "", "=q3=Knight-Lieutenant's Chain Greaves, =ds=", "5000 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvprh2#", "=q5=#pvps2#"};
- { 17, 23251, "", "=q3=Champion's Chain Helm", "=ds=", "24000 #horde#", ""};
- { 18, 23252, "", "=q3=Champion's Chain Shoulders", "=ds=", "14000 #horde#", ""};
- { 19, 22874, "", "=q3=Legionnaire's Chain Hauberk", "=ds=", "24000 #horde#", ""};
- { 20, 22862, "", "=q3=Blood Guard's Chain Vices", "=ds=", "14000 #horde#", ""};
- { 21, 22875, "", "=q3=Legionnaire's Chain Legguards", "=ds=", "24000 #horde#", ""};
- { 22, 22843, "", "=q3=Blood Guard's Chain Greaves", "=ds=", "14000 #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh2#", "=q5=#pvps3#"};
- { 25, 16526, "", "=q3=Champion's Chain Helm, =ds=", "9435 #horde#", ""};
- { 26, 16528, "", "=q3=Champion's Chain Shoulders, =ds=", "6885 #horde#", ""};
- { 27, 16525, "", "=q3=Legionnaire's Chain Hauberk, =ds=", "9435 #horde#", ""};
- { 28, 16530, "", "=q3=Blood Guard's Chain Vices, =ds=", "5000 #horde#", ""};
- { 29, 16527, "", "=q3=Legionnaire's Chain Legguards, =ds=", "9435 #horde#", ""};
- { 30, 16531, "", "=q3=Blood Guard's Chain Greaves, =ds=", "5000 #horde#", ""};
- Back = "PVPSET";
- Prev = "PVPHunter";
-};
+
+ 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["PVPMage"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpeea3#", "=q5=#pvps4#"};
- { 2, 6116441, "", "=q4=Grand Marshal's Coronet, =ds=", "2370 #arena# #alliance#", ""};
- { 3, 6116444, "", "=q4=Grand Marshal's Silk Spaulders, =ds=", "1930 #arena# #alliance#", ""};
- { 4, 6116443, "", "=q4=Grand Marshal's Silk Vestments, =ds=", "2370 #arena# #alliance#", ""};
- { 5, 6116440, "", "=q4=Grand Marshal's Silk Gloves, =ds=", "1430 #arena# #alliance#", ""};
- { 6, 6116442, "", "=q4=Grand Marshal's Silk Leggings, =ds=", "2370 #arena# #alliance#", ""};
- { 7, 6116437, "", "=q4=Grand Marshal's Silk Footwraps, =ds=", "1430 #arena# #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpea3#", "=q5=#pvps1#"};
- { 10, 16441, "", "=q4=Field Marshal's Coronet", "=ds=", "68200 #alliance#", ""};
- { 11, 16444, "", "=q4=Field Marshal's Silk Spaulders", "=ds=", "52200 #alliance#", ""};
- { 12, 16443, "", "=q4=Field Marshal's Silk Vestments", "=ds=", "68200 #alliance#", ""};
- { 13, 16440, "", "=q4=Marshal's Silk Gloves", "=ds=", "52200 #alliance#", ""};
- { 14, 16442, "", "=q4=Marshal's Silk Leggings", "=ds=", "68200 #alliance#", ""};
- { 15, 16437, "", "=q4=Marshal's Silk Footwraps", "=ds=", "52200 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeeh3#", "=q5=#pvps4#"};
- { 17, 6116533, "", "=q4=High Warlord's Silk Cowl, =ds=", "2370 #arena# #horde#", ""};
- { 18, 6116536, "", "=q4=High Warlord's Silk Amice, =ds=", "1930 #arena# #horde#", ""};
- { 19, 6116535, "", "=q4=High Warlord's Silk Raiment, =ds=", "2370 #arena# #horde#", ""};
- { 20, 6116540, "", "=q4=High High Warlord's Silk Handguards, =ds=", "1430 #arena# #horde#", ""};
- { 21, 6116534, "", "=q4=High High Warlord's Silk Trousers, =ds=", "2370 #arena# #horde#", ""};
- { 22, 6116539, "", "=q4=High High Warlord's Silk Boots, =ds=", "1430 #arena# #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvpeh3#", "=q5=#pvps1#"};
- { 25, 16533, "", "=q4=Warlord's Silk Cowl", "=ds=", "68200 #horde#", ""};
- { 26, 16536, "", "=q4=Warlord's Silk Amice", "=ds=", "52200 #horde#", ""};
- { 27, 16535, "", "=q4=Warlord's Silk Raiment", "=ds=", "68200 #horde#", ""};
- { 28, 16540, "", "=q4=General's Silk Handguards", "=ds=", "52200 #horde#", ""};
- { 29, 16534, "", "=q4=General's Silk Trousers", "=ds=", "68200 #horde#", ""};
- { 30, 16539, "", "=q4=General's Silk Boots", "=ds=", "52200 #horde#", ""};
- Back = "PVPSET";
- Next = "PVPMage2";
-};
+ 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, 15499, "", "=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["PVPMage2"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpra3#", "=q5=#pvps2#"};
- { 2, 23318, "", "=q3=Lieutenant Commander's Silk Cowl", "=ds=", "24000 #alliance#", ""};
- { 3, 23319, "", "=q3=Lieutenant Commander's Silk Mantle", "=ds=", "14000 #alliance#", ""};
- { 4, 23305, "", "=q3=Knight-Captain's Silk Tunic", "=ds=", "24000 #alliance#", ""};
- { 5, 23290, "", "=q3=Knight-Lieutenant's Silk Handwraps", "=ds=", "14000 #alliance#", ""};
- { 6, 23304, "", "=q3=Knight-Captain's Silk Legguards", "=ds=", "24000 #alliance#", ""};
- { 7, 23291, "", "=q3=Knight-Lieutenant's Silk Walkers", "=ds=", "14000 #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra3#", "=q5=#pvps3#"};
- { 10, 16416, "", "=q3=Lieutenant Commander's Silk Cowl, =ds=", "9435 #alliance#", ""};
- { 11, 16415, "", "=q3=Lieutenant Commander's Silk Mantle, =ds=", "6885 #alliance#", ""};
- { 12, 16413, "", "=q3=Knight-Captain's Silk Tunic, =ds=", "9435 #alliance#", ""};
- { 13, 16391, "", "=q3=Knight-Lieutenant's Silk Handwraps, =ds=", "5000 #alliance#", ""};
- { 14, 16414, "", "=q3=Knight-Captain's Silk Legguards, =ds=", "9435 #alliance#", ""};
- { 15, 16369, "", "=q3=Knight-Lieutenant's Silk Walkers, =ds=", "5000 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvprh3#", "=q5=#pvps2#"};
- { 17, 23263, "", "=q3=Champion's Silk Cowl", "=ds=", "24000 #horde#", ""};
- { 18, 23264, "", "=q3=Champion's Silk Mantle", "=ds=", "14000 #horde#", ""};
- { 19, 22886, "", "=q3=Legionnaire's Silk Tunic", "=ds=", "24000 #horde#", ""};
- { 20, 22870, "", "=q3=Blood Guard's Silk Handwraps", "=ds=", "14000 #horde#", ""};
- { 21, 22883, "", "=q3=Legionnaire's Silk Legguards", "=ds=", "24000 #horde#", ""};
- { 22, 22860, "", "=q3=Blood Guard's Silk Walkers", "=ds=", "14000 #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh3#", "=q5=#pvps3#"};
- { 25, 16489, "", "=q3=Champion's Silk Cowl, =ds=", "9435 #horde#", ""};
- { 26, 16492, "", "=q3=Champion's Silk Mantle, =ds=", "6885 #horde#", ""};
- { 27, 16491, "", "=q3=Legionnaire's Silk Tunic, =ds=", "9435 #horde#", ""};
- { 28, 16487, "", "=q3=Blood Guard's Silk Handwraps, =ds=", "5000 #horde#", ""};
- { 29, 16490, "", "=q3=Legionnaire's Silk Legguards, =ds=", "9435 #horde#", ""};
- { 30, 16485, "", "=q3=Blood Guard's Silk Walkers, =ds=", "5000 #horde#", ""};
- Back = "PVPSET";
- Prev = "PVPMage";
-};
+ 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["PVPPaladin"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpeea4#", "=q5=#pvps4#"};
- { 2, 6116474, "", "=q4=Grand Marshal's Lamellar Faceguard, =ds=", "2370 #arena# #alliance#", ""};
- { 3, 6116476, "", "=q4=Grand Marshal's Lamellar Pauldrons, =ds=", "1930 #arena# #alliance#", ""};
- { 4, 6116473, "", "=q4=Grand Marshal's Lamellar Chestplate, =ds=", "2370 #arena# #alliance#", ""};
- { 5, 6116471, "", "=q4=Grand Marshal's Lamellar Gloves, =ds=", "1430 #arena# #alliance#", ""};
- { 6, 6116475, "", "=q4=Grand Marshal's Lamellar Legplates, =ds=", "2370 #arena# #alliance#", ""};
- { 7, 6116472, "", "=q4=Grand Marshal's Lamellar Boots, =ds=", "1430 #arena# #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpea4#", "=q5=#pvps1#"};
- { 10, 16474, "", "=q4=Field Marshal's Lamellar Faceguard", "=ds=", "68200 #alliance#", ""};
- { 11, 16476, "", "=q4=Field Marshal's Lamellar Pauldrons", "=ds=", "52200 #alliance#", ""};
- { 12, 16473, "", "=q4=Field Marshal's Lamellar Chestplate", "=ds=", "68200 #alliance#", ""};
- { 13, 16471, "", "=q4=Marshal's Lamellar Gloves", "=ds=", "52200 #alliance#", ""};
- { 14, 16475, "", "=q4=Marshal's Lamellar Legplates", "=ds=", "68200 #alliance#", ""};
- { 15, 16472, "", "=q4=Marshal's Lamellar Boots", "=ds=", "52200 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeeh9#", "=q5=#pvps4#"};
- { 17, 6129616, "", "=q4=High Warlord's Lamellar Faceguard, =ds=", "2370 #arena# #horde#", ""};
- { 18, 6129617, "", "=q4=High Warlord's Lamellar Pauldrons, =ds=", "1930 #arena# #horde#", ""};
- { 19, 6129615, "", "=q4=High Warlord's Lamellar Chestplate, =ds=", "2370 #arena# #horde#", ""};
- { 20, 6129613, "", "=q4=High High Warlord's Lamellar Gloves, =ds=", "1430 #arena# #horde#", ""};
- { 21, 6129614, "", "=q4=High High Warlord's Lamellar Legplates, =ds=", "2370 #arena# #horde#", ""};
- { 22, 6129612, "", "=q4=High High Warlord's Lamellar Boots, =ds=", "1430 #arena# #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvpeh9#", "=q5=#pvps1#"};
- { 25, 29616, "", "=q4=Warlord's Lamellar Faceguard", "=ds=", "68200 #horde#", ""};
- { 26, 29617, "", "=q4=Warlord's Lamellar Pauldrons", "=ds=", "52200 #horde#", ""};
- { 27, 29615, "", "=q4=Warlord's Lamellar Chestplate", "=ds=", "68200 #horde#", ""};
- { 28, 29613, "", "=q4=General's Lamellar Gloves", "=ds=", "52200 #horde#", ""};
- { 29, 29614, "", "=q4=General's Lamellar Legplates", "=ds=", "68200 #horde#", ""};
- { 30, 29612, "", "=q4=General's Lamellar Boots", "=ds=", "52200 #horde#", ""};
- Back = "PVPSET";
- Next = "PVPPaladin2";
-};
-
-AtlasLoot_Data["PVPPaladin2"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpra4#", "=q5=#pvps2#"};
- { 2, 23276, "", "=q3=Lieutenant Commander's Lamellar Headguard", "=ds=", "24000 #alliance#", ""};
- { 3, 23277, "", "=q3=Lieutenant Commander's Lamellar Shoulders", "=ds=", "14000 #alliance#", ""};
- { 4, 23272, "", "=q3=Knight-Captain's Lamellar Breastplate", "=ds=", "24000 #alliance#", ""};
- { 5, 23274, "", "=q3=Knight-Lieutenant's Lamellar Gauntlets", "=ds=", "14000 #alliance#", ""};
- { 6, 23273, "", "=q3=Knight-Captain's Lamellar Leggings", "=ds=", "24000 #alliance#", ""};
- { 7, 23275, "", "=q3=Knight-Lieutenant's Lamellar Sabatons", "=ds=", "14000 #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra4#", "=q5=#pvps3#"};
- { 10, 16434, "", "=q3=Lieutenant Commander's Lamellar Headguard, =ds=", "9435 #alliance#", ""};
- { 11, 16436, "", "=q3=Lieutenant Commander's Lamellar Shoulders, =ds=", "6885 #alliance#", ""};
- { 12, 16433, "", "=q3=Knight-Captain's Lamellar Breastplate, =ds=", "9435 #alliance#", ""};
- { 13, 16410, "", "=q3=Knight-Lieutenant's Lamellar Gauntlets, =ds=", "5000 #alliance#", ""};
- { 14, 16435, "", "=q3=Knight-Captain's Lamellar Leggings, =ds=", "9435 #alliance#", ""};
- { 15, 16409, "", "=q3=Knight-Lieutenant's Lamellar Sabatons, =ds=", "5000 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvprh9#", "=q5=#pvps2#"};
- { 17, 29604, "", "=q3=Champion's Lamellar Headguard", "=ds=", "24000 #horde#", ""};
- { 18, 29605, "", "=q3=Champion's Lamellar Shoulders", "=ds=", "14000 #horde#", ""};
- { 19, 29602, "", "=q3=Legionnaire's Lamellar Breastplate", "=ds=", "24000 #horde#", ""};
- { 20, 29600, "", "=q3=Blood Guard's Lamellar Gauntlets", "=ds=", "14000 #horde#", ""};
- { 21, 29603, "", "=q3=Legionnaire's Lamellar Leggings", "=ds=", "24000 #horde#", ""};
- { 22, 29601, "", "=q3=Blood Guard's Lamellar Sabatons", "=ds=", "14000 #horde#", ""};
- Back = "PVPSET";
- Prev = "PVPPaladin";
-};
-
-
-AtlasLoot_Data["PVPPriest"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpeea5#", "=q5=#pvps4#"};
- { 2, 6117602, "", "=q4=Grand Marshal's Headdress, =ds=", "2370 #arena# #alliance#", ""};
- { 3, 6117604, "", "=q4=Grand Marshal's Satin Mantle, =ds=", "1930 #arena# #alliance#", ""};
- { 4, 6117605, "", "=q4=Grand Marshal's Satin Vestments, =ds=", "2370 #arena# #alliance#", ""};
- { 5, 6117608, "", "=q4=Grand Marshal's Satin Gloves, =ds=", "1430 #arena# #alliance#", ""};
- { 6, 6117603, "", "=q4=Grand Marshal's Satin Pants, =ds=", "2370 #arena# #alliance#", ""};
- { 7, 6117607, "", "=q4=Grand Marshal's Satin Sandals, =ds=", "1430 #arena# #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpea5#", "=q5=#pvps1#"};
- { 10, 17602, "", "=q4=Field Marshal's Headdress", "=ds=", "68200 #alliance#", ""};
- { 11, 17604, "", "=q4=Field Marshal's Satin Mantle", "=ds=", "52200 #alliance#", ""};
- { 12, 17605, "", "=q4=Field Marshal's Satin Vestments", "=ds=", "68200 #alliance#", ""};
- { 13, 17608, "", "=q4=Marshal's Satin Gloves", "=ds=", "52200 #alliance#", ""};
- { 14, 17603, "", "=q4=Marshal's Satin Pants", "=ds=", "68200 #alliance#", ""};
- { 15, 17607, "", "=q4=Marshal's Satin Sandals", "=ds=", "52200 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeeh4#", "=q5=#pvps4#"};
- { 17, 6117623, "", "=q4=High Warlord's Satin Cowl, =ds=", "2370 #arena# #horde#", ""};
- { 18, 6117622, "", "=q4=High Warlord's Satin Mantle, =ds=", "1930 #arena# #horde#", ""};
- { 19, 6117624, "", "=q4=High Warlord's Satin Robes, =ds=", "2370 #arena# #horde#", ""};
- { 20, 6117620, "", "=q4=High High Warlord's Satin Gloves, =ds=", "1430 #arena# #horde#", ""};
- { 21, 6117625, "", "=q4=High High Warlord's Satin Leggings, =ds=", "2370 #arena# #horde#", ""};
- { 22, 6117618, "", "=q4=High High Warlord's Satin Boots, =ds=", "1430 #arena# #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvpeh4#", "=q5=#pvps1#"};
- { 25, 17623, "", "=q4=Warlord's Satin Cowl", "=ds=", "68200 #horde#", ""};
- { 26, 17622, "", "=q4=Warlord's Satin Mantle", "=ds=", "52200 #horde#", ""};
- { 27, 17624, "", "=q4=Warlord's Satin Robes", "=ds=", "68200 #horde#", ""};
- { 28, 17620, "", "=q4=General's Satin Gloves", "=ds=", "52200 #horde#", ""};
- { 29, 17625, "", "=q4=General's Satin Leggings", "=ds=", "68200 #horde#", ""};
- { 30, 17618, "", "=q4=General's Satin Boots", "=ds=", "52200 #horde#", ""};
- Back = "PVPSET";
- Next = "PVPPriest2";
-};
-
-AtlasLoot_Data["PVPPriest2"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpra5#", "=q5=#pvps2#"};
- { 2, 23316, "", "=q3=Lieutenant Commander's Satin Hood", "=ds=", "24000 #alliance#", ""};
- { 3, 23317, "", "=q3=Lieutenant Commander's Satin Mantle", "=ds=", "14000 #alliance#", ""};
- { 4, 23303, "", "=q3=Knight-Captain's Satin Tunic", "=ds=", "24000 #alliance#", ""};
- { 5, 23288, "", "=q3=Knight-Lieutenant's Satin Handwraps", "=ds=", "14000 #alliance#", ""};
- { 6, 23302, "", "=q3=Knight-Captain's Satin Legguards", "=ds=", "24000 #alliance#", ""};
- { 7, 23289, "", "=q3=Knight-Lieutenant's Satin Walkers", "=ds=", "14000 #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra5#", "=q5=#pvps3#"};
- { 10, 17598, "", "=q3=Lieutenant Commander's Satin Hood, =ds=", "9435 #alliance#", ""};
- { 11, 17601, "", "=q3=Lieutenant Commander's Satin Mantle, =ds=", "6885 #alliance#", ""};
- { 12, 17600, "", "=q3=Knight-Captain's Satin Tunic, =ds=", "9435 #alliance#", ""};
- { 13, 17596, "", "=q3=Knight-Lieutenant's Satin Handwraps, =ds=", "5000 #alliance#", ""};
- { 14, 17599, "", "=q3=Knight-Captain's Satin Legguards, =ds=", "9435 #alliance#", ""};
- { 15, 17594, "", "=q3=Knight-Lieutenant's Satin Walkers, =ds=", "5000 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvprh4#", "=q5=#pvps2#"};
- { 17, 23261, "", "=q3=Champion's Satin Hood", "=ds=", "24000 #horde#", ""};
- { 18, 23262, "", "=q3=Champion's Satin Mantle", "=ds=", "14000 #horde#", ""};
- { 19, 22885, "", "=q3=Legionnaire's Satin Tunic", "=ds=", "24000 #horde#", ""};
- { 20, 22869, "", "=q3=Blood Guard's Satin Handwraps", "=ds=", "14000 #horde#", ""};
- { 21, 22882, "", "=q3=Legionnaire's Satin Legguards", "=ds=", "24000 #horde#", ""};
- { 22, 22859, "", "=q3=Blood Guard's Satin Walkers", "=ds=", "14000 #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh4#", "=q5=#pvps3#"};
- { 25, 16489, "", "=q3=Champion's Satin Hood, =ds=", "9435 #horde#", ""};
- { 26, 16492, "", "=q3=Champion's Satin Mantle, =ds=", "6885 #horde#", ""};
- { 27, 16491, "", "=q3=Legionnaire's Satin Tunic, =ds=", "9435 #horde#", ""};
- { 28, 16487, "", "=q3=Blood Guard's Satin Handwraps, =ds=", "5000 #horde#", ""};
- { 29, 16490, "", "=q3=Legionnaire's Satin Legguards, =ds=", "9435 #horde#", ""};
- { 30, 16485, "", "=q3=Blood Guard's Satin Walkers, =ds=", "5000 #horde#", ""};
- Back = "PVPSET";
- Prev = "PVPPriest";
-};
-
-AtlasLoot_Data["PVPRogue"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpeea6#", "=q5=#pvps4#"};
- { 2, 6116455, "", "=q4=Grand Marshal's Leather Mask, =ds=", "2370 #arena# #alliance#", ""};
- { 3, 6116457, "", "=q4=Grand Marshal's Leather Epaulets, =ds=", "1930 #arena# #alliance#", ""};
- { 4, 6116453, "", "=q4=Grand Marshal's Leather Chestpiece, =ds=", "2370 #arena# #alliance#", ""};
- { 5, 6116454, "", "=q4=Grand Marshal's Leather Handgrips, =ds=", "1430 #arena# #alliance#", ""};
- { 6, 6116456, "", "=q4=Grand Marshal's Leather Leggings, =ds=", "2370 #arena# #alliance#", ""};
- { 7, 6116446, "", "=q4=Grand Marshal's Leather Footguards, =ds=", "1430 #arena# #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpea6#", "=q5=#pvps1#"};
- { 10, 16455, "", "=q4=Field Marshal's Leather Mask", "=ds=", "68200 #alliance#", ""};
- { 11, 16457, "", "=q4=Field Marshal's Leather Epaulets", "=ds=", "52200 #alliance#", ""};
- { 12, 16453, "", "=q4=Field Marshal's Leather Chestpiece", "=ds=", "68200 #alliance#", ""};
- { 13, 16454, "", "=q4=Marshal's Leather Handgrips", "=ds=", "52200 #alliance#", ""};
- { 14, 16456, "", "=q4=Marshal's Leather Leggings", "=ds=", "68200 #alliance#", ""};
- { 15, 16446, "", "=q4=Marshal's Leather Footguards", "=ds=", "52200 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeeh5#", "=q5=#pvps4#"};
- { 17, 6116561, "", "=q4=High Warlord's Leather Helm, =ds=", "2370 #arena# #horde#", ""};
- { 18, 6116562, "", "=q4=High Warlord's Leather Spaulders, =ds=", "1930 #arena# #horde#", ""};
- { 19, 6116563, "", "=q4=High Warlord's Leather Breastplate, =ds=", "2370 #arena# #horde#", ""};
- { 20, 6116560, "", "=q4=High High Warlord's Leather Mitts, =ds=", "1430 #arena# #horde#", ""};
- { 21, 6116564, "", "=q4=High High Warlord's Leather Legguards, =ds=", "2370 #arena# #horde#", ""};
- { 22, 6116558, "", "=q4=High High Warlord's Leather Treads, =ds=", "1430 #arena# #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvpeh5#", "=q5=#pvps1#"};
- { 25, 16561, "", "=q4=Warlord's Leather Helm", "=ds=", "68200 #horde#", ""};
- { 26, 16562, "", "=q4=Warlord's Leather Spaulders", "=ds=", "52200 #horde#", ""};
- { 27, 16563, "", "=q4=Warlord's Leather Breastplate", "=ds=", "68200 #horde#", ""};
- { 28, 16560, "", "=q4=General's Leather Mitts", "=ds=", "52200 #horde#", ""};
- { 29, 16564, "", "=q4=General's Leather Legguards", "=ds=", "68200 #horde#", ""};
- { 30, 16558, "", "=q4=General's Leather Treads", "=ds=", "52200 #horde#", ""};
- Back = "PVPSET";
- Next = "PVPRogue2";
-};
-
-AtlasLoot_Data["PVPRogue2"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpra6#", "=q5=#pvps2#"};
- { 2, 23312, "", "=q3=Lieutenant Commander's Leather Helm", "=ds=", "24000 #alliance#", ""};
- { 3, 23313, "", "=q3=Lieutenant Commander's Leather Shoulders", "=ds=", "14000 #alliance#", ""};
- { 4, 23298, "", "=q3=Knight-Captain's Leather Chestpiece", "=ds=", "24000 #alliance#", ""};
- { 5, 23284, "", "=q3=Knight-Lieutenant's Leather Grips", "=ds=", "14000 #alliance#", ""};
- { 6, 23299, "", "=q3=Knight-Captain's Leather Legguards", "=ds=", "24000 #alliance#", ""};
- { 7, 23285, "", "=q3=Knight-Lieutenant's Leather Walkers", "=ds=", "14000 #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra6#", "=q5=#pvps3#"};
- { 10, 16418, "", "=q3=Lieutenant Commander's Leather Helm, =ds=", "9435 #alliance#", ""};
- { 11, 16420, "", "=q3=Lieutenant Commander's Leather Shoulders, =ds=", "6885 #alliance#", ""};
- { 12, 16417, "", "=q3=Knight-Captain's Leather Chestpiece, =ds=", "9435 #alliance#", ""};
- { 13, 16396, "", "=q3=Knight-Lieutenant's Leather Grips, =ds=", "5000 #alliance#", ""};
- { 14, 16419, "", "=q3=Knight-Captain's Leather Legguards, =ds=", "9435 #alliance#", ""};
- { 15, 16392, "", "=q3=Knight-Lieutenant's Leather Walkers, =ds=", "5000 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvprh5#", "=q5=#pvps2#"};
- { 17, 23257, "", "=q3=Champion's Leather Helm", "=ds=", "24000 #horde#", ""};
- { 18, 23258, "", "=q3=Champion's Leather Shoulders", "=ds=", "14000 #horde#", ""};
- { 19, 22879, "", "=q3=Legionnaire's Leather Chestpiece", "=ds=", "24000 #horde#", ""};
- { 20, 22864, "", "=q3=Blood Guard's Leather Grips", "=ds=", "14000 #horde#", ""};
- { 21, 22880, "", "=q3=Legionnaire's Leather Legguards", "=ds=", "24000 #horde#", ""};
- { 22, 22856, "", "=q3=Blood Guard's Leather Walkers", "=ds=", "14000 #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh5#", "=q5=#pvps3#"};
- { 25, 16506, "", "=q3=Champion's Leather Helm, =ds=", "9435 #horde#", ""};
- { 26, 16507, "", "=q3=Champion's Leather Shoulders, =ds=", "6885 #horde#", ""};
- { 27, 16505, "", "=q3=Legionnaire's Leather Chestpiece, =ds=", "9435 #horde#", ""};
- { 28, 15499, "", "=q3=Blood Guard's Leather Grips, =ds=", "5000 #horde#", ""};
- { 29, 16508, "", "=q3=Legionnaire's Leather Legguards, =ds=", "9435 #horde#", ""};
- { 30, 16498, "", "=q3=Blood Guard's Leather Walkers, =ds=", "5000 #horde#", ""};
- Back = "PVPSET";
- Prev = "PVPRogue";
-};
-
-AtlasLoot_Data["PVPShaman"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpeea9#", "=q5=#pvps4#"};
- { 2, 6129610, "", "=q4=Grand Marshal's Mail Helm, =ds=", "2370 #arena# #alliance#", ""};
- { 3, 6129611, "", "=q4=Grand Marshal's Mail Spaulders, =ds=", "1930 #arena# #alliance#", ""};
- { 4, 6129609, "", "=q4=Grand Marshal's Mail Armor, =ds=", "2370 #arena# #alliance#", ""};
- { 5, 6129607, "", "=q4=Grand Marshal's Mail Gauntlets, =ds=", "1430 #arena# #alliance#", ""};
- { 6, 6129608, "", "=q4=Grand Marshal's Mail Leggings, =ds=", "2370 #arena# #alliance#", ""};
- { 7, 6129606, "", "=q4=Grand Marshal's Mail Boots, =ds=", "1430 #arena# #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpea9#", "=q5=#pvps1#"};
- { 10, 29610, "", "=q4=Field Marshal's Mail Helm", "=ds=", "68200 #alliance#", ""};
- { 11, 29611, "", "=q4=Field Marshal's Mail Spaulders", "=ds=", "52200 #alliance#", ""};
- { 12, 29609, "", "=q4=Field Marshal's Mail Armor", "=ds=", "68200 #alliance#", ""};
- { 13, 29607, "", "=q4=Marshal's Mail Gauntlets", "=ds=", "52200 #alliance#", ""};
- { 14, 29608, "", "=q4=Marshal's Mail Leggings", "=ds=", "68200 #alliance#", ""};
- { 15, 29606, "", "=q4=Marshal's Mail Boots", "=ds=", "52200 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeeh6#", "=q5=#pvps4#"};
- { 17, 6116578, "", "=q4=High Warlord's Mail Helm, =ds=", "2370 #arena# #horde#", ""};
- { 18, 6116580, "", "=q4=High Warlord's Mail Spaulders, =ds=", "1930 #arena# #horde#", ""};
- { 19, 6116577, "", "=q4=High Warlord's Mail Armor, =ds=", "2370 #arena# #horde#", ""};
- { 20, 6116574, "", "=q4=High High Warlord's Mail Gauntlets, =ds=", "1430 #arena# #horde#", ""};
- { 21, 6116579, "", "=q4=High High Warlord's Mail Leggings, =ds=", "2370 #arena# #horde#", ""};
- { 22, 6116573, "", "=q4=High High Warlord's Mail Boots, =ds=", "1430 #arena# #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvpeh6#", "=q5=#pvps1#"};
- { 25, 16578, "", "=q4=Warlord's Mail Helm", "=ds=", "68200 #horde#", ""};
- { 26, 16580, "", "=q4=Warlord's Mail Spaulders", "=ds=", "52200 #horde#", ""};
- { 27, 16577, "", "=q4=Warlord's Mail Armor", "=ds=", "68200 #horde#", ""};
- { 28, 16574, "", "=q4=General's Mail Gauntlets", "=ds=", "52200 #horde#", ""};
- { 29, 16579, "", "=q4=General's Mail Leggings", "=ds=", "68200 #horde#", ""};
- { 30, 16573, "", "=q4=General's Mail Boots", "=ds=", "52200 #horde#", ""};
- Back = "PVPSET";
- Next = "PVPShaman2";
-};
-
-AtlasLoot_Data["PVPShaman2"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpra9#", "=q5=#pvps2#"};
- { 2, 29598, "", "=q3=Lieutenant Commander's Mail Headguard", "=ds=", "24000 #alliance#", ""};
- { 3, 29599, "", "=q3=Lieutenant Commander's Mail Pauldrons", "=ds=", "14000 #alliance#", ""};
- { 4, 29596, "", "=q3=Knight-Captain's Mail Hauberk", "=ds=", "24000 #alliance#", ""};
- { 5, 29595, "", "=q3=Knight-Lieutenant's Mail Vices", "=ds=", "14000 #alliance#", ""};
- { 6, 29597, "", "=q3=Knight-Captain's Mail Legguards", "=ds=", "24000 #alliance#", ""};
- { 7, 29594, "", "=q3=Knight-Lieutenant's Mail Greaves", "=ds=", "14000 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvprh6#", "=q5=#pvps2#"};
- { 17, 23259, "", "=q3=Champion's Mail Headguard", "=ds=", "24000 #horde#", ""};
- { 18, 23260, "", "=q3=Champion's Mail Pauldrons", "=ds=", "14000 #horde#", ""};
- { 19, 22876, "", "=q3=Legionnaire's Mail Hauberk", "=ds=", "24000 #horde#", ""};
- { 20, 22867, "", "=q3=Blood Guard's Mail Vices", "=ds=", "14000 #horde#", ""};
- { 21, 22887, "", "=q3=Legionnaire's Mail Legguards", "=ds=", "24000 #horde#", ""};
- { 22, 22857, "", "=q3=Blood Guard's Mail Greaves", "=ds=", "14000 #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh6#", "=q5=#pvps3#"};
- { 25, 16521, "", "=q3=Champion's Mail Headguard, =ds=", "9435 #horde#", ""};
- { 26, 16524, "", "=q3=Champion's Mail Pauldrons, =ds=", "6885 #horde#", ""};
- { 27, 16522, "", "=q3=Legionnaire's Mail Hauberk, =ds=", "9435 #horde#", ""};
- { 28, 16519, "", "=q3=Blood Guard's Mail Vices, =ds=", "5000 #horde#", ""};
- { 29, 16523, "", "=q3=Legionnaire's Mail Legguards, =ds=", "9435 #horde#", ""};
- { 30, 16518, "", "=q3=Blood Guard's Mail Greaves, =ds=", "5000 #horde#", ""};
- Back = "PVPSET";
- Prev = "PVPShaman";
-};
-
-AtlasLoot_Data["PVPWarlock"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpeea7#", "=q5=#pvps4#"};
- { 2, 6117578, "", "=q4=Grand Marshal's Coronal, =ds=", "2370 #arena# #alliance#", ""};
- { 3, 6117580, "", "=q4=Grand Marshal's Dreadweave Shoulders, =ds=", "1930 #arena# #alliance#", ""};
- { 4, 6117581, "", "=q4=Grand Marshal's Dreadweave Robe, =ds=", "2370 #arena# #alliance#", ""};
- { 5, 6117584, "", "=q4=Grand Marshal's Dreadweave Gloves, =ds=", "1430 #arena# #alliance#", ""};
- { 6, 6117579, "", "=q4=Grand Marshal's Dreadweave Leggings, =ds=", "2370 #arena# #alliance#", ""};
- { 7, 6117583, "", "=q4=Grand Marshal's Dreadweave Boots, =ds=", "1430 #arena# #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpea7#", "=q5=#pvps1#"};
- { 10, 17578, "", "=q4=Field Marshal's Coronal", "=ds=", "68200 #alliance#", ""};
- { 11, 17580, "", "=q4=Field Marshal's Dreadweave Shoulders", "=ds=", "52200 #alliance#", ""};
- { 12, 17581, "", "=q4=Field Marshal's Dreadweave Robe", "=ds=", "68200 #alliance#", ""};
- { 13, 17584, "", "=q4=Marshal's Dreadweave Gloves", "=ds=", "52200 #alliance#", ""};
- { 14, 17579, "", "=q4=Marshal's Dreadweave Leggings", "=ds=", "68200 #alliance#", ""};
- { 15, 17583, "", "=q4=Marshal's Dreadweave Boots", "=ds=", "52200 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeeh7#", "=q5=#pvps4#"};
- { 17, 6117591, "", "=q4=High Warlord's Dreadweave Hood, =ds=", "2370 #arena# #horde#", ""};
- { 18, 6117590, "", "=q4=High Warlord's Dreadweave Mantle, =ds=", "1930 #arena# #horde#", ""};
- { 19, 6117592, "", "=q4=High Warlord's Dreadweave Robe, =ds=", "2370 #arena# #horde#", ""};
- { 20, 6117588, "", "=q4=High High Warlord's Dreadweave Gloves, =ds=", "1430 #arena# #horde#", ""};
- { 21, 6117593, "", "=q4=High High Warlord's Dreadweave Pants, =ds=", "2370 #arena# #horde#", ""};
- { 22, 6117586, "", "=q4=High High Warlord's Dreadweave Boots, =ds=", "1430 #arena# #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvpeh7#", "=q5=#pvps1#"};
- { 25, 17591, "", "=q4=Warlord's Dreadweave Hood", "=ds=", "68200 #horde#", ""};
- { 26, 17590, "", "=q4=Warlord's Dreadweave Mantle", "=ds=", "52200 #horde#", ""};
- { 27, 17592, "", "=q4=Warlord's Dreadweave Robe", "=ds=", "68200 #horde#", ""};
- { 28, 17588, "", "=q4=General's Dreadweave Gloves", "=ds=", "52200 #horde#", ""};
- { 29, 17593, "", "=q4=General's Dreadweave Pants", "=ds=", "68200 #horde#", ""};
- { 30, 17586, "", "=q4=General's Dreadweave Boots", "=ds=", "52200 #horde#", ""};
- Back = "PVPSET";
- Next = "PVPWarlock2";
-};
-
-AtlasLoot_Data["PVPWarlock2"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpra7#", "=q5=#pvps2#"};
- { 2, 23310, "", "=q3=Lieutenant Commander's Dreadweave Cowl", "=ds=", "24000 #alliance#", ""};
- { 3, 23311, "", "=q3=Lieutenant Commander's Dreadweave Spaulders", "=ds=", "14000 #alliance#", ""};
- { 4, 23297, "", "=q3=Knight-Captain's Dreadweave Tunic", "=ds=", "24000 #alliance#", ""};
- { 5, 23282, "", "=q3=Knight-Lieutenant's Dreadweave Handwraps", "=ds=", "14000 #alliance#", ""};
- { 6, 23296, "", "=q3=Knight-Captain's Dreadweave Legguards", "=ds=", "24000 #alliance#", ""};
- { 7, 23283, "", "=q3=Knight-Lieutenant's Dreadweave Walkers", "=ds=", "14000 #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra7#", "=q5=#pvps3#"};
- { 10, 17566, "", "=q3=Lieutenant Commander's Dreadweave Cowl, =ds=", "9435 #alliance#", ""};
- { 11, 17569, "", "=q3=Lieutenant Commander's Dreadweave Spaulders, =ds=", "6885 #alliance#", ""};
- { 12, 17568, "", "=q3=Knight-Captain's Dreadweave Tunic, =ds=", "9435 #alliance#", ""};
- { 13, 17564, "", "=q3=Knight-Lieutenant's Dreadweave Handwraps, =ds=", "5000 #alliance#", ""};
- { 14, 17567, "", "=q3=Knight-Captain's Dreadweave Legguards, =ds=", "9435 #alliance#", ""};
- { 15, 17562, "", "=q3=Knight-Lieutenant's Dreadweave Walkers, =ds=", "5000 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvprh7#", "=q5=#pvps2#"};
- { 17, 23255, "", "=q3=Champion's Dreadweave Cowl", "=ds=", "24000 #horde#", ""};
- { 18, 23256, "", "=q3=Champion's Dreadweave Spaulders", "=ds=", "14000 #horde#", ""};
- { 19, 22884, "", "=q3=Legionnaire's Dreadweave Tunic", "=ds=", "24000 #horde#", ""};
- { 20, 22865, "", "=q3=Blood Guard's Dreadweave Handwraps", "=ds=", "14000 #horde#", ""};
- { 21, 22881, "", "=q3=Legionnaire's Dreadweave Legguards", "=ds=", "24000 #horde#", ""};
- { 22, 22855, "", "=q3=Blood Guard's Dreadweave Walkers", "=ds=", "14000 #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh7#", "=q5=#pvps3#"};
- { 25, 17570, "", "=q3=Champion's Dreadweave Cowl, =ds=", "9435 #horde#", ""};
- { 26, 17573, "", "=q3=Champion's Dreadweave Spaulders, =ds=", "6885 #horde#", ""};
- { 27, 17572, "", "=q3=Legionnaire's Dreadweave Tunic, =ds=", "9435 #horde#", ""};
- { 28, 17577, "", "=q3=Blood Guard's Dreadweave Handwraps, =ds=", "5000 #horde#", ""};
- { 29, 17571, "", "=q3=Legionnaire's Dreadweave Legguards, =ds=", "9435 #horde#", ""};
- { 30, 17576, "", "=q3=Blood Guard's Dreadweave Walkers, =ds=", "5000 #horde#", ""};
- Back = "PVPSET";
- Prev = "PVPWarlock";
-};
-
-AtlasLoot_Data["PVPWarrior"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpeea8#", "=q5=#pvps4#"};
- { 2, 6116478, "", "=q4=Grand Marshal's Plate Helm, =ds=", "2370 #arena# #alliance#", ""};
- { 3, 6116480, "", "=q4=Grand Marshal's Plate Shoulderguards, =ds=", "1930 #arena# #alliance#", ""};
- { 4, 6116477, "", "=q4=Grand Marshal's Plate Armor, =ds=", "2370 #arena# #alliance#", ""};
- { 5, 6116484, "", "=q4=Grand Marshal's Plate Gauntlets, =ds=", "1430 #arena# #alliance#", ""};
- { 6, 6116479, "", "=q4=Grand Marshal's Plate Legguards, =ds=", "2370 #arena# #alliance#", ""};
- { 7, 6116483, "", "=q4=Grand Marshal's Plate Boots, =ds=", "1430 #arena# #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpea8#", "=q5=#pvps1#"};
- { 10, 16478, "", "=q4=Field Marshal's Plate Helm", "=ds=", "68200 #alliance#", ""};
- { 11, 16480, "", "=q4=Field Marshal's Plate Shoulderguards", "=ds=", "52200 #alliance#", ""};
- { 12, 16477, "", "=q4=Field Marshal's Plate Armor", "=ds=", "68200 #alliance#", ""};
- { 13, 16484, "", "=q4=Marshal's Plate Gauntlets", "=ds=", "52200 #alliance#", ""};
- { 14, 16479, "", "=q4=Marshal's Plate Legguards", "=ds=", "68200 #alliance#", ""};
- { 15, 16483, "", "=q4=Marshal's Plate Boots", "=ds=", "52200 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeeh8#", "=q5=#pvps4#"};
- { 17, 6116542, "", "=q4=High Warlord's Plate Headpiece, =ds=", "2370 #arena# #horde#", ""};
- { 18, 6116544, "", "=q4=High Warlord's Plate Shoulders, =ds=", "1930 #arena# #horde#", ""};
- { 19, 6116541, "", "=q4=High Warlord's Plate Armor, =ds=", "2370 #arena# #horde#", ""};
- { 20, 6116548, "", "=q4=High High Warlord's Plate Gauntlets, =ds=", "1430 #arena# #horde#", ""};
- { 21, 6116543, "", "=q4=High High Warlord's Plate Leggings, =ds=", "2370 #arena# #horde#", ""};
- { 22, 6116545, "", "=q4=High High Warlord's Plate Boots, =ds=", "1430 #arena# #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvpeh8#", "=q5=#pvps1#"};
- { 25, 16542, "", "=q4=Warlord's Plate Headpiece", "=ds=", "68200 #horde#", ""};
- { 26, 16544, "", "=q4=Warlord's Plate Shoulders", "=ds=", "52200 #horde#", ""};
- { 27, 16541, "", "=q4=Warlord's Plate Armor", "=ds=", "68200 #horde#", ""};
- { 28, 16548, "", "=q4=General's Plate Gauntlets", "=ds=", "52200 #horde#", ""};
- { 29, 16543, "", "=q4=General's Plate Leggings", "=ds=", "68200 #horde#", ""};
- { 30, 16545, "", "=q4=General's Plate Boots", "=ds=", "52200 #horde#", ""};
- Back = "PVPSET";
- Next = "PVPWarrior2";
-};
-
-AtlasLoot_Data["PVPWarrior2"] = {
- { 1, 0, "INV_BannerPVP_02", "=q6=#pvpra8#", "=q5=#pvps2#"};
- { 2, 23314, "", "=q3=Lieutenant Commander's Plate Helm", "=ds=", "24000 #alliance#", ""};
- { 3, 23315, "", "=q3=Lieutenant Commander's Plate Shoulders", "=ds=", "14000 #alliance#", ""};
- { 4, 23300, "", "=q3=Knight-Captain's Plate Hauberk", "=ds=", "24000 #alliance#", ""};
- { 5, 23286, "", "=q3=Knight-Lieutenant's Plate Gauntlets", "=ds=", "14000 #alliance#", ""};
- { 6, 23301, "", "=q3=Knight-Captain's Plate Leggings", "=ds=", "24000 #alliance#", ""};
- { 7, 23287, "", "=q3=Knight-Lieutenant's Plate Greaves", "=ds=", "14000 #alliance#", ""};
- { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra8#", "=q5=#pvps3#"};
- { 10, 16429, "", "=q3=Lieutenant Commander's Plate Helm, =ds=", "9435 #alliance#", ""};
- { 11, 16432, "", "=q3=Lieutenant Commander's Plate Shoulders, =ds=", "6885 #alliance#", ""};
- { 12, 16430, "", "=q3=Knight-Captain's Plate Hauberk, =ds=", "9435 #alliance#", ""};
- { 13, 16406, "", "=q3=Knight-Lieutenant's Plate Gauntlets, =ds=", "5000 #alliance#", ""};
- { 14, 16431, "", "=q3=Knight-Captain's Plate Leggings, =ds=", "9435 #alliance#", ""};
- { 15, 16405, "", "=q3=Knight-Lieutenant's Plate Greaves, =ds=", "5000 #alliance#", ""};
- { 16, 0, "INV_BannerPVP_01", "=q6=#pvprh8#", "=q5=#pvps2#"};
- { 17, 23244, "", "=q3=Champion's Plate Helm", "=ds=", "24000 #horde#", ""};
- { 18, 23243, "", "=q3=Champion's Plate Shoulders", "=ds=", "14000 #horde#", ""};
- { 19, 22872, "", "=q3=Legionnaire's Plate Hauberk", "=ds=", "24000 #horde#", ""};
- { 20, 22868, "", "=q3=Blood Guard's Plate Gauntlets", "=ds=", "14000 #horde#", ""};
- { 21, 22873, "", "=q3=Legionnaire's Plate Leggings", "=ds=", "24000 #horde#", ""};
- { 22, 22858, "", "=q3=Blood Guard's Plate Greaves", "=ds=", "14000 #horde#", ""};
- { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh8#", "=q5=#pvps3#"};
- { 25, 16514, "", "=q3=Champion's Plate Helm, =ds=", "9435 #horde#", ""};
- { 26, 16516, "", "=q3=Champion's Plate Shoulders, =ds=", "6885 #horde#", ""};
- { 27, 16513, "", "=q3=Legionnaire's Plate Hauberk, =ds=", "9435 #horde#", ""};
- { 28, 16510, "", "=q3=Blood Guard's Plate Gauntlets, =ds=", "5000 #horde#", ""};
- { 29, 16515, "", "=q3=Legionnaire's Plate Leggings, =ds=", "9435 #horde#", ""};
- { 30, 16509, "", "=q3=Blood Guard's Plate Greaves, =ds=", "5000 #horde#", ""};
- Back = "PVPSET";
- Prev = "PVPWarrior";
-};
+ 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["PVPWeapons_A"] = {
- { 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#", ""};
- Back = "PVPMENUCLASSIC";
- Next = "PVPWeapons_H";
- Type = "PVP";
+ 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["PVPWeapons_A2"] = {
- { 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#", ""};
- Back = "PVPMENUCLASSIC";
- Prev = "PVPWeapons_H";
- Next = "PVPWeapons_H2";
- Type = "PVP";
- };
-
-
- AtlasLoot_Data["PVPWeapons_H"] = {
- { 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#", ""};
- Back = "PVPMENUCLASSIC";
- Prev = "PVPWeapons_A";
- Next = "PVPWeapons_A2";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PVPWeapons_H2"] = {
- { 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#", ""};
- Back = "PVPMENUCLASSIC";
- Prev = "PVPWeapons_A2";
- Type = "PVP";
- };
-
--------------------------------
--- PvP Level 60 Accessories ---
--------------------------------
- AtlasLoot_Data["PvP60Accessories1_A"] = {
- { 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#", ""};
- Next = "PvP60Accessories2_A";
- Back = "PVPMENUCLASSIC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PvP60Accessories1_H"] = {
- { 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#", ""};
- Next = "PvP60Accessories2_H";
- Back = "PVPMENUCLASSIC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PvP60Accessories2_A"] = {
- { 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#", ""};
- Next = "PvP60Accessories3_A";
- Prev = "PvP60Accessories1_A";
- Back = "PVPMENUCLASSIC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PvP60Accessories2_H"] = {
- { 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#", ""};
- Next = "PvP60Accessories3_H";
- Prev = "PvP60Accessories1_H";
- Back = "PVPMENUCLASSIC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PvP60Accessories3_A"] = {
- { 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#", ""};
- Prev = "PvP60Accessories2_A";
- Back = "PVPMENUCLASSIC";
- Type = "PVP";
- };
-
- AtlasLoot_Data["PvP60Accessories3_H"] = {
- { 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#", ""};
- Prev = "PvP60Accessories2_H";
- Back = "PVPMENUCLASSIC";
- Type = "PVP";
+ 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"] = {
- { 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#", ""};
- Back = "PVPMENUCLASSIC";
- Type = "PVP";
+ 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 ---
diff --git a/AtlasLoot_WorldEvents/worldevents.lua b/AtlasLoot_WorldEvents/worldevents.lua
index 771b636..4a5fab2 100644
--- a/AtlasLoot_WorldEvents/worldevents.lua
+++ b/AtlasLoot_WorldEvents/worldevents.lua
@@ -1,6 +1,8 @@
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
+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")
-- Index
@@ -40,215 +42,197 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
--- Argent Tournament ---
-------------------------
- AtlasLoot_Data["ArgentTournament1"] = {
- { 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#"};
- Next = "ArgentTournament2";
- Back = "ARGENTMENU";
- };
-
- AtlasLoot_Data["ArgentTournament2"] = {
- { 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#"};
- Prev = "ArgentTournament1";
- Next = "ArgentTournament3";
- Back = "ARGENTMENU";
- };
-
- AtlasLoot_Data["ArgentTournament3"] = {
- { 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#" };
- Prev = "ArgentTournament2";
- Next = "ArgentTournament4";
- Back = "ARGENTMENU";
- };
-
- AtlasLoot_Data["ArgentTournament4"] = {
- { 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#" };
- Prev = "ArgentTournament3";
- Next = "ArgentTournament5";
- Back = "ARGENTMENU";
- };
-
- AtlasLoot_Data["ArgentTournament5"] = {
- { 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#"};
- Prev = "ArgentTournament4";
- Next = "ArgentTournament6";
- Back = "ARGENTMENU";
- };
-
- AtlasLoot_Data["ArgentTournament6"] = {
- { 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#"};
- Prev = "ArgentTournament5";
- Next = "ArgentTournament7";
- Back = "ARGENTMENU";
- };
-
- AtlasLoot_Data["ArgentTournament7"] = {
- { 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#"};
- Prev = "ArgentTournament6";
- Next = "ArgentTournament8";
- Back = "ARGENTMENU";
- };
-
- AtlasLoot_Data["ArgentTournament8"] = {
- { 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#"};
- Prev = "ArgentTournament7";
- Back = "ARGENTMENU";
+ 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#"};
+ };
};
-----------------------
@@ -259,120 +243,166 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
--- Brewfest ---
----------------
- AtlasLoot_Data["Brewfest1"] = {
- { 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#"};
- Next = "Brewfest2";
- Back = "WORLDEVENTMENU";
+ 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["Brewfest2"] = {
- { 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#"};
- Prev = "Brewfest1";
- Next = "Brewfest3";
- Back = "WORLDEVENTMENU";
+ AtlasLoot_Data["BrewfestTBC"] = {
+ Name = AL["Brewfest"];
+ brewfest.a;
+ brewfest.b;
+ brewfest.c;
+ brewfest.d;
+ brewfest.corenTBC;
};
- AtlasLoot_Data["Brewfest3"] = {
- { 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#"};
- Prev = "Brewfest2";
- Next = "BrewoftheMonthClub";
- Back = "WORLDEVENTMENU";
- };
-
- AtlasLoot_Data["BrewoftheMonthClub"] = {
- { 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#"};
- Prev = "Brewfest3";
- Next = "CorenDirebrew";
- Back = "WORLDEVENTMENU";
- };
-
- AtlasLoot_Data["CorenDirebrew"] = {
- { 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#"};
- { 10, 37828, "", "=q4=Great Brewfest Kodo", "=ds=#e12#"};
- { 11, 33977, "", "=q4=Swift Brewfest Ram", "=ds=#e12#"};
- { 12, 37863, "", "=q3=Direbrew's Remote", "=ds="};
- { 13, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#"};
- {16, 37128, "", "=q4=Balebrew Charm", "=ds=#s14#" };
- {17, 37127, "", "=q4=Brightbrew Charm", "=ds=#s14#" };
- {18, 38289, "", "=q4=Coren's Lucky Coin", "=ds=#s14#" };
- {19, 38290, "", "=q4=Dark Iron Smoking Pipe", "=ds=#s14#" };
- {20, 38288, "", "=q4=Direbrew Hops", "=ds=#s14#" };
- {21, 38287, "", "=q4=Empty Mug Of Direbrew", "=ds=#s14#" };
- {22, 37597, "", "=q4=Direbrew's Shanker", "=ds=#h1#, #w4#" };
- {23, 0,"","","" };
- {24, 38281, "", "=q1=Direbrew's Dire Brew", "=ds=#m2#" };
- {25, 34140, "", "=q3=Dark Iron Tankard", "=q1=#m4#: =ds=#s15#" };
- Prev = "BrewoftheMonthClub";
- Back = "WORLDEVENTMENU";
+ AtlasLoot_Data["BrewfestWRATH"] = {
+ Name = AL["Brewfest"];
+ brewfest.a;
+ brewfest.b;
+ brewfest.c;
+ brewfest.d;
+ brewfest.corenWRATH;
};
-----------------------
@@ -380,19 +410,22 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
-----------------------
AtlasLoot_Data["ChildrensWeek"] = {
- { 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#"};
- Back = "WORLDEVENTMENU";
+ 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#"};
+ };
};
-----------------------
@@ -400,90 +433,137 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
-----------------------
AtlasLoot_Data["DayoftheDead"] = {
- { 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#"};
- Back = "WORLDEVENTMENU";
+ 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["Winterviel1"] = {
- { 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#"};
- Next = "Winterviel2";
- Back = "WORLDEVENTMENU";
- };
-
- AtlasLoot_Data["Winterviel2"] = {
- { 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#"};
- Prev = "Winterviel1";
- Back = "WORLDEVENTMENU";
+ 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#"};
+ };
};
--------------------
--- 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#"};
+ };
- AtlasLoot_Data["Halloween1"] = {
+ 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 = {
+ { 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#", "", ""};
@@ -510,11 +590,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 27, 20389, "", "=q1=Candy Corn", "=ds=#e3#"};
{ 28, 20388, "", "=q1=Lollipop", "=ds=#e3#"};
{ 29, 20390, "", "=q1=Candy Bar", "=ds=#e3#"};
- Next = "Halloween2";
- Back = "WORLDEVENTMENU";
};
- AtlasLoot_Data["Halloween2"] = {
+ 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#"};
@@ -536,35 +615,27 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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#"};
- Next = "HeadlessHorseman";
- Prev = "Halloween1";
- Back = "WORLDEVENTMENU";
};
- AtlasLoot_Data["HeadlessHorseman"] = {
- {2, 2033808, "", "=q4=The Horseman's Helm", "=ds=#s1#, #a4#", "" };
- {3, 2034075, "", "=q4=Ring of Ghoulish Delight", "=ds=#s13#", "" };
- {4, 2034073, "", "=q4=The Horseman's Signet Ring", "=ds=#s13#", "" };
- {5, 2034074, "", "=q4=Witching Band", "=ds=#s13#", "" };
- {6, 2038175, "", "=q4=The Horseman's Blade", "=ds=#h3#, #w10#" };
- {8, 33808, "", "=q4=The Horseman's Helm", "=ds=#s1#, #a4#", "" };
- {9, 34075, "", "=q4=Ring of Ghoulish Delight", "=ds=#s13#", "" };
- {10, 34073, "", "=q4=The Horseman's Signet Ring", "=ds=#s13#", "" };
- {11, 34074, "", "=q4=Witching Band", "=ds=#s13#", "" };
- {12, 38175, "", "=q4=The Horseman's Blade", "=ds=#h3#, #w10#" };
- { 17, 49126, "", "=q4=The Horseman's Horrific Helm", "=ds=#s1#, #a4#"};
- { 18, 49121, "", "=q4=Ring of Ghoulish Glee", "=ds=#s13#"};
- { 19, 49123, "", "=q4=The Horseman's Seal", "=ds=#s13#"};
- { 20, 49124, "", "=q4=Wicked Witch's Band", "=ds=#s13#"};
- { 21, 49128, "", "=q4=The Horseman's Baleful Blade", "=ds=#h3#, #w10#"};
- { 23, 34068, "", "=q1=Weighted Jack-o'-Lantern", "=ds=#m20#", "", "100%"};
- { 24, 33226, "", "=q1=Tricky Treat", "=ds=#m20#"};
- { 25, 37012, "", "=q4=The Horseman's Reins", "=ds=#e12#"};
- { 26, 37011, "", "=q3=Magic Broom", "=ds=#e12#"};
- { 27, 33292, "", "=q3=Hallowed Helm", "=ds=#s1#, #a1#"};
- { 28, 33154, "", "=q3=Sinister Squashling", "=ds=#e13#"};
- Prev = "Halloween2";
- Back = "WORLDEVENTMENU";
+ 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;
};
------------------------
@@ -572,14 +643,17 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
------------------------
AtlasLoot_Data["HarvestFestival"] = {
- { 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#"};
- Back = "WORLDEVENTMENU";
+ 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#"};
+ };
};
--------------------------
@@ -587,137 +661,169 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
--------------------------
AtlasLoot_Data["Valentineday"] = {
- { 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#"};
- Next = "Valentineday2";
- Back = "WORLDEVENTMENU";
- };
-
- AtlasLoot_Data["Valentineday2"] = {
- { 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#"};
- Prev = "Valentineday";
- Next = "Valentineday3";
- Back = "WORLDEVENTMENU";
- };
-
- AtlasLoot_Data["Valentineday3"] = {
- { 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#"};
- Prev = "Valentineday2";
- Back = "WORLDEVENTMENU";
+ 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["LunarFestival1"] = {
- { 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#"};
- Next = "LunarFestival2";
- Back = "WORLDEVENTMENU";
- };
-
- AtlasLoot_Data["LunarFestival2"] = {
- { 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)"};
- Prev = "LunarFestival1";
- Back = "WORLDEVENTMENU";
+ 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)"};
+ };
};
-------------------------------
--- Midsummer Fire Festival ---
-------------------------------
- AtlasLoot_Data["MidsummerFestival"] = {
+ 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 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#"};
@@ -734,52 +840,23 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 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#"};
- Next = "LordAhune";
- Back = "WORLDEVENTMENU";
+ }
+
+ AtlasLoot_Data["MidsummerFestivalCLASSIC"] = {
+ Name = AL["Midsummer Fire Festival"];
+ midSummerMain;
};
- AtlasLoot_Data["LordAhune"] = {
- { 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#"};
- {20, 35497, "", "=q4=Cloak of the Frigid Winds", "=ds=#s4#" };
- {21, 35496, "", "=q4=Icebound Cloak", "=ds=#s4#" };
- {22, 35494, "", "=q4=Shroud of Winter's Chill", "=ds=#s4#" };
- {23, 35495, "", "=q4=The Frost Lord's War Cloak", "=ds=#s4#" };
- {24, 35514, "", "=q4=Frostscythe of Lord Ahune", "=ds=#w9#" };
- Prev = "MidsummerFestival";
- Back = "WORLDEVENTMENU";
+ AtlasLoot_Data["MidsummerFestivalTBC"] = {
+ Name = AL["Midsummer Fire Festival"];
+ midSummerMain;
+ lordAhuneTBC;
};
- AtlasLoot_Data["LordAhuneHEROIC"] = {
- {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#" };
- {5, 0,"","","" };
- {6, 35498, "", "=q3=Formula: Enchant Weapon - Deathfrost", "=ds=#p4# (350)" };
- {7, 34955, "", "=q3=Scorched Stone", "=ds=#e13#" };
- {8, 0,"","","" };
- {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#" };
- {12, 0,"","","" };
- {13, 0,"","","" };
- {14, 0,"","","" };
- {15, 0,"","","" };
- {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#" };
+
+ AtlasLoot_Data["MidsummerFestivalWRATH"] = {
+ Name = AL["Midsummer Fire Festival"];
+ midSummerMain;
+ lordAhuneWRATH;
};
-------------------
@@ -787,70 +864,51 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
-------------------
AtlasLoot_Data["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#"};
- Back = "WORLDEVENTMENU";
+ 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["PilgrimsBounty_A"] = {
- { 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="};
- { 23, 44812, "", "=q1=Turkey Shooter", "=q1=#m4#: =ds="};
- Back = "WORLDEVENTMENU";
- };
-
- AtlasLoot_Data["PilgrimsBounty_H"] = {
- { 1, 46810, "", "=q2=Bountiful Cookbook", "=ds=#p3# #e10# (1)"};
- { 2, 46803, "", "=q1=Recipe: Spice Bread Stuffing", "=ds=#p3# (1)"};
- { 3, 46804, "", "=q1=Recipe: Pumpkin Pie", "=ds=#p3# (100)"};
- { 4, 46805, "", "=q1=Recipe: Cranberry Chutney", "=ds=#p3# (160)"};
- { 5, 46806, "", "=q1=Recipe: Candied Sweet Potato", "=ds=#p3# (220)"};
- { 6, 46807, "", "=q1=Recipe: Slow-Roasted Turkey", "=ds=#p3# (280)"};
- { 7, 46888, "", "=q1=Bountiful Basket", "=ds=#e3#, #p3# (350)"};
- { 8, 46797, "", "=q1=Mulgore Sweet Potato", "=ds=#e3#"};
- { 9, 46793, "", "=q1=Tangy Southfury Cranberries ", "=ds=#e3#"};
- { 10, 46796, "", "=q1=Ripe Tirisfal 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="};
- { 23, 44812, "", "=q1=Turkey Shooter", "=q1=#m4#: =ds="};
- Back = "WORLDEVENTMENU";
+ 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="};
+ };
};
--------------------------
@@ -862,115 +920,111 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
-------------------------------------
AtlasLoot_Data["BashirLanding"] = {
- { 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=", "", ""};
- Back = "WORLDEVENTMENU";
- };
-
+ 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["Darkmoon1"] = {
- { 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#"};
- Next = "Darkmoon2";
- Back = "DARKMOONMENU";
- };
-
- AtlasLoot_Data["Darkmoon2"] = {
- { 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#"};
- Prev = "Darkmoon1";
- Next = "Darkmoon3";
- Back = "DARKMOONMENU";
- };
-
- AtlasLoot_Data["Darkmoon3"] = {
- { 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#"};
- Prev = "Darkmoon2";
- Next = "Darkmoon4";
- Back = "DARKMOONMENU";
- };
-
- AtlasLoot_Data["Darkmoon4"] = {
- { 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#"};
- Prev = "Darkmoon3";
- Back = "DARKMOONMENU";
+ 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#"};
+ };
};
--------------------------
@@ -978,25 +1032,28 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
--------------------------
AtlasLoot_Data["ElementalInvasion"] = {
- { 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%"};
- Back = "WORLDEVENTMENU";
+ 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%"};
+ };
};
---------------------------------
@@ -1004,13 +1061,16 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
---------------------------------
AtlasLoot_Data["GurubashiArena"] = {
- { 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#"};
- Back = "WORLDEVENTMENU";
+ 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#"};
+ };
};
------------------------------------------
@@ -1018,19 +1078,22 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
------------------------------------------
AtlasLoot_Data["FishingExtravaganza"] = {
- { 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#"};
- Back = "WORLDEVENTMENU";
+ 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#"};
+ };
};
------------------------
@@ -1041,212 +1104,209 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
--- Abyssal Council ---
-----------------------
- AtlasLoot_Data["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%"};
- Back = "ABYSSALMENU";
- };
-
- AtlasLoot_Data["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%"};
- Back = "ABYSSALMENU";
- };
-
- AtlasLoot_Data["HighCouncil"] = {
- { 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%"};
- Back = "ABYSSALMENU";
+ 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%"};
+ };
};
-----------------------
--- Ethereum Prison ---
-----------------------
- AtlasLoot_Data["ArmbreakerHuffaz"] = {
- { 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%"};
- Back = "ETHEREUMMENU";
- };
-
- AtlasLoot_Data["FelTinkererZortan"] = {
- { 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%"};
- Back = "ETHEREUMMENU";
- };
-
- AtlasLoot_Data["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%"};
- Back = "ETHEREUMMENU";
- };
-
- AtlasLoot_Data["Gulbor"] = {
- { 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%"};
- Back = "ETHEREUMMENU";
- };
-
- AtlasLoot_Data["MalevustheMad"] = {
- { 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%"};
- Back = "ETHEREUMMENU";
- };
-
- AtlasLoot_Data["PorfustheGemGorger"] = {
- { 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%"};
- Back = "ETHEREUMMENU";
- };
-
- AtlasLoot_Data["WrathbringerLaztarash"] = {
- { 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%"};
- Back = "ETHEREUMMENU";
- };
-
- AtlasLoot_Data["BashirStasisChambers"] = {
- { 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#", "", ""};
- Back = "ETHEREUMMENU";
+ 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#", "", ""};
+ };
};
----------------
@@ -1254,116 +1314,118 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
----------------
AtlasLoot_Data["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#"};
- Back = "WORLDEVENTMENU";
+ 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["DarkscreecherAkkarai"] = {
- { 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%"};
- Back = "SKETTISMENU";
- };
-
- AtlasLoot_Data["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%"};
- Back = "SKETTISMENU";
- };
-
- AtlasLoot_Data["GezzaraktheHuntress"] = {
- { 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%"};
- Back = "SKETTISMENU";
- };
-
- AtlasLoot_Data["VakkiztheWindrager"] = {
- { 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%"};
- Back = "SKETTISMENU";
- };
-
- AtlasLoot_Data["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%"};
- Back = "SKETTISMENU";
- };
-
- AtlasLoot_Data["SkettisTalonpriestIshaal"] = {
- { 1, 32523, "", "=q1=Ishaal's Almanac", "=ds=#m2#"};
- };
-
- AtlasLoot_Data["SkettisHazziksPackage"] = {
- { 1, 32687, "", "=q1=Hazzik's Package", "=ds=#m3#"};
+ 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#"};
+ };
};
-----------------------
@@ -1374,74 +1436,71 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
--- Scourge Invasion ---
------------------------
- AtlasLoot_Data["ScourgeInvasionEvent1"] = {
- { 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#"};
- Next = "ScourgeInvasionEvent2";
- Back = "WORLDEVENTMENU";
- };
-
- AtlasLoot_Data["ScourgeInvasionEvent2"] = {
- { 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#"};
- Prev = "ScourgeInvasionEvent1";
- Next = "ScourgeInvasionEvent3";
- Back = "WORLDEVENTMENU";
- };
-
- AtlasLoot_Data["ScourgeInvasionEvent3"] = {
- { 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%"};
- Prev = "ScourgeInvasionEvent2";
- Back = "WORLDEVENTMENU";
+ 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