From db7e75ae956f353b6cbdd492d1e40167fc27e051 Mon Sep 17 00:00:00 2001 From: Anch Date: Mon, 4 Mar 2024 06:38:52 +1300 Subject: [PATCH] 7.3.4 (#7) * update to release 7.3.1 * minor tweaks - tweaked the drop location text to display a bit more cleanly - added boss sigils to bc raid tables - added right click context menu to boss name list so you can open db to that boss (only has raids atm) - the All dungeon items list now wont precache past the normal loot * fixs and text display change - updated old locations to have new display - frame now sits on top when selected - fixed some incorrect ids * favorites button change/loot table updates - Changed how favorites buttons are saved you now alt right click them to save - Added missing new t0 sets to classic dungeon sets - Added missing new trash loot weapons to Black temple * minor changes/fixs - fixed t3 incorrect itemids - added heroic bloodforged --- AtlasLoot/AtlasLoot.toc | 4 +- AtlasLoot/Core/AtlasDifficulty.lua | 4 + AtlasLoot/Core/AtlasLoot.lua | 96 +- AtlasLoot/Core/TextParsing.lua | 22 - AtlasLoot/Core/Utils.lua | 3 + AtlasLoot/Databases/ItemIDsDatabaseFixes.lua | 27 +- .../AtlaslootDefaultFrameCreate.lua | 66 +- AtlasLoot/Menus/SetMenus.lua | 1 + AtlasLoot_BurningCrusade/burningcrusade.lua | 1315 +++++++++-------- AtlasLoot_OriginalWoW/originalwow.lua | 619 ++++---- 10 files changed, 1107 insertions(+), 1050 deletions(-) diff --git a/AtlasLoot/AtlasLoot.toc b/AtlasLoot/AtlasLoot.toc index aab00b8..ca1cf30 100644 --- a/AtlasLoot/AtlasLoot.toc +++ b/AtlasLoot/AtlasLoot.toc @@ -1,8 +1,8 @@ -## Interface: 30300 +## Interface: 30300 ## Title: AtlasLoot Ascension Edition ## Notes: Shows the possible loot from the bosses ## Author: v7 Rebuid Done by: Anch, Rvng -## Version: v7.3.2 +## Version: v7.3.5 ## X-eMail: ## X-Credits: Skray, Szyler and others. ## X-Category: Map diff --git a/AtlasLoot/Core/AtlasDifficulty.lua b/AtlasLoot/Core/AtlasDifficulty.lua index 4a460ab..3fcd00a 100644 --- a/AtlasLoot/Core/AtlasDifficulty.lua +++ b/AtlasLoot/Core/AtlasDifficulty.lua @@ -34,6 +34,7 @@ {"Mythic", 5}, {"Ascended", 4}, {"Bloodforged", 1}, + {"Heroic Bloodforged", 100}, }; AtlasLoot.Difficultys["BCDungeon"] = { @@ -56,6 +57,7 @@ {"Mythic", 5}, {"Ascended", 4}, {"Bloodforged", 1}, + {"Heroic Bloodforged", 100}, }; AtlasLoot.Difficultys["WrathDungeon"] = { @@ -74,6 +76,7 @@ {"Mythic", 4}, {"Ascended", 5}, {"Bloodforged", 1}, + {"Heroic Bloodforged", 100}, }; AtlasLoot.Difficultys["Crafting"] = { @@ -101,6 +104,7 @@ AtlasLoot.Difficultys.Heroic = 3; AtlasLoot.Difficultys.Mythic = 4; AtlasLoot.Difficultys.Ascended = 4; + AtlasLoot.Difficultys["Heroic Bloodforged"] = 100; AtlasLoot.Difficultys.MythicPlus = { 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, diff --git a/AtlasLoot/Core/AtlasLoot.lua b/AtlasLoot/Core/AtlasLoot.lua index f9e4abc..588fe96 100644 --- a/AtlasLoot/Core/AtlasLoot.lua +++ b/AtlasLoot/Core/AtlasLoot.lua @@ -12,7 +12,7 @@ AtlasLoot:ShowItemsFrame() AtlasLoot:NavButton_OnClick() AtlasLoot:IsLootTableAvailable(dataID) AtlasLoot:LoadAllModules() -AtlasLoot:ShowFavorites(button) +AtlasLoot:SetFavorites(number) AtlasLoot:AddTooltip(frameb, tooltiptext) ]] @@ -636,7 +636,7 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum) local difType = false -- Checks to see if type is the same - if self.CurrentType ~= dataSource[dataID].Type then + if self.CurrentType and self.CurrentType ~= dataSource[dataID].Type then ItemindexID = self.type[dataSource[dataID].Type] or 2 difType = true end @@ -831,7 +831,12 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum) if self.FixedItemText[dataSource[dataID][tablenum][i].itemID] then extra = self.FixedItemText[dataSource[dataID][tablenum][i].itemID] elseif dataSource[dataID][tablenum][i].desc then - extra = dataSource[dataID][tablenum][i].desc + if type(dataSource[dataID][tablenum][i].desc) == "table" then + local location, boss = dataSource[dataID][tablenum][i].desc[1], dataSource[dataID][tablenum][i].desc[2] + extra = YELLOW..location..WHITE.." - "..boss + else + extra = dataSource[dataID][tablenum][i].desc + end elseif dataSource[dataID][tablenum][i].dropLoc and (self.dataSourceBackup == "AtlasLoot_OnDemand" or (self.db.profile.showdropLocationOnSearch and dataID == "SearchResult")) then local location, boss = dataSource[dataID][tablenum][i].dropLoc[1], dataSource[dataID][tablenum][i].dropLoc[2] extra = YELLOW..location..WHITE.." - "..boss @@ -1170,83 +1175,15 @@ function AtlasLoot:LoadAllModules() end --[[ -AtlasLoot:ShowFavorites(button) -button: Identity of the button pressed to trigger the function -Shows the GUI for setting Quicklooks +AtlasLoot:SetFavorites(number) +sets the favorite when alt right clicked ]] -function AtlasLoot:ShowFavorites(button) - if self.Dewdrop:IsOpen(button) then - self.Dewdrop:Close(1) - else - local setOptions = function() - self.Dewdrop:AddLine( - "text", AL["Favorite"].." 1", - "tooltipTitle", AL["Favorite"].." 1", - "tooltipText", AL["Assign this loot table\n to Favorite"].." 1", - "func", function() - if AtlasLootItemsFrame.refresh[2] == "AtlasLoot_CurrentWishList" then - AtlasLootCharDB["QuickLooks"][1]={AtlasLoot_CurrentWishList["Show"].ListType, "AtlasLootWishList", AtlasLoot_CurrentWishList["Show"].ListNum, self.lastModule, self.currentTable, _G["AtlasLootWishList"][AtlasLoot_CurrentWishList["Show"].ListType][AtlasLoot_CurrentWishList["Show"].ListNum].Name} - else - AtlasLootCharDB["QuickLooks"][1]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], self.lastModule, self.currentTable, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name} - end - - self.Dewdrop:Close(1) - end - ) - self.Dewdrop:AddLine( - "text", AL["Favorite"].." 2", - "tooltipTitle", AL["Favorite"].." 2", - "tooltipText", AL["Assign this loot table\n to Favorite"].." 2", - "func", function() - if AtlasLootItemsFrame.refresh[2] == "AtlasLoot_CurrentWishList" then - AtlasLootCharDB["QuickLooks"][2]={AtlasLoot_CurrentWishList["Show"].ListType, - "AtlasLootWishList", - AtlasLoot_CurrentWishList["Show"].ListNum, self.lastModule, - self.currentTable, - _G["AtlasLootWishList"][AtlasLoot_CurrentWishList["Show"].ListType][AtlasLoot_CurrentWishList["Show"].ListNum].Name} - else - AtlasLootCharDB["QuickLooks"][2]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], self.lastModule, self.currentTable, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name} - end - - self.Dewdrop:Close(1) - end - ) - self.Dewdrop:AddLine( - "text", AL["Favorite"].." 3", - "tooltipTitle", AL["Favorite"].." 3", - "tooltipText", AL["Assign this loot table\n to Favorite"].." 3", - "func", function() - if AtlasLootItemsFrame.refresh[2] == "AtlasLoot_CurrentWishList" then - AtlasLootCharDB["QuickLooks"][3]={AtlasLoot_CurrentWishList["Show"].ListType, "AtlasLootWishList", AtlasLoot_CurrentWishList["Show"].ListNum, self.lastModule, self.currentTable, _G["AtlasLootWishList"][AtlasLoot_CurrentWishList["Show"].ListType][AtlasLoot_CurrentWishList["Show"].ListNum].Name} - else - AtlasLootCharDB["QuickLooks"][3]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], self.lastModule, self.currentTable, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name} - end - - self.Dewdrop:Close(1) - end - ) - self.Dewdrop:AddLine( - "text", AL["Favorite"].." 4", - "tooltipTitle", AL["Favorite"].." 4", - "tooltipText", AL["Assign this loot table\n to Favorite"].." 4", - "func", function() - if AtlasLootItemsFrame.refresh[2] == "AtlasLoot_CurrentWishList" then - AtlasLootCharDB["QuickLooks"][4]={AtlasLoot_CurrentWishList["Show"].ListType, "AtlasLootWishList", AtlasLoot_CurrentWishList["Show"].ListNum, self.lastModule, self.currentTable, _G["AtlasLootWishList"][AtlasLoot_CurrentWishList["Show"].ListType][AtlasLoot_CurrentWishList["Show"].ListNum].Name} - else - AtlasLootCharDB["QuickLooks"][4]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], self.lastModule, self.currentTable, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name} - end - - self.Dewdrop:Close(1) - end - ) - end - self.Dewdrop:Open(button, - 'point', function(parent) - return "BOTTOMLEFT", "BOTTOMRIGHT" - end, - "children", setOptions - ) - end +function AtlasLoot:SetFavorites(num) + if AtlasLootItemsFrame.refresh[2] == "AtlasLoot_CurrentWishList" then + AtlasLootCharDB["QuickLooks"][num]={AtlasLoot_CurrentWishList["Show"].ListType, "AtlasLootWishList", AtlasLoot_CurrentWishList["Show"].ListNum, self.lastModule, self.currentTable, _G["AtlasLootWishList"][AtlasLoot_CurrentWishList["Show"].ListType][AtlasLoot_CurrentWishList["Show"].ListNum].Name} + else + AtlasLootCharDB["QuickLooks"][num]={AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3], self.lastModule, self.currentTable, _G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]][AtlasLootItemsFrame.refreshOri[3]].Name} + end end -- Used to precache all the items in a raid/instance @@ -1285,6 +1222,7 @@ function AtlasLoot:LoadItemIDsDatabase() ItemIDsDatabase[data.Normal] = {} ItemIDsDatabase[data.Normal]["MythicRaid"] = tonumber("13"..data.Normal) table.insert(ItemIDsDatabase[data.Normal],data.Bloodforged) + table.insert(ItemIDsDatabase[data.Normal],data.HeroicBloodforged) table.insert(ItemIDsDatabase[data.Normal],data.Normal) if data.Heroic ~= 0 then table.insert(ItemIDsDatabase[data.Normal],data.Heroic) end for _,v in ipairs(data["Mythic"]) do diff --git a/AtlasLoot/Core/TextParsing.lua b/AtlasLoot/Core/TextParsing.lua index 14f6b4c..ddc9981 100644 --- a/AtlasLoot/Core/TextParsing.lua +++ b/AtlasLoot/Core/TextParsing.lua @@ -703,28 +703,6 @@ function AtlasLoot:FixText(text) -- Tier Tokens text = gsub(text, "#setToken#", AL["Set Token (Click)"]) --Accessory tokens - -- Dungeon 1 Sets - text = gsub(text, "#t0s1#", AL["Wildheart Raiment"]) - text = gsub(text, "#t0s2#", AL["Beaststalker Armor"]) - text = gsub(text, "#t0s3#", AL["Magister's Regalia"]) - text = gsub(text, "#t0s4#", AL["Lightforge Armor"]) - text = gsub(text, "#t0s5#", AL["Vestments of the Devout"]) - text = gsub(text, "#t0s6#", AL["Shadowcraft Armor"]) - text = gsub(text, "#t0s7#", AL["The Elements"]) - text = gsub(text, "#t0s8#", AL["Dreadmist Raiment"]) - text = gsub(text, "#t0s9#", AL["Battlegear of Valor"]) - - -- Dungeon 2 Sets - text = gsub(text, "#t05s1#", AL["Feralheart Raiment"]) - text = gsub(text, "#t05s2#", AL["Beastmaster Armor"]) - text = gsub(text, "#t05s3#", AL["Sorcerer's Regalia"]) - text = gsub(text, "#t05s4#", AL["Soulforge Armor"]) - text = gsub(text, "#t05s5#", AL["Vestments of the Virtuous"]) - text = gsub(text, "#t05s6#", AL["Darkmantle Armor"]) - text = gsub(text, "#t05s7#", AL["The Five Thunders"]) - text = gsub(text, "#t05s8#", AL["Deathmist Raiment"]) - text = gsub(text, "#t05s9#", AL["Battlegear of Heroism"]) - -- Dungeon 3 Sets text = gsub(text, "#ds3s1#", AL["Hallowed Raiment"]) text = gsub(text, "#ds3s2#", AL["Incanter's Regalia"]) diff --git a/AtlasLoot/Core/Utils.lua b/AtlasLoot/Core/Utils.lua index d5882de..80c036b 100644 --- a/AtlasLoot/Core/Utils.lua +++ b/AtlasLoot/Core/Utils.lua @@ -124,6 +124,9 @@ On the form of {ID, {normal, heroic, mythic, mythic1, mythic2, ... ,mythicN}} ]] function AtlasLoot:FindId(id, difficulty, type, sourceType) if not ItemIDsDatabase[id] then return nil, false end + if difficulty == 100 then + return ItemIDsDatabase[id]["HeroicBloodforged"], true + end if (difficulty == 4 and (type == "BCRaid" or type == "ClassicRaid") and sourceType == "Search") or (difficulty == 5 and (type == "BCRaid" or type == "ClassicRaid") and sourceType ~= "Search") then return ItemIDsDatabase[id]["MythicRaid"], true diff --git a/AtlasLoot/Databases/ItemIDsDatabaseFixes.lua b/AtlasLoot/Databases/ItemIDsDatabaseFixes.lua index 61f8163..1a1162c 100644 --- a/AtlasLoot/Databases/ItemIDsDatabaseFixes.lua +++ b/AtlasLoot/Databases/ItemIDsDatabaseFixes.lua @@ -96,20 +96,20 @@ ItemIDsDatabase[1516965] = { 7516965, 1516965, 1816965, MythicRaid = 2816965, 17 --Tier 3 Missing Sets -ItemIDsDatabase[1522418] = { 7522515, 1522515, 1822515, MythicRaid = 2822515, 1722515 } +ItemIDsDatabase[1522418] = { 7522515, 1522418, 1822418, MythicRaid = 2822418, 1722418 } ItemIDsDatabase[1522419] = { 7522419, 1522419, 1822419, MythicRaid = 2822419, 1722419 } -ItemIDsDatabase[1522416] = { 7522491, 1522491, 1822491, MythicRaid = 2822491, 1722491 } -ItemIDsDatabase[1522423] = { 7532491, 1532491, 1832491, MythicRaid = 2832491, 1732491 } -ItemIDsDatabase[1522421] = { 7507038, 1507038, 1807038, MythicRaid = 2807038, 1707038 } -ItemIDsDatabase[1522422] = { 7522467, 1522467, 1822467, MythicRaid = 2822467, 1722467 } -ItemIDsDatabase[1522417] = { 7532429, 1532429, 1832429, MythicRaid = 2832429, 1732429 } -ItemIDsDatabase[1522420] = { 7532428, 1532428, 1832428, MythicRaid = 2832428, 1732428 } -ItemIDsDatabase[1522466] = { 7522429, 1522429, 1822429, MythicRaid = 2822429, 1722429 } +ItemIDsDatabase[1522416] = { 7522491, 1522416, 1822416, MythicRaid = 2822416, 1722416 } +ItemIDsDatabase[1522423] = { 7532491, 1522423, 1822423, MythicRaid = 2822423, 1722423 } +ItemIDsDatabase[1522421] = { 7507038, 1522421, 1822421, MythicRaid = 2822421, 1722421 } +ItemIDsDatabase[1522422] = { 7522467, 1522422, 1822422, MythicRaid = 2822422, 1722422 } +ItemIDsDatabase[1522417] = { 7532429, 1522417, 1822417, MythicRaid = 2822417, 1722417 } +ItemIDsDatabase[1522420] = { 7532428, 1522420, 1822420, MythicRaid = 2822420, 1722420 } +ItemIDsDatabase[1522466] = { 7522429, 1522466, 1822466, MythicRaid = 2822466, 1722466 } -ItemIDsDatabase[1522467] = { 7522418, 1522418, 1822418, MythicRaid = 2822418, 1722418 } -ItemIDsDatabase[1522464] = { 7507037, 1507037, 1807037, MythicRaid = 2807037, 1707037 } -ItemIDsDatabase[1522471] = { 7532490, 1532490, 1832490, MythicRaid = 2832490, 1732490 } -ItemIDsDatabase[1522469] = { 7522490, 1522490, 1822490, MythicRaid = 2822490, 1722490 } +ItemIDsDatabase[1522467] = { 7522418, 1522467, 1822467, MythicRaid = 2822467, 1722467 } +ItemIDsDatabase[1522464] = { 7507037, 1522464, 1822464, MythicRaid = 2822464, 1722464 } +ItemIDsDatabase[1522471] = { 7532490, 1522471, 1822471, MythicRaid = 2822471, 1722471 } +ItemIDsDatabase[1522469] = { 7522490, 1522469, 1822469, MythicRaid = 2822469, 1722469 } ItemIDsDatabase[1522470] = { 7522470, 1522470, 1822470, MythicRaid = 2822470, 1722470 } ItemIDsDatabase[1522465] = { 7522465, 1522465, 1822465, MythicRaid = 2822465, 1722465 } ItemIDsDatabase[1522468] = { 7522468, 1522468, 1822468, MythicRaid = 2822468, 1722468 } @@ -586,4 +586,7 @@ for _, v in pairs(ItemIDsDatabase) do if not v["MythicRaid"] then v["MythicRaid"] = tonumber("13"..v[2]) end + if not v["HeroicBloodforged"] then + v["HeroicBloodforged"] = tonumber("63"..v[2]) + end end \ No newline at end of file diff --git a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua index 8ac5ab1..eed00b3 100644 --- a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua +++ b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrameCreate.lua @@ -22,6 +22,7 @@ local INDENT = " " mainframe.TitleText:SetText(AtlasLoot.Version) mainframe:RegisterForDrag("LeftButton") mainframe:EnableKeyboard(true) + mainframe:SetToplevel(true) mainframe:Hide() mainframe:SetScript("OnShow", function() AtlasLoot:OnShow() @@ -328,6 +329,14 @@ local searchbtn = CreateFrame("Button","AtlasLootDefaultFrameSearchButton",Atlas AtlasLoot:ShowSearchOptions(self) end end) + searchbtn:SetScript("OnEnter", function(self) + GameTooltip:SetOwner(self, "ANCHOR_TOPLEFT") + GameTooltip:AddLine("Left click to search\nRight click to select what modules to search in") + GameTooltip:Show() + end) + searchbtn:SetScript("OnLeave", function() + GameTooltip:Hide() + end) --Last Result Button local lastresult = CreateFrame("Button","AtlasLootDefaultFrameLastResultButton",AtlasLootDefaultFrameSearchBox,"FilterDropDownMenuTemplate") @@ -341,6 +350,14 @@ local lastresult = CreateFrame("Button","AtlasLootDefaultFrameLastResultButton", lastresult:SetPoint("LEFT", "AtlasLootDefaultFrameSearchButton", "RIGHT", 2, 0) lastresult:SetText(AL["Last Result"]) lastresult:SetScript("OnClick", function() AtlasLoot:ShowSearchResult() end) + lastresult:SetScript("OnEnter", function(self) + GameTooltip:SetOwner(self, "ANCHOR_TOPLEFT") + GameTooltip:AddLine("Open Last Search Result") + GameTooltip:Show() + end) + lastresult:SetScript("OnLeave", function() + GameTooltip:Hide() + end) -- Advanced Search Button local advSearch = CreateFrame("Button","AtlasLootDefaultFrameAdvancedSearchButton", AtlasLootDefaultFrame,"FilterDropDownMenuTemplate") @@ -357,6 +374,14 @@ local advSearch = CreateFrame("Button","AtlasLootDefaultFrameAdvancedSearchButto AtlasLoot:AdvancedSearchShow() AtlasLootDefaultFrameSearchBox:ClearFocus() end) + advSearch:SetScript("OnEnter", function(self) + GameTooltip:SetOwner(self, "ANCHOR_TOPLEFT") + GameTooltip:AddLine("Advanced Search") + GameTooltip:Show() + end) + advSearch:SetScript("OnLeave", function() + GameTooltip:Hide() + end) --Wish List Button local wishbtn = CreateFrame("Button", "AtlasLootDefaultFrameWishListButton", AtlasLootDefaultFrame, "FilterDropDownMenuTemplate") @@ -380,12 +405,11 @@ local favorites = CreateFrame("Button", "AtlasLoot_Favorites", AtlasLootDefaultF favorites:SetPoint("LEFT", "AtlasLootDefaultFrameWishListButton", "RIGHT", 2, 0) favorites:SetText("Favorites") favorites:SetSize(150,25) - favorites:SetScript("OnClick", function(self) AtlasLoot:ShowFavorites(self) end) favorites.template = "FilterDropDownMenuTemplate" favorites:SetScript("OnEnter", function(self) GameTooltip:ClearLines() GameTooltip:SetOwner(self, "ANCHOR_RIGHT", -(self:GetWidth() / 2), 5) - GameTooltip:AddLine("Left click to add to favorites") + GameTooltip:AddLine("Left click open a favorite\nAlt + Right click to set favorite") GameTooltip:Show() AtlasLoot_FavoritesPopupFrame:Show() end) @@ -411,7 +435,7 @@ local currentInstance = CreateFrame("Button","AtlasLootDefaultFrame_LoadInstance currentInstance:SetScript("OnEnter", function(self) GameTooltip:ClearLines() GameTooltip:SetOwner(self, "ANCHOR_RIGHT", -(self:GetWidth() / 2), 5) - GameTooltip:AddLine("Load the instance you are in") + GameTooltip:AddLine("Goto current instances lootpage") GameTooltip:Show() end) currentInstance:SetText("Current Instance") @@ -433,7 +457,7 @@ local popupframe = CreateFrame("Frame", "AtlasLoot_FavoritesPopupFrame", AtlasLo popupframe:SetSize(150, 40) popupframe:Hide() - --Quick Look Buttons + --Favorites Buttons local function presetcreate(preset,num) preset:SetSize(30,30) preset.tex = preset:CreateTexture(nil, "ARTWORK") @@ -453,6 +477,7 @@ local function presetcreate(preset,num) GameTooltip:Show() end end) + preset:RegisterForClicks("LeftButtonDown","RightButtonDown") preset:SetScript("OnLeave", function() GameTooltip:Hide() if not GetMouseFocus() then return end @@ -461,14 +486,18 @@ local function presetcreate(preset,num) popupframe:Hide() end end) - preset:SetScript("OnClick", function() - if AtlasLootCharDB["QuickLooks"][num] and AtlasLoot:IsLootTableAvailable(AtlasLootCharDB["QuickLooks"][num][4]) then - AtlasLoot.lastModule = AtlasLootCharDB["QuickLooks"][num][4] - AtlasLoot.currentTable = AtlasLootCharDB["QuickLooks"][num][5] - if AtlasLootCharDB["QuickLooks"][num][2] == "AtlasLootWishList" then - AtlasLoot:ShowWishList(AtlasLootCharDB["QuickLooks"][num][1], AtlasLootCharDB["QuickLooks"][num][3]) - else - AtlasLoot:ShowItemsFrame(AtlasLootCharDB["QuickLooks"][num][1], AtlasLootCharDB["QuickLooks"][num][2], AtlasLootCharDB["QuickLooks"][num][3]) + preset:SetScript("OnClick", function(self, button) + if button == "RightButton" and IsAltKeyDown() then + AtlasLoot:SetFavorites(num) + else + if AtlasLootCharDB["QuickLooks"][num] and AtlasLoot:IsLootTableAvailable(AtlasLootCharDB["QuickLooks"][num][4]) then + AtlasLoot.lastModule = AtlasLootCharDB["QuickLooks"][num][4] + AtlasLoot.currentTable = AtlasLootCharDB["QuickLooks"][num][5] + if AtlasLootCharDB["QuickLooks"][num][2] == "AtlasLootWishList" then + AtlasLoot:ShowWishList(AtlasLootCharDB["QuickLooks"][num][1], AtlasLootCharDB["QuickLooks"][num][3]) + else + AtlasLoot:ShowItemsFrame(AtlasLootCharDB["QuickLooks"][num][1], AtlasLootCharDB["QuickLooks"][num][2], AtlasLootCharDB["QuickLooks"][num][3]) + end end end end) @@ -819,7 +848,18 @@ subtableFrame.rows = rows2 AtlasLoot:MapMenuOpen(self) end end) - + mainframe.mapButton:SetScript("OnEnter", function(self) + GameTooltip:SetOwner(self, "ANCHOR_TOPLEFT") + GameTooltip:AddLine("Open Map") + GameTooltip:Show() + end) + mainframe.mapButton:SetScript("OnLeave", function() + GameTooltip:Hide() + end) + mainframe.mapButton.mapButtonIcon = mainframe.mapButton:CreateTexture("ARTWORK") + mainframe.mapButton.mapButtonIcon:SetSize(19,19) + mainframe.mapButton.mapButtonIcon:SetAtlas("many-quests-area") + mainframe.mapButton.mapButtonIcon:SetPoint("RIGHT",mainframe.mapButton, -20, -1) -- item data loading icon animation local streamIcon = CreateFrame("Frame", "AtlasLoot_ItemsLoading", AtlaslLoot_LootBackground) streamIcon:SetPoint("TOPRIGHT", AtlaslLoot_LootBackground, "TOPRIGHT") diff --git a/AtlasLoot/Menus/SetMenus.lua b/AtlasLoot/Menus/SetMenus.lua index c685954..3eacc31 100644 --- a/AtlasLoot/Menus/SetMenus.lua +++ b/AtlasLoot/Menus/SetMenus.lua @@ -9,6 +9,7 @@ local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot") { "", "ZGSets"}, { "", "AQ20Sets"}, { "", "T0"}, + { "", "T0.5"}, { "", "T1"}, { "", "T2"}, { "", "T2.5"}, diff --git a/AtlasLoot_BurningCrusade/burningcrusade.lua b/AtlasLoot_BurningCrusade/burningcrusade.lua index 70816d0..65e1065 100644 --- a/AtlasLoot_BurningCrusade/burningcrusade.lua +++ b/AtlasLoot_BurningCrusade/burningcrusade.lua @@ -3,7 +3,7 @@ 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"); - +local WHITE = "|cffFFFFFF" -- Index --- Dungeons & BCRaids ---- Keys @@ -682,14 +682,17 @@ AtlasLoot_Data["BlackTemple"] = { [13] = { itemID = 32257 }; --Idol of the White Stag [16] = { itemID = 32943 }; --Swiftsteel Bludgeon [17] = { itemID = 34011 }; --Illidari Runeshield - [19] = { itemID = 32228 }; --Empyrean Sapphire - [20] = { itemID = 32231 }; --Pyrestone - [21] = { itemID = 32229 }; --Lionseye - [22] = { itemID = 32249 }; --Seaspray Emerald - [23] = { itemID = 32230 }; --Shadowsong Amethyst - [24] = { itemID = 32227 }; --Crimson Spinel - [26] = { itemID = 32428, droprate = "6%" }; --Heart of Darkness - [27] = { itemID = 32897, droprate = "7%" }; --Mark of the Illidari + [18] = { itemID = 15900 }; --Finkle's Vibroblade + [19] = { itemID = 15951 }; --Reaver Cleaver + [20] = { itemID = 15952 }; --The Taskmaster + [22] = { itemID = 32228 }; --Empyrean Sapphire + [23] = { itemID = 32231 }; --Pyrestone + [24] = { itemID = 32229 }; --Lionseye + [25] = { itemID = 32249 }; --Seaspray Emerald + [26] = { itemID = 32230 }; --Shadowsong Amethyst + [27] = { itemID = 32227 }; --Crimson Spinel + [29] = { itemID = 32428, droprate = "6%" }; --Heart of Darkness + [30] = { itemID = 32897, droprate = "7%" }; --Mark of the Illidari }; { Name = "BT Patterns/Plans"; @@ -1577,6 +1580,7 @@ AtlasLoot_Data["HCRamparts"] = { Map = "HCHellfireRamparts"; { Name = BabbleBoss["Watchkeeper Gargolmar"]; + NpcID = 17306; [1] = { icon = "INV_Box_01", name = "=q6=#j1#" }; [2] = { itemID = 24024, droprate = "4.69%" }; --Pauldrons of Arcane Rage [3] = { itemID = 24023, droprate = "3.29%" }; --Bracers of Finesse @@ -1594,9 +1598,11 @@ AtlasLoot_Data["HCRamparts"] = { [24] = { itemID = 27450, droprate = "4.19%" }; --Wild Stalker Boots [25] = { itemID = 27447, droprate = "3.84%" }; --Bracers of Just Rewards [26] = { itemID = 27449, droprate = "3.15%" }; --Blood Knight Defender + [28] = { itemID = 60946, droprate = "1%" }; --Pet Sigil }; { Name = BabbleBoss["Omor the Unscarred"]; + NpcID = 17308; [1] = { icon = "INV_Box_01", name = "#j27#" }; [2] = { itemID = 27465, droprate = "1.74%" }; --Mana-Etched Gloves [3] = { itemID = 27466, droprate = "2.10%" }; --Headdress of Alacrity @@ -1610,6 +1616,7 @@ AtlasLoot_Data["HCRamparts"] = { [11] = { itemID = 27477, droprate = "0.32%" }; --Faol's Signet of Cleansing [12] = { itemID = 27463, droprate = ".90%" }; --Terror Flame Dagger [13] = { itemID = 27476, droprate = ".25%" }; --Truncheon of Five Hells + [15] = { itemID = 60947, droprate = "1%" }; --Pet Sigil [16] = { itemID = 29434, droprate = "100%" }; --Badge of Justice [17] = { itemID = 30593, droprate = "1.11%" }; --Iridescent Fire Opal [18] = { itemID = 30594, droprate = "2.35%" }; --Effulgent Chrysoprase @@ -1625,6 +1632,7 @@ AtlasLoot_Data["HCRamparts"] = { }; { Name = BabbleBoss["Vazruden"]; + NpcID = 17537; [1] = { icon = "INV_Box_01", name = "=q6=" .. AL["Reinforced Fel Iron Chest"] }; [2] = { itemID = 24150, droprate = "5.65%" }; --Mok'Nathal Wildercloak [3] = { itemID = 24083, droprate = "7.100" }; --Lifegiver Britches @@ -1640,9 +1648,11 @@ AtlasLoot_Data["HCRamparts"] = { [17] = { itemID = 23892, droprate = "100%" }; --Ominous Letter [19] = { icon = "INV_Box_01", name = "=q6=" .. BabbleBoss["Nazan"] }; [20] = { itemID = 23901, droprate = "100%" }; --Nazan's Head + [22] = { itemID = 61025, droprate = "1%" }; --Pet Sigil }; { Name = BabbleBoss["Vazruden"] .. " (" .. AL["Heroic"] .. ")"; + NpcID = 17537; [1] = { itemID = 29264, droprate = "6.05%" }; --Tree-Mender's Belt [2] = { itemID = 32077 }; --Wrath Infused Gauntlets [3] = { itemID = 29238, droprate = "4.81%" }; --Lion's Heart Girdle @@ -1665,6 +1675,7 @@ AtlasLoot_Data["HCRamparts"] = { [25] = { itemID = 23892, droprate = "100%" }; --Ominous Letter [27] = { icon = "INV_Box_01", name = "=q6=" .. BabbleBoss["Nazan"] }; [28] = { itemID = 23901, droprate = "100%" }; --Nazan's Head + [30] = { itemID = 61025, droprate = "1%" }; --Pet Sigil }; }; @@ -2170,84 +2181,84 @@ AtlasLoot_Data["MagistersTerrace"] = { { Name = BabbleBoss["Selin Fireheart"]; [1] = { icon = "INV_Box_01", name = "=q6=#j1#" }; - [2] = { itemID = 434702 }; --Cloak of Swift Mending - [3] = { itemID = 434697 }; --Bindings of Raging Fire - [4] = { itemID = 434701 }; --Leggings of the Betrayed - [5] = { itemID = 434698 }; --Bracers of the Forest Stalker - [6] = { itemID = 434700 }; --Gauntlets of Divine Blessings - [7] = { itemID = 434699 }; --Sun-forged Cleaver + [2] = { itemID = 34702 }; --Cloak of Swift Mending + [3] = { itemID = 34697 }; --Bindings of Raging Fire + [4] = { itemID = 34701 }; --Leggings of the Betrayed + [5] = { itemID = 34698 }; --Bracers of the Forest Stalker + [6] = { itemID = 34700 }; --Gauntlets of Divine Blessings + [7] = { itemID = 34699 }; --Sun-forged Cleaver [16] = { icon = "INV_Box_01", name = "#j27#" }; [17] = { itemID = 29434, droprate = "100%" }; --Badge of Justice - [18] = { itemID = 434602, droprate = "0%" }; --Eversong Cuffs - [19] = { itemID = 434601, droprate = "1%" }; --Shoulderplates of Everlasting Pain - [20] = { itemID = 434604, droprate = "1%" }; --Jaded Crystal Dagger - [21] = { itemID = 434603, droprate = "1%" }; --Distracting Blades - [23] = { itemID = 435275 }; --Orb of the Sin'dorei + [18] = { itemID = 34602, droprate = "0%" }; --Eversong Cuffs + [19] = { itemID = 34601, droprate = "1%" }; --Shoulderplates of Everlasting Pain + [20] = { itemID = 34604, droprate = "1%" }; --Jaded Crystal Dagger + [21] = { itemID = 34603, droprate = "1%" }; --Distracting Blades + [23] = { itemID = 35275 }; --Orb of the Sin'dorei }; { Name = BabbleBoss["Vexallus"]; [1] = { icon = "INV_Box_01", name = "=q6=#j1#" }; - [2] = { itemID = 434708, droprate = "7%" }; --Cloak of the Coming Night - [3] = { itemID = 434705 }; --Bracers of Divine Infusion - [4] = { itemID = 434707, droprate = "6%" }; --Boots of Resuscitation - [5] = { itemID = 434704, droprate = "8%" }; --Band of Arcane Alacrity - [6] = { itemID = 434706 }; --Band of Determination - [7] = { itemID = 434703, droprate = "6%" }; --Latro's Dancing Blade + [2] = { itemID = 34708, droprate = "7%" }; --Cloak of the Coming Night + [3] = { itemID = 34705 }; --Bracers of Divine Infusion + [4] = { itemID = 34707, droprate = "6%" }; --Boots of Resuscitation + [5] = { itemID = 34704, droprate = "8%" }; --Band of Arcane Alacrity + [6] = { itemID = 34706 }; --Band of Determination + [7] = { itemID = 34703, droprate = "6%" }; --Latro's Dancing Blade [16] = { icon = "INV_Box_01", name = "#j27#" }; [17] = { itemID = 29434, droprate = "100%" }; --Badge of Justice - [18] = { itemID = 434607, droprate = "0%" }; --Fel-tinged Mantle - [19] = { itemID = 434605, droprate = "9%" }; --Breastplate of Fierce Survival - [20] = { itemID = 434606, droprate = "0%" }; --Edge of Oppression - [21] = { itemID = 434608, droprate = "9%" }; --Rod of the Blazing Light + [18] = { itemID = 34607, droprate = "0%" }; --Fel-tinged Mantle + [19] = { itemID = 34605, droprate = "9%" }; --Breastplate of Fierce Survival + [20] = { itemID = 34606, droprate = "0%" }; --Edge of Oppression + [21] = { itemID = 34608, droprate = "9%" }; --Rod of the Blazing Light [23] = { itemID = 435275 }; --Orb of the Sin'dorei }; { Name = BabbleBoss["Priestess Delrissa"]; [1] = { icon = "INV_Box_01", name = "=q6=#j1#" }; - [2] = { itemID = 434792, droprate = "7%" }; --Cloak of the Betrayed - [3] = { itemID = 434788 }; --Duskhallow Mantle - [4] = { itemID = 434791, droprate = "6%" }; --Gauntlets of the Tranquil Waves - [5] = { itemID = 434789, droprate = "7%" }; --Bracers of Slaughter - [6] = { itemID = 434790, droprate = "6%" }; --Battle-mace of the High Priestess - [7] = { itemID = 434783, droprate = "7%" }; --Nightstrike + [2] = { itemID = 34792, droprate = "7%" }; --Cloak of the Betrayed + [3] = { itemID = 34788 }; --Duskhallow Mantle + [4] = { itemID = 34791, droprate = "6%" }; --Gauntlets of the Tranquil Waves + [5] = { itemID = 34789, droprate = "7%" }; --Bracers of Slaughter + [6] = { itemID = 34790, droprate = "6%" }; --Battle-mace of the High Priestess + [7] = { itemID = 34783, droprate = "7%" }; --Nightstrike [9] = { itemID = 35756, droprate = { nil, "2%", "5%", "7%", "10%" } }; --Formula: Enchant Cloak - Steelweave [16] = { icon = "INV_Box_01", name = "#j27#" }; [17] = { itemID = 29434, droprate = "100%" }; --Badge of Justice - [18] = { itemID = 434473, droprate = "9%" }; --Commendation of Kael'thas - [19] = { itemID = 434472, droprate = "9%" }; --Shard of Contempt - [20] = { itemID = 434470, droprate = "9%" }; --Timbal's Focusing Crystal - [21] = { itemID = 434471, droprate = "9%" }; --Vial of the Sunwell - [23] = { itemID = 435275 }; --Orb of the Sin'dorei + [18] = { itemID = 34473, droprate = "9%" }; --Commendation of Kael'thas + [19] = { itemID = 34472, droprate = "9%" }; --Shard of Contempt + [20] = { itemID = 34470, droprate = "9%" }; --Timbal's Focusing Crystal + [21] = { itemID = 34471, droprate = "9%" }; --Vial of the Sunwell + [23] = { itemID = 35275 }; --Orb of the Sin'dorei }; { Name = BabbleBoss["Kael'thas Sunstrider"]; - [1] = { itemID = 434810 }; --Cloak of Blade Turning - [2] = { itemID = 434808 }; --Gloves of Arcane Acuity - [3] = { itemID = 434809, droprate = "5%" }; --Sunrage Treads - [4] = { itemID = 434799, droprate = "3%" }; --Hauberk of the War Bringer - [5] = { itemID = 434807 }; --Sunstrider Warboots - [6] = { itemID = 434625 }; --Kharmaa's Ring of Fate + [1] = { itemID = 34810 }; --Cloak of Blade Turning + [2] = { itemID = 34808 }; --Gloves of Arcane Acuity + [3] = { itemID = 34809, droprate = "5%" }; --Sunrage Treads + [4] = { itemID = 34799, droprate = "3%" }; --Hauberk of the War Bringer + [5] = { itemID = 34807 }; --Sunstrider Warboots + [6] = { itemID = 34625 }; --Kharmaa's Ring of Fate [8] = { itemID = 34157, droprate = "6%" }; --Head of Kael'thas - [16] = { itemID = 434793 }; --Cord of Reconstruction - [17] = { itemID = 434796 }; --Robes of Summer Flame - [18] = { itemID = 434795 }; --Helm of Sanctification - [19] = { itemID = 434798 }; --Band of Celerity - [20] = { itemID = 434794 }; --Axe of Shattered Dreams - [21] = { itemID = 434797, droprate = "4%" }; --Sun-infused Focus Staff + [16] = { itemID = 34793 }; --Cord of Reconstruction + [17] = { itemID = 34796 }; --Robes of Summer Flame + [18] = { itemID = 34795 }; --Helm of Sanctification + [19] = { itemID = 34798 }; --Band of Celerity + [20] = { itemID = 34794 }; --Axe of Shattered Dreams + [21] = { itemID = 34797, droprate = "4%" }; --Sun-infused Focus Staff [22] = { itemID = 35504 }; --Phoenix Hatchling }; { Name = BabbleBoss["Kael'thas Sunstrider"] .. " (" .. AL["Heroic"] .. ")"; [1] = { itemID = 29434, droprate = "100%" }; --Badge of Justice - [2] = { itemID = 434610, droprate = "9%" }; --Scarlet Sin'dorei Robes - [3] = { itemID = 434613, droprate = "9%" }; --Shoulderpads of the Silvermoon Retainer - [4] = { itemID = 434614, droprate = "8%" }; --Tunic of the Ranger Lord - [5] = { itemID = 434615, droprate = "9%" }; --Netherforce Chestplate - [6] = { itemID = 434612, droprate = "9%" }; --Greaves of the Penitent Knight + [2] = { itemID = 34610, droprate = "9%" }; --Scarlet Sin'dorei Robes + [3] = { itemID = 34613, droprate = "9%" }; --Shoulderpads of the Silvermoon Retainer + [4] = { itemID = 34614, droprate = "8%" }; --Tunic of the Ranger Lord + [5] = { itemID = 34615, droprate = "9%" }; --Netherforce Chestplate + [6] = { itemID = 34612, droprate = "9%" }; --Greaves of the Penitent Knight [8] = { itemID = 34160, droprate = "2%" }; --The Signet Ring of Prince Kael'thas - [16] = { itemID = 434609, droprate = "0%" }; --Quickening Blade of the Prince - [17] = { itemID = 434616, droprate = "9%" }; --Breeching Comet - [18] = { itemID = 434611, droprate = "9%" }; --Cudgel of Consecration + [16] = { itemID = 34609, droprate = "0%" }; --Quickening Blade of the Prince + [17] = { itemID = 34616, droprate = "9%" }; --Breeching Comet + [18] = { itemID = 34611, droprate = "9%" }; --Cudgel of Consecration [19] = { itemID = 35513 }; --Swift White Hawkstrider [21] = { itemID = 35504 }; --Phoenix Hatchling }; @@ -4291,219 +4302,219 @@ AtlasLoot_Data["PVP70RepGear"] = { { Name = BabbleInventory["Cloth"] .. " - " .. BabbleFaction["Alliance"]; [1] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep705_1#", desc = "=ec1=#c5#" }; - [2] = { itemID = 28705, desc = "=q3=Grand Marshal's Satin Hood" }; - [3] = { itemID = 28707, desc = "=q3=Grand Marshal's Satin Mantle" }; - [4] = { itemID = 28708, desc = "=q3=Grand Marshal's Satin Robe" }; - [5] = { itemID = 28704, desc = "=q3=Grand Marshal's Satin Gloves" }; - [6] = { itemID = 28706, desc = "=q3=Grand Marshal's Satin Leggings" }; + [2] = { itemID = 28705 }; --Grand Marshal's Satin Hood + [3] = { itemID = 28707 }; --Grand Marshal's Satin Mantle + [4] = { itemID = 28708 }; --Grand Marshal's Satin Robe + [5] = { itemID = 28704 }; --Grand Marshal's Satin Gloves + [6] = { itemID = 28706 }; --Grand Marshal's Satin Leggings [8] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep705_2#", desc = "=ec1=#c5#" }; - [9] = { itemID = 31622, desc = "=q3=Grand Marshal's Mooncloth Cowl" }; - [10] = { itemID = 31624, desc = "=q3=Grand Marshal's Mooncloth Shoulderpads" }; - [11] = { itemID = 31625, desc = "=q3=Grand Marshal's Mooncloth Vestments" }; - [12] = { itemID = 31620, desc = "=q3=Grand Marshal's Mooncloth Mitts" }; - [13] = { itemID = 31623, desc = "=q3=Grand Marshal's Mooncloth Legguards" }; + [9] = { itemID = 31622 }; --Grand Marshal's Mooncloth Cowl + [10] = { itemID = 31624 }; --Grand Marshal's Mooncloth Shoulderpads + [11] = { itemID = 31625 }; --Grand Marshal's Mooncloth Vestments + [12] = { itemID = 31620 }; --Grand Marshal's Mooncloth Mitts + [13] = { itemID = 31623 }; --Grand Marshal's Mooncloth Legguards [16] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep703#", desc = "=ec1=#c3#" }; - [17] = { itemID = 28715, desc = "=q3=Grand Marshal's Silk Cowl" }; - [18] = { itemID = 28714, desc = "=q3=Grand Marshal's Silk Amice" }; - [19] = { itemID = 28717, desc = "=q3=Grand Marshal's Silk Raiment" }; - [20] = { itemID = 28716, desc = "=q3=Grand Marshal's Silk Handguards" }; - [21] = { itemID = 28718, desc = "=q3=Grand Marshal's Silk Trousers" }; + [17] = { itemID = 28715 }; --Grand Marshal's Silk Cowl + [18] = { itemID = 28714 }; --Grand Marshal's Silk Amice + [19] = { itemID = 28717 }; --Grand Marshal's Silk Raiment + [20] = { itemID = 28716 }; --Grand Marshal's Silk Handguards + [21] = { itemID = 28718 }; --Grand Marshal's Silk Trousers [23] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep708#", desc = "=ec1=#c8#" }; - [24] = { itemID = 28625, desc = "=q3=Grand Marshal's Dreadweave Hood" }; - [25] = { itemID = 28627, desc = "=q3=Grand Marshal's Dreadweave Mantle" }; - [26] = { itemID = 28628, desc = "=q3=Grand Marshal's Dreadweave Robe" }; - [27] = { itemID = 28624, desc = "=q3=Grand Marshal's Dreadweave Gloves" }; - [28] = { itemID = 28626, desc = "=q3=Grand Marshal's Dreadweave Leggings" }; + [24] = { itemID = 28625 }; --Grand Marshal's Dreadweave Hood + [25] = { itemID = 28627 }; --Grand Marshal's Dreadweave Mantle + [26] = { itemID = 28628 }; --Grand Marshal's Dreadweave Robe + [27] = { itemID = 28624 }; --Grand Marshal's Dreadweave Gloves + [28] = { itemID = 28626 }; --Grand Marshal's Dreadweave Leggings }; { Name = BabbleInventory["Leather"] .. " - " .. BabbleFaction["Alliance"]; [1] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep701_1#", desc = "=ec1=#c1#" }; - [2] = { itemID = 28619, desc = "=q3=Grand Marshal's Dragonhide Helm" }; - [3] = { itemID = 28622, desc = "=q3=Grand Marshal's Dragonhide Spaulders" }; - [4] = { itemID = 28623, desc = "=q3=Grand Marshal's Dragonhide Robe" }; - [5] = { itemID = 28618, desc = "=q3=Grand Marshal's Dragonhide Gloves" }; - [6] = { itemID = 28620, desc = "=q3=Grand Marshal's Dragonhide Legguards" }; + [2] = { itemID = 28619 }; --Grand Marshal's Dragonhide Helm + [3] = { itemID = 28622 }; --Grand Marshal's Dragonhide Spaulders + [4] = { itemID = 28623 }; --Grand Marshal's Dragonhide Robe + [5] = { itemID = 28618 }; --Grand Marshal's Dragonhide Gloves + [6] = { itemID = 28620 }; --Grand Marshal's Dragonhide Legguards [8] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep701_2#", desc = "=ec1=#c1#" }; - [9] = { itemID = 31590, desc = "=q3=Grand Marshal's Wyrmhide Helm" }; - [10] = { itemID = 31592, desc = "=q3=Grand Marshal's Wyrmhide Spaulders" }; - [11] = { itemID = 31593, desc = "=q3=Grand Marshal's Wyrmhide Robe" }; - [12] = { itemID = 31589, desc = "=q3=Grand Marshal's Wyrmhide Gloves" }; - [13] = { itemID = 31591, desc = "=q3=Grand Marshal's Wyrmhide Legguards" }; + [9] = { itemID = 31590 }; --Grand Marshal's Wyrmhide Helm + [10] = { itemID = 31592 }; --Grand Marshal's Wyrmhide Spaulders + [11] = { itemID = 31593 }; --Grand Marshal's Wyrmhide Robe + [12] = { itemID = 31589 }; --Grand Marshal's Wyrmhide Gloves + [13] = { itemID = 31591 }; --Grand Marshal's Wyrmhide Legguards [16] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep701_3#", desc = "=ec1=#c1#" }; - [17] = { itemID = 28720, desc = "=q3=Grand Marshal's Kodohide Helm" }; - [18] = { itemID = 28722, desc = "=q3=Grand Marshal's Kodohide Spaulders" }; - [19] = { itemID = 28723, desc = "=q3=Grand Marshal's Kodohide Robe" }; - [20] = { itemID = 28719, desc = "=q3=Grand Marshal's Kodohide Gloves" }; - [21] = { itemID = 28721, desc = "=q3=Grand Marshal's Kodohide Legguards" }; + [17] = { itemID = 28720 }; --Grand Marshal's Kodohide Helm + [18] = { itemID = 28722 }; --Grand Marshal's Kodohide Spaulders + [19] = { itemID = 28723 }; --Grand Marshal's Kodohide Robe + [20] = { itemID = 28719 }; --Grand Marshal's Kodohide Gloves + [21] = { itemID = 28721 }; --Grand Marshal's Kodohide Legguards [23] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep706#", desc = "=ec1=#c6#" }; - [24] = { itemID = 28685, desc = "=q3=Grand Marshal's Leather Helm" }; - [25] = { itemID = 28687, desc = "=q3=Grand Marshal's Leather Spaulders" }; - [26] = { itemID = 28688, desc = "=q3=Grand Marshal's Leather Tunic" }; - [27] = { itemID = 28684, desc = "=q3=Grand Marshal's Leather Gloves" }; - [28] = { itemID = 28686, desc = "=q3=Grand Marshal's Leather Legguards" }; + [24] = { itemID = 28685 }; --Grand Marshal's Leather Helm + [25] = { itemID = 28687 }; --Grand Marshal's Leather Spaulders + [26] = { itemID = 28688 }; --Grand Marshal's Leather Tunic + [27] = { itemID = 28684 }; --Grand Marshal's Leather Gloves + [28] = { itemID = 28686 }; --Grand Marshal's Leather Legguards }; { Name = BabbleInventory["Mail"] .. " - " .. BabbleFaction["Alliance"]; [1] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep707_1#", desc = "=ec1=#c7#" }; - [2] = { itemID = 28691, desc = "=q3=Grand Marshal's Linked Helm" }; - [3] = { itemID = 28693, desc = "=q3=Grand Marshal's Linked Spaulders" }; - [4] = { itemID = 28689, desc = "=q3=Grand Marshal's Linked Armor" }; - [5] = { itemID = 28690, desc = "=q3=Grand Marshal's Linked Gauntlets" }; - [6] = { itemID = 28692, desc = "=q3=Grand Marshal's Linked Leggings" }; + [2] = { itemID = 28691 }; --Grand Marshal's Linked Helm + [3] = { itemID = 28693 }; --Grand Marshal's Linked Spaulders + [4] = { itemID = 28689 }; --Grand Marshal's Linked Armor + [5] = { itemID = 28690 }; --Grand Marshal's Linked Gauntlets + [6] = { itemID = 28692 }; --Grand Marshal's Linked Leggings [8] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep707_2#", desc = "=ec1=#c7#" }; - [9] = { itemID = 28696, desc = "=q3=Grand Marshal's Mail Helm" }; - [10] = { itemID = 28698, desc = "=q3=Grand Marshal's Mail Spaulders" }; - [11] = { itemID = 28694, desc = "=q3=Grand Marshal's Mail Armor" }; - [12] = { itemID = 28695, desc = "=q3=Grand Marshal's Mail Gauntlets" }; - [13] = { itemID = 28697, desc = "=q3=Grand Marshal's Mail Leggings" }; + [9] = { itemID = 28696 }; --Grand Marshal's Mail Helm + [10] = { itemID = 28698 }; --Grand Marshal's Mail Spaulders + [11] = { itemID = 28694 }; --Grand Marshal's Mail Armor + [12] = { itemID = 28695 }; --Grand Marshal's Mail Gauntlets + [13] = { itemID = 28697 }; --Grand Marshal's Mail Leggings [16] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep707_3#", desc = "=ec1=#c7#" }; - [17] = { itemID = 31642, desc = "=q3=Grand Marshal's Ringmail Headpiece" }; - [18] = { itemID = 31644, desc = "=q3=Grand Marshal's Ringmail Shoulderpads" }; - [19] = { itemID = 31640, desc = "=q3=Grand Marshal's Ringmail Chestguard" }; - [20] = { itemID = 31641, desc = "=q3=Grand Marshal's Ringmail Gloves" }; - [21] = { itemID = 31643, desc = "=q3=Grand Marshal's Ringmail Legguards" }; + [17] = { itemID = 31642 }; --Grand Marshal's Ringmail Headpiece + [18] = { itemID = 31644 }; --Grand Marshal's Ringmail Shoulderpads + [19] = { itemID = 31640 }; --Grand Marshal's Ringmail Chestguard + [20] = { itemID = 31641 }; --Grand Marshal's Ringmail Gloves + [21] = { itemID = 31643 }; --Grand Marshal's Ringmail Legguards [23] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep702#", desc = "=ec1=#c2#" }; - [24] = { itemID = 28615, desc = "=q3=Grand Marshal's Chain Helm" }; - [25] = { itemID = 28617, desc = "=q3=Grand Marshal's Chain Spaulders" }; - [26] = { itemID = 28613, desc = "=q3=Grand Marshal's Chain Armor" }; - [27] = { itemID = 28614, desc = "=q3=Grand Marshal's Chain Gauntlets" }; - [28] = { itemID = 28616, desc = "=q3=Grand Marshal's Chain Leggings" }; + [24] = { itemID = 28615 }; --Grand Marshal's Chain Helm + [25] = { itemID = 28617 }; --Grand Marshal's Chain Spaulders + [26] = { itemID = 28613 }; --Grand Marshal's Chain Armor + [27] = { itemID = 28614 }; --Grand Marshal's Chain Gauntlets + [28] = { itemID = 28616 }; --Grand Marshal's Chain Leggings }; { Name = BabbleInventory["Plate"] .. " - " .. BabbleFaction["Alliance"]; [1] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep704_1#", desc = "=ec1=#c4#" }; - [2] = { itemID = 28711, desc = "=q3=Grand Marshal's Scaled Helm" }; - [3] = { itemID = 28713, desc = "=q3=Grand Marshal's Scaled Shoulders" }; - [4] = { itemID = 28709, desc = "=q3=Grand Marshal's Scaled Chestpiece" }; - [5] = { itemID = 28710, desc = "=q3=Grand Marshal's Scaled Gauntlets" }; - [6] = { itemID = 28712, desc = "=q3=Grand Marshal's Scaled Legguards" }; + [2] = { itemID = 28711 }; --Grand Marshal's Scaled Helm + [3] = { itemID = 28713 }; --Grand Marshal's Scaled Shoulders + [4] = { itemID = 28709 }; --Grand Marshal's Scaled Chestpiece + [5] = { itemID = 28710 }; --Grand Marshal's Scaled Gauntlets + [6] = { itemID = 28712 }; --Grand Marshal's Scaled Legguards [8] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep704_2#", desc = "=ec1=#c4#" }; - [9] = { itemID = 31632, desc = "=q3=Grand Marshal's Ornamented Headguard" }; - [10] = { itemID = 31634, desc = "=q3=Grand Marshal's Ornamented Spaulders" }; - [11] = { itemID = 31630, desc = "=q3=Grand Marshal's Ornamented Chestplate" }; - [12] = { itemID = 31631, desc = "=q3=Grand Marshal's Ornamented Gloves" }; - [13] = { itemID = 31633, desc = "=q3=Grand Marshal's Ornamented Leggings" }; + [9] = { itemID = 31632 }; --Grand Marshal's Ornamented Headguard + [10] = { itemID = 31634 }; --Grand Marshal's Ornamented Spaulders + [11] = { itemID = 31630 }; --Grand Marshal's Ornamented Chestplate + [12] = { itemID = 31631 }; --Grand Marshal's Ornamented Gloves + [13] = { itemID = 31633 }; --Grand Marshal's Ornamented Leggings [16] = { icon = "INV_BannerPVP_02", name = "=q6=#pvprep709#", desc = "=ec1=#c9#" }; - [17] = { itemID = 28701, desc = "=q3=Grand Marshal's Plate Helm" }; - [18] = { itemID = 28703, desc = "=q3=Grand Marshal's Plate Shoulders" }; - [19] = { itemID = 28699, desc = "=q3=Grand Marshal's Plate Chestpiece" }; - [20] = { itemID = 28700, desc = "=q3=Grand Marshal's Plate Gauntlets" }; - [21] = { itemID = 28702, desc = "=q3=Grand Marshal's Plate Legguards" }; + [17] = { itemID = 28701 }; --Grand Marshal's Plate Helm + [18] = { itemID = 28703 }; --Grand Marshal's Plate Shoulders + [19] = { itemID = 28699 }; --Grand Marshal's Plate Chestpiece + [20] = { itemID = 28700 }; --Grand Marshal's Plate Gauntlets + [21] = { itemID = 28702 }; --Grand Marshal's Plate Legguards [23] = { icon = "INV_BannerPVP_02", name = "=q6=#arenas4_1#", desc = "=ec1=#c4#" }; - [24] = { itemID = 28681, desc = "=q3=Grand Marshal's Lamellar Helm" }; - [25] = { itemID = 28683, desc = "=q3=Grand Marshal's Lamellar Shoulders" }; - [26] = { itemID = 28679, desc = "=q3=Grand Marshal's Lamellar Chestpiece" }; - [27] = { itemID = 28680, desc = "=q3=Grand Marshal's Lamellar Gauntlets" }; - [28] = { itemID = 28724, desc = "=q3=Grand Marshal's Lamellar Legguards" }; + [24] = { itemID = 28681 }; --Grand Marshal's Lamellar Helm + [25] = { itemID = 28683 }; --Grand Marshal's Lamellar Shoulders + [26] = { itemID = 28679 }; --Grand Marshal's Lamellar Chestpiece + [27] = { itemID = 28680 }; --Grand Marshal's Lamellar Gauntlets + [28] = { itemID = 28724 }; --Grand Marshal's Lamellar Legguards }; { Name = BabbleInventory["Cloth"] .. " - Horde"; [1] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep705_1#", desc = "=ec1=#c5#" }; - [2] = { itemID = 28857, desc = "=q3=High Warlord's Satin Hood" }; - [3] = { itemID = 28859, desc = "=q3=High Warlord's Satin Mantle" }; - [4] = { itemID = 28860, desc = "=q3=High Warlord's Satin Robe" }; - [5] = { itemID = 28856, desc = "=q3=High Warlord's Satin Gloves" }; - [6] = { itemID = 28858, desc = "=q3=High Warlord's Satin Leggings" }; + [2] = { itemID = 28857 }; --High Warlord's Satin Hood + [3] = { itemID = 28859 }; --High Warlord's Satin Mantle + [4] = { itemID = 28860 }; --High Warlord's Satin Robe + [5] = { itemID = 28856 }; --High Warlord's Satin Gloves + [6] = { itemID = 28858 }; --High Warlord's Satin Leggings [8] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep705_2#", desc = "=ec1=#c5#" }; - [9] = { itemID = 31626, desc = "=q3=High Warlord's Mooncloth Cowl" }; - [10] = { itemID = 31628, desc = "=q3=High Warlord's Mooncloth Shoulderpads" }; - [11] = { itemID = 31629, desc = "=q3=High Warlord's Mooncloth Vestments" }; - [12] = { itemID = 31621, desc = "=q3=High Warlord's Mooncloth Mitts" }; - [13] = { itemID = 31627, desc = "=q3=High Warlord's Mooncloth Legguards" }; + [9] = { itemID = 31626 }; --High Warlord's Mooncloth Cowl + [10] = { itemID = 31628 }; --High Warlord's Mooncloth Shoulderpads + [11] = { itemID = 31629 }; --High Warlord's Mooncloth Vestments + [12] = { itemID = 31621 }; --High Warlord's Mooncloth Mitts + [13] = { itemID = 31627 }; --High Warlord's Mooncloth Legguards [16] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep703#", desc = "=ec1=#c3#" }; - [17] = { itemID = 28867, desc = "=q3=High Warlord's Silk Cowl" }; - [18] = { itemID = 28866, desc = "=q3=High Warlord's Silk Amice" }; - [19] = { itemID = 28869, desc = "=q3=High Warlord's Silk Raiment" }; - [20] = { itemID = 28868, desc = "=q3=High Warlord's Silk Handguards" }; - [21] = { itemID = 28870, desc = "=q3=High Warlord's Silk Trousers" }; + [17] = { itemID = 28867 }; --High Warlord's Silk Cowl + [18] = { itemID = 28866 }; --High Warlord's Silk Amice + [19] = { itemID = 28869 }; --High Warlord's Silk Raiment + [20] = { itemID = 28868 }; --High Warlord's Silk Handguards + [21] = { itemID = 28870 }; --High Warlord's Silk Trousers [23] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep708#", desc = "=ec1=#c8#" }; - [24] = { itemID = 28818, desc = "=q3=High Warlord's Dreadweave Hood" }; - [25] = { itemID = 28820, desc = "=q3=High Warlord's Dreadweave Mantle" }; - [26] = { itemID = 28821, desc = "=q3=High Warlord's Dreadweave Robe" }; - [27] = { itemID = 28817, desc = "=q3=High Warlord's Dreadweave Gloves" }; - [28] = { itemID = 28819, desc = "=q3=High Warlord's Dreadweave Leggings" }; + [24] = { itemID = 28818 }; --High Warlord's Dreadweave Hood + [25] = { itemID = 28820 }; --High Warlord's Dreadweave Mantle + [26] = { itemID = 28821 }; --High Warlord's Dreadweave Robe + [27] = { itemID = 28817 }; --High Warlord's Dreadweave Gloves + [28] = { itemID = 28819 }; --High Warlord's Dreadweave Leggings }; { Name = BabbleInventory["Leather"] .. " - Horde"; [1] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep701_1#", desc = "=ec1=#c1#" }; - [2] = { itemID = 28812, desc = "=q3=High Warlord's Dragonhide Helm" }; - [3] = { itemID = 28814, desc = "=q3=High Warlord's Dragonhide Spaulders" }; - [4] = { itemID = 28815, desc = "=q3=High Warlord's Dragonhide Robe" }; - [5] = { itemID = 28811, desc = "=q3=High Warlord's Dragonhide Gloves" }; - [6] = { itemID = 28813, desc = "=q3=High Warlord's Dragonhide Legguards" }; + [2] = { itemID = 28812 }; --High Warlord's Dragonhide Helm + [3] = { itemID = 28814 }; --High Warlord's Dragonhide Spaulders + [4] = { itemID = 28815 }; --High Warlord's Dragonhide Robe + [5] = { itemID = 28811 }; --High Warlord's Dragonhide Gloves + [6] = { itemID = 28813 }; --High Warlord's Dragonhide Legguards [8] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep701_2#", desc = "=ec1=#c1#" }; - [9] = { itemID = 28872, desc = "=q3=High Warlord's Wyrmhide Helm" }; - [10] = { itemID = 28874, desc = "=q3=High Warlord's Wyrmhide Spaulders" }; - [11] = { itemID = 28875, desc = "=q3=High Warlord's Wyrmhide Robe" }; - [12] = { itemID = 28871, desc = "=q3=High Warlord's Wyrmhide Gloves" }; - [13] = { itemID = 28873, desc = "=q3=High Warlord's Wyrmhide Legguards" }; + [9] = { itemID = 28872 }; --High Warlord's Wyrmhide Helm + [10] = { itemID = 28874 }; --High Warlord's Wyrmhide Spaulders + [11] = { itemID = 28875 }; --High Warlord's Wyrmhide Robe + [12] = { itemID = 28871 }; --High Warlord's Wyrmhide Gloves + [13] = { itemID = 28873 }; --High Warlord's Wyrmhide Legguards [16] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep701_3#", desc = "=ec1=#c1#" }; - [17] = { itemID = 31585, desc = "=q3=High Warlord's Kodohide Helm" }; - [18] = { itemID = 31587, desc = "=q3=High Warlord's Kodohide Spaulders" }; - [19] = { itemID = 31588, desc = "=q3=High Warlord's Kodohide Robe" }; - [20] = { itemID = 31584, desc = "=q3=High Warlord's Kodohide Gloves" }; - [21] = { itemID = 31586, desc = "=q3=High Warlord's Kodohide Legguards" }; + [17] = { itemID = 31585 }; --High Warlord's Kodohide Helm + [18] = { itemID = 31587 }; --High Warlord's Kodohide Spaulders + [19] = { itemID = 31588 }; --High Warlord's Kodohide Robe + [20] = { itemID = 31584 }; --High Warlord's Kodohide Gloves + [21] = { itemID = 31586 }; --High Warlord's Kodohide Legguards [23] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep706#", desc = "=ec1=#c6#" }; - [24] = { itemID = 28837, desc = "=q3=High Warlord's Leather Helm" }; - [25] = { itemID = 28839, desc = "=q3=High Warlord's Leather Spaulders" }; - [26] = { itemID = 28840, desc = "=q3=High Warlord's Leather Tunic" }; - [27] = { itemID = 28836, desc = "=q3=High Warlord's Leather Gloves" }; - [28] = { itemID = 28838, desc = "=q3=High Warlord's Leather Legguards" }; + [24] = { itemID = 28837 }; --High Warlord's Leather Helm + [25] = { itemID = 28839 }; --High Warlord's Leather Spaulders + [26] = { itemID = 28840 }; --High Warlord's Leather Tunic + [27] = { itemID = 28836 }; --High Warlord's Leather Gloves + [28] = { itemID = 28838 }; --High Warlord's Leather Legguards }; { Name = BabbleInventory["Mail"] .. " - Horde"; [1] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep707_1#", desc = "=ec1=#c7#" }; - [2] = { itemID = 28843, desc = "=q3=High Warlord's Linked Helm" }; - [3] = { itemID = 28845, desc = "=q3=High Warlord's Linked Spaulders" }; - [4] = { itemID = 28841, desc = "=q3=High Warlord's Linked Armor" }; - [5] = { itemID = 28842, desc = "=q3=High Warlord's Linked Gauntlets" }; - [6] = { itemID = 28844, desc = "=q3=High Warlord's Linked Leggings" }; + [2] = { itemID = 28843 }; --High Warlord's Linked Helm + [3] = { itemID = 28845 }; --High Warlord's Linked Spaulders + [4] = { itemID = 28841 }; --High Warlord's Linked Armor + [5] = { itemID = 28842 }; --High Warlord's Linked Gauntlets + [6] = { itemID = 28844 }; --High Warlord's Linked Leggings [8] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep707_2#", desc = "=ec1=#c7#" }; - [9] = { itemID = 28848, desc = "=q3=High Warlord's Mail Helm" }; - [10] = { itemID = 28850, desc = "=q3=High Warlord's Mail Spaulders" }; - [11] = { itemID = 28846, desc = "=q3=High Warlord's Mail Armor" }; - [12] = { itemID = 28847, desc = "=q3=High Warlord's Mail Gauntlets" }; - [13] = { itemID = 28849, desc = "=q3=High Warlord's Mail Leggings" }; + [9] = { itemID = 28848 }; --High Warlord's Mail Helm + [10] = { itemID = 28850 }; --High Warlord's Mail Spaulders + [11] = { itemID = 28846 }; --High Warlord's Mail Armor + [12] = { itemID = 28847 }; --High Warlord's Mail Gauntlets + [13] = { itemID = 28849 }; --High Warlord's Mail Leggings [16] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep707_3#", desc = "=ec1=#c7#" }; - [17] = { itemID = 31648, desc = "=q3=High Warlord's Ringmail Headpiece" }; - [18] = { itemID = 31650, desc = "=q3=High Warlord's Ringmail Shoulderpads" }; - [19] = { itemID = 31646, desc = "=q3=High Warlord's Ringmail Chestguard" }; - [20] = { itemID = 31647, desc = "=q3=High Warlord's Ringmail Gloves" }; - [21] = { itemID = 31649, desc = "=q3=High Warlord's Ringmail Legguards" }; + [17] = { itemID = 31648 }; --High Warlord's Ringmail Headpiece + [18] = { itemID = 31650 }; --High Warlord's Ringmail Shoulderpads + [19] = { itemID = 31646 }; --High Warlord's Ringmail Chestguard + [20] = { itemID = 31647 }; --High Warlord's Ringmail Gloves + [21] = { itemID = 31649 }; --High Warlord's Ringmail Legguards [23] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep702#", desc = "=ec1=#c2#" }; - [24] = { itemID = 28807, desc = "=q3=High Warlord's Chain Helm" }; - [25] = { itemID = 28809, desc = "=q3=High Warlord's Chain Spaulders" }; - [26] = { itemID = 28805, desc = "=q3=High Warlord's Chain Armor" }; - [27] = { itemID = 28806, desc = "=q3=High Warlord's Chain Gauntlets" }; - [28] = { itemID = 28808, desc = "=q3=High Warlord's Chain Leggings" }; + [24] = { itemID = 28807 }; --High Warlord's Chain Helm + [25] = { itemID = 28809 }; --High Warlord's Chain Spaulders + [26] = { itemID = 28805 }; --High Warlord's Chain Armor + [27] = { itemID = 28806 }; --High Warlord's Chain Gauntlets + [28] = { itemID = 28808 }; --High Warlord's Chain Leggings }; { Name = BabbleInventory["Plate"] .. " - Horde"; [1] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep704_1#", desc = "=ec1=#c4#" }; - [2] = { itemID = 28863, desc = "=q3=High Warlord's Scaled Helm" }; - [3] = { itemID = 28865, desc = "=q3=High Warlord's Scaled Shoulders" }; - [4] = { itemID = 28861, desc = "=q3=High Warlord's Scaled Chestpiece" }; - [5] = { itemID = 28862, desc = "=q3=High Warlord's Scaled Gauntlets" }; - [6] = { itemID = 28864, desc = "=q3=High Warlord's Scaled Legguards" }; + [2] = { itemID = 28863 }; --High Warlord's Scaled Helm + [3] = { itemID = 28865 }; --High Warlord's Scaled Shoulders + [4] = { itemID = 28861 }; --High Warlord's Scaled Chestpiece + [5] = { itemID = 28862 }; --High Warlord's Scaled Gauntlets + [6] = { itemID = 28864 }; --High Warlord's Scaled Legguards [8] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep704_2#", desc = "=ec1=#c4#" }; - [9] = { itemID = 31637, desc = "=q3=High Warlord's Ornamented Headguard" }; - [10] = { itemID = 31639, desc = "=q3=High Warlord's Ornamented Spaulders" }; - [11] = { itemID = 31635, desc = "=q3=High Warlord's Ornamented Chestplate" }; - [12] = { itemID = 31636, desc = "=q3=High Warlord's Ornamented Gloves" }; - [13] = { itemID = 31638, desc = "=q3=High Warlord's Ornamented Leggings" }; + [9] = { itemID = 31637 }; --High Warlord's Ornamented Headguard + [10] = { itemID = 31639 }; --High Warlord's Ornamented Spaulders + [11] = { itemID = 31635 }; --High Warlord's Ornamented Chestplate + [12] = { itemID = 31636 }; --High Warlord's Ornamented Gloves + [13] = { itemID = 31638 }; --High Warlord's Ornamented Leggings [16] = { icon = "INV_BannerPVP_01", name = "=q6=#pvprep709#", desc = "=ec1=#c9#" }; - [17] = { itemID = 28853, desc = "=q3=High Warlord's Plate Helm" }; - [18] = { itemID = 28855, desc = "=q3=High Warlord's Plate Shoulders" }; - [19] = { itemID = 28851, desc = "=q3=High Warlord's Plate Chestpiece" }; - [20] = { itemID = 28852, desc = "=q3=High Warlord's Plate Gauntlets" }; - [21] = { itemID = 28854, desc = "=q3=High Warlord's Plate Legguards" }; + [17] = { itemID = 28853 }; --High Warlord's Plate Helm + [18] = { itemID = 28855 }; --High Warlord's Plate Shoulders + [19] = { itemID = 28851 }; --High Warlord's Plate Chestpiece + [20] = { itemID = 28852 }; --High Warlord's Plate Gauntlets + [21] = { itemID = 28854 }; --High Warlord's Plate Legguards [23] = { icon = "INV_BannerPVP_01", name = "=q6=#arenas4_1#", desc = "=ec1=#c4#" }; - [24] = { itemID = 28833, desc = "=q3=High Warlord's Lamellar Helm" }; - [25] = { itemID = 28835, desc = "=q3=High Warlord's Lamellar Shoulders" }; - [26] = { itemID = 28831, desc = "=q3=High Warlord's Lamellar Chestpiece" }; - [27] = { itemID = 28832, desc = "=q3=High Warlord's Lamellar Gauntlets" }; - [28] = { itemID = 28834, desc = "=q3=High Warlord's Lamellar Legguards" }; + [24] = { itemID = 28833 }; --High Warlord's Lamellar Helm + [25] = { itemID = 28835 }; --High Warlord's Lamellar Shoulders + [26] = { itemID = 28831 }; --High Warlord's Lamellar Chestpiece + [27] = { itemID = 28832 }; --High Warlord's Lamellar Gauntlets + [28] = { itemID = 28834 }; --High Warlord's Lamellar Legguards }; }; @@ -5432,107 +5443,107 @@ AtlasLoot_Data["WeaponsTBC"] = { Type = "BCDungeon"; { Name = AL["Hallowed Raiment"]; - [1] = { itemID = 28413, desc = "=ds=" ..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")" }; --Hallowed Crown - [2] = { itemID = 27775, desc = "=ds=" ..BabbleBoss["Grandmaster Vorpil"].." ("..BabbleZone["Shadow Labyrinth"]..")" }; --Hallowed Pauldrons - [3] = { itemID = 28230, desc = "=ds=" ..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")" }; --Hallowed Garments - [4] = { itemID = 27536, desc = "=ds=" ..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")" }; --Hallowed Handwraps - [5] = { itemID = 27875, desc = "=ds=" ..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")" }; --Hallowed Trousers + [1] = { itemID = 28413, desc = {BabbleZone["The Arcatraz"], BabbleBoss["Harbinger Skyriss"]} }; --Hallowed Crown + [2] = { itemID = 27775, desc = {BabbleZone["Shadow Labyrinth"], BabbleBoss["Grandmaster Vorpil"]} }; --Hallowed Pauldrons + [3] = { itemID = 28230, desc = {BabbleZone["Shadow Labyrinth"], BabbleBoss["Murmur"]} }; --Hallowed Garments + [4] = { itemID = 27536, desc = {BabbleZone["The Shattered Halls"], BabbleBoss["Warchief Kargath Bladefist"]} }; --Hallowed Handwraps + [5] = { itemID = 27875, desc = {BabbleZone["Sethekk Halls"], BabbleBoss["Talon King Ikiss"]} }; --Hallowed Trousers }; { Name = AL["Mana-Etched Regalia"]; - [1] = { itemID = 28193, desc = "=ds=" ..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")" }; --Mana-Etched Crown - [2] = { itemID = 27796, desc = "=ds=" ..BabbleBoss["Quagmirran"].." (#j3#)" }; --Mana-Etched Spaulders - [3] = { itemID = 28191, desc = "=ds=" ..BabbleBoss["Epoch Hunter"].." ("..BabbleZone["Old Hillsbrad Foothills"]..") (#j3#)" }; --Mana-Etched Vestments - [4] = { itemID = 27465, desc = "=ds=" ..BabbleBoss["Omor the Unscarred"].." ("..BabbleZone["Hellfire Ramparts"]..") (#j3#)" }; --Mana-Etched Gloves - [5] = { itemID = 27907, desc = "=ds=" ..BabbleBoss["The Black Stalker"].." (#j3#)" }; --Mana-Etched Pantaloons + [1] = { itemID = 28193, desc = {BabbleZone["The Black Morass"], BabbleBoss["Aeonus"]} }; --Mana-Etched Crown + [2] = { itemID = 27796, desc = {BabbleZone["The Slave Pens"], BabbleBoss["Quagmirran"].." (#j3#)" } }; --Mana-Etched Spaulders + [3] = { itemID = 28191, desc = {BabbleZone["Old Hillsbrad Foothills"].."(#j3#)", BabbleBoss["Epoch Hunter"]} }; --Mana-Etched Vestments + [4] = { itemID = 27465, desc = {BabbleZone["Hellfire Ramparts"].."(#j3#)", BabbleBoss["Omor the Unscarred"]} }; --Mana-Etched Gloves + [5] = { itemID = 27907, desc = {BabbleZone["The Slave Pens"], BabbleBoss["The Black Stalker"].." (#j3#)" } }; --Mana-Etched Pantaloons }; { Name = AL["Incanter's Regalia"]; - [1] = { itemID = 28278, desc = "=ds=" ..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")" }; --Incanter's Cowl - [2] = { itemID = 27738, desc = "=ds=" ..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")" }; --Incanter's Pauldrons - [3] = { itemID = 28229, desc = "=ds=" ..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")" }; --Incanter's Robe - [4] = { itemID = 27508, desc = "=ds=" ..BabbleBoss["Hydromancer Thespia"].." ("..BabbleZone["The Steamvault"]..")" }; --Incanter's Gloves - [5] = { itemID = 27838, desc = "=ds=" ..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")" }; --Incanter's Trousers + [1] = { itemID = 28278, desc = {BabbleZone["The Mechanar"], BabbleBoss["Pathaleon the Calculator"]} }; --Incanter's Cowl + [2] = { itemID = 27738, desc = {BabbleZone["The Steamvault"], BabbleBoss["Warlord Kalithresh"]} }; --Incanter's Pauldrons + [3] = { itemID = 28229, desc = {BabbleZone["The Botanica"], BabbleBoss["Warp Splinter"]} }; --Incanter's Robe + [4] = { itemID = 27508, desc = {BabbleZone["The Steamvault"], BabbleBoss["Hydromancer Thespia"]} }; --Incanter's Gloves + [5] = { itemID = 27838, desc = {BabbleZone["Sethekk Halls"], BabbleBoss["Talon King Ikiss"]} }; --Incanter's Trousers }; { Name = AL["Oblivion Raiment"]; - [1] = { itemID = 28415, desc = "=ds=" ..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")" }; --Hood of Oblivion - [2] = { itemID = 27778, desc = "=ds=" ..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")" }; --Spaulders of Oblivion - [3] = { itemID = 28232, desc = "=ds=" ..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")" }; --Robe of Oblivion - [4] = { itemID = 27537, desc = "=ds=" ..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")" }; --Gloves of Oblivion - [5] = { itemID = 27948, desc = "=ds=" ..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")" }; --Trousers of Oblivion + [1] = { itemID = 28415, desc = {BabbleZone["The Arcatraz"], BabbleBoss["Harbinger Skyriss"]} }; --Hood of Oblivion + [2] = { itemID = 27778, desc = {BabbleZone["Shadow Labyrinth"], BabbleBoss["Murmur"]} }; --Spaulders of Oblivion + [3] = { itemID = 28232, desc = {BabbleZone["Shadow Labyrinth"], BabbleBoss["Murmur"]} }; --Robe of Oblivion + [4] = { itemID = 27537, desc = {BabbleZone["The Shattered Halls"], BabbleBoss["Warchief Kargath Bladefist"]} }; --Gloves of Oblivion + [5] = { itemID = 27948, desc = {BabbleZone["Sethekk Halls"], BabbleBoss["Talon King Ikiss"]} }; --Trousers of Oblivion }; { Name = AL["Assassination Armor"]; - [1] = { itemID = 28414, desc = "=ds=" ..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")" }; --Helm of Assassination - [2] = { itemID = 27776, desc = "=ds=" ..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")" }; --Shoulderpads of Assassination - [3] = { itemID = 28204, desc = "=ds=" ..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")" }; --Tunic of Assassination - [4] = { itemID = 27509, desc = "=ds=" ..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")" }; --Handgrips of Assassination - [5] = { itemID = 27908, desc = "=ds=" ..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")" }; --Leggings of Assassination + [1] = { itemID = 28414, desc = {BabbleZone["The Arcatraz"], BabbleBoss["Harbinger Skyriss"]} }; --Helm of Assassination + [2] = { itemID = 27776, desc = {BabbleZone["Sethekk Halls"], BabbleBoss["Talon King Ikiss"]} }; --Shoulderpads of Assassination + [3] = { itemID = 28204, desc = {BabbleZone["The Mechanar"], BabbleBoss["Pathaleon the Calculator"]} }; --Tunic of Assassination + [4] = { itemID = 27509, desc = {BabbleZone["The Black Morass"], BabbleBoss["Aeonus"]} }; --Handgrips of Assassination + [5] = { itemID = 27908, desc = {BabbleZone["Shadow Labyrinth"], BabbleBoss["Murmur"]} }; --Leggings of Assassination }; { Name = AL["Wastewalker Armor"]; - [1] = { itemID = 28224, desc = "=ds=" ..BabbleBoss["Epoch Hunter"].." ("..BabbleZone["Old Hillsbrad Foothills"]..") (#j3#)" }; --Wastewalker Helm - [2] = { itemID = 27797, desc = "=ds=" ..AL["Avatar"].." ("..BabbleZone["Auchenai Crypts"]..") (#j3#)" }; --Wastewalker Shoulderpads - [3] = { itemID = 28264, desc = "=ds=" ..BabbleBoss["Keli'dan the Breaker"].." ("..BabbleZone["The Blood Furnace"]..") (#j3#)" }; --Wastewalker Tunic - [4] = { itemID = 27531, desc = "=ds=" ..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")" }; --Wastewalker Gloves - [5] = { itemID = 27837, desc = "=ds=" ..BabbleBoss["Nexus-Prince Shaffar"].." ("..BabbleZone["Mana-Tombs"]..") (#j3#)" }; --Wastewalker Leggings + [1] = { itemID = 28224, desc = {BabbleZone["Old Hillsbrad Foothills"].."(#j3#)", BabbleBoss["Epoch Hunter"]} }; --Wastewalker Helm + [2] = { itemID = 27797, desc = {BabbleZone["Auchenai Crypts"].."(#j3#)", AL["Avatar"]} }; --Wastewalker Shoulderpads + [3] = { itemID = 28264, desc = {BabbleZone["The Blood Furnace"].."(#j3#)", BabbleBoss["Keli'dan the Breaker"]} }; --Wastewalker Tunic + [4] = { itemID = 27531, desc = {BabbleZone["The Shattered Halls"], BabbleBoss["Warchief Kargath Bladefist"]} }; --Wastewalker Gloves + [5] = { itemID = 27837, desc = {BabbleZone["Mana-Tombs"].."(#j3#)", BabbleBoss["Nexus-Prince Shaffar"]} }; --Wastewalker Leggings }; { Name = AL["Moonglade Raiment"]; - [1] = { itemID = 28348, desc = "=ds=" ..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")" }; --Moonglade Cowl - [2] = { itemID = 27737, desc = "=ds=" ..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")" }; --Moonglade Shoulders - [3] = { itemID = 28202, desc = "=ds=" ..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")" }; --Moonglade Robe - [4] = { itemID = 27468, desc = "=ds=" ..BabbleBoss["Blackheart the Inciter"].." ("..BabbleZone["Shadow Labyrinth"]..")" }; --Moonglade Handwraps - [5] = { itemID = 27873, desc = "=ds=" ..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")" }; --Moonglade Pants + [1] = { itemID = 28348, desc = {BabbleZone["The Botanica"], BabbleBoss["Warp Splinter"]} }; --Moonglade Cowl + [2] = { itemID = 27737, desc = {BabbleZone["The Steamvault"], BabbleBoss["Warlord Kalithresh"]} }; --Moonglade Shoulders + [3] = { itemID = 28202, desc = {BabbleZone["The Mechanar"], BabbleBoss["Pathaleon the Calculator"]} }; --Moonglade Robe + [4] = { itemID = 27468, desc = {BabbleZone["Shadow Labyrinth"], BabbleBoss["Blackheart the Inciter"]} }; --Moonglade Handwraps + [5] = { itemID = 27873, desc = {BabbleZone["The Black Morass"], BabbleBoss["Aeonus"]} }; --Moonglade Pants }; { Name = AL["Beast Lord Armor"]; - [1] = { itemID = 28275, desc = "=ds=" ..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")" }; --Beast Lord Helm - [2] = { itemID = 27801, desc = "=ds=" ..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")" }; --Beast Lord Mantle - [3] = { itemID = 28228, desc = "=ds=" ..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")" }; --Beast Lord Curiass - [4] = { itemID = 27474, desc = "=ds=" ..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")" }; --Beast Lord Handguards - [5] = { itemID = 27874, desc = "=ds=" ..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")" }; --Beast Lord Leggings + [1] = { itemID = 28275, desc = {BabbleZone["The Mechanar"], BabbleBoss["Pathaleon the Calculator"]} }; --Beast Lord Helm + [2] = { itemID = 27801, desc = {BabbleZone["The Steamvault"], BabbleBoss["Warlord Kalithresh"]} }; --Beast Lord Mantle + [3] = { itemID = 28228, desc = {BabbleZone["The Botanica"], BabbleBoss["Warp Splinter"]} }; --Beast Lord Curiass + [4] = { itemID = 27474, desc = {BabbleZone["The Shattered Halls"], BabbleBoss["Warchief Kargath Bladefist"]} }; --Beast Lord Handguards + [5] = { itemID = 27874, desc = {BabbleZone["The Steamvault"], BabbleBoss["Warlord Kalithresh"]} }; --Beast Lord Leggings }; { Name = AL["Tidefury Raiment"]; - [1] = { itemID = 28349, desc = "=ds=" ..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")" }; --Tidefury Helm - [2] = { itemID = 27802, desc = "=ds=" ..BabbleBoss["Warbringer O'mrogg"].." ("..BabbleZone["The Shattered Halls"]..")" }; --Tidefury Shoulderguards - [3] = { itemID = 28231, desc = "=ds=" ..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")" }; --Tidefury Chestpiece - [4] = { itemID = 27510, desc = "=ds=" ..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")" }; --Tidefury Gauntlets - [5] = { itemID = 27909, desc = "=ds=" ..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")" }; --Tidefury Kilt + [1] = { itemID = 28349, desc = {BabbleZone["The Botanica"], BabbleBoss["Warp Splinter"]} }; --Tidefury Helm + [2] = { itemID = 27802, desc = {BabbleZone["The Shattered Halls"], BabbleBoss["Warbringer O'mrogg"]} }; --Tidefury Shoulderguards + [3] = { itemID = 28231, desc = {BabbleZone["The Arcatraz"], BabbleBoss["Harbinger Skyriss"]} }; --Tidefury Chestpiece + [4] = { itemID = 27510, desc = {BabbleZone["The Steamvault"], BabbleBoss["Warlord Kalithresh"]} }; --Tidefury Gauntlets + [5] = { itemID = 27909, desc = {BabbleZone["Shadow Labyrinth"], BabbleBoss["Murmur"]} }; --Tidefury Kilt }; { Name = AL["Desolation Battlegear"]; - [1] = { itemID = 28192, desc = "=ds=" ..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")" }; --Helm of Desolation - [2] = { itemID = 27713, desc = "=ds=" ..BabbleBoss["Quagmirran"].." (#j3#)" }; --Pauldrons of Desolation - [3] = { itemID = 28401, desc = "=ds=" ..BabbleBoss["Epoch Hunter"].." ("..BabbleZone["Old Hillsbrad Foothills"]..") (#j3#)" }; --Hauberk of Desolation - [4] = { itemID = 27528, desc = "=ds=" ..BabbleBoss["Warchief Kargath Bladefist"].." ("..BabbleZone["The Shattered Halls"]..")" }; --Gauntlets of Desolation - [5] = { itemID = 27936, desc = "=ds=" ..BabbleBoss["Talon King Ikiss"].." ("..BabbleZone["Sethekk Halls"]..")" }; --Greaves of Desolation + [1] = { itemID = 28192, desc = {BabbleZone["The Black Morass"], BabbleBoss["Aeonus"]} }; --Helm of Desolation + [2] = { itemID = 27713, desc = {BabbleZone["The Slave Pens"], BabbleBoss["Quagmirran"].." (#j3#)" } }; --Pauldrons of Desolation + [3] = { itemID = 28401, desc = {BabbleZone["Old Hillsbrad Foothills"].."(#j3#)", BabbleBoss["Epoch Hunter"]} }; --Hauberk of Desolation + [4] = { itemID = 27528, desc = {BabbleZone["The Shattered Halls"], BabbleBoss["Warchief Kargath Bladefist"]} }; --Gauntlets of Desolation + [5] = { itemID = 27936, desc = {BabbleZone["Sethekk Halls"], BabbleBoss["Talon King Ikiss"]} }; --Greaves of Desolation }; { Name = AL["Bold Armor"]; - [1] = { itemID = 28350, desc = "=ds=" ..BabbleBoss["Warp Splinter"].." ("..BabbleZone["The Botanica"]..")" }; --Warhelm of the Bold - [2] = { itemID = 27803, desc = "=ds=" ..BabbleBoss["Murmur"].." ("..BabbleZone["Shadow Labyrinth"]..")" }; --Shoulderguards of the Bold - [3] = { itemID = 28205, desc = "=ds=" ..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")" }; --Breastplate of the Bold - [4] = { itemID = 27475, desc = "=ds=" ..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")" }; --Gauntlets of the Bold - [5] = { itemID = 27977, desc = "=ds=" ..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")" }; --Legplates of the Bold + [1] = { itemID = 28350, desc = {BabbleZone["The Botanica"], BabbleBoss["Warp Splinter"]} }; --Warhelm of the Bold + [2] = { itemID = 27803, desc = {BabbleZone["Shadow Labyrinth"], BabbleBoss["Murmur"]} }; --Shoulderguards of the Bold + [3] = { itemID = 28205, desc = {BabbleZone["The Arcatraz"], BabbleBoss["Harbinger Skyriss"]} }; --Breastplate of the Bold + [4] = { itemID = 27475, desc = {BabbleZone["The Steamvault"], BabbleBoss["Warlord Kalithresh"]} }; --Gauntlets of the Bold + [5] = { itemID = 27977, desc = {BabbleZone["The Black Morass"], BabbleBoss["Aeonus"]} }; --Legplates of the Bold }; { Name = AL["Righteous Armor"]; - [1] = { itemID = 28285, desc = "=ds=" ..BabbleBoss["Pathaleon the Calculator"].." ("..BabbleZone["The Mechanar"]..")" }; --Helm of the Righteous - [2] = { itemID = 27739, desc = "=ds=" ..BabbleBoss["Laj"].." ("..BabbleZone["The Botanica"]..")" }; --Spaulders of the Righteous - [3] = { itemID = 28203, desc = "=ds=" ..BabbleBoss["Warlord Kalithresh"].." ("..BabbleZone["The Steamvault"]..")" }; --Breastplate of the Righteous - [4] = { itemID = 27535, desc = "=ds=" ..BabbleBoss["Warbringer O'mrogg"].." ("..BabbleZone["The Shattered Halls"]..")" }; --Gauntlets of the Righteous - [5] = { itemID = 27839, desc = "=ds=" ..BabbleBoss["Aeonus"].." ("..BabbleZone["The Black Morass"]..")" }; --Legplates of the Righteous + [1] = { itemID = 28285, desc = {BabbleZone["The Mechanar"], BabbleBoss["Pathaleon the Calculator"]} }; --Helm of the Righteous + [2] = { itemID = 27739, desc = {BabbleZone["The Botanica"], BabbleBoss["Laj"]} }; --Spaulders of the Righteous + [3] = { itemID = 28203, desc = {BabbleZone["The Steamvault"], BabbleBoss["Warlord Kalithresh"]} }; --Breastplate of the Righteous + [4] = { itemID = 27535, desc = {BabbleZone["The Shattered Halls"], BabbleBoss["Warbringer O'mrogg"]} }; --Gauntlets of the Righteous + [5] = { itemID = 27839, desc = {BabbleZone["The Black Morass"], BabbleBoss["Aeonus"]} }; --Legplates of the Righteous }; { Name = AL["Doomplate Battlegear"]; - [1] = { itemID = 28225, desc = "=ds=" ..BabbleBoss["Epoch Hunter"].." ("..BabbleZone["Old Hillsbrad Foothills"]..") (#j3#)" }; --Doomplate Warhelm - [2] = { itemID = 27771, desc = "=ds=" ..BabbleBoss["The Black Stalker"].." (#j3#)" }; --Doomplate Shouldergards - [3] = { itemID = 28403, desc = "=ds=" ..BabbleBoss["Harbinger Skyriss"].." ("..BabbleZone["The Arcatraz"]..")" }; --Doomplate Chestguard - [4] = { itemID = 27497, desc = "=ds=" ..BabbleBoss["Keli'dan the Breaker"].." ("..BabbleZone["The Blood Furnace"]..") (#j3#)" }; --Doomplate Gauntlets - [5] = { itemID = 27870, desc = "=ds=" ..BabbleBoss["Exarch Maladaar"].." ("..BabbleZone["Auchenai Crypts"]..") (#j3#)" }; --Doomplate Legguards + [1] = { itemID = 28225, desc = {BabbleZone["Old Hillsbrad Foothills"].."(#j3#)", BabbleBoss["Epoch Hunter"]} }; --Doomplate Warhelm + [2] = { itemID = 27771, desc = {BabbleZone["The Slave Pens"], BabbleBoss["The Black Stalker"].." (#j3#)" } }; --Doomplate Shouldergards + [3] = { itemID = 28403, desc = {BabbleZone["The Arcatraz"], BabbleBoss["Harbinger Skyriss"]} }; --Doomplate Chestguard + [4] = { itemID = 27497, desc = {BabbleZone["The Blood Furnace"].."(#j3#)", BabbleBoss["Keli'dan the Breaker"]} }; --Doomplate Gauntlets + [5] = { itemID = 27870, desc = {BabbleZone["Auchenai Crypts"].."(#j3#)", BabbleBoss["Exarch Maladaar"]} }; --Doomplate Legguards }; }; @@ -5545,148 +5556,148 @@ AtlasLoot_Data["WeaponsTBC"] = { Name = "Tier 4"; Type = "BCRaid"; { - Name = "Druid".." - "..AL["Feral"]; - [1] = { itemID = 29098, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Stag-Helm of Malorne - [2] = { itemID = 29100, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Mantle of Malorne - [3] = { itemID = 29096, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Breastplate of Malorne - [4] = { itemID = 29097, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Gauntlets of Malorne - [5] = { itemID = 29099, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Greaves of Malorne + Name = "Druid"..WHITE.." - "..AL["Feral"]; + [1] = { itemID = 29098, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Stag-Helm of Malorne + [2] = { itemID = 29100, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Mantle of Malorne + [3] = { itemID = 29096, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Breastplate of Malorne + [4] = { itemID = 29097, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Gauntlets of Malorne + [5] = { itemID = 29099, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Greaves of Malorne }; { - Name = "Druid".." - "..AL["Restoration"]; - [1] = { itemID = 29086, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Crown of Malorne - [2] = { itemID = 29089, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Shoulderguards of Malorne - [3] = { itemID = 29087, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Chestguard of Malorne - [4] = { itemID = 29090, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Handguards of Malorne - [5] = { itemID = 29088, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Legguards of Malorne + Name = "Druid"..WHITE.." - "..AL["Restoration"]; + [1] = { itemID = 29086, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Crown of Malorne + [2] = { itemID = 29089, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Shoulderguards of Malorne + [3] = { itemID = 29087, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Chestguard of Malorne + [4] = { itemID = 29090, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Handguards of Malorne + [5] = { itemID = 29088, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Legguards of Malorne }; { - Name = "Druid".." - "..AL["Balance"]; - [1] = { itemID = 29093, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Antlers of Malorne - [2] = { itemID = 29095, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Pauldrons of Malorne - [3] = { itemID = 29091, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Chestpiece of Malorne - [4] = { itemID = 29092, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Gloves of Malorne - [5] = { itemID = 29094, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Britches of Malorne + Name = "Druid"..WHITE.." - "..AL["Balance"]; + [1] = { itemID = 29093, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Antlers of Malorne + [2] = { itemID = 29095, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Pauldrons of Malorne + [3] = { itemID = 29091, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Chestpiece of Malorne + [4] = { itemID = 29092, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Gloves of Malorne + [5] = { itemID = 29094, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Britches of Malorne }; { Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"]; - [1] = { itemID = 29081, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Demon Stalker Greathelm - [2] = { itemID = 29084, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Demon Stalker Shoulderguards - [3] = { itemID = 29082, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Demon Stalker Harness - [4] = { itemID = 29085, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Demon Stalker Gauntlets - [5] = { itemID = 29083, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Demon Stalker Greaves + [1] = { itemID = 29081, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Demon Stalker Greathelm + [2] = { itemID = 29084, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Demon Stalker Shoulderguards + [3] = { itemID = 29082, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Demon Stalker Harness + [4] = { itemID = 29085, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Demon Stalker Gauntlets + [5] = { itemID = 29083, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Demon Stalker Greaves }; { Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"]; - [1] = { itemID = 29076, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Collar of the Aldor - [2] = { itemID = 29079, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Pauldrons of the Aldor - [3] = { itemID = 29077, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Vestments of the Aldor - [4] = { itemID = 29080, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Gloves of the Aldor - [5] = { itemID = 29078, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Legwraps of the Aldor + [1] = { itemID = 29076, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Collar of the Aldor + [2] = { itemID = 29079, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Pauldrons of the Aldor + [3] = { itemID = 29077, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Vestments of the Aldor + [4] = { itemID = 29080, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Gloves of the Aldor + [5] = { itemID = 29078, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Legwraps of the Aldor }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Protection"]; - [1] = { itemID = 29068, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Justicar Faceguard - [2] = { itemID = 29070, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Justicar Shoulderguards - [3] = { itemID = 29066, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Justicar Chestguard - [4] = { itemID = 29067, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Justicar Handguards - [5] = { itemID = 29069, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Justicar Legguards + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]..WHITE.." - "..AL["Protection"]; + [1] = { itemID = 29068, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Justicar Faceguard + [2] = { itemID = 29070, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Justicar Shoulderguards + [3] = { itemID = 29066, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Justicar Chestguard + [4] = { itemID = 29067, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Justicar Handguards + [5] = { itemID = 29069, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Justicar Legguards }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Retribution"]; - [1] = { itemID = 29073, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Justicar Crown - [2] = { itemID = 29075, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Justicar Shoulderplates - [3] = { itemID = 29071, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Justicar Breastplate - [4] = { itemID = 29072, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Justicar Gauntlets - [5] = { itemID = 29074, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Justicar Greaves + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]..WHITE.." - "..AL["Retribution"]; + [1] = { itemID = 29073, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Justicar Crown + [2] = { itemID = 29075, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Justicar Shoulderplates + [3] = { itemID = 29071, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Justicar Breastplate + [4] = { itemID = 29072, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Justicar Gauntlets + [5] = { itemID = 29074, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Justicar Greaves }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Holy"]; - [1] = { itemID = 29061, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Justicar Diadem - [2] = { itemID = 29064, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Justicar Pauldrons - [3] = { itemID = 29062, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Justicar Chestpiece - [4] = { itemID = 29065, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Justicar Gloves - [5] = { itemID = 29063, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Justicar Leggings + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]..WHITE.." - "..AL["Holy"]; + [1] = { itemID = 29061, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Justicar Diadem + [2] = { itemID = 29064, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Justicar Pauldrons + [3] = { itemID = 29062, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Justicar Chestpiece + [4] = { itemID = 29065, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Justicar Gloves + [5] = { itemID = 29063, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Justicar Leggings }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Holy"]; - [1] = { itemID = 29049, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Light-Collar of the Incarnate - [2] = { itemID = 29054, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Light-Mantle of the Incarnate - [3] = { itemID = 29050, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Robes of the Incarnate - [4] = { itemID = 29055, desc = "The Curator (" ..BabbleZone["Karazhan"]..")" }; --Handwraps of the Incarnate - [5] = { itemID = 29053, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Trousers of the Incarnate + Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"]..WHITE.." - "..AL["Holy"]; + [1] = { itemID = 29049, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Light-Collar of the Incarnate + [2] = { itemID = 29054, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Light-Mantle of the Incarnate + [3] = { itemID = 29050, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Robes of the Incarnate + [4] = { itemID = 29055, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Handwraps of the Incarnate + [5] = { itemID = 29053, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Trousers of the Incarnate }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Shadow"]; - [1] = { itemID = 29058, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Soul-Collar of the Incarnate - [2] = { itemID = 29060, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Soul-Mantle of the Incarnate - [3] = { itemID = 29056, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Shroud of the Incarnate - [4] = { itemID = 29057, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Gloves of the Incarnate - [5] = { itemID = 29059, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Leggings of the Incarnate + Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"]..WHITE.." - "..AL["Shadow"]; + [1] = { itemID = 29058, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Soul-Collar of the Incarnate + [2] = { itemID = 29060, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Soul-Mantle of the Incarnate + [3] = { itemID = 29056, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Shroud of the Incarnate + [4] = { itemID = 29057, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Gloves of the Incarnate + [5] = { itemID = 29059, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Leggings of the Incarnate }; { Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"]; - [1] = { itemID = 29044, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Netherblade Facemask - [2] = { itemID = 29047, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Netherblade Shoulderpads - [3] = { itemID = 29045, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Netherblade Chestpiece - [4] = { itemID = 29048, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Netherblade Gloves - [5] = { itemID = 29046, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Netherblade Breeches + [1] = { itemID = 29044, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Netherblade Facemask + [2] = { itemID = 29047, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Netherblade Shoulderpads + [3] = { itemID = 29045, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Netherblade Chestpiece + [4] = { itemID = 29048, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Netherblade Gloves + [5] = { itemID = 29046, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Netherblade Breeches }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Enhancement"]; - [1] = { itemID = 29040, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Cyclone Helm - [2] = { itemID = 29043, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Cyclone Shoulderplates - [3] = { itemID = 29038, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Cyclone Breastplate - [4] = { itemID = 29039, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Cyclone Gauntlets - [5] = { itemID = 29042, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Cyclone War-Kilt + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]..WHITE.." - "..AL["Enhancement"]; + [1] = { itemID = 29040, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Cyclone Helm + [2] = { itemID = 29043, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Cyclone Shoulderplates + [3] = { itemID = 29038, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Cyclone Breastplate + [4] = { itemID = 29039, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Cyclone Gauntlets + [5] = { itemID = 29042, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Cyclone War-Kilt }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Restoration"]; - [1] = { itemID = 29028, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Cyclone Headdress - [2] = { itemID = 29031, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Cyclone Shoulderpads - [3] = { itemID = 29029, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Cyclone Hauberk - [4] = { itemID = 29032, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Cyclone Gloves - [5] = { itemID = 29030, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Cyclone Kilt + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]..WHITE.." - "..AL["Restoration"]; + [1] = { itemID = 29028, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Cyclone Headdress + [2] = { itemID = 29031, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Cyclone Shoulderpads + [3] = { itemID = 29029, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Cyclone Hauberk + [4] = { itemID = 29032, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Cyclone Gloves + [5] = { itemID = 29030, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Cyclone Kilt }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Elemental"]; - [1] = { itemID = 29035, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Cyclone Faceguard - [2] = { itemID = 29037, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Cyclone Shoulderguards - [3] = { itemID = 29033, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Cyclone Chestguard - [4] = { itemID = 29034, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Cyclone Handguards - [5] = { itemID = 29036, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Cyclone Legguards + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]..WHITE.." - "..AL["Elemental"]; + [1] = { itemID = 29035, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Cyclone Faceguard + [2] = { itemID = 29037, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Cyclone Shoulderguards + [3] = { itemID = 29033, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Cyclone Chestguard + [4] = { itemID = 29034, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Cyclone Handguards + [5] = { itemID = 29036, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Cyclone Legguards }; { Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"]; - [1] = { itemID = 28963, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Voidheart Crown - [2] = { itemID = 28967, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Voidheart Mantle - [3] = { itemID = 28964, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Voidheart Robe - [4] = { itemID = 28968, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Voidheart Gloves - [5] = { itemID = 28966, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Voidheart Leggings + [1] = { itemID = 28963, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Voidheart Crown + [2] = { itemID = 28967, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Voidheart Mantle + [3] = { itemID = 28964, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Voidheart Robe + [4] = { itemID = 28968, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Voidheart Gloves + [5] = { itemID = 28966, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Voidheart Leggings }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"]; - [1] = { itemID = 29011, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Warbringer Greathelm - [2] = { itemID = 29016, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Warbringer Shoulderguards - [3] = { itemID = 29012, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Warbringer Chestguard - [4] = { itemID = 29017, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Warbringer Handguards - [5] = { itemID = 29015, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Warbringer Legguards + Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"]..WHITE.." - "..AL["Protection"]; + [1] = { itemID = 29011, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Warbringer Greathelm + [2] = { itemID = 29016, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Warbringer Shoulderguards + [3] = { itemID = 29012, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Warbringer Chestguard + [4] = { itemID = 29017, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Warbringer Handguards + [5] = { itemID = 29015, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Warbringer Legguards }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"]; - [1] = { itemID = 14984, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Warbringer Helmet - [2] = { itemID = 14988, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Warbringer Pauldrons - [3] = { itemID = 14985, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Warbringer Hauberk - [4] = { itemID = 14989, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Warbringer Gloves - [5] = { itemID = 14987, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Warbringer Leggings + Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"]..WHITE.." - "..AL["Protection"]; + [1] = { itemID = 14984, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Warbringer Helmet + [2] = { itemID = 14988, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Warbringer Pauldrons + [3] = { itemID = 14985, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Warbringer Hauberk + [4] = { itemID = 14989, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Warbringer Gloves + [5] = { itemID = 14987, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Warbringer Leggings }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Fury"]; - [1] = { itemID = 29021, desc = "=ds=" ..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")" }; --Warbringer Battle-Helm - [2] = { itemID = 29023, desc = "=ds=" ..BabbleBoss["High King Maulgar"] }; --Warbringer Shoulderplates - [3] = { itemID = 29019, desc = "=ds=" ..BabbleBoss["Magtheridon"] }; --Warbringer Breastplate - [4] = { itemID = 29020, desc = "=ds=" ..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")" }; --Warbringer Gauntlets - [5] = { itemID = 29022, desc = "=ds=" ..BabbleBoss["Gruul the Dragonkiller"] }; --Warbringer Greaves + Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"]..WHITE.." - "..AL["Fury"]; + [1] = { itemID = 29021, desc = {BabbleZone["Karazhan"], BabbleBoss["Prince Malchezaar"]} }; --Warbringer Battle-Helm + [2] = { itemID = 29023, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["High King Maulgar"]} }; --Warbringer Shoulderplates + [3] = { itemID = 29019, desc = {BabbleZone["Magtheridon's Lair"], BabbleBoss["Magtheridon"]} }; --Warbringer Breastplate + [4] = { itemID = 29020, desc = {BabbleZone["Karazhan"], BabbleBoss["The Curator"]} }; --Warbringer Gauntlets + [5] = { itemID = 29022, desc = {BabbleZone["Gruul's Lair"], BabbleBoss["Gruul the Dragonkiller"]} }; --Warbringer Greaves } }; @@ -5699,148 +5710,148 @@ AtlasLoot_Data["T5"] = { Name = "Tier 5"; Type = "BCRaid"; { - Name = "Druid".." - "..AL["Feral"]; - [1] = { itemID = 30228, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Nordrassil Headdress - [2] = { itemID = 30230, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Nordrassil Feral-Mantle - [3] = { itemID = 30222, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Nordrassil Chestplate - [4] = { itemID = 30223, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Nordrassil Handgrips - [5] = { itemID = 30229, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Nordrassil Feral-Kilt + Name = "Druid"..WHITE.." - "..AL["Feral"]; + [1] = { itemID = 30228, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Nordrassil Headdress + [2] = { itemID = 30230, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Nordrassil Feral-Mantle + [3] = { itemID = 30222, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Nordrassil Chestplate + [4] = { itemID = 30223, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Nordrassil Handgrips + [5] = { itemID = 30229, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Nordrassil Feral-Kilt }; { - Name = "Druid".." - "..AL["Restoration"]; - [1] = { itemID = 30219, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Nordrassil Headguard - [2] = { itemID = 30221, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Nordrassil Life-Mantle - [3] = { itemID = 30216, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Nordrassil Chestguard - [4] = { itemID = 30217, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Nordrassil Gloves - [5] = { itemID = 30220, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Nordrassil Life-Kilt + Name = "Druid"..WHITE.." - "..AL["Restoration"]; + [1] = { itemID = 30219, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Nordrassil Headguard + [2] = { itemID = 30221, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Nordrassil Life-Mantle + [3] = { itemID = 30216, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Nordrassil Chestguard + [4] = { itemID = 30217, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Nordrassil Gloves + [5] = { itemID = 30220, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Nordrassil Life-Kilt }; { - Name = "Druid".." - "..AL["Balance"]; - [1] = { itemID = 30233, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Nordrassil Headpiece - [2] = { itemID = 30235, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Nordrassil Wrath-Mantle - [3] = { itemID = 30231, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Nordrassil Chestpiece - [4] = { itemID = 30232, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Nordrassil Gauntlets - [5] = { itemID = 30234, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Nordrassil Wrath-Kilt + Name = "Druid"..WHITE.." - "..AL["Balance"]; + [1] = { itemID = 30233, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Nordrassil Headpiece + [2] = { itemID = 30235, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Nordrassil Wrath-Mantle + [3] = { itemID = 30231, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Nordrassil Chestpiece + [4] = { itemID = 30232, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Nordrassil Gauntlets + [5] = { itemID = 30234, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Nordrassil Wrath-Kilt }; { Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"]; - [1] = { itemID = 30141, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Rift Stalker Helm - [2] = { itemID = 30143, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Rift Stalker Mantle - [3] = { itemID = 30139, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Rift Stalker Hauberk - [4] = { itemID = 30140, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Rift Stalker Gauntlets - [5] = { itemID = 30142, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Rift Stalker Leggings + [1] = { itemID = 30141, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Rift Stalker Helm + [2] = { itemID = 30143, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Rift Stalker Mantle + [3] = { itemID = 30139, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Rift Stalker Hauberk + [4] = { itemID = 30140, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Rift Stalker Gauntlets + [5] = { itemID = 30142, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Rift Stalker Leggings }; { Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"]; - [1] = { itemID = 30206, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Cowl of Tirisfal - [2] = { itemID = 30210, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Mantle of Tirisfal - [3] = { itemID = 30196, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Robes of Tirisfal - [4] = { itemID = 30205, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Gloves of Tirisfal - [5] = { itemID = 30207, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Leggings of Tirisfal + [1] = { itemID = 30206, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Cowl of Tirisfal + [2] = { itemID = 30210, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Mantle of Tirisfal + [3] = { itemID = 30196, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Robes of Tirisfal + [4] = { itemID = 30205, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Gloves of Tirisfal + [5] = { itemID = 30207, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Leggings of Tirisfal }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Protection"]; - [1] = { itemID = 30125, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Crystalforge Faceguard - [2] = { itemID = 30127, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Crystalforge Shoulderguards - [3] = { itemID = 30123, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Crystalforge Chestguard - [4] = { itemID = 30124, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Crystalforge Handguards - [5] = { itemID = 30126, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Crystalforge Legguards + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]..WHITE.." - "..AL["Protection"]; + [1] = { itemID = 30125, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Crystalforge Faceguard + [2] = { itemID = 30127, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Crystalforge Shoulderguards + [3] = { itemID = 30123, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Crystalforge Chestguard + [4] = { itemID = 30124, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Crystalforge Handguards + [5] = { itemID = 30126, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Crystalforge Legguards }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Retribution"]; - [1] = { itemID = 30131, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Crystalforge War-Helm - [2] = { itemID = 30133, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Crystalforge Shoulderbraces - [3] = { itemID = 30129, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Crystalforge Breastplate - [4] = { itemID = 30130, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Crystalforge Gauntlets - [5] = { itemID = 30132, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Crystalforge Greaves + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]..WHITE.." - "..AL["Retribution"]; + [1] = { itemID = 30131, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Crystalforge War-Helm + [2] = { itemID = 30133, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Crystalforge Shoulderbraces + [3] = { itemID = 30129, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Crystalforge Breastplate + [4] = { itemID = 30130, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Crystalforge Gauntlets + [5] = { itemID = 30132, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Crystalforge Greaves }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Holy"]; - [1] = { itemID = 30136, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Crystalforge Greathelm - [2] = { itemID = 30138, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Crystalforge Pauldrons - [3] = { itemID = 30134, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Crystalforge Chestpiece - [4] = { itemID = 30135, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Crystalforge Gloves - [5] = { itemID = 30137, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Crystalforge Leggings + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]..WHITE.." - "..AL["Holy"]; + [1] = { itemID = 30136, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Crystalforge Greathelm + [2] = { itemID = 30138, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Crystalforge Pauldrons + [3] = { itemID = 30134, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Crystalforge Chestpiece + [4] = { itemID = 30135, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Crystalforge Gloves + [5] = { itemID = 30137, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Crystalforge Leggings }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Holy"]; - [1] = { itemID = 30152, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Cowl of the Avatar - [2] = { itemID = 30154, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Mantle of the Avatar - [3] = { itemID = 30150, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Vestments of the Avatar - [4] = { itemID = 30151, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Gloves of the Avatar - [5] = { itemID = 30153, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Breeches of the Avatar + Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"]..WHITE.." - "..AL["Holy"]; + [1] = { itemID = 30152, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Cowl of the Avatar + [2] = { itemID = 30154, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Mantle of the Avatar + [3] = { itemID = 30150, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Vestments of the Avatar + [4] = { itemID = 30151, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Gloves of the Avatar + [5] = { itemID = 30153, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Breeches of the Avatar }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Shadow"]; - [1] = { itemID = 30161, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Hood of the Avatar - [2] = { itemID = 30163, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Wings of the Avatar - [3] = { itemID = 30159, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Shroud of the Avatar - [4] = { itemID = 30160, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Handguards of the Avatar - [5] = { itemID = 30162, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Leggings of the Avatar + Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"]..WHITE.." - "..AL["Shadow"]; + [1] = { itemID = 30161, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Hood of the Avatar + [2] = { itemID = 30163, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Wings of the Avatar + [3] = { itemID = 30159, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Shroud of the Avatar + [4] = { itemID = 30160, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Handguards of the Avatar + [5] = { itemID = 30162, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Leggings of the Avatar }; { Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"]; - [1] = { itemID = 30146, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Deathmantle Helm - [2] = { itemID = 30149, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Deathmantle Shoulderpads - [3] = { itemID = 30144, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Deathmantle Chestguard - [4] = { itemID = 30145, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Deathmantle Handguards - [5] = { itemID = 30148, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Deathmantle Legguards + [1] = { itemID = 30146, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Deathmantle Helm + [2] = { itemID = 30149, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Deathmantle Shoulderpads + [3] = { itemID = 30144, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Deathmantle Chestguard + [4] = { itemID = 30145, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Deathmantle Handguards + [5] = { itemID = 30148, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Deathmantle Legguards }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Enhancement"]; - [1] = { itemID = 30190, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Cataclysm Helm - [2] = { itemID = 30194, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Cataclysm Shoulderplates - [3] = { itemID = 30185, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Cataclysm Chestplate - [4] = { itemID = 30189, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Cataclysm Gauntlets - [5] = { itemID = 30192, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Cataclysm Legplates + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]..WHITE.." - "..AL["Enhancement"]; + [1] = { itemID = 30190, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Cataclysm Helm + [2] = { itemID = 30194, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Cataclysm Shoulderplates + [3] = { itemID = 30185, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Cataclysm Chestplate + [4] = { itemID = 30189, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Cataclysm Gauntlets + [5] = { itemID = 30192, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Cataclysm Legplates }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Restoration"]; - [1] = { itemID = 30166, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Cataclysm Headguard - [2] = { itemID = 30168, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Cataclysm Shoulderguards - [3] = { itemID = 30164, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Cataclysm Chestguard - [4] = { itemID = 30165, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Cataclysm Gloves - [5] = { itemID = 30167, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Cataclysm Legguards + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]..WHITE.." - "..AL["Restoration"]; + [1] = { itemID = 30166, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Cataclysm Headguard + [2] = { itemID = 30168, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Cataclysm Shoulderguards + [3] = { itemID = 30164, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Cataclysm Chestguard + [4] = { itemID = 30165, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Cataclysm Gloves + [5] = { itemID = 30167, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Cataclysm Legguards }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Elemental"]; - [1] = { itemID = 30171, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Cataclysm Headpiece - [2] = { itemID = 30173, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Cataclysm Shoulderpads - [3] = { itemID = 30169, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Cataclysm Chestpiece - [4] = { itemID = 30170, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Cataclysm Handgrips - [5] = { itemID = 30172, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Cataclysm Leggings + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]..WHITE.." - "..AL["Elemental"]; + [1] = { itemID = 30171, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Cataclysm Headpiece + [2] = { itemID = 30173, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Cataclysm Shoulderpads + [3] = { itemID = 30169, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Cataclysm Chestpiece + [4] = { itemID = 30170, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Cataclysm Handgrips + [5] = { itemID = 30172, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Cataclysm Leggings }; { Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"]; - [1] = { itemID = 30212, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Hood of the Corruptor - [2] = { itemID = 30215, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Mantle of the Corruptor - [3] = { itemID = 30214, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Robe of the Corruptor - [4] = { itemID = 30211, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Gloves of the Corruptor - [5] = { itemID = 30213, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Leggings of the Corruptor + [1] = { itemID = 30212, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Hood of the Corruptor + [2] = { itemID = 30215, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Mantle of the Corruptor + [3] = { itemID = 30214, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Robe of the Corruptor + [4] = { itemID = 30211, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Gloves of the Corruptor + [5] = { itemID = 30213, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Leggings of the Corruptor }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"]; - [1] = { itemID = 30115, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Destroyer Greathelm - [2] = { itemID = 30117, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Destroyer Shoulderguards - [3] = { itemID = 30113, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Destroyer Chestguard - [4] = { itemID = 30114, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Destroyer Handguards - [5] = { itemID = 30116, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Destroyer Legguards + Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"]..WHITE.." - "..AL["Protection"]; + [1] = { itemID = 30115, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Destroyer Greathelm + [2] = { itemID = 30117, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Destroyer Shoulderguards + [3] = { itemID = 30113, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Destroyer Chestguard + [4] = { itemID = 30114, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Destroyer Handguards + [5] = { itemID = 30116, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Destroyer Legguards }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"]; - [1] = { itemID = 14992, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Destroyer Helmet - [2] = { itemID = 14994, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Destroyer Pauldrons - [3] = { itemID = 14990, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Destroyer Hauberk - [4] = { itemID = 14991, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Destroyer Gloves - [5] = { itemID = 14993, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Destroyer Leggings + Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"]..WHITE.." - "..AL["Protection"]; + [1] = { itemID = 14992, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Destroyer Helmet + [2] = { itemID = 14994, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Destroyer Pauldrons + [3] = { itemID = 14990, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Destroyer Hauberk + [4] = { itemID = 14991, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Destroyer Gloves + [5] = { itemID = 14993, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Destroyer Leggings }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Fury"]; - [1] = { itemID = 30120, desc = "=ds=" ..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Destroyer Battle-Helm - [2] = { itemID = 30122, desc = "=ds=" ..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")" }; --Destroyer Shoulderblades - [3] = { itemID = 30118, desc = "=ds=" ..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")" }; --Destroyer Breastplate - [4] = { itemID = 30119, desc = "=ds=" ..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Destroyer Gauntlets - [5] = { itemID = 30121, desc = "=ds=" ..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")" }; --Destroyer Greaves + Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"]..WHITE.." - "..AL["Fury"]; + [1] = { itemID = 30120, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Lady Vashj"]} }; --Destroyer Battle-Helm + [2] = { itemID = 30122, desc = {BabbleZone["The Eye"], BabbleBoss["Void Reaver"]} }; --Destroyer Shoulderblades + [3] = { itemID = 30118, desc = {BabbleZone["The Eye"], BabbleBoss["Kael'thas Sunstrider"]} }; --Destroyer Breastplate + [4] = { itemID = 30119, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Leotheras the Blind"]} }; --Destroyer Gauntlets + [5] = { itemID = 30121, desc = {BabbleZone["Serpentshrine Cavern"], BabbleBoss["Fathom-Lord Karathress"]} }; --Destroyer Greaves }; }; @@ -5853,202 +5864,202 @@ AtlasLoot_Data["T5"] = { Name = "Tier 6"; Type = "BCRaid"; { - Name = "Druid".." - "..AL["Feral"]; - [1] = { itemID = 31039, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Thunderheart Cover - [2] = { itemID = 31048, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Thunderheart Pauldrons - [3] = { itemID = 31042, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Thunderheart Chestguard - [4] = { itemID = 34444, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Thunderheart Wristguards - [5] = { itemID = 31034, desc = "=ds=" ..BabbleBoss["Kaz'rogal"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Thunderheart Gauntlets - [6] = { itemID = 34556, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Thunderheart Waistguard - [7] = { itemID = 31044, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Thunderheart Leggings - [8] = { itemID = 34573, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Thunderheart Treads + Name = "Druid"..WHITE.." - "..AL["Feral"]; + [1] = { itemID = 31039, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Thunderheart Cover + [2] = { itemID = 31048, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Thunderheart Pauldrons + [3] = { itemID = 31042, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Thunderheart Chestguard + [4] = { itemID = 34444, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Thunderheart Wristguards + [5] = { itemID = 31034, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kaz'rogal"]} }; --Thunderheart Gauntlets + [6] = { itemID = 34556, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Thunderheart Waistguard + [7] = { itemID = 31044, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Thunderheart Leggings + [8] = { itemID = 34573, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Thunderheart Treads }; { - Name = "Druid".." - "..AL["Restoration"]; - [1] = { itemID = 31037, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Thunderheart Helmet - [2] = { itemID = 31047, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Thunderheart Spaulders - [3] = { itemID = 31041, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Thunderheart Tunic - [4] = { itemID = 34445, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Thunderheart Bracers - [5] = { itemID = 31032, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Thunderheart Gloves - [6] = { itemID = 34554, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Thunderheart Belt - [7] = { itemID = 31045, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Thunderheart Legguards - [8] = { itemID = 34571, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Thunderheart Boots + Name = "Druid"..WHITE.." - "..AL["Restoration"]; + [1] = { itemID = 31037, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Thunderheart Helmet + [2] = { itemID = 31047, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Thunderheart Spaulders + [3] = { itemID = 31041, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Thunderheart Tunic + [4] = { itemID = 34445, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Thunderheart Bracers + [5] = { itemID = 31032, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Thunderheart Gloves + [6] = { itemID = 34554, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Thunderheart Belt + [7] = { itemID = 31045, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Thunderheart Legguards + [8] = { itemID = 34571, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Thunderheart Boots }; { - Name = "Druid".." - "..AL["Balance"]; - [1] = { itemID = 31040, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Thunderheart Headguard - [2] = { itemID = 31049, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Thunderheart Shoulderpads - [3] = { itemID = 31043, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Thunderheart Vest - [4] = { itemID = 34446, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Thunderheart Bands - [5] = { itemID = 31035, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Thunderheart Handguards - [6] = { itemID = 34555, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Thunderheart Cord - [7] = { itemID = 31046, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Thunderheart Pants - [8] = { itemID = 34572, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Thunderheart Footwraps + Name = "Druid"..WHITE.." - "..AL["Balance"]; + [1] = { itemID = 31040, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Thunderheart Headguard + [2] = { itemID = 31049, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Thunderheart Shoulderpads + [3] = { itemID = 31043, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Thunderheart Vest + [4] = { itemID = 34446, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Thunderheart Bands + [5] = { itemID = 31035, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Thunderheart Handguards + [6] = { itemID = 34555, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Thunderheart Cord + [7] = { itemID = 31046, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Thunderheart Pants + [8] = { itemID = 34572, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Thunderheart Footwraps }; { Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"]; - [1] = { itemID = 31003, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Gronnstalker's Helmet - [2] = { itemID = 31006, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Gronnstalker's Spaulders - [3] = { itemID = 31004, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Gronnstalker's Chestguard - [4] = { itemID = 34443, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Gronnstalker's Bracers - [5] = { itemID = 31001, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Gronnstalker's Gloves - [6] = { itemID = 34549, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Gronnstalker's Belt - [7] = { itemID = 31005, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Gronnstalker's Leggings - [8] = { itemID = 34570, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Gronnstalker's Boots + [1] = { itemID = 31003, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Gronnstalker's Helmet + [2] = { itemID = 31006, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Gronnstalker's Spaulders + [3] = { itemID = 31004, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Gronnstalker's Chestguard + [4] = { itemID = 34443, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Gronnstalker's Bracers + [5] = { itemID = 31001, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Gronnstalker's Gloves + [6] = { itemID = 34549, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Gronnstalker's Belt + [7] = { itemID = 31005, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Gronnstalker's Leggings + [8] = { itemID = 34570, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Gronnstalker's Boots }; { Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"]; - [1] = { itemID = 31056, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Cowl of the Tempest - [2] = { itemID = 31059, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Mantle of the Tempest - [3] = { itemID = 31057, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Robes of the Tempest - [4] = { itemID = 34447, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Bracers of the Tempest - [5] = { itemID = 31055, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Gloves of the Tempest - [6] = { itemID = 34557, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Belt of the Tempest - [7] = { itemID = 31058, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Leggings of the Tempest - [8] = { itemID = 34574, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Boots of the Tempest + [1] = { itemID = 31056, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Cowl of the Tempest + [2] = { itemID = 31059, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Mantle of the Tempest + [3] = { itemID = 31057, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Robes of the Tempest + [4] = { itemID = 34447, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Bracers of the Tempest + [5] = { itemID = 31055, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Gloves of the Tempest + [6] = { itemID = 34557, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Belt of the Tempest + [7] = { itemID = 31058, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Leggings of the Tempest + [8] = { itemID = 34574, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Boots of the Tempest }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Protection"]; - [1] = { itemID = 30987, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Lightbringer Faceguard - [2] = { itemID = 30998, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Lightbringer Shoulderguards - [3] = { itemID = 30991, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Lightbringer Chestguard - [4] = { itemID = 34433, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Lightbringer Wristguards - [5] = { itemID = 30985, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Lightbringer Handguards - [6] = { itemID = 34488, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Lightbringer Waistguard - [7] = { itemID = 30995, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Lightbringer Legguards - [8] = { itemID = 34560, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Lightbringer Greaves + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]..WHITE.." - "..AL["Protection"]; + [1] = { itemID = 30987, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Lightbringer Faceguard + [2] = { itemID = 30998, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Lightbringer Shoulderguards + [3] = { itemID = 30991, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Lightbringer Chestguard + [4] = { itemID = 34433, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Lightbringer Wristguards + [5] = { itemID = 30985, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Lightbringer Handguards + [6] = { itemID = 34488, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Lightbringer Waistguard + [7] = { itemID = 30995, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Lightbringer Legguards + [8] = { itemID = 34560, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Lightbringer Greaves }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Retribution"]; - [1] = { itemID = 30989, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Lightbringer War-Helm - [2] = { itemID = 30997, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Lightbringer Shoulderbraces - [3] = { itemID = 30990, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Lightbringer Breastplate - [4] = { itemID = 34431, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Lightbringer Bands - [5] = { itemID = 30982, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Lightbringer Gauntlets - [6] = { itemID = 34485, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Lightbringer Girdle - [7] = { itemID = 30993, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Lightbringer Greaves - [8] = { itemID = 34561, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Lightbringer Boots + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]..WHITE.." - "..AL["Retribution"]; + [1] = { itemID = 30989, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Lightbringer War-Helm + [2] = { itemID = 30997, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Lightbringer Shoulderbraces + [3] = { itemID = 30990, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Lightbringer Breastplate + [4] = { itemID = 34431, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Lightbringer Bands + [5] = { itemID = 30982, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Lightbringer Gauntlets + [6] = { itemID = 34485, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Lightbringer Girdle + [7] = { itemID = 30993, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Lightbringer Greaves + [8] = { itemID = 34561, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Lightbringer Boots }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Holy"]; - [1] = { itemID = 30988, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Lightbringer Greathelm - [2] = { itemID = 30996, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Lightbringer Pauldrons - [3] = { itemID = 30992, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Lightbringer Chestpiece - [4] = { itemID = 34432, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Lightbringer Bracers - [5] = { itemID = 30983, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Lightbringer Gloves - [6] = { itemID = 34487, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Lightbringer Belt - [7] = { itemID = 30994, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Lightbringer Leggings - [8] = { itemID = 34559, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Lightbringer Treads + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]..WHITE.." - "..AL["Holy"]; + [1] = { itemID = 30988, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Lightbringer Greathelm + [2] = { itemID = 30996, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Lightbringer Pauldrons + [3] = { itemID = 30992, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Lightbringer Chestpiece + [4] = { itemID = 34432, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Lightbringer Bracers + [5] = { itemID = 30983, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Lightbringer Gloves + [6] = { itemID = 34487, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Lightbringer Belt + [7] = { itemID = 30994, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Lightbringer Leggings + [8] = { itemID = 34559, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Lightbringer Treads }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Holy"]; - [1] = { itemID = 31063, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Cowl of Absolution - [2] = { itemID = 31069, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Mantle of Absolution - [3] = { itemID = 31066, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Vestments of Absolution - [4] = { itemID = 34435, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Cuffs of Absolution - [5] = { itemID = 31060, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Gloves of Absolution - [6] = { itemID = 34527, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Belt of Absolution - [7] = { itemID = 31068, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Breeches of Absolution - [8] = { itemID = 34562, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Boots of Absolution + Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"]..WHITE.." - "..AL["Holy"]; + [1] = { itemID = 31063, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Cowl of Absolution + [2] = { itemID = 31069, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Mantle of Absolution + [3] = { itemID = 31066, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Vestments of Absolution + [4] = { itemID = 34435, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Cuffs of Absolution + [5] = { itemID = 31060, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Gloves of Absolution + [6] = { itemID = 34527, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Belt of Absolution + [7] = { itemID = 31068, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Breeches of Absolution + [8] = { itemID = 34562, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Boots of Absolution }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - "..AL["Shadow"]; - [1] = { itemID = 31064, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Hood of Absolution - [2] = { itemID = 31070, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Shoulderpads of Absolution - [3] = { itemID = 31065, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Shroud of Absolution - [4] = { itemID = 34434, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Bracers of Absolution - [5] = { itemID = 31061, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Handguards of Absolution - [6] = { itemID = 34528, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Cord of Absolution - [7] = { itemID = 31067, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Leggings of Absolution - [8] = { itemID = 34563, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Treads of Absolution + Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"]..WHITE.." - "..AL["Shadow"]; + [1] = { itemID = 31064, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Hood of Absolution + [2] = { itemID = 31070, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Shoulderpads of Absolution + [3] = { itemID = 31065, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Shroud of Absolution + [4] = { itemID = 34434, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Bracers of Absolution + [5] = { itemID = 31061, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Handguards of Absolution + [6] = { itemID = 34528, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Cord of Absolution + [7] = { itemID = 31067, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Leggings of Absolution + [8] = { itemID = 34563, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Treads of Absolution }; { Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"]; - [1] = { itemID = 31027, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Slayer's Helm - [2] = { itemID = 31030, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Slayer's Shoulderpads - [3] = { itemID = 31028, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Slayer's Chestguard - [4] = { itemID = 34448, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Slayer's Bracers - [5] = { itemID = 31026, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Slayer's Handguards - [6] = { itemID = 34558, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Slayer's Belt - [7] = { itemID = 31029, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Slayer's Legguards - [8] = { itemID = 34575, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Slayer's Boots + [1] = { itemID = 31027, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Slayer's Helm + [2] = { itemID = 31030, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Slayer's Shoulderpads + [3] = { itemID = 31028, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Slayer's Chestguard + [4] = { itemID = 34448, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Slayer's Bracers + [5] = { itemID = 31026, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Slayer's Handguards + [6] = { itemID = 34558, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Slayer's Belt + [7] = { itemID = 31029, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Slayer's Legguards + [8] = { itemID = 34575, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Slayer's Boots }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Enhancement"]; - [1] = { itemID = 31015, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Skyshatter Cover - [2] = { itemID = 31024, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Skyshatter Pauldrons - [3] = { itemID = 31018, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Skyshatter Tunic - [4] = { itemID = 34439, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Skyshatter Wristguards - [5] = { itemID = 31011, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Skyshatter Grips - [6] = { itemID = 34545, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Skyshatter Girdle - [7] = { itemID = 31021, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Skyshatter Pants - [8] = { itemID = 34567, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Skyshatter Greaves + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]..WHITE.." - "..AL["Enhancement"]; + [1] = { itemID = 31015, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Skyshatter Cover + [2] = { itemID = 31024, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Skyshatter Pauldrons + [3] = { itemID = 31018, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Skyshatter Tunic + [4] = { itemID = 34439, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Skyshatter Wristguards + [5] = { itemID = 31011, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Skyshatter Grips + [6] = { itemID = 34545, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Skyshatter Girdle + [7] = { itemID = 31021, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Skyshatter Pants + [8] = { itemID = 34567, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Skyshatter Greaves }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Restoration"]; - [1] = { itemID = 31012, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Skyshatter Helmet - [2] = { itemID = 31022, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Skyshatter Shoulderpads - [3] = { itemID = 31016, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Skyshatter Chestguard - [4] = { itemID = 34438, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Skyshatter Bracers - [5] = { itemID = 31007, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Skyshatter Gloves - [6] = { itemID = 34543, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Skyshatter Belt - [7] = { itemID = 31019, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Skyshatter Leggings - [8] = { itemID = 34565, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Skyshatter Boots + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]..WHITE.." - "..AL["Restoration"]; + [1] = { itemID = 31012, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Skyshatter Helmet + [2] = { itemID = 31022, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Skyshatter Shoulderpads + [3] = { itemID = 31016, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Skyshatter Chestguard + [4] = { itemID = 34438, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Skyshatter Bracers + [5] = { itemID = 31007, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Skyshatter Gloves + [6] = { itemID = 34543, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Skyshatter Belt + [7] = { itemID = 31019, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Skyshatter Leggings + [8] = { itemID = 34565, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Skyshatter Boots }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Elemental"]; - [1] = { itemID = 31014, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Skyshatter Headguard - [2] = { itemID = 31023, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Skyshatter Mantle - [3] = { itemID = 31017, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Skyshatter Breastplate - [4] = { itemID = 34437, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Skyshatter Bands - [5] = { itemID = 31008, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Skyshatter Gauntlets - [6] = { itemID = 34542, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Skyshatter Cord - [7] = { itemID = 31020, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Skyshatter Legguards - [8] = { itemID = 34566, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Skyshatter Treads + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]..WHITE.." - "..AL["Elemental"]; + [1] = { itemID = 31014, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Skyshatter Headguard + [2] = { itemID = 31023, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Skyshatter Mantle + [3] = { itemID = 31017, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Skyshatter Breastplate + [4] = { itemID = 34437, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Skyshatter Bands + [5] = { itemID = 31008, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Skyshatter Gauntlets + [6] = { itemID = 34542, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Skyshatter Cord + [7] = { itemID = 31020, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Skyshatter Legguards + [8] = { itemID = 34566, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Skyshatter Treads }; { Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"]; - [1] = { itemID = 31051, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Hood of the Malefic - [2] = { itemID = 31054, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Mantle of the Malefic - [3] = { itemID = 31052, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Robe of the Malefic - [4] = { itemID = 34436, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Bracers of the Malefic - [5] = { itemID = 31050, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Gloves of the Malefic - [6] = { itemID = 34541, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Belt of the Malefic - [7] = { itemID = 31053, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Leggings of the Malefic - [8] = { itemID = 34564, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Boots of the Malefic + [1] = { itemID = 31051, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Hood of the Malefic + [2] = { itemID = 31054, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Mantle of the Malefic + [3] = { itemID = 31052, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Robe of the Malefic + [4] = { itemID = 34436, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Bracers of the Malefic + [5] = { itemID = 31050, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Gloves of the Malefic + [6] = { itemID = 34541, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Belt of the Malefic + [7] = { itemID = 31053, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Leggings of the Malefic + [8] = { itemID = 34564, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Boots of the Malefic }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"].. " - Block"; - [1] = { itemID = 30974, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Onslaught Greathelm - [2] = { itemID = 30980, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Onslaught Shoulderguards - [3] = { itemID = 30976, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Onslaught Chestguard - [4] = { itemID = 34442, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Onslaught Wristguards - [5] = { itemID = 30970, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Onslaught Handguards - [6] = { itemID = 34547, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Onslaught Waistguard - [7] = { itemID = 30978, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Onslaught Legguards - [8] = { itemID = 34568, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Onslaught Boots + Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"]..WHITE.." - "..AL["Protection"].. " - Block"; + [1] = { itemID = 30974, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Onslaught Greathelm + [2] = { itemID = 30980, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Onslaught Shoulderguards + [3] = { itemID = 30976, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Onslaught Chestguard + [4] = { itemID = 34442, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Onslaught Wristguards + [5] = { itemID = 30970, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Onslaught Handguards + [6] = { itemID = 34547, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Onslaught Waistguard + [7] = { itemID = 30978, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Onslaught Legguards + [8] = { itemID = 34568, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Onslaught Boots }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Protection"].. " - Parry"; - [1] = { itemID = 33642, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Onslaught Greathelm - [2] = { itemID = 33645, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Onslaught Shoulderguards - [3] = { itemID = 33643, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Onslaught Chestguard - [4] = { itemID = 33646, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Onslaught Wristguards - [5] = { itemID = 33641, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Onslaught Handguards - [6] = { itemID = 33647, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Onslaught Waistguard - [7] = { itemID = 33644, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Onslaught Legguards - [8] = { itemID = 33648, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Onslaught Boots + Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"]..WHITE.." - "..AL["Protection"].. " - Parry"; + [1] = { itemID = 33642, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Onslaught Greathelm + [2] = { itemID = 33645, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Onslaught Shoulderguards + [3] = { itemID = 33643, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Onslaught Chestguard + [4] = { itemID = 33646, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Onslaught Wristguards + [5] = { itemID = 33641, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Onslaught Handguards + [6] = { itemID = 33647, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Onslaught Waistguard + [7] = { itemID = 33644, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Onslaught Legguards + [8] = { itemID = 33648, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Onslaught Boots }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - "..AL["Fury"]; - [1] = { itemID = 30972, desc = "=ds=" ..BabbleBoss["Archimonde"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Onslaught Battle-Helm - [2] = { itemID = 30979, desc = "=ds=" ..BabbleBoss["Mother Shahraz"].." ("..BabbleZone["Black Temple"]..")" }; --Onslaught Shoulderblades - [3] = { itemID = 30975, desc = "=ds=" ..BabbleBoss["Illidan Stormrage"].." ("..BabbleZone["Black Temple"]..")" }; --Onslaught Breastplate - [4] = { itemID = 34441, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Onslaught Bracers - [5] = { itemID = 30969, desc = "=ds=" ..BabbleBoss["Kalecgos"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Onslaught Gauntlets - [6] = { itemID = 34546, desc = "=ds=" ..BabbleBoss["Brutallus"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Onslaught Belt - [7] = { itemID = 30977, desc = "=ds=" ..BabbleBoss["Azgalor"].." ("..BabbleZone["Hyjal Summit"]..")" }; --Onslaught Greaves - [8] = { itemID = 34569, desc = "=ds=" ..BabbleBoss["Felmyst"].." ("..BabbleZone["Sunwell Plateau"]..")" }; --Onslaught Treads + Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"]..WHITE.." - "..AL["Fury"]; + [1] = { itemID = 30972, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Archimonde"]} }; --Onslaught Battle-Helm + [2] = { itemID = 30979, desc = {BabbleZone["Black Temple"], BabbleBoss["Mother Shahraz"]} }; --Onslaught Shoulderblades + [3] = { itemID = 30975, desc = {BabbleZone["Black Temple"], BabbleBoss["Illidan Stormrage"]} }; --Onslaught Breastplate + [4] = { itemID = 34441, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Kalecgos"]} }; --Onslaught Bracers + [5] = { itemID = 30969, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Kalecgos"]} }; --Onslaught Gauntlets + [6] = { itemID = 34546, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Brutallus"]} }; --Onslaught Belt + [7] = { itemID = 30977, desc = {BabbleZone["Hyjal Summit"], BabbleBoss["Azgalor"]} }; --Onslaught Greaves + [8] = { itemID = 34569, desc = {BabbleZone["Sunwell Plateau"], BabbleBoss["Felmyst"]} }; --Onslaught Treads }; }; diff --git a/AtlasLoot_OriginalWoW/originalwow.lua b/AtlasLoot_OriginalWoW/originalwow.lua index 3e6bcbe..8fee1f5 100644 --- a/AtlasLoot_OriginalWoW/originalwow.lua +++ b/AtlasLoot_OriginalWoW/originalwow.lua @@ -3,7 +3,7 @@ local BabbleBoss = AtlasLoot_GetLocaleLibBabble("LibBabble-Boss-3.0") local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0") local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0") local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") - +local WHITE = "|cffFFFFFF" -- Index --- Dungeons & Raids ---- Keys @@ -4192,193 +4192,272 @@ AtlasLoot_Data["T0"] = { Name = "Dungeon Sets"; Type = "ClassicDungeonExt"; { - Name = AL["Druid"]; - [1] = { icon = "Spell_Nature_Regeneration", name = "=q6=#t0s1#", desc = "=ec1=#j6#" }; - [2] = { itemID = 16720, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "7.09%" }; --Wildheart Cowl - [3] = { itemID = 16718, desc = "=ds=" .. BabbleBoss["Gizrul the Slavener"] .. " (" .. AL["LBRS"] .. ")", droprate = "11.04%" }; --Wildheart Spaulders - [4] = { itemID = 16706, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "7.36%" }; --Wildheart Vest - [5] = { itemID = 16714, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.85%" }; --Wildheart Bracers - [6] = { itemID = 16717, desc = "=ds=" .. BabbleBoss["The Unforgiven"] .. " (" .. AL["Strat"] .. ")", droprate = "12.61%" }; --Wildheart Gloves - [7] = { itemID = 16716, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Scholo"] .. ")", droprate = "2.60%" }; --Wildheart Belt - [8] = { itemID = 16719, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "6.58%" }; --Wildheart Kilt - [9] = { itemID = 16715, desc = "=ds=" .. BabbleBoss["Mother Smolderweb"] .. " (" .. AL["LBRS"] .. ")", droprate = "13.03%" }; --Wildheart Boots - [16] = { icon = "Spell_Nature_Regeneration", name = "=q6=#t05s1#", desc = "=ec1=#j7#" }; - [17] = { itemID = 22109, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Feralheart Cowl - [18] = { itemID = 22112, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Feralheart Spaulders - [19] = { itemID = 22113, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Feralheart Vest - [20] = { itemID = 22108, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Feralheart Bracers - [21] = { itemID = 22110, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Feralheart Gloves - [22] = { itemID = 22106, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Feralheart Belt - [23] = { itemID = 22111, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Feralheart Kilt - [24] = { itemID = 22107, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Feralheart Boots + Name = AL["Wildheart Raiment"]; + [1] = { itemID = 16720, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "7.09%" }; --Wildheart Cowl + [2] = { itemID = 16718, desc = "=ds=" .. BabbleBoss["Gizrul the Slavener"] .. " (" .. AL["LBRS"] .. ")", droprate = "11.04%" }; --Wildheart Spaulders + [3] = { itemID = 16706, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "7.36%" }; --Wildheart Vest + [4] = { itemID = 16714, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.85%" }; --Wildheart Bracers + [5] = { itemID = 16717, desc = "=ds=" .. BabbleBoss["The Unforgiven"] .. " (" .. AL["Strat"] .. ")", droprate = "12.61%" }; --Wildheart Gloves + [6] = { itemID = 16716, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Scholo"] .. ")", droprate = "2.60%" }; --Wildheart Belt + [7] = { itemID = 16719, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "6.58%" }; --Wildheart Kilt + [8] = { itemID = 16715, desc = "=ds=" .. BabbleBoss["Mother Smolderweb"] .. " (" .. AL["LBRS"] .. ")", droprate = "13.03%" }; --Wildheart Boots + }; { - Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"]; - [1] = { icon = "Ability_Hunter_RunningShot", name = "=q6=#t0s2#", desc = "=ec1=#j6#" }; - [2] = { itemID = 16677, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "7.00%" }; --Beaststalker's Cap - [3] = { itemID = 16679, desc = "=ds=" .. BabbleBoss["Overlord Wyrmthalak"] .. " (" .. AL["LBRS"] .. ")", droprate = "9.89%" }; --Beaststalker's Mantle - [4] = { itemID = 16674, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "6.81%" }; --Beaststalker's Tunic - [5] = { itemID = 16681, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.64%" }; --Beaststalker's Bindings - [6] = { itemID = 16676, desc = "=ds=" .. BabbleBoss["War Master Voone"] .. " (" .. AL["LBRS"] .. ")", droprate = "9.15%" }; --Beaststalker's Gloves - [7] = { itemID = 16680, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.36%" }; --Beaststalker's Belt - [8] = { itemID = 16678, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "6.16%" }; --Beaststalker's Pants - [9] = { itemID = 16675, desc = "=ds=" .. BabbleBoss["Nerub'enkan"] .. " (" .. AL["Strat"] .. ")", droprate = "13.62%" }; --Beaststalker's Boots - [16] = { icon = "Ability_Hunter_RunningShot", name = "=q6=#t05s2#", desc = "=ec1=#j7#" }; - [17] = { itemID = 22013, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Beastmaster's Cap - [18] = { itemID = 22016, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Beastmaster's Mantle - [19] = { itemID = 22060, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Beastmaster's Tunic - [20] = { itemID = 22011, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Beastmaster's Bindings - [21] = { itemID = 22015, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Beastmaster's Gloves - [22] = { itemID = 22010, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Beastmaster's Belt - [23] = { itemID = 22017, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Beastmaster's Pants - [24] = { itemID = 22061, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Beastmaster's Boots + Name = AL["Beaststalker Armor"]; + [1] = { itemID = 16677, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "7.00%" }; --Beaststalker's Cap + [2] = { itemID = 16679, desc = "=ds=" .. BabbleBoss["Overlord Wyrmthalak"] .. " (" .. AL["LBRS"] .. ")", droprate = "9.89%" }; --Beaststalker's Mantle + [3] = { itemID = 16674, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "6.81%" }; --Beaststalker's Tunic + [4] = { itemID = 16681, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.64%" }; --Beaststalker's Bindings + [5] = { itemID = 16676, desc = "=ds=" .. BabbleBoss["War Master Voone"] .. " (" .. AL["LBRS"] .. ")", droprate = "9.15%" }; --Beaststalker's Gloves + [6] = { itemID = 16680, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.36%" }; --Beaststalker's Belt + [7] = { itemID = 16678, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "6.16%" }; --Beaststalker's Pants + [8] = { itemID = 16675, desc = "=ds=" .. BabbleBoss["Nerub'enkan"] .. " (" .. AL["Strat"] .. ")", droprate = "13.62%" }; --Beaststalker's Boots + }; { - Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"]; - [1] = { icon = "Spell_Frost_IceStorm", name = "=q6=#t0s3#", desc = "=ec1=#j6#" }; - [2] = { itemID = 16686, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "8.60%" }; --Magister's Crown - [3] = { itemID = 16689, desc = "=ds=" .. BabbleBoss["Ras Frostwhisper"] .. " (" .. AL["Scholo"] .. ")", droprate = "11.93%" }; --Magister's Mantle - [4] = { itemID = 16688, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "7.24%" }; --Magister's Robes - [5] = { itemID = 16683, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.19%" }; --Magister's Bindings - [6] = { itemID = 16684, desc = "=ds=" .. BabbleBoss["Doctor Theolen Krastinov"] .. " (" .. AL["Scholo"] ..")", droprate = "9.75%" }; --Magister's Gloves - [7] = { itemID = 16685, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.32%" }; --Magister's Belt - [8] = { itemID = 16687, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "6.79%" }; --Magister's Leggings - [9] = { itemID = 16682, desc = "=ds=" .. BabbleBoss["Hearthsinger Forresten"] .. " (" .. AL["Strat"] .. ")", droprate = "10.86%" }; --Magister's Boots - [16] = { icon = "Spell_Frost_IceStorm", name = "=q6=#t05s3#", desc = "=ec1=#j7#" }; - [17] = { itemID = 22065, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Sorcerer's Crown - [18] = { itemID = 22068, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Sorcerer's Mantle - [19] = { itemID = 22069, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Sorcerer's Robes - [20] = { itemID = 22063, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Sorcerer's Bindings - [21] = { itemID = 22066, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Sorcerer's Gloves - [22] = { itemID = 22062, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Sorcerer's Belt - [23] = { itemID = 22067, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Sorcerer's Leggings - [24] = { itemID = 22064, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Sorcerer's Boots + Name = AL["Magister's Regalia"]; + [1] = { itemID = 16686, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "8.60%" }; --Magister's Crown + [2] = { itemID = 16689, desc = "=ds=" .. BabbleBoss["Ras Frostwhisper"] .. " (" .. AL["Scholo"] .. ")", droprate = "11.93%" }; --Magister's Mantle + [3] = { itemID = 16688, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "7.24%" }; --Magister's Robes + [4] = { itemID = 16683, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.19%" }; --Magister's Bindings + [5] = { itemID = 16684, desc = "=ds=" .. BabbleBoss["Doctor Theolen Krastinov"] .. " (" .. AL["Scholo"] ..")", droprate = "9.75%" }; --Magister's Gloves + [6] = { itemID = 16685, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.32%" }; --Magister's Belt + [7] = { itemID = 16687, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "6.79%" }; --Magister's Leggings + [8] = { itemID = 16682, desc = "=ds=" .. BabbleBoss["Hearthsinger Forresten"] .. " (" .. AL["Strat"] .. ")", droprate = "10.86%" }; --Magister's Boots + }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]; - [1] = { icon = "Spell_Holy_SealOfMight", name = "=q6=#t0s4#", desc = "=ec1=#j6#" }; - [2] = { itemID = 16727, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "5.32%" }; --Lightforge Helm - [3] = { itemID = 16729, desc = "=ds=" .. BabbleBoss["The Beast"] .. " (" .. AL["UBRS"] .. ")", droprate = "13.62%" }; --Lightforge Spaulders - [4] = { itemID = 16726, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "3.76%" }; --Lightforge Breastplate - [5] = { itemID = 16722, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Scholo"] .. ")", droprate = "3.37%" }; --Lightforge Bracers - [6] = { itemID = 16724, desc = "=ds=" .. BabbleBoss["Timmy the Cruel"] .. " (" .. AL["Strat"] .. ")", droprate = "10.42%" }; --Lightforge Gauntlets - [7] = { itemID = 16723, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.93%" }; --Lightforge Belt - [8] = { itemID = 16728, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "4.20%" }; --Lightforge Legplates - [9] = { itemID = 16725, desc = "=ds=" .. BabbleBoss["Balnazzar"] .. " (" .. AL["Strat"] .. ")", droprate = "11.11%" }; --Lightforge Boots - [16] = { icon = "Spell_Holy_SealOfMight", name = "=q6=#t05s4#", desc = "=ec1=#j7#" }; - [17] = { itemID = 22091, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Soulforge Helm - [18] = { itemID = 22093, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Soulforge Spaulders - [19] = { itemID = 22089, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Soulforge Breastplate - [20] = { itemID = 22088, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Soulforge Bracers - [21] = { itemID = 22090, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Soulforge Gauntlets - [22] = { itemID = 22086, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Soulforge Belt - [23] = { itemID = 22092, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Soulforge Legplates - [24] = { itemID = 22087, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Soulforge Boots + Name = AL["Lightforge Armor"]; + [1] = { itemID = 16727, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "5.32%" }; --Lightforge Helm + [2] = { itemID = 16729, desc = "=ds=" .. BabbleBoss["The Beast"] .. " (" .. AL["UBRS"] .. ")", droprate = "13.62%" }; --Lightforge Spaulders + [3] = { itemID = 16726, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "3.76%" }; --Lightforge Breastplate + [4] = { itemID = 16722, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Scholo"] .. ")", droprate = "3.37%" }; --Lightforge Bracers + [5] = { itemID = 16724, desc = "=ds=" .. BabbleBoss["Timmy the Cruel"] .. " (" .. AL["Strat"] .. ")", droprate = "10.42%" }; --Lightforge Gauntlets + [6] = { itemID = 16723, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.93%" }; --Lightforge Belt + [7] = { itemID = 16728, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "4.20%" }; --Lightforge Legplates + [8] = { itemID = 16725, desc = "=ds=" .. BabbleBoss["Balnazzar"] .. " (" .. AL["Strat"] .. ")", droprate = "11.11%" }; --Lightforge Boots + }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"]; - [1] = { icon = "Spell_Holy_PowerWordShield", name = "=q6=#t0s5#", desc = "=ec1=#j6#" }; - [2] = { itemID = 16693, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "7.89%" }; --Devout Crown - [3] = { itemID = 16695, desc = "=ds=" .. BabbleBoss["Solakar Flamewreath"] .. " (" .. AL["UBRS"] .. ")", droprate = "12.84%" }; --Devout Mantle - [4] = { itemID = 16690, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "6.20%" }; --Devout Robe - [5] = { itemID = 16697, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.13%" }; --Devout Bracers - [6] = { itemID = 16692, "=q3=Devout Gloves", "=ds=" .. BabbleBoss["Archivist Galford"] .. " (" .. AL["Strat"] .. ")" }; - [7] = { itemID = 16696, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "2.07%" }; --Devout Belt - [8] = { itemID = 16694, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "7.42%" }; --Devout Skirt - [9] = { itemID = 16691, desc = "=ds=" .. BabbleBoss["Maleki the Pallid"] .. " (" .. AL["Strat"] .. ")", droprate = "13.64%" }; --Devout Sandals - [16] = { icon = "Spell_Holy_PowerWordShield", name = "=q6=#t05s5#", desc = "=ec1=#j7#" }; - [17] = { itemID = 22080, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Virtuous Crown - [18] = { itemID = 22082, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Virtuous Mantle - [19] = { itemID = 22083, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Virtuous Robe - [20] = { itemID = 22079, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Virtuous Bracers - [21] = { itemID = 22081, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Virtuous Gloves - [22] = { itemID = 22078, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Virtuous Belt - [23] = { itemID = 22085, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Virtuous Skirt - [24] = { itemID = 22084, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Virtuous Sandals + Name = AL["Vestments of the Devout"]; + [1] = { itemID = 16693, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "7.89%" }; --Devout Crown + [2] = { itemID = 16695, desc = "=ds=" .. BabbleBoss["Solakar Flamewreath"] .. " (" .. AL["UBRS"] .. ")", droprate = "12.84%" }; --Devout Mantle + [3] = { itemID = 16690, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "6.20%" }; --Devout Robe + [4] = { itemID = 16697, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.13%" }; --Devout Bracers + [5] = { itemID = 16692, "=q3=Devout Gloves", "=ds=" .. BabbleBoss["Archivist Galford"] .. " (" .. AL["Strat"] .. ")" }; + [6] = { itemID = 16696, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "2.07%" }; --Devout Belt + [7] = { itemID = 16694, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "7.42%" }; --Devout Skirt + [8] = { itemID = 16691, desc = "=ds=" .. BabbleBoss["Maleki the Pallid"] .. " (" .. AL["Strat"] .. ")", droprate = "13.64%" }; --Devout Sandals + }; { - Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"]; - [1] = { icon = "Ability_BackStab", name = "=q6=#t0s6#", desc = "=ec1=#j6#" }; - [2] = { itemID = 16707, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "6.65%" }; --Shadowcraft Cap - [3] = { itemID = 16708, desc = "=ds=" .. BabbleBoss["Cannon Master Willey"] .. " (" .. AL["Strat"] .. ")", droprate = "10.68%" }; --Shadowcraft Spaulders - [4] = { itemID = 16721, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "6.09%" }; --Shadowcraft Tunic - [5] = { itemID = 16710, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Scholo"] .. ")", droprate = "3.51%" }; --Shadowcraft Bracers - [6] = { itemID = 16712, desc = "=ds=" .. BabbleBoss["Shadow Hunter Vosh'gajin"] .. " (" .. AL["LBRS"] .. ")", droprate = "11.89%" }; --Shadowcraft Gloves - [7] = { itemID = 16713, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.05%" }; --Shadowcraft Belt - [8] = { itemID = 16709, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "7.76%" }; --Shadowcraft Pants - [9] = { itemID = 16711, desc = "=ds=" .. BabbleBoss["Rattlegore"] .. " (" .. AL["Scholo"] .. ")", droprate = "14.32%" }; --Shadowcraft Boots - [16] = { icon = "Ability_BackStab", name = "=q6=#t05s6#", desc = "=ec1=#j7#" }; - [17] = { itemID = 22005, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Darkmantle Cap - [18] = { itemID = 22008, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Darkmantle Spaulders - [19] = { itemID = 22009, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Darkmantle Tunic - [20] = { itemID = 22004, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Darkmantle Bracers - [21] = { itemID = 22006, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Darkmantle Gloves - [22] = { itemID = 22002, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Darkmantle Belt - [23] = { itemID = 22007, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Darkmantle Pants - [24] = { itemID = 22003, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Darkmantle Boots + Name = AL["Shadowcraft Armor"]; + [1] = { itemID = 16707, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "6.65%" }; --Shadowcraft Cap + [2] = { itemID = 16708, desc = "=ds=" .. BabbleBoss["Cannon Master Willey"] .. " (" .. AL["Strat"] .. ")", droprate = "10.68%" }; --Shadowcraft Spaulders + [3] = { itemID = 16721, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "6.09%" }; --Shadowcraft Tunic + [4] = { itemID = 16710, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Scholo"] .. ")", droprate = "3.51%" }; --Shadowcraft Bracers + [5] = { itemID = 16712, desc = "=ds=" .. BabbleBoss["Shadow Hunter Vosh'gajin"] .. " (" .. AL["LBRS"] .. ")", droprate = "11.89%" }; --Shadowcraft Gloves + [6] = { itemID = 16713, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.05%" }; --Shadowcraft Belt + [7] = { itemID = 16709, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "7.76%" }; --Shadowcraft Pants + [8] = { itemID = 16711, desc = "=ds=" .. BabbleBoss["Rattlegore"] .. " (" .. AL["Scholo"] .. ")", droprate = "14.32%" }; --Shadowcraft Boots + }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]; - [1] = { icon = "Spell_FireResistanceTotem_01", name = "=q6=#t0s7#", desc = "=ec1=#j6#" }; - [2] = { itemID = 16667, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "2.86%" }; --Coif of Elements - [3] = { itemID = 16669, desc = "=ds=" .. BabbleBoss["Gyth"] .. " (" .. AL["UBRS"] .. ")", droprate = "14.77%" }; --Pauldrons of Elements - [4] = { itemID = 16666, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "3.03%" }; --Vest of Elements - [5] = { itemID = 16671, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.59%" }; --Bindings of Elements - [6] = { itemID = 16672, desc = "=ds=" .. BabbleBoss["Pyroguard Emberseer"] .. " (" .. AL["UBRS"] .. ")", droprate = "14.23%" }; --Gauntlets of Elements - [7] = { itemID = 16673, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.06%" }; --Cord of Elements - [8] = { itemID = 16668, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "3.02%" }; --Kilt of Elements - [9] = { itemID = 16670, desc = "=ds=" .. BabbleBoss["Highlord Omokk"] .. " (" .. AL["LBRS"] .. ")", droprate = "9.35%" }; --Boots of Elements - [16] = { icon = "Spell_FireResistanceTotem_01", name = "=q6=#t05s7#", desc = "=ec1=#j7#" }; - [17] = { itemID = 22097, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Coif of The Five Thunders - [18] = { itemID = 22101, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Pauldrons of The Five Thunders - [19] = { itemID = 22102, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Vest of The Five Thunders - [20] = { itemID = 22095, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Bindings of The Five Thunders - [21] = { itemID = 22099, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Gauntlets of The Five Thunders - [22] = { itemID = 22098, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Cord of The Five Thunders - [23] = { itemID = 22100, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Kilt of The Five Thunders - [24] = { itemID = 22096, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Boots of The Five Thunders + Name = AL["The Elements"]; + [1] = { itemID = 16667, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "2.86%" }; --Coif of Elements + [2] = { itemID = 16669, desc = "=ds=" .. BabbleBoss["Gyth"] .. " (" .. AL["UBRS"] .. ")", droprate = "14.77%" }; --Pauldrons of Elements + [3] = { itemID = 16666, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "3.03%" }; --Vest of Elements + [4] = { itemID = 16671, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.59%" }; --Bindings of Elements + [5] = { itemID = 16672, desc = "=ds=" .. BabbleBoss["Pyroguard Emberseer"] .. " (" .. AL["UBRS"] .. ")", droprate = "14.23%" }; --Gauntlets of Elements + [6] = { itemID = 16673, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.06%" }; --Cord of Elements + [7] = { itemID = 16668, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "3.02%" }; --Kilt of Elements + [8] = { itemID = 16670, desc = "=ds=" .. BabbleBoss["Highlord Omokk"] .. " (" .. AL["LBRS"] .. ")", droprate = "9.35%" }; --Boots of Elements + }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"]; - [1] = { icon = "Spell_Shadow_CurseOfTounges", name = "=q6=#t0s8#", desc = "=ec1=#j6#" }; - [2] = { itemID = 16698, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "8.78%" }; --Dreadmist Mask - [3] = { itemID = 16701, desc = "=ds=" .. BabbleBoss["Jandice Barov"] .. " (" .. AL["Scholo"] .. ")", droprate = "12.20%" }; --Dreadmist Mantle - [4] = { itemID = 16700, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "8.04%" }; --Dreadmist Robe - [5] = { itemID = 16703, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.68%" }; --Dreadmist Bracers - [6] = { itemID = 16705, desc = "=ds=" .. BabbleBoss["Lorekeeper Polkelt"] .. " (" .. AL["Scholo"] .. ")", droprate = "14.54%" }; --Dreadmist Wraps - [7] = { itemID = 16702, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.03%" }; --Dreadmist Belt - [8] = { itemID = 16699, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "7.31%" }; --Dreadmist Leggings - [9] = { itemID = 16704, desc = "=ds=" .. BabbleBoss["Baroness Anastari"] .. " (" .. AL["Strat"] .. ")", droprate = "13.16%" }; --Dreadmist Sandals - [16] = { icon = "Spell_Shadow_CurseOfTounges", name = "=q6=#t05s8#", desc = "=ec1=#j7#" }; - [17] = { itemID = 22074, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Deathmist Mask - [18] = { itemID = 22073, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Deathmist Mantle - [19] = { itemID = 22075, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Deathmist Robe - [20] = { itemID = 22071, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Deathmist Bracers - [21] = { itemID = 22077, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Deathmist Wraps - [22] = { itemID = 22070, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Deathmist Belt - [23] = { itemID = 22072, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Deathmist Leggings - [24] = { itemID = 22076, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Deathmist Sandals + Name = AL["Dreadmist Raiment"]; + [1] = { itemID = 16698, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "8.78%" }; --Dreadmist Mask + [2] = { itemID = 16701, desc = "=ds=" .. BabbleBoss["Jandice Barov"] .. " (" .. AL["Scholo"] .. ")", droprate = "12.20%" }; --Dreadmist Mantle + [3] = { itemID = 16700, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "8.04%" }; --Dreadmist Robe + [4] = { itemID = 16703, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.68%" }; --Dreadmist Bracers + [5] = { itemID = 16705, desc = "=ds=" .. BabbleBoss["Lorekeeper Polkelt"] .. " (" .. AL["Scholo"] .. ")", droprate = "14.54%" }; --Dreadmist Wraps + [6] = { itemID = 16702, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["Strat"] .. ")", droprate = "1.03%" }; --Dreadmist Belt + [7] = { itemID = 16699, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "7.31%" }; --Dreadmist Leggings + [8] = { itemID = 16704, desc = "=ds=" .. BabbleBoss["Baroness Anastari"] .. " (" .. AL["Strat"] .. ")", droprate = "13.16%" }; --Dreadmist Sandals + }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"]; - [1] = { icon = "INV_Shield_05", name = "=q6=#t0s9#", desc = "=ec1=#j6#" }; - [2] = { itemID = 16731, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "6.54%" }; --Helm of Valor - [3] = { itemID = 16733, desc = "=ds=" .. BabbleBoss["Warchief Rend Blackhand"] .. " (" .. AL["UBRS"] .. ")", droprate = "13.39%" }; --Spaulders of Valor - [4] = { itemID = 16730, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "5.83%" }; --Breastplate of Valor - [5] = { itemID = 16735, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.49%" }; --Bracers of Valor - [6] = { itemID = 16737, desc = "=ds=" .. BabbleBoss["Ramstein the Gorger"] .. " (" .. AL["Strat"] .. ")", droprate = "9.58%" }; --Gauntlets of Valor - [7] = { itemID = 16736, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.96%" }; --Belt of Valor - [8] = { itemID = 16732, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "5.74%" }; --Legplates of Valor - [9] = { itemID = 16734, desc = "=ds=" .. BabbleBoss["Kirtonos the Herald"] .. " (" .. AL["Scholo"] .. ")", droprate = "11.12%" }; --Boots of Valor - [16] = { icon = "INV_Shield_05", name = "=q6=#t05s9#", desc = "=ec1=#j7#" }; - [17] = { itemID = 21999, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Helm of Heroism - [18] = { itemID = 22001, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Spaulders of Heroism - [19] = { itemID = 21997, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Breastplate of Heroism - [20] = { itemID = 21996, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Bracers of Heroism - [21] = { itemID = 21998, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Gauntlets of Heroism - [22] = { itemID = 21994, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Belt of Heroism - [23] = { itemID = 22000, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Legplates of Heroism - [24] = { itemID = 21995, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal };--Boots of Heroism + Name = AL["Battlegear of Valor"]; + [1] = { itemID = 16731, desc = "=ds=" .. BabbleBoss["Darkmaster Gandling"] .. " (" .. AL["Scholo"] .. ")", droprate = "6.54%" }; --Helm of Valor + [2] = { itemID = 16733, desc = "=ds=" .. BabbleBoss["Warchief Rend Blackhand"] .. " (" .. AL["UBRS"] .. ")", droprate = "13.39%" }; --Spaulders of Valor + [3] = { itemID = 16730, desc = "=ds=" .. BabbleBoss["General Drakkisath"] .. " (" .. AL["UBRS"] .. ")", droprate = "5.83%" }; --Breastplate of Valor + [4] = { itemID = 16735, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.49%" }; --Bracers of Valor + [5] = { itemID = 16737, desc = "=ds=" .. BabbleBoss["Ramstein the Gorger"] .. " (" .. AL["Strat"] .. ")", droprate = "9.58%" }; --Gauntlets of Valor + [6] = { itemID = 16736, desc = "=ds=" .. AL["Trash Mobs"] .. " (" .. AL["LBRS"] .. ")", droprate = "1.96%" }; --Belt of Valor + [7] = { itemID = 16732, desc = "=ds=" .. BabbleBoss["Baron Rivendare"] .. " (" .. AL["Strat"] .. ")", droprate = "5.74%" }; --Legplates of Valor + [8] = { itemID = 16734, desc = "=ds=" .. BabbleBoss["Kirtonos the Herald"] .. " (" .. AL["Scholo"] .. ")", droprate = "11.12%" }; --Boots of Valor + + }; + { + Name = "Lightborne"; + [1] = { itemID = 46567 }; --Lightborne Faceguard + [2] = { itemID = 46610 }; --Lightborne Shoulderguards + [3] = { itemID = 53162 }; --Lightborne Chestguard + [4] = { itemID = 201774 }; --Lightborne Wrists + [5] = { itemID = 54110 }; --Lightborne Handguards + [6] = { itemID = 202325 }; --Lightborne Cord + [7] = { itemID = 53309 }; --Lightborne Legguards + [8] = { itemID = 202459 }; --Lightborne Boots + }; + { + Name = "Thornheart"; + [1] = { itemID = 56579 }; --Thornheart Cover + [2] = { itemID = 97953 }; --Thornheart Mantle + [3] = { itemID = 56730 }; --Thornheart Tunic + [4] = { itemID = 54346 }; --Thornheart Bands + [5] = { itemID = 98099 }; --Thornheart Gauntlets + [6] = { itemID = 54153 }; --Thornheart Sash + [7] = { itemID = 98013 }; --Thornheart Leggings + [8] = { itemID = 54219 }; --Thornheart Treads + }; + { + Name = "Currents"; + [1] = { itemID = 98718 }; --Headdress of Currents + [2] = { itemID = 98761 }; --Shoulderpads of Currents + [3] = { itemID = 98805 }; --Tunic of Currents + [4] = { itemID = 99537 }; --Bracers of Currents + [5] = { itemID = 98938 }; --Gloves of Currents + [6] = { itemID = 99494 }; --Belt of Currents + [7] = { itemID = 98895 }; --Kilt of Currents + [8] = { itemID = 99580 }; --Boots of Currents + }; + { + Name = "Bravery"; + [1] = { itemID = 98389 }; --Faceguard Bravery + [2] = { itemID = 98491 }; --Shoulderpads of Bravery + [3] = { itemID = 98589 }; --Chestguard of Bravery + [4] = { itemID = 136455 }; --Bracers of Bravery + [5] = { itemID = 192589 }; --Gauntlets of Bravery + [6] = { itemID = 191643 }; --Belt of Bravery + [7] = { itemID = 98632 }; --Leggings of Bravery + [8] = { itemID = 98675 }; --Stompers of Bravery + }; + { + Name = "Courage"; + [1] = { itemID = 98142 }; --Greathelm of Courage + [2] = { itemID = 98185 }; --Pauldrons of Courage + [3] = { itemID = 98228 }; --Chestplate of Courage + [4] = { itemID = 194184 }; --Bracers of Courage + [5] = { itemID = 99167 }; --Gauntlets of Courage + [6] = { itemID = 194292 }; --Belt of Courage + [7] = { itemID = 98271 }; --Legguards of Courage + [8] = { itemID = 98346 }; --Treads of Courage + }; +}; + +AtlasLoot_Data["T0.5"] = { + Module = "AtlasLoot_OriginalWoW"; + Name = "Dungeon Sets Quest Upgrades"; + Type = "ClassicDungeonExt"; + { + Name = AL["Feralheart Raiment"]; + [1] = { itemID = 22109, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Feralheart Cowl + [2] = { itemID = 22112, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Feralheart Spaulders + [3] = { itemID = 22113, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Feralheart Vest + [4] = { itemID = 22108, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Feralheart Bracers + [5] = { itemID = 22110, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Feralheart Gloves + [6] = { itemID = 22106, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Feralheart Belt + [7] = { itemID = 22111, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Feralheart Kilt + [8] = { itemID = 22107, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Feralheart Boots + }; + { + Name = AL["Beastmaster Armor"]; + [1] = { itemID = 22013, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Beastmaster's Cap + [2] = { itemID = 22016, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Beastmaster's Mantle + [3] = { itemID = 22060, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Beastmaster's Tunic + [4] = { itemID = 22011, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Beastmaster's Bindings + [5] = { itemID = 22015, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Beastmaster's Gloves + [6] = { itemID = 22010, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Beastmaster's Belt + [7] = { itemID = 22017, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Beastmaster's Pants + [8] = { itemID = 22061, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Beastmaster's Boots + }; + { + Name = AL["Sorcerer's Regalia"]; + [1] = { itemID = 22065, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Sorcerer's Crown + [2] = { itemID = 22068, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Sorcerer's Mantle + [3] = { itemID = 22069, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Sorcerer's Robes + [4] = { itemID = 22063, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Sorcerer's Bindings + [5] = { itemID = 22066, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Sorcerer's Gloves + [6] = { itemID = 22062, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Sorcerer's Belt + [7] = { itemID = 22067, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Sorcerer's Leggings + [8] = { itemID = 22064, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Sorcerer's Boots + }; + { + Name = AL["Soulforge Armor"]; + [1] = { itemID = 22091, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Soulforge Helm + [2] = { itemID = 22093, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Soulforge Spaulders + [3] = { itemID = 22089, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Soulforge Breastplate + [4] = { itemID = 22088, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Soulforge Bracers + [5] = { itemID = 22090, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Soulforge Gauntlets + [6] = { itemID = 22086, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Soulforge Belt + [7] = { itemID = 22092, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Soulforge Legplates + [8] = { itemID = 22087, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Soulforge Boots + }; + { + Name = AL["Vestments of the Virtuous"]; + [1] = { itemID = 22080, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Virtuous Crown + [2] = { itemID = 22082, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Virtuous Mantle + [3] = { itemID = 22083, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Virtuous Robe + [4] = { itemID = 22079, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Virtuous Bracers + [5] = { itemID = 22081, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Virtuous Gloves + [6] = { itemID = 22078, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Virtuous Belt + [7] = { itemID = 22085, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Virtuous Skirt + [8] = { itemID = 22084, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Virtuous Sandals + }; + { + Name = AL["Darkmantle Armor"]; + [1] = { itemID = 22005, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Darkmantle Cap + [2] = { itemID = 22008, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Darkmantle Spaulders + [3] = { itemID = 22009, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Darkmantle Tunic + [4] = { itemID = 22004, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Darkmantle Bracers + [5] = { itemID = 22006, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Darkmantle Gloves + [6] = { itemID = 22002, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Darkmantle Belt + [7] = { itemID = 22007, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Darkmantle Pants + [8] = { itemID = 22003, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Darkmantle Boots + }; + { + Name = AL["The Five Thunders"]; + [1] = { itemID = 22097, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Coif of The Five Thunders + [2] = { itemID = 22101, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Pauldrons of The Five Thunders + [3] = { itemID = 22102, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Vest of The Five Thunders + [4] = { itemID = 22095, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Bindings of The Five Thunders + [5] = { itemID = 22099, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Gauntlets of The Five Thunders + [6] = { itemID = 22098, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Cord of The Five Thunders + [7] = { itemID = 22100, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Kilt of The Five Thunders + [8] = { itemID = 22096, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Boots of The Five Thunders + }; + { + Name = AL["Deathmist Raiment"]; + [1] = { itemID = 22074, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Deathmist Mask + [2] = { itemID = 22073, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Deathmist Mantle + [3] = { itemID = 22075, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Deathmist Robe + [4] = { itemID = 22071, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Deathmist Bracers + [5] = { itemID = 22077, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Deathmist Wraps + [6] = { itemID = 22070, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Deathmist Belt + [7] = { itemID = 22072, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Deathmist Leggings + [8] = { itemID = 22076, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Deathmist Sandals + }; + { + Name = AL["Battlegear of Heroism"]; + [1] = { itemID = 21999, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Helm of Heroism + [2] = { itemID = 22001, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Spaulders of Heroism + [3] = { itemID = 21997, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Breastplate of Heroism + [4] = { itemID = 21996, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Bracers of Heroism + [5] = { itemID = 21998, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Gauntlets of Heroism + [6] = { itemID = 21994, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Belt of Heroism + [7] = { itemID = 22000, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Legplates of Heroism + [8] = { itemID = 21995, [AtlasLoot.Difficultys.MAX_DIF] = AtlasLoot.Difficultys.Normal }; --Boots of Heroism }; }; @@ -4391,7 +4470,7 @@ AtlasLoot_Data["T1"] = { Name = "Tier 1"; Type = "ClassicRaid"; { - Name = "Druid".." - "..AL["Restoration"]; + Name = "Druid"..WHITE.." - "..AL["Restoration"]; [1] = { itemID = 16834, desc = "=ds=" .. BabbleBoss["Garr"], droprate = "11.51%" }; --Cenarion Helm [2] = { itemID = 16836, desc = "=ds=" .. BabbleBoss["Baron Geddon"], droprate = "19.52%" }; --Cenarion Spaulders [3] = { itemID = 16833, desc = "=ds=" .. BabbleBoss["Golemagg the Incinerator"], droprate = "15.21%" }; --Cenarion Vestments @@ -4402,7 +4481,7 @@ AtlasLoot_Data["T1"] = { [8] = { itemID = 16829, desc = "=ds=" .. BabbleBoss["Lucifron"], droprate = "10.72%" }; --Cenarion Boots }; { - Name = "Druid" .. " - Tank"; + Name = "Druid" ..WHITE.. " - Tank"; [1] = { itemID = 13437, desc = "=ds=" .. BabbleBoss["Garr"], droprate = "11.51%" }; --Cenarion Cover [2] = { itemID = 13439, desc = "=ds=" .. BabbleBoss["Baron Geddon"], droprate = "19.52%" }; --Cenarion Pauldrons [3] = { itemID = 13436, desc = "=ds=" .. BabbleBoss["Golemagg the Incinerator"], droprate = "15.21%" }; --Cenarion Tunic @@ -4435,7 +4514,7 @@ AtlasLoot_Data["T1"] = { [8] = { itemID = 16800, desc = "=ds=" .. BabbleBoss["Lucifron"], droprate = "12.06%" }; --Arcanist Boots }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Holy"]; + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]..WHITE.." - "..AL["Holy"]; [1] = { itemID = 16854, desc = "=ds=" .. BabbleBoss["Garr"], droprate = "7.23%" }; --Lawbringer Helm [2] = { itemID = 16856, desc = "=ds=" .. BabbleBoss["Baron Geddon"], droprate = "12.62%" }; --Lawbringer Spaulders [3] = { itemID = 16853, desc = "=ds=" .. BabbleBoss["Golemagg the Incinerator"], droprate = "9.53%" }; --Lawbringer Chestguard @@ -4446,7 +4525,7 @@ AtlasLoot_Data["T1"] = { [8] = { itemID = 16859, desc = "=ds=" .. BabbleBoss["Lucifron"], droprate = "7.20%" }; --Lawbringer Boots }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - "..AL["Protection"]; + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]..WHITE.." - "..AL["Protection"]; [1] = { itemID = 11536, desc = "=ds=" .. BabbleBoss["Garr"], droprate = "7.23%" }; --Lawbringer Greathelm [2] = { itemID = 11538, desc = "=ds=" .. BabbleBoss["Baron Geddon"], droprate = "12.62%" }; --Lawbringer Pauldrons [3] = { itemID = 11535, desc = "=ds=" .. BabbleBoss["Golemagg the Incinerator"], droprate = "9.53%" }; --Lawbringer Breastplate @@ -4479,7 +4558,7 @@ AtlasLoot_Data["T1"] = { [8] = { itemID = 16824, desc = "=ds=" .. BabbleBoss["Shazzrah"], droprate = "15.58%" }; --Nightslayer Boots }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Restoration"]; + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]..WHITE.." - "..AL["Restoration"]; [1] = { itemID = 16842, desc = "=ds=" .. BabbleBoss["Garr"], droprate = "3.91%" }; --Earthfury Helmet [2] = { itemID = 16844, desc = "=ds=" .. BabbleBoss["Baron Geddon"], droprate = "7.29%" }; --Earthfury Epaulets [3] = { itemID = 16841, desc = "=ds=" .. BabbleBoss["Golemagg the Incinerator"], droprate = "6.08%" }; --Earthfury Vestments @@ -4490,7 +4569,7 @@ AtlasLoot_Data["T1"] = { [8] = { itemID = 16837, desc = "=ds=" .. BabbleBoss["Lucifron"], droprate = "4.16%" }; --Earthfury Boots }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - "..AL["Enhancement"]; + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]..WHITE.." - "..AL["Enhancement"]; [1] = { itemID = 11794, desc = "=ds=" .. BabbleBoss["Garr"], droprate = "3.91%" }; --Earthfury Cover [2] = { itemID = 11796, desc = "=ds=" .. BabbleBoss["Baron Geddon"], droprate = "7.29%" }; --Earthfury Pauldrons [3] = { itemID = 11792, desc = "=ds=" .. BabbleBoss["Golemagg the Incinerator"], droprate = "6.08%" }; --Earthfury Tunic @@ -4552,7 +4631,7 @@ AtlasLoot_Data["T2"] = { [8] = { itemID = 16898, desc = "=ds=" .. BabbleBoss["Broodlord Lashlayer"] };--Stormrage Boots }; { - Name = AL["Druid"] .. " - Tank"; + Name = AL["Druid"] .. WHITE.." - Tank"; [1] = { itemID = 1516900, desc = "=ds=" .. BabbleBoss["Onyxia"] };--Stormrage Cover [2] = { itemID = 1516902, desc = "=ds=" .. BabbleBoss["Chromaggus"] };--Stormrage Pauldrons [3] = { itemID = 1516897, desc = "=ds=" .. BabbleBoss["Nefarian"] };--Stormrage Chestguard @@ -4563,7 +4642,7 @@ AtlasLoot_Data["T2"] = { [8] = { itemID = 1516898, desc = "=ds=" .. BabbleBoss["Broodlord Lashlayer"] };--Stormrage Boots }; { - Name = AL["Druid"] .. " - DPS"; + Name = AL["Druid"] .. WHITE.." - DPS"; [1] = { itemID = 1516892, desc = "=ds=" .. BabbleBoss["Onyxia"] };--Stormrage Cover [2] = { itemID = 1516894, desc = "=ds=" .. BabbleBoss["Chromaggus"] };--Stormrage Pauldrons [3] = { itemID = 1516889, desc = "=ds=" .. BabbleBoss["Nefarian"] };--Stormrage Chestguard @@ -4727,7 +4806,7 @@ AtlasLoot_Data["T3"] = { Name = "Tier 3"; Type = "ClassicRaid"; { - Name = AL["Druid"] .. " - Healing"; + Name = AL["Druid"] .. WHITE.." - Healing"; [1] = { itemID = 22490 }; --Dreamwalker Headpiece [2] = { itemID = 22491 }; --Dreamwalker Spaulders [3] = { itemID = 22488 }; --Dreamwalker Tunic @@ -4739,7 +4818,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 23064 }; --Ring of the Dreamwalker }; { - Name = AL["Druid"] .. " - Haste"; + Name = AL["Druid"] .. WHITE.." - Haste"; [1] = { itemID = 1522490 }; --Dreamwalker Headpiece [2] = { itemID = 1522491 }; --Dreamwalker Spaulders [3] = { itemID = 1522488 }; --Dreamwalker Tunic @@ -4751,7 +4830,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 1523064 }; --Ring of the Dreamwalker }; { - Name = AL["Druid"] .. " - Feral Dps"; + Name = AL["Druid"] .. WHITE.." - Feral Dps"; [1] = { itemID = 1532490 }; --Dreamwalker Headpiece [2] = { itemID = 1532491 }; --Dreamwalker Spaulders [3] = { itemID = 1532488 }; --Dreamwalker Tunic @@ -4763,7 +4842,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 1533064 }; --Ring of the Dreamwalker }; { - Name = AL["Druid"] .. " - Tank"; + Name = AL["Druid"] .. WHITE.." - Tank"; [1] = { itemID = 1507037 }; --Dreamwalker Headpiece [2] = { itemID = 1507038 }; --Dreamwalker Spaulders [3] = { itemID = 1507035 }; --Dreamwalker Tunic @@ -4799,7 +4878,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 23062 }; --Frostfire Ring }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - Healing"; + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. WHITE.. " - Healing"; [1] = { itemID = 22428 }; --Redemption Headpiece [2] = { itemID = 22429 }; --Redemption Spaulders [3] = { itemID = 22425 }; --Redemption Tunic @@ -4811,7 +4890,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 23066 }; --Ring of Redemption }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - Dps"; + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. WHITE.. " - Dps"; [1] = { itemID = 1532428 }; --Redemption Headpiece [2] = { itemID = 1532429 }; --Redemption Spaulders [3] = { itemID = 1532425 }; --Redemption Tunic @@ -4823,7 +4902,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 1533066 }; --Ring of Redemption }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. " - Tank"; + Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"] .. WHITE.. " - Tank"; [1] = { itemID = 1522428 }; --Redemption Headpiece [2] = { itemID = 1522429 }; --Redemption Spaulders [3] = { itemID = 1522425 }; --Redemption Tunic @@ -4835,7 +4914,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 1523066 }; --Ring of Redemption }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - Healing"; + Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. WHITE.. " - Healing"; [1] = { itemID = 22514 }; --Circlet of Faith [2] = { itemID = 22515 }; --Shoulderpads of Faith [3] = { itemID = 22512 }; --Robe of Faith @@ -4847,7 +4926,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 23061 }; --Ring of Faith }; { - Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. " - Dps"; + Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"] .. WHITE.. " - Dps"; [1] = { itemID = 1522514 }; --Circlet of Faith [2] = { itemID = 1522515 }; --Shoulderpads of Faith [3] = { itemID = 1522512 }; --Robe of Faith @@ -4871,7 +4950,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 23060 }; --Bonescythe Ring }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - Enhancement"; + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. WHITE.. " - Enhancement"; [1] = { itemID = 22466 }; --Earthshatter Headpiece [2] = { itemID = 22467 }; --Earthshatter Spaulders [3] = { itemID = 22464 }; --Earthshatter Tunic @@ -4883,7 +4962,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 23065 }; --Ring of the Earthshatterer }; { - Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. " - Spell"; + Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"] .. WHITE.. " - Spell"; [1] = { itemID = 1522466 }; --Earthshatter Headpiece [2] = { itemID = 1522467 }; --Earthshatter Spaulders [3] = { itemID = 1522464 }; --Earthshatter Tunic @@ -4907,7 +4986,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 23063 }; --Plagueheart Ring }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - Block Tank"; + Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. WHITE.. " - Block Tank"; [1] = { itemID = 22418 }; --Dreadnaught Helmet [2] = { itemID = 22419 }; --Dreadnaught Pauldrons [3] = { itemID = 22416 }; --Dreadnaught Breastplate @@ -4919,7 +4998,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 23059 }; --Ring of the Dreadnaught }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - Parry Tank"; + Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. WHITE.. " - Parry Tank"; [1] = { itemID = 1522418 }; --Dreadnaught Helmet [2] = { itemID = 1522419 }; --Dreadnaught Pauldrons [3] = { itemID = 1522416 }; --Dreadnaught Breastplate @@ -4931,7 +5010,7 @@ AtlasLoot_Data["T3"] = { [9] = { itemID = 1523059 }; --Ring of the Dreadnaught }; { - Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. " - DPS"; + Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"] .. WHITE.. " - DPS"; [1] = { itemID = 10490 }; --Dreadborne Helmet [2] = { itemID = 10491 }; --Dreadborne Pauldrons [3] = { itemID = 10488 }; --Dreadborne Breastplate @@ -5299,7 +5378,7 @@ AtlasLoot_Data["T2.5"] = { [5] = { itemID = 21355 }; -- =q4=Genesis Boots" }; { - Name = AL["Druid"] .. " - Tank"; + Name = AL["Druid"] .. WHITE.." - Tank"; [1] = { itemID = 1507029 }; -- =q4=Genesis Carapace" [2] = { itemID = 1507025 }; -- =q4=Genesis Mask" [3] = { itemID = 1507028 }; -- =q4=Genesis Pants" @@ -5307,7 +5386,7 @@ AtlasLoot_Data["T2.5"] = { [5] = { itemID = 1507027 }; -- =q4=Genesis Treads" }; { - Name = AL["Druid"] .. " - Feral"; + Name = AL["Druid"] .. WHITE.." - Feral"; [1] = { itemID = 1507024 }; -- =q4=Genesis Garb" [2] = { itemID = 1507020 }; -- =q4=Genesis Visor" [3] = { itemID = 1507023 }; -- =q4=Genesis Legguards" @@ -5576,7 +5655,7 @@ AtlasLoot_Data["AVMisc"] = { AtlasLoot_Data["AB_A"] = { Module = "AtlasLoot_OriginalWoW"; - Name = BabbleZone["Arathi Basin"] .. " (Alliance)"; + Name = BabbleZone["Arathi Basin"] .. WHITE.." (Alliance)"; { Name = AL["Misc. Rewards"]; [1] = { itemID = 17349, price = "5 #silver# 1 #alliance#" }; --Superior Healing Draught @@ -5695,7 +5774,7 @@ AtlasLoot_Data["AB_A"] = { AtlasLoot_Data["AB_H"] = { Module = "AtlasLoot_OriginalWoW"; - Name = BabbleZone["Arathi Basin"] .. " (Horde)"; + Name = BabbleZone["Arathi Basin"] .. WHITE.." (Horde)"; { Name = AL["Misc. Rewards"]; [1] = { itemID = 17349, price = "5 #silver# 5 #horde#" }; --Superior Healing Draught @@ -5818,7 +5897,7 @@ AtlasLoot_Data["AB_H"] = { AtlasLoot_Data["WSG_A"] = { Module = "AtlasLoot_OriginalWoW"; - Name = BabbleZone["Warsong Gulch"] .. " (Alliance)"; + Name = BabbleZone["Warsong Gulch"] .. WHITE.." (Alliance)"; { Name = AL["Misc. Rewards"]; [1] = { itemID = 19506, price = "12000 #faction#" }; --Silverwing Battle Tabard @@ -5904,7 +5983,7 @@ AtlasLoot_Data["WSG_A"] = { AtlasLoot_Data["WSG_H"] = { Module = "AtlasLoot_OriginalWoW"; - Name = BabbleZone["Warsong Gulch"] .. " (Horde)"; + Name = BabbleZone["Warsong Gulch"] .. WHITE.." (Horde)"; { Name = AL["Misc. Rewards"]; [1] = { itemID = 19505, price = "12000 #faction#" }; --Warsong Battle Tabard @@ -5995,7 +6074,7 @@ AtlasLoot_Data["PVPDruid"] = { Module = "AtlasLoot_OriginalWoW"; Name = AL["Druid"]; { - Name = AL["Rare Set"] .. " (Alliance)"; + Name = AL["Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 16424, price = "9435 #alliance#" }; --Lieutenant Commander's Dragonhide Headguard [2] = { itemID = 16423, price = "6885 #alliance#" }; --Lieutenant Commander's Dragonhide Shoulders [3] = { itemID = 16421, price = "9435 #alliance#" }; --Knight-Captain's Dragonhide Chestpiece @@ -6004,7 +6083,7 @@ AtlasLoot_Data["PVPDruid"] = { [6] = { itemID = 16393, price = "5000 #alliance#" }; --Knight-Lieutenant's Dragonhide Treads }; { - Name = AL["Superior Rare Set"] .. " (Alliance)"; + Name = AL["Superior Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 23308, price = "24000 #alliance#" }; --Lieutenant Commander's Dragonhide Headguard [2] = { itemID = 23309, price = "14000 #alliance#" }; --Lieutenant Commander's Dragonhide Shoulders [3] = { itemID = 23294, price = "24000 #alliance#" }; --Knight-Captain's Dragonhide Chestpiece @@ -6013,7 +6092,7 @@ AtlasLoot_Data["PVPDruid"] = { [6] = { itemID = 23281, price = "14000 #alliance#" }; --Knight-Lieutenant's Dragonhide Treads }; { - Name = AL["Epic Set"] .. " (Alliance)"; + Name = AL["Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 16451, price = "68200 #alliance#" }; --Field Marshal's Dragonhide Helmet [2] = { itemID = 16449, price = "52200 #alliance#" }; --Field Marshal's Dragonhide Spaulders [3] = { itemID = 16452, price = "68200 #alliance#" }; --Field Marshal's Dragonhide Breastplate @@ -6022,7 +6101,7 @@ AtlasLoot_Data["PVPDruid"] = { [6] = { itemID = 16459, price = "52200 #alliance#" }; --Marshal's Dragonhide Boots }; { - Name = AL["Superior Epic Set"] .. " (Alliance)"; + Name = AL["Superior Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 6116550, price = "2370 #arena# #horde#" }; --Grand Marshal's Chain Helm [2] = { itemID = 6116551, price = "1930 #arena# #horde#" }; --Grand Marshal's Chain Spaulders [3] = { itemID = 6116549, price = "2370 #arena# #horde#" }; --Grand Marshal's Chain Breastplate @@ -6031,7 +6110,7 @@ AtlasLoot_Data["PVPDruid"] = { [6] = { itemID = 6116554, price = "1430 #arena# #horde#" }; --Grand Marshal's Chain Boots }; { - Name = AL["Rare Set"] .. " (Horde)"; + Name = AL["Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16503, price = "9435 #horde#" }; --Champion's Dragonhide Headguard [2] = { itemID = 16501, price = "6885 #horde#" }; --Champion's Dragonhide Shoulders [3] = { itemID = 16504, price = "9435 #horde#" }; --Legionnaire's Dragonhide Chestpiece @@ -6040,7 +6119,7 @@ AtlasLoot_Data["PVPDruid"] = { [6] = { itemID = 16494, price = "5000 #horde#" }; --Blood Guard's Dragonhide Treads }; { - Name = AL["Superior Rare Set"] .. " (Horde)"; + Name = AL["Superior Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 23253, price = "24000 #horde#" }; --Champion's Dragonhide Headguard [2] = { itemID = 23254, price = "14000 #horde#" }; --Champion's Dragonhide Shoulders [3] = { itemID = 22877, price = "24000 #horde#" }; --Legionnaire's Dragonhide Chestpiece @@ -6049,7 +6128,7 @@ AtlasLoot_Data["PVPDruid"] = { [6] = { itemID = 22852, price = "14000 #horde#" }; --Blood Guard's Dragonhide Treads }; { - Name = AL["Epic Set"] .. " (Horde)"; + Name = AL["Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16550, price = "68200 #horde#" }; --Warlord's Dragonhide Helmet [2] = { itemID = 16551, price = "52200 #horde#" }; --Warlord's Dragonhide Epaulets [3] = { itemID = 16549, price = "68200 #horde#" }; --Warlord's Dragonhide Hauberk @@ -6058,7 +6137,7 @@ AtlasLoot_Data["PVPDruid"] = { [6] = { itemID = 16554, price = "52200 #horde#" }; --General's Dragonhide Boots }; { - Name = AL["Superior Epic Set"] .. " (Horde)"; + Name = AL["Superior Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 6116451, price = "2370 #arena# #alliance#" }; --High Warlord's Dragonhide Helmet [2] = { itemID = 6116449, price = "1930 #arena# #alliance#" }; --High Warlord's Dragonhide Epaulets [3] = { itemID = 6116452, price = "2370 #arena# #alliance#" }; --High Warlord's Dragonhide Hauberk @@ -6074,7 +6153,7 @@ AtlasLoot_Data["PVPHunter"] = { Module = "AtlasLoot_OriginalWoW"; Name = LOCALIZED_CLASS_NAMES_MALE["HUNTER"]; { - Name = AL["Rare Set"] .. " (Alliance)"; + Name = AL["Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 16428, price = "9435 #alliance#" }; --Lieutenant Commander's Chain Helm [2] = { itemID = 16427, price = "6885 #alliance#" }; --Lieutenant Commander's Chain Shoulders [3] = { itemID = 16425, price = "9435 #alliance#" }; --Knight-Captain's Chain Hauberk @@ -6083,7 +6162,7 @@ AtlasLoot_Data["PVPHunter"] = { [6] = { itemID = 16401, price = "5000 #alliance#" }; --Knight-Lieutenant's Chain Greaves }; { - Name = AL["Superior Rare Set"] .. " (Alliance)"; + Name = AL["Superior Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 23306, price = "24000 #alliance#" }; --Lieutenant Commander's Chain Helm [2] = { itemID = 23307, price = "14000 #alliance#" }; --Lieutenant Commander's Chain Shoulders [3] = { itemID = 23292, price = "24000 #alliance#" }; --Knight-Captain's Chain Hauberk @@ -6092,7 +6171,7 @@ AtlasLoot_Data["PVPHunter"] = { [6] = { itemID = 23278, price = "14000 #alliance#" }; --Knight-Lieutenant's Chain Greaves }; { - Name = AL["Epic Set"] .. " (Alliance)"; + Name = AL["Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 16465, price = "68200 #alliance#" }; --Field Marshal's Chain Helm [2] = { itemID = 16468, price = "52200 #alliance#" }; --Field Marshal's Chain Spaulders [3] = { itemID = 16466, price = "68200 #alliance#" }; --Field Marshal's Chain Breastplate @@ -6101,7 +6180,7 @@ AtlasLoot_Data["PVPHunter"] = { [6] = { itemID = 16462, price = "52200 #alliance#" }; --Marshal's Chain Boots }; { - Name = AL["Superior Epic Set"] .. " (Alliance)"; + Name = AL["Superior Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 6116465, price = "2370 #arena# #alliance#" }; --Grand Marshal's Chain Helm [2] = { itemID = 6116468, price = "1930 #arena# #alliance#" }; --Grand Marshal's Chain Spaulders [3] = { itemID = 6116466, price = "2370 #arena# #alliance#" }; --Grand Marshal's Chain Breastplate @@ -6110,7 +6189,7 @@ AtlasLoot_Data["PVPHunter"] = { [6] = { itemID = 6116462, price = "1430 #arena# #alliance#" }; --Grand Marshal's Chain Boots }; { - Name = AL["Rare Set"] .. " (Horde)"; + Name = AL["Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16526, price = "9435 #horde#" }; --Champion's Chain Helm [2] = { itemID = 16528, price = "6885 #horde#" }; --Champion's Chain Shoulders [3] = { itemID = 16525, price = "9435 #horde#" }; --Legionnaire's Chain Hauberk @@ -6119,7 +6198,7 @@ AtlasLoot_Data["PVPHunter"] = { [6] = { itemID = 16531, price = "5000 #horde#" }; --Blood Guard's Chain Greaves }; { - Name = AL["Superior Rare Set"] .. " (Horde)"; + Name = AL["Superior Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 23251, price = "24000 #horde#" }; --Champion's Chain Helm [2] = { itemID = 23252, price = "14000 #horde#" }; --Champion's Chain Shoulders [3] = { itemID = 22874, price = "24000 #horde#" }; --Legionnaire's Chain Hauberk @@ -6128,7 +6207,7 @@ AtlasLoot_Data["PVPHunter"] = { [6] = { itemID = 22843, price = "14000 #horde#" }; --Blood Guard's Chain Greaves }; { - Name = AL["Epic Set"] .. " (Horde)"; + Name = AL["Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16566, price = "68200 #horde#" }; --Warlord's Chain Helmet [2] = { itemID = 16568, price = "52200 #horde#" }; --Warlord's Chain Shoulders [3] = { itemID = 16565, price = "68200 #horde#" }; --Warlord's Chain Chestpiece @@ -6137,7 +6216,7 @@ AtlasLoot_Data["PVPHunter"] = { [6] = { itemID = 16569, price = "52200 #horde#" }; --General's Chain Boots }; { - Name = AL["Superior Epic Set"] .. " (Horde)"; + Name = AL["Superior Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 6116566, price = "2370 #arena# #horde#" }; --High Warlord's Chain Helmet [2] = { itemID = 6116568, price = "1930 #arena# #horde#" }; --High Warlord's Chain Shoulders [3] = { itemID = 6116565, price = "2370 #arena# #horde#" }; --High Warlord's Chain Chestpiece @@ -6151,7 +6230,7 @@ AtlasLoot_Data["PVPMage"] = { Module = "AtlasLoot_OriginalWoW"; Name = LOCALIZED_CLASS_NAMES_MALE["MAGE"]; { - Name = AL["Rare Set"] .. " (Alliance)"; + Name = AL["Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 16416, price = "9435 #alliance#" }; --Lieutenant Commander's Silk Cowl [2] = { itemID = 16415, price = "6885 #alliance#" }; --Lieutenant Commander's Silk Mantle [3] = { itemID = 16413, price = "9435 #alliance#" }; --Knight-Captain's Silk Tunic @@ -6160,7 +6239,7 @@ AtlasLoot_Data["PVPMage"] = { [6] = { itemID = 16369, price = "5000 #alliance#" }; --Knight-Lieutenant's Silk Walkers }; { - Name = AL["Superior Rare Set"] .. " (Alliance)"; + Name = AL["Superior Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 23318, price = "24000 #alliance#" }; --Lieutenant Commander's Silk Cowl [2] = { itemID = 23319, price = "14000 #alliance#" }; --Lieutenant Commander's Silk Mantle [3] = { itemID = 23305, price = "24000 #alliance#" }; --Knight-Captain's Silk Tunic @@ -6169,7 +6248,7 @@ AtlasLoot_Data["PVPMage"] = { [6] = { itemID = 23291, price = "14000 #alliance#" }; --Knight-Lieutenant's Silk Walkers }; { - Name = AL["Epic Set"] .. " (Alliance)"; + Name = AL["Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 16441, price = "68200 #alliance#" }; --Field Marshal's Coronet [2] = { itemID = 16444, price = "52200 #alliance#" }; --Field Marshal's Silk Spaulders [3] = { itemID = 16443, price = "68200 #alliance#" }; --Field Marshal's Silk Vestments @@ -6178,7 +6257,7 @@ AtlasLoot_Data["PVPMage"] = { [6] = { itemID = 16437, price = "52200 #alliance#" }; --Marshal's Silk Footwraps }; { - Name = AL["Superior Epic Set"] .. " (Alliance)"; + Name = AL["Superior Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 6116441, price = "2370 #arena# #alliance#" }; --Grand Marshal's Coronet [2] = { itemID = 6116444, price = "1930 #arena# #alliance#" }; --Grand Marshal's Silk Spaulders [3] = { itemID = 6116443, price = "2370 #arena# #alliance#" }; --Grand Marshal's Silk Vestments @@ -6187,7 +6266,7 @@ AtlasLoot_Data["PVPMage"] = { [6] = { itemID = 6116437, price = "1430 #arena# #alliance#" }; --Grand Marshal's Silk Footwraps }; { - Name = AL["Rare Set"] .. " (Horde)"; + Name = AL["Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16489, price = "9435 #horde#" }; --Champion's Silk Cowl [2] = { itemID = 16492, price = "6885 #horde#" }; --Champion's Silk Mantle [3] = { itemID = 16491, price = "9435 #horde#" }; --Legionnaire's Silk Tunic @@ -6196,7 +6275,7 @@ AtlasLoot_Data["PVPMage"] = { [6] = { itemID = 16485, price = "5000 #horde#" }; --Blood Guard's Silk Walkers }; { - Name = AL["Superior Rare Set"] .. " (Horde)"; + Name = AL["Superior Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 23263, price = "24000 #horde#" }; --Champion's Silk Cowl [2] = { itemID = 23264, price = "14000 #horde#" }; --Champion's Silk Mantle [3] = { itemID = 22886, price = "24000 #horde#" }; --Legionnaire's Silk Tunic @@ -6205,7 +6284,7 @@ AtlasLoot_Data["PVPMage"] = { [6] = { itemID = 22860, price = "14000 #horde#" }; --Blood Guard's Silk Walkers }; { - Name = AL["Epic Set"] .. " (Horde)"; + Name = AL["Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16533, price = "68200 #horde#" }; --Warlord's Silk Cowl [2] = { itemID = 16536, price = "52200 #horde#" }; --Warlord's Silk Amice [3] = { itemID = 16535, price = "68200 #horde#" }; --Warlord's Silk Raiment @@ -6214,7 +6293,7 @@ AtlasLoot_Data["PVPMage"] = { [6] = { itemID = 16539, price = "52200 #horde#" }; --General's Silk Boots }; { - Name = AL["Superior Epic Set"] .. " (Horde)"; + Name = AL["Superior Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 6116533, price = "2370 #arena# #horde#" }; --High Warlord's Silk Cowl [2] = { itemID = 6116536, price = "1930 #arena# #horde#" }; --High Warlord's Silk Amice [3] = { itemID = 6116535, price = "2370 #arena# #horde#" }; --High Warlord's Silk Raiment @@ -6228,7 +6307,7 @@ AtlasLoot_Data["PVPPaladin"] = { Module = "AtlasLoot_OriginalWoW"; Name = LOCALIZED_CLASS_NAMES_MALE["PALADIN"]; { - Name = AL["Rare Set"] .. " (Alliance)"; + Name = AL["Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 16434, price = "9435 #alliance#" }; --Lieutenant Commander's Lamellar Headguard [2] = { itemID = 16436, price = "6885 #alliance#" }; --Lieutenant Commander's Lamellar Shoulders [3] = { itemID = 16433, price = "9435 #alliance#" }; --Knight-Captain's Lamellar Breastplate @@ -6237,7 +6316,7 @@ AtlasLoot_Data["PVPPaladin"] = { [6] = { itemID = 16409, price = "5000 #alliance#" }; --Knight-Lieutenant's Lamellar Sabatons }; { - Name = AL["Superior Rare Set"] .. " (Alliance)"; + Name = AL["Superior Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 23276, price = "24000 #alliance#" }; --Lieutenant Commander's Lamellar Headguard [2] = { itemID = 23277, price = "14000 #alliance#" }; --Lieutenant Commander's Lamellar Shoulders [3] = { itemID = 23272, price = "24000 #alliance#" }; --Knight-Captain's Lamellar Breastplate @@ -6246,7 +6325,7 @@ AtlasLoot_Data["PVPPaladin"] = { [6] = { itemID = 23275, price = "14000 #alliance#" }; --Knight-Lieutenant's Lamellar Sabatons }; { - Name = AL["Epic Set"] .. " (Alliance)"; + Name = AL["Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 16474, price = "68200 #alliance#" }; --Field Marshal's Lamellar Faceguard [2] = { itemID = 16476, price = "52200 #alliance#" }; --Field Marshal's Lamellar Pauldrons [3] = { itemID = 16473, price = "68200 #alliance#" }; --Field Marshal's Lamellar Chestplate @@ -6255,7 +6334,7 @@ AtlasLoot_Data["PVPPaladin"] = { [6] = { itemID = 16472, price = "52200 #alliance#" }; --Marshal's Lamellar Boots }; { - Name = AL["Superior Epic Set"] .. " (Alliance)"; + Name = AL["Superior Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 6116474, price = "2370 #arena# #alliance#" }; --Grand Marshal's Lamellar Faceguard [2] = { itemID = 6116476, price = "1930 #arena# #alliance#" }; --Grand Marshal's Lamellar Pauldrons [3] = { itemID = 6116473, price = "2370 #arena# #alliance#" }; --Grand Marshal's Lamellar Chestplate @@ -6264,7 +6343,7 @@ AtlasLoot_Data["PVPPaladin"] = { [6] = { itemID = 6116472, price = "1430 #arena# #alliance#" }; --Grand Marshal's Lamellar Boots }; { - Name = AL["Superior Rare Set"] .. " (Horde)"; + Name = AL["Superior Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 29604, price = "24000 #horde#" }; --Champion's Lamellar Headguard [2] = { itemID = 29605, price = "14000 #horde#" }; --Champion's Lamellar Shoulders [3] = { itemID = 29602, price = "24000 #horde#" }; --Legionnaire's Lamellar Breastplate @@ -6273,7 +6352,7 @@ AtlasLoot_Data["PVPPaladin"] = { [6] = { itemID = 29601, price = "14000 #horde#" }; --Blood Guard's Lamellar Sabatons }; { - Name = AL["Epic Set"] .. " (Horde)"; + Name = AL["Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 29616, price = "68200 #horde#" }; --Warlord's Lamellar Faceguard [2] = { itemID = 29617, price = "52200 #horde#" }; --Warlord's Lamellar Pauldrons [3] = { itemID = 29615, price = "68200 #horde#" }; --Warlord's Lamellar Chestplate @@ -6282,7 +6361,7 @@ AtlasLoot_Data["PVPPaladin"] = { [6] = { itemID = 29612, price = "52200 #horde#" }; --General's Lamellar Boots }; { - Name = AL["Superior Epic Set"] .. " (Horde)"; + Name = AL["Superior Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 6129616, price = "2370 #arena# #horde#" }; --High Warlord's Lamellar Faceguard [2] = { itemID = 6129617, price = "1930 #arena# #horde#" }; --High Warlord's Lamellar Pauldrons [3] = { itemID = 6129615, price = "2370 #arena# #horde#" }; --High Warlord's Lamellar Chestplate @@ -6296,7 +6375,7 @@ AtlasLoot_Data["PVPPriest"] = { Module = "AtlasLoot_OriginalWoW"; Name = LOCALIZED_CLASS_NAMES_MALE["PRIEST"]; { - Name = AL["Rare Set"] .. " (Alliance)"; + Name = AL["Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 17598, price = "9435 #alliance#" }; --Lieutenant Commander's Satin Hood [2] = { itemID = 17601, price = "6885 #alliance#" }; --Lieutenant Commander's Satin Mantle [3] = { itemID = 17600, price = "9435 #alliance#" }; --Knight-Captain's Satin Tunic @@ -6305,7 +6384,7 @@ AtlasLoot_Data["PVPPriest"] = { [6] = { itemID = 17594, price = "5000 #alliance#" }; --Knight-Lieutenant's Satin Walkers }; { - Name = AL["Superior Rare Set"] .. " (Alliance)"; + Name = AL["Superior Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 23316, price = "24000 #alliance#" }; --Lieutenant Commander's Satin Hood [2] = { itemID = 23317, price = "14000 #alliance#" }; --Lieutenant Commander's Satin Mantle [3] = { itemID = 23303, price = "24000 #alliance#" }; --Knight-Captain's Satin Tunic @@ -6314,7 +6393,7 @@ AtlasLoot_Data["PVPPriest"] = { [6] = { itemID = 23289, price = "14000 #alliance#" }; --Knight-Lieutenant's Satin Walkers }; { - Name = AL["Epic Set"] .. " (Alliance)"; + Name = AL["Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 17602, price = "68200 #alliance#" }; --Field Marshal's Headdress [2] = { itemID = 17604, price = "52200 #alliance#" }; --Field Marshal's Satin Mantle [3] = { itemID = 17605, price = "68200 #alliance#" }; --Field Marshal's Satin Vestments @@ -6323,7 +6402,7 @@ AtlasLoot_Data["PVPPriest"] = { [6] = { itemID = 17607, price = "52200 #alliance#" }; --Marshal's Satin Sandals }; { - Name = AL["Superior Epic Set"] .. " (Alliance)"; + Name = AL["Superior Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 6117602, price = "2370 #arena# #alliance#" }; --Grand Marshal's Headdress [2] = { itemID = 6117604, price = "1930 #arena# #alliance#" }; --Grand Marshal's Satin Mantle [3] = { itemID = 6117605, price = "2370 #arena# #alliance#" }; --Grand Marshal's Satin Vestments @@ -6332,7 +6411,7 @@ AtlasLoot_Data["PVPPriest"] = { [6] = { itemID = 6117607, price = "1430 #arena# #alliance#" }; --Grand Marshal's Satin Sandals }; { - Name = AL["Rare Set"] .. " (Horde)"; + Name = AL["Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16489, price = "9435 #horde#" }; --Champion's Satin Hood [2] = { itemID = 16492, price = "6885 #horde#" }; --Champion's Satin Mantle [3] = { itemID = 16491, price = "9435 #horde#" }; --Legionnaire's Satin Tunic @@ -6341,7 +6420,7 @@ AtlasLoot_Data["PVPPriest"] = { [6] = { itemID = 16485, price = "5000 #horde#" }; --Blood Guard's Satin Walkers }; { - Name = AL["Superior Rare Set"] .. " (Horde)"; + Name = AL["Superior Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 23261, price = "24000 #horde#" }; --Champion's Satin Hood [2] = { itemID = 23262, price = "14000 #horde#" }; --Champion's Satin Mantle [3] = { itemID = 22885, price = "24000 #horde#" }; --Legionnaire's Satin Tunic @@ -6350,7 +6429,7 @@ AtlasLoot_Data["PVPPriest"] = { [6] = { itemID = 22859, price = "14000 #horde#" }; --Blood Guard's Satin Walkers }; { - Name = AL["Epic Set"] .. " (Horde)"; + Name = AL["Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 17623, price = "68200 #horde#" }; --Warlord's Satin Cowl [2] = { itemID = 17622, price = "52200 #horde#" }; --Warlord's Satin Mantle [3] = { itemID = 17624, price = "68200 #horde#" }; --Warlord's Satin Robes @@ -6359,7 +6438,7 @@ AtlasLoot_Data["PVPPriest"] = { [6] = { itemID = 17618, price = "52200 #horde#" }; --General's Satin Boots }; { - Name = AL["Superior Epic Set"] .. " (Horde)"; + Name = AL["Superior Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 6117623, price = "2370 #arena# #horde#" }; --High Warlord's Satin Cowl [2] = { itemID = 6117622, price = "1930 #arena# #horde#" }; --High Warlord's Satin Mantle [3] = { itemID = 6117624, price = "2370 #arena# #horde#" }; --High Warlord's Satin Robes @@ -6374,7 +6453,7 @@ AtlasLoot_Data["PVPRogue"] = { Module = "AtlasLoot_OriginalWoW"; Name = LOCALIZED_CLASS_NAMES_MALE["ROGUE"]; { - Name = AL["Rare Set"] .. " (Alliance)"; + Name = AL["Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 16418, price = "9435 #alliance#" }; --Lieutenant Commander's Leather Helm [2] = { itemID = 16420, price = "6885 #alliance#" }; --Lieutenant Commander's Leather Shoulders [3] = { itemID = 16417, price = "9435 #alliance#" }; --Knight-Captain's Leather Chestpiece @@ -6383,7 +6462,7 @@ AtlasLoot_Data["PVPRogue"] = { [6] = { itemID = 16392, price = "5000 #alliance#" }; --Knight-Lieutenant's Leather Walkers }; { - Name = AL["Superior Rare Set"] .. " (Alliance)"; + Name = AL["Superior Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 23312, price = "24000 #alliance#" }; --Lieutenant Commander's Leather Helm [2] = { itemID = 23313, price = "14000 #alliance#" }; --Lieutenant Commander's Leather Shoulders [3] = { itemID = 23298, price = "24000 #alliance#" }; --Knight-Captain's Leather Chestpiece @@ -6392,7 +6471,7 @@ AtlasLoot_Data["PVPRogue"] = { [6] = { itemID = 23285, price = "14000 #alliance#" }; --Knight-Lieutenant's Leather Walkers }; { - Name = AL["Epic Set"] .. " (Alliance)"; + Name = AL["Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 16455, price = "68200 #alliance#" }; --Field Marshal's Leather Mask [2] = { itemID = 16457, price = "52200 #alliance#" }; --Field Marshal's Leather Epaulets [3] = { itemID = 16453, price = "68200 #alliance#" }; --Field Marshal's Leather Chestpiece @@ -6401,7 +6480,7 @@ AtlasLoot_Data["PVPRogue"] = { [6] = { itemID = 16446, price = "52200 #alliance#" }; --Marshal's Leather Footguards }; { - Name = AL["Superior Epic Set"] .. " (Alliance)"; + Name = AL["Superior Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 6116455, price = "2370 #arena# #alliance#" }; --Grand Marshal's Leather Mask [2] = { itemID = 6116457, price = "1930 #arena# #alliance#" }; --Grand Marshal's Leather Epaulets [3] = { itemID = 6116453, price = "2370 #arena# #alliance#" }; --Grand Marshal's Leather Chestpiece @@ -6410,7 +6489,7 @@ AtlasLoot_Data["PVPRogue"] = { [6] = { itemID = 6116446, price = "1430 #arena# #alliance#" }; --Grand Marshal's Leather Footguards }; { - Name = AL["Rare Set"] .. " (Horde)"; + Name = AL["Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16506, price = "9435 #horde#" }; --Champion's Leather Helm [2] = { itemID = 16507, price = "6885 #horde#" }; --Champion's Leather Shoulders [3] = { itemID = 16505, price = "9435 #horde#" }; --Legionnaire's Leather Chestpiece @@ -6419,7 +6498,7 @@ AtlasLoot_Data["PVPRogue"] = { [6] = { itemID = 16498, price = "5000 #horde#" }; --Blood Guard's Leather Walkers }; { - Name = AL["Superior Rare Set"] .. " (Horde)"; + Name = AL["Superior Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 23257, price = "24000 #horde#" }; --Champion's Leather Helm [2] = { itemID = 23258, price = "14000 #horde#" }; --Champion's Leather Shoulders [3] = { itemID = 22879, price = "24000 #horde#" }; --Legionnaire's Leather Chestpiece @@ -6428,7 +6507,7 @@ AtlasLoot_Data["PVPRogue"] = { [6] = { itemID = 22856, price = "14000 #horde#" }; --Blood Guard's Leather Walkers }; { - Name = AL["Epic Set"] .. " (Horde)"; + Name = AL["Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16561, price = "68200 #horde#" }; --Warlord's Leather Helm [2] = { itemID = 16562, price = "52200 #horde#" }; --Warlord's Leather Spaulders [3] = { itemID = 16563, price = "68200 #horde#" }; --Warlord's Leather Breastplate @@ -6437,7 +6516,7 @@ AtlasLoot_Data["PVPRogue"] = { [6] = { itemID = 16558, price = "52200 #horde#" }; --General's Leather Treads }; { - Name = AL["Superior Epic Set"] .. " (Horde)"; + Name = AL["Superior Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 6116561, price = "2370 #arena# #horde#" }; --High Warlord's Leather Helm [2] = { itemID = 6116562, price = "1930 #arena# #horde#" }; --High Warlord's Leather Spaulders [3] = { itemID = 6116563, price = "2370 #arena# #horde#" }; --High Warlord's Leather Breastplate @@ -6451,7 +6530,7 @@ AtlasLoot_Data["PVPShaman"] = { Module = "AtlasLoot_OriginalWoW"; Name = LOCALIZED_CLASS_NAMES_MALE["SHAMAN"]; { - Name = AL["Superior Rare Set"] .. " (Alliance)"; + Name = AL["Superior Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 29598, price = "24000 #alliance#" }; --Lieutenant Commander's Mail Headguard [2] = { itemID = 29599, price = "14000 #alliance#" }; --Lieutenant Commander's Mail Pauldrons [3] = { itemID = 29596, price = "24000 #alliance#" }; --Knight-Captain's Mail Hauberk @@ -6460,7 +6539,7 @@ AtlasLoot_Data["PVPShaman"] = { [6] = { itemID = 29594, price = "14000 #alliance#" }; --Knight-Lieutenant's Mail Greaves }; { - Name = AL["Epic Set"] .. " (Alliance)"; + Name = AL["Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 29610, price = "68200 #alliance#" }; --Field Marshal's Mail Helm [2] = { itemID = 29611, price = "52200 #alliance#" }; --Field Marshal's Mail Spaulders [3] = { itemID = 29609, price = "68200 #alliance#" }; --Field Marshal's Mail Armor @@ -6469,7 +6548,7 @@ AtlasLoot_Data["PVPShaman"] = { [6] = { itemID = 29606, price = "52200 #alliance#" }; --Marshal's Mail Boots }; { - Name = AL["Superior Epic Set"] .. " (Alliance)"; + Name = AL["Superior Epic Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 6129610, price = "2370 #arena# #alliance#" }; --Grand Marshal's Mail Helm [2] = { itemID = 6129611, price = "1930 #arena# #alliance#" }; --Grand Marshal's Mail Spaulders [3] = { itemID = 6129609, price = "2370 #arena# #alliance#" }; --Grand Marshal's Mail Armor @@ -6478,7 +6557,7 @@ AtlasLoot_Data["PVPShaman"] = { [6] = { itemID = 6129606, price = "1430 #arena# #alliance#" }; --Grand Marshal's Mail Boots }; { - Name = AL["Rare Set"] .. " (Horde)"; + Name = AL["Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16521, price = "9435 #horde#" }; --Champion's Mail Headguard [2] = { itemID = 16524, price = "6885 #horde#" }; --Champion's Mail Pauldrons [3] = { itemID = 16522, price = "9435 #horde#" }; --Legionnaire's Mail Hauberk @@ -6487,7 +6566,7 @@ AtlasLoot_Data["PVPShaman"] = { [6] = { itemID = 16518, price = "5000 #horde#" }; --Blood Guard's Mail Greaves }; { - Name = AL["Superior Rare Set"] .. " (Horde)"; + Name = AL["Superior Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 23259, price = "24000 #horde#" }; --Champion's Mail Headguard [2] = { itemID = 23260, price = "14000 #horde#" }; --Champion's Mail Pauldrons [3] = { itemID = 22876, price = "24000 #horde#" }; --Legionnaire's Mail Hauberk @@ -6496,7 +6575,7 @@ AtlasLoot_Data["PVPShaman"] = { [6] = { itemID = 22857, price = "14000 #horde#" }; --Blood Guard's Mail Greaves }; { - Name = AL["Epic Set"] .. " (Horde)"; + Name = AL["Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16578, price = "68200 #horde#" }; --Warlord's Mail Helm [2] = { itemID = 16580, price = "52200 #horde#" }; --Warlord's Mail Spaulders [3] = { itemID = 16577, price = "68200 #horde#" }; --Warlord's Mail Armor @@ -6505,7 +6584,7 @@ AtlasLoot_Data["PVPShaman"] = { [6] = { itemID = 16573, price = "52200 #horde#" }; --General's Mail Boots }; { - Name = AL["Superior Epic Set"] .. " (Horde)"; + Name = AL["Superior Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 6116578, price = "2370 #arena# #horde#" }; --High Warlord's Mail Helm [2] = { itemID = 6116580, price = "1930 #arena# #horde#" }; --High Warlord's Mail Spaulders [3] = { itemID = 6116577, price = "2370 #arena# #horde#" }; --High Warlord's Mail Armor @@ -6519,7 +6598,7 @@ AtlasLoot_Data["PVPWarlock"] = { Module = "AtlasLoot_OriginalWoW"; Name = LOCALIZED_CLASS_NAMES_MALE["WARLOCK"]; { - Name = AL["Rare Set"] .. " (Alliance)"; + Name = AL["Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 17566, price = "9435 #alliance#" }; --Lieutenant Commander's Dreadweave Cowl [2] = { itemID = 17569, price = "6885 #alliance#" }; --Lieutenant Commander's Dreadweave Spaulders [3] = { itemID = 17568, price = "9435 #alliance#" }; --Knight-Captain's Dreadweave Tunic @@ -6528,7 +6607,7 @@ AtlasLoot_Data["PVPWarlock"] = { [6] = { itemID = 17562, price = "5000 #alliance#" }; --Knight-Lieutenant's Dreadweave Walkers }; { - Name = AL["Superior Rare Set"] .. " (Alliance)"; + Name = AL["Superior Rare Set"] .. WHITE..WHITE.." (Alliance)"; [1] = { itemID = 23310, price = "24000 #alliance#" }; --Lieutenant Commander's Dreadweave Cowl [2] = { itemID = 23311, price = "14000 #alliance#" }; --Lieutenant Commander's Dreadweave Spaulders [3] = { itemID = 23297, price = "24000 #alliance#" }; --Knight-Captain's Dreadweave Tunic @@ -6537,7 +6616,7 @@ AtlasLoot_Data["PVPWarlock"] = { [6] = { itemID = 23283, price = "14000 #alliance#" }; --Knight-Lieutenant's Dreadweave Walkers }; { - Name = AL["Epic Set"] .. " (Alliance)"; + Name = AL["Epic Set"] .. WHITE.." (Alliance)"; [1] = { itemID = 6117578, price = "2370 #arena# #alliance#" }; --Grand Marshal's Coronal [2] = { itemID = 6117580, price = "1930 #arena# #alliance#" }; --Grand Marshal's Dreadweave Shoulders [3] = { itemID = 6117581, price = "2370 #arena# #alliance#" }; --Grand Marshal's Dreadweave Robe @@ -6546,7 +6625,7 @@ AtlasLoot_Data["PVPWarlock"] = { [6] = { itemID = 6117583, price = "1430 #arena# #alliance#" }; --Grand Marshal's Dreadweave Boots }; { - Name = AL["Superior Epic Set"] .. " (Alliance)"; + Name = AL["Superior Epic Set"] .. WHITE.." (Alliance)"; [1] = { itemID = 17578, price = "68200 #alliance#" }; --Field Marshal's Coronal [2] = { itemID = 17580, price = "52200 #alliance#" }; --Field Marshal's Dreadweave Shoulders [3] = { itemID = 17581, price = "68200 #alliance#" }; --Field Marshal's Dreadweave Robe @@ -6555,7 +6634,7 @@ AtlasLoot_Data["PVPWarlock"] = { [6] = { itemID = 17583, price = "52200 #alliance#" }; --Marshal's Dreadweave Boots }; { - Name = AL["Rare Set"] .. " (Horde)"; + Name = AL["Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 17570, price = "9435 #horde#" }; --Champion's Dreadweave Cowl [2] = { itemID = 17573, price = "6885 #horde#" }; --Champion's Dreadweave Spaulders [3] = { itemID = 17572, price = "9435 #horde#" }; --Legionnaire's Dreadweave Tunic @@ -6564,7 +6643,7 @@ AtlasLoot_Data["PVPWarlock"] = { [6] = { itemID = 17576, price = "5000 #horde#" }; --Blood Guard's Dreadweave Walkers }; { - Name = AL["Superior Rare Set"] .. " (Horde)"; + Name = AL["Superior Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 23255, price = "24000 #horde#" }; --Champion's Dreadweave Cowl [2] = { itemID = 23256, price = "14000 #horde#" }; --Champion's Dreadweave Spaulders [3] = { itemID = 22884, price = "24000 #horde#" }; --Legionnaire's Dreadweave Tunic @@ -6573,7 +6652,7 @@ AtlasLoot_Data["PVPWarlock"] = { [6] = { itemID = 22855, price = "14000 #horde#" }; --Blood Guard's Dreadweave Walkers }; { - Name = AL["Epic Set"] .. " (Horde)"; + Name = AL["Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 17591, price = "68200 #horde#" }; --Warlord's Dreadweave Hood [2] = { itemID = 17590, price = "52200 #horde#" }; --Warlord's Dreadweave Mantle [3] = { itemID = 17592, price = "68200 #horde#" }; --Warlord's Dreadweave Robe @@ -6582,7 +6661,7 @@ AtlasLoot_Data["PVPWarlock"] = { [6] = { itemID = 17586, price = "52200 #horde#" }; --General's Dreadweave Boots }; { - Name = AL["Superior Epic Set"] .. " (Horde)"; + Name = AL["Superior Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 6117591, price = "2370 #arena# #horde#" }; --High Warlord's Dreadweave Hood [2] = { itemID = 6117590, price = "1930 #arena# #horde#" }; --High Warlord's Dreadweave Mantle [3] = { itemID = 6117592, price = "2370 #arena# #horde#" }; --High Warlord's Dreadweave Robe @@ -6596,7 +6675,7 @@ AtlasLoot_Data["PVPWarrior"] = { Module = "AtlasLoot_OriginalWoW"; Name = LOCALIZED_CLASS_NAMES_MALE["WARRIOR"]; { - Name = AL["Rare Set"] .. " (Alliance)"; + Name = AL["Rare Set"] .. WHITE.." (Alliance)"; [1] = { itemID = 16429, price = "9435 #alliance#" }; --Lieutenant Commander's Plate Helm [2] = { itemID = 16432, price = "6885 #alliance#" }; --Lieutenant Commander's Plate Shoulders [3] = { itemID = 16430, price = "9435 #alliance#" }; --Knight-Captain's Plate Hauberk @@ -6605,7 +6684,7 @@ AtlasLoot_Data["PVPWarrior"] = { [6] = { itemID = 16405, price = "5000 #alliance#" }; --Knight-Lieutenant's Plate Greaves }; { - Name = AL["Superior Rare Set"] .. " (Alliance)"; + Name = AL["Superior Rare Set"] .. WHITE.." (Alliance)"; [1] = { itemID = 23314, price = "24000 #alliance#" }; --Lieutenant Commander's Plate Helm [2] = { itemID = 23315, price = "14000 #alliance#" }; --Lieutenant Commander's Plate Shoulders [3] = { itemID = 23300, price = "24000 #alliance#" }; --Knight-Captain's Plate Hauberk @@ -6614,7 +6693,7 @@ AtlasLoot_Data["PVPWarrior"] = { [6] = { itemID = 23287, price = "14000 #alliance#" }; --Knight-Lieutenant's Plate Greaves }; { - Name = AL["Epic Set"] .. " (Alliance)"; + Name = AL["Epic Set"] .. WHITE.." (Alliance)"; [1] = { itemID = 16478, price = "68200 #alliance#" }; --Field Marshal's Plate Helm [2] = { itemID = 16480, price = "52200 #alliance#" }; --Field Marshal's Plate Shoulderguards [3] = { itemID = 16477, price = "68200 #alliance#" }; --Field Marshal's Plate Armor @@ -6623,7 +6702,7 @@ AtlasLoot_Data["PVPWarrior"] = { [6] = { itemID = 16483, price = "52200 #alliance#" }; --Marshal's Plate Boots }; { - Name = AL["Superior Epic Set"] .. " (Alliance)"; + Name = AL["Superior Epic Set"] .. WHITE.." (Alliance)"; [1] = { itemID = 6116478, price = "2370 #arena# #alliance#" }; --Grand Marshal's Plate Helm [2] = { itemID = 6116480, price = "1930 #arena# #alliance#" }; --Grand Marshal's Plate Shoulderguards [3] = { itemID = 6116477, price = "2370 #arena# #alliance#" }; --Grand Marshal's Plate Armor @@ -6632,7 +6711,7 @@ AtlasLoot_Data["PVPWarrior"] = { [6] = { itemID = 6116483, price = "1430 #arena# #alliance#" }; --Grand Marshal's Plate Boots }; { - Name = AL["Rare Set"] .. " (Horde)"; + Name = AL["Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16514, price = "9435 #horde#" }; --Champion's Plate Helm [2] = { itemID = 16516, price = "6885 #horde#" }; --Champion's Plate Shoulders [3] = { itemID = 16513, price = "9435 #horde#" }; --Legionnaire's Plate Hauberk @@ -6641,7 +6720,7 @@ AtlasLoot_Data["PVPWarrior"] = { [6] = { itemID = 16509, price = "5000 #horde#" }; --Blood Guard's Plate Greaves }; { - Name = AL["Superior Rare Set"] .. " (Horde)"; + Name = AL["Superior Rare Set"] .. WHITE.." (Horde)"; [1] = { itemID = 23244, price = "24000 #horde#" }; --Champion's Plate Helm [2] = { itemID = 23243, price = "14000 #horde#" }; --Champion's Plate Shoulders [3] = { itemID = 22872, price = "24000 #horde#" }; --Legionnaire's Plate Hauberk @@ -6650,7 +6729,7 @@ AtlasLoot_Data["PVPWarrior"] = { [6] = { itemID = 22858, price = "14000 #horde#" }; --Blood Guard's Plate Greaves }; { - Name = AL["Epic Set"] .. " (Horde)"; + Name = AL["Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 16542, price = "68200 #horde#" }; --Warlord's Plate Headpiece [2] = { itemID = 16544, price = "52200 #horde#" }; --Warlord's Plate Shoulders [3] = { itemID = 16541, price = "68200 #horde#" }; --Warlord's Plate Armor @@ -6659,7 +6738,7 @@ AtlasLoot_Data["PVPWarrior"] = { [6] = { itemID = 16545, price = "52200 #horde#" }; --General's Plate Boots }; { - Name = AL["Superior Epic Set"] .. " (Horde)"; + Name = AL["Superior Epic Set"] .. WHITE.." (Horde)"; [1] = { itemID = 6116542, price = "2370 #arena# #horde#" }; --High Warlord's Plate Headpiece [2] = { itemID = 6116544, price = "1930 #arena# #horde#" }; --High Warlord's Plate Shoulders [3] = { itemID = 6116541, price = "2370 #arena# #horde#" }; --High Warlord's Plate Armor