From e5025eb36cb84d697ab92ff7b0581912b1fc52e4 Mon Sep 17 00:00:00 2001 From: Anch Date: Thu, 16 Jun 2022 01:21:24 +1200 Subject: [PATCH] updated the system that handles expansion selection and updated alot of the crafting tables that wernt sorted by expansion --- AtlasLoot/Core/AtlasDifficulty.lua | 1 - AtlasLoot/Core/AtlasLoot.lua | 63 +- AtlasLoot/Core/TextParsing.lua | 16 +- .../DefaultFrame/AtlaslootDefaultFrame.lua | 78 +- AtlasLoot/DefaultFrame/DewDropDown.lua | 32 +- AtlasLoot/Locales/constants.en.lua | 21 +- AtlasLoot/Menus/CraftingMenus.lua | 121 +- AtlasLoot/Menus/PvPMenus.lua | 3 + AtlasLoot/Menus/RepMenus.lua | 3 + AtlasLoot/Menus/SetMenus.lua | 8 +- AtlasLoot/TableRegister/loottables.en.lua | 234 +- .../burningcrusadeRaids.lua | 1703 ----- AtlasLoot_Crafting/crafting.lua | 2237 +++--- AtlasLoot_OriginalWoW/originalwow.lua | 18 +- AtlasLoot_OriginalWoW/originalwow.lua.txt | 6604 ----------------- 15 files changed, 1587 insertions(+), 9555 deletions(-) delete mode 100644 AtlasLoot_BurningCrusade/burningcrusadeRaids.lua delete mode 100644 AtlasLoot_OriginalWoW/originalwow.lua.txt diff --git a/AtlasLoot/Core/AtlasDifficulty.lua b/AtlasLoot/Core/AtlasDifficulty.lua index dc2f96d..da77926 100644 --- a/AtlasLoot/Core/AtlasDifficulty.lua +++ b/AtlasLoot/Core/AtlasDifficulty.lua @@ -211,7 +211,6 @@ AtlasLoot_Difficulty = { } }, - ["Search"] = {"Bloodforged", "Normal", "Heroic", "Mythic", "Mythic 1", "Mythic 2","Mythic 3","Mythic 4","Mythic 5", "Mythic 6","Mythic 7", "Mythic 8","Mythic 9", "Mythic 10", "Mythic 11", "Mythic 12","Mythic 13","Mythic 14","Mythic 15", "Mythic 16","Mythic 17","Mythic 18", "Mythic 19", "Mythic 20", diff --git a/AtlasLoot/Core/AtlasLoot.lua b/AtlasLoot/Core/AtlasLoot.lua index 17a1138..d9ccdf3 100644 --- a/AtlasLoot/Core/AtlasLoot.lua +++ b/AtlasLoot/Core/AtlasLoot.lua @@ -85,8 +85,9 @@ Hooked_Atlas_Refresh = nil; Hooked_Atlas_OnShow = nil; Hooked_AtlasScrollBar_Update = nil; -isTablereference = false -notPattern = false +isTablereference = false; +notPattern = false; +Updated_dataID = ""; --Search panel open and close save variables --dataID, dataSource, boss, pFrame @@ -493,28 +494,25 @@ function AtlasLoot_OnLoad() AtlasLoot_SlashCommand(msg); end - --Sets Expansion for seasonal/leagues + --Sets the default loot tables for the current expansion enabled on the server. local function getExpac() - if GetAccountExpansionLevel() == 0 then - AtlasLoot_Expac = "CLASSIC"; - AtlasLoot_Expac2 = "TBC"; - AtlasLoot_Expac3 = "WRATH"; - elseif GetAccountExpansionLevel() == 1 then - AtlasLoot_Expac = "TBC"; - AtlasLoot_Expac2 = "CLASSIC"; - AtlasLoot_Expac3 = "WRATH"; - elseif GetAccountExpansionLevel() == 2 then - AtlasLoot_Expac = "WRATH"; - AtlasLoot_Expac2 = "CLASSIC"; - AtlasLoot_Expac3 = "TBC"; - else - AtlasLoot_Expac = "CLASSIC"; - AtlasLoot_Expac2 = "TBC"; - AtlasLoot_Expac3 = "WRATH"; - end + local xpaclist = { [0] = {"CLASSIC"} ,[1] = {"TBC"} ,[2] = {"WRATH"} }; + AtlasLoot_Expac = xpaclist[GetAccountExpansionLevel()][1]; end getExpac(); + AtlasLoot_Expac_CurrentTable = AtlasLoot_Expac; end + +function AtlasLoot_CleandataID(newID, listnum) + local cleanlist = { [1] = {"CLASSIC", "TBC", "WRATH", "1", "2", "3", "4", "5", "6", "7", "8"}, + [2] = {"1", "2", "3", "4", "5", "6", "7", "8"} + }; + for i = 1, #cleanlist[listnum] do + newID = gsub(newID, cleanlist[listnum][i], ""); + end + return newID; +end + --[[ AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame): dataID - Name of the loot table @@ -653,6 +651,25 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame) else DewDrop2Enable = false; end + --Turns on the submenu to change expansion + if dataID == "SearchResult" or dataID == "WishList" then + elseif AtlasLoot_Data[dataID].Submenu == "Expansion" then + Updated_dataID = AtlasLoot_CleandataID(dataID, 1); + AtlasLoot_Expac_CurrentTable = gsub(dataID, Updated_dataID, "") + AtlasLoot_Expac_CurrentTable = AtlasLoot_CleandataID(AtlasLoot_Expac_CurrentTable, 2); + AtlasLootDefaultFrame_SubMenu:Enable(); + AtlasLoot_DewdropSubMenu:Unregister(AtlasLootDefaultFrame_SubMenu); + AtlasLoot_DewdropSubMenuRegister(AtlasLoot_DewDropDown_SubTables["Expansion"]); + AtlasLootDefaultFrame_SelectedTable:SetText(AtlasLoot_TableNames[AtlasLoot_Expac_CurrentTable][1]); + SelectedTableTextSet = true; + elseif AtlasLoot_Data[dataID].Submenu == "Disable" then + AtlasLoot_DewdropSubMenu:Unregister(AtlasLootDefaultFrame_SubMenu); + SelectedTableTextSet = false; + AtlasLootDefaultFrame_SubMenu:Disable(); + AtlasLootDefaultFrame_SelectedTable:SetText(""); + AtlasLoot_Expac_CurrentTable = ""; + end + --Hide UI objects so that only needed ones are shown for i = 1, 30, 1 do @@ -700,6 +717,8 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame) if isItem then if ItemindexID == "Bloodforged" then IDfound = "60"..dataSource[dataID][i][2]; + elseif ItemindexID == 2 then + IDfound = dataSource[dataID][i][2]; else --Sets ItemindexID to normal(2) if it is nil for min/max difficulties. if not tonumber(ItemindexID) then ItemindexID = AtlasLoot_Difficulty.Normal end; @@ -883,7 +902,9 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame) lastType = dataSource[dataID].Type end - if SelectedTableTextSet then + if AtlasLoot_Expac_CurrentTable ~= "" then + AtlasLootDefaultFrame_SelectedTable:SetText(AtlasLoot_TableNames[AtlasLoot_Expac_CurrentTable][1]); + elseif SelectedTableTextSet then AtlasLootDefaultFrame_SelectedTable:SetText(AtlasLoot_TableNames[dataID][1]); else AtlasLootDefaultFrame_SelectedTable:SetText(""); diff --git a/AtlasLoot/Core/TextParsing.lua b/AtlasLoot/Core/TextParsing.lua index f1864f0..dddafe4 100644 --- a/AtlasLoot/Core/TextParsing.lua +++ b/AtlasLoot/Core/TextParsing.lua @@ -700,14 +700,14 @@ function AtlasLoot_FixText(text) text = gsub(text, "#aq40s9#", AL["Conqueror's Battlegear"]); -- Teir Tokens - text = gsub(text, "#tt1#", AL["Tier 1 Set Token"]); - text = gsub(text, "#tt2#", AL["Tier 2 Set Token"]); - text = gsub(text, "#tt2.5#", AL["Tier 2.5 Set Token"]); - text = gsub(text, "#tt3#", AL["Tier 3 Set Token"]); - text = gsub(text, "#tt4#", AL["Tier 4 Set Token"]); - text = gsub(text, "#tt5#", AL["Tier 5 Set Token"]); - text = gsub(text, "#tt6#", AL["Tier 6 Set Token"]); - text = gsub(text, "#tt7#", AL["Tier 7 Set Token"]); + text = gsub(text, "#tt1#", AL["Tier 1 Set Token (Click)"]); + text = gsub(text, "#tt2#", AL["Tier 2 Set Token (Click)"]); + text = gsub(text, "#tt2.5#", AL["Tier 2.5 Set Token (Click)"]); + text = gsub(text, "#tt3#", AL["Tier 3 Set Token (Click)"]); + text = gsub(text, "#tt4#", AL["Tier 4 Set Token (Click)"]); + text = gsub(text, "#tt5#", AL["Tier 5 Set Token (Click)"]); + text = gsub(text, "#tt6#", AL["Tier 6 Set Token (Click)"]); + text = gsub(text, "#tt7#", AL["Tier 7 Set Token (Click)"]); -- Dungeon 1 Sets text = gsub(text, "#t0s1#", AL["Wildheart Raiment"]); diff --git a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua index 7dd9815..8bec3a5 100644 --- a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua +++ b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua @@ -26,8 +26,8 @@ AtlasLoot_Dewdrop = AceLibrary("Dewdrop-2.0"); AtlasLoot_DewdropSubMenu = AceLibrary("Dewdrop-2.0"); AtlasLoot_DewdropSubMenu2 = AceLibrary("Dewdrop-2.0"); AtlasLoot_DifficultyAtlas = AceLibrary("Dewdrop-2.0"); -indexID = 2 -ItemindexID = "" +indexID = 2; +ItemindexID = ""; AtlasLoot_Data["AtlasLootFallback"] = { EmptyInstance = {}; @@ -46,17 +46,29 @@ function AtlasLoot_DewDropClick(tablename, text, tabletype) pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" }; --If the button clicked was linked to a loot table AtlasLoot_Hold = false; - if tabletype == "Table" then - --Show the loot table - AtlasLoot_ShowBossLoot(tablename, tablename, pFrame); - --Save needed info for fuure re-display of the table - AtlasLoot_Lastboss = tablename; - AtlasLoot.db.profile.LastBoss = tablename; - --Purge the text label for the submenu and disable the submenu - AtlasLootDefaultFrame_SubMenu:Disable(); - AtlasLootDefaultFrame_SelectedTable:SetText(""); - AtlasLootDefaultFrame_SelectedTable:Show(); - SelectedTableTextSet = false; + if tabletype == "Table" then + --Show the loot table + AtlasLoot_ShowBossLoot(tablename, tablename, pFrame); + --Save needed info for fuure re-display of the table + AtlasLoot_Lastboss = tablename; + AtlasLoot.db.profile.LastBoss = tablename; + --Turns on the submenu to select expansion + if AtlasLoot_Data[tablename].Submenu == "Expansion" then + local updated_tablename = AtlasLoot_CleandataID(tablename, 1); + Updated_dataID = updated_tablename; + AtlasLootDefaultFrame_SubMenu:Enable(); + AtlasLoot_DewdropSubMenu:Unregister(AtlasLootDefaultFrame_SubMenu); + AtlasLoot_DewdropSubMenuRegister(AtlasLoot_DewDropDown_SubTables["Expansion"]); + AtlasLootDefaultFrame_SelectedTable:SetText(AtlasLoot_TableNames[AtlasLoot_Expac][1]); + else + --Purge the text label for the submenu and disable the submenu + AtlasLootDefaultFrame_SubMenu:Disable(); + AtlasLootDefaultFrame_SelectedTable:SetText(""); + AtlasLootDefaultFrame_SelectedTable:Show(); + SelectedTableTextSet = false; + Updated_dataID = ""; + AtlasLoot_Expac_CurrentTable = ""; + end else --Enable the submenu button AtlasLootDefaultFrame_SubMenu:Enable(); @@ -76,6 +88,8 @@ function AtlasLoot_DewDropClick(tablename, text, tabletype) end AtlasLootDefaultFrame_SelectedTable:Show(); SelectedTableTextSet = true; + Updated_dataID = "" + AtlasLoot_Expac_CurrentTable = ""; end --Show the category that has been selected AtlasLootDefaultFrame_SelectedCategory:SetText(text); @@ -90,6 +104,12 @@ text - Heading for the loot table Called when a button in AtlasLoot_DewdropSubMenu is clicked ]] function AtlasLoot_DewDropSubMenuClick(tablename, text) + --Changes the lable of the submenu to show Expansion not the main table name + if Updated_dataID ~= "" then + if AtlasLoot_Data[Updated_dataID..tablename].Submenu == "Expansion" then + tablename = Updated_dataID..tablename; + end + end --Definition of where I want the loot table to be shown pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" }; --Show the select loot table @@ -246,38 +266,6 @@ function AtlasLootDefaultFrame_GetRaidDifficulty(raidtablename, itemID, itemColo end DropTablename = raidtablename; end ---[[ -function AtlasLoot_DewdropSubMenu2Register(loottable) - AtlasLoot_DewdropSubMenu2:Register(AtlasLootDefaultFrame_SubMenu2, - 'point', function(parent) - return "TOP", "BOTTOM" - end, - 'children', function(level, value) - if level == 1 then - for k,v in pairs(loottable) do - AtlasLoot_DewdropSubMenu2:AddLine( - 'text', v[1], - 'func', AtlasLoot_DewDropSubMenu2Click, - 'arg1', v[1], - 'arg2', v[2], - 'arg3', v[3], - 'notCheckable', true - ) - end - AtlasLoot_DewdropSubMenu2:AddLine( - 'text', AL["Close Menu"], - 'textR', 0, - 'textG', 1, - 'textB', 1, - 'func', function() AtlasLoot_DewdropSubMenu2:Close() end, - 'notCheckable', true - ) - end - end, - 'dontHook', true - ) -end -]] function AtlasLoot_DewdropSubMenu2Register(loottable) AtlasLoot_DewdropSubMenu2:Register(AtlasLootDefaultFrame_SubMenu2, diff --git a/AtlasLoot/DefaultFrame/DewDropDown.lua b/AtlasLoot/DefaultFrame/DewDropDown.lua index b750a71..99ce3e5 100644 --- a/AtlasLoot/DefaultFrame/DewDropDown.lua +++ b/AtlasLoot/DefaultFrame/DewDropDown.lua @@ -289,16 +289,16 @@ AtlasLoot_DewDropDown = { { AL["Crafting"], "CRAFTINGMENU", "Table" }, }, [5] = { - { AL["Sets/Collections"], "SETMENU"..AtlasLoot_Expac, "Submenu" }, + { AL["Sets/Collections"], "SETMENU"..AtlasLoot_Expac, "Table" }, }, [6] = { - { AL["PvP Rewards"], "PVPMENU"..AtlasLoot_Expac, "Submenu" }, + { AL["PvP Rewards"], "PVPMENU"..AtlasLoot_Expac, "Table" }, }, [7] = { - { AL["World Bosses"], "WorldBosses"..AtlasLoot_Expac, "Submenu" }, + { AL["World Bosses"], "WorldBosses"..AtlasLoot_Expac, "Table" }, }, [8] = { - { AL["Reputation Factions"], "REPMENU"..AtlasLoot_Expac, "Submenu" }, + { AL["Reputation Factions"], "REPMENU"..AtlasLoot_Expac, "Table" }, }, [9] = { { AL["World Events"], "WORLDEVENTMENU", "Table" }, @@ -306,20 +306,10 @@ AtlasLoot_DewDropDown = { }; AtlasLoot_DewDropDown_SubTables = { - ["REPMENU"..AtlasLoot_Expac] = { - { "", "REPMENU"..AtlasLoot_Expac }, - { "", "REPMENU"..AtlasLoot_Expac2 }, - { "", "REPMENU"..AtlasLoot_Expac3 }, - }, - ["PVPMENU"..AtlasLoot_Expac] = { - { "", "PVPMENU"..AtlasLoot_Expac }, - { "", "PVPMENU"..AtlasLoot_Expac2 }, - { "", "PVPMENU"..AtlasLoot_Expac3 }, - }, - ["SETMENU"..AtlasLoot_Expac] = { - { "", "SETMENU"..AtlasLoot_Expac }, - { "", "SETMENU"..AtlasLoot_Expac2 }, - { "", "SETMENU"..AtlasLoot_Expac3 }, + ["Expansion"] = { + { "Classic", "CLASSIC" }, + { "Burning Crusade", "TBC" }, + { "Wrath of the Lich King", "WRATH" }, }, ["BlackrockDepths"] = { { "", "BRDPyron" }, @@ -930,9 +920,9 @@ AtlasLoot_DewDropDown_SubTables = { { "", "TheNexusKolurgStoutbeardHEROIC"}, { "", "TheNexusKeristrasza" }, }, - ["WorldBosses"..AtlasLoot_Expac] = { - { "", "WorldBosses"..AtlasLoot_Expac }, - { "", "WorldBosses"..AtlasLoot_Expac2 }, + ["WorldBosses"] = { + { "", "WorldBossesCLASSIC" }, + { "", "WorldBossesTBC" }, }, ["ForgeofSouls"] = { { "", "FoSBronjahm" }, diff --git a/AtlasLoot/Locales/constants.en.lua b/AtlasLoot/Locales/constants.en.lua index 10f4306..22c987f 100644 --- a/AtlasLoot/Locales/constants.en.lua +++ b/AtlasLoot/Locales/constants.en.lua @@ -46,6 +46,9 @@ if AL then AL["Factions - Classic"] = true; AL["Factions - Burning Crusade"] = true; AL["Factions - Wrath of the Lich King"] = true; + AL["Classic"] = true; + AL["Burning Crusade"] = true; + AL["Wrath of the Lich King"] = true; AL["Choose Table ..."] = true; AL["Unknown"] = true; AL["Add to QuickLooks:"] = true; @@ -127,15 +130,15 @@ if AL then AL["Mythic Tier 8"] = true; AL["Mythic Tier 9"] = true; AL["Mythic Tier 10"] = true; - AL["Tier 1 Set Token"] = true; - AL["Tier 2 Set Token"] = true; - AL["Tier 2.5 Set Token"] = true; - AL["Tier 3 Set Token"] = true; - AL["Tier 4 Set Token"] = true; - AL["Tier 5 Set Token"] = true; - AL["Tier 6 Set Token"] = true; - AL["Tier 7 Set Token"] = true; - AL["Tier 8 Set Token"] = true; + AL["Tier 1 Set Token (Click)"] = true; + AL["Tier 2 Set Token (Click)"] = true; + AL["Tier 2.5 Set Token (Click)"] = true; + AL["Tier 3 Set Token (Click)"] = true; + AL["Tier 4 Set Token (Click)"] = true; + AL["Tier 5 Set Token (Click)"] = true; + AL["Tier 6 Set Token (Click)"] = true; + AL["Tier 7 Set Token (Click)"] = true; + AL["Tier 8 Set Token (Click)"] = true; -- Slash commands AL["reset"] = true; diff --git a/AtlasLoot/Menus/CraftingMenus.lua b/AtlasLoot/Menus/CraftingMenus.lua index c0b9c76..20541c3 100644 --- a/AtlasLoot/Menus/CraftingMenus.lua +++ b/AtlasLoot/Menus/CraftingMenus.lua @@ -20,51 +20,51 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 21, "FISHINGDAILYMENU", "inv_fishingpole_03", AL["Fishing Daily"], ""}; { 22, "JEWELCRAFTINGDAILYMENU", "INV_Misc_Gem_01", AL["Jewelcrafting Daily"], ""}; { 27, "CookingHighRisk", "INV_Misc_Food_15", "=ds=Cooking High Risk", ""}; + Submenu = "Disable"; }; AtlasLoot_Data["ALCHEMYMENU"] = { - { 2, "AlchemyBattleElixir1", "INV_Potion_23", "=ds="..AL["Battle Elixirs"], "" }; - { 3, "AlchemyPotion1", "INV_Potion_23", "=ds="..AL["Potions"], "" }; - { 4, "AlchemyTransmute1", "INV_Potion_23", "=ds="..AL["Transmutes"], "" }; - { 13, "AlchemyHighRisk", "INV_Potion_23", "=ds=High Risk", "" }; - { 17, "AlchemyGuardianElixir1", "INV_Potion_23", "=ds="..AL["Guardian Elixirs"], "" }; - { 18, "AlchemyFlask1", "INV_Potion_23", "=ds="..AL["Flasks"], "" }; - { 19, "AlchemyMisc1", "INV_Potion_23", "=ds="..AL["Miscellaneous"], "" }; + { 2, "AlchemyBattleElixir"..AtlasLoot_Expac, "INV_Potion_23", "=ds="..AL["Battle Elixirs"], "" }; + { 3, "AlchemyPotion"..AtlasLoot_Expac, "INV_Potion_23", "=ds="..AL["Potions"], "" }; + { 4, "AlchemyTransmute"..AtlasLoot_Expac, "INV_Potion_23", "=ds="..AL["Transmutes"], "" }; + { 6, "AlchemyHighRisk", "INV_Potion_23", "=ds=High Risk", "" }; + { 17, "AlchemyGuardianElixir"..AtlasLoot_Expac, "INV_Potion_23", "=ds="..AL["Guardian Elixirs"], "" }; + { 18, "AlchemyFlask"..AtlasLoot_Expac, "INV_Potion_23", "=ds="..AL["Flasks"], "" }; + { 19, "AlchemyMisc"..AtlasLoot_Expac, "INV_Potion_23", "=ds="..AL["Miscellaneous"], "" }; Back = "CRAFTINGMENU"; + Submenu = "Disable"; }; AtlasLoot_Data["SMITHINGMENU"] = { - { 2, "SmithingArmorOld1", "Trade_BlackSmithing", "=ds="..BabbleInventory["Armor"], "=q5="..AL["Original WoW"] }; - { 3, "SmithingArmorBC1", "Trade_BlackSmithing", "=ds="..BabbleInventory["Armor"], "=q5="..AL["Burning Crusade"] }; - { 4, "SmithingArmorWrath1", "Trade_BlackSmithing", "=ds="..BabbleInventory["Armor"], "=q5="..AL["Wrath of the Lich King"] }; - { 5, "SmithingEnhancement1", "Trade_BlackSmithing", "=ds="..AL["Item Enhancements"], "" }; - { 7, "Armorsmith1", "Trade_BlackSmithing", "=ds="..GetSpellInfo(9788), "" }; - { 8, "Axesmith1", "Trade_BlackSmithing", "=ds="..GetSpellInfo(17041), "" }; - { 9, "Swordsmith1", "Trade_BlackSmithing", "=ds="..GetSpellInfo(17039), "" }; - { 13, "SmithingHighRisk", "Trade_BlackSmithing", "=ds=High Risk", "" }; - { 17, "SmithingWeaponOld1", "Trade_BlackSmithing", "=ds="..BabbleInventory["Weapon"], "=q5="..AL["Original WoW"] }; - { 18, "SmithingWeaponBC1", "Trade_BlackSmithing", "=ds="..BabbleInventory["Weapon"], "=q5="..AL["Burning Crusade"] }; - { 19, "SmithingWeaponWrath1", "Trade_BlackSmithing", "=ds="..BabbleInventory["Weapon"], "=q5="..AL["Wrath of the Lich King"] }; - { 20, "SmithingMisc1", "Trade_BlackSmithing", "=ds="..AL["Miscellaneous"], "" }; - { 22, "Weaponsmith1", "Trade_BlackSmithing", "=ds="..GetSpellInfo(9787), "" }; - { 23, "Hammersmith1", "Trade_BlackSmithing", "=ds="..GetSpellInfo(17040), "" }; + { 2, "SmithingArmor"..AtlasLoot_Expac, "Trade_BlackSmithing", "=ds="..BabbleInventory["Armor"], "" }; + { 4, "SmithingEnhancement1", "Trade_BlackSmithing", "=ds="..AL["Item Enhancements"], "" }; + { 6, "Armorsmith1", "Trade_BlackSmithing", "=ds="..GetSpellInfo(9788), "" }; + { 7, "Axesmith1", "Trade_BlackSmithing", "=ds="..GetSpellInfo(17041), "" }; + { 8, "Swordsmith1", "Trade_BlackSmithing", "=ds="..GetSpellInfo(17039), "" }; + { 10, "SmithingHighRisk", "Trade_BlackSmithing", "=ds=High Risk", "" }; + { 17, "SmithingWeapon"..AtlasLoot_Expac, "Trade_BlackSmithing", "=ds="..BabbleInventory["Weapon"], "" }; + { 19, "SmithingMisc1", "Trade_BlackSmithing", "=ds="..AL["Miscellaneous"], "" }; + { 21, "Weaponsmith1", "Trade_BlackSmithing", "=ds="..GetSpellInfo(9787), "" }; + { 22, "Hammersmith1", "Trade_BlackSmithing", "=ds="..GetSpellInfo(17040), "" }; Back = "CRAFTINGMENU"; + Submenu = "Disable"; }; AtlasLoot_Data["ENCHANTINGMENU"] = { - { 2, "EnchantingBoots1", "Trade_Engraving", "=ds="..AL["Enchant Boots"], "" }; - { 3, "EnchantingChest1", "Trade_Engraving", "=ds="..AL["Enchant Chest"], "" }; - { 4, "EnchantingGloves1", "Trade_Engraving", "=ds="..AL["Enchant Gloves"], "" }; - { 5, "EnchantingShield1", "Trade_Engraving", "=ds="..AL["Enchant Shield"], "" }; - { 6, "Enchanting2HWeapon1", "Trade_Engraving", "=ds="..AL["Enchant 2H Weapon"], "" }; - { 7, "EnchantingMisc1", "Trade_Engraving", "=ds="..AL["Miscellaneous"], "" }; - { 13, "EnchantingHighRisk", "Trade_Engraving", "=ds=High Risk", "" }; - { 17, "EnchantingBracer1", "Trade_Engraving", "=ds="..AL["Enchant Bracer"], "" }; - { 18, "EnchantingCloak1", "Trade_Engraving", "=ds="..AL["Enchant Cloak"], "" }; + { 2, "EnchantingBoots"..AtlasLoot_Expac, "Trade_Engraving", "=ds="..AL["Enchant Boots"], "" }; + { 3, "EnchantingChest"..AtlasLoot_Expac, "Trade_Engraving", "=ds="..AL["Enchant Chest"], "" }; + { 4, "EnchantingGloves"..AtlasLoot_Expac, "Trade_Engraving", "=ds="..AL["Enchant Gloves"], "" }; + { 5, "EnchantingShield"..AtlasLoot_Expac, "Trade_Engraving", "=ds="..AL["Enchant Shield"], "" }; + { 6, "EnchantingTwoHWeapon"..AtlasLoot_Expac, "Trade_Engraving", "=ds="..AL["Enchant 2H Weapon"], "" }; + { 7, "EnchantingMisc"..AtlasLoot_Expac, "Trade_Engraving", "=ds="..AL["Miscellaneous"], "" }; + { 9, "EnchantingHighRisk", "Trade_Engraving", "=ds=High Risk", "" }; + { 17, "EnchantingBracer"..AtlasLoot_Expac, "Trade_Engraving", "=ds="..AL["Enchant Bracer"], "" }; + { 18, "EnchantingCloak"..AtlasLoot_Expac, "Trade_Engraving", "=ds="..AL["Enchant Cloak"], "" }; { 19, "EnchantingRing1", "Trade_Engraving", "=ds="..AL["Enchant Ring"], "" }; { 20, "EnchantingStaff1", "Trade_Engraving", "=ds="..BabbleInventory["Staff"], "" }; - { 21, "EnchantingWeapon1", "Trade_Engraving", "=ds="..AL["Enchant Weapon"], "" }; + { 21, "EnchantingWeapon"..AtlasLoot_Expac, "Trade_Engraving", "=ds="..AL["Enchant Weapon"], "" }; Back = "CRAFTINGMENU"; + Submenu = "Disable"; }; AtlasLoot_Data["ENGINEERINGMENU"] = { @@ -73,12 +73,13 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 4, "EngineeringMisc1", "Trade_Engineering", "=ds="..AL["Miscellaneous"], "" }; { 5, "EngineeringWeapon1", "Trade_Engineering", "=ds="..BabbleInventory["Weapon"], "" }; { 7, "Gnomish1", "Trade_Engineering", "=ds="..GetSpellInfo(20220), "" }; - { 13, "EngineerHighRisk", "Trade_Engineering", "=ds=High Risk", "" }; + { 9, "EngineerHighRisk", "Trade_Engineering", "=ds=High Risk", "" }; { 17, "EngineeringArmor1", "Trade_Engineering", "=ds="..BabbleInventory["Armor"], "" }; { 18, "EngineeringItemEnhancements1", "Trade_Engineering", "=ds="..AL["Item Enhancements"], "" }; { 19, "EngineeringReagents1", "Trade_Engineering", "=ds="..AL["Reagents"], "" }; { 22, "Goblin1", "Trade_Engineering", "=ds="..GetSpellInfo(20221), "" }; Back = "CRAFTINGMENU"; + Submenu = "Disable"; }; AtlasLoot_Data["INSCRIPTIONMENU"] = { @@ -107,16 +108,17 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 28, "Inscription_WarlockMinor1", "Spell_Shadow_CurseOfTounges", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "=q5="..AL["Minor Glyph"] }; { 29, "Inscription_WarriorMinor1", "Ability_Warrior_BattleShout", "=ds="..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "=q5="..AL["Minor Glyph"] }; Back = "CRAFTINGMENU"; + Submenu = "Disable"; }; AtlasLoot_Data["JEWELCRAFTINGMENU"] = { - { 1, "JewelRed1", "INV_Misc_Gem_01", "=ds="..BabbleInventory["Red"].." "..BabbleInventory["Gem"], "" }; - { 2, "JewelBlue1", "INV_Misc_Gem_01", "=ds="..BabbleInventory["Blue"].." "..BabbleInventory["Gem"], "" }; - { 3, "JewelYellow1", "INV_Misc_Gem_01", "=ds="..BabbleInventory["Yellow"].." "..BabbleInventory["Gem"], "" }; - { 4, "JewelGreen1", "INV_Misc_Gem_01", "=ds="..BabbleInventory["Green"].." "..BabbleInventory["Gem"], "" }; - { 5, "JewelOrange1", "INV_Misc_Gem_01", "=ds="..BabbleInventory["Orange"].." "..BabbleInventory["Gem"], "" }; - { 6, "JewelPurple1", "INV_Misc_Gem_01", "=ds="..BabbleInventory["Purple"].." "..BabbleInventory["Gem"], "" }; - { 7, "JewelMeta1", "INV_Misc_Gem_01", "=ds="..BabbleInventory["Meta"].." "..BabbleInventory["Gem"], "" }; + { 1, "JewelRed"..AtlasLoot_Expac, "INV_Misc_Gem_01", "=ds="..BabbleInventory["Red"].." "..BabbleInventory["Gem"], "" }; + { 2, "JewelBlue"..AtlasLoot_Expac, "INV_Misc_Gem_01", "=ds="..BabbleInventory["Blue"].." "..BabbleInventory["Gem"], "" }; + { 3, "JewelYellow"..AtlasLoot_Expac, "INV_Misc_Gem_01", "=ds="..BabbleInventory["Yellow"].." "..BabbleInventory["Gem"], "" }; + { 4, "JewelGreen"..AtlasLoot_Expac, "INV_Misc_Gem_01", "=ds="..BabbleInventory["Green"].." "..BabbleInventory["Gem"], "" }; + { 5, "JewelOrange"..AtlasLoot_Expac, "INV_Misc_Gem_01", "=ds="..BabbleInventory["Orange"].." "..BabbleInventory["Gem"], "" }; + { 6, "JewelPurple"..AtlasLoot_Expac, "INV_Misc_Gem_01", "=ds="..BabbleInventory["Purple"].." "..BabbleInventory["Gem"], "" }; + { 7, "JewelMeta"..AtlasLoot_Expac, "INV_Misc_Gem_01", "=ds="..BabbleInventory["Meta"].." "..BabbleInventory["Gem"], "" }; { 8, "JewelPrismatic1", "INV_Misc_Gem_01", "=ds="..BabbleInventory["Prismatic"].." "..BabbleInventory["Gem"], "" }; { 9, "JewelDragonsEye1", "INV_Misc_Gem_01", "=ds="..AL["Dragon's Eye"], "" }; { 16, "JewelNeck1", "INV_Misc_Gem_01", "=ds="..BabbleInventory["Neck"], "" }; @@ -124,39 +126,36 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 18, "JewelRing1", "INV_Misc_Gem_01", "=ds="..BabbleInventory["Ring"], "" }; { 19, "JewelMisc1", "INV_Misc_Gem_01", "=ds="..AL["Miscellaneous"], "" }; Back = "CRAFTINGMENU"; + Submenu = "Disable"; }; AtlasLoot_Data["LEATHERWORKINGMENU"] = { - { 2, "LeatherLeatherArmorOld1", "INV_Misc_ArmorKit_17", "=ds="..AL["Leather Armor"], "=q5="..AL["Original WoW"] }; - { 3, "LeatherLeatherArmorBC1", "INV_Misc_ArmorKit_17", "=ds="..AL["Leather Armor"], "=q5="..AL["Burning Crusade"] }; - { 4, "LeatherLeatherArmorWrath1", "INV_Misc_ArmorKit_17", "=ds="..AL["Leather Armor"], "=q5="..AL["Wrath of the Lich King"] }; - { 6, "LeatherCloaks1", "INV_Misc_ArmorKit_17", "=ds="..AL["Cloaks"], "" }; - { 7, "LeatherQuiversPouches1", "INV_Misc_ArmorKit_17", "=ds="..AL["Quivers and Ammo Pouches"], "" }; - { 8, "LeatherLeather1", "INV_Misc_ArmorKit_17", "=ds="..BabbleInventory["Leather"], "" }; - { 10, "Dragonscale1", "INV_Misc_ArmorKit_17", "=ds="..GetSpellInfo(10656), "" }; - { 11, "Tribal1", "INV_Misc_ArmorKit_17", "=ds="..GetSpellInfo(10660), "" }; - { 13, "LeatherHighRisk", "INV_Misc_ArmorKit_17", "=ds=High Risk", "" }; - { 17, "LeatherMailArmorOld1", "INV_Misc_ArmorKit_17", "=ds="..AL["Mail Armor"], "=q5="..AL["Original WoW"] }; - { 18, "LeatherMailArmorBC1", "INV_Misc_ArmorKit_17", "=ds="..AL["Mail Armor"], "=q5="..AL["Burning Crusade"] }; - { 19, "LeatherMailArmorWrath1", "INV_Misc_ArmorKit_17", "=ds="..AL["Mail Armor"], "=q5="..AL["Wrath of the Lich King"] }; - { 21, "LeatherItemEnhancement1", "INV_Misc_ArmorKit_17", "=ds="..AL["Item Enhancements"], "" }; - { 22, "LeatherDrumsBagsMisc1", "INV_Misc_ArmorKit_17", "=ds="..AL["Drums, Bags and Misc."], "" }; - { 25, "Elemental1", "INV_Misc_ArmorKit_17", "=ds="..GetSpellInfo(10658), "" }; + { 2, "LeatherLeatherArmor"..AtlasLoot_Expac, "INV_Misc_ArmorKit_17", "=ds="..AL["Leather Armor"], "" }; + { 4, "LeatherCloaks1", "INV_Misc_ArmorKit_17", "=ds="..AL["Cloaks"], "" }; + { 5, "LeatherQuiversPouches1", "INV_Misc_ArmorKit_17", "=ds="..AL["Quivers and Ammo Pouches"], "" }; + { 6, "LeatherLeather1", "INV_Misc_ArmorKit_17", "=ds="..BabbleInventory["Leather"], "" }; + { 8, "Dragonscale1", "INV_Misc_ArmorKit_17", "=ds="..GetSpellInfo(10656), "" }; + { 9, "Tribal1", "INV_Misc_ArmorKit_17", "=ds="..GetSpellInfo(10660), "" }; + { 11, "LeatherHighRisk", "INV_Misc_ArmorKit_17", "=ds=High Risk", "" }; + { 17, "LeatherMailArmor"..AtlasLoot_Expac, "INV_Misc_ArmorKit_17", "=ds="..AL["Mail Armor"],"" }; + { 19, "LeatherItemEnhancement1", "INV_Misc_ArmorKit_17", "=ds="..AL["Item Enhancements"], "" }; + { 20, "LeatherDrumsBagsMisc1", "INV_Misc_ArmorKit_17", "=ds="..AL["Drums, Bags and Misc."], "" }; + { 22, "Elemental1", "INV_Misc_ArmorKit_17", "=ds="..GetSpellInfo(10658), "" }; Back = "CRAFTINGMENU"; + Submenu = "Disable"; }; AtlasLoot_Data["TAILORINGMENU"] = { - { 2, "TailoringArmorOld1", "Trade_Tailoring", "=ds="..AL["Cloth Armor"], "=q5="..AL["Original WoW"] }; - { 3, "TailoringArmorBC1", "Trade_Tailoring", "=ds="..AL["Cloth Armor"], "=q5="..AL["Burning Crusade"] }; - { 4, "TailoringArmorWotLK1", "Trade_Tailoring", "=ds="..AL["Cloth Armor"], "=q5="..AL["Wrath of the Lich King"] }; - { 6, "Mooncloth1", "Trade_Tailoring", "=ds="..GetSpellInfo(26798), "" }; - { 7, "Shadoweave1", "Trade_Tailoring", "=ds="..GetSpellInfo(26801), "" }; - { 13, "TailorHighRisk", "Trade_Tailoring", "=ds=High Risk", "" }; + { 2, "TailoringArmor"..AtlasLoot_Expac, "Trade_Tailoring", "=ds="..AL["Cloth Armor"], "" }; + { 4, "Mooncloth1", "Trade_Tailoring", "=ds="..GetSpellInfo(26798), "" }; + { 5, "Shadoweave1", "Trade_Tailoring", "=ds="..GetSpellInfo(26801), "" }; + { 6, "Spellfire1", "Trade_Tailoring", "=ds="..GetSpellInfo(26797), "" }; + { 8, "TailorHighRisk", "Trade_Tailoring", "=ds=High Risk", "" }; { 17, "TailoringBags1", "Trade_Tailoring", "=ds="..AL["Bags"], "" }; { 18, "TailoringMisc1", "Trade_Tailoring", "=ds="..AL["Miscellaneous"], "" }; { 19, "TailoringShirts1", "Trade_Tailoring", "=ds="..AL["Shirts"], "" }; - { 21, "Spellfire1", "Trade_Tailoring", "=ds="..GetSpellInfo(26797), "" }; Back = "CRAFTINGMENU"; + Submenu = "Disable"; }; AtlasLoot_Data["CRAFTSET1"] = { diff --git a/AtlasLoot/Menus/PvPMenus.lua b/AtlasLoot/Menus/PvPMenus.lua index 2a3bfcf..64eb93e 100644 --- a/AtlasLoot/Menus/PvPMenus.lua +++ b/AtlasLoot/Menus/PvPMenus.lua @@ -12,6 +12,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") Prev = "PVPMENUWRATH"; Next = "PVPMENUTBC"; Back = "PVPMENU"..AtlasLoot_Expac; + Submenu = "Expansion"; }; AtlasLoot_Data["PVPMENUTBC"] = { @@ -31,6 +32,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") Prev = "PVPMENUCLASSIC"; Next = "PVPMENUWRATH"; Back = "PVPMENU"..AtlasLoot_Expac; + Submenu = "Expansion"; }; AtlasLoot_Data["PVPMENUWRATH"] = { @@ -44,6 +46,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") Prev = "PVPMENUTBC"; Next = "PVPMENUCLASSIC"; Back = "PVPMENU"..AtlasLoot_Expac; + Submenu = "Expansion"; }; AtlasLoot_Data["PVPMENU2"] = { diff --git a/AtlasLoot/Menus/RepMenus.lua b/AtlasLoot/Menus/RepMenus.lua index a6eb6aa..29ce231 100644 --- a/AtlasLoot/Menus/RepMenus.lua +++ b/AtlasLoot/Menus/RepMenus.lua @@ -22,6 +22,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") Prev = "REPMENUWRATH"; Next = "REPMENUTBC"; Back = "REPMENU"..AtlasLoot_Expac; + Submenu = "Expansion"; }; AtlasLoot_Data["REPMENUTBC"] = { @@ -48,6 +49,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") Prev = "REPMENUCLASSIC"; Next = "REPMENUWRATH"; Back = "REPMENU"..AtlasLoot_Expac; + Submenu = "Expansion"; }; AtlasLoot_Data["REPMENUWRATH"] = { @@ -66,4 +68,5 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") Prev = "REPMENUTBC"; Next = "REPMENUCLASSIC"; Back = "REPMENU"..AtlasLoot_Expac; + Submenu = "Expansion"; }; \ No newline at end of file diff --git a/AtlasLoot/Menus/SetMenus.lua b/AtlasLoot/Menus/SetMenus.lua index 7592de7..36353f6 100644 --- a/AtlasLoot/Menus/SetMenus.lua +++ b/AtlasLoot/Menus/SetMenus.lua @@ -26,7 +26,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 23, "T3SET", "INV_Pants_Mail_38v3", "=ds="..AL["Tier 3 Sets"], ""}; Prev = "SETMENUWRATH"; Next = "SETMENUTBC"; - Back = "SETMENU"..AtlasLoot_Expac; + Submenu = "Expansion"; }; AtlasLoot_Data["SETMENUTBC"] = { @@ -41,7 +41,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 20, "T6SET", "inv_helmet_98", "=ds="..AL["Tier 6 Sets"], ""}; Prev = "SETMENUCLASSIC"; Next = "SETMENUWRATH"; - Back = "SETMENU"..AtlasLoot_Expac; + Submenu = "Expansion"; }; AtlasLoot_Data["SETMENUWRATH"] = { @@ -59,7 +59,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 18, "T10SET", "INV_Chest_Chain_15", "=ds="..AL["Tier 10 Sets"], "=q5="..AL["10/25 Man"]}; Prev = "SETMENUTBC"; Next = "SETMENUCLASSIC"; - Back = "SETMENU"..AtlasLoot_Expac; + Submenu = "Expansion"; }; AtlasLoot_Data["70TOKENMENU"] = { @@ -121,6 +121,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 18, "MountsPvP1", "ability_mount_netherdrakeelite", "=ds="..AL["PvP Mounts"], ""}; { 19, "MountsCraftQuestPromotion1", "INV_Misc_QirajiCrystal_05", "=ds="..AL["Quest"].." / "..AL["Promotional"].." / "..AL["Crafted Mounts"], ""}; Back = "SETMENU"..AtlasLoot_Expac; + Submenu = "Expansion"; }; AtlasLoot_Data["PETMENU"] = { @@ -132,6 +133,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 18, "PetsEvent1", "inv_pet_egbert", "=ds="..AL["World Events"], ""}; { 19, "PetsPetStore1", "INV_Misc_Coin_01", "=ds="..AL["Pet Store"], ""}; Back = "SETMENU"..AtlasLoot_Expac; + Submenu = "Expansion"; }; AtlasLoot_Data["SETSCLASSIC"] = { diff --git a/AtlasLoot/TableRegister/loottables.en.lua b/AtlasLoot/TableRegister/loottables.en.lua index 5f49ee6..1bdf71d 100644 --- a/AtlasLoot/TableRegister/loottables.en.lua +++ b/AtlasLoot/TableRegister/loottables.en.lua @@ -1405,7 +1405,7 @@ end AtlasLoot_TableNames["WorldEpics2"] = { AL["BoE World Epics"].." - "..AL["Level 40-49"], "AtlasLootOriginalWoW" }; AtlasLoot_TableNames["WorldEpics3"] = { AL["BoE World Epics"].." - "..AL["Level 50-60"], "AtlasLootOriginalWoW" }; AtlasLoot_TableNames["WorldEpics4"] = { AL["BoE World Epics"].." - "..AL["Level 70"], "AtlasLootBurningCrusade" }; - AtlasLoot_TableNames["WorldEpicsWrath1"] = { AL["BoE World Epics"].." - "..AL["Level 80"], "AtlasLootWotLK" }; + AtlasLoot_TableNames["WorldEpicsWRATH"] = { AL["BoE World Epics"].." - "..AL["Level 80"], "AtlasLootWotLK" }; -------------------- @@ -1633,36 +1633,45 @@ end -------------- -- Alchemy - AtlasLoot_TableNames["AlchemyBattleElixir1"] = { ALCHEMY..": "..AL["Battle Elixirs"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["AlchemyBattleElixir2"] = { ALCHEMY..": "..AL["Battle Elixirs"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["AlchemyGuardianElixir1"] = { ALCHEMY..": "..AL["Guardian Elixirs"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["AlchemyPotion1"] = { ALCHEMY..": "..AL["Potions"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["AlchemyPotion2"] = { ALCHEMY..": "..AL["Potions"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["AlchemyPotion3"] = { ALCHEMY..": "..AL["Potions"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["AlchemyTransmute1"] = { ALCHEMY..": "..AL["Transmutes"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["AlchemyTransmute2"] = { ALCHEMY..": "..AL["Transmutes"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["AlchemyFlask1"] = { ALCHEMY..": "..AL["Flasks"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["AlchemyMisc1"] = { ALCHEMY..": "..AL["Miscellaneous"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["AlchemyMisc2"] = { ALCHEMY..": "..AL["Miscellaneous"], "AtlasLootCrafting" }; + --AtlasLoot_TableNames["AlchemyBattleElixir"] = { AL["Battle Elixirs"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyBattleElixirCLASSIC"] = { AL["Battle Elixirs"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyBattleElixirTBC"] = { AL["Battle Elixirs"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyBattleElixirWRATH"] = { AL["Battle Elixirs"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyGuardianElixirCLASSIC"] = { AL["Guardian Elixirs"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyGuardianElixirTBC"] = { AL["Guardian Elixirs"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyGuardianElixirWRATH"] = { AL["Guardian Elixirs"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyPotionCLASSIC"] = { AL["Potions"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyPotion1CLASSIC"] = { AL["Potions"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyPotionTBC"] = { AL["Potions"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyPotionWRATH"] = { AL["Potions"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyTransmuteCLASSIC"] = { AL["Transmutes"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyTransmuteTBC"] = { AL["Transmutes"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyTransmuteWRATH"] = { AL["Transmutes"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyFlaskCLASSIC"] = { AL["Flasks"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyFlaskTBC"] = { AL["Flasks"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyFlaskWRATH"] = { AL["Flasks"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyMiscCLASSIC"] = { AL["Miscellaneous"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyMiscTBC"] = { AL["Miscellaneous"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["AlchemyMiscWRATH"] = { AL["Miscellaneous"], "AtlasLootCrafting" }; -- BlackSmithing - AtlasLoot_TableNames["SmithingArmorOld1"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingArmorOld2"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingArmorOld3"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingArmorOld4"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingArmorOld5"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingArmorBC1"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingArmorBC2"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingArmorBC3"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingArmorWrath1"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingArmorWrath2"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingArmorWrath3"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingArmorWrath4"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingWeaponOld1"] = { BLACKSMITHING..": "..BabbleInventory["Weapon"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingWeaponOld2"] = { BLACKSMITHING..": "..BabbleInventory["Weapon"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingWeaponOld3"] = { BLACKSMITHING..": "..BabbleInventory["Weapon"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingWeaponBC1"] = { BLACKSMITHING..": "..BabbleInventory["Weapon"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingWeaponBC2"] = { BLACKSMITHING..": "..BabbleInventory["Weapon"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["SmithingWeaponWrath1"] = { BLACKSMITHING..": "..BabbleInventory["Weapon"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingArmorCLASSIC"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingArmorCLASSIC2"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingArmorCLASSIC3"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingArmorCLASSIC4"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingArmorCLASSIC5"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingArmorTBC"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingArmorTBC2"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingArmorTBC3"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingArmorWRATH"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingArmorWRATH2"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingArmorWRATH3"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingArmorWRATH4"] = { BLACKSMITHING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingWeaponCLASSIC"] = { BLACKSMITHING..": "..BabbleInventory["Weapon"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingWeaponCLASSIC2"] = { BLACKSMITHING..": "..BabbleInventory["Weapon"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingWeaponCLASSIC3"] = { BLACKSMITHING..": "..BabbleInventory["Weapon"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingWeaponTBC"] = { BLACKSMITHING..": "..BabbleInventory["Weapon"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingWeaponTBC2"] = { BLACKSMITHING..": "..BabbleInventory["Weapon"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["SmithingWeaponWRATH"] = { BLACKSMITHING..": "..BabbleInventory["Weapon"], "AtlasLootCrafting" }; AtlasLoot_TableNames["SmithingEnhancement1"] = { BLACKSMITHING..": "..AL["Item Enhancements"], "AtlasLootCrafting" }; AtlasLoot_TableNames["SmithingEnhancement2"] = { BLACKSMITHING..": "..AL["Item Enhancements"], "AtlasLootCrafting" }; AtlasLoot_TableNames["SmithingMisc1"] = { BLACKSMITHING..": "..AL["Miscellaneous"], "AtlasLootCrafting" }; @@ -1672,23 +1681,35 @@ end AtlasLoot_TableNames["Hammersmith1"] = { HAMMERSMITH, "AtlasLootCrafting" }; AtlasLoot_TableNames["Swordsmith1"] = { SWORDSMITH, "AtlasLootCrafting" }; -- Enchanting - AtlasLoot_TableNames["EnchantingBoots1"] = { ENCHANTING..": "..AL["Enchant Boots"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingBracer1"] = { ENCHANTING..": "..AL["Enchant Bracer"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingBracer2"] = { ENCHANTING..": "..AL["Enchant Bracer"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingChest1"] = { ENCHANTING..": "..AL["Enchant Chest"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingChest2"] = { ENCHANTING..": "..AL["Enchant Chest"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingCloak1"] = { ENCHANTING..": "..AL["Enchant Cloak"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingCloak2"] = { ENCHANTING..": "..AL["Enchant Cloak"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingGloves1"] = { ENCHANTING..": "..AL["Enchant Gloves"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingGloves2"] = { ENCHANTING..": "..AL["Enchant Gloves"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingBootsCLASSIC"] = { ENCHANTING..": "..AL["Enchant Boots"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingBootsTBC"] = { ENCHANTING..": "..AL["Enchant Boots"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingBootsWRATH"] = { ENCHANTING..": "..AL["Enchant Boots"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingBracerCLASSIC"] = { ENCHANTING..": "..AL["Enchant Bracer"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingBracerTBC"] = { ENCHANTING..": "..AL["Enchant Bracer"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingBracerWRATH"] = { ENCHANTING..": "..AL["Enchant Bracer"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingChestCLASSIC"] = { ENCHANTING..": "..AL["Enchant Chest"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingChestTBC"] = { ENCHANTING..": "..AL["Enchant Chest"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingChestWRATH"] = { ENCHANTING..": "..AL["Enchant Chest"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingCloakCLASSIC"] = { ENCHANTING..": "..AL["Enchant Cloak"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingCloakTBC"] = { ENCHANTING..": "..AL["Enchant Cloak"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingCloakWRATH"] = { ENCHANTING..": "..AL["Enchant Cloak"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingGlovesCLASSIC"] = { ENCHANTING..": "..AL["Enchant Gloves"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingGlovesTBC"] = { ENCHANTING..": "..AL["Enchant Gloves"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingGlovesWRATH"] = { ENCHANTING..": "..AL["Enchant Gloves"], "AtlasLootCrafting" }; AtlasLoot_TableNames["EnchantingRing1"] = { ENCHANTING..": "..AL["Enchant Ring"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingShield1"] = { ENCHANTING..": "..AL["Enchant Shield"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["Enchanting2HWeapon1"] = { ENCHANTING..": "..AL["Enchant 2H Weapon"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingWeapon1"] = { ENCHANTING..": "..AL["Enchant Weapon"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingWeapon2"] = { ENCHANTING..": "..AL["Enchant Weapon"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingShieldCLASSIC"] = { ENCHANTING..": "..AL["Enchant Shield"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingShieldTBC"] = { ENCHANTING..": "..AL["Enchant Shield"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingShieldWRATH"] = { ENCHANTING..": "..AL["Enchant Shield"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingTwoHWeaponCLASSIC"] = { ENCHANTING..": "..AL["Enchant 2H Weapon"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingTwoHWeaponTBC"] = { ENCHANTING..": "..AL["Enchant 2H Weapon"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingTwoHWeaponWRATH"] = { ENCHANTING..": "..AL["Enchant 2H Weapon"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingWeaponCLASSIC"] = { ENCHANTING..": "..AL["Enchant Weapon"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingWeaponTBC"] = { ENCHANTING..": "..AL["Enchant Weapon"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingWeaponWRATH"] = { ENCHANTING..": "..AL["Enchant Weapon"], "AtlasLootCrafting" }; AtlasLoot_TableNames["EnchantingStaff1"] = { ENCHANTING..": "..BabbleInventory["Staff"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingMisc1"] = { ENCHANTING..": "..AL["Miscellaneous"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["EnchantingMisc2"] = { ENCHANTING..": "..AL["Miscellaneous"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingMiscCLASSIC"] = { ENCHANTING..": "..AL["Miscellaneous"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingMiscTBC"] = { ENCHANTING..": "..AL["Miscellaneous"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["EnchantingMiscWRATH"] = { ENCHANTING..": "..AL["Miscellaneous"], "AtlasLootCrafting" }; -- Engineering AtlasLoot_TableNames["EngineeringAmmo1"] = { ENGINEERING..": "..AL["Ammunition"], "AtlasLootCrafting" }; AtlasLoot_TableNames["EngineeringArmor1"] = { ENGINEERING..": "..BabbleInventory["Armor"], "AtlasLootCrafting" }; @@ -1733,22 +1754,31 @@ end AtlasLoot_TableNames["Inscription_WarriorMajor1"] = { INSCRIPTION..": "..AL["Major Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootCrafting" }; AtlasLoot_TableNames["Inscription_WarriorMinor1"] = { INSCRIPTION..": "..AL["Minor Glyph"].." - "..LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootCrafting" }; -- Jewelcrafting - AtlasLoot_TableNames["JewelRed1"] = { JEWELCRAFTING..": "..BabbleInventory["Red"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelRed2"] = { JEWELCRAFTING..": "..BabbleInventory["Red"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelBlue1"] = { JEWELCRAFTING..": "..BabbleInventory["Blue"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelYellow1"] = { JEWELCRAFTING..": "..BabbleInventory["Yellow"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelYellow2"] = { JEWELCRAFTING..": "..BabbleInventory["Yellow"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelGreen1"] = { JEWELCRAFTING..": "..BabbleInventory["Green"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelGreen2"] = { JEWELCRAFTING..": "..BabbleInventory["Green"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelGreen3"] = { JEWELCRAFTING..": "..BabbleInventory["Green"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelOrange1"] = { JEWELCRAFTING..": "..BabbleInventory["Orange"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelOrange2"] = { JEWELCRAFTING..": "..BabbleInventory["Orange"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelOrange3"] = { JEWELCRAFTING..": "..BabbleInventory["Orange"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelPurple1"] = { JEWELCRAFTING..": "..BabbleInventory["Purple"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelPurple2"] = { JEWELCRAFTING..": "..BabbleInventory["Purple"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelPurple3"] = { JEWELCRAFTING..": "..BabbleInventory["Purple"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelMeta1"] = { JEWELCRAFTING..": "..BabbleInventory["Meta"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["JewelMeta2"] = { JEWELCRAFTING..": "..BabbleInventory["Meta"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelRedCLASSIC"] = { JEWELCRAFTING..": "..BabbleInventory["Red"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelRedTBC"] = { JEWELCRAFTING..": "..BabbleInventory["Red"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelRedWRATH"] = { JEWELCRAFTING..": "..BabbleInventory["Red"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelBlueCLASSIC"] = { JEWELCRAFTING..": "..BabbleInventory["Blue"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelBlueTBC"] = { JEWELCRAFTING..": "..BabbleInventory["Blue"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelBlueWRATH"] = { JEWELCRAFTING..": "..BabbleInventory["Blue"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelYellowCLASSIC"] = { JEWELCRAFTING..": "..BabbleInventory["Yellow"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelYellowTBC"] = { JEWELCRAFTING..": "..BabbleInventory["Yellow"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelYellowWRATH"] = { JEWELCRAFTING..": "..BabbleInventory["Yellow"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelGreenCLASSIC"] = { JEWELCRAFTING..": "..BabbleInventory["Green"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelGreenTBC"] = { JEWELCRAFTING..": "..BabbleInventory["Green"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelGreenWRATH"] = { JEWELCRAFTING..": "..BabbleInventory["Green"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelGreen2WRATH"] = { JEWELCRAFTING..": "..BabbleInventory["Green"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelOrangeCLASSIC"] = { JEWELCRAFTING..": "..BabbleInventory["Orange"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelOrangeTBC"] = { JEWELCRAFTING..": "..BabbleInventory["Orange"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelOrangeWRATH"] = { JEWELCRAFTING..": "..BabbleInventory["Orange"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelOrange2WRATH"] = { JEWELCRAFTING..": "..BabbleInventory["Orange"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelOrange3WRATH"] = { JEWELCRAFTING..": "..BabbleInventory["Orange"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelPurpleCLASSIC"] = { JEWELCRAFTING..": "..BabbleInventory["Purple"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelPurpleTBC"] = { JEWELCRAFTING..": "..BabbleInventory["Purple"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelPurpleWRATH"] = { JEWELCRAFTING..": "..BabbleInventory["Purple"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelPurple2WRATH"] = { JEWELCRAFTING..": "..BabbleInventory["Purple"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelMetaCLASSIC"] = { JEWELCRAFTING..": "..BabbleInventory["Meta"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelMetaTBC"] = { JEWELCRAFTING..": "..BabbleInventory["Meta"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["JewelMetaWRATH"] = { JEWELCRAFTING..": "..BabbleInventory["Meta"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; AtlasLoot_TableNames["JewelDragonsEye1"] = { JEWELCRAFTING..": "..AL["Dragon's Eye"], "AtlasLootCrafting" }; AtlasLoot_TableNames["JewelPrismatic1"] = { JEWELCRAFTING..": "..BabbleInventory["Prismatic"].." "..BabbleInventory["Gem"], "AtlasLootCrafting" }; AtlasLoot_TableNames["JewelTrinket1"] = { JEWELCRAFTING..": "..BabbleInventory["Trinket"], "AtlasLootCrafting" }; @@ -1759,24 +1789,24 @@ end AtlasLoot_TableNames["JewelNeck2"] = { JEWELCRAFTING..": "..BabbleInventory["Neck"], "AtlasLootCrafting" }; AtlasLoot_TableNames["JewelMisc1"] = { JEWELCRAFTING..": "..AL["Miscellaneous"], "AtlasLootCrafting" }; -- Leatherworking - AtlasLoot_TableNames["LeatherLeatherArmorOld1"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherLeatherArmorOld2"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherLeatherArmorOld3"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherLeatherArmorOld4"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherLeatherArmorOld5"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherLeatherArmorOld6"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherLeatherArmorBC1"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherLeatherArmorBC2"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherLeatherArmorWrath1"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherLeatherArmorWrath2"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherLeatherArmorWrath3"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherMailArmorOld1"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherMailArmorOld2"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherMailArmorBC1"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherMailArmorBC2"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherMailArmorWrath1"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherMailArmorWrath2"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["LeatherMailArmorWrath3"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherLeatherArmorCLASSIC"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherLeatherArmorCLASSIC2"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherLeatherArmorCLASSIC3"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherLeatherArmorCLASSIC4"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherLeatherArmorCLASSIC5"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherLeatherArmorCLASSIC6"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherLeatherArmorTBC"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherLeatherArmorTBC2"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherLeatherArmorWRATH"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherLeatherArmorWRATH2"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherLeatherArmorWRATH3"] = { LEATHERWORKING..": "..AL["Leather Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherMailArmorCLASSIC"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherMailArmorCLASSIC2"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherMailArmorTBC"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherMailArmorTBC2"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherMailArmorWRATH"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherMailArmorWRATH2"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["LeatherMailArmorWRATH3"] = { LEATHERWORKING..": "..AL["Mail Armor"], "AtlasLootCrafting" }; AtlasLoot_TableNames["LeatherCloaks1"] = { LEATHERWORKING..": "..AL["Cloaks"], "AtlasLootCrafting" }; AtlasLoot_TableNames["LeatherItemEnhancement1"] = { LEATHERWORKING..": "..AL["Item Enhancements"], "AtlasLootCrafting" }; AtlasLoot_TableNames["LeatherItemEnhancement2"] = { LEATHERWORKING..": "..AL["Item Enhancements"], "AtlasLootCrafting" }; @@ -1789,16 +1819,16 @@ end -- Mining AtlasLoot_TableNames["Mining1"] = { MINING, "AtlasLootCrafting" }; -- Tailoring - AtlasLoot_TableNames["TailoringArmorOld1"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["TailoringArmorOld2"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["TailoringArmorOld3"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["TailoringArmorOld4"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["TailoringArmorOld5"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["TailoringArmorOld6"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["TailoringArmorOld7"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["TailoringArmorBC1"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["TailoringArmorBC2"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; - AtlasLoot_TableNames["TailoringArmorBC3"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["TailoringArmorCLASSIC"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["TailoringArmorCLASSIC2"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["TailoringArmorCLASSIC3"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["TailoringArmorCLASSIC4"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["TailoringArmorCLASSIC5"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["TailoringArmorCLASSIC6"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["TailoringArmorCLASSIC7"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["TailoringArmorTBC"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["TailoringArmorTBC2"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; + AtlasLoot_TableNames["TailoringArmorTBC3"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; AtlasLoot_TableNames["TailoringArmorWotLK1"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; AtlasLoot_TableNames["TailoringArmorWotLK2"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; AtlasLoot_TableNames["TailoringArmorWotLK3"] = { TAILORING..": "..AL["Cloth Armor"], "AtlasLootCrafting" }; @@ -1964,22 +1994,19 @@ end AtlasLoot_TableNames["T7T8SET"] = { AL["Tier 7/8 Sets"], "Menu" }; AtlasLoot_TableNames["T9SET"] = { AL["Tier 9 Sets"], "Menu" }; AtlasLoot_TableNames["T10SET"] = { AL["Tier 10 Sets"], "Menu" }; - AtlasLoot_TableNames["REPMENU_ORIGINALWOW"] = { AL["Factions - Classic"], "Menu" }; - AtlasLoot_TableNames["REPMENU_BURNINGCRUSADE"] = { AL["Factions - Burning Crusade"], "Menu" }; - AtlasLoot_TableNames["REPMENU_WOTLK"] = { AL["Factions - Wrath of the Lich King"], "Menu" }; - AtlasLoot_TableNames["REPMENUCLASSIC"] = { AL["Factions - Classic"], "Menu" }; - AtlasLoot_TableNames["REPMENUTBC"] = { AL["Factions - Burning Crusade"], "Menu" }; - AtlasLoot_TableNames["REPMENUWRATH"] = { AL["Factions - Wrath of the Lich King"], "Menu" }; - AtlasLoot_TableNames["SETMENUCLASSIC"] = { AL["Classic Collections"], "Menu" }; - AtlasLoot_TableNames["SETMENUTBC"] = { AL["Burning Crusade Collections"], "Menu" }; - AtlasLoot_TableNames["SETMENUWRATH"] = { AL["Wrath of the Lich King Collections"], "Menu" }; + AtlasLoot_TableNames["REPMENUCLASSIC"] = { AL["Classic"], "Menu" }; + AtlasLoot_TableNames["REPMENUTBC"] = { AL["Burning Crusade"], "Menu" }; + AtlasLoot_TableNames["REPMENUWRATH"] = { AL["Wrath of the Lich King"], "Menu" }; + AtlasLoot_TableNames["SETMENUCLASSIC"] = { AL["Classic"], "Menu" }; + AtlasLoot_TableNames["SETMENUTBC"] = { AL["Burning Crusade"], "Menu" }; + AtlasLoot_TableNames["SETMENUWRATH"] = { AL["Wrath of the Lich King"], "Menu" }; AtlasLoot_TableNames["MOUNTMENU"] = { AL["Mounts"], "Menu" }; AtlasLoot_TableNames["PETMENU"] = { AL["Vanity Pets"], "Menu" }; AtlasLoot_TableNames["PVPSET"] = { AL["PvP Armor Sets"]..": "..AL["Level 60"], "Menu" }; - AtlasLoot_TableNames["PVPMENUCLASSIC"] = { AL["Classic PvP Rewards"], "Menu" }; - AtlasLoot_TableNames["PVPMENUTBC"] = { AL["Burning Crusade PvP Rewards"], "Menu" }; - AtlasLoot_TableNames["PVPMENUWRATH"] = { AL["Wrath of the Lich King PvP Rewards"], "Menu" }; + AtlasLoot_TableNames["PVPMENUCLASSIC"] = { AL["Classic"], "Menu" }; + AtlasLoot_TableNames["PVPMENUTBC"] = { AL["Burning Crusade"], "Menu" }; + AtlasLoot_TableNames["PVPMENUWRATH"] = { AL["Wrath of the Lich King"], "Menu" }; AtlasLoot_TableNames["PVPMENU2"] = { AL["PvP Rewards"], "Menu" }; AtlasLoot_TableNames["WINTERGRASPMENU"] = { BabbleZone["Wintergrasp"], "Menu" }; AtlasLoot_TableNames["PVP70RepSET"] = { AL["PvP Reputation Sets"]..": "..AL["Level 70"], "Menu" }; @@ -2041,5 +2068,10 @@ end AtlasLoot_TableNames["ItemUncommon"] = { AL["Item Uncommon"], "Menu" }; AtlasLoot_TableNames["ItemRare"] = { AL["Item Rare"], "Menu" }; AtlasLoot_TableNames["ItemEpic"] = { AL["Item Epic"], "Menu" }; + AtlasLoot_TableNames["CLASSIC"] = { AL["Classic"], "Menu" }; + AtlasLoot_TableNames["TBC"] = { AL["Burning Crusade"], "Menu" }; + AtlasLoot_TableNames["WRATH"] = { AL["Wrath of the Lich King"], "Menu" }; + + \ No newline at end of file diff --git a/AtlasLoot_BurningCrusade/burningcrusadeRaids.lua b/AtlasLoot_BurningCrusade/burningcrusadeRaids.lua deleted file mode 100644 index 32d51b0..0000000 --- a/AtlasLoot_BurningCrusade/burningcrusadeRaids.lua +++ /dev/null @@ -1,1703 +0,0 @@ -local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot"); -local BabbleBoss = AtlasLoot_GetLocaleLibBabble("LibBabble-Boss-3.0") -local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") - --- Index ---- Dungeons & Raids ----- Keys ----- Auchindoun: Auchenai Crypts ----- Auchindoun: Mana-Tombs ----- Auchindoun: Sethekk Halls ----- Auchindoun: Shadow Labyrinth ----- Black Temple ----- Caverns of Time: Old Hillsbrad Foothills ----- Caverns of Time: The Black Morass ----- Caverns of Time: Hyjal Summit ----- Coilfang Reservoir: The Slave Pens ----- Coilfang Reservoir: The Steamvault ----- Coilfang Reservoir: The Underbog ----- Coilfang Reservoir: Serpentshrine Cavern ----- Gruul's Lair ----- Hellfire Citadel: Hellfire Ramparts ----- Hellfire Citadel: The Blood Furnace ----- Hellfire Citadel: The Shattered Halls ----- Hellfire Citadel: Magtheridon's Lair ----- Karazhan ----- Sunwell Isle: Magister's Terrace ----- Sunwell Isle: Sunwell Plateau ----- Tempest Keep: The Arcatraz ----- Tempest Keep: The Botanica ----- Tempest Keep: The Mechanar ----- Tempest Keep: The Eye ----- Zul'Aman ---- Factions ----- Ashtongue Deathsworn ----- Cenarion Expedition ----- Honor Hold ----- Keepers of Time ----- Kurenai ----- Lower City ----- Netherwing ----- Ogri'la ----- Sha'tari Skyguard ----- Shattered Sun Offensive ----- Sporeggar ----- The Aldor ----- The Consortium ----- The Mag'har ----- The Scale of the Sands ----- The Scryers ----- The Sha'tar ----- The Violet Eye ----- Thrallmar ----- Tranquillien ----- Misc ---- PvP ----- World PvP - Hellfire Peninsula: Hellfire Fortifications ----- World PvP - Nagrand: Halaa ----- World PvP - Terokkar Forest: Bone Wastes ----- World PvP - Zangarmarsh: Twin Spire Ruins ----- Rep-PvP Level 70 - Armor Sets ----- PvP Level 70 - Accessories ----- PvP Level 70 - Non Set Epics ----- Arena - Armor Sets ----- Arena Season 2 - Weapons ----- Arena Season 3 - Weapons ----- Arena Season 4 - Weapons ---- Sets & Collections ----- Dungeon 3 Sets (D3) ----- Tier 4/Tier 5/Tier 6 ----- The Burning Crusade Sets ----- Badge of Justice Rewards ----- BoE World Epics ---- World Bosses - - ------------------------ - --- Dungeons & Raids --- - ------------------------ - - - -------------------- - --- Black Temple --- - -------------------- - - AtlasLoot_Data["BTNajentus"] = { - { 1, 32239, "", "=q4=Slippers of the Seacaller", "=ds=#s12#, #a1#", "", "15%"}; - { 2, 32240, "", "=q4=Guise of the Tidal Lurker", "=ds=#s1#, #a2#", "", "16%"}; - { 3, 32377, "", "=q4=Mantle of Darkness", "=ds=#s3#, #a2#", "", "15%"}; - { 4, 32241, "", "=q4=Helm of Soothing Currents", "=ds=#s1#, #a3#", "", "10%"}; - { 5, 32234, "", "=q4=Fists of Mukoa", "=ds=#s9#, #a3#", "", "16%"}; - { 6, 32242, "", "=q4=Boots of Oceanic Fury", "=ds=#s12#, #a3#", "", "6%"}; - { 7, 32232, "", "=q4=Eternium Shell Bracers", "=ds=#s8#, #a4#", "", "16%"}; - { 8, 32243, "", "=q4=Pearl Inlaid Boots", "=ds=#s12#, #a4#", "", "10%"}; - { 9, 32245, "", "=q4=Tide-stomper's Greaves", "=ds=#s12#, #a4#", "", "7%"}; - { 16, 32238, "", "=q4=Ring of Calming Waves", "=ds=#s13#", "", "16%"}; - { 17, 32247, "", "=q4=Ring of Captured Storms", "=ds=#s13#", "", "16%"}; - { 18, 32237, "", "=q4=The Maelstrom's Fury", "=ds=#h3#, #w4#", "", "15%"}; - { 19, 32236, "", "=q4=Rising Tide", "=ds=#h1#, #w1#", "", "16%"}; - { 20, 32248, "", "=q4=Halberd of Desolation", "=ds=#w7#", "", "16%"}; - { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Next = "BTSupremus"; - }; - - AtlasLoot_Data["BTSupremus"] = { - { 1, 32256, "", "=q4=Waistwrap of Infinity", "=ds=#s10#, #a1#", "", "16%"}; - { 2, 32252, "", "=q4=Nether Shadow Tunic", "=ds=#s5#, #a2#", "", "14%"}; - { 3, 32259, "", "=q4=Bands of the Coming Storm", "=ds=#s8#, #a3#", "", "6%"}; - { 4, 32251, "", "=q4=Wraps of Precise Flight", "=ds=#s8#, #a3#", "", "15%"}; - { 5, 32258, "", "=q4=Naturalist's Preserving Cinch", "=ds=#s10#, #a3#", "", "9%"}; - { 6, 32250, "", "=q4=Pauldrons of Abyssal Fury", "=ds=#s3#, #a4#", "", "16%"}; - { 8, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 16, 32260, "", "=q4=Choker of Endless Nightmares", "=ds=#s2#", "", "17%"}; - { 17, 32261, "", "=q4=Band of the Abyssal Lord", "=ds=#s13#", "", "14%"}; - { 18, 32257, "", "=q4=Idol of the White Stag", "=ds=#s16#, #w14#", "", "15%"}; - { 19, 32254, "", "=q4=The Brutalizer", "=ds=#h1#, #w1#", "", "15%"}; - { 20, 32262, "", "=q4=Syphon of the Nathrezim", "=ds=#h1#, #w6#", "", "16%"}; - { 21, 32255, "", "=q4=Felstone Bulwark", "=ds=#w8#", "", "15%"}; - { 22, 32253, "", "=q4=Legionkiller", "=ds=#w3#", "", "16%"}; - Prev = "BTNajentus"; - Next = "BTAkama"; - }; - - AtlasLoot_Data["BTAkama"] = { - { 1, 32273, "", "=q4=Amice of Brilliant Light", "=ds=#s3#, #a1#", "", "16%"}; - { 2, 32270, "", "=q4=Focused Mana Bindings", "=ds=#s8#, #a1#", "", "15%"}; - { 3, 32513, "", "=q4=Wristbands of Divine Influence", "=ds=#s8#, #a1#", "", "16%"}; - { 4, 32265, "", "=q4=Shadow-walker's Cord", "=ds=#s10#, #a2#", "", "16%"}; - { 5, 32271, "", "=q4=Kilt of Immortal Nature", "=ds=#s11#, #a2#", "", "14%"}; - { 6, 32264, "", "=q4=Shoulders of the Hidden Predator", "=ds=#s3#, #a3#", "", "16%"}; - { 7, 32275, "", "=q4=Spiritwalker Gauntlets", "=ds=#s9#, #a3#", "", "9%"}; - { 8, 32276, "", "=q4=Flashfire Girdle", "=ds=#s10#, #a3#", "", "5%"}; - { 9, 32279, "", "=q4=The Seeker's Wristguards", "=ds=#s8#, #a4#", "", "8%"}; - { 10, 32278, "", "=q4=Grips of Silent Justice", "=ds=#s9#, #a4#", "", "15%"}; - { 11, 32263, "", "=q4=Praetorian's Legguards", "=ds=#s11#, #a4#", "", "14%"}; - { 12, 32268, "", "=q4=Myrmidon's Treads", "=ds=#s12#, #a4#", "", "16%"}; - { 16, 32266, "", "=q4=Ring of Deceitful Intent", "=ds=#s13#", "", "16%"}; - { 17, 32361, "", "=q4=Blind-Seers Icon", "=ds=#s15#", "", "15%"}; - { 19, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "BTSupremus"; - Next = "BTGorefiend"; - }; - - AtlasLoot_Data["BTGorefiend"] = { - { 1, 32323, "", "=q4=Shadowmoon Destroyer's Drape", "=ds=#s4#", "", "17%"}; - { 2, 32329, "", "=q4=Cowl of Benevolence", "=ds=#s1#, #a1#", "", "17%"}; - { 3, 32327, "", "=q4=Robe of the Shadow Council", "=ds=#s5#, #a1#", "", "15%"}; - { 4, 32324, "", "=q4=Insidious Bands", "=ds=#s8#, #a2#", "", "17%"}; - { 5, 32328, "", "=q4=Botanist's Gloves of Growth", "=ds=#s9#, #a2#", "", "17%"}; - { 6, 32510, "", "=q4=Softstep Boots of Tracking", "=ds=#s12#, #a3#", "", "15%"}; - { 7, 32280, "", "=q4=Gauntlets of Enforcement", "=ds=#s9#, #a4#", "", "15%"}; - { 8, 32512, "", "=q4=Girdle of Lordaeron's Fallen", "=ds=#s10#, #a4#", "", "19%"}; - { 16, 32330, "", "=q4=Totem of Ancestral Guidance", "=ds=#s16#, #w15#", "", "13%"}; - { 17, 32348, "", "=q4=Soul Cleaver", "=ds=#h2#, #w1#", "", "19%"}; - { 18, 32326, "", "=q4=Twisted Blades of Zarak", "=ds=#w11#", "", "11%"}; - { 19, 32325, "", "=q4=Rifle of the Stoic Guardian", "=ds=#w5#", "", "14%"}; - { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "BTAkama"; - Next = "BTBloodboil"; - }; - - AtlasLoot_Data["BTBloodboil"] = { - { 1, 32337, "", "=q4=Shroud of Forgiveness", "=ds=#s4#", "", "16%"}; - { 2, 32338, "", "=q4=Blood-cursed Shoulderpads", "=ds=#s3#, #a1#", "", "15%"}; - { 3, 32340, "", "=q4=Garments of Temperance", "=ds=#s5#, #a1#", "", "15%"}; - { 4, 32339, "", "=q4=Belt of Primal Majesty", "=ds=#s10#, #a2#", "", "14%"}; - { 5, 32334, "", "=q4=Vest of Mounting Assault", "=ds=#s5#, #a3#", "", "15%"}; - { 6, 32342, "", "=q4=Girdle of Mighty Resolve", "=ds=#s10#, #a4#", "", "8%"}; - { 7, 32333, "", "=q4=Girdle of Stability", "=ds=#s10#, #a4#", "", "16%"}; - { 8, 32341, "", "=q4=Leggings of Divine Retribution", "=ds=#s11#, #a4#", "", "14%"}; - { 16, 32335, "", "=q4=Unstoppable Aggressor's Ring", "=ds=#s13#", "", "16%"}; - { 17, 32501, "", "=q4=Shadowmoon Insignia", "=ds=#s14#", "", "15%"}; - { 18, 32269, "", "=q4=Messenger of Fate", "=ds=#h1#, #w4#", "", "16%"}; - { 19, 32344, "", "=q4=Staff of Immaculate Recovery", "=ds=#w9#", "", "15%"}; - { 20, 32343, "", "=q4=Wand of Prismatic Focus", "=ds=#w12#", "", "14%"}; - { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "BTGorefiend"; - Next = "BTEssencofSouls"; - }; - - AtlasLoot_Data["BTEssencofSouls"] = { - { 1, 32353, "", "=q4=Gloves of Unfailing Faith", "=ds=#s9#, #a1#", "", "17%"}; - { 2, 32351, "", "=q4=Elunite Empowered Bracers", "=ds=#s8#, #a2#", "", "8%"}; - { 3, 32347, "", "=q4=Grips of Damnation", "=ds=#s9#, #a2#", "", "16%"}; - { 4, 32352, "", "=q4=Naturewarden's Treads", "=ds=#s12#, #a2#", "", "9%"}; - { 5, 32517, "", "=q4=The Wavemender's Mantle", "=ds=#s3#, #a3#", "", "17%"}; - { 6, 32346, "", "=q4=Boneweave Girdle", "=ds=#s10#, #a3#", "", "16%"}; - { 7, 32354, "", "=q4=Crown of Empowered Fate", "=ds=#s1#, #a4#", "", "16%"}; - { 8, 32345, "", "=q4=Dreadboots of the Legion", "=ds=#s12#, #a4#", "", "15%"}; - { 16, 32349, "", "=q4=Translucent Spellthread Necklace", "=ds=#s2#", "", "16%"}; - { 17, 32362, "", "=q4=Pendant of Titans", "=ds=#s2#", "", "15%"}; - { 18, 32350, "", "=q4=Touch of Inspiration", "=ds=#s15#", "", "16%"}; - { 19, 32332, "", "=q4=Torch of the Damned", "=ds=#h2#, #w6#", "", "17%"}; - { 20, 32363, "", "=q4=Naaru-Blessed Life Rod", "=ds=#w12#", "", "14%"}; - { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "BTBloodboil"; - Next = "BTShahraz"; - }; - - AtlasLoot_Data["BTShahraz"] = { - { 1, 32367, "", "=q4=Leggings of Devastation", "=ds=#s11#, #a1#", "", "16%"}; - { 2, 32366, "", "=q4=Shadowmaster's Boots", "=ds=#s12#, #a2#", "", "15%"}; - { 3, 32365, "", "=q4=Heartshatter Breastplate", "=ds=#s5#, #a4#", "", "15%"}; - { 4, 32370, "", "=q4=Nadina's Pendant of Purity", "=ds=#s2#", "", "15%"}; - { 5, 32368, "", "=q4=Tome of the Lightbringer", "=ds=#s16#, #w16#", "", "15%"}; - { 6, 32369, "", "=q4=Blade of Savagery", "=ds=#h1#, #w10#", "", "15%"}; - { 16, 31101, "", "=q4=Pauldrons of the Forgotten Conqueror", "=ds=#m23# #e15#", "", "76%"}; - { 17, 31103, "", "=q4=Pauldrons of the Forgotten Protector", "=ds=#m23# #e15#", "", "80%"}; - { 18, 31102, "", "=q4=Pauldrons of the Forgotten Vanquisher", "=ds=#m23# #e15#", "", "77%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "BTEssencofSouls"; - Next = "BTCouncil"; - }; - - AtlasLoot_Data["BTCouncil"] = { - { 1, 32331, "", "=q4=Cloak of the Illidari Council", "=ds=#s4#", "", "16%"}; - { 2, 32519, "", "=q4=Belt of Divine Guidance", "=ds=#s10#, #a1#", "", "16%"}; - { 3, 32518, "", "=q4=Veil of Turning Leaves", "=ds=#s3#, #a2#", "", "12%"}; - { 4, 32376, "", "=q4=Forest Prowler's Helm", "=ds=#s1#, #a3#", "", "17%"}; - { 5, 32373, "", "=q4=Helm of the Illidari Shatterer", "=ds=#s1#, #a4#", "", "17%"}; - { 6, 32505, "", "=q4=Madness of the Betrayer", "=ds=#s14#", "", "16%"}; - { 16, 31098, "", "=q4=Leggings of the Forgotten Conqueror", "=ds=#m23# #e15#", "", "34%"}; - { 17, 31100, "", "=q4=Leggings of the Forgotten Protector", "=ds=#m23# #e15#", "", "33%"}; - { 18, 31099, "", "=q4=Leggings of the Forgotten Vanquisher", "=ds=#m23# #e15#", "", "34%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "BTShahraz"; - Next = "BTIllidanStormrage"; - }; - - AtlasLoot_Data["BTIllidanStormrage"] = { - { 1, 32524, "", "=q4=Shroud of the Highborne", "=ds=#s4#", "", "16%"}; - { 2, 32525, "", "=q4=Cowl of the Illidari High Lord", "=ds=#s1#, #a1#", "", "15%"}; - { 3, 32235, "", "=q4=Cursed Vision of Sargeras", "=ds=#s1#, #a2#", "", "16%"}; - { 4, 32521, "", "=q4=Faceplate of the Impenetrable", "=ds=#s1#, #a4#", "", "14%"}; - { 5, 32497, "", "=q4=Stormrage Signet Ring", "=ds=#s13#", "", "15%"}; - { 6, 32483, "", "=q4=The Skull of Gul'dan", "=ds=#s14#", "", "16%"}; - { 7, 32496, "", "=q4=Memento of Tyrande", "=ds=#s14#", "", "15%"}; - { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 11, 32837, "", "=q5=Warglaive of Azzinoth", "=ds=#h3#, #w10#, =q1=#m1# =ds=#c9#, #c6#", "", "4%"}; - { 12, 32838, "", "=q5=Warglaive of Azzinoth", "=ds=#h4#, #w10#, =q1=#m1# =ds=#c9#, #c6#", "", "4%"}; - { 16, 31089, "", "=q4=Chestguard of the Forgotten Conqueror", "=ds=#m23# #e15#", "", "78%"}; - { 17, 31091, "", "=q4=Chestguard of the Forgotten Protector", "=ds=#m23# #e15#", "", "79%"}; - { 18, 31090, "", "=q4=Chestguard of the Forgotten Vanquisher", "=ds=#m23# #e15#", "", "78%"}; - { 20, 32471, "", "=q4=Shard of Azzinoth", "=ds=#h1#, #w4#", "", "16%"}; - { 21, 32500, "", "=q4=Crystal Spire of Karabor", "=ds=#h3#, #w6#", "", "15%"}; - { 22, 32374, "", "=q4=Zhar'doom, Greatstaff of the Devourer", "=ds=#w9#", "", "14%"}; - { 23, 32375, "", "=q4=Bulwark of Azzinoth", "=ds=#w8#", "", "14%"}; - { 24, 32336, "", "=q4=Black Bow of the Betrayer", "=ds=#w2#", "", "16%"}; - Prev = "BTCouncil"; - }; - - AtlasLoot_Data["BTTrash"] = { - { 1, 32590, "", "=q4=Nethervoid Cloak", "=ds=#s4#", "", "1%"}; - { 2, 34012, "", "=q4=Shroud of the Final Stand", "=ds=#s4#", "", "1%"}; - { 3, 32609, "", "=q4=Boots of the Divine Light", "=ds=#s12#, #a1#", "", "1%"}; - { 4, 32593, "", "=q4=Treads of the Den Mother", "=ds=#s12#, #a2#", "", "1%"}; - { 5, 32592, "", "=q4=Chestguard of Relentless Storms", "=ds=#s5#, #a3#", "", "1%"}; - { 6, 32608, "", "=q4=Pillager's Gauntlets", "=ds=#s9#, #a4#", "", "1%"}; - { 7, 32606, "", "=q4=Girdle of the Lightbearer", "=ds=#s10#, #a4#", "", "1%"}; - { 8, 32591, "", "=q4=Choker of Serrated Blades", "=ds=#s2#", "", "1%"}; - { 9, 32589, "", "=q4=Hellfire-Encased Pendant", "=ds=#s2#", "", "1%"}; - { 10, 32526, "", "=q4=Band of Devastation", "=ds=#s13#", "", "1%"}; - { 11, 32528, "", "=q4=Blessed Band of Karabor", "=ds=#s13#", "", "1%"}; - { 12, 32527, "", "=q4=Ring of Ancient Knowledge", "=ds=#s13#", "", "2%"}; - { 16, 34009, "", "=q4=Hammer of Judgement", "=ds=#h3#, #w6#", "", "1%"}; - { 17, 32943, "", "=q4=Swiftsteel Bludgeon", "=ds=#h1#, #w6#", "", "2%"}; - { 18, 34011, "", "=q4=Illidari Runeshield", "=ds=#w8#", "", "1%"}; - { 20, 32228, "", "=q4=Empyrean Sapphire", "=ds=#e7#", "", "12%"}; - { 21, 32231, "", "=q4=Pyrestone", "=ds=#e7#", "", "8%"}; - { 22, 32229, "", "=q4=Lionseye", "=ds=#e7#", "", "6%"}; - { 23, 32249, "", "=q4=Seaspray Emerald", "=ds=#e7#", "", "9%"}; - { 24, 32230, "", "=q4=Shadowsong Amethyst", "=ds=#e7#", "", "6%"}; - { 25, 32227, "", "=q4=Crimson Spinel", "=ds=#e7#", "", "8%"}; - { 27, 32428, "", "=q3=Heart of Darkness", "=ds=#e8#", "", "16%"}; - { 28, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"}; - }; - - AtlasLoot_Data["BTPatterns"] = { - { 1, 32738, "", "=q4=Plans: Dawnsteel Bracers", "=ds=#p2# (375)"}; - { 2, 32739, "", "=q4=Plans: Dawnsteel Shoulders", "=ds=#p2# (375)"}; - { 3, 32736, "", "=q4=Plans: Swiftsteel Bracers", "=ds=#p2# (375)"}; - { 4, 32737, "", "=q4=Plans: Swiftsteel Shoulders", "=ds=#p2# (375)"}; - { 5, 32748, "", "=q4=Pattern: Bindings of Lightning Reflexes", "=ds=#p7# (375)"}; - { 6, 32744, "", "=q4=Pattern: Bracers of Renewed Life", "=ds=#p7# (375)"}; - { 7, 32750, "", "=q4=Pattern: Living Earth Bindings", "=ds=#p7# (375)"}; - { 8, 32751, "", "=q4=Pattern: Living Earth Shoulders", "=ds=#p7# (375)"}; - { 9, 32749, "", "=q4=Pattern: Shoulders of Lightning Reflexes", "=ds=#p7# (375)"}; - { 10, 32745, "", "=q4=Pattern: Shoulderpads of Renewed Life", "=ds=#p7# (375)"}; - { 11, 32746, "", "=q4=Pattern: Swiftstrike Bracers", "=ds=#p7# (375)"}; - { 12, 32747, "", "=q4=Pattern: Swiftstrike Shoulders", "=ds=#p7# (375)"}; - { 16, 32754, "", "=q4=Pattern: Bracers of Nimble Thought", "=ds=#p8# (375)"}; - { 17, 32755, "", "=q4=Pattern: Mantle of Nimble Thought", "=ds=#p8# (375)"}; - { 18, 32753, "", "=q4=Pattern: Swiftheal Mantle", "=ds=#p8# (375)"}; - { 19, 32752, "", "=q4=Pattern: Swiftheal Wraps", "=ds=#p8# (375)"}; - }; - - - ------------------------------------- - --- Caverns of Time: Hyjal Summit --- - ------------------------------------- - - AtlasLoot_Data["MountHyjalWinterchill"] = { - { 1, 30871, "", "=q4=Bracers of Martyrdom", "=ds=#s8#, #a1#", "", "17%"}; - { 2, 30870, "", "=q4=Cuffs of Devastation", "=ds=#s8#, #a1#", "", "16%"}; - { 3, 30863, "", "=q4=Deadly Cuffs", "=ds=#s8#, #a2#", "", "15%"}; - { 4, 30868, "", "=q4=Rejuvenating Bracers", "=ds=#s8#, #a2#", "", "16%"}; - { 5, 30864, "", "=q4=Bracers of the Pathfinder", "=ds=#s8#, #a3#", "", "15%"}; - { 6, 30869, "", "=q4=Howling Wind Bracers", "=ds=#s8#, #a3#", "", "12%"}; - { 7, 30873, "", "=q4=Stillwater Boots", "=ds=#s12#, #a3#", "", "14%"}; - { 8, 30866, "", "=q4=Blood-stained Pauldrons", "=ds=#s3#, #a4#", "", "15%"}; - { 9, 30862, "", "=q4=Blessed Adamantite Bracers", "=ds=#s8#, #a4#", "", "15%"}; - { 10, 30861, "", "=q4=Furious Shackles", "=ds=#s8#, #a4#", "", "15%"}; - { 16, 30865, "", "=q4=Tracker's Blade", "=ds=#h1#, #w4#", "", "15%"}; - { 17, 30872, "", "=q4=Chronicle of Dark Secrets", "=ds=#s15#", "", "16%"}; - { 19, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 21, 32459, "", "=q1=Time-Phased Phylactery", "=ds=#m3#", "", "8%"}; - Next = "MountHyjalAnetheron"; - }; - - AtlasLoot_Data["MountHyjalAnetheron"] = { - { 1, 30884, "", "=q4=Hatefury Mantle", "=ds=#s3#, #a1#", "", "16%"}; - { 2, 30888, "", "=q4=Anetheron's Noose", "=ds=#s10#, #a1#", "", "16%"}; - { 3, 30885, "", "=q4=Archbishop's Slippers", "=ds=#s12#, #a1#", "", "17%"}; - { 4, 30879, "", "=q4=Don Alejandro's Money Belt", "=ds=#s10#, #a2#", "", "16%"}; - { 5, 30886, "", "=q4=Enchanted Leather Sandals", "=ds=#s12#, #a2#", "", "15%"}; - { 6, 30887, "", "=q4=Golden Links of Restoration", "=ds=#s5#, #a3#", "", "16%"}; - { 7, 30880, "", "=q4=Quickstrider Moccasins", "=ds=#s12#, #a3#", "", "16%"}; - { 8, 30878, "", "=q4=Glimmering Steel Mantle", "=ds=#s3#, #a4#", "", "16%"}; - { 16, 30874, "", "=q4=The Unbreakable Will", "=ds=#h1#, #w10#", "", "16%"}; - { 17, 30881, "", "=q4=Blade of Infamy", "=ds=#h1#, #w10#", "", "15%"}; - { 18, 30883, "", "=q4=Pillar of Ferocity", "=ds=#w9#", "", "16%"}; - { 19, 30882, "", "=q4=Bastion of Light", "=ds=#w8#", "", "15%"}; - { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "MountHyjalWinterchill"; - Next = "MountHyjalKazrogal"; - }; - - AtlasLoot_Data["MountHyjalKazrogal"] = { - { 1, 30895, "", "=q4=Angelista's Sash", "=ds=#s10#, #a1#", "", "16%"}; - { 2, 30916, "", "=q4=Leggings of Channeled Elements", "=ds=#s11#, #a1#", "", "17%"}; - { 3, 30894, "", "=q4=Blue Suede Shoes", "=ds=#s12#, #a1#", "", "16%"}; - { 4, 30917, "", "=q4=Razorfury Mantle", "=ds=#s3#, #a2#", "", "17%"}; - { 5, 30914, "", "=q4=Belt of the Crescent Moon", "=ds=#s10#, #a2#", "", "9%"}; - { 6, 30891, "", "=q4=Black Featherlight Boots", "=ds=#s12#, #a2#", "", "14%"}; - { 7, 30892, "", "=q4=Beast-tamer's Shoulders", "=ds=#s3#, #a3#", "", "15%"}; - { 8, 30919, "", "=q4=Valestalker Girdle", "=ds=#s10#, #a3#", "", "15%"}; - { 9, 30893, "", "=q4=Sun-touched Chain Leggings", "=ds=#s11#, #a3#", "", "15%"}; - { 10, 30915, "", "=q4=Belt of Seething Fury", "=ds=#s10#, #a4#", "", "17%"}; - { 16, 30918, "", "=q4=Hammer of Atonement", "=ds=#h3#, #w6#", "", "17%"}; - { 17, 30889, "", "=q4=Kaz'rogal's Hardened Heart", "=ds=#w8#", "", "16%"}; - { 19, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "MountHyjalAnetheron"; - Next = "MountHyjalAzgalor"; - }; - - AtlasLoot_Data["MountHyjalAzgalor"] = { - { 1, 30899, "", "=q4=Don Rodrigo's Poncho", "=ds=#s5#, #a2#", "", "15%"}; - { 2, 30898, "", "=q4=Shady Dealer's Pantaloons", "=ds=#s11#, #a2#", "", "16%"}; - { 3, 30900, "", "=q4=Bow-stitched Leggings", "=ds=#s11#, #a3#", "", "15%"}; - { 4, 30896, "", "=q4=Glory of the Defender", "=ds=#s5#, #a4#", "", "15%"}; - { 5, 30897, "", "=q4=Girdle of Hope", "=ds=#s10#, #a4#", "", "15%"}; - { 6, 30901, "", "=q4=Boundless Agony", "=ds=#h1#, #w4#", "", "16%"}; - { 16, 31092, "", "=q4=Gloves of the Forgotten Conqueror", "=ds=#m23# #e15#", "", "74%"}; - { 17, 31094, "", "=q4=Gloves of the Forgotten Protector", "=ds=#m23# #e15#", "", "73%"}; - { 18, 31093, "", "=q4=Gloves of the Forgotten Vanquisher", "=ds=#m23# #e15#", "", "73%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "MountHyjalKazrogal"; - Next = "MountHyjalArchimonde"; - }; - - AtlasLoot_Data["MountHyjalArchimonde"] = { - { 1, 30913, "", "=q4=Robes of Rhonin", "=ds=#s5#, #a1#", "", "15%"}; - { 2, 30912, "", "=q4=Leggings of Eternity", "=ds=#s11#, #a1#", "", "15%"}; - { 3, 30905, "", "=q4=Midnight Chestguard", "=ds=#s5#, #a2#", "", "14%"}; - { 4, 30907, "", "=q4=Mail of Fevered Pursuit", "=ds=#s5#, #a3#", "", "15%"}; - { 5, 30904, "", "=q4=Savior's Grasp", "=ds=#s5#, #a4#", "", "14%"}; - { 6, 30903, "", "=q4=Legguards of Endless Rage", "=ds=#s11#, #a4#", "", "15%"}; - { 7, 30911, "", "=q4=Scepter of Purification", "=ds=#s15#", "", "15%"}; - { 9, 30910, "", "=q4=Tempest of Chaos", "=ds=#h3#, #w10#", "", "14%"}; - { 10, 30902, "", "=q4=Cataclysm's Edge", "=ds=#h2#, #w10#", "", "15%"}; - { 11, 30908, "", "=q4=Apostle of Argus", "=ds=#w9#", "", "15%"}; - { 12, 30909, "", "=q4=Antonidas's Aegis of Rapt Concentration", "=ds=#w8#", "", "15%"}; - { 13, 30906, "", "=q4=Bristleblitz Striker", "=ds=#w2#", "", "16%"}; - { 16, 31097, "", "=q4=Helm of the Forgotten Conqueror", "=ds=#m23# #e15#", "", "70%"}; - { 17, 31095, "", "=q4=Helm of the Forgotten Protector", "=ds=#m23# #e15#", "", "72%"}; - { 18, 31096, "", "=q4=Helm of the Forgotten Vanquisher", "=ds=#m23# #e15#", "", "73%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "MountHyjalAzgalor"; - }; - - AtlasLoot_Data["MountHyjalTrash"] = { - { 1, 32590, "", "=q4=Nethervoid Cloak", "=ds=#s4#", "", "1%"}; - { 2, 34010, "", "=q4=Pepe's Shroud of Pacification", "=ds=#s4#", "", "1%"}; - { 3, 32609, "", "=q4=Boots of the Divine Light", "=ds=#s12#, #a1#", "", "1%"}; - { 4, 32592, "", "=q4=Chestguard of Relentless Storms", "=ds=#s5#, #a3#", "", "1%"}; - { 5, 32591, "", "=q4=Choker of Serrated Blades", "=ds=#s2#", "", "1%"}; - { 6, 32589, "", "=q4=Hellfire-Encased Pendant", "=ds=#s2#", "", "1%"}; - { 7, 34009, "", "=q4=Hammer of Judgement", "=ds=#h3#, #w6#", "", "1%"}; - { 8, 32946, "", "=q4=Claw of Molten Fury", "=ds=#h3#, #w13#", "", "0.46%"}; - { 9, 32945, "", "=q4=Fist of Molten Fury", "=ds=#h4#, #w13#", "", "0.42%"}; - { 11, 32428, "", "=q3=Heart of Darkness", "=ds=#e8#", "", "16%"}; - { 12, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"}; - { 16, 32285, "", "=q4=Design: Flashing Crimson Spinel", "=ds=#p12# (375)", "", "4%"}; - { 17, 32296, "", "=q4=Design: Great Lionseye", "=ds=#p12# (375)", "", "3%"}; - { 18, 32303, "", "=q4=Design: Inscribed Pyrestone", "=ds=#p12# (375)", "", "3%"}; - { 19, 32295, "", "=q4=Design: Mystic Lionseye", "=ds=#p12# (375)", "", "4%"}; - { 20, 32298, "", "=q4=Design: Shifting Shadowsong Amethyst", "=ds=#p12# (375)", "", "4%"}; - { 21, 32297, "", "=q4=Design: Sovereign Shadowsong Amethyst", "=ds=#p12# (375)", "", "4%"}; - { 22, 32289, "", "=q4=Design: Stormy Empyrean Sapphire", "=ds=#p12# (375)", "", "4%"}; - { 23, 32307, "", "=q4=Design: Veiled Pyrestone", "=ds=#p12# (375)", "", "3%"}; - }; - - - ------------------------------------------------ - --- Coilfang Reservoir: Serpentshrine Cavern --- - ------------------------------------------------ - - AtlasLoot_Data["CFRSerpentHydross"] = { - { 1, 30056, "", "=q4=Robe of Hateful Echoes", "=ds=#s5#, #a1#", "", "18%"}; - { 2, 32516, "", "=q4=Wraps of Purification", "=ds=#s8#, #a1#", "", "18%"}; - { 3, 30050, "", "=q4=Boots of the Shifting Nightmare", "=ds=#s12#, #a1#", "", "17%"}; - { 4, 30055, "", "=q4=Shoulderpads of the Stranger", "=ds=#s3#, #a2#", "", "16%"}; - { 5, 30047, "", "=q4=Blackfathom Warbands", "=ds=#s8#, #a3#", "", "19%"}; - { 6, 30054, "", "=q4=Ranger-General's Chestguard", "=ds=#s5#, #a3#", "", "18%"}; - { 7, 30048, "", "=q4=Brighthelm of Justice", "=ds=#s1#, #a4#", "", "21%"}; - { 8, 30053, "", "=q4=Pauldrons of the Wardancer", "=ds=#s3#, #a4#", "", "16%"}; - { 16, 30052, "", "=q4=Ring of Lethality", "=ds=#s13#", "", "20%"}; - { 17, 33055, "", "=q4=Band of Vile Aggression", "=ds=#s13#", "", "14%"}; - { 18, 30664, "", "=q4=Living Root of the Wildheart", "=ds=#s14#, =q1=#m1# =ds=#c1#", "", "18%"}; - { 19, 30629, "", "=q4=Scarab of Displacement", "=ds=#s14#", "", "21%"}; - { 20, 30049, "", "=q4=Fathomstone", "=ds=#s15#", "", "19%"}; - { 21, 30051, "", "=q4=Idol of the Crescent Goddess", "=ds=#s16#, #w14#", "", "11%"}; - { 23, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Next = "CFRSerpentLurker"; - }; - - AtlasLoot_Data["CFRSerpentLurker"] = { - { 1, 30064, "", "=q4=Cord of Screaming Terrors", "=ds=#s10#, #a1#", "", "17%"}; - { 2, 30067, "", "=q4=Velvet Boots of the Guardian", "=ds=#s12#, #a1#", "", "17%"}; - { 3, 30062, "", "=q4=Grove-Bands of Remulos", "=ds=#s8#, #a2#", "", "21%"}; - { 4, 30060, "", "=q4=Boots of Effortless Striking", "=ds=#s12#, #a2#", "", "21%"}; - { 5, 30066, "", "=q4=Tempest-Strider Boots", "=ds=#s12#, #a3#", "", "21%"}; - { 6, 30065, "", "=q4=Glowing Breastplate of Truth", "=ds=#s5#, #a4#", "", "20%"}; - { 7, 30057, "", "=q4=Bracers of Eradication", "=ds=#s8#, #a4#", "", "19%"}; - { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 16, 30059, "", "=q4=Choker of Animalistic Fury", "=ds=#s2#", "", "21%"}; - { 17, 30061, "", "=q4=Ancestral Ring of Conquest", "=ds=#s13#", "", "20%"}; - { 18, 33054, "", "=q4=The Seal of Danzalar", "=ds=#s13#", "", "14%"}; - { 19, 30665, "", "=q4=Earring of Soulful Meditation", "=ds=#s14#, =q1=#m1# =ds=#c5#", "", "18%"}; - { 20, 30063, "", "=q4=Libram of Absolute Truth", "=ds=#s16#, #w16#", "", "17%"}; - { 21, 30058, "", "=q4=Mallet of the Tides", "=ds=#h1#, #w6#", "", "20%"}; - Prev = "CFRSerpentHydross"; - Next = "CFRSerpentLeotheras"; - }; - - AtlasLoot_Data["CFRSerpentLeotheras"] = { - { 1, 30092, "", "=q4=Orca-Hide Boots", "=ds=#s12#, #a2#", "", "13%"}; - { 2, 30097, "", "=q4=Coral-Barbed Shoulderpads", "=ds=#s3#, #a3#", "", "15%"}; - { 3, 30091, "", "=q4=True-Aim Stalker Bands", "=ds=#s8#, #a3#", "", "17%"}; - { 4, 30096, "", "=q4=Girdle of the Invulnerable", "=ds=#s10#, #a4#", "", "14%"}; - { 5, 30627, "", "=q4=Tsunami Talisman", "=ds=#s14#", "", "15%"}; - { 6, 30095, "", "=q4=Fang of the Leviathan", "=ds=#h3#, #w10#", "", "14%"}; - { 16, 30239, "", "=q4=Gloves of the Vanquished Champion", "=ds=#m22# #e15#", "", "63%"}; - { 17, 30240, "", "=q4=Gloves of the Vanquished Defender", "=ds=#m22# #e15#", "", "67%"}; - { 18, 30241, "", "=q4=Gloves of the Vanquished Hero", "=ds=#m22# #e15#", "", "65%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "CFRSerpentLurker"; - Next = "CFRSerpentKarathress"; - }; - - AtlasLoot_Data["CFRSerpentKarathress"] = { - { 1, 30100, "", "=q4=Soul-Strider Boots", "=ds=#s12#, #a1#", "", "15%"}; - { 2, 30101, "", "=q4=Bloodsea Brigand's Vest", "=ds=#s5#, #a2#", "", "15%"}; - { 3, 30099, "", "=q4=Frayed Tether of the Drowned", "=ds=#s2#", "", "15%"}; - { 4, 30663, "", "=q4=Fathom-Brooch of the Tidewalker", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "15%"}; - { 5, 30626, "", "=q4=Sextant of Unstable Currents", "=ds=#s14#", "", "14%"}; - { 6, 30090, "", "=q4=World Breaker", "=ds=#h2#, #w6#", "", "15%"}; - { 16, 30245, "", "=q4=Leggings of the Vanquished Champion", "=ds=#m22# #e15#", "", "62%"}; - { 17, 30246, "", "=q4=Leggings of the Vanquished Defender", "=ds=#m22# #e15#", "", "61%"}; - { 18, 30247, "", "=q4=Leggings of the Vanquished Hero", "=ds=#m22# #e15#", "", "62%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "CFRSerpentLeotheras"; - Next = "CFRSerpentMorogrim"; - }; - - AtlasLoot_Data["CFRSerpentMorogrim"] = { - { 1, 30098, "", "=q4=Razor-Scale Battlecloak", "=ds=#s4#", "", "22%"}; - { 2, 30079, "", "=q4=Illidari Shoulderpads", "=ds=#s3#, #a1#", "", "15%"}; - { 3, 30075, "", "=q4=Gnarled Chestpiece of the Ancients", "=ds=#s5#, #a2#", "", "19%"}; - { 4, 30085, "", "=q4=Mantle of the Tireless Tracker", "=ds=#s3#, #a3#", "", "20%"}; - { 5, 30068, "", "=q4=Girdle of the Tidal Call", "=ds=#s10#, #a3#", "", "17%"}; - { 6, 30084, "", "=q4=Pauldrons of the Argent Sentinel", "=ds=#s3#, #a4#", "", "21%"}; - { 7, 30081, "", "=q4=Warboots of Obliteration", "=ds=#s12#, #a4#", "", "21%"}; - { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 16, 30008, "", "=q4=Pendant of the Lost Ages", "=ds=#s2#", "", "18%"}; - { 17, 30083, "", "=q4=Ring of Sundered Souls", "=ds=#s13#", "", "21%"}; - { 18, 33058, "", "=q4=Band of the Vigilant", "=ds=#s13#", "", "19%"}; - { 19, 30720, "", "=q4=Serpent-Coil Braid", "=ds=#s14#, =q1=#m1# =ds=#c3#", "", "20%"}; - { 20, 30082, "", "=q4=Talon of Azshara", "=ds=#h1#, #w10#", "", "20%"}; - { 21, 30080, "", "=q4=Luminescent Rod of the Naaru", "=ds=#w12#", "", "15%"}; - Prev = "CFRSerpentKarathress"; - Next = "CFRSerpentVashj"; - }; - - AtlasLoot_Data["CFRSerpentVashj"] = { - { 1, 30107, "", "=q4=Vestments of the Sea-Witch", "=ds=#s5#, #a1#", "", "13%"}; - { 2, 30111, "", "=q4=Runetotem's Mantle", "=ds=#s3#, #a2#", "", "14%"}; - { 3, 30106, "", "=q4=Belt of One-Hundred Deaths", "=ds=#s10#, #a2#", "", "12%"}; - { 4, 30104, "", "=q4=Cobra-Lash Boots", "=ds=#s12#, #a3#", "", "13%"}; - { 5, 30102, "", "=q4=Krakken-Heart Breastplate", "=ds=#s5#, #a4#", "", "15%"}; - { 6, 30112, "", "=q4=Glorious Gauntlets of Crestfall", "=ds=#s9#, #a4#", "", "14%"}; - { 7, 30109, "", "=q4=Ring of Endless Coils", "=ds=#s13#", "", "13%"}; - { 8, 30110, "", "=q4=Coral Band of the Revived", "=ds=#s13#", "", "16%"}; - { 9, 30621, "", "=q4=Prism of Inner Calm", "=ds=#s14#", "", "13%"}; - { 10, 30103, "", "=q4=Fang of Vashj", "=ds=#h1#, #w4#", "", "14%"}; - { 11, 30108, "", "=q4=Lightfathom Scepter", "=ds=#h3#, #w6#", "", "14%"}; - { 12, 30105, "", "=q4=Serpent Spine Longbow", "=ds=#w2#", "", "13%"}; - { 16, 30242, "", "=q4=Helm of the Vanquished Champion", "=ds=#m22# #e15#", "", "61%"}; - { 17, 30243, "", "=q4=Helm of the Vanquished Defender", "=ds=#m22# #e15#", "", "62%"}; - { 18, 30244, "", "=q4=Helm of the Vanquished Hero", "=ds=#m22# #e15#", "", "63%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 22, 29906, "", "=q1=Vashj's Vial Remnant", "=ds=#m3#", "", "35%"}; - Prev = "CFRSerpentMorogrim"; - }; - - AtlasLoot_Data["CFRSerpentTrash"] = { - { 1, 30027, "", "=q4=Boots of Courage Unending", "=ds=#s12#, #a4#", "", "3%"}; - { 2, 30022, "", "=q4=Pendant of the Perilous", "=ds=#s2#", "", "3%"}; - { 3, 30620, "", "=q4=Spyglass of the Hidden Fleet", "=ds=#s14#", "", "4%"}; - { 4, 30023, "", "=q4=Totem of the Maelstrom", "=ds=#s16#, #w15#", "", "3%"}; - { 5, 30021, "", "=q4=Wildfury Greatstaff", "=ds=#w9#", "", "3%"}; - { 6, 30025, "", "=q4=Serpentshrine Shuriken", "=ds=#w11#", "", "3%"}; - { 8, 30324, "", "=q4=Plans: Red Havoc Boots", "=ds=#p2# (375)", "", "1%"}; - { 9, 30322, "", "=q4=Plans: Red Belt of Battle", "=ds=#p2# (375)", "", "2%"}; - { 10, 30323, "", "=q4=Plans: Boots of the Protector", "=ds=#p2# (375)", "", "2%"}; - { 11, 30321, "", "=q4=Plans: Belt of the Guardian", "=ds=#p2# (375)", "", "2%"}; - { 12, 30280, "", "=q4=Pattern: Belt of Blasting", "=ds=#p8# (375)", "", "1%"}; - { 13, 30282, "", "=q4=Pattern: Boots of Blasting", "=ds=#p8# (375)", "", "1%"}; - { 14, 30283, "", "=q4=Pattern: Boots of the Long Road", "=ds=#p8# (375)", "", "2%"}; - { 15, 30281, "", "=q4=Pattern: Belt of the Long Road", "=ds=#p8# (375)", "", "1%"}; - { 16, 30308, "", "=q4=Pattern: Hurricane Boots", "=ds=#p7# (375)", "", "1%"}; - { 17, 30304, "", "=q4=Pattern: Monsoon Belt", "=ds=#p7# (375)", "", "1%"}; - { 18, 30305, "", "=q4=Pattern: Boots of Natural Grace", "=ds=#p7# (375)", "", "2%"}; - { 19, 30307, "", "=q4=Pattern: Boots of the Crimson Hawk", "=ds=#p7# (375)", "", "1%"}; - { 20, 30306, "", "=q4=Pattern: Boots of Utter Darkness", "=ds=#p7# (375)", "", "2%"}; - { 21, 30301, "", "=q4=Pattern: Belt of Natural Power", "=ds=#p7# (375)", "", "1%"}; - { 22, 30303, "", "=q4=Pattern: Belt of the Black Eagle", "=ds=#p7# (375)", "", "1%"}; - { 23, 30302, "", "=q4=Pattern: Belt of Deep Shadow", "=ds=#p7# (375)", "", "1%"}; - { 25, 30183, "", "=q4=Nether Vortex", "=ds=#e8#", "", "75%"}; - { 27, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"}; - }; - - -------------------- - --- Gruul's Lair --- - -------------------- - - AtlasLoot_Data["GruulsLairHighKingMaulgar"] = { - { 1, 28797, "", "=q4=Brute Cloak of the Ogre-Magi", "#s4#", "", "8.39%"}; - { 2, 28799, "", "=q4=Belt of Divine Inspiration", "#s10#, #a1#", "", "9.98%"}; - { 3, 28796, "", "=q4=Malefic Mask of the Shadows", "=ds=#s1#, #a2#", "", "12.93%"}; - { 4, 28801, "", "=q4=Maulgar's Warhelm", "=ds=#s1#, #a3#", "", "21.32%"}; - { 5, 28795, "", "=q4=Bladespire Warbands", "=ds=#s8#, #a4#", "", "12.02%"}; - { 6, 28800, "", "=q4=Hammer of the Naaru", "=ds=#h2#, #w6#", "", "15.87%"}; - { 16, 29763, "", "=q4=Pauldrons of the Fallen Champion", "=ds=#m21# #e15#", "", "22.68%"}; - { 17, 29764, "", "=q4=Pauldrons of the Fallen Defender", "=ds=#m21# #e15#", "", "34.69%"}; - { 18, 29762, "", "=q4=Pauldrons of the Fallen Hero", "=ds=#m21# #e15#", "", "25.62%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Next = "GruulGruul"; - }; - - AtlasLoot_Data["GruulGruul"] = { - { 1, 28804, "", "=q4=Collar of Cho'gall", "=ds=#s1#, #a1#", "", "14.96%"}; - { 2, 28803, "", "=q4=Cowl of Nature's Breath", "=ds=#s1#, #a2#", "", "14.21%"}; - { 3, 28828, "", "=q4=Gronn-Stitched Girdle", "=ds=#s10#, #a2#", "", "11.22%"}; - { 4, 28827, "", "=q4=Gauntlets of the Dragonslayer", "=ds=#s9#, #a3#", "", "7.48%"}; - { 5, 28810, "", "=q4=Windshear Boots", "=ds=#s12#, #a3#", "", "10.22%"}; - { 6, 28824, "", "=q4=Gauntlets of Martial Perfection", "=ds=#s9#, #a4#", "", "12.22%"}; - { 7, 28822, "", "=q4=Teeth of Gruul", "=ds=#s2#", "", "11.47%"}; - { 8, 28823, "", "=q4=Eye of Gruul", "=ds=#s14#", "", "6.73%"}; - { 9, 28830, "", "=q4=Dragonspine Trophy", "=ds=#s14#", "", "11.72%"}; - { 11, 31750, "", "=q1=Earthen Signet", "=ds=#m3#", "", "100%"}; - { 16, 29766, "", "=q4=Leggings of the Fallen Champion", "=ds=#m21# #e15#", "", "23.69%"}; - { 17, 29767, "", "=q4=Leggings of the Fallen Defender", "=ds=#m21# #e15#", "", "17.46%"}; - { 18, 29765, "", "=q4=Leggings of the Fallen Hero", "=ds=#m21# #e15#", "", "30.17%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 22, 28802, "", "=q4=Bloodmaw Magus-Blade", "=ds=#h3#, #w10#", "", "9.23%"}; - { 23, 28794, "", "=q4=Axe of the Gronn Lords", "=ds=#h2#, #w1#", "", "6.73%"}; - { 24, 28825, "", "=q4=Aldori Legacy Defender", "=ds=#w8#", "", "2.99%"}; - { 25, 28826, "", "=q4=Shuriken of Negation", "=ds=#w11#", "", "16.21%"}; - Prev = "GruulsLairHighKingMaulgar"; - }; - --------------------------- - --- Gruul's Lair HEROIC --- - --------------------------- - - AtlasLoot_Data["GruulsLairHighKingMaulgarHEROIC"] = { - { 1, 228797, "", "=q4=Brute Cloak of the Ogre-Magi", "#s4#", "", "8.39%"}; - { 2, 228799, "", "=q4=Belt of Divine Inspiration", "#s10#, #a1#", "", "9.98%"}; - { 3, 228796, "", "=q4=Malefic Mask of the Shadows", "=ds=#s1#, #a2#", "", "12.93%"}; - { 4, 228801, "", "=q4=Maulgar's Warhelm", "=ds=#s1#, #a3#", "", "21.32%"}; - { 5, 228795, "", "=q4=Bladespire Warbands", "=ds=#s8#, #a4#", "", "12.02%"}; - { 6, 228800, "", "=q4=Hammer of the Naaru", "=ds=#h2#, #w6#", "", "15.87%"}; - { 16, 229763, "", "=q4=Pauldrons of the Fallen Champion", "=ds=#m21# #e15#", "", "22.68%"}; - { 17, 229764, "", "=q4=Pauldrons of the Fallen Defender", "=ds=#m21# #e15#", "", "34.69%"}; - { 18, 229762, "", "=q4=Pauldrons of the Fallen Hero", "=ds=#m21# #e15#", "", "25.62%"}; - { 20, 229434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Next = "GruulGruulHEROIC"; - }; - - AtlasLoot_Data["GruulGruulHEROIC"] = { - { 1, 228804, "", "=q4=Collar of Cho'gall", "=ds=#s1#, #a1#", "", "14.96%"}; - { 2, 228803, "", "=q4=Cowl of Nature's Breath", "=ds=#s1#, #a2#", "", "14.21%"}; - { 3, 228828, "", "=q4=Gronn-Stitched Girdle", "=ds=#s10#, #a2#", "", "11.22%"}; - { 4, 228827, "", "=q4=Gauntlets of the Dragonslayer", "=ds=#s9#, #a3#", "", "7.48%"}; - { 5, 228810, "", "=q4=Windshear Boots", "=ds=#s12#, #a3#", "", "10.22%"}; - { 6, 228824, "", "=q4=Gauntlets of Martial Perfection", "=ds=#s9#, #a4#", "", "12.22%"}; - { 7, 228822, "", "=q4=Teeth of Gruul", "=ds=#s2#", "", "11.47%"}; - { 8, 228823, "", "=q4=Eye of Gruul", "=ds=#s14#", "", "6.73%"}; - { 9, 228830, "", "=q4=Dragonspine Trophy", "=ds=#s14#", "", "11.72%"}; - { 11, 31750, "", "=q1=Earthen Signet", "=ds=#m3#", "", "100%"}; - { 16, 229766, "", "=q4=Leggings of the Fallen Champion", "=ds=#m21# #e15#", "", "23.69%"}; - { 17, 229767, "", "=q4=Leggings of the Fallen Defender", "=ds=#m21# #e15#", "", "17.46%"}; - { 18, 229765, "", "=q4=Leggings of the Fallen Hero", "=ds=#m21# #e15#", "", "30.17%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 22, 228802, "", "=q4=Bloodmaw Magus-Blade", "=ds=#h3#, #w10#", "", "9.23%"}; - { 23, 228794, "", "=q4=Axe of the Gronn Lords", "=ds=#h2#, #w1#", "", "6.73%"}; - { 24, 228825, "", "=q4=Aldori Legacy Defender", "=ds=#w8#", "", "2.99%"}; - { 25, 228826, "", "=q4=Shuriken of Negation", "=ds=#w11#", "", "16.21%"}; - Prev = "GruulsLairHighKingMaulgarHEROIC"; - }; - - -------------------------------------------- - --- Hellfire Citadel: Magtheridon's Lair --- - -------------------------------------------- - - AtlasLoot_Data["HCMagtheridon"] = { - { 1, 28777, "", "=q4=Cloak of the Pit Stalker", "=ds=#s4#"}; - { 2, 28780, "", "=q4=Soul-Eater's Handwraps", "=ds=#s9#, #a1#"}; - { 3, 28776, "", "=q4=Liar's Tongue Gloves", "=ds=#s9#, #a2#"}; - { 4, 28778, "", "=q4=Terror Pit Girdle", "=ds=#s10#, #a3#"}; - { 5, 28775, "", "=q4=Thundering Greathelm", "=ds=#s1#, #a4#"}; - { 6, 28779, "", "=q4=Girdle of the Endless Pit", "=ds=#s10#, #a4#"}; - { 7, 28789, "", "=q4=Eye of Magtheridon", "=ds=#s14#"}; - { 8, 28781, "", "=q4=Karaborian Talisman", "=ds=#s15#"}; - { 10, 28774, "", "=q4=Glaive of the Pit", "=ds=#w7#"}; - { 11, 28782, "", "=q4=Crystalheart Pulse-Staff", "=ds=#w9#"}; - { 12, 29458, "", "=q4=Aegis of the Vindicator", "=ds=#w8#"}; - { 13, 28783, "", "=q4=Eredar Wand of Obliteration", "=ds=#w12#"}; - { 15, 34846, "", "=q2=Black Sack of Gems", "=ds=#e1#"}; - { 16, 29754, "", "=q4=Chestguard of the Fallen Champion", "=ds=#m21# #e15#"}; - { 17, 29753, "", "=q4=Chestguard of the Fallen Defender", "=ds=#m21# #e15#"}; - { 18, 29755, "", "=q4=Chestguard of the Fallen Hero", "=ds=#m21# #e15#"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 22, 32385, "", "=q4=Magtheridon's Head", "=ds=#m2#", "", "100%"}; - { 23, 28791, "", "=q4=Ring of the Recalcitrant", "=q1=#m4#: =ds=#s13#"}; - { 24, 28790, "", "=q4=Naaru Lightwarden's Band", "=q1=#m4#: =ds=#s13#"}; - { 25, 28793, "", "=q4=Band of Crimson Fury", "=q1=#m4#: =ds=#s13#"}; - { 26, 28792, "", "=q4=A'dal's Signet of Defense", "=q1=#m4#: =ds=#s13#"}; - { 28, 34845, "", "=q4=Pit Lord's Satchel", "=ds=#e1# #m15#"}; - }; - --------------------------------------------------- - --- Hellfire Citadel: Magtheridon's Lair Heroic --- - --------------------------------------------------- - - AtlasLoot_Data["HCMagtheridonHEROIC"] = { - { 1, 228777, "", "=q4=Cloak of the Pit Stalker", "=ds=#s4#"}; - { 2, 228780, "", "=q4=Soul-Eater's Handwraps", "=ds=#s9#, #a1#"}; - { 3, 228776, "", "=q4=Liar's Tongue Gloves", "=ds=#s9#, #a2#"}; - { 4, 228778, "", "=q4=Terror Pit Girdle", "=ds=#s10#, #a3#"}; - { 5, 228775, "", "=q4=Thundering Greathelm", "=ds=#s1#, #a4#"}; - { 6, 228779, "", "=q4=Girdle of the Endless Pit", "=ds=#s10#, #a4#"}; - { 7, 228789, "", "=q4=Eye of Magtheridon", "=ds=#s14#"}; - { 8, 228781, "", "=q4=Karaborian Talisman", "=ds=#s15#"}; - { 10, 228774, "", "=q4=Glaive of the Pit", "=ds=#w7#"}; - { 11, 228782, "", "=q4=Crystalheart Pulse-Staff", "=ds=#w9#"}; - { 12, 229458, "", "=q4=Aegis of the Vindicator", "=ds=#w8#"}; - { 13, 228783, "", "=q4=Eredar Wand of Obliteration", "=ds=#w12#"}; - { 15, 34846, "", "=q2=Black Sack of Gems", "=ds=#e1#"}; - { 16, 229754, "", "=q4=Chestguard of the Fallen Champion", "=ds=#m21# #e15#"}; - { 17, 229753, "", "=q4=Chestguard of the Fallen Defender", "=ds=#m21# #e15#"}; - { 18, 229755, "", "=q4=Chestguard of the Fallen Hero", "=ds=#m21# #e15#"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 22, 32385, "", "=q4=Magtheridon's Head", "=ds=#m2#", "", "100%"}; - { 23, 28791, "", "=q4=Ring of the Recalcitrant", "=q1=#m4#: =ds=#s13#"}; - { 24, 28790, "", "=q4=Naaru Lightwarden's Band", "=q1=#m4#: =ds=#s13#"}; - { 25, 28793, "", "=q4=Band of Crimson Fury", "=q1=#m4#: =ds=#s13#"}; - { 26, 28792, "", "=q4=A'dal's Signet of Defense", "=q1=#m4#: =ds=#s13#"}; - { 28, 34845, "", "=q4=Pit Lord's Satchel", "=ds=#e1# #m15#"}; - }; - ---------------- - --- Karazhan --- - ---------------- - - AtlasLoot_Data["KaraCharredBoneFragment"] = { - { 1, 24152, "INV_Misc_Bone_10", "=q1=Charred Bone Fragment", "=ds=#m3#"}; - }; - - AtlasLoot_Data["KaraNamed"] = { - { 1, 0, "Ability_Hunter_Pet_Spider", "=q6="..BabbleBoss["Hyakiss the Lurker"], "=q5="..AL["Spider"]}; - { 2, 30675, "", "=q4=Lurker's Cord", "=ds=#s10#, #a1# =q2=#m16#", "", "32.81%"}; - { 3, 30676, "", "=q4=Lurker's Grasp", "=ds=#s10#, #a2# =q2=#m16#", "", "9.38%"}; - { 4, 30677, "", "=q4=Lurker's Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "23.44%"}; - { 5, 30678, "", "=q4=Lurker's Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "15.62%"}; - { 7, 0, "Ability_Hunter_Pet_Hyena", "=q6="..BabbleBoss["Rokad the Ravager"], "=q5="..AL["Darkhound"]}; - { 8, 30684, "", "=q4=Ravager's Cuffs", "=ds=#s8#, #a1# =q2=#m16#", "", "27.78%"}; - { 9, 30685, "", "=q4=Ravager's Wrist-Wraps", "=ds=#s8#, #a2# =q2=#m16#", "", "11.11%"}; - { 10, 30686, "", "=q4=Ravager's Bands", "=ds=#s8#, #a3# =q2=#m16#", "", "23.33%"}; - { 11, 30687, "", "=q4=Ravager's Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "8.89%"}; - { 16, 0, "Ability_Hunter_Pet_Bat", "=q6="..BabbleBoss["Shadikith the Glider"], "=q5="..AL["Bat"]}; - { 17, 30680, "", "=q4=Glider's Foot-Wraps", "=ds=#s12#, #a1# =q2=#m16#", "", "9.68%"}; - { 18, 30681, "", "=q4=Glider's Boots", "=ds=#s12#, #a2# =q2=#m16#", "", "22.58%"}; - { 19, 30682, "", "=q4=Glider's Sabatons", "=ds=#s12#, #a3# =q2=#m16#", "", "9.68%"}; - { 20, 30683, "", "=q4=Glider's Greaves", "=ds=#s12#, #a4# =q2=#m16#", "", "8.60%"}; - }; - - AtlasLoot_Data["KaraAttumen"] = { - { 1, 28477, "", "=q4=Harbinger Bands", "=ds=#s8#, #a1#", "", "14.68%"}; - { 2, 28507, "", "=q4=Handwraps of Flowing Thought", "=ds=#s9#, #a1#", "", "12.44%"}; - { 3, 28508, "", "=q4=Gloves of Saintly Blessings", "=ds=#s9#, #a1#", "", "11.69%"}; - { 4, 28453, "", "=q4=Bracers of the White Stag", "=ds=#s8#, #a2#", "", "12.19%"}; - { 5, 28506, "", "=q4=Gloves of Dexterous Manipulation", "=ds=#s9#, #a2#", "", "14.68%"}; - { 6, 28503, "", "=q4=Whirlwind Bracers", "=ds=#s8#, #a3#", "", "9.20%"}; - { 7, 28454, "", "=q4=Stalker's War Bands", "=ds=#s8#, #a3#", "", "16.17%"}; - { 8, 28502, "", "=q4=Vambraces of Courage", "=ds=#s8#, #a4#", "", "10.70%"}; - { 9, 28505, "", "=q4=Gauntlets of Renewed Hope", "=ds=#s9#, #a4#", "", "10.95%"}; - { 16, 28509, "", "=q4=Worgen Claw Necklace", "=ds=#s2#", "", "17.16%"}; - { 17, 28510, "", "=q4=Spectral Band of Innervation", "=ds=#s13#", "", "10.70%"}; - { 18, 28504, "", "=q4=Steelhawk Crossbow", "=ds=#w3#", "", "12.44%"}; - { 19, 30480, "", "=q4=Fiery Warhorse's Reins", "=ds=#e12#", "", "0.25%"}; - { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 23, 23809, "", "=q3=Schematic: Stabilized Eternium Scope", "=ds=#p5# (375)", "", "1.00%"}; - Next = "KaraMoroes"; - }; - - AtlasLoot_Data["KaraMoroes"] = { - { 1, 28529, "", "=q4=Royal Cloak of Arathi Kings", "=ds=#s4#", "", "15.91%"}; - { 2, 28570, "", "=q4=Shadow-Cloak of Dalaran", "=ds=#s4#", "", "12.18%"}; - { 3, 28565, "", "=q4=Nethershard Girdle", "=ds=#s10#, #a1#", "", "14.08%"}; - { 4, 28545, "", "=q4=Edgewalker Longboots", "=ds=#s12#, #a2#", "", "11.07%"}; - { 5, 28567, "", "=q4=Belt of Gale Force", "=ds=#s10#, #a3#", "", "12.05%"}; - { 6, 28566, "", "=q4=Crimson Girdle of the Indomitable", "=ds=#s10#, #a4#", "", "10.81%"}; - { 7, 28569, "", "=q4=Boots of Valiance", "=ds=#s12#, #a4#", "", "11.33%"}; - { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 16, 28530, "", "=q4=Brooch of Unquenchable Fury", "=ds=#s2#", "", "12.25%"}; - { 17, 28528, "", "=q4=Moroes' Lucky Pocket Watch", "=ds=#s14#", "", "12.05%"}; - { 18, 28525, "", "=q4=Signet of Unshakable Faith", "=ds=#s15#", "", "14.54%"}; - { 19, 28568, "", "=q4=Idol of the Avian Heart", "=ds=#s16#, #w14#", "", "14.08%"}; - { 20, 28524, "", "=q4=Emerald Ripper", "=ds=#h1#, #w4#", "", "12.90%"}; - { 22, 22559, "", "=q3=Formula: Enchant Weapon - Mongoose", "=ds=#p4# (375)", "", "1.05%"}; - Prev = "KaraAttumen"; - Next = "KaraMaiden"; - }; - - AtlasLoot_Data["KaraKeannaLog"] = { - { 1, 24492, "", "=q1=Keanna's Log", "=ds=#m3#"}; - }; - - AtlasLoot_Data["KaraMaiden"] = { - { 1, 28511, "", "=q4=Bands of Indwelling", "=ds=#s8#, #a1#", "", "12.46%"}; - { 2, 28515, "", "=q4=Bands of Nefarious Deeds", "=ds=#s8#, #a1#", "", "13.87%"}; - { 3, 28517, "", "=q4=Boots of Foretelling", "=ds=#s12#, #a1#", "", "16.96%"}; - { 4, 28514, "", "=q4=Bracers of Maliciousness", "=ds=#s8#, #a2#", "", "15.90%"}; - { 5, 28521, "", "=q4=Mitts of the Treemender", "=ds=#s9#, #a2#", "", "13.16%"}; - { 6, 28520, "", "=q4=Gloves of Centering", "=ds=#s9#, #a3#", "", "13.16%"}; - { 7, 28519, "", "=q4=Gloves of Quickening", "=ds=#s9#, #a3#", "", "14.22%"}; - { 8, 28512, "", "=q4=Bracers of Justice", "=ds=#s8#, #a4#", "", "15%"}; - { 9, 28518, "", "=q4=Iron Gauntlets of the Maiden", "=ds=#s9#, #a4#", "", "12.63%"}; - { 16, 28516, "", "=q4=Barbed Choker of Discipline", "=ds=#s2#", "", "11.48%"}; - { 17, 28523, "", "=q4=Totem of Healing Rains", "=ds=#s16#, #w15#", "", "14.58%"}; - { 18, 28522, "", "=q4=Shard of the Virtuous", "=ds=#h3#, #w6#", "", "10.69%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "KaraMoroes"; - Next = "KaraOperaEvent"; - }; - - AtlasLoot_Data["KaraOperaEvent"] = { - { 1, 0, "INV_Box_01", "=q6="..AL["Shared Drops"], ""}; - { 2, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 3, 28594, "", "=q4=Trial-FireTrousers", "=ds=#s11#, #a1#", "", "15.96%"}; - { 4, 28591, "", "=q4=Earthsoul Leggings", "=ds=#s11#, #a2#", "", "12.45%"}; - { 5, 28589, "", "=q4=Beastmaw Pauldrons", "=ds=#s3#, #a3#", "", "12.54%"}; - { 6, 28593, "", "=q4=Eternium Greathelm", "=ds=#s1#, #a4#", "", "11.53%"}; - { 7, 28590, "", "=q4=Ribbon of Sacrifice", "=ds=#s14#", "", "18.41%"}; - { 8, 28592, "", "=q4=Libram of Souls Redeemed", "=ds=#s16#, #w16#", "", "8.38%"}; - { 10, 0, "INV_Box_01", "=q6="..BabbleBoss["The Crone"], "=q5="..AL["Wizard of Oz"]}; - { 11, 28586, "", "=q4=Wicked Witch's Hat", "=ds=#s1#, #a1#", "", "20.12%"}; - { 12, 28585, "", "=q4=Ruby Slippers", "=ds=#s12#, #a1#", "", "25.39%"}; - { 13, 28587, "", "=q4=Legacy", "=ds=#h2#, #w1#", "", "20.43%"}; - { 14, 28588, "", "=q4=Blue Diamond Witchwand", "=ds=#w12#", "", "17.96%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Romulo & Julianne"], "=q5="..AL["Romulo & Julianne"]}; - { 17, 28578, "", "=q4=Masquerade Gown", "=ds=#s5#, #a1#", "", "22.73%"}; - { 18, 28579, "", "=q4=Romulo's Poison Vial", "=ds=#s14#", "", "29.54%"}; - { 19, 28572, "", "=q4=Blade of the Unrequited", "=ds=#h1#, #w4#", "", "13.52%"}; - { 20, 28573, "", "=q4=Despair", "=ds=#h2#, #w10#", "", "30.07%"}; - { 24, 0, "INV_Box_01", "=q6="..BabbleBoss["The Big Bad Wolf"], "=q5="..AL["Red Riding Hood"]}; - { 25, 28582, "", "=q4=Red Riding Hood's Cloak", "=ds=#s4#", "", "12.85%"}; - { 26, 28583, "", "=q4=Big Bad Wolf's Head", "=ds=#s1#, #a3#", "", "16.37%"}; - { 27, 28584, "", "=q4=Big Bad Wolf's Paw", "=ds=#h3#, #w13#", "", "16.12%"}; - { 28, 28581, "", "=q4=Wolfslayer Sniper Rifle", "=ds=#w5#", "", "22.42%"}; - Prev = "KaraMaiden"; - Next = "KaraCurator"; - }; - - AtlasLoot_Data["KaraCurator"] = { - { 1, 28612, "", "=q4=Pauldrons of the Solace-Giver", "=ds=#s3#, #a1#", "", "15.19%"}; - { 2, 28647, "", "=q4=Forest Wind Shoulderpads", "=ds=#s3#, #a2#", "", "10.56%"}; - { 3, 28631, "", "=q4=Dragon-Quake Shoulderguards", "=ds=#s3#, #a3#", "", "13.47%"}; - { 4, 28621, "", "=q4=Wrynn Dynasty Greaves", "=ds=#s11#, #a4#", "", "11.85%"}; - { 5, 28649, "", "=q4=Garona's Signet Ring", "=ds=#s13#", "", "12.07%"}; - { 6, 28633, "", "=q4=Staff of Infinite Mysteries", "=ds=#w9#", "", "12.28%"}; - { 8, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 16, 29757, "", "=q4=Gloves of the Fallen Champion", "=ds=#m21# #e15#", "", "29.42%"}; - { 17, 29758, "", "=q4=Gloves of the Fallen Defender", "=ds=#m21# #e15#", "", "23.60%"}; - { 18, 29756, "", "=q4=Gloves of the Fallen Hero", "=ds=#m21# #e15#", "", "21.66%"}; - Prev = "KaraOperaEvent"; - Next = "KaraIllhoof"; - }; - - AtlasLoot_Data["KaraIllhoof"] = { - { 1, 28660, "", "=q4=Gilded Thorium Cloak", "=ds=#s4#", "", "14.63%"}; - { 2, 28653, "", "=q4=Shadowvine Cloak of Infusion", "=ds=#s4#", "", "10.45%"}; - { 3, 28652, "", "=q4=Cincture of Will", "=ds=#s10#, #a1#", "", "10.75%"}; - { 4, 28654, "", "=q4=Malefic Girdle", "=ds=#s10#, #a1#", "", "11.04%"}; - { 5, 28655, "", "=q4=Cord of Nature's Sustenance", "=ds=#s10#, #a2#", "", "14.93%"}; - { 6, 28656, "", "=q4=Girdle of the Prowler", "=ds=#s10#, #a3#", "", "17.91%"}; - { 7, 28662, "", "=q4=Breastplate of the Lightbinder", "=ds=#s5#, #a4#", "", "17.31%"}; - { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 16, 28661, "", "=q4=Mender's Heart-Ring", "=ds=#s13#", "", "11.64%"}; - { 17, 28785, "", "=q4=The Lightning Capacitor", "=ds=#s14#", "", "10.75%"}; - { 18, 28657, "", "=q4=Fool's Bane", "=ds=#h1#, #w6#", "", "14.63%"}; - { 19, 28658, "", "=q4=Terestian's Stranglestaff", "=ds=#w9#", "", "7.46%"}; - { 20, 28659, "", "=q4=Xavian Stiletto", "=ds=#w11#", "", "13.43%"}; - { 22, 22561, "", "=q3=Formula: Enchant Weapon - Soulfrost", "=ds=#p4# (375)", "", "0.30%"}; - Prev = "KaraCurator"; - Next = "KaraAran"; - }; - - AtlasLoot_Data["KaraAran"] = { - { 1, 28672, "", "=q4=Drape of the Dark Reavers", "=ds=#s4#", "", "11.70%"}; - { 2, 28726, "", "=q4=Mantle of the Mind Flayer", "=ds=#s3#, #a1#", "", "16.03%"}; - { 3, 28670, "", "=q4=Boots of the Infernal Coven", "=ds=#s12#, #a1#", "", "9.29%"}; - { 4, 28663, "", "=q4=Boots of the Incorrupt", "=ds=#s12#, #a1#", "", "12.72%"}; - { 5, 28669, "", "=q4=Rapscallion Boots", "=ds=#s12#, #a2#", "", "11.32%"}; - { 6, 28671, "", "=q4=Steelspine Faceguard", "=ds=#s1#, #a3#", "", "12.21%"}; - { 7, 28666, "", "=q4=Pauldrons of the Justice-Seeker", "=ds=#s3#, #a4#", "", "11.58%"}; - { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 11, 23933, "", "=q1=Medivh's Journal", "=ds=#m3#", "", "100%"}; - { 16, 28674, "", "=q4=Saberclaw Talisman", "=ds=#s2#", "", "11.20%"}; - { 17, 28675, "", "=q4=Shermanar Great-Ring", "=ds=#s13#", "", "10.43%"}; - { 18, 28727, "", "=q4=Pendant of the Violet Eye", "=ds=#s14#", "", "15.39%"}; - { 19, 28728, "", "=q4=Aran's Soothing Sapphire", "=ds=#s15#", "", "12.72%"}; - { 20, 28673, "", "=q4=Tirisfal Wand of Ascendancy", "=ds=#w12#", "", "7.25%"}; - { 22, 22560, "", "=q3=Formula: Enchant Weapon - Sunfire", "=ds=#p4# (375)", "", "0.76%"}; - Prev = "KaraIllhoof"; - Next = "KaraNetherspite"; - }; - - AtlasLoot_Data["KaraNetherspite"] = { - { 1, 28744, "", "=q4=Uni-Mind Headdress", "=ds=#s1#, #a1#", "", "12.91%"}; - { 2, 28742, "", "=q4=Pantaloons of Repentence", "=ds=#s11#, #a1#", "", "10.99%"}; - { 3, 28732, "", "=q4=Cowl of Defiance", "=ds=#s1#, #a2#", "", "17.31%"}; - { 4, 28741, "", "=q4=Skulker's Greaves", "=ds=#s11#, #a2#", "", "15.38%"}; - { 5, 28735, "", "=q4=Earthblood Chestguard", "=ds=#s5#, #a3#", "", "15.93%"}; - { 6, 28740, "", "=q4=Rip-Flayer Leggings", "=ds=#s11#, #a3#", "", "10.16%"}; - { 7, 28743, "", "=q4=Mantle of Abrahmis", "=ds=#s3#, #a4#", "", "9.34%"}; - { 8, 28733, "", "=q4=Girdle of Truth", "=ds=#s10#, #a4#", "", "10.44%"}; - { 16, 28731, "", "=q4=Shining Chain of the Afterworld", "=ds=#s2#", "", "15.11%"}; - { 17, 28730, "", "=q4=Mithril Band of the Unscarred", "=ds=#s13#", "", "10.99%"}; - { 18, 28734, "", "=q4=Jewel of Infinite Possibilities", "=ds=#s15#", "", "11.64%"}; - { 19, 28729, "", "=q4=Spiteblade", "=ds=#h1#, #w10#", "", "6.32%"}; - { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "KaraAran"; - Next = "KaraChess"; - }; - - AtlasLoot_Data["KaraChess"] = { - { 1, 28756, "", "=q4=Headdress of the High Potentate", "=ds=#s1#, #a1#", "", "17.98%"}; - { 2, 28755, "", "=q4=Bladed Shoulderpads of the Merciless", "=ds=#s3#, #a2#", "", "13.55%"}; - { 3, 28750, "", "=q4=Girdle of Treachery", "=ds=#s10#, #a2#", "", "15.02%"}; - { 4, 28752, "", "=q4=Forestlord Striders", "=ds=#s12#, #a2#", "", "14.04%"}; - { 5, 28751, "", "=q4=Heart-Flame Leggings", "=ds=#s11#, #a3#", "", "12.56%"}; - { 6, 28746, "", "=q4=Fiend Slayer Boots", "=ds=#s12#, #a3#", "", "16.26%"}; - { 7, 28748, "", "=q4=Legplates of the Innocent", "=ds=#s11#, #a4#", "", "13.79%"}; - { 8, 28747, "", "=q4=Battlescar Boots", "=ds=#s12#, #a4#", "", "13.79%"}; - { 16, 28745, "", "=q4=Mithril Chain of Heroism", "=ds=#s2#", "", "12.81%"}; - { 17, 28753, "", "=q4=Ring of Recurrence", "=ds=#s13#", "", "12.56%"}; - { 18, 28749, "", "=q4=King's Defender", "=ds=#h1#, #w10#", "", "12.07%"}; - { 19, 28754, "", "=q4=Triptych Shield of the Ancients", "=ds=#w8#", "", "13.30%"}; - { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "KaraNetherspite"; - Next = "KaraNightbane"; - }; - - AtlasLoot_Data["KaraNightbane"] = { - { 1, 28602, "", "=q4=Robe of the Elder Scribes", "=ds=#s5#, #a1#", "", "17.38%"}; - { 2, 28600, "", "=q4=Stonebough Jerkin", "=ds=#s5#, #a2#", "", "13.33%"}; - { 3, 28601, "", "=q4=Chestguard of the Conniver", "=ds=#s5#, #a2#", "", "10.24%"}; - { 4, 28599, "", "=q4=Scaled Breastplate of Carnage", "=ds=#s5#, #a3#", "", "11.67%"}; - { 5, 28610, "", "=q4=Ferocious Swift-Kickers", "=ds=#s12#, #a3#", "", "15.71%"}; - { 6, 28597, "", "=q4=Panzar'Thar Breastplate", "=ds=#s5#, #a4#", "", "10.00%"}; - { 7, 28608, "", "=q4=Ironstriders of Urgency", "=ds=#s12#, #a4#", "", "9.05%"}; - { 9, 31751, "", "=q1=Blazing Signet", "=ds=#m3#", "", "100%"}; - { 10, 24139, "", "=q1=Faint Arcane Essence", "=ds=#m3#", "", "100%"}; - { 16, 28609, "", "=q4=Emberspur Talisman", "=ds=#s2#", "", "13.33%"}; - { 17, 28603, "", "=q4=Talisman of Nightbane", "=ds=#s15#", "", "12.62%"}; - { 18, 28604, "", "=q4=Nightstaff of the Everliving", "=ds=#w9#", "", "16.67%"}; - { 19, 28611, "", "=q4=Dragonheart Flameshield", "=ds=#w8#", "", "13.57%"}; - { 20, 28606, "", "=q4=Shield of Impenetrable Darkness", "=ds=#w8#", "", "12.14%"}; - { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "KaraChess"; - Next = "KaraPrince"; - }; - - AtlasLoot_Data["KaraPrince"] = { - { 1, 28765, "", "=q4=Stainless Cloak of the Pure Hearted", "=ds=#s4#", "", "10.37%"}; - { 2, 28766, "", "=q4=Ruby Drape of the Mysticant", "=ds=#s4#", "", "12.50%"}; - { 3, 28764, "", "=q4=Farstrider Wildercloak", "=ds=#s4#", "", "15.96%"}; - { 4, 28762, "", "=q4=Adornment of Stolen Souls", "=ds=#s2#", "", "9.57%"}; - { 5, 28763, "", "=q4=Jade Ring of the Everliving", "=ds=#s13#", "", "11.84%"}; - { 6, 28757, "", "=q4=Ring of a Thousand Marks", "=ds=#s13#", "", "12.90%"}; - { 8, 28770, "", "=q4=Nathrezim Mindblade", "=ds=#h3#, #w4#", "", "10.64%"}; - { 9, 28768, "", "=q4=Malchazeen", "=ds=#h1#, #w4#", "", "9.84%"}; - { 10, 28767, "", "=q4=The Decapitator", "=ds=#h1#, #w1#", "", "15.43%"}; - { 11, 28773, "", "=q4=Gorehowl", "=ds=#h2#, #w1#", "", "12.63%"}; - { 12, 28771, "", "=q4=Light's Justice", "=ds=#h3#, #w6#", "", "11.17%"}; - { 13, 28772, "", "=q4=Sunfury Bow of the Phoenix", "=ds=#w2#", "", "9.97%"}; - { 16, 29760, "", "=q4=Helm of the Fallen Champion", "=ds=#m21# #e15#", "", "23.01%"}; - { 17, 29761, "", "=q4=Helm of the Fallen Defender", "=ds=#m21# #e15#", "", "26.73%"}; - { 18, 29759, "", "=q4=Helm of the Fallen Hero", "=ds=#m21# #e15#", "", "20.48%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "KaraNightbane"; - }; - - AtlasLoot_Data["KaraTrash"] = { - { 1, 30642, "", "=q4=Drape of the Righteous", "=ds=#s4#", "", "0.22%"}; - { 2, 30668, "", "=q4=Grasp of the Dead", "=ds=#s9#, #a1#", "", "0.17%"}; - { 3, 30673, "", "=q4=Inferno Waist Cord", "=ds=#s10#, #a1#", "", "0.21%"}; - { 4, 30644, "", "=q4=Grips of the Deftness", "=ds=#s9#, #a2#", "", "0.23%"}; - { 5, 30674, "", "=q4=Zierhut's Lost Treads", "=ds=#s12#, #a2#", "", "0.17%"}; - { 6, 30643, "", "=q4=Belt of the Tracker", "=ds=#s10#, #a3#", "", "0.19%"}; - { 7, 30641, "", "=q4=Boots of Elusion", "=ds=#s12#, #a4#", "", "0.13%"}; - { 9, 23857, "", "=q1=Legacy of the Mountain King", "=ds="}; - { 10, 23864, "", "=q1=Torment of the Worgen", "=ds="}; - { 11, 23862, "", "=q1=Redemption of the Fallen", "=ds="}; - { 12, 23865, "", "=q1=Wrath of the Titans", "=ds="}; - { 14, 21882, "", "=q1=Soul Essence", "=ds=#e8#"}; - { 16, 30666, "", "=q4=Ritssyn's Lost Pendant", "=ds=#s2#", "", "0.18%"}; - { 17, 30667, "", "=q4=Ring of Unrelenting Storms", "=ds=#s13#", "", "0.17%"}; - { 19, 21903, "", "=q4=Pattern: Soulcloth Shoulders", "=ds=#p8# (375)", "", "0.74%"}; - { 20, 21904, "", "=q4=Pattern: Soulcloth Vest", "=ds=#p8# (375)", "", "1.07%"}; - { 21, 22545, "", "=q2=Formula: Enchant Boots - Surefooted", "=ds=#p4# (370)", "", "0.66%"}; - }; - ----------------------- - --- Karazhan Heroic --- - ----------------------- - - - - AtlasLoot_Data["KaraNamedHEROIC"] = { - { 1, 0, "Ability_Hunter_Pet_Spider", "=q6="..BabbleBoss["Hyakiss the Lurker"], "=q5="..AL["Spider"]}; - { 2, 230675, "", "=q4=Lurker's Cord", "=ds=#s10#, #a1# =q2=#m16#", "", "32.81%"}; - { 3, 230676, "", "=q4=Lurker's Grasp", "=ds=#s10#, #a2# =q2=#m16#", "", "9.38%"}; - { 4, 230677, "", "=q4=Lurker's Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "23.44%"}; - { 5, 230678, "", "=q4=Lurker's Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "15.62%"}; - { 7, 0, "Ability_Hunter_Pet_Hyena", "=q6="..BabbleBoss["Rokad the Ravager"], "=q5="..AL["Darkhound"]}; - { 8, 230684, "", "=q4=Ravager's Cuffs", "=ds=#s8#, #a1# =q2=#m16#", "", "27.78%"}; - { 9, 230685, "", "=q4=Ravager's Wrist-Wraps", "=ds=#s8#, #a2# =q2=#m16#", "", "11.11%"}; - { 10, 230686, "", "=q4=Ravager's Bands", "=ds=#s8#, #a3# =q2=#m16#", "", "23.33%"}; - { 11, 230687, "", "=q4=Ravager's Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "8.89%"}; - { 16, 0, "Ability_Hunter_Pet_Bat", "=q6="..BabbleBoss["Shadikith the Glider"], "=q5="..AL["Bat"]}; - { 17, 230680, "", "=q4=Glider's Foot-Wraps", "=ds=#s12#, #a1# =q2=#m16#", "", "9.68%"}; - { 18, 230681, "", "=q4=Glider's Boots", "=ds=#s12#, #a2# =q2=#m16#", "", "22.58%"}; - { 19, 230682, "", "=q4=Glider's Sabatons", "=ds=#s12#, #a3# =q2=#m16#", "", "9.68%"}; - { 20, 230683, "", "=q4=Glider's Greaves", "=ds=#s12#, #a4# =q2=#m16#", "", "8.60%"}; - }; - - AtlasLoot_Data["KaraAttumenHEROIC"] = { - { 1, 228477, "", "=q4=Harbinger Bands", "=ds=#s8#, #a1#", "", "14.68%"}; - { 2, 228507, "", "=q4=Handwraps of Flowing Thought", "=ds=#s9#, #a1#", "", "12.44%"}; - { 3, 228508, "", "=q4=Gloves of Saintly Blessings", "=ds=#s9#, #a1#", "", "11.69%"}; - { 4, 228453, "", "=q4=Bracers of the White Stag", "=ds=#s8#, #a2#", "", "12.19%"}; - { 5, 228506, "", "=q4=Gloves of Dexterous Manipulation", "=ds=#s9#, #a2#", "", "14.68%"}; - { 6, 228503, "", "=q4=Whirlwind Bracers", "=ds=#s8#, #a3#", "", "9.20%"}; - { 7, 228454, "", "=q4=Stalker's War Bands", "=ds=#s8#, #a3#", "", "16.17%"}; - { 8, 228502, "", "=q4=Vambraces of Courage", "=ds=#s8#, #a4#", "", "10.70%"}; - { 9, 228505, "", "=q4=Gauntlets of Renewed Hope", "=ds=#s9#, #a4#", "", "10.95%"}; - { 16, 228509, "", "=q4=Worgen Claw Necklace", "=ds=#s2#", "", "17.16%"}; - { 17, 228510, "", "=q4=Spectral Band of Innervation", "=ds=#s13#", "", "10.70%"}; - { 18, 228504, "", "=q4=Steelhawk Crossbow", "=ds=#w3#", "", "12.44%"}; - { 19, 30480, "", "=q4=Fiery Warhorse's Reins", "=ds=#e12#", "", "0.25%"}; - { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 23, 23809, "", "=q3=Schematic: Stabilized Eternium Scope", "=ds=#p5# (375)", "", "1.00%"}; - Next = "KaraMoroesHEROIC"; - }; - - AtlasLoot_Data["KaraMoroesHEROIC"] = { - { 1, 228529, "", "=q4=Royal Cloak of Arathi Kings", "=ds=#s4#", "", "15.91%"}; - { 2, 228570, "", "=q4=Shadow-Cloak of Dalaran", "=ds=#s4#", "", "12.18%"}; - { 3, 228565, "", "=q4=Nethershard Girdle", "=ds=#s10#, #a1#", "", "14.08%"}; - { 4, 228545, "", "=q4=Edgewalker Longboots", "=ds=#s12#, #a2#", "", "11.07%"}; - { 5, 228567, "", "=q4=Belt of Gale Force", "=ds=#s10#, #a3#", "", "12.05%"}; - { 6, 228566, "", "=q4=Crimson Girdle of the Indomitable", "=ds=#s10#, #a4#", "", "10.81%"}; - { 7, 228569, "", "=q4=Boots of Valiance", "=ds=#s12#, #a4#", "", "11.33%"}; - { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 16, 228530, "", "=q4=Brooch of Unquenchable Fury", "=ds=#s2#", "", "12.25%"}; - { 17, 228528, "", "=q4=Moroes' Lucky Pocket Watch", "=ds=#s14#", "", "12.05%"}; - { 18, 228525, "", "=q4=Signet of Unshakable Faith", "=ds=#s15#", "", "14.54%"}; - { 19, 228568, "", "=q4=Idol of the Avian Heart", "=ds=#s16#, #w14#", "", "14.08%"}; - { 20, 228524, "", "=q4=Emerald Ripper", "=ds=#h1#, #w4#", "", "12.90%"}; - { 22, 22559, "", "=q3=Formula: Enchant Weapon - Mongoose", "=ds=#p4# (375)", "", "1.05%"}; - Prev = "KaraAttumenHEROIC"; - Next = "KaraMaidenHEROIC"; - }; - - AtlasLoot_Data["KaraMaidenHEROIC"] = { - { 1, 228511, "", "=q4=Bands of Indwelling", "=ds=#s8#, #a1#", "", "12.46%"}; - { 2, 228515, "", "=q4=Bands of Nefarious Deeds", "=ds=#s8#, #a1#", "", "13.87%"}; - { 3, 228517, "", "=q4=Boots of Foretelling", "=ds=#s12#, #a1#", "", "16.96%"}; - { 4, 228514, "", "=q4=Bracers of Maliciousness", "=ds=#s8#, #a2#", "", "15.90%"}; - { 5, 228521, "", "=q4=Mitts of the Treemender", "=ds=#s9#, #a2#", "", "13.16%"}; - { 6, 228520, "", "=q4=Gloves of Centering", "=ds=#s9#, #a3#", "", "13.16%"}; - { 7, 228519, "", "=q4=Gloves of Quickening", "=ds=#s9#, #a3#", "", "14.22%"}; - { 8, 228512, "", "=q4=Bracers of Justice", "=ds=#s8#, #a4#", "", "15%"}; - { 9, 228518, "", "=q4=Iron Gauntlets of the Maiden", "=ds=#s9#, #a4#", "", "12.63%"}; - { 16, 228516, "", "=q4=Barbed Choker of Discipline", "=ds=#s2#", "", "11.48%"}; - { 17, 228523, "", "=q4=Totem of Healing Rains", "=ds=#s16#, #w15#", "", "14.58%"}; - { 18, 228522, "", "=q4=Shard of the Virtuous", "=ds=#h3#, #w6#", "", "10.69%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "KaraMoroesHEROIC"; - Next = "KaraOperaEventHEROIC"; - }; - - AtlasLoot_Data["KaraOperaEventHEROIC"] = { - { 1, 0, "INV_Box_01", "=q6="..AL["Shared Drops"], ""}; - { 2, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 3, 228594, "", "=q4=Trial-FireTrousers", "=ds=#s11#, #a1#", "", "15.96%"}; - { 4, 228591, "", "=q4=Earthsoul Leggings", "=ds=#s11#, #a2#", "", "12.45%"}; - { 5, 228589, "", "=q4=Beastmaw Pauldrons", "=ds=#s3#, #a3#", "", "12.54%"}; - { 6, 228593, "", "=q4=Eternium Greathelm", "=ds=#s1#, #a4#", "", "11.53%"}; - { 7, 228590, "", "=q4=Ribbon of Sacrifice", "=ds=#s14#", "", "18.41%"}; - { 8, 228592, "", "=q4=Libram of Souls Redeemed", "=ds=#s16#, #w16#", "", "8.38%"}; - { 10, 0, "INV_Box_01", "=q6="..BabbleBoss["The Crone"], "=q5="..AL["Wizard of Oz"]}; - { 11, 228586, "", "=q4=Wicked Witch's Hat", "=ds=#s1#, #a1#", "", "20.12%"}; - { 12, 228585, "", "=q4=Ruby Slippers", "=ds=#s12#, #a1#", "", "25.39%"}; - { 13, 228587, "", "=q4=Legacy", "=ds=#h2#, #w1#", "", "20.43%"}; - { 14, 228588, "", "=q4=Blue Diamond Witchwand", "=ds=#w12#", "", "17.96%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Romulo & Julianne"], "=q5="..AL["Romulo & Julianne"]}; - { 17, 228578, "", "=q4=Masquerade Gown", "=ds=#s5#, #a1#", "", "22.73%"}; - { 18, 228579, "", "=q4=Romulo's Poison Vial", "=ds=#s14#", "", "29.54%"}; - { 19, 228572, "", "=q4=Blade of the Unrequited", "=ds=#h1#, #w4#", "", "13.52%"}; - { 20, 228573, "", "=q4=Despair", "=ds=#h2#, #w10#", "", "30.07%"}; - { 24, 0, "INV_Box_01", "=q6="..BabbleBoss["The Big Bad Wolf"], "=q5="..AL["Red Riding Hood"]}; - { 25, 228582, "", "=q4=Red Riding Hood's Cloak", "=ds=#s4#", "", "12.85%"}; - { 26, 228583, "", "=q4=Big Bad Wolf's Head", "=ds=#s1#, #a3#", "", "16.37%"}; - { 27, 228584, "", "=q4=Big Bad Wolf's Paw", "=ds=#h3#, #w13#", "", "16.12%"}; - { 28, 228581, "", "=q4=Wolfslayer Sniper Rifle", "=ds=#w5#", "", "22.42%"}; - Prev = "KaraMaidenHEROIC"; - Next = "KaraCuratorHEROIC"; - }; - - AtlasLoot_Data["KaraCuratorHEROIC"] = { - { 1, 228612, "", "=q4=Pauldrons of the Solace-Giver", "=ds=#s3#, #a1#", "", "15.19%"}; - { 2, 228647, "", "=q4=Forest Wind Shoulderpads", "=ds=#s3#, #a2#", "", "10.56%"}; - { 3, 228631, "", "=q4=Dragon-Quake Shoulderguards", "=ds=#s3#, #a3#", "", "13.47%"}; - { 4, 228621, "", "=q4=Wrynn Dynasty Greaves", "=ds=#s11#, #a4#", "", "11.85%"}; - { 5, 228649, "", "=q4=Garona's Signet Ring", "=ds=#s13#", "", "12.07%"}; - { 6, 228633, "", "=q4=Staff of Infinite Mysteries", "=ds=#w9#", "", "12.28%"}; - { 8, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 16, 229757, "", "=q4=Gloves of the Fallen Champion", "=ds=#m21# #e15#", "", "29.42%"}; - { 17, 229758, "", "=q4=Gloves of the Fallen Defender", "=ds=#m21# #e15#", "", "23.60%"}; - { 18, 229756, "", "=q4=Gloves of the Fallen Hero", "=ds=#m21# #e15#", "", "21.66%"}; - Prev = "KaraOperaEventHEROIC"; - Next = "KaraIllhoofHEROIC"; - }; - - AtlasLoot_Data["KaraIllhoofHEROIC"] = { - { 1, 228660, "", "=q4=Gilded Thorium Cloak", "=ds=#s4#", "", "14.63%"}; - { 2, 228653, "", "=q4=Shadowvine Cloak of Infusion", "=ds=#s4#", "", "10.45%"}; - { 3, 228652, "", "=q4=Cincture of Will", "=ds=#s10#, #a1#", "", "10.75%"}; - { 4, 228654, "", "=q4=Malefic Girdle", "=ds=#s10#, #a1#", "", "11.04%"}; - { 5, 228655, "", "=q4=Cord of Nature's Sustenance", "=ds=#s10#, #a2#", "", "14.93%"}; - { 6, 228656, "", "=q4=Girdle of the Prowler", "=ds=#s10#, #a3#", "", "17.91%"}; - { 7, 228662, "", "=q4=Breastplate of the Lightbinder", "=ds=#s5#, #a4#", "", "17.31%"}; - { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 16, 228661, "", "=q4=Mender's Heart-Ring", "=ds=#s13#", "", "11.64%"}; - { 17, 228785, "", "=q4=The Lightning Capacitor", "=ds=#s14#", "", "10.75%"}; - { 18, 228657, "", "=q4=Fool's Bane", "=ds=#h1#, #w6#", "", "14.63%"}; - { 19, 228658, "", "=q4=Terestian's Stranglestaff", "=ds=#w9#", "", "7.46%"}; - { 20, 228659, "", "=q4=Xavian Stiletto", "=ds=#w11#", "", "13.43%"}; - { 22, 22561, "", "=q3=Formula: Enchant Weapon - Soulfrost", "=ds=#p4# (375)", "", "0.30%"}; - Prev = "KaraCuratorHEROIC"; - Next = "KaraAranHEROIC"; - }; - - AtlasLoot_Data["KaraAranHEROIC"] = { - { 1, 228672, "", "=q4=Drape of the Dark Reavers", "=ds=#s4#", "", "11.70%"}; - { 2, 228726, "", "=q4=Mantle of the Mind Flayer", "=ds=#s3#, #a1#", "", "16.03%"}; - { 3, 228670, "", "=q4=Boots of the Infernal Coven", "=ds=#s12#, #a1#", "", "9.29%"}; - { 4, 228663, "", "=q4=Boots of the Incorrupt", "=ds=#s12#, #a1#", "", "12.72%"}; - { 5, 228669, "", "=q4=Rapscallion Boots", "=ds=#s12#, #a2#", "", "11.32%"}; - { 6, 228671, "", "=q4=Steelspine Faceguard", "=ds=#s1#, #a3#", "", "12.21%"}; - { 7, 228666, "", "=q4=Pauldrons of the Justice-Seeker", "=ds=#s3#, #a4#", "", "11.58%"}; - { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 11, 223933, "", "=q1=Medivh's Journal", "=ds=#m3#", "", "100%"}; - { 16, 228674, "", "=q4=Saberclaw Talisman", "=ds=#s2#", "", "11.20%"}; - { 17, 228675, "", "=q4=Shermanar Great-Ring", "=ds=#s13#", "", "10.43%"}; - { 18, 228727, "", "=q4=Pendant of the Violet Eye", "=ds=#s14#", "", "15.39%"}; - { 19, 228728, "", "=q4=Aran's Soothing Sapphire", "=ds=#s15#", "", "12.72%"}; - { 20, 228673, "", "=q4=Tirisfal Wand of Ascendancy", "=ds=#w12#", "", "7.25%"}; - { 22, 22560, "", "=q3=Formula: Enchant Weapon - Sunfire", "=ds=#p4# (375)", "", "0.76%"}; - Prev = "KaraIllhoofHEROIC"; - Next = "KaraNetherspiteHEROIC"; - }; - - AtlasLoot_Data["KaraNetherspiteHEROIC"] = { - { 1, 228744, "", "=q4=Uni-Mind Headdress", "=ds=#s1#, #a1#", "", "12.91%"}; - { 2, 228742, "", "=q4=Pantaloons of Repentence", "=ds=#s11#, #a1#", "", "10.99%"}; - { 3, 228732, "", "=q4=Cowl of Defiance", "=ds=#s1#, #a2#", "", "17.31%"}; - { 4, 228741, "", "=q4=Skulker's Greaves", "=ds=#s11#, #a2#", "", "15.38%"}; - { 5, 228735, "", "=q4=Earthblood Chestguard", "=ds=#s5#, #a3#", "", "15.93%"}; - { 6, 228740, "", "=q4=Rip-Flayer Leggings", "=ds=#s11#, #a3#", "", "10.16%"}; - { 7, 228743, "", "=q4=Mantle of Abrahmis", "=ds=#s3#, #a4#", "", "9.34%"}; - { 8, 228733, "", "=q4=Girdle of Truth", "=ds=#s10#, #a4#", "", "10.44%"}; - { 16, 228731, "", "=q4=Shining Chain of the Afterworld", "=ds=#s2#", "", "15.11%"}; - { 17, 228730, "", "=q4=Mithril Band of the Unscarred", "=ds=#s13#", "", "10.99%"}; - { 18, 228734, "", "=q4=Jewel of Infinite Possibilities", "=ds=#s15#", "", "11.64%"}; - { 19, 228729, "", "=q4=Spiteblade", "=ds=#h1#, #w10#", "", "6.32%"}; - { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "KaraAranHEROIC"; - Next = "KaraChessHEROIC"; - }; - - AtlasLoot_Data["KaraChessHEROIC"] = { - { 1, 228756, "", "=q4=Headdress of the High Potentate", "=ds=#s1#, #a1#", "", "17.98%"}; - { 2, 228755, "", "=q4=Bladed Shoulderpads of the Merciless", "=ds=#s3#, #a2#", "", "13.55%"}; - { 3, 228750, "", "=q4=Girdle of Treachery", "=ds=#s10#, #a2#", "", "15.02%"}; - { 4, 228752, "", "=q4=Forestlord Striders", "=ds=#s12#, #a2#", "", "14.04%"}; - { 5, 228751, "", "=q4=Heart-Flame Leggings", "=ds=#s11#, #a3#", "", "12.56%"}; - { 6, 228746, "", "=q4=Fiend Slayer Boots", "=ds=#s12#, #a3#", "", "16.26%"}; - { 7, 228748, "", "=q4=Legplates of the Innocent", "=ds=#s11#, #a4#", "", "13.79%"}; - { 8, 228747, "", "=q4=Battlescar Boots", "=ds=#s12#, #a4#", "", "13.79%"}; - { 16, 228745, "", "=q4=Mithril Chain of Heroism", "=ds=#s2#", "", "12.81%"}; - { 17, 228753, "", "=q4=Ring of Recurrence", "=ds=#s13#", "", "12.56%"}; - { 18, 228749, "", "=q4=King's Defender", "=ds=#h1#, #w10#", "", "12.07%"}; - { 19, 228754, "", "=q4=Triptych Shield of the Ancients", "=ds=#w8#", "", "13.30%"}; - { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "KaraNetherspiteHEROIC"; - Next = "KaraNightbaneHEROIC"; - }; - - AtlasLoot_Data["KaraNightbaneHEROIC"] = { - { 1, 228602, "", "=q4=Robe of the Elder Scribes", "=ds=#s5#, #a1#", "", "17.38%"}; - { 2, 228600, "", "=q4=Stonebough Jerkin", "=ds=#s5#, #a2#", "", "13.33%"}; - { 3, 228601, "", "=q4=Chestguard of the Conniver", "=ds=#s5#, #a2#", "", "10.24%"}; - { 4, 228599, "", "=q4=Scaled Breastplate of Carnage", "=ds=#s5#, #a3#", "", "11.67%"}; - { 5, 228610, "", "=q4=Ferocious Swift-Kickers", "=ds=#s12#, #a3#", "", "15.71%"}; - { 6, 228597, "", "=q4=Panzar'Thar Breastplate", "=ds=#s5#, #a4#", "", "10.00%"}; - { 7, 228608, "", "=q4=Ironstriders of Urgency", "=ds=#s12#, #a4#", "", "9.05%"}; - { 9, 231751, "", "=q1=Blazing Signet", "=ds=#m3#", "", "100%"}; - { 10, 224139, "", "=q1=Faint Arcane Essence", "=ds=#m3#", "", "100%"}; - { 16, 228609, "", "=q4=Emberspur Talisman", "=ds=#s2#", "", "13.33%"}; - { 17, 228603, "", "=q4=Talisman of Nightbane", "=ds=#s15#", "", "12.62%"}; - { 18, 228604, "", "=q4=Nightstaff of the Everliving", "=ds=#w9#", "", "16.67%"}; - { 19, 228611, "", "=q4=Dragonheart Flameshield", "=ds=#w8#", "", "13.57%"}; - { 20, 228606, "", "=q4=Shield of Impenetrable Darkness", "=ds=#w8#", "", "12.14%"}; - { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "KaraChessHEROIC"; - Next = "KaraPrinceHEROIC"; - }; - - AtlasLoot_Data["KaraPrinceHEROIC"] = { - { 1, 228765, "", "=q4=Stainless Cloak of the Pure Hearted", "=ds=#s4#", "", "10.37%"}; - { 2, 228766, "", "=q4=Ruby Drape of the Mysticant", "=ds=#s4#", "", "12.50%"}; - { 3, 228764, "", "=q4=Farstrider Wildercloak", "=ds=#s4#", "", "15.96%"}; - { 4, 228762, "", "=q4=Adornment of Stolen Souls", "=ds=#s2#", "", "9.57%"}; - { 5, 228763, "", "=q4=Jade Ring of the Everliving", "=ds=#s13#", "", "11.84%"}; - { 6, 228757, "", "=q4=Ring of a Thousand Marks", "=ds=#s13#", "", "12.90%"}; - { 8, 228770, "", "=q4=Nathrezim Mindblade", "=ds=#h3#, #w4#", "", "10.64%"}; - { 9, 228768, "", "=q4=Malchazeen", "=ds=#h1#, #w4#", "", "9.84%"}; - { 10, 228767, "", "=q4=The Decapitator", "=ds=#h1#, #w1#", "", "15.43%"}; - { 11, 228773, "", "=q4=Gorehowl", "=ds=#h2#, #w1#", "", "12.63%"}; - { 12, 228771, "", "=q4=Light's Justice", "=ds=#h3#, #w6#", "", "11.17%"}; - { 13, 228772, "", "=q4=Sunfury Bow of the Phoenix", "=ds=#w2#", "", "9.97%"}; - { 16, 229760, "", "=q4=Helm of the Fallen Champion", "=ds=#m21# #e15#", "", "23.01%"}; - { 17, 229761, "", "=q4=Helm of the Fallen Defender", "=ds=#m21# #e15#", "", "26.73%"}; - { 18, 229759, "", "=q4=Helm of the Fallen Hero", "=ds=#m21# #e15#", "", "20.48%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "KaraNightbaneHEROIC"; - }; - - AtlasLoot_Data["KaraTrashHEROIC"] = { - { 1, 230642, "", "=q4=Drape of the Righteous", "=ds=#s4#", "", "0.22%"}; - { 2, 230668, "", "=q4=Grasp of the Dead", "=ds=#s9#, #a1#", "", "0.17%"}; - { 3, 230673, "", "=q4=Inferno Waist Cord", "=ds=#s10#, #a1#", "", "0.21%"}; - { 4, 230644, "", "=q4=Grips of the Deftness", "=ds=#s9#, #a2#", "", "0.23%"}; - { 5, 230674, "", "=q4=Zierhut's Lost Treads", "=ds=#s12#, #a2#", "", "0.17%"}; - { 6, 230643, "", "=q4=Belt of the Tracker", "=ds=#s10#, #a3#", "", "0.19%"}; - { 7, 230641, "", "=q4=Boots of Elusion", "=ds=#s12#, #a4#", "", "0.13%"}; - { 9, 23857, "", "=q1=Legacy of the Mountain King", "=ds="}; - { 10, 23864, "", "=q1=Torment of the Worgen", "=ds="}; - { 11, 23862, "", "=q1=Redemption of the Fallen", "=ds="}; - { 12, 23865, "", "=q1=Wrath of the Titans", "=ds="}; - { 14, 21882, "", "=q1=Soul Essence", "=ds=#e8#"}; - { 16, 230666, "", "=q4=Ritssyn's Lost Pendant", "=ds=#s2#", "", "0.18%"}; - { 17, 230667, "", "=q4=Ring of Unrelenting Storms", "=ds=#s13#", "", "0.17%"}; - { 19, 21903, "", "=q4=Pattern: Soulcloth Shoulders", "=ds=#p8# (375)", "", "0.74%"}; - { 20, 21904, "", "=q4=Pattern: Soulcloth Vest", "=ds=#p8# (375)", "", "1.07%"}; - { 21, 22545, "", "=q2=Formula: Enchant Boots - Surefooted", "=ds=#p4# (370)", "", "0.66%"}; - }; - - - ------------------------------------- - --- Sunwell Isle: Sunwell Plateau --- - ------------------------------------- - - AtlasLoot_Data["SPKalecgos"] = { - { 1, 34170, "", "=q4=Pantaloons of Calming Strife", "=ds=#s11#, #a1#"}; - { 2, 34386, "", "=q4=Pantaloons of Growing Strife", "=ds=#m29#"}; - { 3, 34169, "", "=q4=Breeches of Natural Aggression", "=ds=#s11#, #a2#"}; - { 4, 34384, "", "=q4=Breeches of Natural Splendor", "=ds=#m29#"}; - { 5, 34168, "", "=q4=Starstalker Legguards", "=ds=#s11#, #a3#", "", "1.#INF%"}; - { 6, 34167, "", "=q4=Legplates of the Holy Juggernaut", "=ds=#s11#, #a4#"}; - { 7, 34382, "", "=q4=Judicator's Legguards", "=ds=#m29#"}; - { 8, 34166, "", "=q4=Band of Lucent Beams", "=ds=#s13#", "", "1.#INF%"}; - { 9, 34165, "", "=q4=Fang of Kalecgos", "=ds=#h1#, #w4#"}; - { 10, 34164, "", "=q4=Dragonscale-Encrusted Longblade", "=ds=#h1#, #w10#"}; - { 16, 34848, "", "=q4=Bracers of the Forgotten Conqueror", "=ds=#m23# #e15#", "", "10%"}; - { 17, 34851, "", "=q4=Bracers of the Forgotten Protector", "=ds=#m23# #e15#", "", "11%"}; - { 18, 34852, "", "=q4=Bracers of the Forgotten Vanquisher", "=ds=#m23# #e15#", "", "12%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Next = "SPBrutallus"; - }; - - AtlasLoot_Data["SPBrutallus"] = { - { 1, 34181, "", "=q4=Leggings of Calamity", "=ds=#s11#, #a1#", "", "15%"}; - { 2, 34180, "", "=q4=Felfury Legplates", "=ds=#s11#, #a4#", "", "13%"}; - { 3, 34381, "", "=q4=Felstrength Legplates", "=ds=#m29#"}; - { 4, 34178, "", "=q4=Collar of the Pit Lord", "=ds=#s2#", "", "15%"}; - { 5, 34177, "", "=q4=Clutch of Demise", "=ds=#s2#", "", "15%"}; - { 6, 34179, "", "=q4=Heart of the Pit", "=ds=#s15#", "", "13%"}; - { 7, 34176, "", "=q4=Reign of Misery", "=ds=#h3#, #w6#", "", "17%"}; - { 16, 34853, "", "=q4=Belt of the Forgotten Conqueror", "=ds=#m23# #e15#", "", "74%"}; - { 17, 34854, "", "=q4=Belt of the Forgotten Protector", "=ds=#m23# #e15#", "", "70%"}; - { 18, 34855, "", "=q4=Belt of the Forgotten Vanquisher", "=ds=#m23# #e15#", "", "75%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "SPKalecgos"; - Next = "SPFelmyst"; - }; - - AtlasLoot_Data["SPFelmyst"] = { - { 1, 34352, "", "=q4=Borderland Fortress Grips", "=ds=#s9#, #a4#", "", "15%"}; - { 2, 34188, "", "=q4=Leggings of the Immortal Night", "=ds=#s11#, #a2#", "", "14%"}; - { 3, 34385, "", "=q4=Leggings of the Immortal Beast", "=ds=#m29#"}; - { 4, 34186, "", "=q4=Chain Links of the Tumultuous Storm", "=ds=#s11#, #a3#", "", "15%"}; - { 5, 34383, "", "=q4=Kilt of Spiritual Reconstruction", "=ds=#m29#"}; - { 6, 34184, "", "=q4=Brooch of the Highborne", "=ds=#s2#", "", "16%"}; - { 7, 34185, "", "=q4=Sword Breaker's Bulwark", "=ds=#w8#", "", "16%"}; - { 8, 34182, "", "=q4=Grand Magister's Staff of Torrents", "=ds=#w9#", "", "17%"}; - { 16, 34856, "", "=q4=Boots of the Forgotten Conqueror", "=ds=#m23# #e15#", "", "79%"}; - { 17, 34857, "", "=q4=Boots of the Forgotten Protector", "=ds=#m23# #e15#", "", "86%"}; - { 18, 34858, "", "=q4=Boots of the Forgotten Vanquisher", "=ds=#m23# #e15#", "", "77%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "SPBrutallus"; - Next = "SPEredarTwins"; - }; - - AtlasLoot_Data["SPEredarTwins"] = { - { 1, 34205, "", "=q4=Shroud of Redeemed Souls", "=ds=#s4#", "", "18%"}; - { 2, 34190, "", "=q4=Crimson Paragon's Cover", "=ds=#s4#", "", "16%"}; - { 3, 34210, "", "=q4=Amice of the Convoker", "=ds=#s3#, #a1#", "", "19%"}; - { 4, 34202, "", "=q4=Shawl of Wonderment", "=ds=#s3#, #a1#", "", "23%"}; - { 5, 34393, "", "=q4=Shoulderpads of Knowledge's Pursuit", "=ds=#m29#"}; - { 6, 34209, "", "=q4=Spaulders of Reclamation", "=ds=#s3#, #a2#", "", "20%"}; - { 7, 34391, "", "=q4=Spaulders of Devastation", "=ds=#m29#"}; - { 8, 34195, "", "=q4=Shoulderpads of Vehemence", "=ds=#s3#, #a2#", "", "17%"}; - { 9, 34392, "", "=q4=Demontooth Shoulderpads", "=ds=#m29#"}; - { 10, 34194, "", "=q4=Mantle of the Golden Forest", "=ds=#s3#, #a3#", "", "21%"}; - { 11, 34208, "", "=q4=Equilibrium Epaulets", "=ds=#s3#, #a3#", "", "19%"}; - { 12, 34390, "", "=q4=Erupting Epaulets", "=ds=#m29#"}; - { 13, 34192, "", "=q4=Pauldrons of Perseverance", "=ds=#s3#, #a4#", "", "19%"}; - { 14, 34388, "", "=q4=Pauldrons of Berserking", "=ds=#m29#"}; - { 16, 34193, "", "=q4=Spaulders of the Thalassian Savior", "=ds=#s3#, #a4#", "", "17%"}; - { 17, 34389, "", "=q4=Spaulders of the Thalassian Defender", "=ds=#m29#"}; - { 18, 35290, "", "=q4=Sin'dorei Pendant of Conquest", "=ds=#s2#", "", "33%"}; - { 19, 35291, "", "=q4=Sin'dorei Pendant of Salvation", "=ds=#s2#", "", "32%"}; - { 20, 35292, "", "=q4=Sin'dorei Pendant of Triumph", "=ds=#s2#", "", "32%"}; - { 21, 34204, "", "=q4=Amulet of Unfettered Magics", "=ds=#s2#", "", "20%"}; - { 22, 34189, "", "=q4=Band of Ruinous Delight", "=ds=#s13#", "", "18%"}; - { 23, 34206, "", "=q4=Book of Highborne Hymns", "=ds=#s15#", "", "22%"}; - { 24, 34197, "", "=q4=Shiv of Exsanguination", "=ds=#h1#, #w4#", "", "23%"}; - { 25, 34199, "", "=q4=Archon's Gavel", "=ds=#h3#, #w6#", "", "17%"}; - { 26, 34203, "", "=q4=Grip of Mannoroth", "=ds=#h4#, #w13#", "", "20%"}; - { 27, 34198, "", "=q4=Stanchion of Primal Instinct", "=ds=#w9#", "", "19%"}; - { 28, 34196, "", "=q4=Golden Bow of Quel'Thalas", "=ds=#w3#", "", "18%"}; - { 30, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "SPFelmyst"; - Next = "SPMuru"; - }; - - AtlasLoot_Data["SPMuru"] = { - { 1, 34232, "", "=q4=Fel Conquerer Raiments", "=ds=#s5#, #a1#", "", "13%"}; - { 2, 34233, "", "=q4=Robes of Faltered Light", "=ds=#s5#, #a1#", "", "17%"}; - { 3, 34399, "", "=q4=Robes of Ghostly Hatred", "=ds=#m29#"}; - { 4, 34212, "", "=q4=Sunglow Vest", "=ds=#s5#, #a2#", "", "14%"}; - { 5, 34398, "", "=q4=Utopian Tunic of Elune", "=ds=#m29#"}; - { 6, 34211, "", "=q4=Harness of Carnal Instinct", "=ds=#s5#, #a2#", "", "15%"}; - { 7, 34397, "", "=q4=Bladed Chaos Tunic", "=ds=#m29#"}; - { 8, 34234, "", "=q4=Shadowed Gauntlets of Paroxysm", "=ds=#s9#, #a2#", "", "18%"}; - { 9, 34408, "", "=q4=Gloves of the Forest Drifter", "=ds=#m29#"}; - { 10, 34229, "", "=q4=Garments of Serene Shores", "=ds=#s5#, #a3#", "", "13%"}; - { 11, 34396, "", "=q4=Garments of Crashing Shores", "=ds=#m29#"}; - { 12, 34228, "", "=q4=Vicious Hawkstrider Hauberk", "=ds=#s5#, #a3#", "", "15%"}; - { 13, 34215, "", "=q4=Warharness of Reckless Fury", "=ds=#s5#, #a4#", "", "16%"}; - { 14, 34394, "", "=q4=Breastplate of Agony's Aversion", "=ds=#m29#"}; - { 15, 34240, "", "=q4=Gauntlets of the Soothed Soul", "=ds=#s9#, #a4#", "", "15%"}; - { 16, 34216, "", "=q4=Heroic Judicator's Chestguard", "=ds=#s5#, #a4#", "", "16%"}; - { 17, 34395, "", "=q4=Noble Judicator's Chestguard", "=ds=#m29#"}; - { 18, 34213, "", "=q4=Ring of Hardened Resolve", "=ds=#s13#", "", "15%"}; - { 19, 34230, "", "=q4=Ring of Omnipotence", "=ds=#s13#", "", "16%"}; - { 20, 35282, "", "=q4=Sin'dorei Band of Dominance", "=ds=#s13#", "", "31%"}; - { 21, 35283, "", "=q4=Sin'dorei Band of Salvation", "=ds=#s13#", "", "31%"}; - { 22, 35284, "", "=q4=Sin'dorei Band of Triumph", "=ds=#s13#", "", "34%"}; - { 23, 34427, "", "=q4=Blackened Naaru Sliver", "=ds=#s14#", "", "13%"}; - { 24, 34430, "", "=q4=Glimmering Naaru Sliver", "=ds=#s14#", "", "16%"}; - { 25, 34429, "", "=q4=Shifting Naaru Sliver", "=ds=#s14#", "", "15%"}; - { 26, 34428, "", "=q4=Steely Naaru Sliver", "=ds=#s14#", "", "15%"}; - { 27, 34214, "", "=q4=Muramasa", "=ds=#h1#, #w10#", "", "16%"}; - { 28, 34231, "", "=q4=Aegis of Angelic Fortune", "=ds=#w8#", "", "14%"}; - { 30, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "SPEredarTwins"; - Next = "SPKiljaeden"; - }; - - AtlasLoot_Data["SPKiljaeden"] = { - { 1, 34241, "", "=q4=Cloak of Unforgivable Sin", "=ds=#s4#", "", "16%"}; - { 2, 34242, "", "=q4=Tattered Cape of Antonidas", "=ds=#s4#", "", "16%"}; - { 3, 34339, "", "=q4=Cowl of Light's Purity", "=ds=#s1#, #a1#", "", "18%"}; - { 4, 34405, "", "=q4=Helm of Arcane Purity", "=ds=#m29#"}; - { 5, 34340, "", "=q4=Dark Conjuror's Collar", "=ds=#s1#, #a1#", "", "20%"}; - { 6, 34342, "", "=q4=Handguards of the Dawn", "=ds=#s9#, #a1#", "", "19%"}; - { 7, 34406, "", "=q4=Gloves of Tyri's Power", "=ds=#m29#"}; - { 8, 34344, "", "=q4=Handguards of the Defiled Worlds", "=ds=#s9#, #a1#", "", "22%"}; - { 9, 34244, "", "=q4=Duplicitous Guise", "=ds=#s1#, #a2#", "", "17%"}; - { 10, 34404, "", "=q4=Mask of the Furry Hunter", "=ds=#m29#"}; - { 11, 34245, "", "=q4=Cover of Ursol the Wise", "=ds=#s1#, #a2#", "", "14%"}; - { 12, 34403, "", "=q4=Cover of Ursoc the Mighty", "=ds=#m29#"}; - { 13, 34333, "", "=q4=Coif of Alleria", "=ds=#s1#, #a3#", "", "14%"}; - { 14, 34332, "", "=q4=Cowl of Gul'dan", "=ds=#s1#, #a3#", "", "14%"}; - { 15, 34402, "", "=q4=Shroud of Chieftain Ner'zhul", "=ds=#m29#"}; - { 16, 34343, "", "=q4=Thalassian Ranger Gauntlets", "=ds=#s9#, #a3#", "", "18%"}; - { 17, 34243, "", "=q4=Helm of Burning Righteousness", "=ds=#s1#, #a4#", "", "21%"}; - { 18, 34401, "", "=q4=Helm of Uther's Resolve", "=ds=#m29#"}; - { 19, 34345, "", "=q4=Crown of Anasterian", "=ds=#s1#, #a4#", "", "16%"}; - { 20, 34400, "", "=q4=Crown of Dath'Remar", "=ds=#m29#"}; - { 21, 34341, "", "=q4=Borderland Paingrips", "=ds=#s9#, #a4#", "", "18%"}; - { 23, 34334, "", "=q5=Thori'dal, the Stars' Fury", "=ds=#w2#", "", "6%"}; - { 25, 34329, "", "=q4=Crux of the Apocalypse", "=ds=#h1#, #w4#", "", "16%"}; - { 26, 34247, "", "=q4=Apolyon, the Soul-Render", "=ds=#h2#, #w10#", "", "17%"}; - { 27, 34335, "", "=q4=Hammer of Sanctification", "=ds=#h3#, #w6#", "", "20%"}; - { 28, 34331, "", "=q4=Hand of the Deceiver", "=ds=#h3#, #w13#", "", "17%"}; - { 29, 34336, "", "=q4=Sunflare", "=ds=#h3#, #w4#", "", "18%"}; - { 30, 34337, "", "=q4=Golden Staff of the Sin'dorei", "=ds=#w9#", "", "14%"}; - Prev = "SPMuru"; - }; - - AtlasLoot_Data["SPTrash"] = { - { 1, 34351, "", "=q4=Tranquil Majesty Wraps", "=ds=#s9#, #a2#", "", "1%"}; - { 2, 34407, "", "=q4=Tranquil Moonlight Wraps", "=ds=#m29#"}; - { 3, 34350, "", "=q4=Gauntlets of the Ancient Shadowmoon", "=ds=#s9#, #a3#", "", "2%"}; - { 4, 34409, "", "=q4=Gauntlets of the Ancient Frostwolf", "=ds=#m29#"}; - { 5, 35733, "", "=q4=Ring of Harmonic Beauty", "=ds=#s13#", "", "8%"}; - { 6, 34183, "", "=q4=Shivering Felspine", "=ds=#h2#, #w7#", "", "1%"}; - { 7, 34346, "", "=q4=Mounting Vengeance", "=ds=#h4#, #w13#", "", "2%"}; - { 8, 34349, "", "=q4=Blade of Life's Inevitability", "=ds=#w11#", "", "2%"}; - { 9, 34348, "", "=q4=Wand of Cleansing Light", "=ds=#w12#", "", "4%"}; - { 10, 34347, "", "=q4=Wand of the Demonsoul", "=ds=#w12#", "", "2%"}; - { 12, 35273, "", "=q3=Study of Advanced Smelting", "=ds=#p23# (375)", "", "3%"}; - { 14, 34664, "", "=q3=Sunmote", "=ds=#m20#", "", "66%"}; - { 16, 32228, "", "=q4=Empyrean Sapphire", "=ds=#e7#", "", "12%"}; - { 17, 32231, "", "=q4=Pyrestone", "=ds=#e7#", "", "8%"}; - { 18, 32229, "", "=q4=Lionseye", "=ds=#e7#", "", "6%"}; - { 19, 32249, "", "=q4=Seaspray Emerald", "=ds=#e7#", "", "9%"}; - { 20, 32230, "", "=q4=Shadowsong Amethyst", "=ds=#e7#", "", "6%"}; - { 21, 32227, "", "=q4=Crimson Spinel", "=ds=#e7#", "", "8%"}; - { 23, 35208, "", "=q4=Plans: Sunblessed Gauntlets", "=ds=#p2# (365)", "", "0.25%"}; - { 24, 35210, "", "=q4=Plans: Sunblessed Breastplate", "=ds=#p2# (365)", "", "0.25%"}; - { 25, 35209, "", "=q4=Plans: Hard Khorium Battlefists", "=ds=#p2# (365)", "", "6%"}; - { 26, 35211, "", "=q4=Plans: Hard Khorium Battleplate", "=ds=#p2# (365)", "", "0.38%"}; - }; - - AtlasLoot_Data["SPPatterns"] = { - { 1, 35212, "", "=q4=Pattern: Leather Gauntlets of the Sun", "=ds=#p7# (365)"}; - { 2, 35216, "", "=q4=Pattern: Leather Chestguard of the Sun", "=ds=#p7# (365)"}; - { 3, 35213, "", "=q4=Pattern: Fletcher's Gloves of the Phoenix", "=ds=#p7# (365)"}; - { 4, 35217, "", "=q4=Pattern: Pattern: Embrace of the Phoenix", "=ds=#p7# (365)"}; - { 5, 35214, "", "=q4=Pattern: Gloves of Immortal Dusk", "=ds=#p7# (365)"}; - { 6, 35218, "", "=q4=Pattern: Carapace of Sun and Shadow", "=ds=#p7# (365)"}; - { 7, 35215, "", "=q4=Pattern: Sun-Drenched Scale Gloves", "=ds=#p7# (365)"}; - { 8, 35219, "", "=q4=Pattern: Sun-Drenched Scale Chestguard", "=ds=#p7# (365)"}; - { 9, 35204, "", "=q4=Pattern: Sunfire Handwraps", "=ds=#p8# (365)"}; - { 10, 35206, "", "=q4=Pattern: Sunfire Robe", "=ds=#p8# (365)"}; - { 11, 35205, "", "=q4=Pattern: Hands of Eternal Light", "=ds=#p8# (365)"}; - { 12, 35207, "", "=q4=Pattern: Robe of Eternal Light", "=ds=#p8# (365)"}; - { 13, 35198, "", "=q4=Design: Loop of Forged Power", "=ds=#p12# (365)"}; - { 14, 35201, "", "=q4=Design: Pendant of Sunfire", "=ds=#p12# (365)"}; - { 15, 35199, "", "=q4=Design: Ring of Flowing Life", "=ds=#p12# (365)"}; - { 16, 35202, "", "=q4=Design: Amulet of Flowing Life", "=ds=#p12# (365)"}; - { 17, 35200, "", "=q4=Design: Hard Khorium Band", "=ds=#p12# (365)"}; - { 18, 35203, "", "=q4=Design: Hard Khorium Choker", "=ds=#p12# (365)"}; - { 19, 35186, "", "=q4=Schematic: Annihilator Holo-Gogs", "=ds=#p5# (375)"}; - { 20, 35187, "", "=q4=Schematic: Justicebringer 3000 Specs", "=ds=#p5# (375)"}; - { 21, 35189, "", "=q4=Schematic: Powerheal 9000 Lens", "=ds=#p5# (375)"}; - { 22, 35190, "", "=q4=Schematic: Hyper-Magnified Moon Specs", "=ds=#p5# (375)"}; - { 23, 35191, "", "=q4=Schematic: Wonderheal XT68 Shades", "=ds=#p5# (375)"}; - { 24, 35192, "", "=q4=Schematic: Primal-Attuned Goggles", "=ds=#p5# (375)"}; - { 25, 35193, "", "=q4=Schematic: Lightning Etched Specs", "=ds=#p5# (375)"}; - { 26, 35194, "", "=q4=Schematic: Surestrike Goggles v3.0", "=ds=#p5# (375)"}; - { 27, 35195, "", "=q4=Schematic: Mayhem Projection Goggles", "=ds=#p5# (375)"}; - { 28, 35196, "", "=q4=Schematic: Hard Khorium Goggles", "=ds=#p5# (375)"}; - { 29, 35197, "", "=q4=Schematic: Quad Deathblow X44 Goggles", "=ds=#p5# (375)"}; - }; - - ----------------------------- - --- Tempest Keep: The Eye --- - ----------------------------- - - AtlasLoot_Data["TKEyeAlar"] = { - { 1, 29925, "", "=q4=Phoenix-Wing Cloak", "=ds=#s4#", "", "23%"}; - { 2, 29918, "", "=q4=Mindstorm Wristbands", "=ds=#s8#, #a1#", "", "22%"}; - { 3, 29947, "", "=q4=Gloves of the Searing Grip", "=ds=#s9#, #a2#", "", "23%"}; - { 4, 29921, "", "=q4=Fire Crest Breastplate", "=ds=#s5#, #a3#", "", "20%"}; - { 5, 29922, "", "=q4=Band of Al'Ar", "=ds=#s13#", "", "21%"}; - { 6, 29920, "", "=q4=Phoenix-Ring of Rebirth", "=ds=#s13#", "", "21%"}; - { 7, 30448, "", "=q4=Talon of Al'ar", "=ds=#s14#, =q1=#m1# =ds=#c2#", "", "22%"}; - { 8, 30447, "", "=q4=Tome of Fiery Redemption", "=ds=#s14#, =q1=#m1# =ds=#c4#", "", "21%"}; - { 9, 29923, "", "=q4=Talisman of the Sun King", "=ds=#s15#", "", "23%"}; - { 16, 32944, "", "=q4=Talon of the Phoenix", "=ds=#h3#, #w13#", "", "12%"}; - { 17, 29948, "", "=q4=Claw of the Phoenix", "=ds=#h4#, #w13#", "", "10%"}; - { 18, 29924, "", "=q4=Netherbane", "=ds=#h1#, #w1#", "", "21%"}; - { 19, 29949, "", "=q4=Arcanite Steam-Pistol", "=ds=#w5#", "", "22%"}; - { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Next = "TKEyeVoidReaver"; - }; - - AtlasLoot_Data["TKEyeVoidReaver"] = { - { 1, 29986, "", "=q4=Cowl of the Grand Engineer", "=ds=#s1#, #a1#", "", "13%"}; - { 2, 29984, "", "=q4=Girdle of Zaetar", "=ds=#s10#, #a2#", "", "13%"}; - { 3, 29985, "", "=q4=Void Reaver Greaves", "=ds=#s11#, #a3#", "", "14%"}; - { 4, 29983, "", "=q4=Fel-Steel Warhelm", "=ds=#s1#, #a4#", "", "12%"}; - { 5, 32515, "", "=q4=Wristguards of Determination", "=ds=#s8#, #a4#", "", "13%"}; - { 6, 30619, "", "=q4=Fel Reaver's Piston", "=ds=#s14#", "", "13%"}; - { 7, 30450, "", "=q4=Warp-Spring Coil", "=ds=#s14#, =q1=#m1# =ds=#c6#", "", "12%"}; - { 16, 30248, "", "=q4=Pauldrons of the Vanquished Champion", "=ds=#m22# #e15#", "", "61%"}; - { 17, 30249, "", "=q4=Pauldrons of the Vanquished Defender", "=ds=#m22# #e15#", "", "62%"}; - { 18, 30250, "", "=q4=Pauldrons of the Vanquished Hero", "=ds=#m22# #e15#", "", "61%"}; - { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "TKEyeAlar"; - Next = "TKEyeSolarian"; - }; - - AtlasLoot_Data["TKEyeSolarian"] = { - { 1, 29977, "", "=q4=Star-Soul Breeches", "=ds=#s11#, #a1#", "", "19%"}; - { 2, 29972, "", "=q4=Trousers of the Astromancer", "=ds=#s11#, #a1#", "", "19%"}; - { 3, 29966, "", "=q4=Vambraces of Ending", "=ds=#s8#, #a2#", "", "23%"}; - { 4, 29976, "", "=q4=Worldstorm Gauntlets", "=ds=#s9#, #a3#", "", "18%"}; - { 5, 29951, "", "=q4=Star-Strider Boots", "=ds=#s12#, #a3#", "", "23%"}; - { 6, 29965, "", "=q4=Girdle of the Righteous Path", "=ds=#s10#, #a4#", "", "21%"}; - { 7, 29950, "", "=q4=Greaves of the Bloodwarder", "=ds=#s11#, #a4#", "", "19%"}; - { 8, 32267, "", "=q4=Boots of the Resilient", "=ds=#s12#, #a4#", "", "17%"}; - { 16, 30446, "", "=q4=Solarian's Sapphire", "=ds=#s14#, =q1=#m1# =ds=#c9#", "", "21%"}; - { 17, 30449, "", "=q4=Void Star Talisman", "=ds=#s14#, =q1=#m1# =ds=#c8#", "", "22%"}; - { 18, 29962, "", "=q4=Heartrazor", "=ds=#h1#, #w4#", "", "23%"}; - { 19, 29981, "", "=q4=Ethereum Life-Staff", "=ds=#w9#", "", "21%"}; - { 20, 29982, "", "=q4=Wand of the Forgotten Star", "=ds=#w12#", "", "18%"}; - { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - Prev = "TKEyeVoidReaver"; - Next = "TKEyeKaelthas"; - }; - - AtlasLoot_Data["TKEyeKaelthas"] = { - { 1, 29992, "", "=q4=Royal Cloak of the Sunstriders", "=ds=#s4#", "", "14%"}; - { 2, 29989, "", "=q4=Sunshower Light Cloak", "=ds=#s4#", "", "12%"}; - { 3, 29994, "", "=q4=Thalassian Wildercloak", "=ds=#s4#", "", "14%"}; - { 4, 29990, "", "=q4=Crown of the Sun", "=ds=#s1#, #a1#", "", "14%"}; - { 5, 29987, "", "=q4=Gauntlets of the Sun-King", "=ds=#s9#, #a1#", "", "14%"}; - { 6, 29995, "", "=q4=Leggings of Murderous Intent", "=ds=#s11#, #a2#", "", "15%"}; - { 7, 29991, "", "=q4=Sunhawk Leggings", "=ds=#s11#, #a3#", "", "13%"}; - { 8, 29998, "", "=q4=Royal Gauntlets of Silvermoon", "=ds=#s9#, #a4#", "", "12%"}; - { 9, 29997, "", "=q4=Band of the Ranger-General", "=ds=#s13#", "", "14%"}; - { 10, 29993, "", "=q4=Twinblade of the Phoenix", "=ds=#h2#, #w10#", "", "12%"}; - { 11, 29996, "", "=q4=Rod of the Sun King", "=ds=#h1#, #w6#", "", "15%"}; - { 12, 29988, "", "=q4=The Nexus Key", "=ds=#w9#", "", "14%"}; - { 14, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 16, 30236, "", "=q4=Chestguard of the Vanquished Champion", "=ds=#m22# #e15#", "", "69%"}; - { 17, 30237, "", "=q4=Chestguard of the Vanquished Defender", "=ds=#m22# #e15#", "", "68%"}; - { 18, 30238, "", "=q4=Chestguard of the Vanquished Hero", "=ds=#m22# #e15#", "", "66%"}; - { 20, 32458, "", "=q4=Ashes of Al'ar", "=ds=#e12#", "", "2%"}; - { 22, 32405, "", "=q4=Verdant Sphere", "=ds=#m2#", "", "100%"}; - { 23, 30018, "", "=q4=Lord Sanguinar's Claim", "=q1=#m4#: =ds=#s2#"}; - { 24, 30017, "", "=q4=Telonicus's Pendant of Mayhem", "=q1=#m4#: =ds=#s2#"}; - { 25, 30007, "", "=q4=The Darkener's Grasp", "=q1=#m4#: =ds=#s2#"}; - { 26, 30015, "", "=q4=The Sun King's Talisman", "=q1=#m4#: =ds=#s2#"}; - { 28, 29905, "", "=q1=Kael's Vial Remnant", "=ds=#m3#", "", "37%"}; - Prev = "TKEyeSolarian"; - }; - - AtlasLoot_Data["TKEyeTrash"] = { - { 1, 30024, "", "=q4=Mantle of the Elven Kings", "=ds=#s3#, #a1#", "", "3%"}; - { 2, 30020, "", "=q4=Fire-Cord of the Magus", "=ds=#s10#, #a1#", "", "2%"}; - { 3, 30029, "", "=q4=Bark-Gloves of Ancient Wisdom", "=ds=#s9#, #a2#", "", "2%"}; - { 4, 30026, "", "=q4=Bands of the Celestial Archer", "=ds=#s8#, #a3#", "", "2%"}; - { 5, 30030, "", "=q4=Girdle of Fallen Stars", "=ds=#s10#, #a3#", "", "2%"}; - { 6, 30028, "", "=q4=Seventh Ring of the Tirisfalen", "=ds=#s13#", "", "2%"}; - { 8, 30324, "", "=q4=Plans: Red Havoc Boots", "=ds=#p2# (375)", "", "1%"}; - { 9, 30322, "", "=q4=Plans: Red Belt of Battle", "=ds=#p2# (375)", "", "2%"}; - { 10, 30323, "", "=q4=Plans: Boots of the Protector", "=ds=#p2# (375)", "", "2%"}; - { 11, 30321, "", "=q4=Plans: Belt of the Guardian", "=ds=#p2# (375)", "", "2%"}; - { 12, 30280, "", "=q4=Pattern: Belt of Blasting", "=ds=#p8# (375)", "", "1%"}; - { 13, 30282, "", "=q4=Pattern: Boots of Blasting", "=ds=#p8# (375)", "", "1%"}; - { 14, 30283, "", "=q4=Pattern: Boots of the Long Road", "=ds=#p8# (375)", "", "2%"}; - { 15, 30281, "", "=q4=Pattern: Belt of the Long Road", "=ds=#p8# (375)", "", "1%"}; - { 16, 30308, "", "=q4=Pattern: Hurricane Boots", "=ds=#p7# (375)", "", "1%"}; - { 17, 30304, "", "=q4=Pattern: Monsoon Belt", "=ds=#p7# (375)", "", "1%"}; - { 18, 30305, "", "=q4=Pattern: Boots of Natural Grace", "=ds=#p7# (375)", "", "2%"}; - { 19, 30307, "", "=q4=Pattern: Boots of the Crimson Hawk", "=ds=#p7# (375)", "", "1%"}; - { 20, 30306, "", "=q4=Pattern: Boots of Utter Darkness", "=ds=#p7# (375)", "", "2%"}; - { 21, 30301, "", "=q4=Pattern: Belt of Natural Power", "=ds=#p7# (375)", "", "1%"}; - { 22, 30303, "", "=q4=Pattern: Belt of the Black Eagle", "=ds=#p7# (375)", "", "1%"}; - { 23, 30302, "", "=q4=Pattern: Belt of Deep Shadow", "=ds=#p7# (375)", "", "1%"}; - { 25, 30183, "", "=q4=Nether Vortex", "=ds=#e8#", "", "75%"}; - { 27, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"}; - }; - - AtlasLoot_Data["TKEyeLegendaries"] = { - { 1, 30312, "", "=q5=Infinity Blade", "=ds=#h1#, #w4#"}; - { 2, 30311, "", "=q5=Warp Slicer", "=ds=#h1#, #w10#"}; - { 3, 30317, "", "=q5=Cosmic Infuser", "=ds=#h3#, #w6#"}; - { 4, 30316, "", "=q5=Devastation", "=ds=#h2#, #w1#"}; - { 5, 30313, "", "=q5=Staff of Disintegration", "=ds=#w9#"}; - { 6, 30314, "", "=q5=Phaseshift Bulwark", "=ds=#w8#"}; - { 7, 30318, "", "=q5=Netherstrand Longbow", "=ds=#w2#, =q1=#m1# =ds=#c2#"}; - { 8, 30319, "", "=q5=Nether Spike", "=ds=#w17#"}; - }; - - ---------------- - --- Zul'Aman --- - ---------------- - - AtlasLoot_Data["ZANalorakk"] = { - { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 2, 33203, "", "=q4=Robes of Heavenly Purpose", "=ds=#s5#, #a1#", "", "13%"}; - { 3, 33285, "", "=q4=Fury of the Ursine", "=ds=#s8#, #a1#", "", "13%"}; - { 4, 33211, "", "=q4=Bladeangel's Money Belt", "=ds=#s10#, #a2#", "", "14%"}; - { 5, 33206, "", "=q4=Pauldrons of Primal Fury", "=ds=#s3#, #a3#", "", "13%"}; - { 6, 33327, "", "=q4=Mask of Introspection", "=ds=#s1#, #a4#", "", "13%"}; - { 7, 33191, "", "=q4=Jungle Stompers", "=ds=#s12#, #a4#", "", "13%"}; - { 8, 33640, "", "=q4=Fury", "=ds=#h4#, #w13#", "", "14%"}; - { 10, 33307, "", "=q3=Formula: Enchant Weapon - Executioner", "=ds=#p4# (375)", "", "3%"}; - Next = "ZAAkilZon"; - }; - - AtlasLoot_Data["ZAAkilZon"] = { - { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 2, 33286, "", "=q4=Mojo-mender's Mask", "=ds=#s1#, #a3#", "", "13%"}; - { 3, 33215, "", "=q4=Bloodstained Elven Battlevest", "=ds=#s5#, #a4#", "", "13%"}; - { 4, 33216, "", "=q4=Chestguard of Hidden Purpose", "=ds=#s5#, #a4#", "", "13%"}; - { 5, 33281, "", "=q4=Brooch of Nature's Mercy", "=ds=#s2#", "", "13%"}; - { 6, 33293, "", "=q4=Signet of Ancient Magics", "=ds=#s13#", "", "13%"}; - { 7, 33214, "", "=q4=Akil'zon's Talonblade", "=ds=#h1#, #w10#", "", "13%"}; - { 8, 33283, "", "=q4=Amani Punisher", "=ds=#h3#, #w6#", "", "14%"}; - { 10, 33307, "", "=q3=Formula: Enchant Weapon - Executioner", "=ds=#p4# (375)", "", "3%"}; - Prev = "ZANalorakk"; - Next = "ZAJanAlai"; - }; - - AtlasLoot_Data["ZAJanAlai"] = { - { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 2, 33357, "", "=q4=Footpads of Madness", "=ds=#s12#, #a1#", "", "13%"}; - { 3, 33356, "", "=q4=Helm of Natural Regeneration", "=ds=#s1#, #a2#", "", "13%"}; - { 4, 33329, "", "=q4=Shadowtooth Trollskin Cuirass", "=ds=#s5#, #a2#", "", "13%"}; - { 5, 33328, "", "=q4=Arrow-fall Chestguard", "=ds=#s5#, #a3#", "", "13%"}; - { 6, 33354, "", "=q4=Wub's Cursed Hexblade", "=ds=#h3#, #w4#", "", "14%"}; - { 7, 33326, "", "=q4=Bulwark of the Amani Empire", "=ds=#w8#", "", "13%"}; - { 8, 33332, "", "=q4=Enamelled Disc of Mojo", "=ds=#w8#", "", "12%"}; - { 10, 33307, "", "=q3=Formula: Enchant Weapon - Executioner", "=ds=#p4# (375)", "", "3%"}; - Prev = "ZAAkilZon"; - Next = "ZAHalazzi"; - }; - - AtlasLoot_Data["ZAHalazzi"] = { - { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 2, 33317, "", "=q4=Robe of Departed Spirits", "=ds=#s5#, #a1#", "", "13%"}; - { 3, 33300, "", "=q4=Shoulderpads of Dancing Blades", "=ds=#s3#, #a2#", "", "14%"}; - { 4, 33322, "", "=q4=Shimmer-pelt Vest", "=ds=#s5#, #a2#", "", "13%"}; - { 5, 33533, "", "=q4=Avalanche Leggings", "=ds=#s11#, #a3#", "", "13%"}; - { 6, 33299, "", "=q4=Spaulders of the Advocate", "=ds=#s3#, #a4#", "", "13%"}; - { 7, 33303, "", "=q4=Skullshatter Warboots", "=ds=#s12#, #a4#", "", "14%"}; - { 8, 33297, "", "=q4=The Savage's Choker", "=ds=#s2#", "", "13%"}; - { 10, 33307, "", "=q3=Formula: Enchant Weapon - Executioner", "=ds=#p4# (375)", "", "3%"}; - Prev = "ZAJanAlai"; - Next = "ZAMalacrass"; - }; - - AtlasLoot_Data["ZAMalacrass"] = { - { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 2, 33592, "", "=q4=Cloak of Ancient Rituals", "=ds=#s4#", "", "13%"}; - { 3, 33453, "", "=q4=Hood of Hexing", "=ds=#s1#, #a1#", "", "13%"}; - { 4, 33463, "", "=q4=Hood of the Third Eye", "=ds=#s1#, #a1#", "", "13%"}; - { 5, 33432, "", "=q4=Coif of the Jungle Stalker", "=ds=#s1#, #a3#", "", "15%"}; - { 6, 33464, "", "=q4=Hex Lord's Voodoo Pauldrons", "=ds=#s3#, #a3#", "", "13%"}; - { 7, 33421, "", "=q4=Battleworn Tuskguard", "=ds=#s1#, #a4#", "", "15%"}; - { 8, 33446, "", "=q4=Girdle of Stromgarde's Hope", "=ds=#s10#, #a4#", "", "15%"}; - { 10, 33307, "", "=q3=Formula: Enchant Weapon - Executioner", "=ds=#p4# (375)", "", "3%"}; - { 16, 33829, "", "=q4=Hex Shrunken Head", "=ds=#s14#", "", "12%"}; - { 17, 34029, "", "=q4=Tiny Voodoo Mask", "=ds=#s14#", "", "25%"}; - { 18, 33828, "", "=q4=Tome of Diabolic Remedy", "=ds=#s14#", "", "13%"}; - { 19, 33389, "", "=q4=Dagger of Bad Mojo", "=ds=#h1#, #w4#", "", "15%"}; - { 20, 33298, "", "=q4=Prowler's Strikeblade", "=ds=#h1#, #w4#", "", "14%"}; - { 21, 33388, "", "=q4=Heartless", "=ds=#h1#, #w10#", "", "15%"}; - { 22, 33465, "", "=q4=Staff of Primal Fury", "=ds=#w9#", "", "13%"}; - Prev = "ZAHalazzi"; - Next = "ZAZuljin"; - }; - - AtlasLoot_Data["ZAZuljin"] = { - { 1, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 2, 33471, "", "=q4=Two-toed Sandals", "=ds=#s12#, #a1#", "", "15%"}; - { 3, 33479, "", "=q4=Grimgin Faceguard", "=ds=#s1#, #a2#", "", "15%"}; - { 4, 33469, "", "=q4=Hauberk of the Empire's Champion", "=ds=#s5#, #a3#", "", "16%"}; - { 5, 33473, "", "=q4=Chestguard of the Warlord", "=ds=#s5#, #a4#", "", "15%"}; - { 6, 33466, "", "=q4=Loop of Cursed Bones", "=ds=#s2#", "", "14%"}; - { 7, 33830, "", "=q4=Ancient Aqir Artifact", "=ds=#s14#", "", "14%"}; - { 8, 33831, "", "=q4=Berserker's Call", "=ds=#s14#", "", "14%"}; - { 10, 33307, "", "=q3=Formula: Enchant Weapon - Executioner", "=ds=#p4# (375)", "", "3%"}; - { 16, 33467, "", "=q4=Blade of Twisted Visions", "=ds=#h3#, #w10#", "", "14%"}; - { 17, 33478, "", "=q4=Jin'rohk, The Great Apocalypse", "=ds=#h2#, #w10#", "", "14%"}; - { 18, 33476, "", "=q4=Cleaver of the Unforgiving", "=ds=#h1#, #w1#", "", "15%"}; - { 19, 33468, "", "=q4=Dark Blessing", "=ds=#h3#, #w6#", "", "15%"}; - { 20, 33474, "", "=q4=Ancient Amani Longbow", "=ds=#w2#", "", "14%"}; - { 22, 33102, "", "=q4=Blood of Zul'Jin", "=ds=#m2#", "", "87%"}; - Prev = "ZAMalacrass"; - }; - - AtlasLoot_Data["ZATimedChest"] = { - { 1, 0, "INV_Box_01", "=q6=#x30#", ""}; - { 2, 33590, "", "=q4=Cloak of Fiends", "=ds=#s4#", "", "10%"}; - { 3, 33591, "", "=q4=Shadowcaster's Drape", "=ds=#s4#", "", "11%"}; - { 4, 33489, "", "=q4=Mantle of Ill Intent", "=ds=#s3#, #a1#", "", "11%"}; - { 5, 33480, "", "=q4=Cord of Braided Troll Hair", "=ds=#s10#, #a1#", "", "10%"}; - { 6, 33483, "", "=q4=Life-step Belt", "=ds=#s10#, #a2#", "", "12%"}; - { 7, 33971, "", "=q4=Elunite Imbued Leggings", "=ds=#s11#, #a2#", "", "10%"}; - { 8, 33805, "", "=q4=Shadowhunter's Treads", "=ds=#s12#, #a3#", "", "10%"}; - { 9, 33481, "", "=q4=Pauldrons of Stone Resolve", "=ds=#s3#, #a4#", "", "11%"}; - { 16, 0, "INV_Box_01", "=q6=#x31#", ""}; - { 17, 33495, "", "=q4=Rage", "=ds=#h3#, #w13#", "", "12%"}; - { 18, 33493, "", "=q4=Umbral Shiv", "=ds=#h1#, #w4#", "", "12%"}; - { 19, 33492, "", "=q4=Trollbane", "=ds=#h2#, #w1#", "", "11%"}; - { 20, 33490, "", "=q4=Staff of Dark Mending", "=ds=#w9#", "", "13%"}; - { 21, 33494, "", "=q4=Amani Divining Staff", "=ds=#w9#", "", "11%"}; - { 22, 33491, "", "=q4=Tuskbreaker", "=ds=#w5#", "", "12%"}; - { 24, 0, "INV_Box_01", "=q6=#x32#", ""}; - { 25, 33497, "", "=q4=Mana Attuned Band", "=ds=#s13#", "", "18%"}; - { 26, 33500, "", "=q4=Signet of Eternal Life", "=ds=#s13#", "", "20%"}; - { 27, 33496, "", "=q4=Signet of Primal Wrath", "=ds=#s13#", "", "23%"}; - { 28, 33499, "", "=q4=Signet of the Last Defender", "=ds=#s13#", "", "18%"}; - { 29, 33498, "", "=q4=Signet of the Quiet Forest", "=ds=#s13#", "", "21%"}; - }; - - AtlasLoot_Data["ZATrash"] = { - { 1, 33993, "", "=q3=Mojo", "=ds=#e13#"}; - { 3, 33865, "", "=q2=Amani Hex Stick", "=ds=#m20#", "", "40%"}; - { 4, 33930, "", "=q2=Amani Charm of the Bloodletter", "=ds=#m26#", "", "25%"}; - { 5, 33932, "", "=q2=Amani Charm of the Witch Doctor", "=ds=#m26#", "", "24%"}; - { 6, 33931, "", "=q2=Amani Charm of Mighty Mojo", "=ds=#m26#", "", "25%"}; - { 7, 33933, "", "=q2=Amani Charm of the Raging Defender", "=ds=#m26#", "", "25%"}; - }; - - -------------------- - --- World Bosses --- - -------------------- - - AtlasLoot_Data["WorldBossesBC"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Doom Lord Kazzak"], ""}; - { 2, 30735, "", "=q4=Ancient Spellcloak of the Highborne", "=ds=#s4#", "", "16.5%"}; - { 3, 30734, "", "=q4=Leggings of the Seventh Circle", "=ds=#s11#, #a1#", "", "17.0%"}; - { 4, 30737, "", "=q4=Gold-Leaf Wildboots", "=ds=#s12#, #a2#", "", "21.1%"}; - { 5, 30739, "", "=q4=Scaled Greaves of the Marksman", "=ds=#s11#, #a3#", "", "14.0%"}; - { 6, 30740, "", "=q4=Ripfiend Shoulderplates", "=ds=#s3#, #a4#", "", "16.1%"}; - { 7, 30741, "", "=q4=Topaz-Studded Battlegrips", "=ds=#s9#, #a4#", "", "17.0%"}; - { 8, 30736, "", "=q4=Ring of Flowing Light", "=ds=#s13#", "", "15.8%"}; - { 9, 30738, "", "=q4=Ring of Reciprocity", "=ds=#s13#", "", "23.4%"}; - { 10, 30733, "", "=q4=Hope Ender", "=ds=#h1#, #w10#", "", "16.7%"}; - { 11, 30732, "", "=q4=Exodar Life-Staff", "=ds=#w9#", "", "17.1%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Doomwalker"], ""}; - { 17, 30729, "", "=q4=Black-Iron Battlecloak", "=ds=#s4#", "", "19.6%"}; - { 18, 30725, "", "=q4=Anger-Spark Gloves", "=ds=#s9#, #a1#", "", "17.9%"}; - { 19, 30727, "", "=q4=Gilded Trousers of Benediction", "=ds=#s11#, #a1#", "", "18.1%"}; - { 20, 30730, "", "=q4=Terrorweave Tunic", "=ds=#s5#, #a2#", "", "18.8%"}; - { 21, 30728, "", "=q4=Fathom-Helm of the Deeps", "=ds=#s1#, #a3#", "", "16.2%"}; - { 22, 30731, "", "=q4=Faceguard of the Endless Watch", "=ds=#s1#, #a4#", "", "18.1%"}; - { 23, 30726, "", "=q4=Archaic Charm of Presence", "=ds=#s2#", "", "20.9%"}; - { 24, 30723, "", "=q4=Talon of the Tempest", "=ds=#h3#, #w4#", "", "15.4%"}; - { 25, 30722, "", "=q4=Ethereum Nexus-Reaver", "=ds=#h2#, #w1#", "", "16.0%"}; - { 26, 30724, "", "=q4=Barrel-Blade Longrifle", "=ds=#w5#", "", "20.0%"}; - }; \ No newline at end of file diff --git a/AtlasLoot_Crafting/crafting.lua b/AtlasLoot_Crafting/crafting.lua index 7df46a7..4149d23 100644 --- a/AtlasLoot_Crafting/crafting.lua +++ b/AtlasLoot_Crafting/crafting.lua @@ -69,8 +69,48 @@ local MASTER = select(2, GetSpellInfo(28596)); --------------- --- Alchemy --- --------------- - - AtlasLoot_Data["AlchemyBattleElixir1"] = { + AtlasLoot_Data["AlchemyBattleElixirCLASSIC"] = { + { 1, "s17573", "13454", "=q1=Greater Arcane Elixir", "=ds="..AL["Trainer"]}; + { 2, "s17571", "13452", "=q1=Elixir of the Mongoose", "=ds="..BabbleZone["Felwood"]}; + { 3, "s17557", "13453", "=q1=Elixir of Brute Force", "=ds="..AL["Trainer"]}; + { 4, "s11477", "9224", "=q1=Elixir of Demonslaying", "=ds="..AL["Vendor"]}; + { 5, "s26277", "21546", "=q1=Elixir of Greater Firepower", "=ds="..BabbleZone["Searing Gorge"]}; + { 6, "s11476", "9264", "=q1=Elixir of Shadow Power", "=ds="..AL["Vendor"]..", "..BabbleZone["Undercity"].."/"..BabbleZone["Stormwind City"]}; + { 7, "s11472", "9206", "=q1=Elixir of Giants", "=ds="..AL["World Drop"]}; + { 8, "s11467", "9187", "=q1=Elixir of Greater Agility", "=ds="..AL["Trainer"]}; + { 9, "s11461", "9155", "=q1=Arcane Elixir", "=ds="..AL["Trainer"]}; + { 10, "s21923", "17708", "=q1=Elixir of Frost Power", "=ds="..AL["Feast of Winter Veil"]}; + { 11, "s11449", "8949", "=q1=Elixir of Agility", "=ds="..AL["Trainer"]}; + { 12, "s63732", "45621", "=q1=Elixir of Minor Accuracy", "=ds="}; + { 13, "s3188", "3391", "=q1=Elixir of Ogre's Strength", "=ds="..AL["World Drop"]}; + { 14, "s2333", "3390", "=q1=Elixir of Lesser Agility", "=ds="..AL["World Drop"]}; + { 15, "s7845", "6373", "=q1=Elixir of Firepower", "=ds="..AL["Trainer"]}; + { 16, "s8240", "6662", "=q1=Elixir of Giant Growth", "=ds="..BabbleZone["The Barrens"]}; + { 17, "s3230", "2457", "=q1=Elixir of Minor Agility", "=ds="..AL["World Drop"]}; + { 18, "s2329", "2454", "=q1=Elixir of Lion's Strength", "=ds="..AL["Trainer"]}; + Next = "AlchemyBattleElixirTBC"; + Prev = "AlchemyBattleElixirWRATH"; + Back = "ALCHEMYMENU"; + Submenu = "Expansion"; + }; + AtlasLoot_Data["AlchemyBattleElixirTBC"] = { + { 1, "s28558", "22835", "=q1=Elixir of Major Shadow Power", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["Lower City"]}; + { 2, "s28556", "22833", "=q1=Elixir of Major Firepower", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["The Scryers"]}; + { 3, "s38960", "31679", "=q1=Fel Strength Elixir", "=ds="..BabbleZone["Shadowmoon Valley"]}; + { 4, "s28553", "22831", "=q1=Elixir of Major Agility", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Thrallmar"].."/"..BabbleFaction["Honor Hold"]}; + { 5, "s28549", "22827", "=q1=Elixir of Major Frost Power", "=ds="..AL["Vendor"]..", "..BabbleZone["Zangarmarsh"]}; + { 6, "s33741", "28104", "=q1=Elixir of Mastery", "=ds="..AL["Trainer"]}; + { 7, "s28545", "22825", "=q1=Elixir of Healing Power", "=ds="..AL["Trainer"]}; + { 8, "s28544", "22824", "=q1=Elixir of Major Strength", "=ds="..AL["Trainer"]}; + { 9, "s33740", "28103", "=q1=Adept's Elixir", "=ds="..AL["Trainer"]}; + { 10, "s33738", "28102", "=q1=Onslaught Elixir", "=ds="..AL["Trainer"]}; + Next = "AlchemyBattleElixirWRATH"; + Prev = "AlchemyBattleElixirCLASSIC"; + Back = "ALCHEMYMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["AlchemyBattleElixirWRATH"] = { { 1, "s60365", "44330", "=q1=Elixir of Armor Piercing", "=ds="}; { 2, "s60355", "44327", "=q1=Elixir of Deadly Strikes", "=ds="}; { 3, "s60357", "44329", "=q1=Elixir of Expertise", "=ds="}; @@ -80,46 +120,50 @@ local MASTER = select(2, GetSpellInfo(28596)); { 7, "s54218", "40073", "=q1=Elixir of Mighty Strength", "=ds="..AL["Trainer"]}; { 8, "s53848", "40076", "=q1=Guru's Elixir", "=ds="..AL["Trainer"]}; { 9, "s53842", "40070", "=q1=Spellpower Elixir", "=ds="..AL["Trainer"]}; - { 10, "s53841", "40068", "=q1=Wrath Elixir", "=ds="..AL["Trainer"]}; - { 11, "s28558", "22835", "=q1=Elixir of Major Shadow Power", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["Lower City"]}; - { 12, "s28556", "22833", "=q1=Elixir of Major Firepower", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["The Scryers"]}; - { 13, "s38960", "31679", "=q1=Fel Strength Elixir", "=ds="..BabbleZone["Shadowmoon Valley"]}; - { 14, "s28553", "22831", "=q1=Elixir of Major Agility", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Thrallmar"].."/"..BabbleFaction["Honor Hold"]}; - { 15, "s28549", "22827", "=q1=Elixir of Major Frost Power", "=ds="..AL["Vendor"]..", "..BabbleZone["Zangarmarsh"]}; - { 16, "s33741", "28104", "=q1=Elixir of Mastery", "=ds="..AL["Trainer"]}; - { 17, "s28545", "22825", "=q1=Elixir of Healing Power", "=ds="..AL["Trainer"]}; - { 18, "s28544", "22824", "=q1=Elixir of Major Strength", "=ds="..AL["Trainer"]}; - { 19, "s33740", "28103", "=q1=Adept's Elixir", "=ds="..AL["Trainer"]}; - { 20, "s33738", "28102", "=q1=Onslaught Elixir", "=ds="..AL["Trainer"]}; - { 21, "s17573", "13454", "=q1=Greater Arcane Elixir", "=ds="..AL["Trainer"]}; - { 22, "s17571", "13452", "=q1=Elixir of the Mongoose", "=ds="..BabbleZone["Felwood"]}; - { 23, "s17557", "13453", "=q1=Elixir of Brute Force", "=ds="..AL["Trainer"]}; - { 24, "s11477", "9224", "=q1=Elixir of Demonslaying", "=ds="..AL["Vendor"]}; - { 25, "s26277", "21546", "=q1=Elixir of Greater Firepower", "=ds="..BabbleZone["Searing Gorge"]}; - { 26, "s11476", "9264", "=q1=Elixir of Shadow Power", "=ds="..AL["Vendor"]..", "..BabbleZone["Undercity"].."/"..BabbleZone["Stormwind City"]}; - { 27, "s11472", "9206", "=q1=Elixir of Giants", "=ds="..AL["World Drop"]}; - { 28, "s11467", "9187", "=q1=Elixir of Greater Agility", "=ds="..AL["Trainer"]}; - { 29, "s11461", "9155", "=q1=Arcane Elixir", "=ds="..AL["Trainer"]}; - { 30, "s21923", "17708", "=q1=Elixir of Frost Power", "=ds="..AL["Feast of Winter Veil"]}; - Next = "AlchemyBattleElixir2"; + { 10, "s53841", "40068", "=q1=WRATH Elixir", "=ds="..AL["Trainer"]}; + Prev = "AlchemyBattleElixirTBC"; + Next = "AlchemyBattleElixirCLASSIC"; Back = "ALCHEMYMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["AlchemyGuardianElixirCLASSIC"] = { + { 1, "s24368", "20004", "=q1=Major Troll's Blood Elixir", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Zandalar Tribe"]}; + { 2, "s24365", "20007", "=q1=Mageblood Elixir", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["Zandalar Tribe"]}; + { 3, "s17554", "13445", "=q1=Elixir of Superior Defense", "=ds="..AL["Vendor"]..", "..BabbleZone["Orgrimmar"].."/"..BabbleZone["Ironforge"]}; + { 4, "s17555", "13447", "=q1=Elixir of the Sages", "=ds="..AL["Trainer"]}; + { 5, "s11466", "9088", "=q1=Gift of Arthas", "=ds="..BabbleZone["Western Plaguelands"]}; + { 6, "s11465", "9179", "=q1=Elixir of Greater Intellect", "=ds="..AL["Trainer"]}; + { 7, "s11450", "8951", "=q1=Elixir of Greater Defense", "=ds="..AL["Trainer"]}; + { 8, "s3451", "3826", "=q1=Mighty Troll's Blood Elixir", "=ds="..AL["World Drop"]}; + { 9, "s3450", "3825", "=q1=Elixir of Fortitude", "=ds="..AL["Trainer"]}; + { 10, "s3177", "3389", "=q1=Elixir of Defense", "=ds="..AL["Trainer"]}; + { 11, "s3176", "3388", "=q1=Strong Troll's Blood Potion", "=ds="..AL["Trainer"]}; + { 12, "s3171", "3383", "=q1=Elixir of Wisdom", "=ds="..AL["Trainer"]}; + { 13, "s2334", "2458", "=q1=Elixir of Minor Fortitude", "=ds="..AL["Trainer"]}; + { 14, "s3170", "3382", "=q1=Weak Troll's Blood Elixir", "=ds="..AL["Trainer"]}; + { 15, "s7183", "5997", "=q1=Elixir of Minor Defense", "=ds="..AL["Trainer"]}; + Next = "AlchemyGuardianElixirTBC"; + Prev = "AlchemyGuardianElixirWRATH"; + Back = "ALCHEMYMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["AlchemyBattleElixir2"] = { - { 1, "s11449", "8949", "=q1=Elixir of Agility", "=ds="..AL["Trainer"]}; - { 2, "s63732", "45621", "=q1=Elixir of Minor Accuracy", "=ds="}; - { 3, "s3188", "3391", "=q1=Elixir of Ogre's Strength", "=ds="..AL["World Drop"]}; - { 4, "s2333", "3390", "=q1=Elixir of Lesser Agility", "=ds="..AL["World Drop"]}; - { 5, "s7845", "6373", "=q1=Elixir of Firepower", "=ds="..AL["Trainer"]}; - { 6, "s8240", "6662", "=q1=Elixir of Giant Growth", "=ds="..BabbleZone["The Barrens"]}; - { 7, "s3230", "2457", "=q1=Elixir of Minor Agility", "=ds="..AL["World Drop"]}; - { 8, "s2329", "2454", "=q1=Elixir of Lion's Strength", "=ds="..AL["Trainer"]}; - Prev = "AlchemyBattleElixir1"; - Next = "AlchemyGuardianElixir1"; + AtlasLoot_Data["AlchemyGuardianElixirTBC"] = { + { 1, "s28578", "22848", "=q1=Elixir of Empowerment", "=ds="..AL["World Drop"]}; + { 2, "s28570", "22840", "=q1=Elixir of Major Mageblood", "=ds="..AL["World Drop"]}; + { 3, "s28557", "22834", "=q1=Elixir of Major Defense", "=ds="..AL["Vendor"]}; + { 4, "s39639", "32068", "=q1=Elixir of Ironskin", "=ds="..AL["Vendor"]..", "..BabbleZone["Nagrand"]}; + { 5, "s39637", "32063", "=q1=Earthen Elixir", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Cenarion Expedition"]}; + { 6, "s39638", "32067", "=q1=Elixir of Draenic Wisdom", "=ds="..AL["Trainer"]}; + { 7, "s39636", "32062", "=q1=Elixir of Major Fortitude", "=ds="..AL["Trainer"]}; + Next = "AlchemyGuardianElixirWRATH"; + Prev = "AlchemyGuardianElixirCLASSIC"; Back = "ALCHEMYMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["AlchemyGuardianElixir1"] = { + AtlasLoot_Data["AlchemyGuardianElixirWRATH"] = { { 1, "s60356", "44328", "=q1=Elixir of Mighty Defense", "=ds="..AL["Discovery"]}; { 2, "s56519", "40109", "=q1=Elixir of Mighty Mageblood", "=ds="..AL["Discovery"]}; { 3, "s54220", "40097", "=q1=Elixir of Protection", "=ds="..AL["Discovery"]}; @@ -127,106 +171,40 @@ local MASTER = select(2, GetSpellInfo(28596)); { 5, "s53898", "40078", "=q1=Elixir of Mighty Fortitude", "=ds="..AL["Trainer"]}; { 6, "s60367", "44332", "=q1=Elixir of Mighty Thoughts", "=ds="..AL["Trainer"]}; { 7, "s53847", "40072", "=q1=Elixir of Spirit", "=ds="..AL["Trainer"]}; - { 8, "s28578", "22848", "=q1=Elixir of Empowerment", "=ds="..AL["World Drop"]}; - { 9, "s28570", "22840", "=q1=Elixir of Major Mageblood", "=ds="..AL["World Drop"]}; - { 10, "s28557", "22834", "=q1=Elixir of Major Defense", "=ds="..AL["Vendor"]}; - { 11, "s39639", "32068", "=q1=Elixir of Ironskin", "=ds="..AL["Vendor"]..", "..BabbleZone["Nagrand"]}; - { 12, "s39637", "32063", "=q1=Earthen Elixir", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Cenarion Expedition"]}; - { 13, "s39638", "32067", "=q1=Elixir of Draenic Wisdom", "=ds="..AL["Trainer"]}; - { 14, "s39636", "32062", "=q1=Elixir of Major Fortitude", "=ds="..AL["Trainer"]}; - { 15, "s24368", "20004", "=q1=Major Troll's Blood Elixir", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Zandalar Tribe"]}; - { 16, "s24365", "20007", "=q1=Mageblood Elixir", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["Zandalar Tribe"]}; - { 17, "s17554", "13445", "=q1=Elixir of Superior Defense", "=ds="..AL["Vendor"]..", "..BabbleZone["Orgrimmar"].."/"..BabbleZone["Ironforge"]}; - { 18, "s17555", "13447", "=q1=Elixir of the Sages", "=ds="..AL["Trainer"]}; - { 19, "s11466", "9088", "=q1=Gift of Arthas", "=ds="..BabbleZone["Western Plaguelands"]}; - { 20, "s11465", "9179", "=q1=Elixir of Greater Intellect", "=ds="..AL["Trainer"]}; - { 21, "s11450", "8951", "=q1=Elixir of Greater Defense", "=ds="..AL["Trainer"]}; - { 22, "s3451", "3826", "=q1=Mighty Troll's Blood Elixir", "=ds="..AL["World Drop"]}; - { 23, "s3450", "3825", "=q1=Elixir of Fortitude", "=ds="..AL["Trainer"]}; - { 24, "s3177", "3389", "=q1=Elixir of Defense", "=ds="..AL["Trainer"]}; - { 25, "s3176", "3388", "=q1=Strong Troll's Blood Potion", "=ds="..AL["Trainer"]}; - { 26, "s3171", "3383", "=q1=Elixir of Wisdom", "=ds="..AL["Trainer"]}; - { 27, "s2334", "2458", "=q1=Elixir of Minor Fortitude", "=ds="..AL["Trainer"]}; - { 28, "s3170", "3382", "=q1=Weak Troll's Blood Elixir", "=ds="..AL["Trainer"]}; - { 29, "s7183", "5997", "=q1=Elixir of Minor Defense", "=ds="..AL["Trainer"]}; - Next = "AlchemyPotion1"; - Prev = "AlchemyBattleElixir1"; + Prev = "AlchemyGuardianElixirTBC"; Back = "ALCHEMYMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["AlchemyPotion1"] = { - { 1, "s54221", "40211", "=q1=Potion of Speed", "=ds="}; - { 2, "s54222", "40212", "=q1=Potion of Wild Magic", "=ds="}; - { 3, "s53904", "40087", "=q1=Powerful Rejuvenation Potion", "=ds="}; - { 4, "s58868", "43570", "=q1=Endless Mana Potion", "=ds="..AL["Trainer"]}; - { 5, "s53837", "33448", "=q1=Runic Mana Potion", "=ds="..AL["Trainer"]}; - { 6, "s58871", "43569", "=q1=Endless Healing Potion", "=ds="..AL["Trainer"]}; - { 7, "s53836", "33447", "=q1=Runic Healing Potion", "=ds="..AL["Trainer"]}; - { 8, "s53936", "40213", "=q1=Mighty Arcane Protection Potion", "=ds="}; - { 9, "s53939", "40214", "=q1=Mighty Fire Protection Potion", "=ds="..AL["Drop"]}; - { 10, "s53937", "40215", "=q1=Mighty Frost Protection Potion", "=ds="..AL["Drop"]}; - { 11, "s53942", "40216", "=q1=Mighty Nature Protection Potion", "=ds="..AL["Drop"]}; - { 12, "s53938", "40217", "=q1=Mighty Shadow Protection Potion", "=ds="}; - { 13, "s53905", "40093", "=q1=Indestructible Potion", "=ds="..AL["Trainer"]}; - { 14, "s53900", "40081", "=q1=Potion of Nightmares", "=ds="..AL["Trainer"]}; - { 15, "s53895", "40077", "=q1=Crazy Alchemist's Potion", "=ds="..AL["Trainer"]}; - { 16, "s53839", "40067", "=q1=Icy Mana Potion", "=ds="..AL["Trainer"]}; - { 17, "s53838", "39671", "=q1=Resurgent Healing Potion", "=ds="..AL["Trainer"]}; - { 18, "s28586", "22850", "=q1=Super Rejuvenation Potion", "=ds="..AL["Discovery"]}; - { 19, "s38961", "31677", "=q1=Fel Mana Potion", "=ds="..BabbleZone["Shadowmoon Valley"]}; - { 20, "s28579", "22849", "=q1=Ironshield Potion", "=ds="..BabbleBoss["Captain Skarloc"]..": "..BabbleZone["Old Hillsbrad Foothills"]}; - { 21, "s28575", "22845", "=q1=Major Arcane Protection Potion", "=ds="..BabbleZone["Nagrand"]}; - { 22, "s28571", "22841", "=q1=Major Fire Protection Potion", "=ds="..BabbleZone["The Mechanar"]}; - { 23, "s28572", "22842", "=q1=Major Frost Protection Potion", "=ds="..BabbleBoss["Nexus-Prince Shaffar"]..": "..BabbleZone["Mana-Tombs"]}; - { 24, "s28577", "22847", "=q1=Major Holy Protection Potion", "=ds="..BabbleZone["Blade's Edge Mountains"]}; - { 25, "s28573", "22844", "=q1=Major Nature Protection Potion", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Cenarion Expedition"]}; - { 26, "s28576", "22846", "=q1=Major Shadow Protection Potion", "=ds="..BabbleZone["Shadowmoon Valley"]}; - { 27, "s28565", "22839", "=q1=Destruction Potion", "=ds="..AL["World Drop"]}; - { 28, "s28564", "22838", "=q1=Haste Potion", "=ds="..AL["World Drop"]}; - { 29, "s28563", "22837", "=q1=Heroic Potion", "=ds="..AL["World Drop"]}; - { 30, "s28562", "22836", "=q1=Major Dreamless Sleep Potion", "=ds="..AL["Vendor"]}; - Next = "AlchemyPotion2"; - Prev = "AlchemyGuardianElixir1"; + AtlasLoot_Data["AlchemyPotionCLASSIC"] = { + { 1, "s22732", "18253", "=q1=Major Rejuvenation Potion", "=ds="..BabbleZone["Molten Core"]}; + { 2, "s17580", "13444", "=q1=Major Mana Potion", "=ds="..AL["Vendor"]..", "..BabbleZone["Western Plaguelands"]}; + { 3, "s17577", "13461", "=q1=Greater Arcane Protection Potion", "=ds="..BabbleZone["Winterspring"]}; + { 4, "s17574", "13457", "=q1=Greater Fire Protection Potion", "=ds="..BabbleZone["Blackrock Spire"]}; + { 5, "s17575", "13456", "=q1=Greater Frost Protection Potion", "=ds="..BabbleZone["Winterspring"]}; + { 6, "s17576", "13458", "=q1=Greater Nature Protection Potion", "=ds="..BabbleZone["Western Plaguelands"]}; + { 7, "s17578", "13459", "=q1=Greater Shadow Protection Potion", "=ds="..BabbleZone["Eastern Plaguelands"]}; + { 8, "s24367", "20008", "=q1=Living Action Potion", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Zandalar Tribe"]}; + { 9, "s17572", "13462", "=q1=Purification Potion", "=ds="..AL["World Drop"]}; + { 10, "s17570", "13455", "=q1=Greater Stoneshield Potion", "=ds="..AL["World Drop"]}; + { 11, "s24366", "20002", "=q1=Greater Dreamless Sleep Potion", "=ds="..BabbleFaction["Friendly"]..": "..BabbleFaction["Zandalar Tribe"]}; + { 12, "s17556", "13446", "=q1=Major Healing Potion", "=ds="..AL["Trainer"]}; + { 13, "s17553", "13443", "=q1=Superior Mana Potion", "=ds="..AL["Trainer"]}; + { 14, "s17552", "13442", "=q1=Mighty Rage Potion", "=ds="..AL["Trainer"]}; + { 15, "s3175", "3387", "=q1=Limited Invulnerability Potion", "=ds="..AL["World Drop"]}; + { 16, "s11464", "9172", "=q1=Invisibility Potion", "=ds="..AL["World Drop"]}; + { 17, "s15833", "12190", "=q1=Dreamless Sleep Potion", "=ds="..AL["Trainer"]}; + { 18, "s11458", "9144", "=q1=Wildvine Potion", "=ds="..BabbleZone["The Hinterlands"].."/"..BabbleZone["Stranglethorn Vale"]}; + { 19, "s4942", "4623", "=q1=Lesser Stoneshield Potion", "=ds="..AL["Quest"]..": "..BabbleZone["Badlands"]}; + { 20, "s11457", "3928", "=q1=Superior Healing Potion", "=ds="..AL["Trainer"]}; + { 21, "s11453", "9036", "=q1=Magic Resistance Potion", "=ds="..AL["World Drop"]}; + Next = "AlchemyPotion1CLASSIC"; + Prev = "AlchemyPotionWRATH"; Back = "ALCHEMYMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["AlchemyPotion2"] = { - { 1, "s38962", "31676", "=q1=Fel Regeneration Potion", "=ds="..BabbleZone["Shadowmoon Valley"]}; - { 2, "s28555", "22832", "=q1=Super Mana Potion", "=ds="..AL["Vendor"]}; - { 3, "s28554", "22871", "=q1=Shrouding Potion", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Sporeggar"]}; - { 4, "s45061", "34440", "=q1=Mad Alchemist's Potion", "=ds="..AL["Trainer"]}; - { 5, "s28551", "22829", "=q1=Super Healing Potion", "=ds="..AL["Trainer"]}; - { 6, "s28550", "22828", "=q1=Insane Strength Potion", "=ds="..AL["World Drop"]}; - { 7, "s28546", "22826", "=q1=Sneaking Potion", "=ds="..AL["Vendor"]}; - { 8, "s33733", "28101", "=q1=Unstable Mana Potion", "=ds="..AL["Trainer"]}; - { 9, "s22732", "18253", "=q1=Major Rejuvenation Potion", "=ds="..BabbleZone["Molten Core"]}; - { 10, "s33732", "28100", "=q1=Volatile Healing Potion", "=ds="..AL["Trainer"]}; - { 11, "s17580", "13444", "=q1=Major Mana Potion", "=ds="..AL["Vendor"]..", "..BabbleZone["Western Plaguelands"]}; - { 12, "s17577", "13461", "=q1=Greater Arcane Protection Potion", "=ds="..BabbleZone["Winterspring"]}; - { 13, "s17574", "13457", "=q1=Greater Fire Protection Potion", "=ds="..BabbleZone["Blackrock Spire"]}; - { 14, "s17575", "13456", "=q1=Greater Frost Protection Potion", "=ds="..BabbleZone["Winterspring"]}; - { 15, "s17576", "13458", "=q1=Greater Nature Protection Potion", "=ds="..BabbleZone["Western Plaguelands"]}; - { 16, "s17578", "13459", "=q1=Greater Shadow Protection Potion", "=ds="..BabbleZone["Eastern Plaguelands"]}; - { 17, "s24367", "20008", "=q1=Living Action Potion", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Zandalar Tribe"]}; - { 18, "s17572", "13462", "=q1=Purification Potion", "=ds="..AL["World Drop"]}; - { 19, "s17570", "13455", "=q1=Greater Stoneshield Potion", "=ds="..AL["World Drop"]}; - { 20, "s24366", "20002", "=q1=Greater Dreamless Sleep Potion", "=ds="..BabbleFaction["Friendly"]..": "..BabbleFaction["Zandalar Tribe"]}; - { 21, "s17556", "13446", "=q1=Major Healing Potion", "=ds="..AL["Trainer"]}; - { 22, "s17553", "13443", "=q1=Superior Mana Potion", "=ds="..AL["Trainer"]}; - { 23, "s17552", "13442", "=q1=Mighty Rage Potion", "=ds="..AL["Trainer"]}; - { 24, "s3175", "3387", "=q1=Limited Invulnerability Potion", "=ds="..AL["World Drop"]}; - { 25, "s11464", "9172", "=q1=Invisibility Potion", "=ds="..AL["World Drop"]}; - { 26, "s15833", "12190", "=q1=Dreamless Sleep Potion", "=ds="..AL["Trainer"]}; - { 27, "s11458", "9144", "=q1=Wildvine Potion", "=ds="..BabbleZone["The Hinterlands"].."/"..BabbleZone["Stranglethorn Vale"]}; - { 28, "s4942", "4623", "=q1=Lesser Stoneshield Potion", "=ds="..AL["Quest"]..": "..BabbleZone["Badlands"]}; - { 29, "s11457", "3928", "=q1=Superior Healing Potion", "=ds="..AL["Trainer"]}; - { 30, "s11453", "9036", "=q1=Magic Resistance Potion", "=ds="..AL["World Drop"]}; - Next = "AlchemyPotion3"; - Prev = "AlchemyPotion1"; - Back = "ALCHEMYMENU"; - }; - - AtlasLoot_Data["AlchemyPotion3"] = { + AtlasLoot_Data["AlchemyPotion1CLASSIC"] = { { 1, "s11452", "9030", "=q1=Restorative Potion", "=ds="..AL["Quest"]..": "..BabbleZone["Badlands"]}; { 2, "s11448", "6149", "=q1=Greater Mana Potion", "=ds="..AL["Trainer"]}; { 3, "s7258", "6050", "=q1=Frost Protection Potion", "=ds="..AL["Vendor"]}; @@ -251,12 +229,91 @@ local MASTER = select(2, GetSpellInfo(28596)); { 22, "s2332", "2456", "=q1=Minor Rejuvenation Potion", "=ds="..AL["Trainer"]}; { 23, "s2331", "2455", "=q1=Minor Mana Potion", "=ds="..AL["Trainer"]}; { 24, "s2330", "118", "=q1=Minor Healing Potion", "=ds="..AL["Trainer"]}; - Next = "AlchemyFlask1"; - Prev = "AlchemyPotion2"; + Next = "AlchemyPotionTBC"; + Prev = "AlchemyPotionCLASSIC"; Back = "ALCHEMYMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["AlchemyFlask1"] = { + AtlasLoot_Data["AlchemyPotionTBC"] = { + { 1, "s28586", "22850", "=q1=Super Rejuvenation Potion", "=ds="..AL["Discovery"]}; + { 2, "s38961", "31677", "=q1=Fel Mana Potion", "=ds="..BabbleZone["Shadowmoon Valley"]}; + { 3, "s28579", "22849", "=q1=Ironshield Potion", "=ds="..BabbleBoss["Captain Skarloc"]..": "..BabbleZone["Old Hillsbrad Foothills"]}; + { 4, "s28575", "22845", "=q1=Major Arcane Protection Potion", "=ds="..BabbleZone["Nagrand"]}; + { 5, "s28571", "22841", "=q1=Major Fire Protection Potion", "=ds="..BabbleZone["The Mechanar"]}; + { 6, "s28572", "22842", "=q1=Major Frost Protection Potion", "=ds="..BabbleBoss["Nexus-Prince Shaffar"]..": "..BabbleZone["Mana-Tombs"]}; + { 7, "s28577", "22847", "=q1=Major Holy Protection Potion", "=ds="..BabbleZone["Blade's Edge Mountains"]}; + { 8, "s28573", "22844", "=q1=Major Nature Protection Potion", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Cenarion Expedition"]}; + { 9, "s28576", "22846", "=q1=Major Shadow Protection Potion", "=ds="..BabbleZone["Shadowmoon Valley"]}; + { 10, "s28565", "22839", "=q1=Destruction Potion", "=ds="..AL["World Drop"]}; + { 11, "s28564", "22838", "=q1=Haste Potion", "=ds="..AL["World Drop"]}; + { 12, "s28563", "22837", "=q1=Heroic Potion", "=ds="..AL["World Drop"]}; + { 13, "s28562", "22836", "=q1=Major Dreamless Sleep Potion", "=ds="..AL["Vendor"]}; + { 14, "s38962", "31676", "=q1=Fel Regeneration Potion", "=ds="..BabbleZone["Shadowmoon Valley"]}; + { 15, "s28555", "22832", "=q1=Super Mana Potion", "=ds="..AL["Vendor"]}; + { 16, "s28554", "22871", "=q1=Shrouding Potion", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Sporeggar"]}; + { 17, "s45061", "34440", "=q1=Mad Alchemist's Potion", "=ds="..AL["Trainer"]}; + { 18, "s28551", "22829", "=q1=Super Healing Potion", "=ds="..AL["Trainer"]}; + { 19, "s28550", "22828", "=q1=Insane Strength Potion", "=ds="..AL["World Drop"]}; + { 20, "s28546", "22826", "=q1=Sneaking Potion", "=ds="..AL["Vendor"]}; + { 21, "s33733", "28101", "=q1=Unstable Mana Potion", "=ds="..AL["Trainer"]}; + { 22, "s33732", "28100", "=q1=Volatile Healing Potion", "=ds="..AL["Trainer"]}; + Next = "AlchemyPotionWRATH"; + Prev = "AlchemyPotion1CLASSIC"; + Back = "ALCHEMYMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["AlchemyPotionWRATH"] = { + { 1, "s54221", "40211", "=q1=Potion of Speed", "=ds="}; + { 2, "s54222", "40212", "=q1=Potion of Wild Magic", "=ds="}; + { 3, "s53904", "40087", "=q1=Powerful Rejuvenation Potion", "=ds="}; + { 4, "s58868", "43570", "=q1=Endless Mana Potion", "=ds="..AL["Trainer"]}; + { 5, "s53837", "33448", "=q1=Runic Mana Potion", "=ds="..AL["Trainer"]}; + { 6, "s58871", "43569", "=q1=Endless Healing Potion", "=ds="..AL["Trainer"]}; + { 7, "s53836", "33447", "=q1=Runic Healing Potion", "=ds="..AL["Trainer"]}; + { 8, "s53936", "40213", "=q1=Mighty Arcane Protection Potion", "=ds="}; + { 9, "s53939", "40214", "=q1=Mighty Fire Protection Potion", "=ds="..AL["Drop"]}; + { 10, "s53937", "40215", "=q1=Mighty Frost Protection Potion", "=ds="..AL["Drop"]}; + { 11, "s53942", "40216", "=q1=Mighty Nature Protection Potion", "=ds="..AL["Drop"]}; + { 12, "s53938", "40217", "=q1=Mighty Shadow Protection Potion", "=ds="}; + { 13, "s53905", "40093", "=q1=Indestructible Potion", "=ds="..AL["Trainer"]}; + { 14, "s53900", "40081", "=q1=Potion of Nightmares", "=ds="..AL["Trainer"]}; + { 15, "s53895", "40077", "=q1=Crazy Alchemist's Potion", "=ds="..AL["Trainer"]}; + { 16, "s53839", "40067", "=q1=Icy Mana Potion", "=ds="..AL["Trainer"]}; + { 17, "s53838", "39671", "=q1=Resurgent Healing Potion", "=ds="..AL["Trainer"]}; + Prev = "AlchemyPotionTBC"; + Next = "AlchemyPotionCLASSIC"; + Back = "ALCHEMYMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["AlchemyFlaskCLASSIC"] = { + { 1, "s17638", "13513", "=q1=Flask of Chromatic Resistance", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Lower City"]}; + { 2, "s17636", "13511", "=q1=Flask of Distilled Wisdom", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Cenarion Expedition"]}; + { 3, "s17634", "13506", "=q1=Flask of Petrification", "=ds="..AL["World Drop"]}; + { 4, "s17637", "13512", "=q1=Flask of Supreme Power", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Keepers of Time"]}; + { 5, "s17635", "13510", "=q1=Flask of the Titans", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["The Sha'tar"]}; + Next = "AlchemyFlaskTBC"; + Prev = "AlchemyFlaskWRATH"; + Back = "ALCHEMYMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["AlchemyFlaskTBC"] = { + { 1, "s42736", "33208", "=q1=Flask of Chromatic Wonder", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["The Violet Eye"]}; + { 2, "s28590", "22861", "=q1=Flask of Blinding Light", "=ds="..AL["Discovery"]}; + { 3, "s28587", "22851", "=q1=Flask of Fortification", "=ds="..AL["Discovery"]}; + { 4, "s28588", "22853", "=q1=Flask of Mighty Restoration", "=ds="..AL["Discovery"]}; + { 5, "s28591", "22866", "=q1=Flask of Pure Death", "=ds="..AL["Discovery"]}; + { 6, "s28589", "22854", "=q1=Flask of Relentless Assault", "=ds="..AL["Discovery"]}; + Next = "AlchemyFlaskWRATH"; + Prev = "AlchemyFlaskCLASSIC"; + Back = "ALCHEMYMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["AlchemyFlaskWRATH"] = { { 1, "s67025", "47499", "=q3=Flask of the North", "=ds="..AL["Trainer"]}; { 2, "s53903", "46377", "=q1=Flask of Endless Rage", "=ds="..AL["Trainer"]}; { 3, "s54213", "46378", "=q1=Flask of Pure Mojo", "=ds="..AL["Trainer"]}; @@ -264,23 +321,52 @@ local MASTER = select(2, GetSpellInfo(28596)); { 5, "s53901", "46376", "=q1=Flask of the Frost Wyrm", "=ds="..AL["Trainer"]}; { 6, "s62213", "44939", "=q1=Lesser Flask of Resistance", "=ds="..AL["Trainer"]}; { 7, "s53899", "40079", "=q1=Lesser Flask of Toughness", "=ds="..AL["Trainer"]}; - { 8, "s42736", "33208", "=q1=Flask of Chromatic Wonder", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["The Violet Eye"]}; - { 9, "s28590", "22861", "=q1=Flask of Blinding Light", "=ds="..AL["Discovery"]}; - { 10, "s28587", "22851", "=q1=Flask of Fortification", "=ds="..AL["Discovery"]}; - { 11, "s28588", "22853", "=q1=Flask of Mighty Restoration", "=ds="..AL["Discovery"]}; - { 12, "s28591", "22866", "=q1=Flask of Pure Death", "=ds="..AL["Discovery"]}; - { 13, "s28589", "22854", "=q1=Flask of Relentless Assault", "=ds="..AL["Discovery"]}; - { 14, "s17638", "13513", "=q1=Flask of Chromatic Resistance", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Lower City"]}; - { 15, "s17636", "13511", "=q1=Flask of Distilled Wisdom", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Cenarion Expedition"]}; - { 16, "s17634", "13506", "=q1=Flask of Petrification", "=ds="..AL["World Drop"]}; - { 17, "s17637", "13512", "=q1=Flask of Supreme Power", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Keepers of Time"]}; - { 18, "s17635", "13510", "=q1=Flask of the Titans", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["The Sha'tar"]}; - Next = "AlchemyTransmute1"; - Prev = "AlchemyPotion3"; + Prev = "AlchemyFlaskTBC"; + Next = "AlchemyFlaskCLASSIC"; Back = "ALCHEMYMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["AlchemyTransmute1"] = { + AtlasLoot_Data["AlchemyTransmuteCLASSIC"] = { + { 1, "s11479", "3577", "=q2=Transmute: Iron to Gold", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]}; + { 2, "s11480", "6037", "=q2=Transmute: Mithril to Truesilver", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]}; + { 3, "s17187", "12360", "=q2=Transmute: Arcanite Bar", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]}; + { 4, "s17559", "7078", "=q2=Transmute: Air to Fire", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Argent Dawn"]}; + { 5, "s17566", "12803", "=q2=Transmute: Earth to Life", "=ds="..AL["World Drop"]}; + { 6, "s17561", "7080", "=q2=Transmute: Earth to Water", "=ds="..AL["Vendor"]..", "..BabbleZone["Felwood"]}; + { 7, "s17560", "7076", "=q2=Transmute: Fire to Earth", "=ds="..AL["Vendor"]..", "..BabbleZone["Blackrock Depths"]}; + { 8, "s17565", "7076", "=q2=Transmute: Life to Earth", "=ds="..AL["World Drop"]}; + { 9, "s17563", "7080", "=q2=Transmute: Undeath to Water", "=ds="..AL["World Drop"]}; + { 10, "s17562", "7082", "=q2=Transmute: Water to Air", "=ds="..AL["Vendor"]..", "..BabbleZone["Western Plaguelands"]}; + { 11, "s17564", "12808", "=q2=Transmute: Water to Undeath", "=ds="..AL["World Drop"]}; + { 12, "s25146", "7068", "=q1=Transmute: Elemental Fire", "=ds="..AL["Vendor"]..", "..BabbleZone["Blackrock Depths"]}; + Next = "AlchemyTransmuteTBC"; + Prev = "AlchemyTransmuteWRATH"; + Back = "ALCHEMYMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["AlchemyTransmuteTBC"] = { + { 1, "s29688", "23571", "=q3=Transmute: Primal Might", "=ds="..AL["Vendor"]}; + { 2, "s32765", "25867", "=q3=Transmute: Earthstorm Diamond", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Cenarion Expedition"]}; + { 3, "s32766", "25868", "=q3=Transmute: Skyfire Diamond", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Thrallmar"].."/"..BabbleFaction["Honor Hold"]}; + { 4, "s28585", "21886", "=q2=Transmute: Primal Earth to Life", "=ds="..AL["Discovery"]}; + { 5, "s28583", "22457", "=q2=Transmute: Primal Fire to Mana", "=ds="..AL["Discovery"]}; + { 6, "s28584", "22452", "=q2=Transmute: Primal Life to Earth", "=ds="..AL["Discovery"]}; + { 7, "s28582", "21884", "=q2=Transmute: Primal Mana to Fire", "=ds="..AL["Discovery"]}; + { 8, "s28580", "21885", "=q2=Transmute: Primal Shadow to Water", "=ds="..AL["Discovery"]}; + { 9, "s28581", "22456", "=q2=Transmute: Primal Water to Shadow", "=ds="..AL["Discovery"]}; + { 10, "s28566", "21884", "=q2=Transmute: Primal Air to Fire", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["The Sha'tar"]}; + { 11, "s28567", "21885", "=q2=Transmute: Primal Earth to Water", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["Sporeggar"]}; + { 12, "s28568", "22452", "=q2=Transmute: Primal Fire to Earth", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["The Mag'har"].."/"..BabbleFaction["Kurenai"]}; + { 13, "s28569", "22451", "=q2=Transmute: Primal Water to Air", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["Cenarion Expedition"]}; + Next = "AlchemyTransmuteWRATH"; + Prev = "AlchemyTransmuteCLASSIC"; + Back = "ALCHEMYMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["AlchemyTransmuteWRATH"] = { { 1, "s66659", "36919", "=q4=Transmute: Cardinal Ruby", "=ds="..AL["Quest Reward"]}; { 2, "s66658", "36931", "=q4=Transmute: Ametrine", "=ds="..AL["Trainer"]}; { 3, "s66662", "36928", "=q4=Transmute: Dreadstone", "=ds="..AL["Trainer"]}; @@ -290,9 +376,6 @@ local MASTER = select(2, GetSpellInfo(28596)); { 7, "s54020", "40248", "=q3=Transmute: Eternal Might", "=ds="..AL["Trainer"]}; { 8, "s57427", "41334", "=q3=Transmute: Earthsiege Diamond", "=ds="..AL["Trainer"]}; { 9, "s57425", "41266", "=q3=Transmute: Skyflare Diamond", "=ds="..AL["Trainer"]}; - { 10, "s29688", "23571", "=q3=Transmute: Primal Might", "=ds="..AL["Vendor"]}; - { 11, "s32765", "25867", "=q3=Transmute: Earthstorm Diamond", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Cenarion Expedition"]}; - { 12, "s32766", "25868", "=q3=Transmute: Skyfire Diamond", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Thrallmar"].."/"..BabbleFaction["Honor Hold"]}; { 13, "s53777", "35624", "=q2=Transmute: Eternal Air to Earth", "=ds="}; { 14, "s53776", "35622", "=q2=Transmute: Eternal Air to Water", "=ds="}; { 15, "s53781", "35623", "=q2=Transmute: Eternal Earth to Air", "=ds="}; @@ -306,40 +389,51 @@ local MASTER = select(2, GetSpellInfo(28596)); { 23, "s53783", "35623", "=q2=Transmute: Eternal Water to Air", "=ds="}; { 24, "s53784", "36860", "=q2=Transmute: Eternal Water to Fire", "=ds="}; { 25, "s60350", "41163", "=q2=Transmute: Titanium", "=ds="..AL["Trainer"]}; - { 26, "s28585", "21886", "=q2=Transmute: Primal Earth to Life", "=ds="..AL["Discovery"]}; - { 27, "s28583", "22457", "=q2=Transmute: Primal Fire to Mana", "=ds="..AL["Discovery"]}; - { 28, "s28584", "22452", "=q2=Transmute: Primal Life to Earth", "=ds="..AL["Discovery"]}; - { 29, "s28582", "21884", "=q2=Transmute: Primal Mana to Fire", "=ds="..AL["Discovery"]}; - { 30, "s28580", "21885", "=q2=Transmute: Primal Shadow to Water", "=ds="..AL["Discovery"]}; - Next = "AlchemyTransmute2"; - Prev = "AlchemyFlask1"; + Prev = "AlchemyTransmuteTBC"; + Next = "AlchemyTransmuteCLASSIC"; Back = "ALCHEMYMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["AlchemyTransmute2"] = { - { 1, "s28581", "22456", "=q2=Transmute: Primal Water to Shadow", "=ds="..AL["Discovery"]}; - { 2, "s28566", "21884", "=q2=Transmute: Primal Air to Fire", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["The Sha'tar"]}; - { 3, "s28567", "21885", "=q2=Transmute: Primal Earth to Water", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["Sporeggar"]}; - { 4, "s28568", "22452", "=q2=Transmute: Primal Fire to Earth", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["The Mag'har"].."/"..BabbleFaction["Kurenai"]}; - { 5, "s28569", "22451", "=q2=Transmute: Primal Water to Air", "=ds="..BabbleFaction["Revered"]..": "..BabbleFaction["Cenarion Expedition"]}; - { 6, "s11479", "3577", "=q2=Transmute: Iron to Gold", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]}; - { 7, "s11480", "6037", "=q2=Transmute: Mithril to Truesilver", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]}; - { 8, "s17187", "12360", "=q2=Transmute: Arcanite Bar", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]}; - { 9, "s17559", "7078", "=q2=Transmute: Air to Fire", "=ds="..BabbleFaction["Honored"]..": "..BabbleFaction["Argent Dawn"]}; - { 10, "s17566", "12803", "=q2=Transmute: Earth to Life", "=ds="..AL["World Drop"]}; - { 11, "s17561", "7080", "=q2=Transmute: Earth to Water", "=ds="..AL["Vendor"]..", "..BabbleZone["Felwood"]}; - { 12, "s17560", "7076", "=q2=Transmute: Fire to Earth", "=ds="..AL["Vendor"]..", "..BabbleZone["Blackrock Depths"]}; - { 13, "s17565", "7076", "=q2=Transmute: Life to Earth", "=ds="..AL["World Drop"]}; - { 14, "s17563", "7080", "=q2=Transmute: Undeath to Water", "=ds="..AL["World Drop"]}; - { 15, "s17562", "7082", "=q2=Transmute: Water to Air", "=ds="..AL["Vendor"]..", "..BabbleZone["Western Plaguelands"]}; - { 16, "s17564", "12808", "=q2=Transmute: Water to Undeath", "=ds="..AL["World Drop"]}; - { 17, "s25146", "7068", "=q1=Transmute: Elemental Fire", "=ds="..AL["Vendor"]..", "..BabbleZone["Blackrock Depths"]}; - Next = "AlchemyMisc1"; - Prev = "AlchemyTransmute1"; + AtlasLoot_Data["AlchemyMiscCLASSIC"] = { + { 1, "s24266", "19931", "=q3=Gurubashi Mojo Madness", "=ds="..BabbleZone["Zul'Gurub"]}; + { 2, "s11460", "9154", "=q1=Elixir of Detect Undead", "=ds="..AL["Trainer"]}; + { 3, "s22808", "18294", "=q1=Elixir of Greater Water Breathing", "=ds="..AL["Trainer"]}; + { 4, "s11456", "9061", "=q1=Goblin Rocket Fuel", "=ds="..AL["Crafted"]..": "..GetSpellInfo(4036)}; + { 5, "s11451", "8956", "=q1=Oil of Immolation", "=ds="..AL["Trainer"]}; + { 6, "s12609", "10592", "=q1=Catseye Elixir", "=ds="..AL["Trainer"]}; + { 7, "s3454", "3829", "=q1=Frost Oil", "=ds="..AL["Vendor"]..", "..BabbleZone["Alterac Mountains"]}; + { 8, "s11459", "9149", "=q1=Philosopher's Stone", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]}; + { 9, "s3453", "3828", "=q1=Elixir of Detect Lesser Invisibility", "=ds="..AL["World Drop"]}; + { 10, "s3449", "3824", "=q1=Shadow Oil", "=ds="..AL["Vendor"]}; + { 11, "s7837", "6371", "=q1=Fire Oil", "=ds="..AL["Trainer"]}; + { 12, "s7179", "5996", "=q1=Elixir of Water Breathing", "=ds="..AL["Trainer"]}; + { 13, "s7836", "6370", "=q1=Blackmouth Oil", "=ds="..AL["Trainer"]}; + Next = "AlchemyMiscTBC"; + Prev = "AlchemyMiscWRATH"; Back = "ALCHEMYMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["AlchemyMisc1"] = { + AtlasLoot_Data["AlchemyMiscTBC"] = { + { 1, "s41458", "32839", "=q1=Cauldron of Major Arcane Protection Potion", "=ds="..AL["Discovery"]}; + { 2, "s41500", "32849", "=q1=Cauldron of Major Fire Protection Potion", "=ds="..AL["Discovery"]}; + { 3, "s41501", "32850", "=q1=Cauldron of Major Frost Protection Potion", "=ds="..AL["Discovery"]}; + { 4, "s41502", "32851", "=q1=Cauldron of Major Nature Protection Potion", "=ds="..AL["Discovery"]}; + { 5, "s41503", "32852", "=q1=Cauldron of Major Shadow Protection Potion", "=ds="..AL["Discovery"]}; + { 6, "s28552", "22830", "=q1=Elixir of the Searching Eye", "=ds="..AL["World Drop"]}; + { 7, "s28543", "22823", "=q1=Elixir of Camouflage", "=ds="..AL["Vendor"]}; + { 8, "s11478", "9233", "=q1=Elixir of Detect Demon", "=ds="..AL["Trainer"]}; + { 9, "s17551", "13423", "=q1=Stonescale Oil", "=ds="..AL["Trainer"]}; + { 10, "s11473", "9210", "=q1=Ghost Dye", "=ds="..AL["Vendor"]..", "..BabbleZone["Feralas"]}; + { 11, "s11468", "9197", "=q1=Elixir of Dream Vision", "=ds="..AL["World Drop"]}; + Prev = "AlchemyMiscCLASSIC"; + Next = "AlchemyMiscWRATH"; + Back = "ALCHEMYMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["AlchemyMiscWRATH"] = { { 1, "s47050", "35751", "=q4=Assassin's Alchemist Stone", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Shattered Sun Offensive"]}; { 2, "s47046", "35748", "=q4=Guardian's Alchemist Stone", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Shattered Sun Offensive"]}; { 3, "s47049", "35750", "=q4=Redeemer's Alchemist Stone", "=ds="..BabbleFaction["Exalted"]..": "..BabbleFaction["Shattered Sun Offensive"]}; @@ -348,48 +442,20 @@ local MASTER = select(2, GetSpellInfo(28596)); { 6, "s60403", "44323", "=q3=Indestructible Alchemist Stone", "=ds="..AL["Trainer"]}; { 7, "s60396", "44322", "=q3=Mercurial Alchemist Stone", "=ds="..AL["Trainer"]}; { 8, "s60405", "44324", "=q3=Mighty Alchemist Stone", "=ds="..AL["Trainer"]}; - { 9, "s24266", "19931", "=q3=Gurubashi Mojo Madness", "=ds="..BabbleZone["Zul'Gurub"]}; { 10, "s38070", "31080", "=q2=Mercurial Stone", "=ds="..AL["Trainer"]}; { 11, "s62409", "44958", "=q1=Ethereal Oil", "=ds="..AL["Trainer"]}; { 12, "s53812", "40195", "=q1=Pygmy Oil", "=ds="..AL["Trainer"]}; - { 13, "s41458", "32839", "=q1=Cauldron of Major Arcane Protection Potion", "=ds="..AL["Discovery"]}; - { 14, "s41500", "32849", "=q1=Cauldron of Major Fire Protection Potion", "=ds="..AL["Discovery"]}; - { 15, "s41501", "32850", "=q1=Cauldron of Major Frost Protection Potion", "=ds="..AL["Discovery"]}; - { 16, "s41502", "32851", "=q1=Cauldron of Major Nature Protection Potion", "=ds="..AL["Discovery"]}; - { 17, "s41503", "32852", "=q1=Cauldron of Major Shadow Protection Potion", "=ds="..AL["Discovery"]}; - { 18, "s28552", "22830", "=q1=Elixir of the Searching Eye", "=ds="..AL["World Drop"]}; - { 19, "s28543", "22823", "=q1=Elixir of Camouflage", "=ds="..AL["Vendor"]}; - { 20, "s11478", "9233", "=q1=Elixir of Detect Demon", "=ds="..AL["Trainer"]}; - { 21, "s17551", "13423", "=q1=Stonescale Oil", "=ds="..AL["Trainer"]}; - { 22, "s11473", "9210", "=q1=Ghost Dye", "=ds="..AL["Vendor"]..", "..BabbleZone["Feralas"]}; - { 23, "s11468", "9197", "=q1=Elixir of Dream Vision", "=ds="..AL["World Drop"]}; - { 24, "s11460", "9154", "=q1=Elixir of Detect Undead", "=ds="..AL["Trainer"]}; - { 25, "s22808", "18294", "=q1=Elixir of Greater Water Breathing", "=ds="..AL["Trainer"]}; - { 26, "s11456", "9061", "=q1=Goblin Rocket Fuel", "=ds="..AL["Crafted"]..": "..GetSpellInfo(4036)}; - { 27, "s11451", "8956", "=q1=Oil of Immolation", "=ds="..AL["Trainer"]}; - { 28, "s12609", "10592", "=q1=Catseye Elixir", "=ds="..AL["Trainer"]}; - { 29, "s3454", "3829", "=q1=Frost Oil", "=ds="..AL["Vendor"]..", "..BabbleZone["Alterac Mountains"]}; - { 30, "s11459", "9149", "=q1=Philosopher's Stone", "=ds="..AL["Vendor"]..", "..BabbleZone["Tanaris"]}; - Prev = "AlchemyTransmute2"; - Next = "AlchemyMisc2"; - Back = "ALCHEMYMENU"; - }; - - AtlasLoot_Data["AlchemyMisc2"] = { - { 1, "s3453", "3828", "=q1=Elixir of Detect Lesser Invisibility", "=ds="..AL["World Drop"]}; - { 2, "s3449", "3824", "=q1=Shadow Oil", "=ds="..AL["Vendor"]}; - { 3, "s7837", "6371", "=q1=Fire Oil", "=ds="..AL["Trainer"]}; - { 4, "s7179", "5996", "=q1=Elixir of Water Breathing", "=ds="..AL["Trainer"]}; - { 5, "s7836", "6370", "=q1=Blackmouth Oil", "=ds="..AL["Trainer"]}; - Prev = "AlchemyMisc1"; + Prev = "AlchemyMiscTBC"; + Next = "AlchemyMiscCLASSIC"; Back = "ALCHEMYMENU"; + Submenu = "Expansion"; }; --------------------- --- Blacksmithing --- --------------------- - AtlasLoot_Data["SmithingArmorOld1"] = { + AtlasLoot_Data["SmithingArmorCLASSIC"] = { { 1, "s27589", "22194", "=q4=Black Grasp of the Destroyer", "=ds=#sr# 300"}; { 2, "s24399", "20039", "=q4=Dark Iron Boots", "=ds=#sr# 300"}; { 3, "s23637", "19164", "=q4=Dark Iron Gauntlets", "=ds=#sr# 300"}; @@ -420,12 +486,13 @@ local MASTER = select(2, GetSpellInfo(28596)); { 28, "s16745", "12618", "=q3=Enchanted Thorium Breastplate", "=ds=#sr# 300"}; { 29, "s16742", "12620", "=q3=Enchanted Thorium Helm", "=ds=#sr# 300"}; { 30, "s16744", "12619", "=q3=Enchanted Thorium Leggings", "=ds=#sr# 300"}; - Next = "SmithingArmorOld2"; + Next = "SmithingArmorCLASSIC2"; Back = "SMITHINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingArmorOld2"] = { + AtlasLoot_Data["SmithingArmorCLASSIC2"] = { { 1, "s23633", "19057", "=q3=Gloves of the Dawn", "=ds=#sr# 300"}; { 2, "s27585", "22197", "=q3=Heavy Obsidian Belt", "=ds=#sr# 300"}; { 3, "s23629", "19048", "=q3=Heavy Timbermaw Boots", "=ds=#sr# 300"}; @@ -456,13 +523,14 @@ local MASTER = select(2, GetSpellInfo(28596)); { 28, "s16665", "12611", "=q2=Runic Plate Boots", "=ds=#sr# 300"}; { 29, "s16732", "12614", "=q2=Runic Plate Leggings", "=ds=#sr# 300"}; { 30, "s16726", "12612", "=q2=Runic Plate Helm", "=ds="..AL["Drop"]..""}; - Next = "SmithingArmorOld3"; - Prev = "SmithingArmorOld1"; + Next = "SmithingArmorCLASSIC3"; + Prev = "SmithingArmorCLASSIC"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingArmorOld3"] = { + AtlasLoot_Data["SmithingArmorCLASSIC3"] = { { 1, "s16726", "12612", "=q2=Runic Plate Helm", "=ds="..AL["Drop"]..""}; { 2, "s16664", "12610", "=q2=Runic Plate Shoulders", "=ds=#sr# 300"}; { 3, "s16662", "12414", "=q2=Thorium Leggings", "=ds=#sr# 300"}; @@ -493,13 +561,14 @@ Type = "Crafting"; { 28, "s9961", "7931", "=q2=Mithril Coif", "=ds=#sr# 230"}; { 29, "s9952", "7928", "=q2=Ornate Mithril Shoulder", "=ds=#sr# 225"}; { 30, "s9950", "7927", "=q2=Ornate Mithril Gloves", "=ds=#sr# 220"}; - Next = "SmithingArmorOld4"; - Prev = "SmithingArmorOld2"; + Next = "SmithingArmorCLASSIC4"; + Prev = "SmithingArmorCLASSIC2"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingArmorOld4"] = { + AtlasLoot_Data["SmithingArmorCLASSIC4"] = { { 1, "s9945", "7926", "=q2=Ornate Mithril Pants", "=ds=#sr# 220"}; { 2, "s9937", "7924", "=q2=Mithril Scale Bracers", "=ds=#sr# 215"}; { 3, "s9931", "7920", "=q2=Mithril Scale Pants", "=ds=#sr# 210"}; @@ -530,13 +599,14 @@ Type = "Crafting"; { 28, "s3331", "3482", "=q2=Silvered Bronze Boots", "=ds=#sr# 130"}; { 29, "s2673", "2869", "=q2=Silvered Bronze Breastplate", "=ds=#sr# 130"}; { 30, "s3330", "3481", "=q2=Silvered Bronze Shoulders", "=ds=#sr# 125"}; - Next = "SmithingArmorOld5"; - Prev = "SmithingArmorOld3"; + Next = "SmithingArmorCLASSIC5"; + Prev = "SmithingArmorCLASSIC3"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingArmorOld5"] = { + AtlasLoot_Data["SmithingArmorCLASSIC5"] = { { 1, "s2672", "2868", "=q2=Patterned Bronze Bracers", "=ds=#sr# 120"}; { 2, "s2668", "2865", "=q2=Rough Bronze Leggings", "=ds=#sr# 105"}; { 3, "s8367", "6731", "=q2=Ironforge Breastplate", "=ds=#sr# 100"}; @@ -558,12 +628,13 @@ Type = "Crafting"; { 19, "s2663", "2853", "=q1=Copper Bracers", "=ds=#sr# 1"}; { 20, "s2662", "2852", "=q1=Copper Chain Pants", "=ds=#sr# 1"}; { 21, "s12260", "10421", "=q1=Rough Copper Vest", "=ds=#sr# 1"}; - Prev = "SmithingArmorOld4"; + Prev = "SmithingArmorCLASSIC4"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingArmorBC1"] = { + AtlasLoot_Data["SmithingArmorTBC"] = { { 1, "s36389", "30034", "=q4=Belt of the Guardian", "=ds=#sr# 375"}; { 2, "s36391", "30033", "=q4=Boots of the Protector", "=ds=#sr# 375"}; { 3, "s34534", "28484", "=q4=Bulwark of Kings", "=ds=#sr# 375"}; @@ -594,12 +665,13 @@ Type = "Crafting"; { 28, "s46141", "34378", "=q4=Hard Khorium Battlefists", "=ds=#sr# 365"}; { 29, "s46144", "34377", "=q4=Hard Khorium Battleplate", "=ds=#sr# 365"}; { 30, "s29664", "23535", "=q4=Helm of the Stalwart Defender", "=ds=#sr# 365"}; - Next = "SmithingArmorBC2"; + Next = "SmithingArmorTBC2"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingArmorBC2"] = { + AtlasLoot_Data["SmithingArmorTBC2"] = { { 1, "s29668", "23536", "=q4=Oathkeeper's Helm", "=ds=#sr# 365"}; { 2, "s29662", "23533", "=q4=Steelgrip Gauntlets", "=ds=#sr# 365"}; { 3, "s29663", "23534", "=q4=Storm Helm", "=ds=#sr# 365"}; @@ -630,13 +702,14 @@ Type = "Crafting"; { 28, "s29606", "23507", "=q3=Adamantite Breastplate", "=ds=#sr# 340"}; { 29, "s29603", "23506", "=q3=Adamantite Plate Bracers", "=ds=#sr# 335"}; { 30, "s29605", "23508", "=q3=Adamantite Plate Gloves", "=ds=#sr# 335"}; - Next = "SmithingArmorBC3"; - Prev = "SmithingArmorBC1"; + Next = "SmithingArmorTBC3"; + Prev = "SmithingArmorTBC"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingArmorBC3"] = { + AtlasLoot_Data["SmithingArmorTBC3"] = { { 1, "s36129", "30074", "=q3=Heavy Earthforged Breastplate", "=ds=#sr# 330"}; { 2, "s36130", "30076", "=q3=Stormforged Hauberk", "=ds=#sr# 330"}; { 3, "s29550", "23489", "=q2=Fel Iron Breastplate", "=ds=#sr# 325"}; @@ -648,12 +721,13 @@ Type = "Crafting"; { 9, "s29547", "23484", "=q2=Fel Iron Plate Belt", "=ds=#sr# 305"}; { 10, "s29551", "23493", "=q2=Fel Iron Chain Coif", "=ds=#sr# 300"}; { 11, "s29545", "23482", "=q2=Fel Iron Plate Gloves", "=ds=#sr# 300"}; - Prev = "SmithingArmorBC2"; + Prev = "SmithingArmorTBC2"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingArmorWrath1"] = { + AtlasLoot_Data["SmithingArmorWRATH"] = { { 1, "s70568", "49907", "=q4=Boots of Kingly Upheaval", "=ds="..AL["Vendor"]..""}; { 2, "s70566", "49906", "=q4=Hellfrozen Bonegrinders", "=ds="..AL["Vendor"]..""}; { 3, "s70565", "49903", "=q4=Legplates of Painful Death", "=ds="..AL["Vendor"]..""}; @@ -684,12 +758,13 @@ Type = "Crafting"; { 28, "s55375", "41391", "=q4=Spiked Titansteel Treads", "=ds="..AL["Trainer"] }; { 29, "s55373", "41387", "=q4=Tempered Titansteel Helm", "=ds="..AL["Trainer"] }; { 30, "s55376", "41392", "=q4=Tempered Titansteel Treads", "=ds="..AL["Trainer"] }; - Next = "SmithingArmorWrath2"; + Next = "SmithingArmorWRATH2"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingArmorWrath2"] = { + AtlasLoot_Data["SmithingArmorWRATH2"] = { { 1, "s56400", "42508", "=q4=Titansteel Shield Wall", "=ds="..AL["Trainer"] }; { 2, "s61008", "43586", "=q4=Icebane Chestguard", "=ds="..AL["Trainer"] }; { 3, "s61009", "43587", "=q4=Icebane Girdle", "=ds="..AL["Trainer"] }; @@ -720,13 +795,14 @@ Type = "Crafting"; { 28, "s59441", "43870", "=q3=Brilliant Saronite Helm", "=ds="..AL["Trainer"] }; { 29, "s55186", "41189", "=q3=Chestplate of Conquest", "=ds="..AL["Trainer"] }; { 30, "s55187", "41190", "=q3=Legplates of Conquest", "=ds="..AL["Trainer"] }; - Next = "SmithingArmorWrath3"; - Prev = "SmithingArmorWrath1"; + Next = "SmithingArmorWRATH3"; + Prev = "SmithingArmorWRATH"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingArmorWrath3"] = { + AtlasLoot_Data["SmithingArmorWRATH3"] = { { 1, "s55015", "41114", "=q3=Tempered Saronite Gauntlets", "=ds="..AL["Trainer"] }; { 2, "s55014", "41113", "=q3=Saronite Bulwark", "=ds="..AL["Trainer"] }; { 3, "s55017", "41116", "=q3=Tempered Saronite Bracers", "=ds="..AL["Trainer"] }; @@ -757,13 +833,14 @@ Type = "Crafting"; { 28, "s54980", "40958", "=q2=Reinforced Cobalt Legplates", "=ds="..AL["Drop"]..": "..BabbleZone["Zul'Drak"] }; { 29, "s54981", "40959", "=q2=Reinforced Cobalt Chestpiece", "=ds="..AL["Drop"]..": "..BabbleZone["Sholazar Basin"] }; { 30, "s54917", "40942", "=q2=Spiked Cobalt Helm", "=ds="..AL["Trainer"] }; - Prev = "SmithingArmorWrath2"; - Next = "SmithingArmorWrath4"; + Prev = "SmithingArmorWRATH2"; + Next = "SmithingArmorWRATH4"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingArmorWrath4"] = { + AtlasLoot_Data["SmithingArmorWRATH4"] = { { 1, "s52570", "39085", "=q2=Cobalt Chestpiece", "=ds="..AL["Trainer"] }; { 2, "s52571", "39084", "=q2=Cobalt Helm", "=ds="..AL["Trainer"] }; { 3, "s52567", "39086", "=q2=Cobalt Legplates", "=ds="..AL["Trainer"] }; @@ -773,12 +850,13 @@ Type = "Crafting"; { 7, "s54550", "40668", "=q2=Cobalt Triangle Shield", "=ds="..AL["Trainer"] }; { 8, "s52568", "39087", "=q2=Cobalt Belt", "=ds="..AL["Trainer"] }; { 9, "s52569", "39088", "=q2=Cobalt Boots", "=ds="..AL["Trainer"] }; - Prev = "SmithingArmorWrath3"; + Prev = "SmithingArmorWRATH3"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingWeaponOld1"] = { + AtlasLoot_Data["SmithingWeaponCLASSIC"] = { { 1, "s23638", "19166", "=q4=Black Amnesty", "=ds=#sr# 300"}; { 2, "s23639", "19167", "=q4=Blackfury", "=ds=#sr# 300"}; { 3, "s23652", "19168", "=q4=Blackguard", "=ds=#sr# 300"}; @@ -809,12 +887,13 @@ Type = "Crafting"; { 28, "s10015", "7960", "=q3=Truesilver Champion", "=ds=#sr# 260"}; { 29, "s10011", "7959", "=q3=Blight", "=ds=#sr# 250"}; { 30, "s10007", "7961", "=q3=Phantom Blade", "=ds=#sr# 245"}; - Next = "SmithingWeaponOld2"; + Next = "SmithingWeaponCLASSIC2"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingWeaponOld2"] = { + AtlasLoot_Data["SmithingWeaponCLASSIC2"] = { { 1, "s10003", "7954", "=q3=The Shatterer", "=ds=#sr# 235"}; { 2, "s34982", "29203", "=q2=Enchanted Thorium Blades", "=ds=#sr# 300"}; { 3, "s16984", "12792", "=q2=Volcanic Hammer", "=ds=#sr# 290"}; @@ -845,13 +924,14 @@ Type = "Crafting"; { 28, "s3295", "3490", "=q2=Deadly Bronze Poniard", "=ds=#sr# 125"}; { 29, "s6517", "5540", "=q2=Pearl-handled Dagger", "=ds=#sr# 110"}; { 30, "s3491", "3848", "=q2=Big Bronze Knife", "=ds=#sr# 105"}; - Next = "SmithingWeaponOld3"; - Prev = "SmithingWeaponOld1"; + Next = "SmithingWeaponCLASSIC3"; + Prev = "SmithingWeaponCLASSIC"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingWeaponOld3"] = { + AtlasLoot_Data["SmithingWeaponCLASSIC3"] = { { 1, "s34979", "29201", "=q2=Thick Bronze Darts", "=ds=#sr# 100"}; { 2, "s3292", "3487", "=q2=Heavy Copper Broadsword", "=ds=#sr# 95"}; { 3, "s3294", "3489", "=q2=Thick War Axe", "=ds=#sr# 70"}; @@ -869,12 +949,13 @@ Type = "Crafting"; { 15, "s2739", "2847", "=q1=Copper Shortsword", "=ds=#sr# 25"}; { 16, "s2738", "2845", "=q1=Copper Axe", "=ds=#sr# 20"}; { 17, "s2737", "2844", "=q1=Copper Mace", "=ds=#sr# 15"}; - Prev = "SmithingWeaponOld2"; + Prev = "SmithingWeaponCLASSIC2"; Back = "SMITHINGMENU"; -Type = "Crafting"; + Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingWeaponBC1"] = { + AtlasLoot_Data["SmithingWeaponTBC"] = { { 1, "s34542", "28432", "=q4=Black Planar Edge", "=ds=#sr# 375"}; { 2, "s36258", "28427", "=q4=Blazefury", "=ds=#sr# 375"}; { 3, "s34537", "28426", "=q4=Blazeguard", "=ds=#sr# 375"}; @@ -905,12 +986,13 @@ Type = "Crafting"; { 28, "s34547", "28440", "=q4=Thunder", "=ds=#sr# 350"}; { 29, "s34983", "29204", "=q3=Felsteel Whisper Knives", "=ds=#sr# 350"}; { 30, "s36137", "30093", "=q3=Great Earthforged Hammer", "=ds=#sr# 330"}; - Next = "SmithingWeaponBC2"; + Next = "SmithingWeaponTBC2"; Back = "SMITHINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingWeaponBC2"] = { + AtlasLoot_Data["SmithingWeaponTBC2"] = { { 1, "s36136", "30089", "=q3=Lavaforged Warhammer", "=ds=#sr# 330"}; { 2, "s36135", "30088", "=q3=Skyforged Great Axe", "=ds=#sr# 330"}; { 3, "s36133", "30086", "=q3=Stoneforged Claymore", "=ds=#sr# 330"}; @@ -923,12 +1005,13 @@ Type = "Crafting"; { 10, "s29565", "23499", "=q2=Fel Iron Greatsword", "=ds=#sr# 320"}; { 11, "s29558", "23498", "=q2=Fel Iron Hammer", "=ds=#sr# 315"}; { 12, "s29557", "23497", "=q2=Fel Iron Hatchet", "=ds=#sr# 310"}; - Prev = "SmithingWeaponBC1"; + Prev = "SmithingWeaponTBC"; Back = "SMITHINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["SmithingWeaponWrath1"] = { + AtlasLoot_Data["SmithingWeaponWRATH"] = { { 1, "s63182", "45085", "=q4=Titansteel Spellblade", "=ds="..AL["Trainer"] }; { 2, "s55370", "41383", "=q4=Titansteel Bonecrusher", "=ds="..AL["Trainer"] }; { 3, "s55369", "41257", "=q4=Titansteel Destroyer", "=ds="..AL["Trainer"] }; @@ -952,6 +1035,7 @@ Type = "Crafting"; { 21, "s55203", "41242", "=q2=Forged Cobalt Claymore", "=ds="..AL["Trainer"] }; Back = "SMITHINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; AtlasLoot_Data["SmithingEnhancement1"] = { @@ -1336,38 +1420,102 @@ Type = "Crafting"; --- Enchanting --- ------------------ - AtlasLoot_Data["EnchantingBoots1"] = { + AtlasLoot_Data["EnchantingBootsCLASSIC"] = { + { 1, "s20023", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Agility", "=ds=#sr# 295"}; + { 2, "s20024", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Spirit", "=ds=#sr# 275"}; + { 3, "s20020", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Stamina", "=ds=#sr# 260"}; + { 4, "s63746", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Accuracy", "=ds="}; + { 5, "s13935", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Agility", "=ds=#sr# 235"}; + { 6, "s13890", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Minor Speed", "=ds=#sr# 225"}; + { 16, "s13836", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Stamina", "=ds=#sr# 215"}; + { 17, "s13687", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Spirit", "=ds=#sr# 190"}; + { 18, "s13644", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Stamina", "=ds=#sr# 170"}; + { 19, "s13637", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Agility", "=ds=#sr# 160"}; + { 20, "s7867", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Minor Agility", "=ds=#sr# 125"}; + { 21, "s7863", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Minor Stamina", "=ds=#sr# 125"}; + Next = "EnchantingBootsTBC"; + Prev = "EnchantingBootsWRATH"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["EnchantingBootsTBC"] = { + { 1, "s27954", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Surefooted", "=ds=#sr# 370"}; + { 2, "s34008", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Boar's Speed", "=ds=#sr# 360"}; + { 3, "s34007", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Cat's Swiftness", "=ds=#sr# 360"}; + { 4, "s27951", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Dexterity", "=ds=#sr# 340"}; + { 5, "s27950", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Fortitude", "=ds=#sr# 320"}; + { 6, "s27948", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Vitality", "=ds=#sr# 305"}; + Next = "EnchantingBootsWRATH"; + Prev = "EnchantingBootsCLASSIC"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["EnchantingBootsWRATH"] = { { 1, "s60763", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Assault", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 2, "s47901", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Tuskarr's Vitality", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 3, "s44589", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Superior Agility", "=ds="..AL["Trainer"]}; { 4, "s44508", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Spirit", "=ds="..AL["Trainer"]}; - { 5, "s44584", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Vitality", "=ds="..AL["Trainer"]}; - { 6, "s60606", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Assault", "=ds="..AL["Trainer"]}; - { 7, "s44528", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Fortitude", "=ds="..AL["Trainer"]}; - { 8, "s60623", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Icewalker", "=ds="..AL["Trainer"]}; - { 9, "s27954", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Surefooted", "=ds=#sr# 370"}; - { 10, "s34008", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Boar's Speed", "=ds=#sr# 360"}; - { 11, "s34007", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Cat's Swiftness", "=ds=#sr# 360"}; - { 12, "s27951", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Dexterity", "=ds=#sr# 340"}; - { 13, "s27950", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Fortitude", "=ds=#sr# 320"}; - { 14, "s27948", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Vitality", "=ds=#sr# 305"}; - { 15, "s20023", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Agility", "=ds=#sr# 295"}; - { 16, "s20024", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Spirit", "=ds=#sr# 275"}; - { 17, "s20020", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Stamina", "=ds=#sr# 260"}; - { 18, "s63746", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Accuracy", "=ds="}; - { 19, "s13935", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Agility", "=ds=#sr# 235"}; - { 20, "s13890", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Minor Speed", "=ds=#sr# 225"}; - { 21, "s13836", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Stamina", "=ds=#sr# 215"}; - { 22, "s13687", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Spirit", "=ds=#sr# 190"}; - { 23, "s13644", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Stamina", "=ds=#sr# 170"}; - { 24, "s13637", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Agility", "=ds=#sr# 160"}; - { 25, "s7867", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Minor Agility", "=ds=#sr# 125"}; - { 26, "s7863", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Minor Stamina", "=ds=#sr# 125"}; - Next = "EnchantingBracer1"; + { 16, "s44584", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Vitality", "=ds="..AL["Trainer"]}; + { 17, "s60606", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Assault", "=ds="..AL["Trainer"]}; + { 18, "s44528", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Fortitude", "=ds="..AL["Trainer"]}; + { 19, "s60623", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Icewalker", "=ds="..AL["Trainer"]}; + Next = "EnchantingBootsCLASSIC"; + Prev = "EnchantingBootsTBC"; Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["EnchantingBracer1"] = { + AtlasLoot_Data["EnchantingBracerCLASSIC"] = { + { 1, "s23802", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Healing Power", "=ds=#sr# 300"}; + { 2, "s20011", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Stamina", "=ds=#sr# 300"}; + { 3, "s20010", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Strength", "=ds=#sr# 295"}; + { 4, "s23801", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Mana Regeneration", "=ds=#sr# 290"}; + { 5, "s20009", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Spirit", "=ds=#sr# 270"}; + { 6, "s20008", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Intellect", "=ds=#sr# 255"}; + { 7, "s13939", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Strength", "=ds=#sr# 240"}; + { 8, "s13945", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Stamina", "=ds=#sr# 245"}; + { 9, "s13931", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Deflection", "=ds=#sr# 235"}; + { 10, "s13846", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Spirit", "=ds=#sr# 220"}; + { 11, "s13822", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Intellect", "=ds=#sr# 210"}; + { 12, "s13661", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Strength", "=ds=#sr# 180"}; + { 13, "s13646", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Deflection", "=ds=#sr# 170"}; + { 14, "s13648", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Stamina", "=ds=#sr# 170"}; + { 15, "s13642", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Spirit", "=ds=#sr# 165"}; + { 16, "s13622", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Intellect", "=ds=#sr# 150"}; + { 17, "s13536", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Strength", "=ds=#sr# 140"}; + { 18, "s13501", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Stamina", "=ds=#sr# 130"}; + { 19, "s7859", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Spirit", "=ds=#sr# 120"}; + { 20, "s7779", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Agility", "=ds=#sr# 80"}; + { 21, "s7782", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Strength", "=ds=#sr# 80"}; + { 22, "s7457", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Stamina", "=ds=#sr# 50"}; + { 23, "s7766", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Spirit", "=ds=#sr# 60"}; + { 24, "s7418", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Health", "=ds=#sr# 1"}; + { 25, "s7428", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Deflection", "=ds=#sr# 1"}; + Next = "EnchantingBracerTBC"; + Prev = "EnchantingBracerWRATH"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["EnchantingBracerTBC"] = { + { 1, "s27917", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Spellpower", "=ds=#sr# 360"}; + { 2, "s27914", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Fortitude", "=ds=#sr# 350"}; + { 3, "s27913", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Restore Mana Prime", "=ds=#sr# 335"}; + { 4, "s27911", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Healing", "=ds=#sr# 325"}; + { 5, "s27906", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Defense", "=ds=#sr# 320"}; + { 6, "s27905", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Stats", "=ds=#sr# 315"}; + { 7, "s27899", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Brawn", "=ds=#sr# 305"}; + { 8, "s34001", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Intellect", "=ds=#sr# 305"}; + { 9, "s34002", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Assault", "=ds=#sr# 300"}; + Next = "EnchantingBracerWRATH"; + Prev = "EnchantingBracerCLASSIC"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["EnchantingBracerWRATH"] = { { 1, "s62256", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Stamina", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 2, "s60767", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Spellpower", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 3, "s44575", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Assault", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; @@ -1377,52 +1525,50 @@ Type = "Crafting"; { 7, "s44635", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Spellpower", "=ds="..AL["Trainer"]}; { 8, "s44555", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Exceptional Intellect", "=ds="..AL["Trainer"]}; { 9, "s60616", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Striking", "=ds="..AL["Trainer"]}; - { 10, "s27917", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Spellpower", "=ds=#sr# 360"}; - { 11, "s27914", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Fortitude", "=ds=#sr# 350"}; - { 12, "s27913", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Restore Mana Prime", "=ds=#sr# 335"}; - { 13, "s27911", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Healing", "=ds=#sr# 325"}; - { 14, "s27906", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Defense", "=ds=#sr# 320"}; - { 15, "s27905", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Stats", "=ds=#sr# 315"}; - { 16, "s27899", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Brawn", "=ds=#sr# 305"}; - { 17, "s34001", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Major Intellect", "=ds=#sr# 305"}; - { 18, "s34002", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Assault", "=ds=#sr# 300"}; - { 19, "s23802", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Healing Power", "=ds=#sr# 300"}; - { 20, "s20011", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Stamina", "=ds=#sr# 300"}; - { 21, "s20010", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Strength", "=ds=#sr# 295"}; - { 22, "s23801", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Mana Regeneration", "=ds=#sr# 290"}; - { 23, "s20009", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Superior Spirit", "=ds=#sr# 270"}; - { 24, "s20008", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Intellect", "=ds=#sr# 255"}; - { 25, "s13939", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Strength", "=ds=#sr# 240"}; - { 26, "s13945", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Stamina", "=ds=#sr# 245"}; - { 27, "s13931", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Deflection", "=ds=#sr# 235"}; - { 28, "s13846", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Greater Spirit", "=ds=#sr# 220"}; - { 29, "s13822", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Intellect", "=ds=#sr# 210"}; - { 30, "s13661", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Strength", "=ds=#sr# 180"}; - Prev = "EnchantingBoots1"; - Next = "EnchantingBracer2"; + Prev = "EnchantingBracerTBC"; + Next = "EnchantingBracerCLASSIC"; Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["EnchantingBracer2"] = { - { 1, "s13646", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Deflection", "=ds=#sr# 170"}; - { 2, "s13648", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Stamina", "=ds=#sr# 170"}; - { 3, "s13642", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Spirit", "=ds=#sr# 165"}; - { 4, "s13622", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Intellect", "=ds=#sr# 150"}; - { 5, "s13536", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Strength", "=ds=#sr# 140"}; - { 6, "s13501", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Stamina", "=ds=#sr# 130"}; - { 7, "s7859", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Lesser Spirit", "=ds=#sr# 120"}; - { 8, "s7779", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Agility", "=ds=#sr# 80"}; - { 9, "s7782", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Strength", "=ds=#sr# 80"}; - { 10, "s7457", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Stamina", "=ds=#sr# 50"}; - { 11, "s7766", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Spirit", "=ds=#sr# 60"}; - { 12, "s7418", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Health", "=ds=#sr# 1"}; - { 13, "s7428", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracers - Minor Deflection", "=ds=#sr# 1"}; - Prev = "EnchantingBracer1"; - Next = "EnchantingChest1"; + AtlasLoot_Data["EnchantingChestCLASSIC"] = { + { 1, "s20025", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Stats", "=ds=#sr# 300"}; + { 2, "s33991", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Restore Mana Prime", "=ds=#sr# 300"}; + { 3, "s20028", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Mana", "=ds=#sr# 290"}; + { 4, "s20026", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Health", "=ds=#sr# 275"}; + { 5, "s13941", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Stats", "=ds=#sr# 245"}; + { 6, "s13917", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Superior Mana", "=ds=#sr# 230"}; + { 7, "s13858", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Superior Health", "=ds=#sr# 220"}; + { 8, "s13700", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Stats", "=ds=#sr# 200"}; + { 9, "s13663", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Mana", "=ds=#sr# 185"}; + { 10, "s13640", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Health", "=ds=#sr# 160"}; + { 11, "s13626", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Stats", "=ds=#sr# 150"}; + { 12, "s13607", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Mana", "=ds=#sr# 145"}; + { 13, "s13538", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Absorption", "=ds=#sr# 140"}; + { 14, "s7857", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Health", "=ds=#sr# 120"}; + { 15, "s7776", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Mana", "=ds=#sr# 80"}; + { 16, "s7748", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Health", "=ds=#sr# 60"}; + { 17, "s7443", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Mana", "=ds=#sr# 20"}; + { 18, "s7420", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Health", "=ds=#sr# 15"}; + Prev = "EnchantingChestWRATH"; + Next = "EnchantingChestTBC"; Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["EnchantingChest1"] = { + AtlasLoot_Data["EnchantingChestTBC"] = { + { 1, "s46594", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Defense", "=ds=#sr# 360"}; + { 2, "s27960", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Stats", "=ds=#sr# 345"}; + { 3, "s33992", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Resilience", "=ds=#sr# 345"}; + { 4, "s33990", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Spirit", "=ds=#sr# 320"}; + { 5, "s27957", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Health", "=ds=#sr# 315"}; + Prev = "EnchantingChestCLASSIC"; + Next = "EnchantingChestWRATH"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["EnchantingChestWRATH"] = { { 1, "s27958", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Mana", "=ds="..AL["Trainer"]..""}; { 2, "s44588", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Resilience", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 3, "s60692", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Powerful Stats", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; @@ -1431,41 +1577,55 @@ Type = "Crafting"; { 6, "s47766", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Defense", "=ds="..AL["Trainer"]}; { 7, "s44492", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Mighty Health", "=ds="..AL["Trainer"]}; { 8, "s44623", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Super Stats", "=ds="..AL["Trainer"]}; - { 9, "s46594", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Defense", "=ds=#sr# 360"}; - { 10, "s27960", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Stats", "=ds=#sr# 345"}; - { 11, "s33992", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Resilience", "=ds=#sr# 345"}; - { 12, "s33990", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Spirit", "=ds=#sr# 320"}; - { 13, "s27957", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Exceptional Health", "=ds=#sr# 315"}; - { 14, "s20025", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Stats", "=ds=#sr# 300"}; - { 15, "s33991", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Restore Mana Prime", "=ds=#sr# 300"}; - { 16, "s20028", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Mana", "=ds=#sr# 290"}; - { 17, "s20026", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Major Health", "=ds=#sr# 275"}; - { 18, "s13941", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Stats", "=ds=#sr# 245"}; - { 19, "s13917", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Superior Mana", "=ds=#sr# 230"}; - { 20, "s13858", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Superior Health", "=ds=#sr# 220"}; - { 21, "s13700", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Stats", "=ds=#sr# 200"}; - { 22, "s13663", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Mana", "=ds=#sr# 185"}; - { 23, "s13640", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Health", "=ds=#sr# 160"}; - { 24, "s13626", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Stats", "=ds=#sr# 150"}; - { 25, "s13607", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Mana", "=ds=#sr# 145"}; - { 26, "s13538", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Absorption", "=ds=#sr# 140"}; - { 27, "s7857", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Health", "=ds=#sr# 120"}; - { 28, "s7776", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Mana", "=ds=#sr# 80"}; - { 29, "s7748", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Lesser Health", "=ds=#sr# 60"}; - { 30, "s7443", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Mana", "=ds=#sr# 20"}; - Prev = "EnchantingBracer2"; - Next = "EnchantingChest2"; + Prev = "EnchantingChestTBC"; + Next = "EnchantingChestCLASSIC"; Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["EnchantingChest2"] = { - { 1, "s7420", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Health", "=ds=#sr# 15"}; - Prev = "EnchantingChest1"; - Next = "EnchantingCloak1"; + AtlasLoot_Data["EnchantingCloakCLASSIC"] = { + { 1, "s25081", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Fire Resistance", "=ds=#sr# 300"}; + { 2, "s20015", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Defense", "=ds=#sr# 285"}; + { 3, "s20014", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Resistance", "=ds=#sr# 265"}; + { 4, "s13882", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Agility", "=ds=#sr# 225"}; + { 5, "s13746", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Defense", "=ds=#sr# 205"}; + { 6, "s13794", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Resistance", "=ds=#sr# 205"}; + { 7, "s13657", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Fire Resistance", "=ds=#sr# 175"}; + { 8, "s13635", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Defense", "=ds=#sr# 155"}; + { 9, "s13522", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Shadow Resistance", "=ds=#sr# 135"}; + { 10, "s7861", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Fire Resistance", "=ds=#sr# 125"}; + { 11, "s13419", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Minor Agility", "=ds=#sr# 110"}; + { 12, "s13421", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Protection", "=ds=#sr# 115"}; + { 13, "s7771", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Minor Protection", "=ds=#sr# 70"}; + { 14, "s7454", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Minor Resistance", "=ds=#sr# 45"}; + { 15, "s7426", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Absorption", "=ds=#sr# 40"}; + Prev = "EnchantingCloakWRATH"; + Next = "EnchantingCloakTBC"; Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["EnchantingCloak1"] = { + AtlasLoot_Data["EnchantingCloakTBC"] = { + { 1, "s47051", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Steelweave", "=ds=#sr# 375"}; + { 2, "s351501", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Crushing Wave", "=ds=#sr# 375"}; + { 3, "s351530", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Phoenix Fire", "=ds=#sr# 375"}; + { 4, "s34005", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Arcane Resistance", "=ds=#sr# 350"}; + { 5, "s34006", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Shadow Resistance", "=ds=#sr# 350"}; + { 6, "s27962", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Major Resistance", "=ds=#sr# 330"}; + { 7, "s34003", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Spell Penetration", "=ds=#sr# 325"}; + { 8, "s34004", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Agility", "=ds=#sr# 310"}; + { 9, "s27961", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Major Armor", "=ds=#sr# 310"}; + { 10, "s25082", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Nature Resistance", "=ds=#sr# 300"}; + { 11, "s25083", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Stealth", "=ds=#sr# 300"}; + { 12, "s25084", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Subtlety", "=ds=#sr# 300"}; + { 13, "s25086", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Dodge", "=ds=#sr# 300"}; + Prev = "EnchantingCloakCLASSIC"; + Next = "EnchantingCloakWRATH"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["EnchantingCloakWRATH"] = { { 1, "s60609", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Speed", "=ds="..AL["Trainer"]..""}; { 2, "s44631", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Shadow Armor", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 3, "s47899", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Wisdom", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; @@ -1480,47 +1640,54 @@ Type = "Crafting"; { 12, "s44590", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Shadow Resistance", "=ds="..AL["Drop"]}; { 13, "s44500", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Agility", "=ds="..AL["Trainer"]}; { 14, "s44582", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Spell Piercing", "=ds="..AL["Trainer"]}; - { 15, "s47051", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Steelweave", "=ds=#sr# 375"}; - { 16, "s351501", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Crushing Wave", "=ds=#sr# 375"}; - { 17, "s351530", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Phoenix Fire", "=ds=#sr# 375"}; - { 18, "s34005", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Arcane Resistance", "=ds=#sr# 350"}; - { 19, "s34006", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Shadow Resistance", "=ds=#sr# 350"}; - { 20, "s27962", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Major Resistance", "=ds=#sr# 330"}; - { 21, "s34003", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Spell Penetration", "=ds=#sr# 325"}; - { 22, "s34004", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Agility", "=ds=#sr# 310"}; - { 23, "s27961", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Major Armor", "=ds=#sr# 310"}; - { 24, "s25082", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Nature Resistance", "=ds=#sr# 300"}; - { 25, "s25083", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Stealth", "=ds=#sr# 300"}; - { 26, "s25084", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Subtlety", "=ds=#sr# 300"}; - { 27, "s25086", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Dodge", "=ds=#sr# 300"}; - { 28, "s25081", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Fire Resistance", "=ds=#sr# 300"}; - { 29, "s20015", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Defense", "=ds=#sr# 285"}; - { 30, "s20014", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Resistance", "=ds=#sr# 265"}; - - Prev = "EnchantingChest1"; - Next = "EnchantingCloak2"; + Prev = "EnchantingCloakTBC"; + Next = "EnchantingCloakCLASSIC"; Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["EnchantingCloak2"] = { - { 1, "s13882", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Agility", "=ds=#sr# 225"}; - { 2, "s13746", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Defense", "=ds=#sr# 205"}; - { 3, "s13794", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Resistance", "=ds=#sr# 205"}; - { 4, "s13657", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Fire Resistance", "=ds=#sr# 175"}; - { 5, "s13635", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Defense", "=ds=#sr# 155"}; - { 6, "s13522", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Shadow Resistance", "=ds=#sr# 135"}; - { 7, "s7861", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Fire Resistance", "=ds=#sr# 125"}; - { 8, "s13419", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Minor Agility", "=ds=#sr# 110"}; - { 9, "s13421", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Lesser Protection", "=ds=#sr# 115"}; - { 10, "s7771", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Minor Protection", "=ds=#sr# 70"}; - { 11, "s7454", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Minor Resistance", "=ds=#sr# 45"}; - { 12, "s7426", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Absorption", "=ds=#sr# 40"}; - Prev = "EnchantingCloak1"; - Next = "EnchantingGloves1"; + AtlasLoot_Data["EnchantingGlovesCLASSIC"] = { + { 1, "s25078", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Fire Power", "=ds=#sr# 300"}; + { 2, "s25074", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Frost Power", "=ds=#sr# 300"}; + { 3, "s25079", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Healing Power", "=ds=#sr# 300"}; + { 4, "s25073", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Shadow Power", "=ds=#sr# 300"}; + { 5, "s25080", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Superior Agility", "=ds=#sr# 300"}; + { 6, "s25072", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Threat", "=ds=#sr# 300"}; + { 7, "s20013", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Greater Strength", "=ds=#sr# 295"}; + { 8, "s20012", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Greater Agility", "=ds=#sr# 270"}; + { 9, "s13948", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Minor Haste", "=ds=#sr# 250"}; + { 10, "s13947", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Riding Skill", "=ds=#sr# 250"}; + { 11, "s13868", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Advanced Herbalism", "=ds=#sr# 225"}; + { 12, "s13887", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Strength", "=ds=#sr# 225"}; + { 13, "s13841", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Advanced Mining", "=ds=#sr# 215"}; + { 14, "s13815", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Agility", "=ds=#sr# 210"}; + { 15, "s13698", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Skinning", "=ds=#sr# 200"}; + { 16, "s13620", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Fishing", "=ds=#sr# 145"}; + { 17, "s13617", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Herbalism", "=ds=#sr# 145"}; + { 18, "s13612", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Mining", "=ds=#sr# 145"}; + Prev = "EnchantingGlovesWRATH"; + Next = "EnchantingGlovesTBC"; Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["EnchantingGloves1"] = { + AtlasLoot_Data["EnchantingGlovesTBC"] = { + { 1, "s44592", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Exceptional Spellpower", "=ds="..AL["Trainer"] }; + { 2, "s33997", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Spellpower", "=ds=#sr# 360"}; + { 3, "s33994", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Spell Strike", "=ds=#sr# 360"}; + { 4, "s33999", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Healing", "=ds=#sr# 350"}; + { 5, "s33995", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Strength", "=ds=#sr# 340"}; + { 6, "s33996", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Assault", "=ds=#sr# 310"}; + { 7, "s33993", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Blasting", "=ds=#sr# 305"}; + { 8, "s25080", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Superior Agility", "=ds=#sr# 300"}; + { 9, "s25072", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Threat", "=ds=#sr# 300"}; + Prev = "EnchantingGlovesCLASSIC"; + Next = "EnchantingGlovesWRATH"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["EnchantingGlovesWRATH"] = { { 1, "s71692", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Angler", "=ds="..AL["Drop"]..""}; { 2, "s44625", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Armsman", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 3, "s60668", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Crusher", "=ds="..AL["Trainer"] }; @@ -1529,137 +1696,101 @@ Type = "Crafting"; { 6, "s44484", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Expertise", "=ds="..AL["Trainer"] }; { 7, "s44513", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Greater Assault", "=ds="..AL["Trainer"] }; { 8, "s44506", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Gatherer", "=ds="..AL["Trainer"] }; - { 9, "s44592", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Exceptional Spellpower", "=ds="..AL["Trainer"] }; - { 10, "s33997", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Spellpower", "=ds=#sr# 360"}; - { 11, "s33994", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Spell Strike", "=ds=#sr# 360"}; - { 12, "s33999", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Healing", "=ds=#sr# 350"}; - { 13, "s33995", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Strength", "=ds=#sr# 340"}; - { 14, "s33996", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Assault", "=ds=#sr# 310"}; - { 15, "s33993", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Blasting", "=ds=#sr# 305"}; - { 16, "s25078", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Fire Power", "=ds=#sr# 300"}; - { 17, "s25074", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Frost Power", "=ds=#sr# 300"}; - { 18, "s25079", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Healing Power", "=ds=#sr# 300"}; - { 19, "s25073", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Shadow Power", "=ds=#sr# 300"}; - { 20, "s25080", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Superior Agility", "=ds=#sr# 300"}; - { 21, "s25072", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Threat", "=ds=#sr# 300"}; - { 22, "s20013", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Greater Strength", "=ds=#sr# 295"}; - { 23, "s20012", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Greater Agility", "=ds=#sr# 270"}; - { 24, "s13948", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Minor Haste", "=ds=#sr# 250"}; - { 25, "s13947", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Riding Skill", "=ds=#sr# 250"}; - { 26, "s13868", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Advanced Herbalism", "=ds=#sr# 225"}; - { 27, "s13887", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Strength", "=ds=#sr# 225"}; - { 28, "s13841", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Advanced Mining", "=ds=#sr# 215"}; - { 29, "s13815", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Agility", "=ds=#sr# 210"}; - { 30, "s13698", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Skinning", "=ds=#sr# 200"}; - Prev = "EnchantingCloak1"; - Next = "EnchantingGloves2"; - Back = "ENCHANTINGMENU"; - }; - - AtlasLoot_Data["EnchantingGloves2"] = { - { 1, "s13620", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Fishing", "=ds=#sr# 145"}; - { 2, "s13617", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Herbalism", "=ds=#sr# 145"}; - { 3, "s13612", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Mining", "=ds=#sr# 145"}; - Prev = "EnchantingGloves1"; - Next = "EnchantingRing1"; + Prev = "EnchantingGlovesTBC"; + Next = "EnchantingGlovesCLASSIC"; Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; AtlasLoot_Data["EnchantingRing1"] = { - { 1, "s44645", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Assault", "=ds="..AL["Trainer"]}; - { 2, "s44636", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Greater Spellpower", "=ds="..AL["Trainer"]}; - { 3, "s59636", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Stamina", "=ds="..AL["Trainer"]}; - { 4, "s27927", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Stats", "=ds=#sr# 375"}; - { 5, "s27926", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Healing Power", "=ds=#sr# 370"}; - { 6, "s27924", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Spellpower", "=ds=#sr# 360"}; - { 7, "s27920", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Striking", "=ds=#sr# 360"}; - Prev = "EnchantingGloves1"; - Next = "EnchantingShield1"; + { 1, "EnchantingRing1", "INV_Box_01", AL["Wrath of the Lich King"], ""}; + { 2, "s44645", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Assault", "=ds="..AL["Trainer"]}; + { 3, "s44636", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Greater Spellpower", "=ds="..AL["Trainer"]}; + { 4, "s59636", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Stamina", "=ds="..AL["Trainer"]}; + { 6, "EnchantingRing1", "INV_Box_01", AL["Burning Crusade"], ""}; + { 7, "s27927", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Stats", "=ds=#sr# 375"}; + { 8, "s27926", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Healing Power", "=ds=#sr# 370"}; + { 9, "s27924", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Spellpower", "=ds=#sr# 360"}; + { 10, "s27920", "Spell_Holy_GreaterHeal", "=ds=Enchant Ring - Striking", "=ds=#sr# 360"}; Back = "ENCHANTINGMENU"; + Submenu = "Disable"; }; - AtlasLoot_Data["EnchantingShield1"] = { + AtlasLoot_Data["EnchantingShieldCLASSIC"] = { + { 1, "s20016", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Superior Spirit", "=ds=#sr# 280"}; + { 2, "s20017", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Greater Stamina", "=ds=#sr# 265"}; + { 3, "s13933", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Frost Resistance", "=ds=#sr# 235"}; + { 4, "s13905", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Greater Spirit", "=ds=#sr# 230"}; + { 5, "s13817", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Stamina", "=ds=#sr# 210"}; + { 6, "s13689", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Block", "=ds=#sr# 195"}; + { 7, "s13659", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Spirit", "=ds=#sr# 180"}; + { 8, "s13631", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Stamina", "=ds=#sr# 155"}; + { 9, "s13485", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Spirit", "=ds=#sr# 130"}; + { 10, "s13464", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Protection", "=ds=#sr# 115"}; + { 11, "s13378", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Minor Stamina", "=ds=#sr# 105"}; + Prev = "EnchantingShieldWRATH"; + Next = "EnchantingShieldTBC"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + AtlasLoot_Data["EnchantingShieldTBC"] = { + { 1, "s27947", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Resistance", "=ds=#sr# 360"}; + { 2, "s27946", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Shield Block", "=ds=#sr# 340"}; + { 3, "s44383", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Resilience", "=ds=#sr# 330"}; + { 4, "s27945", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Intellect", "=ds=#sr# 325"}; + { 5, "s34009", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Major Stamina", "=ds=#sr# 325"}; + { 6, "s27944", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Tough Shield", "=ds=#sr# 310"}; + Prev = "EnchantingShieldCLASSIC"; + Next = "EnchantingShieldWRATH"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + AtlasLoot_Data["EnchantingShieldWRATH"] = { { 1, "s44489", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Defense", "=ds="..AL["Trainer"]}; { 2, "s60653", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Greater Intellect", "=ds="..AL["Trainer"]}; - { 3, "s27947", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Resistance", "=ds=#sr# 360"}; - { 4, "s27946", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Shield Block", "=ds=#sr# 340"}; - { 5, "s44383", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Resilience", "=ds=#sr# 330"}; - { 6, "s27945", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Intellect", "=ds=#sr# 325"}; - { 7, "s34009", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Major Stamina", "=ds=#sr# 325"}; - { 8, "s27944", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Tough Shield", "=ds=#sr# 310"}; - { 9, "s20016", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Superior Spirit", "=ds=#sr# 280"}; - { 10, "s20017", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Greater Stamina", "=ds=#sr# 265"}; - { 11, "s13933", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Frost Resistance", "=ds=#sr# 235"}; - { 12, "s13905", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Greater Spirit", "=ds=#sr# 230"}; - { 13, "s13817", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Stamina", "=ds=#sr# 210"}; - { 14, "s13689", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Block", "=ds=#sr# 195"}; - { 15, "s13659", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Spirit", "=ds=#sr# 180"}; - { 16, "s13631", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Stamina", "=ds=#sr# 155"}; - { 17, "s13485", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Spirit", "=ds=#sr# 130"}; - { 18, "s13464", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Protection", "=ds=#sr# 115"}; - { 19, "s13378", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Minor Stamina", "=ds=#sr# 105"}; - Prev = "EnchantingRing1"; - Next = "Enchanting2HWeapon1"; + Prev = "EnchantingShieldTBC"; + Next = "EnchantingShieldCLASSIC"; Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["Enchanting2HWeapon1"] = { + AtlasLoot_Data["EnchantingTwoHWeaponCLASSIC"] = { + { 1, "s20036", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Major Intellect", "=ds=#sr# 300"}; + { 2, "s20035", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Major Spirit", "=ds=#sr# 300"}; + { 3, "s20030", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Superior Impact", "=ds=#sr# 295"}; + { 4, "s27837", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Agility", "=ds=#sr# 290"}; + { 5, "s13937", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Greater Impact", "=ds=#sr# 240"}; + { 6, "s13695", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Impact", "=ds=#sr# 200"}; + { 7, "s13529", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Lesser Impact", "=ds=#sr# 145"}; + { 8, "s13380", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Lesser Spirit", "=ds=#sr# 110"}; + { 9, "s7793", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Lesser Intellect", "=ds=#sr# 100"}; + { 10, "s7745", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Minor Impact", "=ds=#sr# 100"}; + Prev = "EnchantingTwoHWeaponWRATH"; + Next = "EnchantingTwoHWeaponTBC"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["EnchantingTwoHWeaponTBC"] = { + { 1, "s27977", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Major Agility", "=ds=#sr# 360"}; + { 2, "s27971", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Savagery", "=ds=#sr# 350"}; + Prev = "EnchantingTwoHWeaponCLASSIC"; + Next = "EnchantingTwoHWeaponWRATH"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["EnchantingTwoHWeaponWRATH"] = { { 1, "s60691", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Massacre", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 2, "s44595", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Scourgebane", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 3, "s44630", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Greater Savagery", "=ds="..AL["Trainer"] }; - { 4, "s27977", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Major Agility", "=ds=#sr# 360"}; - { 5, "s27971", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Savagery", "=ds=#sr# 350"}; - { 6, "s20036", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Major Intellect", "=ds=#sr# 300"}; - { 7, "s20035", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Major Spirit", "=ds=#sr# 300"}; - { 8, "s20030", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Superior Impact", "=ds=#sr# 295"}; - { 9, "s27837", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Agility", "=ds=#sr# 290"}; - { 10, "s13937", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Greater Impact", "=ds=#sr# 240"}; - { 11, "s13695", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Impact", "=ds=#sr# 200"}; - { 12, "s13529", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Lesser Impact", "=ds=#sr# 145"}; - { 13, "s13380", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Lesser Spirit", "=ds=#sr# 110"}; - { 14, "s7793", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Lesser Intellect", "=ds=#sr# 100"}; - { 15, "s7745", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Minor Impact", "=ds=#sr# 100"}; - Prev = "EnchantingShield1"; - Next = "EnchantingWeapon1"; + Prev = "EnchantingTwoHWeaponTBC"; + Next = "EnchantingTwoHWeaponCLASSIC"; Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["EnchantingWeapon1"] = { - { 1, "s64441", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Blade Ward", "=ds=#sr# 450"}; - { 2, "s64579", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Blood Draining", "=ds=#sr# 450"}; - { 3, "s59619", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Accuracy", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 4, "s59621", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Berserking", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 5, "s59625", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Black Magic", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 6, "s44576", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lifeward", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 7, "s60714", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Mighty Spellpower", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 8, "s60707", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Superior Potency", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 9, "s44621", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Giant Slayer", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 10, "s44524", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Icebreaker", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 11, "s44633", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Exceptional Agility", "=ds="..AL["Trainer"] }; - { 12, "s44510", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Exceptional Spirit", "=ds="..AL["Trainer"] }; - { 13, "s44629", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Exceptional Spellpower", "=ds="..AL["Trainer"] }; - { 14, "s60621", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Greater Potency", "=ds="..AL["Trainer"] }; - { 15, "s42974", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Executioner", "=ds=#sr# 375"}; - { 16, "s820034", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Undaunted Might", "=ds=#sr# 375"}; - { 17, "s359012", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Faith", "=ds=#sr# 375"}; - { 18, "s27984", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Mongoose", "=ds=#sr# 375"}; - { 19, "s27982", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Soulfrost", "=ds=#sr# 375"}; - { 20, "s27981", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Sunfire", "=ds=#sr# 375"}; - { 21, "s28004", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Battlemaster", "=ds=#sr# 360"}; - { 22, "s28003", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Spellsurge", "=ds=#sr# 360"}; - { 23, "s46578", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Deathfrost", "=ds=#sr# 350"}; - { 24, "s34010", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Healing", "=ds=#sr# 350"}; - { 25, "s27975", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Spellpower", "=ds=#sr# 350"}; - { 26, "s27972", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Potency", "=ds=#sr# 350"}; - { 27, "s42620", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Greater Agility", "=ds=#sr# 350"}; - { 28, "s27968", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Intellect", "=ds=#sr# 340"}; - { 29, "s27967", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Striking", "=ds=#sr# 340"}; - Prev = "Enchanting2HWeapon1"; - Next = "EnchantingWeapon2"; - Back = "ENCHANTINGMENU"; - }; - - AtlasLoot_Data["EnchantingWeapon2"] = { + AtlasLoot_Data["EnchantingWeaponCLASSIC"] = { { 1, "s20034", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Crusader", "=ds=#sr# 300"}; { 2, "s22750", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Healing Power", "=ds=#sr# 300"}; { 3, "s20032", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lifestealing", "=ds=#sr# 300"}; @@ -1681,59 +1812,112 @@ Type = "Crafting"; { 19, "s13503", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lesser Striking", "=ds=#sr# 140"}; { 20, "s7786", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Minor Beastslayer", "=ds=#sr# 90"}; { 21, "s7788", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Minor Striking", "=ds=#sr# 90"}; - Prev = "EnchantingWeapon1"; - Next = "EnchantingStaff1"; + Prev = "EnchantingWeaponWRATH"; + Next = "EnchantingWeaponTBC"; Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["EnchantingWeaponTBC"] = { + { 1, "s42974", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Executioner", "=ds=#sr# 375"}; + { 2, "s820034", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Undaunted Might", "=ds=#sr# 375"}; + { 3, "s359012", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Faith", "=ds=#sr# 375"}; + { 4, "s27984", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Mongoose", "=ds=#sr# 375"}; + { 5, "s27982", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Soulfrost", "=ds=#sr# 375"}; + { 6, "s27981", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Sunfire", "=ds=#sr# 375"}; + { 7, "s28004", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Battlemaster", "=ds=#sr# 360"}; + { 8, "s28003", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Spellsurge", "=ds=#sr# 360"}; + { 9, "s46578", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Deathfrost", "=ds=#sr# 350"}; + { 10, "s34010", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Healing", "=ds=#sr# 350"}; + { 11, "s27975", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Spellpower", "=ds=#sr# 350"}; + { 12, "s27972", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Potency", "=ds=#sr# 350"}; + { 13, "s42620", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Greater Agility", "=ds=#sr# 350"}; + { 14, "s27968", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Intellect", "=ds=#sr# 340"}; + { 15, "s27967", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Major Striking", "=ds=#sr# 340"}; + Prev = "EnchantingWeaponCLASSIC"; + Next = "EnchantingWeaponWRATH"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["EnchantingWeaponWRATH"] = { + { 1, "s64441", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Blade Ward", "=ds=#sr# 450"}; + { 2, "s64579", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Blood Draining", "=ds=#sr# 450"}; + { 3, "s59619", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Accuracy", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 4, "s59621", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Berserking", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 5, "s59625", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Black Magic", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 6, "s44576", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Lifeward", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 7, "s60714", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Mighty Spellpower", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 8, "s60707", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Superior Potency", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 9, "s44621", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Giant Slayer", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 10, "s44524", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Icebreaker", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 11, "s44633", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Exceptional Agility", "=ds="..AL["Trainer"] }; + { 12, "s44510", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Exceptional Spirit", "=ds="..AL["Trainer"] }; + { 13, "s44629", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Exceptional Spellpower", "=ds="..AL["Trainer"] }; + { 14, "s60621", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Greater Potency", "=ds="..AL["Trainer"] }; + Prev = "EnchantingWeaponTBC"; + Next = "EnchantingWeaponCLASSIC"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; AtlasLoot_Data["EnchantingStaff1"] = { { 1, "s62948", "Spell_Holy_GreaterHeal", "=ds=Enchant Staff - Greater Spellpower", "=ds="}; { 2, "s62959", "Spell_Holy_GreaterHeal", "=ds=Enchant Staff - Spellpower", "=ds="}; - Prev = "EnchantingWeapon2"; - Next = "EnchantingMisc1"; Back = "ENCHANTINGMENU"; + Submenu = "Disable"; + }; + + + AtlasLoot_Data["EnchantingMiscCLASSIC"] = { + { 1, "s25130", "20748", "=q1=Brilliant Mana Oil", "=ds=#sr# 300"}; + { 2, "s25129", "20749", "=q1=Brilliant Wizard Oil", "=ds=#sr# 300"}; + { 3, "s32664", "22461", "=q1=Runed Fel Iron Rod", "=ds=#sr# 300"}; + { 4, "s20051", "16207", "=q1=Runed Arcanite Rod", "=ds=#sr# 290"}; + { 5, "s25128", "20750", "=q1=Wizard Oil", "=ds=#sr# 275"}; + { 6, "s17180", "12655", "=q1=Enchanted Thorium", "=ds=#sr# 250"}; + { 7, "s25127", "20747", "=q1=Lesser Mana Oil", "=ds=#sr# 250"}; + { 8, "s17181", "12810", "=q1=Enchanted Leather", "=ds=#sr# 250"}; + { 9, "s25126", "20746", "=q1=Lesser Wizard Oil", "=ds=#sr# 200"}; + { 10, "s13702", "11145", "=q1=Runed Truesilver Rod", "=ds=#sr# 200"}; + { 11, "s25125", "20745", "=q1=Minor Mana Oil", "=ds=#sr# 150"}; + { 12, "s13628", "11130", "=q1=Runed Golden Rod", "=ds=#sr# 150"}; + { 13, "s7795", "6339", "=q1=Runed Silver Rod", "=ds=#sr# 100"}; + { 14, "s25124", "20744", "=q1=Minor Wizard Oil", "=ds=#sr# 45"}; + { 15, "s7421", "6218", "=q1=Runed Copper Rod", "=ds=#sr# 1"}; + { 16, "s14810", "11290", "=q2=Greater Mystic Wand", "=ds=#sr# 175"}; + { 17, "s14809", "11289", "=q2=Lesser Mystic Wand", "=ds=#sr# 155"}; + { 18, "s14807", "11288", "=q2=Greater Magic Wand", "=ds=#sr# 70"}; + { 19, "s14293", "11287", "=q2=Lesser Magic Wand", "=ds=#sr# 10"}; + Next = "EnchantingMiscTBC"; + Prev = "EnchantingMiscWRATH"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; + }; + AtlasLoot_Data["EnchantingMiscTBC"] = { + { 1, "s32667", "22463", "=q3=Runed Eternium Rod", "=ds=#sr# 375"}; + { 2, "s45765", "22449", "=q3=Void Shatter", "=ds=#sr# 360"}; + { 3, "s42615", "22448", "=q3=Small Prismatic Shard", "=ds=#sr# 335"}; + { 4, "s28022", "22449", "=q3=Large Prismatic Shard", "=ds=#sr# 335"}; + { 5, "s28027", "22460", "=q3=Prismatic Sphere", "=ds=#sr# 325"}; + { 6, "s42613", "22448", "=q3=Nexus Transformation", "=ds=#sr# 300"}; + { 7, "s15596", "11811", "=q3=Smoking Heart of the Mountain", "=ds=#sr# 265"}; + { 8, "s32665", "22462", "=q2=Runed Adamantite Rod", "=ds=#sr# 350"}; + { 9, "s28019", "22522", "=q1=Superior Wizard Oil", "=ds=#sr# 340"}; + { 10, "s28016", "22521", "=q1=Superior Mana Oil", "=ds=#sr# 310"}; + Next = "EnchantingMiscWRATH"; + Prev = "EnchantingMiscCLASSIC"; + Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["EnchantingMisc1"] = { + AtlasLoot_Data["EnchantingMiscWRATH"] = { { 1, "s28028", "22459", "=q4=Void Sphere", "=ds=#sr# 350"}; { 2, "s60619", "44452", "=q3=Runed Titanium Rod", "=ds="..AL["Trainer"]}; - { 3, "s32667", "22463", "=q3=Runed Eternium Rod", "=ds=#sr# 375"}; - { 4, "s45765", "22449", "=q3=Void Shatter", "=ds=#sr# 360"}; - { 5, "s42615", "22448", "=q3=Small Prismatic Shard", "=ds=#sr# 335"}; - { 6, "s28022", "22449", "=q3=Large Prismatic Shard", "=ds=#sr# 335"}; - { 7, "s28027", "22460", "=q3=Prismatic Sphere", "=ds=#sr# 325"}; - { 8, "s42613", "22448", "=q3=Nexus Transformation", "=ds=#sr# 300"}; - { 9, "s15596", "11811", "=q3=Smoking Heart of the Mountain", "=ds=#sr# 265"}; - { 10, "s32665", "22462", "=q2=Runed Adamantite Rod", "=ds=#sr# 350"}; - { 11, "s14810", "11290", "=q2=Greater Mystic Wand", "=ds=#sr# 175"}; - { 12, "s14809", "11289", "=q2=Lesser Mystic Wand", "=ds=#sr# 155"}; - { 13, "s14807", "11288", "=q2=Greater Magic Wand", "=ds=#sr# 70"}; - { 14, "s14293", "11287", "=q2=Lesser Magic Wand", "=ds=#sr# 10"}; - { 15, "s28019", "22522", "=q1=Superior Wizard Oil", "=ds=#sr# 340"}; - { 16, "s28016", "22521", "=q1=Superior Mana Oil", "=ds=#sr# 310"}; - { 17, "s25130", "20748", "=q1=Brilliant Mana Oil", "=ds=#sr# 300"}; - { 18, "s25129", "20749", "=q1=Brilliant Wizard Oil", "=ds=#sr# 300"}; - { 19, "s32664", "22461", "=q1=Runed Fel Iron Rod", "=ds=#sr# 300"}; - { 20, "s20051", "16207", "=q1=Runed Arcanite Rod", "=ds=#sr# 290"}; - { 21, "s25128", "20750", "=q1=Wizard Oil", "=ds=#sr# 275"}; - { 22, "s17180", "12655", "=q1=Enchanted Thorium", "=ds=#sr# 250"}; - { 23, "s25127", "20747", "=q1=Lesser Mana Oil", "=ds=#sr# 250"}; - { 24, "s17181", "12810", "=q1=Enchanted Leather", "=ds=#sr# 250"}; - { 25, "s25126", "20746", "=q1=Lesser Wizard Oil", "=ds=#sr# 200"}; - { 26, "s13702", "11145", "=q1=Runed Truesilver Rod", "=ds=#sr# 200"}; - { 27, "s25125", "20745", "=q1=Minor Mana Oil", "=ds=#sr# 150"}; - { 28, "s13628", "11130", "=q1=Runed Golden Rod", "=ds=#sr# 150"}; - { 29, "s7795", "6339", "=q1=Runed Silver Rod", "=ds=#sr# 100"}; - { 30, "s25124", "20744", "=q1=Minor Wizard Oil", "=ds=#sr# 45"}; - Prev = "EnchantingWeapon2"; - Next = "EnchantingMisc2"; - Back = "ENCHANTINGMENU"; - }; - - AtlasLoot_Data["EnchantingMisc2"] = { - { 1, "s7421", "6218", "=q1=Runed Copper Rod", "=ds=#sr# 1"}; - Prev = "EnchantingMisc1"; + Next = "EnchantingMiscCLASSIC"; + Prev = "EnchantingMiscTBC"; Back = "ENCHANTINGMENU"; + Submenu = "Expansion"; }; ------------------- @@ -2374,7 +2558,7 @@ Type = "Crafting"; { 27, "s56959", "40916", "=q1=Glyph of Starfire", "=ds="..AL["Trainer"] }; { 28, "s65245", "46372", "=q1=Glyph of Survival Instincts", "=ds="..AL["Book of Glyph Mastery"]}; { 29, "s56960", "40906", "=q1=Glyph of Swiftmend", "=ds="..GetSpellInfo(61177) }; - { 30, "s56963", "40922", "=q1=Glyph of Wrath", "=ds="..AL["Trainer"] }; + { 30, "s56963", "40922", "=q1=Glyph of WRATH", "=ds="..AL["Trainer"] }; Back = "INSCRIPTIONMENU"; }; @@ -2396,7 +2580,7 @@ Type = "Crafting"; { 3, "s56996", "42899", "=q1=Glyph of Aspect of the Beast", "=ds="..GetSpellInfo(61177) }; { 4, "s56997", "42900", "=q1=Glyph of Aspect of the Monkey", "=ds="..AL["Trainer"] }; { 5, "s56998", "42901", "=q1=Glyph of Aspect of the Viper", "=ds="..GetSpellInfo(61177) }; - { 6, "s56999", "42902", "=q1=Glyph of Beastial Wrath", "=ds="..GetSpellInfo(61177) }; + { 6, "s56999", "42902", "=q1=Glyph of Beastial WRATH", "=ds="..GetSpellInfo(61177) }; { 7, "s64271", "45625", "=q1=Glyph of Chimera Shot", "=ds="..AL["Book of Glyph Mastery"]}; { 8, "s57000", "42903", "=q1=Glyph of Deterrence", "=ds="..AL["Trainer"] }; { 9, "s57001", "42904", "=q1=Glyph of Disengage", "=ds="..AL["Trainer"] }; @@ -2477,7 +2661,7 @@ Type = "Crafting"; AtlasLoot_Data["Inscription_PaladinMajor1"] = { { 1, "s57019", "41101", "=q1=Glyph of Avenger's Shield", "=ds="..GetSpellInfo(61177) }; - { 2, "s57021", "41107", "=q1=Glyph of Avenging Wrath", "=ds="..GetSpellInfo(61177) }; + { 2, "s57021", "41107", "=q1=Glyph of Avenging WRATH", "=ds="..GetSpellInfo(61177) }; { 3, "s64277", "45741", "=q1=Glyph of Beacon of Light", "=ds="..AL["Book of Glyph Mastery"]}; { 4, "s57020", "41104", "=q1=Glyph of Cleansing", "=ds="..AL["Trainer"] }; { 5, "s57023", "41099", "=q1=Glyph of Consecration", "=ds="..AL["Trainer"] }; @@ -2489,7 +2673,7 @@ Type = "Crafting"; { 11, "s57026", "41105", "=q1=Glyph of Flash of Light", "=ds="..AL["Trainer"] }; { 12, "s57027", "41095", "=q1=Glyph of Hammer of Justice", "=ds="..AL["Trainer"] }; { 13, "s64278", "45742", "=q1=Glyph of Hammer of the Righteous", "=ds="..AL["Book of Glyph Mastery"]}; - { 14, "s57028", "41097", "=q1=Glyph of Hammer of Wrath", "=ds="..GetSpellInfo(61177) }; + { 14, "s57028", "41097", "=q1=Glyph of Hammer of WRATH", "=ds="..GetSpellInfo(61177) }; { 15, "s57029", "41106", "=q1=Glyph of Holy Light", "=ds="..AL["Trainer"] }; { 16, "s64254", "45746", "=q1=Glyph of Holy Shock", "=ds="..AL["Book of Glyph Mastery"]}; { 17, "s57030", "41092", "=q1=Glyph of Judgement", "=ds="..AL["Trainer"] }; @@ -2626,7 +2810,7 @@ Type = "Crafting"; { 23, "s64247", "45778", "=q1=Glyph of Stoneclaw Totem", "=ds="..AL["Book of Glyph Mastery"]}; { 24, "s57248", "41539", "=q1=Glyph of Stormstrike", "=ds="..AL["Trainer"] }; { 25, "s64287", "45770", "=q1=Glyph of Thunder", "=ds="..AL["Book of Glyph Mastery"]}; - { 26, "s64262", "45776", "=q1=Glyph of Totem of Wrath", "=ds="..AL["Book of Glyph Mastery"]}; + { 26, "s64262", "45776", "=q1=Glyph of Totem of WRATH", "=ds="..AL["Book of Glyph Mastery"]}; { 27, "s57251", "41541", "=q1=Glyph of Water Mastery", "=ds="..AL["Trainer"] }; { 28, "s57252", "41542", "=q1=Glyph of Windfury Weapon", "=ds="..AL["Trainer"] }; Back = "INSCRIPTIONMENU"; @@ -2732,7 +2916,42 @@ Type = "Crafting"; --- Jewelcrafting --- --------------------- - AtlasLoot_Data["JewelRed1"] ={ + AtlasLoot_Data["JewelRedCLASSIC"] = { + Prev = "JewelRedWRATH"; + Next = "JewelRedTBC"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["JewelRedTBC"] ={ + { 1, "s39705", "32193", "=q4=Bold Crimson Spinel", "=ds=#sr# 375"}; + { 2, "s39712", "32197", "=q4=Bright Crimson Spinel", "=ds=#sr# 375"}; + { 3, "s39706", "32194", "=q4=Delicate Crimson Spinel", "=ds=#sr# 375"}; + { 4, "s39714", "32199", "=q4=Flashing Crimson Spinel", "=ds=#sr# 375"}; + { 5, "s39711", "32196", "=q4=Runed Crimson Spinel", "=ds=#sr# 375"}; + { 6, "s39713", "32198", "=q4=Subtle Crimson Spinel", "=ds=#sr# 375"}; + { 7, "s39710", "32195", "=q4=Teardrop Crimson Spinel", "=ds=#sr# 375"}; + { 8, "s42589", "33131", "=q4=Crimson Sun", "=ds=#sr# 360"}; + { 9, "s42558", "33133", "=q4=Don Julio's Heart", "=ds=#sr# 360"}; + { 10, "s42588", "33134", "=q4=Kailee's Rose", "=ds=#sr# 360"}; + { 16, "s31084", "24027", "=q3=Bold Living Ruby", "=ds=#sr# 350"}; + { 17, "s31089", "24031", "=q3=Bright Living Ruby", "=ds=#sr# 350"}; + { 18, "s31085", "24028", "=q3=Delicate Living Ruby", "=ds=#sr# 350"}; + { 19, "s31091", "24036", "=q3=Flashing Living Ruby", "=ds=#sr# 350"}; + { 20, "s31088", "24030", "=q3=Runed Living Ruby", "=ds=#sr# 350"}; + { 21, "s31090", "24032", "=q3=Subtle Living Ruby", "=ds=#sr# 350"}; + { 22, "s31087", "24029", "=q3=Teardrop Living Ruby", "=ds=#sr# 350"}; + { 23, "s28907", "23097", "=q2=Delicate Blood Garnet", "=ds=#sr# 325"}; + { 24, "s28906", "23096", "=q2=Runed Blood Garnet", "=ds=#sr# 315"}; + { 25, "s28905", "23095", "=q2=Bold Blood Garnet", "=ds=#sr# 305"}; + { 26, "s34590", "28595", "=q2=Bright Blood Garnet", "=ds=#sr# 305"}; + { 27, "s28903", "23094", "=q2=Teardrop Blood Garnet", "=ds=#sr# 300"}; + Prev = "JewelRedWRATH"; + Next = "JewelRedWRATH"; + Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["JewelRedWRATH"] ={ { 1, "s66447", "40111", "=q4=Bold Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 2, "s66449", "40114", "=q4=Bright Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 3, "s66448", "40112", "=q4=Delicate Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; @@ -2741,135 +2960,165 @@ Type = "Crafting"; { 6, "s66450", "40118", "=q4=Precise Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 7, "s66446", "40113", "=q4=Runed Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 8, "s66452", "40115", "=q4=Subtle Cardinal Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 9, "s39705", "32193", "=q4=Bold Crimson Spinel", "=ds=#sr# 375"}; - { 10, "s39712", "32197", "=q4=Bright Crimson Spinel", "=ds=#sr# 375"}; - { 11, "s39706", "32194", "=q4=Delicate Crimson Spinel", "=ds=#sr# 375"}; - { 12, "s39714", "32199", "=q4=Flashing Crimson Spinel", "=ds=#sr# 375"}; - { 13, "s39711", "32196", "=q4=Runed Crimson Spinel", "=ds=#sr# 375"}; - { 14, "s39713", "32198", "=q4=Subtle Crimson Spinel", "=ds=#sr# 375"}; - { 15, "s39710", "32195", "=q4=Teardrop Crimson Spinel", "=ds=#sr# 375"}; - { 16, "s42589", "33131", "=q4=Crimson Sun", "=ds=#sr# 360"}; - { 17, "s42558", "33133", "=q4=Don Julio's Heart", "=ds=#sr# 360"}; - { 18, "s42588", "33134", "=q4=Kailee's Rose", "=ds=#sr# 360"}; - { 19, "s53830", "39996", "=q3=Bold Scarlet Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 20, "s53947", "39999", "=q3=Bright Scarlet Ruby", "=ds="..AL["Trainer"] }; - { 21, "s53945", "39997", "=q3=Delicate Scarlet Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 22, "s53949", "40001", "=q3=Flashing Scarlet Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 23, "s53950", "40002", "=q3=Fractured Scarlet Ruby","=ds="..AL["Drop"].." - "..BabbleZone["The Storm Peaks"] }; - { 24, "s53951", "40003", "=q3=Precise Scarlet Ruby", "=ds="..BabbleBoss["Herald Volazj"].." ("..AL["Heroic"]..")" }; - { 25, "s53946", "39998", "=q3=Runed Scarlet Ruby", "=ds="..BabbleFaction["Kirin Tor"]..": "..BabbleFaction["Exalted"] }; - { 26, "s31084", "24027", "=q3=Bold Living Ruby", "=ds=#sr# 350"}; - { 27, "s31089", "24031", "=q3=Bright Living Ruby", "=ds=#sr# 350"}; - { 28, "s31085", "24028", "=q3=Delicate Living Ruby", "=ds=#sr# 350"}; - { 29, "s31091", "24036", "=q3=Flashing Living Ruby", "=ds=#sr# 350"}; - { 30, "s31088", "24030", "=q3=Runed Living Ruby", "=ds=#sr# 350"}; - Next = "JewelRed2"; + { 9, "s53830", "39996", "=q3=Bold Scarlet Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 10, "s53947", "39999", "=q3=Bright Scarlet Ruby", "=ds="..AL["Trainer"] }; + { 11, "s53945", "39997", "=q3=Delicate Scarlet Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 12, "s53949", "40001", "=q3=Flashing Scarlet Ruby", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 13, "s53950", "40002", "=q3=Fractured Scarlet Ruby","=ds="..AL["Drop"].." - "..BabbleZone["The Storm Peaks"] }; + { 14, "s53951", "40003", "=q3=Precise Scarlet Ruby", "=ds="..BabbleBoss["Herald Volazj"].." ("..AL["Heroic"]..")" }; + { 15, "s53946", "39998", "=q3=Runed Scarlet Ruby", "=ds="..BabbleFaction["Kirin Tor"]..": "..BabbleFaction["Exalted"] }; + { 16, "s53843", "39907", "=q2=Subtle Bloodstone", "=ds="..AL["Trainer"] }; + { 17, "s53831", "39900", "=q2=Bold Bloodstone", "=ds="..AL["Trainer"] }; + { 18, "s53835", "39906", "=q2=Bright Bloodstone", "=ds="..AL["Trainer"] }; + { 19, "s53832", "39905", "=q2=Delicate Bloodstone", "=ds="..AL["Trainer"] }; + { 20, "s53844", "39908", "=q2=Flashing Bloodstone", "=ds="..AL["Trainer"] }; + { 21, "s53845", "39909", "=q2=Fractured Bloodstone", "=ds="..AL["Trainer"] }; + { 22, "s54017", "39910", "=q2=Precise Bloodstone", "=ds="..AL["Trainer"] }; + { 23, "s53834", "39911", "=q2=Runed Bloodstone", "=ds="..AL["Trainer"] }; + Prev = "JewelRedTBC"; + Next = "JewelRedTBC"; Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelRed2"] ={ - { 1, "s31090", "24032", "=q3=Subtle Living Ruby", "=ds=#sr# 350"}; - { 2, "s31087", "24029", "=q3=Teardrop Living Ruby", "=ds=#sr# 350"}; - { 3, "s53843", "39907", "=q2=Subtle Bloodstone", "=ds="..AL["Trainer"] }; - { 4, "s53831", "39900", "=q2=Bold Bloodstone", "=ds="..AL["Trainer"] }; - { 5, "s53835", "39906", "=q2=Bright Bloodstone", "=ds="..AL["Trainer"] }; - { 6, "s53832", "39905", "=q2=Delicate Bloodstone", "=ds="..AL["Trainer"] }; - { 7, "s53844", "39908", "=q2=Flashing Bloodstone", "=ds="..AL["Trainer"] }; - { 8, "s53845", "39909", "=q2=Fractured Bloodstone", "=ds="..AL["Trainer"] }; - { 9, "s54017", "39910", "=q2=Precise Bloodstone", "=ds="..AL["Trainer"] }; - { 10, "s53834", "39911", "=q2=Runed Bloodstone", "=ds="..AL["Trainer"] }; - { 11, "s28907", "23097", "=q2=Delicate Blood Garnet", "=ds=#sr# 325"}; - { 12, "s28906", "23096", "=q2=Runed Blood Garnet", "=ds=#sr# 315"}; - { 13, "s28905", "23095", "=q2=Bold Blood Garnet", "=ds=#sr# 305"}; - { 14, "s34590", "28595", "=q2=Bright Blood Garnet", "=ds=#sr# 305"}; - { 15, "s28903", "23094", "=q2=Teardrop Blood Garnet", "=ds=#sr# 300"}; - Prev = "JewelRed1"; - Back = "JEWELCRAFTINGMENU"; + AtlasLoot_Data["JewelBlueCLASSIC"] = { + Prev = "JewelBlueWRATH"; + Next = "JewelBlueTBC"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelBlue1"] = { + AtlasLoot_Data["JewelBlueTBC"] = { + { 1, "s39717", "32202", "=q4=Lustrous Empyrean Sapphire", "=ds=#sr# 375"}; + { 2, "s39715", "32200", "=q4=Solid Empyrean Sapphire", "=ds=#sr# 375"}; + { 3, "s39716", "32201", "=q4=Sparkling Empyrean Sapphire", "=ds=#sr# 375"}; + { 4, "s39718", "32203", "=q4=Stormy Empyrean Sapphire", "=ds=#sr# 375"}; + { 5, "s42590", "33135", "=q4=Falling Star", "=ds=#sr# 360"}; + { 6, "s31094", "24037", "=q3=Lustrous Star of Elune", "=ds=#sr# 350"}; + { 7, "s31092", "24033", "=q3=Solid Star of Elune", "=ds=#sr# 350"}; + { 8, "s31149", "24035", "=q3=Sparkling Star of Elune", "=ds=#sr# 350"}; + { 9, "s31095", "24039", "=q3=Stormy Star of Elune", "=ds=#sr# 350"}; + { 10, "s28957", "23121", "=q2=Lustrous Azure Moonstone", "=ds=#sr# 325"}; + { 11, "s28955", "23120", "=q2=Stormy Azure Moonstone", "=ds=#sr# 315"}; + { 12, "s28953", "23119", "=q2=Sparkling Azure Moonstone", "=ds=#sr# 305"}; + { 13, "s28950", "23118", "=q2=Solid Azure Moonstone", "=ds=#sr# 300"}; + Prev = "JewelBlueWRATH"; + Next = "JewelBlueWRATH"; + Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["JewelBlueWRATH"] = { { 1, "s66500", "40121", "=q4=Lustrous Majestic Zircon", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 2, "s66497", "40119", "=q4=Solid Majestic Zircon", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 3, "s66498", "40120", "=q4=Sparkling Majestic Zircon", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 4, "s66499", "40122", "=q4=Stormy Majestic Zircon", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 5, "s39717", "32202", "=q4=Lustrous Empyrean Sapphire", "=ds=#sr# 375"}; - { 6, "s39715", "32200", "=q4=Solid Empyrean Sapphire", "=ds=#sr# 375"}; - { 7, "s39716", "32201", "=q4=Sparkling Empyrean Sapphire", "=ds=#sr# 375"}; - { 8, "s39718", "32203", "=q4=Stormy Empyrean Sapphire", "=ds=#sr# 375"}; - { 9, "s42590", "33135", "=q4=Falling Star", "=ds=#sr# 360"}; - { 10, "s53954", "40010", "=q3=Lustrous Sky Sapphire", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 11, "s53952", "40008", "=q3=Solid Sky Sapphire", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 12, "s53953", "40009", "=q3=Sparkling Sky Sapphire", "=ds="..AL["Trainer"] }; - { 13, "s53955", "40011", "=q3=Stormy Sky Sapphire", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 14, "s31094", "24037", "=q3=Lustrous Star of Elune", "=ds=#sr# 350"}; - { 15, "s31092", "24033", "=q3=Solid Star of Elune", "=ds=#sr# 350"}; - { 16, "s31149", "24035", "=q3=Sparkling Star of Elune", "=ds=#sr# 350"}; - { 17, "s31095", "24039", "=q3=Stormy Star of Elune", "=ds=#sr# 350"}; - { 18, "s53941", "39927", "=q2=Lustrous Chalcedony", "=ds="..AL["Trainer"] }; - { 19, "s53934", "39919", "=q2=Solid Chalcedony", "=ds="..AL["Trainer"] }; - { 20, "s53940", "39920", "=q2=Sparkling Chalcedony", "=ds="..AL["Trainer"] }; - { 21, "s53943", "39932", "=q2=Stormy Chalcedony", "=ds=1250 #faction#" }; - { 22, "s28957", "23121", "=q2=Lustrous Azure Moonstone", "=ds=#sr# 325"}; - { 23, "s28955", "23120", "=q2=Stormy Azure Moonstone", "=ds=#sr# 315"}; - { 24, "s28953", "23119", "=q2=Sparkling Azure Moonstone", "=ds=#sr# 305"}; - { 25, "s28950", "23118", "=q2=Solid Azure Moonstone", "=ds=#sr# 300"}; + { 5, "s53954", "40010", "=q3=Lustrous Sky Sapphire", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 6, "s53952", "40008", "=q3=Solid Sky Sapphire", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 7, "s53953", "40009", "=q3=Sparkling Sky Sapphire", "=ds="..AL["Trainer"] }; + { 8, "s53955", "40011", "=q3=Stormy Sky Sapphire", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 9, "s53941", "39927", "=q2=Lustrous Chalcedony", "=ds="..AL["Trainer"] }; + { 10, "s53934", "39919", "=q2=Solid Chalcedony", "=ds="..AL["Trainer"] }; + { 11, "s53940", "39920", "=q2=Sparkling Chalcedony", "=ds="..AL["Trainer"] }; + { 12, "s53943", "39932", "=q2=Stormy Chalcedony", "=ds=1250 #faction#" }; + Prev = "JewelBlueTBC"; + Next = "JewelBlueTBC"; Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelYellow1"] = { + AtlasLoot_Data["JewelYellowCLASSIC"] = { + Prev = "JewelYellowWRATH"; + Next = "JewelYellowTBC"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["JewelYellowTBC"] = { + { 1, "s39719", "32204", "=q4=Brilliant Lionseye", "=ds=#sr# 375"}; + { 2, "s39722", "32207", "=q4=Gleaming Lionseye", "=ds=#sr# 375"}; + { 3, "s39725", "32210", "=q4=Great Lionseye", "=ds=#sr# 375"}; + { 4, "s39724", "32209", "=q4=Mystic Lionseye", "=ds=#sr# 375"}; + { 5, "s47056", "35761", "=q4=Quick Lionseye", "=ds=#sr# 375"}; + { 6, "s39721", "32206", "=q4=Rigid Lionseye", "=ds=#sr# 375"}; + { 7, "s39720", "32205", "=q4=Smooth Lionseye", "=ds=#sr# 375"}; + { 8, "s39723", "32208", "=q4=Thick Lionseye", "=ds=#sr# 375"}; + { 9, "s42592", "33140", "=q4=Blood of Amber", "=ds=#sr# 360"}; + { 10, "s42593", "33144", "=q4=Facet of Eternity", "=ds=#sr# 360"}; + { 11, "s42591", "33143", "=q4=Stone of Blades", "=ds=#sr# 360"}; + { 16, "s31096", "24047", "=q3=Brilliant Dawnstone", "=ds=#sr# 350"}; + { 17, "s31099", "24050", "=q3=Gleaming Dawnstone", "=ds=#sr# 350"}; + { 18, "s39452", "31861", "=q3=Great Dawnstone", "=ds=#sr# 350"}; + { 19, "s31101", "24053", "=q3=Mystic Dawnstone", "=ds=#sr# 350"}; + { 20, "s46403", "35315", "=q3=Quick Dawnstone", "=ds=#sr# "..AL["Vendor"]}; + { 21, "s31098", "24051", "=q3=Rigid Dawnstone", "=ds=#sr# 350"}; + { 22, "s31097", "24048", "=q3=Smooth Dawnstone", "=ds=#sr# 350"}; + { 23, "s31100", "24052", "=q3=Thick Dawnstone", "=ds=#sr# 350"}; + { 24, "s39451", "31860", "=q2=Great Golden Draenite", "=ds=#sr# 325"}; + { 25, "s28948", "23116", "=q2=Rigid Golden Draenite", "=ds=#sr# 325"}; + { 26, "s34069", "28290", "=q2=Smooth Golden Draenite", "=ds=#sr# 325"}; + { 27, "s28947", "23115", "=q2=Thick Golden Draenite", "=ds=#sr# 315"}; + { 28, "s28944", "23114", "=q2=Gleaming Golden Draenite", "=ds=#sr# 305"}; + { 29, "s28938", "23113", "=q2=Brilliant Golden Draenite", "=ds=#sr# 300"}; + Prev = "JewelYellowWRATH"; + Next = "JewelYellowWRATH"; + Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["JewelYellowWRATH"] = { { 1, "s66503", "40123", "=q4=Brilliant King's Amber", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 2, "s66505", "40127", "=q4=Mystic King's Amber", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 3, "s66506", "40128", "=q4=Quick King's Amber", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 4, "s66501", "40125", "=q4=Rigid King's Amber", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 5, "s66502", "40124", "=q4=Smooth King's Amber", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 6, "s66504", "40126", "=q4=Thick King's Amber", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 7, "s39719", "32204", "=q4=Brilliant Lionseye", "=ds=#sr# 375"}; - { 8, "s39722", "32207", "=q4=Gleaming Lionseye", "=ds=#sr# 375"}; - { 9, "s39725", "32210", "=q4=Great Lionseye", "=ds=#sr# 375"}; - { 10, "s39724", "32209", "=q4=Mystic Lionseye", "=ds=#sr# 375"}; - { 11, "s47056", "35761", "=q4=Quick Lionseye", "=ds=#sr# 375"}; - { 12, "s39721", "32206", "=q4=Rigid Lionseye", "=ds=#sr# 375"}; - { 13, "s39720", "32205", "=q4=Smooth Lionseye", "=ds=#sr# 375"}; - { 14, "s39723", "32208", "=q4=Thick Lionseye", "=ds=#sr# 375"}; - { 15, "s42592", "33140", "=q4=Blood of Amber", "=ds=#sr# 360"}; - { 16, "s42593", "33144", "=q4=Facet of Eternity", "=ds=#sr# 360"}; - { 17, "s42591", "33143", "=q4=Stone of Blades", "=ds=#sr# 360"}; - { 18, "s53956", "40012", "=q3=Brilliant Autumn's Glow", "=ds="..AL["Trainer"] }; - { 19, "s53960", "40016", "=q3=Mystic Autumn's Glow", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 20, "s53961", "40017", "=q3=Quick Autumn's Glow", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 21, "s53958", "40014", "=q3=Rigid Autumn's Glow", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 22, "s53957", "40013", "=q3=Smooth Autumn's Glow", "=ds="..BabbleFaction["The Sons of Hodir"]..": "..BabbleFaction["Exalted"] }; - { 23, "s53959", "40015", "=q3=Thick Autumn's Glow", "=ds="..BabbleBoss["Cyanigosa"].." ("..AL["Heroic"]..")" }; - { 24, "s31096", "24047", "=q3=Brilliant Dawnstone", "=ds=#sr# 350"}; - { 25, "s31099", "24050", "=q3=Gleaming Dawnstone", "=ds=#sr# 350"}; - { 26, "s39452", "31861", "=q3=Great Dawnstone", "=ds=#sr# 350"}; - { 27, "s31101", "24053", "=q3=Mystic Dawnstone", "=ds=#sr# 350"}; - { 28, "s46403", "35315", "=q3=Quick Dawnstone", "=ds=#sr# "..AL["Vendor"]}; - { 29, "s31098", "24051", "=q3=Rigid Dawnstone", "=ds=#sr# 350"}; - { 30, "s31097", "24048", "=q3=Smooth Dawnstone", "=ds=#sr# 350"}; - Next = "JewelYellow2"; + { 7, "s53956", "40012", "=q3=Brilliant Autumn's Glow", "=ds="..AL["Trainer"] }; + { 8, "s53960", "40016", "=q3=Mystic Autumn's Glow", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 9, "s53961", "40017", "=q3=Quick Autumn's Glow", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 10, "s53958", "40014", "=q3=Rigid Autumn's Glow", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 11, "s53957", "40013", "=q3=Smooth Autumn's Glow", "=ds="..BabbleFaction["The Sons of Hodir"]..": "..BabbleFaction["Exalted"] }; + { 12, "s53959", "40015", "=q3=Thick Autumn's Glow", "=ds="..BabbleBoss["Cyanigosa"].." ("..AL["Heroic"]..")" }; + { 16, "s53852", "39912", "=q2=Brilliant Sun Crystal", "=ds="..AL["Trainer"] }; + { 17, "s53857", "39917", "=q2=Mystic Sun Crystal", "=ds=1250 #faction#" }; + { 18, "s53856", "39918", "=q2=Quick Sun Crystal", "=ds="..AL["Trainer"] }; + { 19, "s53854", "39915", "=q2=Rigid Sun Crystal", "=ds="..AL["Trainer"] }; + { 20, "s53853", "39914", "=q2=Smooth Sun Crystal", "=ds="..AL["Trainer"] }; + { 21, "s53855", "39916", "=q2=Thick Sun Crystal", "=ds="..AL["Trainer"] }; + Prev = "JewelYellowTBC"; + Next = "JewelYellowTBC"; Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelYellow2"] = { - { 1, "s31100", "24052", "=q3=Thick Dawnstone", "=ds=#sr# 350"}; - { 2, "s53852", "39912", "=q2=Brilliant Sun Crystal", "=ds="..AL["Trainer"] }; - { 3, "s53857", "39917", "=q2=Mystic Sun Crystal", "=ds=1250 #faction#" }; - { 4, "s53856", "39918", "=q2=Quick Sun Crystal", "=ds="..AL["Trainer"] }; - { 5, "s53854", "39915", "=q2=Rigid Sun Crystal", "=ds="..AL["Trainer"] }; - { 6, "s53853", "39914", "=q2=Smooth Sun Crystal", "=ds="..AL["Trainer"] }; - { 7, "s53855", "39916", "=q2=Thick Sun Crystal", "=ds="..AL["Trainer"] }; - { 8, "s39451", "31860", "=q2=Great Golden Draenite", "=ds=#sr# 325"}; - { 9, "s28948", "23116", "=q2=Rigid Golden Draenite", "=ds=#sr# 325"}; - { 10, "s34069", "28290", "=q2=Smooth Golden Draenite", "=ds=#sr# 325"}; - { 11, "s28947", "23115", "=q2=Thick Golden Draenite", "=ds=#sr# 315"}; - { 12, "s28944", "23114", "=q2=Gleaming Golden Draenite", "=ds=#sr# 305"}; - { 13, "s28938", "23113", "=q2=Brilliant Golden Draenite", "=ds=#sr# 300"}; - Prev = "JewelYellow1"; - Back = "JEWELCRAFTINGMENU"; + AtlasLoot_Data["JewelGreenCLASSIC"] = { + Prev = "JewelGreenWRATH"; + Next = "JewelGreenTBC"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelGreen1"] = { + AtlasLoot_Data["JewelGreenTBC"] = { + { 1, "s39741", "32225", "=q4=Dazzling Seaspray Emerald", "=ds=#sr# 375"}; + { 2, "s39739", "32223", "=q4=Enduring Seaspray Emerald", "=ds=#sr# 375"}; + { 3, "s47053", "35759", "=q4=Forceful Seaspray Emerald", "=ds=#sr# 375"}; + { 4, "s39742", "32226", "=q4=Jagged Seaspray Emerald", "=ds=#sr# 375"}; + { 5, "s39740", "32224", "=q4=Radiant Seaspray Emerald", "=ds=#sr# 375"}; + { 6, "s47054", "35758", "=q4=Steady Seaspray Emerald", "=ds=#sr# 375"}; + { 7, "s31112", "24065", "=q3=Dazzling Talasite", "=ds=#sr# 350"}; + { 8, "s31110", "24062", "=q3=Enduring Talasite", "=ds=#sr# 350"}; + { 9, "s46405", "35318", "=q3=Forceful Talasite", "=ds=#sr# "..AL["Vendor"]}; + { 10, "s31113", "24067", "=q3=Jagged Talasite", "=ds=#sr# 350"}; + { 11, "s31111", "24066", "=q3=Radiant Talasite", "=ds=#sr# 350"}; + { 12, "s43493", "33782", "=q3=Steady Talasite", "=ds=#sr# 350"}; + { 16, "s28924", "23106", "=q2=Dazzling Deep Peridot", "=ds=#sr# 325"}; + { 17, "s28918", "23105", "=q2=Enduring Deep Peridot", "=ds=#sr# 315"}; + { 18, "s28917", "23104", "=q2=Jagged Deep Peridot", "=ds=#sr# 305"}; + { 19, "s28916", "23103", "=q2=Radiant Deep Peridot", "=ds=#sr# 300"}; + Prev = "JewelGreen2WRATH"; + Next = "JewelGreenWRATH"; + Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["JewelGreenWRATH"] = { { 1, "s66430", "40175", "=q4=Dazzling Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 2, "s66338", "40167", "=q4=Enduring Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 3, "s66442", "40179", "=q4=Energized Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; @@ -2889,76 +3138,90 @@ Type = "Crafting"; { 17, "s66432", "40164", "=q4=Timeless Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 18, "s66445", "40173", "=q4=Turbid Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 19, "s66429", "40166", "=q4=Vivid Eye of Zul", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 20, "s39741", "32225", "=q4=Dazzling Seaspray Emerald", "=ds=#sr# 375"}; - { 21, "s39739", "32223", "=q4=Enduring Seaspray Emerald", "=ds=#sr# 375"}; - { 22, "s47053", "35759", "=q4=Forceful Seaspray Emerald", "=ds=#sr# 375"}; - { 23, "s39742", "32226", "=q4=Jagged Seaspray Emerald", "=ds=#sr# 375"}; - { 24, "s39740", "32224", "=q4=Radiant Seaspray Emerald", "=ds=#sr# 375"}; - { 25, "s47054", "35758", "=q4=Steady Seaspray Emerald", "=ds=#sr# 375"}; - { 26, "s54007", "40094", "=q3=Dazzling Forest Emerald", "=ds="..AL["Trainer"] }; - { 27, "s53998", "40089", "=q3=Enduring Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 28, "s54011", "40105", "=q3=Energized Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 29, "s54001", "40091", "=q3=Forceful Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 30, "s54006", "40104", "=q3=Intricate Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - Next = "JewelGreen2"; + { 20, "s54007", "40094", "=q3=Dazzling Forest Emerald", "=ds="..AL["Trainer"] }; + { 21, "s53998", "40089", "=q3=Enduring Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 22, "s54011", "40105", "=q3=Energized Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 23, "s54001", "40091", "=q3=Forceful Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 24, "s54006", "40104", "=q3=Intricate Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 25, "s53996", "40086", "=q3=Jagged Forest Emerald", "=ds="..BabbleFaction["Frenzyheart Tribe"]..": "..BabbleFaction["Revered"] }; + { 26, "s54009", "40100", "=q3=Lambent Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 27, "s54003", "40095", "=q3=Misty Forest Emerald", "=ds="..AL["Drop"]..""}; + { 28, "s54010", "40103", "=q3=Opaque Forest Emerald", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 29, "s54012", "40098", "=q3=Radiant Forest Emerald", "=ds="..AL["Drop"].." - "..BabbleZone["The Storm Peaks"] }; + { 30, "s54002", "40092", "=q3=Seer's Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + Prev = "JewelGreenTBC"; + Next = "JewelGreen2WRATH"; Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; + }; + AtlasLoot_Data["JewelGreen2WRATH"] = { + { 1, "s54014", "40106", "=q3=Shattered Forest Emerald", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 2, "s54004", "40099", "=q3=Shining Forest Emerald", "=ds="..AL["Drop"]..""}; + { 3, "s54000", "40090", "=q3=Steady Forest Emerald", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 4, "s54008", "40096", "=q3=Sundered Forest Emerald", "=ds="..BabbleFaction["The Oracles"]..": "..BabbleFaction["Revered"] }; + { 5, "s54013", "40101", "=q3=Tense Forest Emerald","=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 6, "s53995", "40085", "=q3=Timeless Forest Emerald", "=ds="..BabbleBoss["The Prophet Tharon'ja"].." ("..AL["Heroic"]..")" }; + { 7, "s54005", "40102", "=q3=Turbid Forest Emerald", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 8, "s53997", "40088", "=q3=Vivid Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 9, "s53926", "39984", "=q2=Dazzling Dark Jade", "=ds="..AL["Trainer"] }; + { 10, "s53918", "39976", "=q2=Enduring Dark Jade", "=ds="..AL["Trainer"] }; + { 11, "s53930", "39989", "=q2=Energized Dark Jade", "=ds="..AL["Trainer"] }; + { 12, "s53920", "39978", "=q2=Forceful Dark Jade", "=ds="..AL["Trainer"] }; + { 13, "s53925", "39983", "=q2=Intricate Dark Jade", "=ds="..AL["Trainer"] }; + { 14, "s53916", "39974", "=q2=Jagged Dark Jade", "=ds="..AL["Trainer"] }; + { 15, "s53928", "39986", "=q2=Lambent Dark Jade", "=ds="..AL["Trainer"] }; + { 16, "s53922", "39980", "=q2=Misty Dark Jade", "=ds="..AL["Trainer"] }; + { 17, "s53929", "39988", "=q2=Opaque Dark Jade", "=ds=1250 #faction#" }; + { 18, "s53931", "39990", "=q2=Radiant Dark Jade", "=ds="..AL["Trainer"] }; + { 19, "s53921", "39979", "=q2=Seer's Dark Jade", "=ds="..BabbleFaction["The Kalu'ak"]..": "..BabbleFaction["Friendly"] }; + { 20, "s53933", "39992", "=q2=Shattered Dark Jade", "=ds=1250 #faction#" }; + { 21, "s53923", "39981", "=q2=Shining Dark Jade", "=ds="..AL["Trainer"] }; + { 22, "s53919", "39977", "=q2=Steady Dark Jade", "=ds=1250 #faction#" }; + { 23, "s53927", "39985", "=q2=Sundered Dark Jade", "=ds="..AL["Trainer"] }; + { 24, "s53932", "39991", "=q2=Tense Dark Jade", "=ds=1250 #faction#" }; + { 25, "s53894", "39968", "=q2=Timeless Dark Jade", "=ds="..AL["Trainer"] }; + { 26, "s53924", "39982", "=q2=Turbid Dark Jade", "=ds=1250 #faction#" }; + { 27, "s53917", "39975", "=q2=Vivid Dark Jade", "=ds="..AL["Trainer"] }; + Prev = "JewelGreenWRATH"; + Next = "JewelGreenTBC"; + Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["JewelOrangeCLASSIC"] = { + Prev = "JewelOrangeWRATH"; + Next = "JewelOrangeTBC"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelGreen2"] = { - { 1, "s53996", "40086", "=q3=Jagged Forest Emerald", "=ds="..BabbleFaction["Frenzyheart Tribe"]..": "..BabbleFaction["Revered"] }; - { 2, "s54009", "40100", "=q3=Lambent Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 3, "s54003", "40095", "=q3=Misty Forest Emerald", "=ds="..AL["Drop"]..""}; - { 4, "s54010", "40103", "=q3=Opaque Forest Emerald", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 5, "s54012", "40098", "=q3=Radiant Forest Emerald", "=ds="..AL["Drop"].." - "..BabbleZone["The Storm Peaks"] }; - { 6, "s54002", "40092", "=q3=Seer's Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 7, "s54014", "40106", "=q3=Shattered Forest Emerald", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 8, "s54004", "40099", "=q3=Shining Forest Emerald", "=ds="..AL["Drop"]..""}; - { 9, "s54000", "40090", "=q3=Steady Forest Emerald", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 10, "s54008", "40096", "=q3=Sundered Forest Emerald", "=ds="..BabbleFaction["The Oracles"]..": "..BabbleFaction["Revered"] }; - { 11, "s54013", "40101", "=q3=Tense Forest Emerald","=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 12, "s53995", "40085", "=q3=Timeless Forest Emerald", "=ds="..BabbleBoss["The Prophet Tharon'ja"].." ("..AL["Heroic"]..")" }; - { 13, "s54005", "40102", "=q3=Turbid Forest Emerald", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 14, "s53997", "40088", "=q3=Vivid Forest Emerald", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 15, "s31112", "24065", "=q3=Dazzling Talasite", "=ds=#sr# 350"}; - { 16, "s31110", "24062", "=q3=Enduring Talasite", "=ds=#sr# 350"}; - { 17, "s46405", "35318", "=q3=Forceful Talasite", "=ds=#sr# "..AL["Vendor"]}; - { 18, "s31113", "24067", "=q3=Jagged Talasite", "=ds=#sr# 350"}; - { 19, "s31111", "24066", "=q3=Radiant Talasite", "=ds=#sr# 350"}; - { 20, "s43493", "33782", "=q3=Steady Talasite", "=ds=#sr# 350"}; - { 21, "s53926", "39984", "=q2=Dazzling Dark Jade", "=ds="..AL["Trainer"] }; - { 22, "s53918", "39976", "=q2=Enduring Dark Jade", "=ds="..AL["Trainer"] }; - { 23, "s53930", "39989", "=q2=Energized Dark Jade", "=ds="..AL["Trainer"] }; - { 24, "s53920", "39978", "=q2=Forceful Dark Jade", "=ds="..AL["Trainer"] }; - { 25, "s53925", "39983", "=q2=Intricate Dark Jade", "=ds="..AL["Trainer"] }; - { 26, "s53916", "39974", "=q2=Jagged Dark Jade", "=ds="..AL["Trainer"] }; - { 27, "s53928", "39986", "=q2=Lambent Dark Jade", "=ds="..AL["Trainer"] }; - { 28, "s53922", "39980", "=q2=Misty Dark Jade", "=ds="..AL["Trainer"] }; - { 29, "s53929", "39988", "=q2=Opaque Dark Jade", "=ds=1250 #faction#" }; - { 30, "s53931", "39990", "=q2=Radiant Dark Jade", "=ds="..AL["Trainer"] }; - Prev = "JewelGreen1"; - Next = "JewelGreen3"; + AtlasLoot_Data["JewelOrangeTBC"] = { + { 1, "s39736", "32220", "=q4=Glinting Pyrestone", "=ds=#sr# 375"}; + { 2, "s39733", "32217", "=q4=Inscribed Pyrestone", "=ds=#sr# 375"}; + { 3, "s39735", "32219", "=q4=Luminous Pyrestone", "=ds=#sr# 375"}; + { 4, "s39734", "32218", "=q4=Potent Pyrestone", "=ds=#sr# 375"}; + { 5, "s47055", "35760", "=q4=Reckless Pyrestone", "=ds=#sr# 375"}; + { 6, "s39737", "32221", "=q4=Veiled Pyrestone", "=ds=#sr# 375"}; + { 7, "s39738", "32222", "=q4=Wicked Pyrestone", "=ds=#sr# 375"}; + { 8, "s31109", "24061", "=q3=Glinting Noble Topaz", "=ds=#sr# 350"}; + { 9, "s31106", "24058", "=q3=Inscribed Noble Topaz", "=ds=#sr# 350"}; + { 10, "s31108", "24060", "=q3=Luminous Noble Topaz", "=ds=#sr# 350"}; + { 11, "s31107", "24059", "=q3=Potent Noble Topaz", "=ds=#sr# 350"}; + { 12, "s46404", "35316", "=q3=Reckless Noble Topaz", "=ds=#sr# "..AL["Vendor"]}; + { 13, "s39470", "31867", "=q3=Veiled Noble Topaz", "=ds=#sr# 350"}; + { 14, "s39471", "31868", "=q3=Wicked Noble Topaz", "=ds=#sr# 350"}; + { 21, "s28915", "23101", "=q2=Potent Flame Spessarite", "=ds=#sr# 325"}; + { 16, "s39466", "31866", "=q2=Veiled Flame Spessarite", "=ds=#sr# 325"}; + { 17, "s39467", "31869", "=q2=Wicked Flame Spessarite", "=ds=#sr# 325"}; + { 18, "s28914", "23100", "=q2=Glinting Flame Spessarite", "=ds=#sr# 315"}; + { 19, "s28912", "23099", "=q2=Luminous Flame Spessarite", "=ds=#sr# 305"}; + { 20, "s28910", "23098", "=q2=Inscribed Flame Spessarite", "=ds=#sr# 300"}; + Prev = "JewelOrange3WRATH"; + Next = "JewelOrangeWRATH"; Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelGreen3"] = { - { 1, "s53921", "39979", "=q2=Seer's Dark Jade", "=ds="..BabbleFaction["The Kalu'ak"]..": "..BabbleFaction["Friendly"] }; - { 2, "s53933", "39992", "=q2=Shattered Dark Jade", "=ds=1250 #faction#" }; - { 3, "s53923", "39981", "=q2=Shining Dark Jade", "=ds="..AL["Trainer"] }; - { 4, "s53919", "39977", "=q2=Steady Dark Jade", "=ds=1250 #faction#" }; - { 5, "s53927", "39985", "=q2=Sundered Dark Jade", "=ds="..AL["Trainer"] }; - { 6, "s53932", "39991", "=q2=Tense Dark Jade", "=ds=1250 #faction#" }; - { 7, "s53894", "39968", "=q2=Timeless Dark Jade", "=ds="..AL["Trainer"] }; - { 8, "s53924", "39982", "=q2=Turbid Dark Jade", "=ds=1250 #faction#" }; - { 9, "s53917", "39975", "=q2=Vivid Dark Jade", "=ds="..AL["Trainer"] }; - { 10, "s28924", "23106", "=q2=Dazzling Deep Peridot", "=ds=#sr# 325"}; - { 11, "s28918", "23105", "=q2=Enduring Deep Peridot", "=ds=#sr# 315"}; - { 12, "s28917", "23104", "=q2=Jagged Deep Peridot", "=ds=#sr# 305"}; - { 13, "s28916", "23103", "=q2=Radiant Deep Peridot", "=ds=#sr# 300"}; - Prev = "JewelGreen2"; - Back = "JEWELCRAFTINGMENU"; - }; - - AtlasLoot_Data["JewelOrange1"] = { + AtlasLoot_Data["JewelOrangeWRATH"] = { { 1, "s66576", "40162", "=q4=Accurate Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 2, "s66579", "40144", "=q4=Champion's Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 3, "s66568", "40147", "=q4=Deadly Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; @@ -2981,86 +3244,105 @@ Type = "Crafting"; { 20, "s66587", "40159", "=q4=Stark Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 21, "s66570", "40153", "=q4=Veiled Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 22, "s66577", "40156", "=q4=Wicked Ametrine", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 23, "s39736", "32220", "=q4=Glinting Pyrestone", "=ds=#sr# 375"}; - { 24, "s39733", "32217", "=q4=Inscribed Pyrestone", "=ds=#sr# 375"}; - { 25, "s39735", "32219", "=q4=Luminous Pyrestone", "=ds=#sr# 375"}; - { 26, "s39734", "32218", "=q4=Potent Pyrestone", "=ds=#sr# 375"}; - { 27, "s47055", "35760", "=q4=Reckless Pyrestone", "=ds=#sr# 375"}; - { 28, "s39737", "32221", "=q4=Veiled Pyrestone", "=ds=#sr# 375"}; - { 29, "s39738", "32222", "=q4=Wicked Pyrestone", "=ds=#sr# 375"}; - { 30, "s53994", "40058", "=q3=Accurate Monarch Topaz", "=ds="..AL["Drop"] }; - Next = "JewelOrange2"; + Prev = "JewelOrangeTBC"; + Next = "JewelOrange2WRATH"; Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelOrange2"] = { - { 1, "s53977", "40039", "=q3=Champion's Monarch Topaz", "=ds="..AL["Drop"]..""}; - { 2, "s53979", "40043", "=q3=Deadly Monarch Topaz", "=ds="..BabbleBoss["Keristrasza"].." ("..AL["Heroic"]..")" }; - { 3, "s53982", "40046", "=q3=Deft Monarch Topaz", "=ds="..BabbleBoss["Sjonnir The Ironshaper"].." ("..AL["Heroic"]..")" }; - { 4, "s53986", "40050", "=q3=Durable Monarch Topaz", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 5, "s53990", "40054", "=q3=Empowered Monarch Topaz", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 6, "s53976", "40038", "=q3=Etched Monarch Topaz", "=ds="..AL["Drop"]..""}; - { 7, "s54019", "40041", "=q3=Fierce Monarch Topaz", "=ds="..BabbleBoss["Ingvar the Plunderer"].." ("..AL["Heroic"]..")" }; - { 8, "s53993", "40057", "=q3=Glimmering Monarch Topaz", "=ds="..BabbleFaction["The Wyrmrest Accord"]..": "..BabbleFaction["Exalted"] }; - { 9, "s53980", "40044", "=q3=Glinting Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 10, "s53975", "40037", "=q3=Inscribed Monarch Topaz", "=ds="..AL["Drop"]..""}; - { 11, "s53981", "40045", "=q3=Lucent Monarch Topaz", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 12, "s53983", "40047", "=q3=Luminous Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 13, "s53984", "40048", "=q3=Potent Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 14, "s53989", "40053", "=q3=Pristine Monarch Topaz", "=ds="..AL["Trainer"] }; - { 15, "s53987", "40051", "=q3=Reckless Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 16, "s54023", "40059", "=q3=Resolute Monarch Topaz", "=ds="..AL["Drop"]..""}; - { 17, "s53978", "40040", "=q3=Resplendent Monarch Topaz", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 18, "s53992", "40056", "=q3=Stalwart Monarch Topaz", "=ds="..AL["Drop"]..""}; - { 19, "s53991", "40055", "=q3=Stark Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 20, "s53985", "40049", "=q3=Veiled Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 21, "s53988", "40052", "=q3=Wicked Monarch Topaz", "=ds="..BabbleFaction["Knights of the Ebon Blade"]..": "..BabbleFaction["Revered"] }; - { 22, "s31109", "24061", "=q3=Glinting Noble Topaz", "=ds=#sr# 350"}; - { 23, "s31106", "24058", "=q3=Inscribed Noble Topaz", "=ds=#sr# 350"}; - { 24, "s31108", "24060", "=q3=Luminous Noble Topaz", "=ds=#sr# 350"}; - { 25, "s31107", "24059", "=q3=Potent Noble Topaz", "=ds=#sr# 350"}; - { 26, "s46404", "35316", "=q3=Reckless Noble Topaz", "=ds=#sr# "..AL["Vendor"]}; - { 27, "s39470", "31867", "=q3=Veiled Noble Topaz", "=ds=#sr# 350"}; - { 28, "s39471", "31868", "=q3=Wicked Noble Topaz", "=ds=#sr# 350"}; - { 29, "s53891", "39965", "=q2=Glimmering Huge Citrine", "=ds="..AL["Trainer"] }; - { 30, "s53892", "39966", "=q2=Accurate Huge Citrine", "=ds="..AL["Trainer"] }; - Prev = "JewelOrange1"; - Next = "JewelOrange3"; + AtlasLoot_Data["JewelOrange2WRATH"] = { + { 1, "s53994", "40058", "=q3=Accurate Monarch Topaz", "=ds="..AL["Drop"] }; + { 2, "s53977", "40039", "=q3=Champion's Monarch Topaz", "=ds="..AL["Drop"]..""}; + { 3, "s53979", "40043", "=q3=Deadly Monarch Topaz", "=ds="..BabbleBoss["Keristrasza"].." ("..AL["Heroic"]..")" }; + { 4, "s53982", "40046", "=q3=Deft Monarch Topaz", "=ds="..BabbleBoss["Sjonnir The Ironshaper"].." ("..AL["Heroic"]..")" }; + { 5, "s53986", "40050", "=q3=Durable Monarch Topaz", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 6, "s53990", "40054", "=q3=Empowered Monarch Topaz", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 7, "s53976", "40038", "=q3=Etched Monarch Topaz", "=ds="..AL["Drop"]..""}; + { 8, "s54019", "40041", "=q3=Fierce Monarch Topaz", "=ds="..BabbleBoss["Ingvar the Plunderer"].." ("..AL["Heroic"]..")" }; + { 9, "s53993", "40057", "=q3=Glimmering Monarch Topaz", "=ds="..BabbleFaction["The Wyrmrest Accord"]..": "..BabbleFaction["Exalted"] }; + { 10, "s53980", "40044", "=q3=Glinting Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 11, "s53975", "40037", "=q3=Inscribed Monarch Topaz", "=ds="..AL["Drop"]..""}; + { 12, "s53981", "40045", "=q3=Lucent Monarch Topaz", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 13, "s53983", "40047", "=q3=Luminous Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 14, "s53984", "40048", "=q3=Potent Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 15, "s53989", "40053", "=q3=Pristine Monarch Topaz", "=ds="..AL["Trainer"] }; + { 16, "s53987", "40051", "=q3=Reckless Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 17, "s54023", "40059", "=q3=Resolute Monarch Topaz", "=ds="..AL["Drop"]..""}; + { 18, "s53978", "40040", "=q3=Resplendent Monarch Topaz", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 19, "s53992", "40056", "=q3=Stalwart Monarch Topaz", "=ds="..AL["Drop"]..""}; + { 20, "s53991", "40055", "=q3=Stark Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 21, "s53985", "40049", "=q3=Veiled Monarch Topaz", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 22, "s53988", "40052", "=q3=Wicked Monarch Topaz", "=ds="..BabbleFaction["Knights of the Ebon Blade"]..": "..BabbleFaction["Revered"] }; + Prev = "JewelOrangeWRATH"; + Next = "JewelOrange3WRATH"; Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelOrange3"] = { - { 1, "s53874", "39949", "=q2=Champion's Huge Citrine", "=ds="..AL["Trainer"] }; - { 2, "s53877", "39952", "=q2=Deadly Huge Citrine", "=ds="..BabbleFaction["Knights of the Ebon Blade"]..": "..BabbleFaction["Friendly"] }; - { 3, "s53880", "39955", "=q2=Deft Huge Citrine", "=ds="..AL["Trainer"] }; - { 4, "s53884", "39958", "=q2=Durable Huge Citrine", "=ds=1250 #faction#" }; - { 5, "s53888", "39962", "=q2=Empowered Huge Citrine", "=ds=1250 #faction#" }; - { 6, "s53873", "39948", "=q2=Etched Huge Citrine", "=ds="..AL["Trainer"] }; - { 7, "s53876", "39951", "=q2=Fierce Huge Citrine", "=ds="..AL["Trainer"] }; - { 8, "s53878", "39953", "=q2=Glinting Huge Citrine", "=ds="..AL["Trainer"] }; - { 9, "s53872", "39947", "=q2=Inscribed Huge Citrine", "=ds="..AL["Trainer"] }; - { 10, "s53879", "39954", "=q2=Lucent Huge Citrine", "=ds=1250 #faction#" }; - { 11, "s53881", "39946", "=q2=Luminous Huge Citrine", "=ds="..AL["Trainer"] }; - { 12, "s53882", "39956", "=q2=Potent Huge Citrine", "=ds="..AL["Trainer"] }; - { 13, "s53887", "39961", "=q2=Pristine Huge Citrine", "=ds="..AL["Trainer"] }; - { 14, "s53885", "39959", "=q2=Reckless Huge Citrine", "=ds="..BabbleFaction["Frenzyheart Tribe"]..": "..BabbleFaction["Friendly"] }; - { 15, "s53893", "39967", "=q2=Resolute Huge Citrine", "=ds="..AL["Trainer"] }; - { 16, "s53875", "39950", "=q2=Resplendent Huge Citrine", "=ds=1250 #faction#" }; - { 17, "s53890", "39964", "=q2=Stalwart Huge Citrine", "=ds="..AL["Trainer"] }; - { 18, "s53889", "39963", "=q2=Stark Huge Citrine", "=ds="..AL["Trainer"] }; - { 19, "s53883", "39957", "=q2=Veiled Huge Citrine", "=ds="..AL["Trainer"] }; - { 20, "s53886", "39960", "=q2=Wicked Huge Citrine", "=ds="..AL["Trainer"] }; - { 21, "s28915", "23101", "=q2=Potent Flame Spessarite", "=ds=#sr# 325"}; - { 22, "s39466", "31866", "=q2=Veiled Flame Spessarite", "=ds=#sr# 325"}; - { 23, "s39467", "31869", "=q2=Wicked Flame Spessarite", "=ds=#sr# 325"}; - { 24, "s28914", "23100", "=q2=Glinting Flame Spessarite", "=ds=#sr# 315"}; - { 25, "s28912", "23099", "=q2=Luminous Flame Spessarite", "=ds=#sr# 305"}; - { 26, "s28910", "23098", "=q2=Inscribed Flame Spessarite", "=ds=#sr# 300"}; - Prev = "JewelOrange2"; + AtlasLoot_Data["JewelOrange3WRATH"] = { + { 1, "s53891", "39965", "=q2=Glimmering Huge Citrine", "=ds="..AL["Trainer"] }; + { 2, "s53892", "39966", "=q2=Accurate Huge Citrine", "=ds="..AL["Trainer"] }; + { 3, "s53874", "39949", "=q2=Champion's Huge Citrine", "=ds="..AL["Trainer"] }; + { 4, "s53877", "39952", "=q2=Deadly Huge Citrine", "=ds="..BabbleFaction["Knights of the Ebon Blade"]..": "..BabbleFaction["Friendly"] }; + { 5, "s53880", "39955", "=q2=Deft Huge Citrine", "=ds="..AL["Trainer"] }; + { 6, "s53884", "39958", "=q2=Durable Huge Citrine", "=ds=1250 #faction#" }; + { 7, "s53888", "39962", "=q2=Empowered Huge Citrine", "=ds=1250 #faction#" }; + { 8, "s53873", "39948", "=q2=Etched Huge Citrine", "=ds="..AL["Trainer"] }; + { 9, "s53876", "39951", "=q2=Fierce Huge Citrine", "=ds="..AL["Trainer"] }; + { 10, "s53878", "39953", "=q2=Glinting Huge Citrine", "=ds="..AL["Trainer"] }; + { 11, "s53872", "39947", "=q2=Inscribed Huge Citrine", "=ds="..AL["Trainer"] }; + { 12, "s53879", "39954", "=q2=Lucent Huge Citrine", "=ds=1250 #faction#" }; + { 13, "s53881", "39946", "=q2=Luminous Huge Citrine", "=ds="..AL["Trainer"] }; + { 14, "s53882", "39956", "=q2=Potent Huge Citrine", "=ds="..AL["Trainer"] }; + { 15, "s53887", "39961", "=q2=Pristine Huge Citrine", "=ds="..AL["Trainer"] }; + { 16, "s53885", "39959", "=q2=Reckless Huge Citrine", "=ds="..BabbleFaction["Frenzyheart Tribe"]..": "..BabbleFaction["Friendly"] }; + { 17, "s53893", "39967", "=q2=Resolute Huge Citrine", "=ds="..AL["Trainer"] }; + { 18, "s53875", "39950", "=q2=Resplendent Huge Citrine", "=ds=1250 #faction#" }; + { 19, "s53890", "39964", "=q2=Stalwart Huge Citrine", "=ds="..AL["Trainer"] }; + { 20, "s53889", "39963", "=q2=Stark Huge Citrine", "=ds="..AL["Trainer"] }; + { 21, "s53883", "39957", "=q2=Veiled Huge Citrine", "=ds="..AL["Trainer"] }; + { 22, "s53886", "39960", "=q2=Wicked Huge Citrine", "=ds="..AL["Trainer"] }; + Prev = "JewelOrange2WRATH"; + Next = "JewelOrangeTBC"; Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["JewelPurpleCLASSIC"] = { + Prev = "JewelPurpleWRATH"; + Next = "JewelPurpleTBC"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelPurple1"] = { + AtlasLoot_Data["JewelPurpleTBC"] = { + { 1, "s39729", "32213", "=q4=Balanced Shadowsong Amethyst", "=ds=#sr# 375"}; + { 2, "s39731", "32215", "=q4=Glowing Shadowsong Amethyst", "=ds=#sr# 375"}; + { 3, "s39730", "32214", "=q4=Infused Shadowsong Amethyst", "=ds=#sr# 375"}; + { 4, "s48789", "37503", "=q4=Purified Shadowsong Amethyst", "=ds="..AL["Vendor"]..""}; + { 5, "s39732", "32216", "=q4=Royal Shadowsong Amethyst", "=ds=#sr# 375"}; + { 6, "s39728", "32212", "=q4=Shifting Shadowsong Amethyst", "=ds=#sr# 375"}; + { 7, "s39727", "32211", "=q4=Sovereign Shadowsong Amethyst", "=ds=#sr# 375"}; + { 8, "s39463", "31863", "=q3=Balanced Nightseye", "=ds=#sr# 350"}; + { 9, "s31104", "24056", "=q3=Glowing Nightseye", "=ds=#sr# 350"}; + { 10, "s39462", "31865", "=q3=Infused Nightseye", "=ds=#sr# 350"}; + { 11, "s46803", "35707", "=q3=Regal Nightseye", "=ds=#sr# 350"}; + { 12, "s31105", "24057", "=q3=Royal Nightseye", "=ds=#sr# 350"}; + { 13, "s31103", "24055", "=q3=Shifting Nightseye", "=ds=#sr# 350"}; + { 14, "s31102", "24054", "=q3=Sovereign Nightseye", "=ds=#sr# 350"}; + { 15, "s41429", "32836", "=q3=Purified Shadow Pearl", "=ds=#sr# 350"}; + { 16, "s39455", "31862", "=q2=Balanced Shadow Draenite", "=ds=#sr# 325"}; + { 17, "s39458", "31864", "=q2=Infused Shadow Draenite", "=ds=#sr# 325"}; + { 18, "s28936", "23111", "=q2=Sovereign Shadow Draenite", "=ds=#sr# 325"}; + { 19, "s28933", "23110", "=q2=Shifting Shadow Draenite", "=ds=#sr# 315"}; + { 20, "s28927", "23109", "=q2=Royal Shadow Draenite", "=ds=#sr# 305"}; + { 21, "s28925", "23108", "=q2=Glowing Shadow Draenite", "=ds=#sr# 300"}; + Prev = "JewelPurple2WRATH"; + Next = "JewelPurpleWRATH"; + Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["JewelPurpleWRATH"] = { { 1, "s66553", "40136", "=q4=Balanced Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 2, "s66560", "40139", "=q4=Defender's Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 3, "s66555", "40132", "=q4=Glowing Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; @@ -3074,112 +3356,98 @@ Type = "Crafting"; { 11, "s66557", "40130", "=q4=Shifting Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 12, "s66554", "40129", "=q4=Sovereign Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; { 13, "s66565", "40131", "=q4=Tenuous Dreadstone", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 14, "s39729", "32213", "=q4=Balanced Shadowsong Amethyst", "=ds=#sr# 375"}; - { 15, "s39731", "32215", "=q4=Glowing Shadowsong Amethyst", "=ds=#sr# 375"}; - { 16, "s39730", "32214", "=q4=Infused Shadowsong Amethyst", "=ds=#sr# 375"}; - { 17, "s48789", "37503", "=q4=Purified Shadowsong Amethyst", "=ds="..AL["Vendor"]..""}; - { 18, "s39732", "32216", "=q4=Royal Shadowsong Amethyst", "=ds=#sr# 375"}; - { 19, "s39728", "32212", "=q4=Shifting Shadowsong Amethyst", "=ds=#sr# 375"}; - { 20, "s39727", "32211", "=q4=Sovereign Shadowsong Amethyst", "=ds=#sr# 375"}; - { 21, "s53969", "40029", "=q3=Balanced Twilight Opal", "=ds="..AL["Trainer"] }; - { 22, "s53972", "40032", "=q3=Defender's Twilight Opal", "=ds="..AL["Drop"].." - "..BabbleZone["The Storm Peaks"] }; - { 23, "s53965", "40025", "=q3=Glowing Twilight Opal", "=ds="..BabbleFaction["Knights of the Ebon Blade"]..": "..BabbleFaction["Exalted"] }; - { 24, "s53974", "40034", "=q3=Guardian's Twilight Opal", "=ds="..BabbleFaction["Argent Crusade"]..": "..BabbleFaction["Revered"] }; - { 25, "s53970", "40030", "=q3=Infused Twilight Opal", "=ds="..BabbleBoss["Anub'arak"].." ("..AL["Heroic"]..")" }; - { 26, "s53968", "40028", "=q3=Mysterious Twilight Opal", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 27, "s53973", "40033", "=q3=Puissant Twilight Opal", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 28, "s53966", "40026", "=q3=Purified Twilight Opal", "=ds="..AL["Drop"]..""}; - { 29, "s53971", "40031", "=q3=Regal Twilight Opal", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 30, "s53967", "40027", "=q3=Royal Twilight Opal", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - Next = "JewelPurple2"; + { 27, "s53969", "40029", "=q3=Balanced Twilight Opal", "=ds="..AL["Trainer"] }; + { 28, "s53972", "40032", "=q3=Defender's Twilight Opal", "=ds="..AL["Drop"].." - "..BabbleZone["The Storm Peaks"] }; + { 16, "s53965", "40025", "=q3=Glowing Twilight Opal", "=ds="..BabbleFaction["Knights of the Ebon Blade"]..": "..BabbleFaction["Exalted"] }; + { 17, "s53974", "40034", "=q3=Guardian's Twilight Opal", "=ds="..BabbleFaction["Argent Crusade"]..": "..BabbleFaction["Revered"] }; + { 18, "s53970", "40030", "=q3=Infused Twilight Opal", "=ds="..BabbleBoss["Anub'arak"].." ("..AL["Heroic"]..")" }; + { 19, "s53968", "40028", "=q3=Mysterious Twilight Opal", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 20, "s53973", "40033", "=q3=Puissant Twilight Opal", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 21, "s53966", "40026", "=q3=Purified Twilight Opal", "=ds="..AL["Drop"]..""}; + { 22, "s53971", "40031", "=q3=Regal Twilight Opal", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 23, "s53967", "40027", "=q3=Royal Twilight Opal", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 24, "s53963", "40023", "=q3=Shifting Twilight Opal", "=ds="..AL["Drop"]}; + { 25, "s53962", "40022", "=q3=Sovereign Twilight Opal", "=ds="..AL["Drop"]}; + { 26, "s53964", "40024", "=q3=Tenuous Twilight Opal", "=ds="..AL["Drop"]..""}; + Prev = "JewelPurpleTBC"; + Next = "JewelPurple2WRATH"; Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelPurple2"] = { - { 1, "s53963", "40023", "=q3=Shifting Twilight Opal", "=ds="..AL["Drop"]}; - { 2, "s53962", "40022", "=q3=Sovereign Twilight Opal", "=ds="..AL["Drop"]}; - { 3, "s53964", "40024", "=q3=Tenuous Twilight Opal", "=ds="..AL["Drop"]..""}; - { 4, "s39463", "31863", "=q3=Balanced Nightseye", "=ds=#sr# 350"}; - { 5, "s31104", "24056", "=q3=Glowing Nightseye", "=ds=#sr# 350"}; - { 6, "s39462", "31865", "=q3=Infused Nightseye", "=ds=#sr# 350"}; - { 7, "s46803", "35707", "=q3=Regal Nightseye", "=ds=#sr# 350"}; - { 8, "s31105", "24057", "=q3=Royal Nightseye", "=ds=#sr# 350"}; - { 9, "s31103", "24055", "=q3=Shifting Nightseye", "=ds=#sr# 350"}; - { 10, "s31102", "24054", "=q3=Sovereign Nightseye", "=ds=#sr# 350"}; - { 11, "s41429", "32836", "=q3=Purified Shadow Pearl", "=ds=#sr# 350"}; - { 12, "s53868", "39938", "=q2=Regal Shadow Crystal", "=ds="..AL["Trainer"] }; - { 13, "s53866", "39937", "=q2=Balanced Shadow Crystal", "=ds="..AL["Trainer"] }; - { 14, "s53869", "39939", "=q2=Defender's Shadow Crystal", "=ds="..BabbleFaction["The Kalu'ak"]..": "..BabbleFaction["Honored"] }; - { 15, "s53862", "39936", "=q2=Glowing Shadow Crystal", "=ds="..AL["Trainer"] }; - { 16, "s53871", "39940", "=q2=Guardian's Shadow Crystal", "=ds="..AL["Trainer"] }; - { 17, "s53867", "39944", "=q2=Infused Shadow Crystal", "=ds="..AL["Trainer"] }; - { 18, "s53865", "39945", "=q2=Mysterious Shadow Crystal", "=ds=1250 #faction#" }; - { 19, "s53870", "39933", "=q2=Puissant Shadow Crystal", "=ds="..AL["Trainer"] }; - { 20, "s53863", "39941", "=q2=Purified Shadow Crystal", "=ds="..AL["Trainer"] }; - { 21, "s53864", "39943", "=q2=Royal Shadow Crystal", "=ds="..AL["Trainer"] }; - { 22, "s53860", "39935", "=q2=Shifting Shadow Crystal", "=ds="..AL["Trainer"] }; - { 23, "s53859", "39934", "=q2=Sovereign Shadow Crystal", "=ds="..AL["Trainer"] }; - { 24, "s53861", "39942", "=q2=Tenuous Shadow Crystal", "=ds="..AL["Trainer"] }; - { 25, "s41420", "32833", "=q2=Purified Jaggal Pearl", "=ds=#sr# 325"}; - { 26, "s39455", "31862", "=q2=Balanced Shadow Draenite", "=ds=#sr# 325"}; - { 27, "s39458", "31864", "=q2=Infused Shadow Draenite", "=ds=#sr# 325"}; - { 28, "s28936", "23111", "=q2=Sovereign Shadow Draenite", "=ds=#sr# 325"}; - { 29, "s28933", "23110", "=q2=Shifting Shadow Draenite", "=ds=#sr# 315"}; - { 30, "s28927", "23109", "=q2=Royal Shadow Draenite", "=ds=#sr# 305"}; - Prev = "JewelPurple1"; - Next = "JewelPurple3"; + AtlasLoot_Data["JewelPurple2WRATH"] = { + { 1, "s53871", "39940", "=q2=Guardian's Shadow Crystal", "=ds="..AL["Trainer"] }; + { 2, "s53867", "39944", "=q2=Infused Shadow Crystal", "=ds="..AL["Trainer"] }; + { 3, "s53865", "39945", "=q2=Mysterious Shadow Crystal", "=ds=1250 #faction#" }; + { 4, "s53870", "39933", "=q2=Puissant Shadow Crystal", "=ds="..AL["Trainer"] }; + { 5, "s53863", "39941", "=q2=Purified Shadow Crystal", "=ds="..AL["Trainer"] }; + { 6, "s53864", "39943", "=q2=Royal Shadow Crystal", "=ds="..AL["Trainer"] }; + { 7, "s53860", "39935", "=q2=Shifting Shadow Crystal", "=ds="..AL["Trainer"] }; + { 8, "s53859", "39934", "=q2=Sovereign Shadow Crystal", "=ds="..AL["Trainer"] }; + { 9, "s53861", "39942", "=q2=Tenuous Shadow Crystal", "=ds="..AL["Trainer"] }; + { 10, "s53868", "39938", "=q2=Regal Shadow Crystal", "=ds="..AL["Trainer"] }; + { 11, "s53866", "39937", "=q2=Balanced Shadow Crystal", "=ds="..AL["Trainer"] }; + { 12, "s53869", "39939", "=q2=Defender's Shadow Crystal", "=ds="..BabbleFaction["The Kalu'ak"]..": "..BabbleFaction["Honored"] }; + { 13, "s53862", "39936", "=q2=Glowing Shadow Crystal", "=ds="..AL["Trainer"] }; + { 14, "s41420", "32833", "=q2=Purified Jaggal Pearl", "=ds=#sr# 325"}; + Prev = "JewelPurpleWRATH"; + Next = "JewelPurpleTBC"; Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; + }; + + AtlasLoot_Data["JewelMetaCLASSIC"] = { + Prev = "JewelMetaWRATH"; + Next = "JewelMetaTBC"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelPurple3"] = { - { 1, "s28925", "23108", "=q2=Glowing Shadow Draenite", "=ds=#sr# 300"}; - Prev = "JewelPurple2"; + AtlasLoot_Data["JewelMetaTBC"] = { + { 1, "s46601", "35503", "=q3=Ember Skyfire Diamond", "=ds=#sr# 370"}; + { 2, "s44794", "34220", "=q3=Chaotic Skyfire Diamond", "=ds=#sr# 365"}; + { 3, "s32871", "25890", "=q3=Destructive Skyfire Diamond", "=ds=#sr# 365"}; + { 4, "s32874", "25895", "=q3=Enigmatic Skyfire Diamond", "=ds=#sr# 365"}; + { 5, "s32872", "25893", "=q3=Mystical Skyfire Diamond", "=ds=#sr# 365"}; + { 6, "s32873", "25894", "=q3=Swift Skyfire Diamond", "=ds=#sr# 365"}; + { 7, "s39963", "32410", "=q3=Thundering Skyfire Diamond", "=ds=#sr# 365"}; + { 16, "s46597", "35501", "=q3=Eternal Earthstorm Diamond", "=ds=#sr# 370"}; + { 17, "s32867", "25897", "=q3=Bracing Earthstorm Diamond", "=ds=#sr# 365"}; + { 18, "s32869", "25899", "=q3=Brutal Earthstorm Diamond", "=ds=#sr# 365"}; + { 19, "s32870", "25901", "=q3=Insightful Earthstorm Diamond", "=ds=#sr# 365"}; + { 20, "s32866", "25896", "=q3=Powerful Earthstorm Diamond", "=ds=#sr# 365"}; + { 21, "s39961", "32409", "=q3=Relentless Earthstorm Diamond", "=ds=#sr# 365"}; + { 22, "s32868", "25898", "=q3=Tenacious Earthstorm Diamond", "=ds=#sr# 365"}; + Prev = "JewelMetaWRATH"; + Next = "JewelMetaWRATH"; Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; }; - AtlasLoot_Data["JewelMeta1"] = { - { 1, "s55401", "41380", "=q3=Austere Earthsiege Diamond", "=ds="..BabbleBoss["King Ymiron"] }; - { 2, "s55405", "41389", "=q3=Beaming Earthsiege Diamond", "=ds="..AL["Drop"]..""}; - { 3, "s55397", "41395", "=q3=Bracing Earthsiege Diamond", "=ds="..BabbleBoss["Ley-Guardian Eregos"] }; - { 4, "s55389", "41285", "=q3=Chaotic Skyflare Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 5, "s55390", "41307", "=q3=Destructive Skyflare Diamond", "=ds="..AL["Drop"]..""}; - { 6, "s55384", "41377", "=q3=Effulgent Skyflare Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 7, "s55392", "41333", "=q3=Ember Skyflare Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 8, "s55393", "41335", "=q3=Enigmatic Skyflare Diamond", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 9, "s55398", "41396", "=q3=Eternal Earthsiege Diamond", "=ds="..BabbleBoss["Loken"] }; - { 10, "s55387", "41378", "=q3=Forlorn Skyflare Diamond", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 11, "s55388", "41379", "=q3=Impassive Skyflare Diamond", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; - { 12, "s55396", "41401", "=q3=Insightful Earthsiege Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 13, "s55404", "41385", "=q3=Invigorating Earthsiege Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 14, "s55402", "41381", "=q3=Persistant Earthsiege Diamond", "=ds="..AL["Trainer"] }; - { 15, "s55399", "41397", "=q3=Powerful Earthsiege Diamond", "=ds="..AL["Trainer"] }; - { 16, "s55400", "41398", "=q3=Relentless Earthsiege Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 17, "s55407", "41376", "=q3=Revitalizing Skyflare Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 18, "s55394", "41339", "=q3=Swift Skyflare Diamond", "=ds="..AL["Trainer"] }; - { 19, "s55395", "41400", "=q3=Thundering Skyflare Diamond", "=ds="..AL["Drop"]..""}; - { 20, "s55386", "41375", "=q3=Tireless Skyflare Diamond", "=ds="..AL["Trainer"] }; - { 21, "s55403", "41382", "=q3=Trenchant Earthsiege Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; - { 22, "s46601", "35503", "=q3=Ember Skyfire Diamond", "=ds=#sr# 370"}; - { 23, "s46597", "35501", "=q3=Eternal Earthstorm Diamond", "=ds=#sr# 370"}; - { 24, "s32867", "25897", "=q3=Bracing Earthstorm Diamond", "=ds=#sr# 365"}; - { 25, "s32869", "25899", "=q3=Brutal Earthstorm Diamond", "=ds=#sr# 365"}; - { 26, "s44794", "34220", "=q3=Chaotic Skyfire Diamond", "=ds=#sr# 365"}; - { 27, "s32871", "25890", "=q3=Destructive Skyfire Diamond", "=ds=#sr# 365"}; - { 28, "s32874", "25895", "=q3=Enigmatic Skyfire Diamond", "=ds=#sr# 365"}; - { 29, "s32870", "25901", "=q3=Insightful Earthstorm Diamond", "=ds=#sr# 365"}; - { 30, "s32872", "25893", "=q3=Mystical Skyfire Diamond", "=ds=#sr# 365"}; - Next = "JewelMeta2"; - Back = "JEWELCRAFTINGMENU"; - }; - - AtlasLoot_Data["JewelMeta2"] = { - { 1, "s32866", "25896", "=q3=Powerful Earthstorm Diamond", "=ds=#sr# 365"}; - { 2, "s39961", "32409", "=q3=Relentless Earthstorm Diamond", "=ds=#sr# 365"}; - { 3, "s32873", "25894", "=q3=Swift Skyfire Diamond", "=ds=#sr# 365"}; - { 4, "s32868", "25898", "=q3=Tenacious Earthstorm Diamond", "=ds=#sr# 365"}; - { 5, "s39963", "32410", "=q3=Thundering Skyfire Diamond", "=ds=#sr# 365"}; - Prev = "JewelMeta1"; + AtlasLoot_Data["JewelMetaWRATH"] = { + { 1, "s55389", "41285", "=q3=Chaotic Skyflare Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 2, "s55390", "41307", "=q3=Destructive Skyflare Diamond", "=ds="..AL["Drop"]..""}; + { 3, "s55384", "41377", "=q3=Effulgent Skyflare Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 4, "s55392", "41333", "=q3=Ember Skyflare Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 5, "s55393", "41335", "=q3=Enigmatic Skyflare Diamond", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 6, "s55387", "41378", "=q3=Forlorn Skyflare Diamond", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 7, "s55388", "41379", "=q3=Impassive Skyflare Diamond", "=ds="..BabbleZone["Wintergrasp"].." 12 #wintergrasp#" }; + { 8, "s55394", "41339", "=q3=Swift Skyflare Diamond", "=ds="..AL["Trainer"] }; + { 9, "s55395", "41400", "=q3=Thundering Skyflare Diamond", "=ds="..AL["Drop"]..""}; + { 10, "s55386", "41375", "=q3=Tireless Skyflare Diamond", "=ds="..AL["Trainer"] }; + { 16, "s55401", "41380", "=q3=Austere Earthsiege Diamond", "=ds="..BabbleBoss["King Ymiron"] }; + { 17, "s55405", "41389", "=q3=Beaming Earthsiege Diamond", "=ds="..AL["Drop"]..""}; + { 18, "s55397", "41395", "=q3=Bracing Earthsiege Diamond", "=ds="..BabbleBoss["Ley-Guardian Eregos"] }; + { 19, "s55398", "41396", "=q3=Eternal Earthsiege Diamond", "=ds="..BabbleBoss["Loken"] }; + { 20, "s55396", "41401", "=q3=Insightful Earthsiege Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 21, "s55404", "41385", "=q3=Invigorating Earthsiege Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 22, "s55402", "41381", "=q3=Persistant Earthsiege Diamond", "=ds="..AL["Trainer"] }; + { 23, "s55399", "41397", "=q3=Powerful Earthsiege Diamond", "=ds="..AL["Trainer"] }; + { 24, "s55400", "41398", "=q3=Relentless Earthsiege Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + { 25, "s55403", "41382", "=q3=Trenchant Earthsiege Diamond", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"] }; + Prev = "JewelMetaTBC"; + Next = "JewelMetaTBC"; Back = "JEWELCRAFTINGMENU"; + Submenu = "Expansion"; }; AtlasLoot_Data["JewelPrismatic1"] = { @@ -3422,7 +3690,7 @@ Type = "Crafting"; --- Leatherworking --- ---------------------- - AtlasLoot_Data["LeatherLeatherArmorOld1"] = { + AtlasLoot_Data["LeatherLeatherArmorCLASSIC"] = { { 1, "s23709", "19162", "=q4=Corehound Belt", "=ds=#sr# 300"}; { 2, "s22927", "18510", "=q4=Hide of the Wild", "=ds=#sr# 300"}; { 3, "s23707", "19149", "=q4=Lava Belt", "=ds=#sr# 300"}; @@ -3453,12 +3721,13 @@ Type = "Crafting"; { 28, "s19086", "15066", "=q3=Ironfeather Breastplate", "=ds=#sr# 290"}; { 29, "s23703", "19044", "=q3=Might of the Timbermaw", "=ds=#sr# 290"}; { 30, "s19078", "15060", "=q3=Living Leggings", "=ds=#sr# 285"}; - Next = "LeatherLeatherArmorOld2"; + Next = "LeatherLeatherArmorCLASSIC2"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherLeatherArmorOld2"] = { + AtlasLoot_Data["LeatherLeatherArmorCLASSIC2"] = { { 1, "s19079", "15056", "=q3=Stormshroud Armor", "=ds=#sr# 285"}; { 2, "s19080", "15065", "=q3=Warbear Woolies", "=ds=#sr# 285"}; { 3, "s19067", "15057", "=q3=Stormshroud Pants", "=ds=#sr# 275"}; @@ -3489,13 +3758,14 @@ Type = "Crafting"; { 28, "s19083", "15087", "=q2=Wicked Leather Pants", "=ds=#sr# 290"}; { 29, "s19074", "15069", "=q2=Frostsaber Leggings", "=ds=#sr# 285"}; { 30, "s19076", "15053", "=q2=Volcanic Breastplate", "=ds=#sr# 285"}; - Prev = "LeatherLeatherArmorOld1"; - Next = "LeatherLeatherArmorOld3"; + Prev = "LeatherLeatherArmorCLASSIC"; + Next = "LeatherLeatherArmorCLASSIC3"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherLeatherArmorOld3"] = { + AtlasLoot_Data["LeatherLeatherArmorCLASSIC3"] = { { 1, "s19073", "15072", "=q2=Chimeric Leggings", "=ds=#sr# 280"}; { 2, "s19072", "15093", "=q2=Runic Leather Belt", "=ds=#sr# 280"}; { 3, "s19071", "15086", "=q2=Wicked Leather Headband", "=ds=#sr# 280"}; @@ -3526,13 +3796,14 @@ Type = "Crafting"; { 28, "s9208", "7391", "=q2=Swift Boots", "=ds=#sr# 200"}; { 29, "s9206", "7387", "=q2=Dusky Belt", "=ds=#sr# 195"}; { 30, "s3777", "4260", "=q2=Guardian Leather Bracers", "=ds=#sr# 195"}; - Prev = "LeatherLeatherArmorOld2"; - Next = "LeatherLeatherArmorOld4"; + Prev = "LeatherLeatherArmorCLASSIC2"; + Next = "LeatherLeatherArmorCLASSIC4"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherLeatherArmorOld4"] = { + AtlasLoot_Data["LeatherLeatherArmorCLASSIC4"] = { { 1, "s21943", "17721", "=q2=Gloves of the Greatfather", "=ds=#sr# 190"}; { 2, "s9202", "7386", "=q2=Green Whelp Bracers", "=ds=#sr# 190"}; { 3, "s6705", "5783", "=q2=Murloc Scale Bracers", "=ds=#sr# 190"}; @@ -3563,13 +3834,14 @@ Type = "Crafting"; { 28, "s9145", "7348", "=q2=Fletcher's Gloves", "=ds=#sr# 125"}; { 29, "s3767", "4250", "=q2=Hillman's Belt", "=ds=#sr# 120"}; { 30, "s9074", "7285", "=q2=Nimble Leather Gloves", "=ds=#sr# 120"}; - Prev = "LeatherLeatherArmorOld3"; - Next = "LeatherLeatherArmorOld5"; + Prev = "LeatherLeatherArmorCLASSIC3"; + Next = "LeatherLeatherArmorCLASSIC5"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherLeatherArmorOld5"] = { + AtlasLoot_Data["LeatherLeatherArmorCLASSIC5"] = { { 1, "s9072", "7284", "=q2=Red Whelp Gloves", "=ds=#sr# 120"}; { 2, "s3765", "4248", "=q2=Dark Leather Gloves", "=ds=#sr# 120"}; { 3, "s7135", "5961", "=q2=Dark Leather Pants", "=ds=#sr# 115"}; @@ -3600,23 +3872,25 @@ Type = "Crafting"; { 28, "s3756", "4239", "=q1=Embossed Leather Gloves", "=ds=#sr# 55"}; { 29, "s3753", "4237", "=q1=Handstitched Leather Belt", "=ds=#sr# 25"}; { 30, "s2153", "2303", "=q1=Handstitched Leather Pants", "=ds=#sr# 15"}; - Prev = "LeatherLeatherArmorOld4"; - Next = "LeatherLeatherArmorOld6"; + Prev = "LeatherLeatherArmorCLASSIC4"; + Next = "LeatherLeatherArmorCLASSIC6"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherLeatherArmorOld6"] = { + AtlasLoot_Data["LeatherLeatherArmorCLASSIC6"] = { { 1, "s2149", "2302", "=q1=Handstitched Leather Boots", "=ds=#sr# 1"}; { 2, "s9059", "7277", "=q1=Handstitched Leather Bracers", "=ds=#sr# 1"}; { 3, "s9058", "7276", "=q1=Handstitched Leather Cloak", "=ds=#sr# 1"}; { 4, "s7126", "5957", "=q1=Handstitched Leather Vest", "=ds=#sr# 1"}; - Prev = "LeatherLeatherArmorOld5"; + Prev = "LeatherLeatherArmorCLASSIC5"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherLeatherArmorBC1"] = { + AtlasLoot_Data["LeatherLeatherArmorTBC"] = { { 1, "s36351", "30040", "=q4=Belt of Deep Shadow", "=ds=#sr# 375"}; { 2, "s36349", "30042", "=q4=Belt of Natural Power", "=ds=#sr# 375"}; { 3, "s36355", "30041", "=q4=Boots of Natural Grace", "=ds=#sr# 375"}; @@ -3647,12 +3921,13 @@ Type = "Crafting"; { 28, "s35560", "29504", "=q4=Windscale Hood", "=ds=#sr# 365"}; { 29, "s35563", "29507", "=q4=Windslayer Wraps", "=ds=#sr# 365"}; { 30, "s32495", "25689", "=q3=Heavy Clefthoof Vest", "=ds=#sr# 360"}; - Next = "LeatherLeatherArmorBC2"; + Next = "LeatherLeatherArmorTBC2"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherLeatherArmorBC2"] = { + AtlasLoot_Data["LeatherLeatherArmorTBC2"] = { { 1, "s32497", "25691", "=q3=Heavy Clefthoof Boots", "=ds=#sr# 355"}; { 2, "s32496", "25690", "=q3=Heavy Clefthoof Leggings", "=ds=#sr# 355"}; { 3, "s35537", "29500", "=q3=Blastguard Belt", "=ds=#sr# 350"}; @@ -3676,12 +3951,13 @@ Type = "Crafting"; { 21, "s32479", "25674", "=q2=Wild Draenish Gloves", "=ds=#sr# 310"}; { 22, "s32470", "25669", "=q2=Thick Draenic Gloves", "=ds=#sr# 300"}; { 23, "s32478", "25673", "=q2=Wild Draenish Boots", "=ds=#sr# 300"}; - Prev = "LeatherLeatherArmorBC1"; + Prev = "LeatherLeatherArmorTBC"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherLeatherArmorWrath1"] = { + AtlasLoot_Data["LeatherLeatherArmorWRATH"] = { { 1, "s70556", "49899", "=q4=Bladeborn Leggings", "=ds="..AL["Vendor"]..""}; { 2, "s70555", "49894", "=q4=Blessed Cenarion Boots", "=ds="..AL["Vendor"]..""}; { 3, "s70557", "49895", "=q4=Footpads of Impending Death", "=ds="..AL["Vendor"]..""}; @@ -3712,12 +3988,13 @@ Type = "Crafting"; { 28, "s60703", "43434", "=q3=Eviscerator's Chestguard", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 29, "s60704", "43435", "=q3=Eviscerator's Bindings", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 30, "s60705", "43436", "=q3=Eviscerator's Gauntlets", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; - Next = "LeatherLeatherArmorWrath2"; + Next = "LeatherLeatherArmorWRATH2"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherLeatherArmorWrath2"] = { + AtlasLoot_Data["LeatherLeatherArmorWRATH2"] = { { 1, "s60706", "43437", "=q3=Eviscerator's Waistguard", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 2, "s60711", "43438", "=q3=Eviscerator's Legguards", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 3, "s60712", "43439", "=q3=Eviscerator's Treads", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; @@ -3748,13 +4025,14 @@ Type = "Crafting"; { 28, "s50949", "38405", "=q2=Arctic Belt", "=ds="..AL["Trainer"]}; { 29, "s50945", "38401", "=q2=Arctic Leggings", "=ds="..AL["Trainer"]}; { 30, "s50948", "38404", "=q2=Arctic Boots", "=ds="..AL["Trainer"]}; - Prev = "LeatherLeatherArmorWrath1"; - Next = "LeatherLeatherArmorWrath3"; + Prev = "LeatherLeatherArmorWRATH"; + Next = "LeatherLeatherArmorWRATH3"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherLeatherArmorWrath3"] = { + AtlasLoot_Data["LeatherLeatherArmorWRATH3"] = { { 1, "s60608", "38438", "=q2=Iceborne Helm", "=ds="..AL["Trainer"]}; { 2, "s50940", "38411", "=q2=Iceborne Shoulderpads", "=ds="..AL["Trainer"]}; { 3, "s50938", "38408", "=q2=Iceborne Chestguard", "=ds="..AL["Trainer"]}; @@ -3763,12 +4041,13 @@ Type = "Crafting"; { 6, "s50943", "38406", "=q2=Iceborne Belt", "=ds="..AL["Trainer"]}; { 7, "s50939", "38410", "=q2=Iceborne Leggings", "=ds="..AL["Trainer"]}; { 8, "s50942", "38407", "=q2=Iceborne Boots", "=ds="..AL["Trainer"]}; - Prev = "LeatherLeatherArmorWrath2"; + Prev = "LeatherLeatherArmorWRATH2"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherMailArmorOld1"] = { + AtlasLoot_Data["LeatherMailArmorCLASSIC"] = { { 1, "s28224", "22665", "=q4=Icy Scale Bracers", "=ds=#sr# 300"}; { 2, "s28222", "22664", "=q4=Icy Scale Breastplate", "=ds=#sr# 300"}; { 3, "s28223", "22666", "=q4=Icy Scale Gauntlets", "=ds=#sr# 300"}; @@ -3799,12 +4078,13 @@ Type = "Crafting"; { 28, "s19088", "15080", "=q2=Heavy Scorpid Helm", "=ds=#sr# 295"}; { 29, "s19075", "15079", "=q2=Heavy Scorpid Leggings", "=ds=#sr# 285"}; { 30, "s19070", "15082", "=q2=Heavy Scorpid Belt", "=ds=#sr# 280"}; - Next = "LeatherMailArmorOld2"; + Next = "LeatherMailArmorCLASSIC2"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherMailArmorOld2"] = { + AtlasLoot_Data["LeatherMailArmorCLASSIC2"] = { { 1, "s19064", "15078", "=q2=Heavy Scorpid Gauntlets", "=ds=#sr# 275"}; { 2, "s19051", "15076", "=q2=Heavy Scorpid Vest", "=ds=#sr# 265"}; { 3, "s19048", "15077", "=q2=Heavy Scorpid Bracers", "=ds=#sr# 255"}; @@ -3820,12 +4100,13 @@ Type = "Crafting"; { 13, "s10518", "8198", "=q2=Turtle Scale Bracers", "=ds=#sr# 210"}; { 14, "s10511", "8189", "=q2=Turtle Scale Breastplate", "=ds=#sr# 210"}; { 15, "s10509", "8187", "=q2=Turtle Scale Gloves", "=ds=#sr# 205"}; - Prev = "LeatherMailArmorOld1"; + Prev = "LeatherMailArmorCLASSIC"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherMailArmorBC1"] = { + AtlasLoot_Data["LeatherMailArmorTBC"] = { { 1, "s40002", "32397", "=q4=Waistguard of Shackled Souls", "=ds=#sr# 375"}; { 2, "s41162", "32575", "=q4=Shoulders of Lightning Reflexes", "=ds=#sr# 375"}; { 3, "s35582", "29520", "=q4=Netherstrike Belt", "=ds=#sr# 375"}; @@ -3856,12 +4137,13 @@ Type = "Crafting"; { 28, "s35567", "29512", "=q4=Earthen Netherscale Boots", "=ds=#sr# 365"}; { 29, "s32499", "25697", "=q3=Felstalker Bracer", "=ds=#sr# 360"}; { 30, "s32500", "25696", "=q3=Felstalker Breastplate", "=ds=#sr# 360"}; - Next = "LeatherMailArmorBC2"; + Next = "LeatherMailArmorTBC2"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherMailArmorBC2"] = { + AtlasLoot_Data["LeatherMailArmorTBC2"] = { { 1, "s32487", "25681", "=q3=Stylin' Adventure Hat", "=ds=#sr# 350"}; { 2, "s32488", "25683", "=q3=Stylin' Crimson Hat", "=ds=#sr# 350"}; { 3, "s32498", "25695", "=q3=Felstalker Belt", "=ds=#sr# 350"}; @@ -3883,12 +4165,13 @@ Type = "Crafting"; { 19, "s32463", "25655", "=q2=Felscale Boots", "=ds=#sr# 310"}; { 20, "s32466", "25662", "=q2=Scaled Draenic Pants", "=ds=#sr# 300"}; { 21, "s32462", "25654", "=q2=Felscale Gloves", "=ds=#sr# 300"}; - Prev = "LeatherMailArmorBC1"; + Prev = "LeatherMailArmorTBC"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherMailArmorWrath1"] = { + AtlasLoot_Data["LeatherMailArmorWRATH"] = { { 1, "s70560", "49901", "=q4=Draconic Bonesplinter Legguards", "=ds="..AL["Vendor"]..""}; { 2, "s70559", "49896", "=q4=Earthsoul Boots", "=ds="..AL["Vendor"]..""}; { 3, "s70558", "49900", "=q4=Lightning-Infused Leggings", "=ds="..AL["Vendor"]..""}; @@ -3919,12 +4202,13 @@ Type = "Crafting"; { 28, "s60732", "43446", "=q3=Swiftarrow Gauntlets", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 29, "s60734", "43442", "=q3=Swiftarrow Belt", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 30, "s60735", "43448", "=q3=Swiftarrow Leggings", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; - Next = "LeatherMailArmorWrath2"; + Next = "LeatherMailArmorWRATH2"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherMailArmorWrath2"] = { + AtlasLoot_Data["LeatherMailArmorWRATH2"] = { { 1, "s60737", "43443", "=q3=Swiftarrow Boots", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 2, "s60743", "43455", "=q3=Stormhide Crown", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; { 3, "s60746", "43457", "=q3=Stormhide Shoulders", "=ds="..AL["Vendor"]..", "..BabbleZone["Dalaran"]}; @@ -3955,22 +4239,24 @@ Type = "Crafting"; { 28, "s50954", "38413", "=q2=Frostscale Boots", "=ds="..AL["Trainer"]}; { 29, "s60624", "38439", "=q2=Nerubian Helm", "=ds="..AL["Trainer"]}; { 30, "s50958", "38417", "=q2=Nerubian Shoulders", "=ds="..AL["Trainer"]}; - Prev = "LeatherMailArmorWrath1"; - Next = "LeatherMailArmorWrath3"; + Prev = "LeatherMailArmorWRATH"; + Next = "LeatherMailArmorWRATH3"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["LeatherMailArmorWrath3"] = { + AtlasLoot_Data["LeatherMailArmorWRATH3"] = { { 1, "s50956", "38420", "=q2=Nerubian Chestguard", "=ds="..AL["Trainer"]}; { 2, "s60622", "38435", "=q2=Nerubian Bracers", "=ds="..AL["Trainer"]}; { 3, "s50959", "38421", "=q2=Nerubian Gloves", "=ds="..AL["Trainer"]}; { 4, "s50961", "38418", "=q2=Nerubian Belt", "=ds="..AL["Trainer"]}; { 5, "s50957", "38422", "=q2=Nerubian Legguards", "=ds="..AL["Trainer"]}; { 6, "s50960", "38419", "=q2=Nerubian Boots", "=ds="..AL["Trainer"]}; - Prev = "LeatherMailArmorWrath2"; + Prev = "LeatherMailArmorWRATH2"; Back = "LEATHERWORKINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; AtlasLoot_Data["LeatherCloaks1"] = { @@ -4183,7 +4469,7 @@ Type = "Crafting"; --- Tailoring --- ----------------- - AtlasLoot_Data["TailoringArmorOld1"] = { + AtlasLoot_Data["TailoringArmorCLASSIC"] = { { 1, "s22866", "18405", "=q4=Belt of the Archmage", "=ds=#sr# 300"}; { 2, "s20849", "16979", "=q4=Flarecore Gloves", "=ds=#sr# 300"}; { 3, "s23667", "19165", "=q4=Flarecore Leggings", "=ds=#sr# 300"}; @@ -4214,12 +4500,13 @@ Type = "Crafting"; { 28, "s18447", "14138", "=q3=Mooncloth Vest", "=ds=#sr# 300"}; { 29, "s24902", "20539", "=q3=Runed Stygian Belt", "=ds=#sr# 300"}; { 30, "s24903", "20537", "=q3=Runed Stygian Boots", "=ds=#sr# 300"}; - Next = "TailoringArmorOld2"; + Next = "TailoringArmorCLASSIC2"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["TailoringArmorOld2"] = { + AtlasLoot_Data["TailoringArmorCLASSIC2"] = { { 1, "s24901", "20538", "=q3=Runed Stygian Leggings", "=ds=#sr# 300"}; { 2, "s28481", "22757", "=q3=Sylvan Crown", "=ds=#sr# 300"}; { 3, "s28482", "22758", "=q3=Sylvan Shoulders", "=ds=#sr# 300"}; @@ -4250,13 +4537,14 @@ Type = "Crafting"; { 28, "s18438", "13865", "=q2=Runecloth Pants", "=ds=#sr# 285"}; { 29, "s18434", "14045", "=q2=Cindercloth Pants", "=ds=#sr# 280"}; { 30, "s18424", "13871", "=q2=Frostweave Pants", "=ds=#sr# 280"}; - Next = "TailoringArmorOld3"; - Prev = "TailoringArmorOld1"; + Next = "TailoringArmorCLASSIC3"; + Prev = "TailoringArmorCLASSIC"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["TailoringArmorOld3"] = { + AtlasLoot_Data["TailoringArmorCLASSIC3"] = { { 1, "s18423", "13864", "=q2=Runecloth Boots", "=ds=#sr# 280"}; { 2, "s18420", "14103", "=q2=Brightcloth Cloak", "=ds=#sr# 275"}; { 3, "s18418", "14044", "=q2=Cindercloth Cloak", "=ds=#sr# 275"}; @@ -4287,13 +4575,14 @@ Type = "Crafting"; { 28, "s12076", "10028", "=q2=Shadoweave Shoulders", "=ds=#sr# 235"}; { 29, "s12073", "10026", "=q2=Black Mageweave Boots", "=ds=#sr# 230"}; { 30, "s12072", "10024", "=q2=Black Mageweave Headband", "=ds=#sr# 230"}; - Next = "TailoringArmorOld4"; - Prev = "TailoringArmorOld2"; + Next = "TailoringArmorCLASSIC4"; + Prev = "TailoringArmorCLASSIC2"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["TailoringArmorOld4"] = { + AtlasLoot_Data["TailoringArmorCLASSIC4"] = { { 1, "s12074", "10027", "=q2=Black Mageweave Shoulders", "=ds=#sr# 230"}; { 2, "s12069", "10042", "=q2=Cindercloth Robe", "=ds=#sr# 225"}; { 3, "s12066", "10018", "=q2=Red Mageweave Gloves", "=ds=#sr# 225"}; @@ -4324,13 +4613,14 @@ Type = "Crafting"; { 28, "s8764", "7051", "=q2=Earthen Vest", "=ds=#sr# 170"}; { 29, "s3858", "4323", "=q2=Shadow Hood", "=ds=#sr# 170"}; { 30, "s3857", "4322", "=q2=Enchanter's Cowl", "=ds=#sr# 165"}; - Next = "TailoringArmorOld5"; - Prev = "TailoringArmorOld3"; + Next = "TailoringArmorCLASSIC5"; + Prev = "TailoringArmorCLASSIC3"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["TailoringArmorOld5"] = { + AtlasLoot_Data["TailoringArmorCLASSIC5"] = { { 1, "s8784", "7065", "=q2=Green Silk Armor", "=ds=#sr# 165"}; { 2, "s3859", "4324", "=q2=Azure Silk Vest", "=ds=#sr# 150"}; { 3, "s6692", "5770", "=q2=Robes of Arcana", "=ds=#sr# 150"}; @@ -4361,13 +4651,14 @@ Type = "Crafting"; { 28, "s7629", "6239", "=q2=Red Linen Vest", "=ds=#sr# 55"}; { 29, "s2389", "2572", "=q2=Red Linen Robe", "=ds=#sr# 40"}; { 30, "s7623", "6238", "=q2=Brown Linen Robe", "=ds=#sr# 30"}; - Next = "TailoringArmorOld6"; - Prev = "TailoringArmorOld4"; + Next = "TailoringArmorCLASSIC6"; + Prev = "TailoringArmorCLASSIC4"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["TailoringArmorOld6"] = { + AtlasLoot_Data["TailoringArmorCLASSIC6"] = { { 1, "s7624", "6241", "=q2=White Linen Robe", "=ds=#sr# 30"}; { 2, "s49677", "6836", "=q1=Dress Shoes", "=ds="..AL["Vendor"]..""}; { 3, "s50644", "38277", "=q1=Haliscan Jacket", "=ds="..AL["Vendor"]..""}; @@ -4398,22 +4689,24 @@ Type = "Crafting"; { 28, "s3914", "4343", "=q1=Brown Linen Pants", "=ds=#sr# 30"}; { 29, "s12045", "10046", "=q1=Simple Linen Boots", "=ds=#sr# 20"}; { 30, "s8776", "7026", "=q1=Linen Belt", "=ds=#sr# 15"}; - Prev = "TailoringArmorOld5"; - Next = "TailoringArmorOld7"; + Prev = "TailoringArmorCLASSIC5"; + Next = "TailoringArmorCLASSIC7"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["TailoringArmorOld7"] = { + AtlasLoot_Data["TailoringArmorCLASSIC7"] = { { 1, "s2385", "2568", "=q1=Brown Linen Vest", "=ds=#sr# 10"}; { 2, "s2387", "2570", "=q1=Linen Cloak", "=ds=#sr# 1"}; { 3, "s12044", "10045", "=q1=Simple Linen Pants", "=ds=#sr# 1"}; - Prev = "TailoringArmorOld6"; + Prev = "TailoringArmorCLASSIC6"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["TailoringArmorBC1"] = { + AtlasLoot_Data["TailoringArmorTBC"] = { { 1, "s31456", "24267", "=q4=Battlecast Hood", "=ds=#sr# 375"}; { 2, "s31453", "24263", "=q4=Battlecast Pants", "=ds=#sr# 375"}; { 3, "s36315", "30038", "=q4=Belt of Blasting", "=ds=#sr# 375"}; @@ -4444,12 +4737,13 @@ Type = "Crafting"; { 28, "s31450", "24260", "=q4=Manaweave Cloak", "=ds=#sr# 365"}; { 29, "s26761", "21874", "=q4=Primal Mooncloth Shoulders", "=ds=#sr# 365"}; { 30, "s31448", "24258", "=q4=Resolute Cape", "=ds=#sr# 365"}; - Next = "TailoringArmorBC2"; + Next = "TailoringArmorTBC2"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["TailoringArmorBC2"] = { + AtlasLoot_Data["TailoringArmorTBC2"] = { { 1, "s46131", "34365", "=q4=Robe of Eternal Light", "=ds=#sr# 365"}; { 2, "s26780", "21864", "=q4=Soulcloth Shoulders", "=ds=#sr# 365"}; { 3, "s26753", "21847", "=q4=Spellfire Gloves", "=ds=#sr# 365"}; @@ -4480,24 +4774,26 @@ Type = "Crafting"; { 28, "s26775", "21859", "=q3=Imbued Netherweave Pants", "=ds=#sr# 340"}; { 29, "s26774", "21855", "=q2=Netherweave Tunic", "=ds=#sr# 345"}; { 30, "s26773", "21854", "=q2=Netherweave Robe", "=ds=#sr# 340"}; - Prev = "TailoringArmorBC1"; - Next = "TailoringArmorBC3"; + Prev = "TailoringArmorTBC"; + Next = "TailoringArmorTBC3"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["TailoringArmorBC3"] = { + AtlasLoot_Data["TailoringArmorTBC3"] = { { 1, "s26772", "21853", "=q2=Netherweave Boots", "=ds=#sr# 335"}; { 2, "s26771", "21852", "=q2=Netherweave Pants", "=ds=#sr# 325"}; { 3, "s26770", "21851", "=q2=Netherweave Gloves", "=ds=#sr# 320"}; { 4, "s26765", "21850", "=q2=Netherweave Belt", "=ds=#sr# 310"}; { 5, "s26764", "21849", "=q2=Netherweave Bracers", "=ds=#sr# 310"}; - Prev = "TailoringArmorBC2"; + Prev = "TailoringArmorTBC2"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["TailoringArmorWotLK1"] = { + AtlasLoot_Data["TailoringArmorWRATH"] = { { 1, "s70551", "49890", "=q4=Deathfrost Boots", "=ds="..AL["Vendor"]..""}; { 2, "s70550", "49891", "=q4=Leggings of Woven Death", "=ds="..AL["Vendor"]..""}; { 3, "s70552", "49892", "=q4=Lightweave Leggings", "=ds="..AL["Vendor"]..""}; @@ -4528,12 +4824,13 @@ Type = "Crafting"; { 28, "s56021", "42093", "=q3=Frostmoon Pants", "=ds="..AL["Trainer"] }; { 29, "s56018", "41984", "=q3=Hat of Wintry Doom", "=ds="..AL["Trainer"] }; { 30, "s56023", "42096", "=q3=Aurora Slippers", "=ds="..AL["Trainer"] }; - Next = "TailoringArmorWotLK2"; + Next = "TailoringArmorWRATH2"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["TailoringArmorWotLK2"] = { + AtlasLoot_Data["TailoringArmorWRATH2"] = { { 1, "s56020", "41986", "=q3=Deep Frozen Cord", "=ds="..AL["Trainer"] }; { 2, "s59585", "43970", "=q3=Frostsavage Boots", "=ds="..AL["Trainer"] }; { 3, "s59589", "43971", "=q3=Frostsavage Cowl", "=ds="..AL["Trainer"] }; @@ -4564,13 +4861,14 @@ Type = "Crafting"; { 28, "s55919", "41546", "=q2=Duskweave Cowl", "=ds="..AL["Trainer"] }; { 29, "s55901", "41548", "=q2=Duskweave Leggings", "=ds="..AL["Trainer"] }; { 30, "s55907", "41521", "=q2=Frostwoven Cowl", "=ds="..AL["Trainer"] }; - Prev = "TailoringArmorWotLK1"; - Next = "TailoringArmorWotLK3"; + Prev = "TailoringArmorWRATH"; + Next = "TailoringArmorWRATH3"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; - AtlasLoot_Data["TailoringArmorWotLK3"] = { + AtlasLoot_Data["TailoringArmorWRATH3"] = { { 1, "s56030", "41519", "=q2=Frostwoven Leggings", "=ds="..AL["Trainer"] }; { 2, "s55906", "41520", "=q2=Frostwoven Boots", "=ds="..AL["Trainer"] }; { 3, "s55908", "41522", "=q2=Frostwoven Belt", "=ds="..AL["Trainer"] }; @@ -4578,9 +4876,10 @@ Type = "Crafting"; { 5, "s55903", "41515", "=q2=Frostwoven Robe", "=ds="..AL["Trainer"] }; { 6, "s55902", "41513", "=q2=Frostwoven Shoulders", "=ds="..AL["Trainer"] }; { 7, "s56031", "41512", "=q2=Frostwoven Wriststraps", "=ds="..AL["Trainer"] }; - Prev = "TailoringArmorWotLK2"; + Prev = "TailoringArmorWRATH2"; Back = "TAILORINGMENU"; Type = "Crafting"; + Submenu = "Expansion"; }; AtlasLoot_Data["TailoringBags1"] = { @@ -5389,12 +5688,12 @@ Type = "Crafting"; { 3, 21871, "", "=q4=Frozen Shadoweave Vest", "=ds=#s5#, #a1#"}; { 4, 21870, "", "=q4=Frozen Shadoweave Boots", "=ds=#s12#, #a1#"}; Prev = "TailoringPrimalMoon"; - Next = "TailoringSpellfireWrath"; + Next = "TailoringSpellfireWRATH"; Back = "CRAFTSET4"; Type = "Crafting"; }; - AtlasLoot_Data["TailoringSpellfireWrath"] = { + AtlasLoot_Data["TailoringSpellfireWRATH"] = { { 1, 0, "INV_Fabric_Linen_02", "=q6=#crafttsf1#", "=q1=#p21#"}; { 2, 21848, "", "=q4=Spellfire Robe", "=ds=#s5#, #a1#"}; { 3, 21847, "", "=q4=Spellfire Gloves", "=ds=#s9#, #a1#"}; @@ -5415,7 +5714,7 @@ Type = "Crafting"; { 7, 41522, "", "=q2=Frostwoven Belt", "=ds=#s10#, #a1#"}; { 8, 41519, "", "=q2=Frostwoven Leggings", "=ds=#s11#, #a1#"}; { 9, 41520, "", "=q2=Frostwoven Boots", "=ds=#s12#, #a1#"}; - Prev = "TailoringSpellfireWrath"; + Prev = "TailoringSpellfireWRATH"; Next = "TailoringDuskweaver"; Back = "CRAFTSET4"; Type = "Crafting"; diff --git a/AtlasLoot_OriginalWoW/originalwow.lua b/AtlasLoot_OriginalWoW/originalwow.lua index 20dad4d..be3b2db 100644 --- a/AtlasLoot_OriginalWoW/originalwow.lua +++ b/AtlasLoot_OriginalWoW/originalwow.lua @@ -5549,16 +5549,16 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0") AtlasLoot_Data["T3Shoulders"] = { - { 3, 22491, "", "=q4=Dreamwalker Spaulders", "=ds="}; - { 3, 22439, "", "=q4=Cryptstalker Spaulders", "=ds="}; + { 1, 22491, "", "=q4=Dreamwalker Spaulders", "=ds="}; + { 2, 22439, "", "=q4=Cryptstalker Spaulders", "=ds="}; { 3, 22499, "", "=q4=Frostfire Shoulderpads", "=ds="}; - { 3, 22429, "", "=q4=Redemption Spaulders", "=ds="}; - { 3, 22515, "", "=q4=Shoulderpads of Faith", "=ds="}; - { 3, 22479, "", "=q4=Bonescythe Pauldrons", "=ds="}; - { 3, 22467, "", "=q4=Earthshatter Spaulders", "=ds="}; - { 3, 22507, "", "=q4=Plagueheart Shoulderpads", "=ds="}; - { 3, 22419, "", "=q4=Dreadnaught Pauldrons", "=ds="}; - { 3, 10491, "", "=q4=Dreadborne Pauldrons", "=ds="}; + { 4, 22429, "", "=q4=Redemption Spaulders", "=ds="}; + { 5, 22515, "", "=q4=Shoulderpads of Faith", "=ds="}; + { 6, 22479, "", "=q4=Bonescythe Pauldrons", "=ds="}; + { 7, 22467, "", "=q4=Earthshatter Spaulders", "=ds="}; + { 8, 22507, "", "=q4=Plagueheart Shoulderpads", "=ds="}; + { 9, 22419, "", "=q4=Dreadnaught Pauldrons", "=ds="}; + { 10, 10491, "", "=q4=Dreadborne Pauldrons", "=ds="}; Back = AtlasLoot_Lastboss; Type = "ClassicRaid"; }; diff --git a/AtlasLoot_OriginalWoW/originalwow.lua.txt b/AtlasLoot_OriginalWoW/originalwow.lua.txt deleted file mode 100644 index 4fa228f..0000000 --- a/AtlasLoot_OriginalWoW/originalwow.lua.txt +++ /dev/null @@ -1,6604 +0,0 @@ -local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot"); -local BabbleBoss = AtlasLoot_GetLocaleLibBabble("LibBabble-Boss-3.0") -local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0") - - --- Index ---- Dungeons & Raids ----- Keys ----- Ahn'Qiraj: The Ruins of Ahn'Qiraj ----- Ahn'Qiraj: The Temple of Ahn'Qiraj ----- AQ Enchants ----- Blackfathom Deeps ----- Blackrock Mountain: Blackrock Dephts ----- Blackrock Mountain: Lower Blackrock Spire ----- Blackrock Mountain: Upper Blackrock Spire ----- Blackrock Mountain: Molten Core ----- Blackrock Mountain: Blackwing Lair ----- Dire Maul Books ----- Dire Maul East ----- Dire Maul North ----- Dire Maul West ----- Gnomeregan ----- Maraudon ----- Ragefire Chasm ----- Razorfen Downs ----- Razorfen Kraul ----- Scarlet Monastery ----- Scholomance ----- Shadowfang Keep ----- Stratholme ----- The Deadmines ----- The Stockade ----- The Sunken Temple ----- Uldaman ----- Wailing Caverns ----- Zul'Farrak ----- Zul'Gurub ----- Naxxramas ----- Onyxia ---- Sets & Collections ----- Dungeon 1 and 2 Sets (D1/D2) ----- Tier 1/2 Sets (T1/T2) ----- Tier 3 Sets (T3) ----- Vanilla WoW Sets ----- ZG Sets ----- AQ20 Sets ----- AQ40 Sets ----- BoE World Epics ---- PvP ----- Alterac Valley ----- Arathi Basin ----- Warsong Gulch ----- PvP Level 60 Rare and Epic Sets ----- PvP Level 60 Weapons ----- PvP Level 60 Accessories ---- Factions ----- Misc ----- Argent Dawn ----- Bloodsail Buccaneers & Hydraxian Waterlords ----- Brood of Nozdormu ----- Cenarion Circle ----- Stormpike Guard & Frostwolf Clan ----- Thorium Brotherhood ----- Timbermaw Hold ----- Zandalar Tribe ---- World Bosses ----- Dragons of Nightmare ----- Azuregos ----- Kazzak - ------------------------ - --- Dungeons & Raids --- - ------------------------ - - ------------ - --- Keys --- - ------------ - - AtlasLoot_Data["OldKeys"] = { - { 1, 0, "INV_Box_01", "=q6=#e9#", ""}; - { 2, 7146, "", "=q2=The Scarlet Key", "=ds=#e9#"}; - { 3, 12382, "", "=q2=Key to the City", "=ds=#e9#"}; - { 4, 6893, "", "=q1=Workshop Key", "=ds=#e9#"}; - { 5, 11000, "", "=q1=Shadowforge Key", "=ds=#e9#"}; - { 6, 11140, "", "=q1=Prison Cell Key", "=ds=#e9#"}; - { 7, 18249, "", "=q1=Crescent Key", "=ds=#e9#"}; - { 8, 13704, "", "=q1=Skeleton Key", "=ds=#e9#"}; - { 10, 0, "INV_Box_01", "=q6=#j7#", ""}; - { 11, 22057, "", "=q1=Brazier of Invocation", "=ds=#m27#"}; - { 12, 21986, "", "=q1=Banner of Provocation", "=ds=#m27#"}; - { 16, 0, "INV_Box_01", "=q6=#m20#", ""}; - { 17, 19931, "", "=q3=Gurubashi Mojo Madness", "=ds=#m27#"}; - { 18, 13523, "", "=q1=Blood of Innocents", "=ds=#m27#"}; - { 19, 18746, "", "=q1=Divination Scryer", "=ds=#m27#"}; - { 20, 18663, "", "=q1=J'eevee's Jar", "=ds=#m27#"}; - { 21, 19974, "", "=q1=Mudskunk Lure", "=ds=#m27#"}; - { 22, 7733, "", "=q1=Staff of Prehistoria", "=ds=#m27#"}; - { 23, 10818, "", "=q1=Yeh'kinya's Scroll", "=ds=#m27#"}; - }; - - ----------------------------------------- - --- Ahn'Qiraj: The Ruins of Ahn'Qiraj --- - ----------------------------------------- - - AtlasLoot_Data["AQ20Kurinnaxx"] = { - { 1, 21499, "", "=q4=Vestments of the Shifting Sands", "=ds=#s5#, #a1#", "", "7.34%"}; - { 2, 21498, "", "=q4=Qiraji Sacrificial Dagger", "=ds=#h1#, #w4#", "", "7.53%"}; - { 4, 21500, "", "=q3=Belt of the Inquisition", "=ds=#s10#, #a1#", "", "14.84%"}; - { 5, 21501, "", "=q3=Toughened Silithid Hide Gloves", "=ds=#s9#, #a2#", "", "12.91%"}; - { 6, 21502, "", "=q3=Sand Reaver Wristguards", "=ds=#s8#, #a3#", "", "13.79%"}; - { 7, 21503, "", "=q3=Belt of the Sand Reaver", "=ds=#s10#, #a4#", "", "14.38%"}; - { 9, 22217, "", "=q1=Kurinnaxx's Venom Sac", "=ds=#m3#", "", "100%"}; - { 16, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "30.83%"}; - { 17, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "30.25%"}; - { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "7.98%"}; - { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "7.80%"}; - Next = "AQ20Rajaxx"; - }; - - AtlasLoot_Data["AQ20Rajaxx"] = { - { 1, 21493, "", "=q4=Boots of the Vanguard", "=ds=#s12#, #a2#", "", "8.13%"}; - { 2, 21492, "", "=q4=Manslayer of the Qiraji", "=ds=#h2#, #w10#", "", "10.04%"}; - { 4, 21496, "", "=q3=Bracers of Qiraji Command", "=ds=#s8#, #a1#", "", "15.79%"}; - { 5, 21494, "", "=q3=Southwind's Grasp", "=ds=#s10#, #a2#", "", "15.13%"}; - { 6, 21497, "", "=q3=Boots of the Qiraji General", "=ds=#s12#, #a3#", "", "15.45%"}; - { 7, 21495, "", "=q3=Legplates of the Qiraji Command", "=ds=#s11#, #a4#", "", "15.47%"}; - { 9, 0, "INV_Box_01", "=q6="..AL["Rajaxx's Captains"], ""}; - { 10, 21810, "", "=q3=Treads of the Wandering Nomad", "=ds=#s12#, #a1#", "", "3.11%"}; - { 11, 21809, "", "=q3=Fury of the Forgotten Swarm", "=ds=#s2#", "", "3.20%"}; - { 12, 21806, "", "=q3=Gavel of Qiraji Authority", "=ds=#h2#, #w6#", "", "3.04%"}; - { 16, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "36.51%"}; - { 17, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "33.97%"}; - { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "8.82%"}; - { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.56%"}; - { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Lieutenant General Andorov"], ""}; - { 22, 22221, "", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# (300)"}; - { 23, 22219, "", "=q1=Plans: Jagged Obsidian Shield", "=ds=#p2# (300)"}; - Prev = "AQ20Kurinnaxx"; - Next = "AQ20Moam"; - }; - - AtlasLoot_Data["AQ20Moam"] = { - { 1, 21472, "", "=q4=Dustwind Turban", "=ds=#s1#, #a1#", "", "7.76%"}; - { 2, 21467, "", "=q4=Thick Silithid Chestguard", "=ds=#s5#, #a2#", "", "6.76%"}; - { 3, 21479, "", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "", "7.12%"}; - { 4, 21471, "", "=q4=Talon of Furious Concentration", "=ds=#s15#", "", "7.39%"}; - { 6, 21470, "", "=q3=Cloak of the Savior", "=ds=#s4#", "", "14.23%"}; - { 7, 21468, "", "=q3=Mantle of Maz'Nadir", "=ds=#s3#, #a1#", "", "15.86%"}; - { 8, 21455, "", "=q3=Southwind Helm", "=ds=#s1#, #a2#", "", "14.08%"}; - { 9, 21474, "", "=q3=Chitinous Shoulderguards", "=ds=#s3#, #a2#", "", "15.25%"}; - { 10, 21469, "", "=q3=Gauntlets of Southwind", "=ds=#s9#, #a2#", "", "15.28%"}; - { 11, 21476, "", "=q3=Obsidian Scaled Leggings", "=ds=#s11#, #a3#", "", "6.81%"}; - { 12, 21475, "", "=q3=Legplates of the Destroyer", "=ds=#s11#, #a4#", "", "10.39%"}; - { 13, 21477, "", "=q3=Ring of Fury", "=ds=#s13#", "", "14.42%"}; - { 14, 21473, "", "=q3=Eye of Moam", "=ds=#s14#", "", "14.74%"}; - { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "36.38%"}; - { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "33.16%"}; - { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "7.56%"}; - { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.34%"}; - { 21, 22220, "", "=q3=Plans: Black Grasp of the Destroyer", "=ds=#p2# (300)", "", "4.11%"}; - { 22, 22194, "", "=q4=Black Grasp of the Destroyer", "=ds=#s9#, #a3#"}; - Prev = "AQ20Rajaxx"; - Next = "AQ20Buru"; - }; - - AtlasLoot_Data["AQ20Buru"] = { - { 1, 21487, "", "=q4=Slimy Scaled Gauntlets", "=ds=#s9#, #a3#", "", "2.64%"}; - { 2, 21486, "", "=q4=Gloves of the Swarm", "=ds=#s9#, #a4#", "", "5.22%"}; - { 3, 21485, "", "=q4=Buru's Skull Fragment", "=ds=#w8#", "", "7.88%"}; - { 5, 21489, "", "=q3=Quicksand Waders", "=ds=#s12#, #a1#", "", "15.95%"}; - { 6, 21491, "", "=q3=Scaled Bracers of the Gorger", "=ds=#s8#, #a2#", "", "16.51%"}; - { 7, 21490, "", "=q3=Slime Kickers", "=ds=#s12#, #a4#", "", "15.99%"}; - { 8, 21488, "", "=q3=Fetish of Chitinous Spikes", "=ds=#s14#", "", "17.22%"}; - { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "8.31%"}; - { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "8.98%"}; - { 18, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "9.77%"}; - { 19, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "9.84%"}; - { 20, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "26.98%"}; - { 21, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "25.58%"}; - Prev = "AQ20Moam"; - Next = "AQ20Ayamiss"; - }; - - AtlasLoot_Data["AQ20Ayamiss"] = { - { 1, 21479, "", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "", "6.18%"}; - { 2, 21466, "", "=q4=Stinger of Ayamiss", "=ds=#h3#, #w6#", "", "2.06%"}; - { 3, 21478, "", "=q4=Bow of Taut Sinew", "=ds=#w2#", "", "10.14%"}; - { 5, 21484, "", "=q3=Helm of Regrowth", "=ds=#s1#, #a2#", "", "15.85%"}; - { 6, 21480, "", "=q3=Scaled Silithid Gauntlets", "=ds=#s9#, #a3#", "", "17.10%"}; - { 7, 21482, "", "=q3=Boots of the Fiery Sands", "=ds=#s12#, #a3#", "", "4.92%"}; - { 8, 21481, "", "=q3=Boots of the Desert Protector", "=ds=#s12#, #a4#", "", "11.08%"}; - { 9, 21483, "", "=q3=Ring of the Desert Winds", "=ds=#s13#", "", "16.32%"}; - { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "8.24%"}; - { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "8.21%"}; - { 18, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "8.85%"}; - { 19, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "10.97%"}; - { 20, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "26.98%"}; - { 21, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "27.50%"}; - Prev = "AQ20Buru"; - Next = "AQ20Ossirian"; - }; - - AtlasLoot_Data["AQ20Ossirian"] = { - { 1, 21456, "", "=q4=Sandstorm Cloak", "=ds=#s4#", "", "10.89%"}; - { 2, 21464, "", "=q4=Shackles of the Unscarred", "=ds=#s8#, #a1#", "", "12.62%"}; - { 3, 21462, "", "=q4=Gloves of Dark Wisdom", "=ds=#s9#, #a1#", "", "11.89%"}; - { 4, 21461, "", "=q4=Leggings of the Black Blizzard", "=ds=#s11#, #a1#", "", "12.83%"}; - { 5, 21458, "", "=q4=Gauntlets of New Life", "=ds=#s9#, #a2#", "", "13.25%"}; - { 6, 21454, "", "=q4=Runic Stone Shoulders", "=ds=#s3#, #a3#", "", "4.10%"}; - { 7, 21463, "", "=q4=Ossirian's Binding", "=ds=#s10#, #a3#", "", "12.27%"}; - { 8, 21460, "", "=q4=Helm of Domination", "=ds=#s1#, #a4#", "", "12.18%"}; - { 9, 21453, "", "=q4=Mantle of the Horusath", "=ds=#s3#, #a4#", "", "6.96%"}; - { 10, 21457, "", "=q4=Bracers of Brutality", "=ds=#s8#, #a4#", "", "10.74%"}; - { 11, 21715, "", "=q4=Sand Polished Hammer", "=ds=#h1#, #w6#", "", "5.95%"}; - { 12, 21459, "", "=q4=Crossbow of Imminent Doom", "=ds=#w3#", "", "6.12%"}; - { 13, 21452, "", "=q4=Staff of the Ruins", "=ds=#w9#", "", "10.32%"}; - { 16, 21220, "", "=q4=Head of Ossirian the Unscarred", "=ds=#m2#", "", "100%"}; - { 17, 21504, "", "=q4=Charm of the Shifting Sands", "=q1=#m4#: =ds=#s2#"}; - { 18, 21507, "", "=q4=Amulet of the Shifting Sands", "=q1=#m4#: =ds=#s2#"}; - { 19, 21505, "", "=q4=Choker of the Shifting Sands", "=q1=#m4#: =ds=#s2#"}; - { 20, 21506, "", "=q4=Pendant of the Shifting Sands", "=q1=#m4#: =ds=#s2#"}; - { 22, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "35.27%"}; - { 23, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "30.69%"}; - { 24, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "9.65%"}; - { 25, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.53%"}; - Prev = "AQ20Ayamiss"; - }; - - AtlasLoot_Data["AQ20Trash"] = { - { 1, 20873, "", "=q3=Alabaster Idol", "=ds=#e15#", "", "0.39%"}; - { 2, 20869, "", "=q3=Amber Idol", "=ds=#e15#", "", "0.36%"}; - { 3, 20866, "", "=q3=Azure Idol", "=ds=#e15#", "", "0.48%"}; - { 4, 20870, "", "=q3=Jasper Idol", "=ds=#e15#", "", "0.52%"}; - { 5, 20868, "", "=q3=Lambent Idol", "=ds=#e15#", "", "0.48%"}; - { 6, 20871, "", "=q3=Obsidian Idol", "=ds=#e15#", "", "0.41%"}; - { 7, 20867, "", "=q3=Onyx Idol", "=ds=#e15#", "", "0.36%"}; - { 8, 20872, "", "=q3=Vermillion Idol", "=ds=#e15#", "", "0.31%"}; - { 10, 22202, "", "=q1=Small Obsidian Shard", "=ds=#e8#"}; - { 11, 22203, "", "=q1=Large Obsidian Shard", "=ds=#e8#"}; - { 16, 20864, "", "=q2=Bone Scarab", "=ds=#e15#", "", "0.84%"}; - { 17, 20861, "", "=q2=Bronze Scarab", "=ds=#e15#", "", "0.88%"}; - { 18, 20863, "", "=q2=Clay Scarab", "=ds=#e15#", "", "0.95%"}; - { 19, 20862, "", "=q2=Crystal Scarab", "=ds=#e15#", "", "0.99%"}; - { 20, 20859, "", "=q2=Gold Scarab", "=ds=#e15#", "", "0.96%"}; - { 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%"}; - { 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%"}; - { 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%"}; - { 25, 21761, "", "=q1=Scarab Coffer Key", "=ds=#e9#", "", "7.27%"}; - }; - - AtlasLoot_Data["AQ20ClassBooks"] = { - { 1, 21294, "", "=q3=Book of Healing Touch XI", "=q1=#m1# =ds=#c1#", "", "4.12%"}; - { 2, 21296, "", "=q3=Book of Rejuvenation XI", "=q1=#m1# =ds=#c1#", "", "4.20%"}; - { 3, 21295, "", "=q3=Book of Starfire VII", "=q1=#m1# =ds=#c1#", "", "4.00%"}; - { 4, 21306, "", "=q3=Guide: Serpent Sting IX", "=q1=#m1# =ds=#c2#", "", "4.85%"}; - { 5, 21304, "", "=q3=Guide: Multi-Shot V", "=q1=#m1# =ds=#c2#", "", "4.66%"}; - { 6, 21307, "", "=q3=Guide: Aspect of the Hawk VII", "=q1=#m1# =ds=#c2#", "", "4.65%"}; - { 7, 21279, "", "=q3=Tome of Fireball XII", "=q1=#m1# =ds=#c3#", "", "5.15%"}; - { 8, 21214, "", "=q3=Tome of Frostbolt XI", "=q1=#m1# =ds=#c3#", "", "5.10%"}; - { 9, 21280, "", "=q3=Tome of Arcane Missiles VIII", "=q1=#m1# =ds=#c3#", "", "5.03%"}; - { 10, 21288, "", "=q3=Libram: Blessing of Wisdom VI", "=q1=#m1# =ds=#c4#", "", "3.50%"}; - { 11, 21289, "", "=q3=Libram: Blessing of Might VII", "=q1=#m1# =ds=#c4#", "", "3.07%"}; - { 12, 21290, "", "=q3=Libram: Holy Light IX", "=q1=#m1# =ds=#c4#", "", "3.09%"}; - { 13, 21284, "", "=q3=Codex of Greater Heal V", "=q1=#m1# =ds=#c5#", "", "5.15%"}; - { 14, 21287, "", "=q3=Codex of Prayer of Healing V", "=q1=#m1# =ds=#c5#", "", "4.89%"}; - { 15, 21285, "", "=q3=Codex of Renew X", "=q1=#m1# =ds=#c5#", "", "4.91%"}; - { 16, 21300, "", "=q3=Handbook of Backstab IX", "=q1=#m1# =ds=#c6#", "", "4.29%"}; - { 17, 21303, "", "=q3=Handbook of Feint V", "=q1=#m1# =ds=#c6#", "", "4.79%"}; - { 18, 21302, "", "=q3=Handbook of Deadly Poison V", "=q1=#m1# =ds=#c6#", "", "5.47%"}; - { 19, 21291, "", "=q3=Tablet of Healing Wave X", "=q1=#m1# =ds=#c7#", "", "2.05%"}; - { 20, 21292, "", "=q3=Tablet of Strength of Earth Totem V", "=q1=#m1# =ds=#c7#", "", "1.67%"}; - { 21, 21293, "", "=q3=Tablet of Grace of Air Totem III", "=q1=#m1# =ds=#c7#", "", "1.81%"}; - { 22, 21281, "", "=q3=Grimoire of Shadow Bolt X", "=q1=#m1# =ds=#c8#", "", "4.23%"}; - { 23, 21283, "", "=q3=Grimoire of Corruption VII", "=q1=#m1# =ds=#c8#", "", "3.82%"}; - { 24, 21282, "", "=q3=Grimoire of Immolate VIII", "=q1=#m1# =ds=#c8#", "", "4.51%"}; - { 25, 21298, "", "=q3=Manual of Battle Shout VII", "=q1=#m1# =ds=#c9#", "", "4.84%"}; - { 26, 21299, "", "=q3=Manual of Revenge VI", "=q1=#m1# =ds=#c9#", "", "4.78%"}; - { 27, 21297, "", "=q3=Manual of Heroic Strike IX", "=q1=#m1# =ds=#c9#", "", "4.83%"}; - }; - - ------------------------------------------ - --- Ahn'Qiraj: The Temple of Ahn'Qiraj --- - ------------------------------------------ - - AtlasLoot_Data["AQ40Skeram"] = { - { 1, 21701, "", "=q4=Cloak of Concentrated Hatred", "=ds=#s4#", "", "11.81%"}; - { 2, 21708, "", "=q4=Beetle Scaled Wristguards", "=ds=#s8#, #a2#", "", "12.85%"}; - { 3, 21698, "", "=q4=Leggings of Immersion", "=ds=#s11#, #a2#", "", " 10.99%"}; - { 4, 21699, "", "=q4=Barrage Shoulders", "=ds=#s3#, #a3#", "", "11.50%"}; - { 5, 21705, "", "=q4=Boots of the Fallen Prophet", "=ds=#s12#, #a3#", "", "3.33%"}; - { 6, 21814, "", "=q4=Breastplate of Annihilation", "=ds=#s5#, #a4#", "", "11.01%"}; - { 7, 21704, "", "=q4=Boots of the Redeemed Prophecy", "=ds=#s12#, #a4#", "", "7.75%"}; - { 8, 21706, "", "=q4=Boots of the Unwavering Will", "=ds=#s12#, #a4#", "", "12.23%"}; - { 10, 21702, "", "=q4=Amulet of Foul Warding", "=ds=#s2#", "", "12.20%"}; - { 11, 21700, "", "=q4=Pendant of the Qiraji Guardian", "=ds=#s2#", "", "11.57%"}; - { 12, 21707, "", "=q4=Ring of Swarming Thought", "=ds=#s13#", "", "12.57%"}; - { 13, 21703, "", "=q4=Hammer of Ji'zhi", "=ds=#h2#, #w6#", "", "7.14%"}; - { 14, 21128, "", "=q4=Staff of the Qiraji Prophets", "=ds=#w9#", "", " 6.32%"}; - { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "1.74%"}; - { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"}; - { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"}; - { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"}; - { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "1.32%"}; - { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"}; - { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"}; - { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"}; - { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"}; - { 27, 22222, "", "=q3=Plans: Thick Obsidian Breastplate", "=ds=#p2# (300)", "", "5.00%"}; - { 28, 22196, "", "=q4=Thick Obsidian Breastplate", "=ds=#s5#, #a4#"}; - Next = "AQ40Vem"; - }; - - AtlasLoot_Data["AQ40Vem"] = { - { 1, 21697, "", "=q4=Cape of the Trinity", "=ds=#s4# =q2=#m5#", "", "14%"}; - { 2, 21694, "", "=q4=Ternary Mantle", "=ds=#s3#, #a1# =q2=#m5#", "", "16%"}; - { 3, 21696, "", "=q4=Robes of the Triumvirate", "=ds=#s5#, #a1# =q2=#m5#", "", "13%"}; - { 4, 21693, "", "=q4=Guise of the Devourer", "=ds=#s1#, #a2# =q2=#m5#", "", "16%"}; - { 5, 21692, "", "=q4=Triad Girdle", "=ds=#s10#, #a4# =q2=#m5#", "", "16%"}; - { 6, 21695, "", "=q4=Angelista's Touch", "=ds=#s13# =q2=#m5#", "", "14%"}; - { 8, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3# =q2=#m5#", "", "7%"}; - { 9, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3# =q2=#m5#", "", "7%"}; - { 11, 21680, "", "=q4=Vest of Swift Execution", "=ds=#s5#, #a2# =q2=#n115#", "", "21%"}; - { 12, 21603, "", "=q4=Wand of Qiraji Nobility", "=ds=#w12# =q2=#n115#", "", "25%"}; - { 13, 21681, "", "=q4=Ring of the Devoured", "=ds=#s13# =q2=#n115#", "", "17%"}; - { 14, 21685, "", "=q4=Petrified Scarab", "=ds=#s14# =q2=#n115#", "", "21%"}; - { 16, 21689, "", "=q4=Gloves of Ebru", "=ds=#s9#, #a2# =q2=#n116#", "", "18%"}; - { 17, 21691, "", "=q4=Ooze-ridden Gauntlets", "=ds=#s9#, #a4# =q2=#n116#", "", "20%"}; - { 18, 21688, "", "=q4=Boots of the Fallen Hero", "=ds=#s12#, #a4# =q2=#n116#", "", "18%"}; - { 19, 21690, "", "=q4=Angelista's Charm", "=ds=#s2# =q2=#n116#", "", "20%"}; - { 21, 21686, "", "=q4=Mantle of Phrenic Power", "=ds=#s3#, #a1# =q2=#n117#", "", "13%"}; - { 22, 21682, "", "=q4=Bile-Covered Gauntlets", "=ds=#s9#, #a2# =q2=#n117#", "", "19%"}; - { 23, 21684, "", "=q4=Mantle of the Desert's Fury", "=ds=#s3#, #a3# =q2=#n117#", "", "16%"}; - { 24, 21683, "", "=q4=Mantle of the Desert Crusade", "=ds=#s3#, #a4# =q2=#n117#", "", "14%"}; - { 25, 21687, "", "=q4=Ukko's Ring of Darkness", "=ds=#s13# =q2=#n117#", "", "20%"}; - Prev = "AQ40Skeram"; - Next = "AQ40Sartura"; - }; - - AtlasLoot_Data["AQ40Sartura"] = { - { 1, 21671, "", "=q4=Robes of the Battleguard", "=ds=#s5#, #a1#", "", "13.30%"}; - { 2, 21676, "", "=q4=Leggings of the Festering Swarm", "=ds=#s11#, #a1#", "", "13.02%"}; - { 3, 21648, "", "=q4=Recomposed Boots", "=ds=#s12#, #a1#", "", "7.64%"}; - { 4, 21669, "", "=q4=Creeping Vine Helm", "=ds=#s1#, #a2#", "", "12.33%"}; - { 5, 21672, "", "=q4=Gloves of Enforcement", "=ds=#s9#, #a2#", "", "11.87%"}; - { 6, 21675, "", "=q4=Thick Qirajihide Belt", "=ds=#s10#, #a2#", "", "13.26%"}; - { 7, 21668, "", "=q4=Scaled Leggings of Qiraji Fury", "=ds=#s11#, #a3#", "", "4.03%"}; - { 8, 21674, "", "=q4=Gauntlets of Steadfast Determination", "=ds=#s9#, #a4#", "", "11.07%"}; - { 9, 21667, "", "=q4=Legplates of Blazing Light", "=ds=#s11#, #a4#", "", "7.44%"}; - { 11, 21678, "", "=q4=Necklace of Purity", "=ds=#s2#", "", "14.21%"}; - { 12, 21670, "", "=q4=Badge of the Swarmguard", "=ds=#s14#", "", "13.22%"}; - { 13, 21666, "", "=q4=Sartura's Might", "=ds=#s15#", "", "6.47%"}; - { 14, 21673, "", "=q4=Silithid Claw", "=ds=#h3#, #w13#", "", "7.16%"}; - { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.01%"}; - { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"}; - { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"}; - { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"}; - { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.02%"}; - { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"}; - { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"}; - { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"}; - { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"}; - Prev = "AQ40Vem"; - Next = "AQ40Fankriss"; - }; - - AtlasLoot_Data["AQ40Fankriss"] = { - { 1, 21627, "", "=q4=Cloak of Untold Secrets", "=ds=#s4#", "", "12.51%"}; - { 2, 21663, "", "=q4=Robes of the Guardian Saint", "=ds=#s5#, #a1#", "", "12.95%"}; - { 3, 21665, "", "=q4=Mantle of Wicked Revenge", "=ds=#s3#, #a2#", "", "13.25%"}; - { 4, 21645, "", "=q4=Hive Tunneler's Boots", "=ds=#s12#, #a2#", "", "14.04%"}; - { 5, 21651, "", "=q4=Scaled Sand Reaver Leggings", "=ds=#s11#, #a3#", "", "12.91%"}; - { 6, 21639, "", "=q4=Pauldrons of the Unrelenting", "=ds=#s3#, #a4#", "", "14.78%"}; - { 7, 21652, "", "=q4=Silithid Carapace Chestguard", "=ds=#s5#, #a4#", "", "10.29%"}; - { 9, 21647, "", "=q4=Fetish of the Sand Reaver", "=ds=#s14#", "", "13.82%"}; - { 10, 21664, "", "=q4=Barbed Choker", "=ds=#s2#", "", "12.63%"}; - { 11, 22402, "", "=q4=Libram of Grace", "=ds=#s16#, #w16#", "", "4.21%"}; - { 12, 22396, "", "=q4=Totem of Life", "=ds=#s16#, #w15#", "", "1.69%"}; - { 13, 21650, "", "=q4=Ancient Qiraji Ripper", "=ds=#h1#, #w10#", "", " 7.19%"}; - { 14, 21635, "", "=q4=Barb of the Sand Reaver", "=ds=#w7#", "", "6.61%"}; - { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.84%"}; - { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"}; - { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"}; - { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"}; - { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.09%"}; - { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"}; - { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"}; - { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"}; - { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"}; - Prev = "AQ40Sartura"; - Next = "AQ40Viscidus"; - }; - - AtlasLoot_Data["AQ40Viscidus"] = { - { 1, 21624, "", "=q4=Gauntlets of Kalimdor", "=ds=#s9#, #a3#", "", "3.90%"}; - { 2, 21626, "", "=q4=Slime-coated Leggings", "=ds=#s11#, #a3#", "", "13.66%"}; - { 3, 21623, "", "=q4=Gauntlets of the Righteous Champion", "=ds=#s9#, #a4#", "", "5.37%"}; - { 5, 21677, "", "=q4=Ring of the Qiraji Fury", "=ds=#s13#", "", "2.93%"}; - { 6, 21625, "", "=q4=Scarab Brooch", "=ds=#s14#", "", "21.46%"}; - { 7, 22399, "", "=q4=Idol of Health", "=ds=#s16#, #w14#", "", "7.32%"}; - { 8, 21622, "", "=q4=Sharpened Silithid Femur", "=ds=#h3#, #w10#", "", "15.12%"}; - { 10, 20932, "", "=q4=Qiraji Bindings of Dominance", "=q1=#m1# =ds=#c8#, #c3#, #c7#, #c1#, #c4#", "", "100%"}; - { 11, 20928, "", "=q4=Qiraji Bindings of Command", "=q1=#m1# =ds=#c5#, #c6#, #c9#, #c2#", "", "100%"}; - { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "3.19%"}; - { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"}; - { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"}; - { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"}; - { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "6.86%"}; - { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"}; - { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"}; - { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"}; - { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"}; - Prev = "AQ40Fankriss"; - Next = "AQ40Huhuran"; - }; - - AtlasLoot_Data["AQ40Huhuran"] = { - { 1, 21619, "", "=q4=Gloves of the Messiah", "=ds=#s9#, #a1#", "", "12.01%"}; - { 2, 21621, "", "=q4=Cloak of the Golden Hive", "=ds=#s4#", "", "12.56%"}; - { 3, 21617, "", "=q4=Wasphide Gauntlets", "=ds=#s9#, #a2#", "", "11.97%"}; - { 4, 21618, "", "=q4=Hive Defiler Wristguards", "=ds=#s8#, #a4#", "", "10.34%"}; - { 6, 21620, "", "=q4=Ring of the Martyr", "=ds=#s13#", "", "12.97%"}; - { 7, 21616, "", "=q4=Huhuran's Stinger", "=ds=#w2#", "", "5.71%"}; - { 9, 20932, "", "=q4=Qiraji Bindings of Dominance", "=q1=#m1# =ds=#c8#, #c3#, #c7#, #c1#, #c4#", "", "100%"}; - { 10, 20928, "", "=q4=Qiraji Bindings of Command", "=q1=#m1# =ds=#c5#, #c6#, #c9#, #c2#", "", "100%"}; - { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.31%"}; - { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"}; - { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"}; - { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"}; - { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.11%"}; - { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"}; - { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"}; - { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"}; - { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"}; - Prev = "AQ40Viscidus"; - Next = "AQ40Emperors"; - }; - - AtlasLoot_Data["AQ40Emperors"] = { - { 1, 20930, "", "=q4=Vek'lor's Diadem", "=q1=#m1# =ds=#c7#, #c1#, #c6#, #c2#, #c4#", "", "100%"}; - { 2, 21600, "", "=q4=Boots of Epiphany", "=ds=#s12#, #a1#", "", "15.77%"}; - { 3, 21602, "", "=q4=Qiraji Execution Bracers", "=ds=#s8#, #a2#", "", "15.95%"}; - { 4, 21599, "", "=q4=Vek'lor's Gloves of Devastation", "=ds=#s9#, #a3#", "", "15.77%"}; - { 5, 21598, "", "=q4=Royal Qiraji Belt", "=ds=#s10#, #a4#", "", "9.84%"}; - { 6, 21597, "", "=q4=Royal Scepter of Vek'lor", "=ds=#s15#", "", "6.99%"}; - { 7, 21601, "", "=q4=Ring of Emperor Vek'lor", "=ds=#s13#", "", "17.27%"}; - { 8, 20735, "", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# (300)", "", "6.62%"}; - { 11, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "6.25%"}; - { 12, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"}; - { 13, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"}; - { 14, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"}; - { 15, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"}; - { 16, 20926, "", "=q4=Vek'nilash's Circlet", "=q1=#m1# =ds=#c8#, #c3#, #c5#, #c9#", "", "100%"}; - { 17, 21604, "", "=q4=Bracelets of Royal Redemption", "=ds=#s8#, #a1#", "", "12.51%"}; - { 18, 21605, "", "=q4=Gloves of the Hidden Temple", "=ds=#s9#, #a2#", "", "15.45%"}; - { 19, 21609, "", "=q4=Regenerating Belt of Vek'nilash", "=ds=#s10#, #a2#", "", "13.35%"}; - { 20, 21607, "", "=q4=Grasp of the Fallen Emperor", "=ds=#s10#, #a3#", "", "2.72%"}; - { 21, 21606, "", "=q4=Belt of the Fallen Emperor", "=ds=#s10#, #a4#", "", "12.22%"}; - { 22, 21679, "", "=q4=Kalimdor's Revenge", "=ds=#h2#, #w10#", "", "9.25%"}; - { 23, 21608, "", "=q4=Amulet of Vek'nilash", "=ds=#s2#", "", "14.25%"}; - { 24, 20726, "", "=q3=Formula: Enchant Gloves - Threat", "=ds=#p4# (300)", "", "6.24%"}; - { 26, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.00%"}; - { 27, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"}; - { 28, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"}; - { 29, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"}; - Prev = "AQ40Huhuran"; - Next = "AQ40Ouro"; - }; - - AtlasLoot_Data["AQ40Ouro"] = { - { 1, 21615, "", "=q4=Don Rigoberto's Lost Hat", "=ds=#s1#, #a1#", "", "28.63%"}; - { 2, 21611, "", "=q4=Burrower Bracers", "=ds=#s8#, #a1#", "", "24.44%"}; - { 3, 23558, "", "=q4=The Burrower's Shell", "=ds=#s14#", "", "2.90%"}; - { 4, 23570, "", "=q4=Jom Gabbar", "=ds=#s14#", "", "2.80%"}; - { 5, 23557, "", "=q4=Larvae of the Great Worm", "=ds=#w5#", "", "3.95%"}; - { 6, 21610, "", "=q4=Wormscale Blocker", "=ds=#w8#", "", "16.54%"}; - { 8, 20927, "", "=q4=Ouro's Intact Hide", "=q1=#m1# =ds=#c3#, #c5#, #c6#, #c9#", "", "100%"}; - { 9, 20931, "", "=q4=Skin of the Great Sandworm", "=q1=#m1# =ds=#c8#, #c7#, #c1#, #c2#, #c4#", "", "100%"}; - { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.20%"}; - { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#"}; - { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#"}; - { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4# =ds=#h1#, #w6#"}; - { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.10%"}; - { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4# =ds=#h1#, #w1#"}; - { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#"}; - { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#"}; - { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#"}; - Prev = "AQ40Emperors"; - Next = "AQ40CThun"; - }; - - AtlasLoot_Data["AQ40CThun"] = { - { 1, 21583, "", "=q4=Cloak of Clarity", "=ds=#s4#", "", "14.45%"}; - { 2, 22731, "", "=q4=Cloak of the Devoured", "=ds=#s4#", "", "16.34%"}; - { 3, 21585, "", "=q4=Dark Storm Gauntlets", "=ds=#s9#, #a1#", "", "13.63%"}; - { 4, 22730, "", "=q4=Eyestalk Waist Cord", "=ds=#s10#, #a1#", "", "10.41%"}; - { 5, 21582, "", "=q4=Grasp of the Old God", "=ds=#s10#, #a1#", "", "15.04%"}; - { 6, 21586, "", "=q4=Belt of Never-ending Agony", "=ds=#s10#, #a2#", "", "11.24%"}; - { 7, 21581, "", "=q4=Gauntlets of Annihilation", "=ds=#s9#, #a4#", "", "12.04%"}; - { 9, 22732, "", "=q4=Mark of C'Thun", "=ds=#s2#", "", "10.62%"}; - { 10, 21596, "", "=q4=Ring of the Godslayer", "=ds=#s13#", "", "11.83%"}; - { 11, 21579, "", "=q4=Vanquished Tentacle of C'Thun", "=ds=#s14#", "", "12.18%"}; - { 12, 21126, "", "=q4=Death's Sting", "=ds=#h1#, #w4#", "", "6.84%"}; - { 13, 21134, "", "=q4=Dark Edge of Insanity", "=ds=#h2#, #w1#", "", "5.93%"}; - { 14, 21839, "", "=q4=Scepter of the False Prophet", "=ds=#h3#, #w6#", "", "4.75%"}; - { 16, 20933, "", "=q4=Husk of the Old God", "=q1=#m1# =ds=#c8#, #c3#, #c1#, #c5#", "", "100%"}; - { 17, 20929, "", "=q4=Carapace of the Old God", "=q1=#m1# =ds=#c7#, #c6#, #c9#, #c2#, #c4#", "", "100%"}; - { 19, 21221, "", "=q4=Eye of C'Thun", "=ds=#m2#", "", "100%"}; - { 20, 21710, "", "=q4=Cloak of the Fallen God", "=q1=#m4#: =ds=#s4#"}; - { 21, 21712, "", "=q4=Amulet of the Fallen God", "=q1=#m4#: =ds=#s2#"}; - { 22, 21709, "", "=q4=Ring of the Fallen God", "=q1=#m4#: =ds=#s13#"}; - { 24, 22734, "", "=q1=Base of Atiesh", "=ds=#m3#"}; - { 25, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#"}; - { 26, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#"}; - { 27, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#"}; - { 28, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#"}; - Prev = "AQ40Ouro"; - }; - - AtlasLoot_Data["AQ40Trash1"] = { - { 1, 21838, "", "=q4=Garb of Royal Ascension", "=ds=#s5#, #a1#", "", "0.20%"}; - { 2, 21888, "", "=q4=Gloves of the Immortal", "=ds=#s9#, #a1#", "", "0.16%"}; - { 3, 21889, "", "=q4=Gloves of the Redeemed Prophecy", "=ds=#s9#, #a4# =q1=#m1# =ds=#c4#", "", "0.39%"}; - { 4, 21836, "", "=q4=Ritssyn's Ring of Chaos", "=ds=#s13#", "", "0.18%"}; - { 5, 21891, "", "=q4=Shard of the Fallen Star", "=ds=#s14#", "", "0.59%"}; - { 6, 21856, "", "=q4=Neretzek, The Blood Drinker", "=ds=#h2#, #w1#", "", "0.20%"}; - { 7, 21837, "", "=q4=Anubisath Warhammer", "=ds=#h1#, #w6#", "", "0.21%"}; - { 9, 22202, "", "=q1=Small Obsidian Shard", "=ds=#e8#"}; - { 10, 22203, "", "=q1=Large Obsidian Shard", "=ds=#e8#"}; - { 16, 21218, "", "=q3=Blue Qiraji Resonating Crystal", "=ds=#e12#", "", "10.64%"}; - { 17, 21324, "", "=q3=Yellow Qiraji Resonating Crystal", "=ds=#e12#", "", "12.15%"}; - { 18, 21323, "", "=q3=Green Qiraji Resonating Crystal", "=ds=#e12#", "", "11.62%"}; - { 19, 21321, "", "=q3=Red Qiraji Resonating Crystal", "=ds=#e12#", "", "1.39%"}; - Next = "AQ40Trash2"; - }; - - AtlasLoot_Data["AQ40Trash2"] = { - { 1, 20876, "", "=q3=Idol of Death", "=ds=#e15#", "", "0.26%"}; - { 2, 20879, "", "=q3=Idol of Life", "=ds=#e15#", "", "0.29%"}; - { 3, 20875, "", "=q3=Idol of Night", "=ds=#e15#", "", "0.29%"}; - { 4, 20878, "", "=q3=Idol of Rebirth", "=ds=#e15#", "", "0.28%"}; - { 5, 20881, "", "=q3=Idol of Strife", "=ds=#e15#", "", "0.21%"}; - { 6, 20877, "", "=q3=Idol of the Sage", "=ds=#e15#", "", "0.33%"}; - { 7, 20874, "", "=q3=Idol of the Sun", "=ds=#e15#", "", "0.21%"}; - { 8, 20882, "", "=q3=Idol of War", "=ds=#e15#", "", "0.30%"}; - { 10, 21230, "", "=q1=Ancient Qiraji Artifact", "=ds=#m2#"}; - { 12, 21762, "", "=q1=Greater Scarab Coffer Key", "=ds=#e9#", "", "7.03%"}; - { 16, 20864, "", "=q2=Bone Scarab", "=ds=#e15#", "", "0.84%"}; - { 17, 20861, "", "=q2=Bronze Scarab", "=ds=#e15#", "", "0.88%"}; - { 18, 20863, "", "=q2=Clay Scarab", "=ds=#e15#", "", "0.95%"}; - { 19, 20862, "", "=q2=Crystal Scarab", "=ds=#e15#", "", "0.99%"}; - { 20, 20859, "", "=q2=Gold Scarab", "=ds=#e15#", "", "0.96%"}; - { 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%"}; - { 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%"}; - { 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%"}; - Prev = "AQ40Trash1"; - }; - - ------------------- - --- AQ Enchants --- - ------------------- - - AtlasLoot_Data["AQEnchants"] = { - { 1, 20728, "", "=q3=Formula: Enchant Gloves - Frost Power", "=ds=#p4# (300)"}; - { 2, 20731, "", "=q3=Formula: Enchant Gloves - Superior Agility", "=ds=#p4# (300)"}; - { 3, 20734, "", "=q3=Formula: Enchant Cloak - Stealth", "=ds=#p4# (300)"}; - { 4, 20729, "", "=q3=Formula: Enchant Gloves - Fire Power", "=ds=#p4# (300)"}; - { 5, 20736, "", "=q3=Formula: Enchant Cloak - Dodge", "=ds=#p4# (300)"}; - { 6, 20730, "", "=q3=Formula: Enchant Gloves - Healing Power", "=ds=#p4# (300)"}; - { 7, 20727, "", "=q3=Formula: Enchant Gloves - Shadow Power", "=ds=#p4# (300)"}; - }; - - AtlasLoot_Data["AQOpening"] = { - { 1, 21138, "", "=q1=Red Scepter Shard", "=ds=#m3#"}; - { 2, 21530, "", "=q4=Onyx Embedded Leggings", "=ds=#s11#, #a3#"}; - { 3, 21529, "", "=q4=Amulet of Shadow Shielding", "=ds=#s2#"}; - { 5, 21139, "", "=q1=Green Scepter Shard", "=ds=#m3#"}; - { 6, 21532, "", "=q4=Drudge Boots", "=ds=#s12#, #a2#"}; - { 7, 21531, "", "=q4=Drake Tooth Necklace", "=ds=#s2#"}; - { 9, 21137, "", "=q1=Blue Scepter Shard", "=ds=#m3#"}; - { 10, 21517, "", "=q4=Gnomish Turban of Psychic Might", "=ds=#s1#, #a1#"}; - { 11, 21527, "", "=q4=Darkwater Robes", "=ds=#s5#, #a1#"}; - { 12, 21526, "", "=q4=Band of Icy Depths", "=ds=#s13#"}; - { 13, 21025, "", "=q4=Recipe: Dirge's Kickin' Chimaerok Chops", "=ds=#p3# (300)"}; - { 16, 21175, "", "=q1=The Scepter of the Shifting Sands", "=ds=#m3#"}; - { 17, 21176, "", "=q5=Black Qiraji Resonating Crystal", "=ds=#e12#"}; - { 18, 21522, "", "=q4=Shadowsong's Sorrow", "=ds=#h1#, #w4#"}; - { 19, 21523, "", "=q4=Fang of Korialstrasz", "=ds=#h3#, #w4#"}; - { 20, 21520, "", "=q4=Ravencrest's Legacy", "=ds=#h1#, #w10#"}; - { 21, 21521, "", "=q4=Runesword of the Red", "=ds=#h3#, #w10#"}; - }; - - ------------------------- - --- Blackfathom Deeps --- - ------------------------- - - AtlasLoot_Data["BlackfathomDeeps1"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Ghamoo-ra"], ""}; - { 2, 6908, "", "=q3=Ghamoo-ra's Bind", "=ds=#s10#, #a1#", "", "45.81%"}; - { 3, 6907, "", "=q3=Tortoise Armor", "=ds=#s5#, #a3#", "", "30.59%"}; - { 5, 0, "INV_Box_01", "=q6="..BabbleBoss["Lady Sarevess"], ""}; - { 6, 888, "", "=q3=Naga Battle Gloves", "=ds=#s9#, #a2#", "", "33.72%"}; - { 7, 11121, "", "=q3=Darkwater Talwar", "=ds=#h1#, #w10#", "", "33.10%"}; - { 8, 3078, "", "=q3=Naga Heartpiercer", "=ds=#w2#", "", "16.87%"}; - { 10, 0, "INV_Box_01", "=q6="..BabbleBoss["Gelihast"], ""}; - { 11, 6906, "", "=q3=Algae Fists", "=ds=#s9#, #a3#", "", "38.24%"}; - { 12, 6905, "", "=q3=Reef Axe", "=ds=#h2#, #w1#", "", "42.29%"}; - { 13, 1470, "", "=q1=Murloc Skin Bag", "=ds=#m12# #e1#", "", "14.13%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Baron Aquanis"], ""}; - { 17, 16782, "", "=q2=Strange Water Globe", "=ds=#m2# (#m6#)", "", "90.35%"}; - { 18, 16886, "", "=q3=Outlaw Sabre", "=q1=#m4#: =ds=#h1#, #w10#"}; - { 19, 16887, "", "=q3=Witch's Finger", "=q1=#m4#: =ds=#s15#"}; - { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Twilight Lord Kelris"], ""}; - { 22, 6903, "", "=q3=Gaze Dreamer Pants", "=ds=#s11#, #a1#", "", "31.90%"}; - { 23, 1155, "", "=q3=Rod of the Sleepwalker", "=ds=#w9#", "", "45.59%"}; - { 24, 5881, "", "=q1=Head of Kelris", "=ds=#m3#", "", "100%"}; - { 26, 0, "INV_Box_01", "=q6="..BabbleBoss["Old Serra'kis"], ""}; - { 27, 6901, "", "=q3=Glowing Thresher Cape", "=ds=#s4#", "", "36.14%"}; - { 28, 6902, "", "=q3=Bands of Serra'kis", "=ds=#s8#, #a2#", "", "29.24%"}; - { 29, 6904, "", "=q3=Bite of Serra'kis", "=ds=#h1#, #w4#", "", "15.34%"}; - Next = "BlackfathomDeeps2"; - }; - - AtlasLoot_Data["BlackfathomDeeps2"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Aku'mai"], ""}; - { 2, 6910, "", "=q3=Leech Pants", "=ds=#s11#, #a1#", "", "29.72%"}; - { 3, 6911, "", "=q3=Moss Cinch", "=ds=#s10#, #a2#", "", "29.01%"}; - { 4, 6909, "", "=q3=Strike of the Hydra", "=ds=#h2#, #w10#", "", "14.46%"}; - { 6, 0, "INV_Box_01", "=q6="..AL["Quest Item"], ""}; - { 7, 5359, "", "=q1=Lorgalis Manuscript", "=ds=#m3#", "", "100%"}; - { 8, 16762, "", "=q1=Fathom Core", "=ds=#m3#", "", "100%"}; - { 16, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], ""}; - { 17, 1486, "", "=q3=Tree Bark Jacket", "=ds=#s5#, #a1#", "", "0.02%"}; - { 18, 3416, "", "=q3=Martyr's Chain", "=ds=#s5#, #a3#", "", "0.01%"}; - { 19, 1491, "", "=q3=Ring of Precision", "=ds=#s13#", "", "0.01%"}; - { 20, 3413, "", "=q3=Doomspike", "=ds=#h1#, #w4#", "", "0.01%"}; - { 21, 2567, "", "=q3=Evocator's Blade", "=ds=#h1#, #w4#", "", "0.02%"}; - { 22, 3417, "", "=q3=Onyx Claymore", "=ds=#h2#, #w10#", "", "0.01%"}; - { 23, 1454, "", "=q3=Axe of the Enforcer", "=ds=#h1#, #w1#", "", "0.01%"}; - { 24, 1481, "", "=q3=Grimclaw", "=ds=#h1#, #w1#", "", "0.01%"}; - { 25, 3414, "", "=q3=Crested Scepter", "=ds=#h1#, #w6#", "", "0.01%"}; - { 26, 3415, "", "=q3=Staff of the Friar", "=ds=#w9#", "", "0.02%"}; - { 27, 2271, "", "=q3=Staff of the Blessed Seer", "=ds=#w9#", "", "0.02%"}; - Prev = "BlackfathomDeeps1"; - }; - - -------------------------------------------- - --- Blackrock Mountain: Blackrock Dephts --- - -------------------------------------------- - - AtlasLoot_Data["BRDPyron"] = { - { 1, 14486, "", "=q3=Pattern: Cloak of Fire", "=ds=#p8# (275)", "", "17.95%"}; - }; - - AtlasLoot_Data["BRDLordRoccor"] = { - { 1, 22234, "", "=q3=Mantle of Lost Hope", "=ds=#s3#, #a1#", "", "20.48%"}; - { 2, 11632, "", "=q3=Earthslag Shoulders", "=ds=#s3#, #a4#", "", "19.99%"}; - { 3, 22397, "", "=q3=Idol of Ferocity", "=ds=#s16#, #w14#", "", "19.58%"}; - { 4, 11631, "", "=q3=Stoneshell Guard", "=ds=#w8#", "", "22.06%"}; - { 5, 11630, "", "=q3=Rockshard Pellets", "=ds=#w18#", "", "16.82%"}; - { 16, 11813, "", "=q2=Formula: Smoking Heart of the Mountain", "=ds=#p4# (265)", "", "14.79%"}; - { 17, 11811, "", "=q3=Smoking Heart of the Mountain", "=ds=#s14#"}; - }; - - AtlasLoot_Data["BRDHighInterrogatorGerstahn"] = { - { 1, 11626, "", "=q3=Blackveil Cape", "=ds=#s4#", "", "15.98%"}; - { 2, 11624, "", "=q3=Kentic Amice", "=ds=#s3#, #a1#", "", "22.45%"}; - { 3, 22240, "", "=q3=Greaves of Withering Despair", "=ds=#s12#, #a3#", "", "16.81%"}; - { 4, 11625, "", "=q3=Enthralled Sphere", "=ds=#s15#", "", "23.14%"}; - { 6, 11140, "", "=q1=Prison Cell Key", "=ds=#e9#"}; - }; - - AtlasLoot_Data["BRDArena"] = { - { 1, 11677, "", "=q3=Graverot Cape", "=ds=#s4# =q2=#brd1#", "", "23.07%"}; - { 2, 11675, "", "=q3=Shadefiend Boots", "=ds=#s12#, #a2# =q2=#brd1#", "", "25.84%"}; - { 3, 11731, "", "=q3=Savage Gladiator Greaves", "=ds=#s12#, #a3# =q2=#brd1#", "", "15.14%"}; - { 4, 11678, "", "=q3=Carapace of Anub'shiah", "=ds=#s5#, #a4# =q2=#brd1#", "", "15.78%"}; - { 6, 11685, "", "=q3=Splinthide Shoulders", "=ds=#s3#, #a2# =q2=#brd2#", "", "24.49%"}; - { 7, 11686, "", "=q3=Girdle of Beastial Fury", "=ds=#s10#, #a2# =q2=#brd2#", "", "15.85%"}; - { 8, 11679, "", "=q3=Rubicund Armguards", "=ds=#s8#, #a3# =q2=#brd2#", "", "25.13%"}; - { 9, 11730, "", "=q3=Savage Gladiator Grips", "=ds=#s9#, #a3# =q2=#brd2#", "", "14.12%"}; - { 11, 11726, "", "=q4=Savage Gladiator Chain", "=ds=#s5#, #a3# =q2=#brd3#", "", "14.52%"}; - { 12, 22271, "", "=q3=Leggings of Frenzied Magic", "=ds=#s11#, #a2# =q2=#brd3#", "", "23.24%"}; - { 13, 11729, "", "=q3=Savage Gladiator Helm", "=ds=#s1#, #a3# =q2=#brd3#, #brd5#", "", "10.08%"}; - { 14, 11722, "", "=q3=Dregmetal Spaulders", "=ds=#s3#, #a3# =q2=#brd4#", "", "15.07%"}; - { 15, 11703, "", "=q3=Stonewall Girdle", "=ds=#s10#, #a4# =q2=#brd4#", "", "31.45%"}; - { 16, 22270, "", "=q3=Entrenching Boots", "=ds=#s12#, #a4# =q2=#brd4#", "", "11.97%"}; - { 17, 22257, "", "=q3=Bloodclot Band", "=ds=#s13# =q2=#brd3#", "", "26.28%"}; - { 18, 22266, "", "=q3=Flarethorn", "=ds=#h1#, #w4# =q2=#brd3#", "", "17.98%"}; - { 19, 11702, "", "=q3=Grizzle's Skinner", "=ds=#h1#, #w1# =q2=#brd4#", "", "20.62%"}; - { 20, 11610, "", "=q3=Plans: Dark Iron Pulverizer", "=ds=#p2# (265) =q2=#brd4#", "", "69.76%"}; - { 22, 11634, "", "=q3=Silkweb Gloves", "=ds=#s9#, #a1# =q2=#brd5#", "", "24.02%"}; - { 23, 11633, "", "=q3=Spiderfang Carapace", "=ds=#s5#, #a4# =q2=#brd5#", "", "20.61%"}; - { 24, 11635, "", "=q3=Hookfang Shanker", "=ds=#h1#, #w4# =q2=#brd5#", "", "17.26%"}; - { 26, 11662, "", "=q3=Ban'thok Sash", "=ds=#s10#, #a1# =q2=#brd6#", "", "23.77%"}; - { 27, 11665, "", "=q3=Ogreseer Fists", "=ds=#s9#, #a2# =q2=#brd6#", "", "28.16%"}; - { 28, 11728, "", "=q3=Savage Gladiator Leggings", "=ds=#s11#, #a3# =q2=#brd6#", "", "14.95%"}; - { 29, 11824, "", "=q3=Cyclopean Band", "=ds=#s13# =q2=#brd6#", "", "18.37%"}; - }; - - AtlasLoot_Data["BRDTheldren"] = { - { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n17#"}; - { 2, 22330, "", "=q3=Shroud of Arcane Mastery", "=ds=#s4#", "", "19.73%"}; - { 3, 22305, "", "=q3=Ironweave Mantle", "=ds=#s3#, #a1#", "", "30.39%"}; - { 4, 22317, "", "=q3=Lefty's Brass Knuckle", "=ds=#h1#, #w13#", "", "26.15%"}; - { 5, 22318, "", "=q3=Malgen's Long Bow", "=ds=#w2#", "", "22.88%"}; - { 7, 22047, "", "=q1=Top Piece of Lord Valthalak's Amulet", "=ds=#m3#"}; - }; - - AtlasLoot_Data["BRDHoundmaster"] = { - { 1, 11623, "", "=q3=Spritecaster Cape", "=ds=#s4#", "", "32.09%"}; - { 2, 11626, "", "=q3=Blackveil Cape", "=ds=#s4#", "", "0.60%"}; - { 3, 11627, "", "=q3=Fleetfoot Greaves", "=ds=#s12#, #a3#", "", "32.09%"}; - { 4, 11628, "", "=q3=Houndmaster's Bow", "=ds=#w2#", "", "12.14%"}; - { 5, 11629, "", "=q3=Houndmaster's Rifle", "=ds=#w5#", "", "11.18%"}; - }; - - AtlasLoot_Data["BRDForgewright"] = { - { 1, 11000, "", "=q1=Shadowforge Key", "=q1=#m4#: =ds=#e9#"}; - }; - - AtlasLoot_Data["BRDPyromantLoregrain"] = { - { 1, 11747, "", "=q3=Flamestrider Robes", "=ds=#s5#, #a2#", "", "18.10%"}; - { 2, 11749, "", "=q3=Searingscale Leggings", "=ds=#s11#, #a3#", "", "21.29%"}; - { 3, 11750, "", "=q3=Kindling Stave", "=ds=#w9#", "", " 16.19%"}; - { 4, 11748, "", "=q3=Pyric Caduceus", "=ds=#w12#", "", "30.20%"}; - { 6, 11207, "", "=q2=Formula: Enchant Weapon - Fiery Weapon", "=ds=#p4# (265)", "", "13.32%"}; - }; - - AtlasLoot_Data["BRDTheVault"] = { - { 1, 0, "INV_Box_01", "=q6=#x3#", ""}; - { 2, 11309, "", "=q1=The Heart of the Mountain", "=ds=#m3#", "", "100%"}; - { 4, 0, "INV_Box_01", "=q6=#x5#", ""}; - { 5, 22256, "", "=q3=Mana Shaping Handwraps", "=ds=#s9#, #a1#", "", "4.49%"}; - { 6, 11929, "", "=q3=Haunting Specter Leggings", "=ds=#s11#, #a1#", "", "21.12%"}; - { 7, 11926, "", "=q3=Deathdealer Breastplate", "=ds=#s5#, #a3#", "", "21.57%"}; - { 8, 22205, "", "=q3=Black Steel Bindings", "=ds=#s8#, #a4#", "", "4.24%"}; - { 9, 22255, "", "=q3=Magma Forged Band", "=ds=#s13#", "", "4.02%"}; - { 10, 11920, "", "=q3=Wraith Scythe", "=ds=#h1#, #w1#", "", "21.12%"}; - { 11, 11923, "", "=q3=The Hammer of Grace", "=ds=#h3#, #w6#", "", "19.84%"}; - { 12, 22254, "", "=q3=Wand of Eternal Light", "=ds=#w12#", "", "3.65%"}; - { 16, 0, "INV_Box_01", "=q6=#x4#", ""}; - { 17, 11752, "", "=q1=Black Blood of the Tormented", "=ds=#m3#", "", "44.48%"}; - { 18, 11751, "", "=q1=Burning Essence", "=ds=#m3#", "", "39.35%"}; - { 19, 11753, "", "=q1=Eye of Kajal", "=ds=#m3#", "", "39.95%"}; - }; - - AtlasLoot_Data["BRDWarderStilgiss"] = { - { 1, 11782, "", "=q3=Boreal Mantle", "=ds=#s3#, #a1#", "", "18.38%"}; - { 2, 22241, "", "=q3=Dark Warder's Pauldrons", "=ds=#s3#, #a2#", "", "18.38%"}; - { 3, 11783, "", "=q3=Chillsteel Girdle", "=ds=#s10#, #a3#", "", "20.50%"}; - { 4, 11784, "", "=q3=Arbiter's Blade", "=ds=#h3#, #w10#", "", "21.54%"}; - }; - - AtlasLoot_Data["BRDVerek"] = { - { 1, 22242, "", "=q3=Verek's Leash", "=ds=#s10#, #a3#", "", "9.78%"}; - { 2, 11755, "", "=q3=Verek's Collar", "=ds=#s2#", "", "9.54%"}; - }; - - AtlasLoot_Data["BRDFineousDarkvire"] = { - { 1, 11839, "", "=q3=Chief Architect's Monocle", "=ds=#s1#, #a1#", "", "15.28%"}; - { 2, 11841, "", "=q3=Senior Designer's Pantaloons", "=ds=#s11#, #a1#", "", "21.25%"}; - { 3, 11842, "", "=q3=Lead Surveyor's Mantle", "=ds=#s3#, #a3#", "", "20.83%"}; - { 4, 22223, "", "=q3=Foreman's Head Protector", "=ds=#s1#, #a4#", "", "19.73%"}; - { 6, 11840, "", "=q1=Master Builder's Shirt", "#s6#", "", "3.9%"}; - { 8, 10999, "", "=q1=Ironfel", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["BRDLordIncendius"] = { - { 1, 11768, "", "=q3=Incendic Bracers", "=ds=#s8#, #a1#", "", "1.30%"}; - { 2, 11766, "", "=q3=Flameweave Cuffs", "=ds=#s8#, #a1# =q2=#m16#", "", "18.88%"}; - { 3, 11764, "", "=q3=Cinderhide Armsplints", "=ds=#s8#, #a2# =q2=#m16#", "", "18.33%"}; - { 4, 11765, "", "=q3=Pyremail Wristguards", "=ds=#s8#, #a3# =q2=#m16#", "", "18.85%"}; - { 5, 11767, "", "=q3=Emberplate Armguards", "=ds=#s8#, #a4# =q2=#m16#", "", "19.24%"}; - { 6, 19268, "", "=q3=Ace of Elementals", "=ds=#e16#", "", "2.10%"}; - { 8, 21987, "", "=q1=Incendicite of Incendius", "=ds=#m3#"}; - { 9, 11126, "", "=q1=Tablet of Kurniya", "=ds=#m3#"}; - }; - - AtlasLoot_Data["BRDBaelGar"] = { - { 1, 11807, "", "=q3=Sash of the Burning Heart", "=ds=#s10#, #a1#", "", "13.59%"}; - { 2, 11802, "", "=q3=Lavacrest Leggings", "=ds=#s11#, #a4#", "", "26.75%"}; - { 3, 11805, "", "=q3=Rubidium Hammer", "=ds=#h1#, #w6#", "", "17.02%"}; - { 4, 11803, "", "=q3=Force of Magma", "=ds=#h2#, #w6#", "", "27.47%"}; - }; - - AtlasLoot_Data["BRDGeneralAngerforge"] = { - { 1, 11821, "", "=q3=Warstrife Leggings", "=ds=#s11#, #a2#", "", "16.41%"}; - { 2, 11820, "", "=q3=Royal Decorated Armor", "=ds=#s5#, #a3#", "", "18.55%"}; - { 3, 11810, "", "=q3=Force of Will", "=ds=#s14#", "", "12.97%"}; - { 4, 11817, "", "=q3=Lord General's Sword", "=ds=#h1#, #w10# ", "", "14.72%"}; - { 5, 11816, "", "=q3=Angerforge's Battle Axe", "=ds=#h2#, #w1#", "", "16.41%"}; - { 7, 11464, "", "=q1=Marshal Windsor's Lost Information", "=ds=#m3#"}; - }; - - AtlasLoot_Data["BRDGolemLordArgelmach"] = { - { 1, 11822, "", "=q3=Omnicast Boots", "=ds=#s12#, #a1#", "", "26.73%"}; - { 2, 11823, "", "=q3=Luminary Kilt", "=ds=#s11#, #a2#", "", "25.73%"}; - { 3, 11669, "", "=q3=Naglering", "=ds=#s13#", "", "22.92%"}; - { 4, 11819, "", "=q3=Second Wind", "=ds=#s14#", "", "5.75%"}; - { 6, 21956, "", "=q2=Design: Dark Iron Scorpid", "=ds=#p12# (300)"}; - { 8, 11268, "", "=q1=Head of Argelmach", "=ds=#m3#"}; - { 9, 11465, "", "=q1=Marshal Windsor's Lost Information", "=ds=#m3#"}; - }; - - AtlasLoot_Data["BRDGuzzler"] = { - { 1, 0, "INV_Box_01", "=q6=#n48#", ""}; - { 2, 11735, "", "=q3=Ragefury Eyepatch", "=ds=#s1#, #a2#", "", "8.11%"}; - { 3, 18043, "", "=q3=Coal Miner Boots", "=ds=#s12#, #a2#", "", "23.87%"}; - { 4, 22275, "", "=q3=Firemoss Boots", "=ds=#s12#, #a2#", "", "23.87%"}; - { 5, 18044, "", "=q3=Hurley's Tankard", "=ds=#h1#, #w6#", "", "31.02%"}; - { 6, 11312, "", "=q1=Lost Thunderbrew Recipe", "=ds=#m3#"}; - { 8, 0, "INV_Box_01", "=q6=#n49#", ""}; - { 9, 22212, "", "=q3=Golem Fitted Pauldrons", "=ds=#s3#, #a3#", "", "26.04%"}; - { 10, 11745, "", "=q3=Fists of Phalanx", "=ds=#s9#, #a4#", "", "29.79%"}; - { 11, 11744, "", "=q3=Bloodfist", "=ds=#h1#, #w13#", "", "28.48%"}; - { 16, 0, "INV_Box_01", "=q6=#n50#", ""}; - { 17, 11612, "", "=q3=Plans: Dark Iron Plate", "=ds=#p2# (285)", "", "22.20%"}; - { 18, 2662, "", "=q2=Ribbly's Quiver", "=ds=#m13# #w19#", "", "17.03%"}; - { 19, 2663, "", "=q2=Ribbly's Bandolier", "=ds=#m13# #w20#", "", "15.73%"}; - { 20, 11742, "", "=q2=Wayfarer's Knapsack", "=ds=#m13# #e1#", "", "25.07%"}; - { 21, 11313, "", "=q1=Ribbly's Head", "=ds=#m3#"}; - { 23, 0, "INV_Box_01", "=q6=#n51#", ""}; - { 24, 12793, "", "=q3=Mixologist's Tunic", "=ds=#s5#, #a2#", "", "24.87%"}; - { 25, 12791, "", "=q3=Barman Shanker", "=ds=#h1#, #w4#", "", "6.97%"}; - { 26, 13483, "", "=q2=Recipe: Transmute Fire to Earth", "=ds=#p1# (275)"}; - { 27, 18653, "", "=q2=Schematic: Goblin Jumper Cables XL", "=ds=#p5# (265)", "", "14.13%"}; - { 28, 15759, "", "=q1=Pattern: Black Dragonscale Breastplate", "=ds=#p7# (290)"}; - { 29, 11602, "", "=q1=Grim Guzzler Key", "=ds=#e9#"}; - { 30, 11325, "", "=q1=Dark Iron Ale Mug", "=ds=#m3#"}; - }; - - AtlasLoot_Data["BRDFlamelash"] = { - { 1, 11808, "", "=q4=Circle of Flame", "=ds=#s1#, #a1#", "", "0.84%"}; - { 3, 11812, "", "=q3=Cape of the Fire Salamander", "=ds=#s4#", "", "25.25%"}; - { 4, 11814, "", "=q3=Molten Fists", "=ds=#s9#, #a3#", "", "27.88%"}; - { 5, 11832, "", "=q3=Burst of Knowledge", "=ds=#s14#", "", "14.61%"}; - { 6, 11809, "", "=q3=Flame Wrath", "=ds=#w7#", "", "18.69%"}; - { 8, 23320, "", "=q3=Tablet of Flame Shock VI", "=ds=#e10# =q1=#m1# =ds=#c7#"}; - }; - - AtlasLoot_Data["BRDPanzor"] = { - { 1, 22245, "", "=q3=Soot Encrusted Footwear", "=ds=#s12#,#a1#", "", "22.06%"}; - { 2, 11787, "", "=q3=Shalehusk Boots", "=ds=#s12#, #a4#", "", "19.96%"}; - { 3, 11786, "", "=q3=Stone of the Earth", "=ds=#h2#, #w10#", "", "20.38%"}; - { 4, 11785, "", "=q3=Rock Golem Bulwark", "=ds=#w8#", "", "21.22%"}; - }; - - AtlasLoot_Data["BRDTomb"] = { - { 1, 0, "INV_Box_01", "=q6=#x2#", ""}; - { 2, 11929, "", "=q3=Haunting Specter Leggings", "=ds=#s11#, #a1#", "", "22.60%"}; - { 3, 11925, "", "=q3=Ghostshroud", "=ds=#s1#, #a2#", "", "21.63%"}; - { 4, 11926, "", "=q3=Deathdealer Breastplate", "=ds=#s5#, #a3#", "", "22.08%"}; - { 5, 11927, "", "=q3=Legplates of the Eternal Guardian", "=ds=#s11#, #a4#", "", "65.45%"}; - { 6, 11922, "", "=q3=Blood-etched Blade", "=ds=#h3#, #w4#", "", "22.05%"}; - { 7, 11920, "", "=q3=Wraith Scythe", "=ds=#h1# #w1#", "", "22.61%"}; - { 8, 11923, "", "=q3=The Hammer of Grace", "=ds=#h3#, #w6#", "", "21.29%"}; - { 9, 11921, "", "=q3=Impervious Giant", "=ds=#h2#, #w6#", "", "22.23%"}; - }; - - AtlasLoot_Data["BRDLyceum"] = { - { 1, 0, "INV_Box_01", "=q6=#n44#", ""}; - { 2, 11885, "", "=q1=Shadowforge Torch", "=ds=#m20#"}; - }; - - AtlasLoot_Data["BRDMagmus"] = { - { 1, 11746, "", "=q3=Golem Skull Helm", "=ds=#s1#, #a4#", "", "20.46%"}; - { 2, 11935, "", "=q3=Magmus Stone", "=ds=#s15#", "", "21.26%"}; - { 3, 22395, "", "=q3=Totem of Rage", "=ds=#s16#, #w15#", "", "10.09%"}; - { 4, 22400, "", "=q3=Libram of Truth", "=ds=#s16#, #w16#", "", "9.75%"}; - { 5, 22208, "", "=q3=Lavastone Hammer", "=ds=#h2#, #w6#", "", "22.79%"}; - }; - - AtlasLoot_Data["BRDImperatorDagranThaurissan"] = { - { 1, 11684, "", "=q4=Ironfoe", "=ds=#h1#, #w6#", "", "0.46%"}; - { 3, 11930, "", "=q3=The Emperor's New Cape", "=ds=#s4#", "", "16.16%"}; - { 4, 11924, "", "=q3=Robes of the Royal Crown", "=ds=#s5#, #a1#", "", "15.18%"}; - { 5, 22204, "", "=q3=Wristguards of Renown", "=ds=#s8#, #a2#", "", "12.92%"}; - { 6, 22207, "", "=q3=Sash of the Grand Hunt", "=ds=#s10#, #a3#", "", "15.12%"}; - { 7, 11933, "", "=q3=Imperial Jewel", "=ds=#s2#", "", "15.99%"}; - { 8, 11934, "", "=q3=Emperor's Seal", "=ds=#s13#", "", "15.41%"}; - { 9, 11815, "", "=q3=Hand of Justice", "=ds=#s14#", "", "10.43%"}; - { 16, 11931, "", "=q3=Dreadforge Retaliator", "=ds=#h2#, #w1#", "", "15.76%"}; - { 17, 11932, "", "=q3=Guiding Stave of Wisdom", "=ds=#w9#", "", "15.01%"}; - { 18, 11928, "", "=q3=Thaurissan's Royal Scepter", "=ds=#s15#", "", " 12.86%"}; - { 20, 12033, "", "=q1=Thaurissan Family Jewels", "=ds=#e7# #e1#", "", "2.2%"}; - }; - - AtlasLoot_Data["BRDPrincess"] = { - { 1, 12554, "", "=q3=Hands of the Exalted Herald", "=ds=#s9#, #a1#", "", "11.91%"}; - { 2, 12556, "", "=q3=High Priestess Boots", "=ds=#s12#, #a1#", "", "10.26%"}; - { 3, 12557, "", "=q3=Ebonsteel Spaulders", "=ds=#s3#, #a4#", "", "12.11%"}; - { 4, 12553, "", "=q3=Swiftwalker Boots", "=ds=#s12#, #a2#", "", "11.05%"}; - }; - - AtlasLoot_Data["BRDBSPlans"] = { - { 1, 11614, "", "=q2=Plans: Dark Iron Mail", "=ds=#p2# (270)", "", "13.38%"}; - { 2, 11615, "", "=q2=Plans: Dark Iron Shoulders", "=ds=#p2# (280)", "", "7.65%"}; - }; - - AtlasLoot_Data["BRDTrash"] = { - { 1, 12552, "", "=q3=Blisterbane Wrap", "=ds=#s4#", "", "0.01%"}; - { 2, 12551, "", "=q3=Stoneshield Cloak", "=ds=#s4#", "", "0.01%"}; - { 3, 12542, "", "=q3=Funeral Pyre Vestment", "=ds=#s5#, #a1#", "", "0.02%"}; - { 4, 12546, "", "=q3=Aristocratic Cuffs", "=ds=#s8#, #a1#", "", "0.01%"}; - { 5, 12550, "", "=q3=Runed Golem Shackles", "=ds=#s8#, #a2#", "", "0.02%"}; - { 6, 12547, "", "=q3=Mar Alom's Grip", "=ds=#s9#, #a2#", "", "0.01%"}; - { 7, 12549, "", "=q3=Braincage", "=ds=#s1#, #a3#", "", "0.02%"}; - { 8, 12555, "", "=q3=Battlechaser's Greaves", "=ds=#s12#, #a4#", "", "0.01%"}; - { 9, 12531, "", "=q3=Searing Needle", "=ds=#h1#, #w4#", "", "0.02%"}; - { 10, 12535, "", "=q3=Doomforged Straightedge", "=ds=#h1#, #w10#", "", "0.01%"}; - { 11, 12527, "", "=q3=Ribsplitter", "=ds=#h1#, #w1# =q2=#m16#", "", "0.02%"}; - { 12, 12528, "", "=q3=The Judge's Gavel", "=ds=#h2#, #w6#", "", "0.02%"}; - { 13, 12532, "", "=q3=Spire of the Stoneshaper", "=ds=#w9#", "", "0.01%"}; - { 16, 15781, "", "=q3=Pattern: Black Dragonscale Leggings", "=ds=#p7# (300) =q1=#n75#", "", "1.93%"}; - { 17, 15770, "", "=q3=Pattern: Black Dragonscale Shoulders", "=ds=#p7# (300) =q1=#n76#", "", "1.88%"}; - { 18, 16053, "", "=q2=Schematic: Master Engineer's Goggles", "=ds=#p5# (290) =q1=#n77#", "", "0.45%"}; - { 19, 16049, "", "=q2=Schematic: Dark Iron Bomb", "=ds=#p5# (285) =q1=#n78#", "", "1.02%"}; - { 20, 16048, "", "=q2=Schematic: Dark Iron Rifle", "=ds=#p5# (275) =q1=#n79#", "", "0.98%"}; - { 21, 18654, "", "=q2=Schematic: Gnomish Alarm-O-Bot", "=ds=#p5# (265) =q1=#n78#", "", "1.88%"}; - { 22, 18661, "", "=q2=Schematic: World Enlarger", "=ds=#p5# (260) =q1=#n78#", "", "2.00%"}; - { 24, 11754, "", "=q2=Black Diamond", "#e8#", "", "5.0%"}; - { 25, 11078, "", "=q1=Relic Coffer Key", "=ds=#e9#"}; - { 26, 18945, "", "=q1=Dark Iron Residue", "=ds=#m3#"}; - { 27, 11468, "", "=q1=Dark Iron Fanny Pack", "=ds=#m3#"}; - { 28, 11446, "", "=q1=A Crumpled Up Note", "=ds=#m2#"}; - }; - - ------------------------------------------------- - --- Blackrock Mountain: Lower Blackrock Spire --- - ------------------------------------------------- - - AtlasLoot_Data["BRMScarshieldQuartermaster"] = { - { 1, 18987, "", "=q1=Blackhand's Command", "=ds=#m2#", "", "100%"}; - }; - - AtlasLoot_Data["LBRSQuestItems"] = { - { 1, 12812, "", "=q3=Unfired Plate Gauntlets", "=ds=#m3#", "", "100%"}; - { 2, 12631, "", "=q3=Fiery Plate Gauntlets", "=q1=#m4#: =ds=#s9#, #a4#"}; - { 3, 12699, "", "=q3=Plans: Fiery Plate Gauntlets", "=q1=#m4#: =ds=#p2# (290)"}; - { 5, 12533, "", "=q1=Roughshod Pike", "=ds=#m3#"}; - { 6, 12740, "", "=q1=Fifth Mosh'aru Tablet", "=ds=#m3#"}; - { 7, 12741, "", "=q1=Sixth Mosh'aru Tablet", "=ds=#m3#"}; - { 8, 12345, "", "=q1=Bijou's Belongings", "=ds=#m3#"}; - }; - - AtlasLoot_Data["LBRSSpirestoneButcher"] = { - { 1, 12608, "", "=q3=Butcher's Apron", "=ds=#s4#", "", "54.31%"}; - { 2, 13286, "", "=q3=Rivenspike", "=ds=#h1#, #w1#", "", "35.78%"}; - }; - - AtlasLoot_Data["LBRSOmokk"] = { - { 1, 13170, "", "=q3=Skyshroud Leggings", "=ds=#s11#, #a1#", "", "8.52%"}; - { 2, 13169, "", "=q3=Tressermane Leggings", "=ds=#s11#, #a2#", "", "9.52%"}; - { 3, 13168, "", "=q3=Plate of the Shaman King", "=ds=#s5#, #a4#", "", "8.62%"}; - { 4, 13166, "", "=q3=Slamshot Shoulders", "=ds=#s3#, #a4#", "", "7.25%"}; - { 5, 13167, "", "=q3=Fist of Omokk", "=ds=#h2#, #w6#", "", "10.64%"}; - { 7, 12336, "", "=q2=Gemstone of Spirestone", "=ds=#m3#", "", "100%"}; - { 9, 12534, "", "=q1=Omokk's Head", "=ds=#m3#", "", "100%"}; - { 16, 16670, "", "=q3=Boots of Elements", "=ds=#s12#, #a3# (D1, #c7#)", "", "9.35%"}; - }; - - AtlasLoot_Data["LBRSSpirestoneLord"] = { - { 1, 13284, "", "=q3=Swiftdart Battleboots", "=ds=#s12#, #a3#", "", "48.68%"}; - { 2, 13285, "", "=q3=The Blackrock Slicer", "=ds=#h2#, #w1#", "", "34.87%"}; - }; - - AtlasLoot_Data["LBRSLordMagus"] = { - { 1, 13282, "", "=q3=Ogreseer Tower Boots", "=ds=#s12#, #a3#", "", "22.95%"}; - { 2, 13283, "", "=q3=Magus Ring", "=ds=#s13#", "", "38.01%"}; - { 3, 13261, "", "=q3=Globe of D'sak", "=ds=#s15#", "", "18.07%"}; - }; - - AtlasLoot_Data["LBRSVosh"] = { - { 1, 12626, "", "=q3=Funeral Cuffs", "=ds=#s8#, #a1#", "", "18.74%"}; - { 2, 13257, "", "=q3=Demonic Runed Spaulders", "=ds=#s3#, #a2#", "", "16.84%"}; - { 3, 13255, "", "=q3=Trueaim Gauntlets", "=ds=#s9#, #a3#", "", "18.08%"}; - { 4, 12651, "", "=q3=Blackcrow", "=ds=#w3#", "", "8.56%"}; - { 5, 12653, "", "=q3=Riphook", "=ds=#w2#", "", "7.99%"}; - { 6, 12654, "", "=q3=Doomshot", "=ds=#w17#", "", "23.06%"}; - { 8, 13352, "", "=q1=Vosh'gajin's Snakestone", "=ds=#m3#", "", "100%"}; - { 9, 12821, "", "=q3=Plans: Dawn's Edge", "=q1=#m4#: =ds=#p2# (275)"}; - { 16, 16712, "", "=q3=Shadowcraft Gloves", "=ds=#s9#, #a2# (D1, #c6#)", "", "11.89%"}; - }; - - AtlasLoot_Data["LBRSVoone"] = { - { 1, 22231, "", "=q3=Kayser's Boots of Precision", "=ds=#s12#, #a1#", "", "15.40%"}; - { 2, 13179, "", "=q3=Brazecore Armguards", "=ds=#s8#, #a3#", "", "16.12%"}; - { 3, 13177, "", "=q3=Talisman of Evasion", "=ds=#s2#", "", "15.40%"}; - { 4, 12582, "", "=q3=Keris of Zul'Serak", "=ds=#h1#, #w4#", "", "8.08%"}; - { 5, 28972, "", "=q3=Flightblade Throwing Axe", "=ds=#w11#", "", "79.85%"}; - { 7, 12335, "", "=q2=Gemstone of Smolderthorn", "=ds=#m3#", "", "100%"}; - { 16, 16676, "", "=q3=Beaststalker's Gloves", "=ds=#s9#, #a3# (D1, #c2#)", "", "9.15%"}; - }; - - AtlasLoot_Data["LBRSGrayhoof"] = { - { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n21#"}; - { 2, 22306, "", "=q3=Ironweave Belt", "=ds=#s10#, #a1#", "", "20.28%"}; - { 3, 22325, "", "=q3=Belt of the Trickster", "=ds=#s10#, #a2#", "", "20.28%"}; - { 4, 22319, "", "=q3=Tome of Divine Right", "=ds=#s15#", "", "20.81%"}; - { 5, 22398, "", "=q3=Idol of Rejuvenation", "=ds=#s16#, #w14#", "", "12.87%"}; - { 6, 22322, "", "=q3=The Jaw Breaker", "=ds=#h1#, #w6#", "", "20.28%"}; - { 8, 21984, "", "=q1=Left Piece of Lord Valthalak's Amulet", "=ds=#m3#"}; - { 9, 22046, "", "=q1=Right Piece of Lord Valthalak's Amulet", "=ds=#m3#"}; - }; - - AtlasLoot_Data["LBRSGrimaxe"] = { - { 1, 12634, "", "=q3=Chiselbrand Girdle", "=ds=#s10#, #a3#", "", "31.73%"}; - { 2, 12637, "", "=q3=Backusarian Gauntlets", "=ds=#s9#, #a4#", "", "26.44%"}; - { 3, 12621, "", "=q3=Demonfork", "=ds=#h1#, #w1#", "", "27.64%"}; - { 5, 12838, "", "=q3=Plans: Arcanite Reaper", "=ds=#p2# (300)", "", "6.73%"}; - { 6, 12784, "", "=q3=Arcanite Reaper", "=ds=#h2#, #w1#"}; - }; - - AtlasLoot_Data["LBRSSmolderweb"] = { - { 1, 13244, "", "=q3=Gilded Gauntlets", "=ds=#s9#, #a3#", "", "25.06%"}; - { 2, 13213, "", "=q3=Smolderweb's Eye", "=ds=#s14#", "", "24.97%"}; - { 3, 13183, "", "=q3=Venomspitter", "=ds=#h1#, #w6#", "", "12.49%"}; - { 16, 16715, "", "=q3=Wildheart Boots", "=ds=#s12#, #a2# (D1, #c1#)", "", "13.03%"}; - }; - - AtlasLoot_Data["LBRSCrystalFang"] = { - { 1, 13185, "", "=q3=Sunderseer Mantle", "=ds=#s3#, #a1#", "", "28.10%"}; - { 2, 13184, "", "=q3=Fallbrush Handgrips", "=ds=#s9#, #a2#", "", "35.48%"}; - { 3, 13218, "", "=q3=Fang of the Crystal Spider", "=ds=#h1#, #w4#", "", "17.62%"}; - }; - - AtlasLoot_Data["LBRSDoomhowl"] = { - { 1, 13258, "", "=q3=Slaghide Gauntlets", "=ds=#s9#, #a2#", "", "17.09%"}; - { 2, 22232, "", "=q3=Marksman's Girdle", "=ds=#s10#, #a3#", "", "20.60%"}; - { 3, 13259, "", "=q3=Ribsteel Footguards", "=ds=#s12#, #a4#", "", "25.38%"}; - { 4, 13178, "", "=q3=Rosewine Circle", "=ds=#s13#", "", "21.48%"}; - { 6, 18784, "", "=q3=Top Half of Advanced Armorsmithing: Volume III", "=ds=#m3#", "", "10.30%"}; - { 7, 12725, "", "=q3=Plans: Enchanted Thorium Helm", "=q1=#m4#: =ds=#p2# (300)"}; - { 9, 12712, "", "=q1=Warosh's Mojo", "=ds=#m3#", "", "100%"}; - { 10, 15867, "", "=q2=Prismcharm", "=q1=#m4#: =ds=#s14#"}; - }; - - AtlasLoot_Data["LBRSZigris"] = { - { 1, 13253, "", "=q3=Hands of Power", "=ds=#s9#, #a1#", "", "14.22%"}; - { 2, 13252, "", "=q3=Cloudrunner Girdle", "=ds=#s10#, #a2#", "", "15.48%"}; - { 4, 12835, "", "=q3=Plans: Annihilator", "=ds=#p2# (300)", "", "8.37%"}; - { 5, 12798, "", "=q3=Annihilator", "=ds=#h1#, #w1#"}; - { 7, 21955, "", "=q2=Design: Black Diamond Crab", "=ds=#p12# (300)"}; - }; - - AtlasLoot_Data["LBRSSlavener"] = { - { 1, 13206, "", "=q3=Wolfshear Leggings", "=ds=#s11#, #a1#", "", "17.46%"}; - { 2, 13208, "", "=q3=Bleak Howler Armguards", "=ds=#s8#, #a2#", "", "18.02%"}; - { 3, 13205, "", "=q3=Rhombeard Protector", "=ds=#w8#", "", "16.93%"}; - { 16, 16718, "", "=q3=Wildheart Spaulders", "=ds=#s3#, #a2# (D1, #c1#)", "", "11.04%"}; - }; - - AtlasLoot_Data["LBRSHalycon"] = { - { 1, 22313, "", "=q3=Ironweave Bracers", "=ds=#s8#, #a1#", "", "18.16%"}; - { 2, 13210, "", "=q3=Pads of the Dread Wolf", "=ds=#s12#, #a2#", "", "9.88%"}; - { 3, 13211, "", "=q3=Slashclaw Bracers", "=ds=#s8#, #a3#", "", "20.32%"}; - { 4, 13212, "", "=q3=Halycon's Spiked Collar", "=ds=#s2#", "", "18.23%"}; - }; - - AtlasLoot_Data["LBRSBashguud"] = { - { 1, 13203, "", "=q3=Armswake Cloak", "=ds=#s4#", "", "35.31%"}; - { 2, 13198, "", "=q3=Hurd Smasher", "=ds=#h1#, #w13#", "", "21.15%"}; - { 3, 13204, "", "=q3=Bashguuder", "=ds=#h1#, #w6#", "", "27.09%"}; - }; - - AtlasLoot_Data["LBRSWyrmthalak"] = { - { 1, 13143, "", "=q4=Mark of the Dragon Lord", "=ds=#s13#", "", "1.11%"}; - { 3, 13162, "", "=q3=Reiver Claws", "=ds=#s9#, #a4#", "", "12.14%"}; - { 4, 13164, "", "=q3=Heart of the Scale", "=ds=#s14#", "", "0.73%"}; - { 5, 22321, "", "=q3=Heart of Wyrmthalak", "=ds=#s14#", "", "13.87%"}; - { 6, 13163, "", "=q3=Relentless Scythe", "=ds=#h2#, #w10#", "", "14.12%"}; - { 7, 13148, "", "=q3=Chillpike", "=ds=#w7#", "", "0.76%"}; - { 8, 13161, "", "=q3=Trindlehaven Staff", "=ds=#w9#", "", "10.40%"}; - { 10, 12337, "", "=q2=Gemstone of Bloodaxe", "=ds=#m3#", "", "100%"}; - { 16, 16679, "", "=q3=Beaststalker's Mantle", "=ds=#s3#, #a3# (D1, #c2#)", "", "9.89%"}; - }; - - AtlasLoot_Data["LBRSFelguard"] = { - { 1, 13181, "", "=q3=Demonskin Gloves", "=ds=#s9#, #a1#", "", "14.47%"}; - { 2, 13182, "", "=q3=Phase Blade", "=ds=#h1#, #w10#", "", "11.63%"}; - }; - - AtlasLoot_Data["LBRSTrash"] = { - { 1, 14513, "", "=q4=Pattern: Robe of the Archmage", "=ds=#p8# (300) =q1=#m1# =ds=#c3# =q1=#n71#", "", "10.12%"}; - { 2, 14152, "", "=q4=Robe of the Archmage", "=ds=#s5#, #a1# =q1=#m1# =ds=#c3#"}; - { 4, 13494, "", "=q2=Recipe: Greater Fire Protection Potion", "=ds=#p1# (290) =q1=#n71#/#n72#", "", "1.94%"}; - { 5, 16250, "", "=q2=Formula: Enchant Weapon - Superior Striking", "=ds=#p4# (300) =q1=#n75#", "", "1.04%"}; - { 6, 16244, "", "=q2=Formula: Enchant Gloves - Greater Strength", "=ds=#p4# (295) =q1=#n76#", "", "4.16%"}; - { 7, 15749, "", "=q2=Pattern: Volcanic Breastplate", "=ds=#p7# (285) =q1=#n73#", "", "2.04%"}; - { 8, 15775, "", "=q2=Pattern: Volcanic Shoulders", "=ds=#p7# (300) =q1=#n74#", "", "10.56%"}; - { 10, 12219, "", "=q1=Unadorned Seal of Ascension", "=ds=#m3#"}; - { 11, 21982, "", "=q1=Ogre Warbeads", "=ds=#m3#"}; - }; - - ------------------------------------------------- - --- Blackrock Mountain: Upper Blackrock Spire --- - ------------------------------------------------- - - AtlasLoot_Data["UBRSEmberseer"] = { - { 1, 12905, "", "=q3=Wildfire Cape", "=ds=#s4#", "", "15.20%"}; - { 2, 12927, "", "=q3=TruestrikeShoulders", "=ds=#s3#, #a2#", "", "17.47%"}; - { 3, 12929, "", "=q3=Emberfury Talisman", "=ds=#s2#", "", "15.89%"}; - { 4, 12926, "", "=q3=Flaming Band", "=ds=#s13#", "", "18.52%"}; - { 6, 17322, "", "=q1=Eye of the Emberseer", "=ds=#m3#", "", "100%"}; - { 7, 21988, "", "=q1=Ember of Emberseer", "=ds=#m3#"}; - { 16, 16672, "", "=q3=Gauntlets of Elements", "=ds=#s9#, #a3# (D1, #c7#)", "", "14.23%"}; - }; - - AtlasLoot_Data["UBRSSolakar"] = { - { 1, 12609, "", "=q3=Polychromatic Visionwrap", "=ds=#s5#, #a1#", "", "15.82%"}; - { 2, 12589, "", "=q3=Dustfeather Sash", "=ds=#s10#, #a1#", "", "12.84%"}; - { 3, 12603, "", "=q3=Nightbrace Tunic", "=ds=#s5#, #a2#", "", "15.06%"}; - { 4, 12606, "", "=q3=Crystallized Girdle", "=ds=#s10#, #a2#", "", "14.04%"}; - { 6, 18657, "", "=q2=Schematic: Hyper-Radiant Flame Reflector", "=ds=#p5# (290)", "", "7.38%"}; - { 7, 18638, "", "=q3=Hyper-Radiant Flame Reflector", "=ds=#s14#"}; - { 16, 16695, "", "=q3=Devout Mantle", "=ds=#s3#, #a1# (D1, #c5#)", "", "12.84%"}; - }; - - AtlasLoot_Data["UBRSFLAME"] = { - { 1, 13371, "", "=q2=Father Flame", "=ds=#s15#", "", "100%"}; - }; - - AtlasLoot_Data["UBRSQuestItems"] = { - { 1, 12358, "", "=q1=Darkstone Tablet", "=ds=#m3#"}; - { 2, 12352, "", "=q1=Doomrigger's Clasp", "=ds=#m3#"}; - }; - - AtlasLoot_Data["UBRSRunewatcher"] = { - { 1, 12604, "", "=q3=Starfire Tiara", "=ds=#s1#, #a1#", "", "28.64%"}; - { 2, 12930, "", "=q3=Briarwood Reed", "=ds=#s14#", "", "26.36%"}; - { 3, 12605, "", "=q3=Serpentine Skuller", "=ds=#w12#", "", "32.95%"}; - }; - - AtlasLoot_Data["UBRSAnvilcrack"] = { - { 1, 18047, "", "=q3=Flame Walkers", "=ds=#s12#, #a3#", "", "18.05%"}; - { 2, 13502, "", "=q3=Handcrafted Mastersmith Girdle", "=ds=#s10#, #a4#", "", "15.78%"}; - { 3, 13498, "", "=q3=Handcrafted Mastersmith Leggings", "=ds=#s11#, #a4#", "", "20.63%"}; - { 4, 18048, "", "=q3=Mastersmith's Hammer", "=ds=#h3#, #w6#", "", "17.26%"}; - { 6, 12837, "", "=q3=Plans: Masterwork Stormhammer", "=ds=#p2# (300)", "", "4.80%"}; - { 7, 12794, "", "=q3=Masterwork Stormhammer", "=ds=#h1#, #w6#"}; - { 8, 12834, "", "=q3=Plans: Arcanite Champion", "=ds=#p2# (300)", "", "4.75%"}; - { 9, 12790, "", "=q3=Arcanite Champion", "=ds=#h2#, #w10#"}; - { 11, 18779, "", "=q3=Bottom Half of Advanced Armorsmithing: Volume I", "=ds=#m3#", "", "17.08%"}; - { 12, 12727, "", "=q3=Plans: Enchanted Thorium Breastplate", "=q1=#m4#: =ds=#p2# (300)"}; - { 16, 0, "INV_Box_01", "=q6=#x10#", ""}; - { 17, 12806, "", "=q3=Unforged Rune Covered Breastplate", "=ds=#m3#"}; - { 18, 12696, "", "=q3=Plans: Demon Forged Breastplate", "=q1=#m4#: =ds=#p2# (285)"}; - }; - - AtlasLoot_Data["UBRSRend"] = { - { 1, 12590, "", "=q4=Felstriker", "=ds=#h1#, #w4#", "", "1.06%"}; - { 3, 22247, "", "=q3=Faith Healer's Boots", "=ds=#s12#, #a1#", "", "12.71%"}; - { 4, 18102, "", "=q3=Dragonrider Boots", "=ds=#s12#, #a1#", "", "14.35%"}; - { 5, 12587, "", "=q3=Eye of Rend", "=ds=#s1#, #a2#", "", "14.50%"}; - { 6, 12588, "", "=q3=Bonespike Shoulder", "=ds=#s3#, #a3#", "", "0.85%"}; - { 7, 18104, "", "=q3=Feralsurge Girdle", "=ds=#s10#, #a3#", "", "15.30%"}; - { 8, 12936, "", "=q3=Battleborn Armbraces", "=ds=#s8#, #a4#", "", "16.96%"}; - { 9, 12935, "", "=q3=Warmaster Legguards", "=ds=#s11#, #a4#", "", "15.05%"}; - { 10, 18103, "", "=q3=Band of Rumination", "=ds=#s13#", "", "15.38%"}; - { 16, 16733, "", "=q3=Spaulders of Valor", "=ds=#s3#, #a4# (D1, #c9#)", "", "13.39%"}; - { 18, 12940, "", "=q3=Dal'Rend's Sacred Charge", "=ds=#h3#, #w10#", "", "6.79%"}; - { 19, 12939, "", "=q3=Dal'Rend's Tribal Guardian", "=ds=#h4#, #w10#", "", "7.61%"}; - { 20, 12583, "", "=q3=Blackhand Doomsaw", "=ds=#w7#", "", "7.44%"}; - { 22, 12630, "", "=q1=Head of Rend Blackhand", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["UBRSGyth"] = { - { 1, 12871, "", "=q4=Chromatic Carapace", "=ds=#m3#", "", "2.64%"}; - { 2, 12945, "", "=q4=Legplates of the Chromatic Defier", "=q1=#m4#: =ds=#s11#, #a3#"}; - { 3, 12903, "", "=q4=Legguards of the Chromatic Defier", "=q1=#m4#: =ds=#s11#, #a3#"}; - { 4, 12895, "", "=q4=Breastplate of the Chromatic Flight", "=q1=#m4#: =ds=#s5#, #a4#"}; - { 6, 22225, "", "=q3=Dragonskin Cowl", "=ds=#s1#, #a1# =q2=#m16#", "", "11.85%"}; - { 7, 12960, "", "=q3=Tribal War Feathers", "=ds=#s1#, #a2# =q2=#m16#", "", "15.24%"}; - { 8, 12953, "", "=q3=Dragoneye Coif", "=ds=#s1#, #a3# =q2=#m16#", "", "15.99%"}; - { 9, 12952, "", "=q3=Gyth's Skull", "=ds=#s1#, #a4# =q2=#m16#", "", "12.43%"}; - { 11, 13522, "", "=q2=Recipe: Flask of Chromatic Resistance", "=ds=#p1# (300)", "", "2.95%"}; - { 16, 16669, "", "=q3=Pauldrons of Elements", "=ds=#s3#, #a3# (D1, #c7#)", "", "14.77%"}; - }; - - AtlasLoot_Data["UBRSBeast"] = { - { 1, 12731, "", "=q4=Pristine Hide of the Beast", "=ds=#m3#", "", "0.77%"}; - { 2, 12752, "", "=q4=Cap of the Scarlet Savant", "=q1=#m4#: =ds=#s1#, #a1#"}; - { 3, 12757, "", "=q4=Breastplate of Bloodthirst", "=q1=#m4#: =ds=#s5#, #a2#"}; - { 4, 12756, "", "=q4=Leggings of Arcana", "=q1=#m4#: =ds=#s11#, #a2#"}; - { 6, 12967, "", "=q3=Bloodmoon Cloak", "=ds=#s4#", "", "18.30%"}; - { 7, 12968, "", "=q3=Frostweaver Cape", "=ds=#s4#", "", "14.47%"}; - { 8, 12965, "", "=q3=Spiritshroud Leggings", "=ds=#s11#, #a1#", "", "13.16%"}; - { 9, 22311, "", "=q3=Ironweave Boots", "=ds=#s12#, #a1#", "", "12.31%"}; - { 10, 12966, "", "=q3=Blackmist Armguards", "=ds=#s8#, #a2#", "", "16.06%"}; - { 11, 12963, "", "=q3=Blademaster Leggings", "=ds=#s11#, #a2#", "", "12.74%"}; - { 12, 12964, "", "=q3=Tristam Legguards", "=ds=#s11#, #a3#", "", "18.16%"}; - { 13, 12709, "", "=q3=Finkle's Skinner", "=ds=#h1#, #w4#, =q1=#e18#", "", "6.95%"}; - { 14, 12969, "", "=q3=Seeping Willow", "=ds=#h2#, #w6#", "", "11.49%"}; - { 16, 16729, "", "=q3=Lightforge Spaulders", "=ds=#s3#, #a4# (D1, #c4#)", "", "13.62%"}; - { 18, 24101, "", "=q3=Book of Ferocious Bite V", "=ds=#e10# =q1=#m1# =ds=#c1#", "", "1.44%"}; - { 19, 19227, "", "=q3=Ace of Beasts", "=ds=#e16#", "", "4.53%"}; - }; - - AtlasLoot_Data["UBRSValthalak"] = { - { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n16#"}; - { 2, 22337, "", "=q3=Shroud of Domination", "=ds=#s4#", "", "23.37%"}; - { 3, 22302, "", "=q3=Ironweave Cowl", "=ds=#s1#, #a1#", "", "27.72%"}; - { 4, 22342, "", "=q3=Leggings of Torment", "=ds=#s11#, #a1#", "", "23.10%"}; - { 5, 22343, "", "=q3=Handguards of Savagery", "=ds=#s9#, #a3#", "", "20.11%"}; - { 6, 22340, "", "=q3=Pendant of Celerity", "=ds=#s2#", "", "17.66%"}; - { 7, 22339, "", "=q3=Rune Band of Wizardry", "=ds=#s13#", "", "15.49%"}; - { 8, 22335, "", "=q3=Lord Valthalak's Staff of Command", "=ds=#w9#", "", "14.67%"}; - { 9, 22336, "", "=q3=Draconian Aegis of the Legion", "=ds=#w8#", "", "17.66%"}; - }; - - AtlasLoot_Data["UBRSDrakkisath"] = { - { 1, 12592, "", "=q4=Blackblade of Shahram", "=ds=#h2#, #w10#", "", "1.08%"}; - { 3, 22269, "", "=q3=Shadow Prowler's Cloak", "=ds=#s4#", "", "10.61%"}; - { 4, 22267, "", "=q3=Spellweaver's Turban", "=ds=#s1#, #a1#", "", "15.50%"}; - { 5, 13142, "", "=q3=Brigam Girdle", "=ds=#s10#, #a4#", "", "16.40%"}; - { 6, 13141, "", "=q3=Tooth of Gnarr", "=ds=#s2#", "", "16.83%"}; - { 7, 13098, "", "=q3=Painweaver Band", "=ds=#s13#", "", "13.51%"}; - { 8, 22268, "", "=q3=Draconic Infused Emblem", "=ds=#s14#", "", "4.13%"}; - { 9, 22253, "", "=q3=Tome of the Lost", "=ds=#s15#", "", "16.05%"}; - { 10, 12602, "", "=q3=Draconian Deflector", "=ds=#w8#", "", "14.52%"}; - { 12, 15730, "", "=q3=Pattern: Red Dragonscale Breastplate", "=ds=#p7# (300)", "", "3.58%"}; - { 13, 15047, "", "=q3=Red Dragonscale Breastplate", "=ds=#s5#, #a3#"}; - { 15, 13519, "", "=q2=Recipe: Flask of the Titans", "=ds=#p1# (300)", "", "1.72%"}; - { 16, 16688, "", "=q3=Magister's Robes", "=ds=#s5#, #a1# (D1, #c3#)", "", "7.24%"}; - { 17, 16700, "", "=q3=Dreadmist Robe", "=ds=#s5#, #a1# (D1, #c8#)", "", "8.04%"}; - { 18, 16690, "", "=q3=Devout Robe", "=ds=#s5#, #a1# (D1, #c5#)", "", "6.20%"}; - { 19, 16706, "", "=q3=Wildheart Vest", "=ds=#s5#, #a2# (D1, #c1#)", "", "7.36%"}; - { 20, 16721, "", "=q3=Shadowcraft Tunic", "=ds=#s5#, #a2# (D1, #c6#)", "", "6.09%"}; - { 21, 16674, "", "=q3=Beaststalker's Tunic", "=ds=#s5#, #a3# (D1, #c2#)", "", "6.81%"}; - { 22, 16666, "", "=q3=Vest of Elements", "=ds=#s5#, #a3# (D1, #c7#)", "", "3.03%"}; - { 23, 16730, "", "=q3=Breastplate of Valor", "=ds=#s5#, #a4# (D1, #c9#)", "", "5.83%"}; - { 24, 16726, "", "=q3=Lightforge Breastplate", "=ds=#s5#, #a4# (D1, #c4#)", "", "3.76%"}; - { 30, 16663, "", "=q1=Blood of the Black Dragon Champion", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["UBRSTrash"] = { - { 1, 13260, "", "=q3=Wind Dancer Boots", "=ds=#s12#, #a3#", "", "0.01%"}; - { 2, 24102, "", "=q3=Manual of Eviscerate IX", "=ds=#e10# =q1=#m1# =ds=#c6# =q1=#n70#", "", "0.94%"}; - { 4, 16247, "", "=q2=Formula: Enchant 2H Weapon - Superior Impact", "=ds=#p4# (295) =q1=#n69#", "", "1.54%"}; - { 6, 12607, "", "=q3=Brilliant Chromatic Scale", "=ds=#m3#"}; - { 7, 12219, "", "=q1=Unadorned Seal of Ascension", "=ds=#m3#"}; - }; - - --------------------------------------- - --- Blackrock Mountain: Molten Core --- - --------------------------------------- - - AtlasLoot_Data["MCLucifron"] = { - { 1, 18872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "1.93%"}; - { 2, 19145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "1.84%"}; - { 3, 19146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "1.95%"}; - { 4, 18875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "2.00%"}; - { 5, 18870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "1.09%"}; - { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.15%"}; - { 7, 17109, "", "=q4=Choker of Enlightenment", "=ds=#s2#", "", "12.61%"}; - { 8, 18879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "2.04%"}; - { 9, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "2.23%"}; - { 10, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.23%"}; - { 11, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "1.60%"}; - { 16, 16800, "", "=q4=Arcanist Boots", "=q1=#m1# =ds=#c3# (T1)", "", "12.06%"}; - { 17, 16805, "", "=q4=Felheart Gloves", "=q1=#m1# =ds=#c8# (T1)", "", "14.89%"}; - { 18, 16829, "", "=q4=Cenarion Boots", "=q1=#m1# =ds=#c1# (T1)", "", "10.72%"}; - { 19, 16837, "", "=q4=Earthfury Boots", "=q1=#m1# =ds=#c7# (T1)", "", "4.16%"}; - { 20, 16863, "", "=q4=Gauntlets of Might", "=q1=#m1# =ds=#c9# (T1)", "", "16.40%"}; - { 21, 16859, "", "=q4=Lawbringer Boots", "=q1=#m1# =ds=#c4# (T1)", "", "7.20%"}; - { 22, 17329, "", "=q1=Hand of Lucifron", "=ds=#m3#"}; - Next = "MCMagmadar"; - }; - - AtlasLoot_Data["MCMagmadar"] = { - { 1, 19136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "4.79%"}; - { 2, 18823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "6.18%"}; - { 3, 18829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "2.10%"}; - { 4, 19144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.86%"}; - { 5, 19143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "5.48%"}; - { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "3.98%"}; - { 7, 18824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "3.22%"}; - { 8, 17065, "", "=q4=Medallion of Steadfast Might", "=ds=#s2#", "", "14.05%"}; - { 9, 18821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "5.79%"}; - { 10, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "5.55%"}; - { 11, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "5.42%"}; - { 12, 18203, "", "=q4=Eskhandar's Right Claw", "=ds=#h3#, #w13#", "", "17.82%"}; - { 13, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "5.68%"}; - { 14, 17073, "", "=q4=Earthshaker", "=ds=#h2#, #w6#", "", "16.75%"}; - { 15, 17069, "", "=q4=Striker's Mark", "=ds=#w2#", "", "16.37%"}; - { 16, 16796, "", "=q4=Arcanist Leggings", "=q1=#m1# =ds=#c3# (T1)", "", "14.57%"}; - { 17, 16814, "", "=q4=Pants of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "14.33%"}; - { 18, 16810, "", "=q4=Felheart Pants", "=q1=#m1# =ds=#c8# (T1)", "", "13.75%"}; - { 19, 16822, "", "=q4=Nightslayer Pants", "=q1=#m1# =ds=#c6# (T1)", "", "13.83%"}; - { 20, 16847, "", "=q4=Giantstalker's Leggings", "=q1=#m1# =ds=#c2# (T1)", "", "13.28%"}; - { 21, 16835, "", "=q4=Cenarion Leggings", "=q1=#m1# =ds=#c1# (T1)", "", "12.90%"}; - { 22, 16843, "", "=q4=Earthfury Legguards", "=q1=#m1# =ds=#c7# (T1)", "", " 4.73%"}; - { 23, 16855, "", "=q4=Lawbringer Legplates", "=q1=#m1# =ds=#c4# (T1)", "", "8.54%"}; - { 24, 16867, "", "=q4=Legplates of Might", "=q1=#m1# =ds=#c9# (T1)", "", "13.97%"}; - Prev = "MCLucifron"; - Next = "MCGehennas"; - }; - - AtlasLoot_Data["MCGehennas"] = { - { 1, 19145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "3.83%"}; - { 2, 18872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "3.37%"}; - { 3, 19146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "3.53%"}; - { 4, 18875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "3.57%"}; - { 5, 18870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "1.77%"}; - { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "3.48%"}; - { 7, 18879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "3.78%"}; - { 8, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "3.78%"}; - { 9, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "3.79%"}; - { 10, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "3.34%"}; - { 16, 16812, "", "=q4=Gloves of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "18.65%"}; - { 17, 16826, "", "=q4=Nightslayer Gloves", "=q1=#m1# =ds=#c6# (T1)", "", "19.47%"}; - { 18, 16849, "", "=q4=Giantstalker's Boots", "=q1=#m1# =ds=#c2# (T1)", "", "14.54%"}; - { 19, 16839, "", "=q4=Earthfury Gauntlets", "=q1=#m1# =ds=#c7# (T1)", "", "7.38%"}; - { 20, 16862, "", "=q4=Sabatons of Might", "=q1=#m1# =ds=#c9# (T1)", "", "14.48%"}; - { 21, 16860, "", "=q4=Lawbringer Gauntlets", "=q1=#m1# =ds=#c4# (T1)", "", "11.77%"}; - { 23, 17331, "", "=q1=Hand of Gehennas", "=ds=#m3#"}; - Prev = "MCMagmadar"; - Next = "MCGarr"; - }; - - AtlasLoot_Data["MCGarr"] = { - { 1, 19136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "4.80%"}; - { 2, 18823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "5.23%"}; - { 3, 18829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.68%"}; - { 4, 19144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.48%"}; - { 5, 19143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "3.84%"}; - { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.82%"}; - { 7, 18824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "3.05%"}; - { 8, 18821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "4.48%"}; - { 9, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "4.13%"}; - { 10, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "3.69%"}; - { 11, 17071, "", "=q4=Gutgore Ripper", "=ds=#h1#, #w4#", "", "11.21%"}; - { 12, 18832, "", "=q4=Brutality Blade", "=ds=#h1#, #w10#", "", "13.27%"}; - { 13, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "4.09%"}; - { 14, 17105, "", "=q4=Aurastone Hammer", "=ds=#h3#, #w6#", "", "12.67%"}; - { 15, 17066, "", "=q4=Drillborer Disk", "=ds=#w8#", "", "11.85%"}; - { 16, 16795, "", "=q4=Arcanist Crown", "=q1=#m1# =ds=#c3# (T1)", "", "11.31%"}; - { 17, 16813, "", "=q4=Circlet of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "11.36%"}; - { 18, 16808, "", "=q4=Felheart Horns", "=q1=#m1# =ds=#c8# (T1)", "", "10.62%"}; - { 19, 16846, "", "=q4=Giantstalker's Helmet", "=q1=#m1# =ds=#c2# (T1)", "", "11.57%"}; - { 20, 16834, "", "=q4=Cenarion Helm", "=q1=#m1# =ds=#c1# (T1)", "", "11.51%"}; - { 21, 16821, "", "=q4=Nightslayer Cover", "=q1=#m1# =ds=#c6# (T1)", "", "10.38%"}; - { 22, 16842, "", "=q4=Earthfury Helmet", "=q1=#m1# =ds=#c7# (T1)", "", "3.91%"}; - { 23, 16866, "", "=q4=Helm of Might", "=q1=#m1# =ds=#c9# (T1)", "", "11.39%"}; - { 24, 16854, "", "=q4=Lawbringer Helm", "=q1=#m1# =ds=#c4# (T1)", "", "7.23%"}; - { 26, 18564, "", "=q5=Bindings of the Windseeker", "=ds=#m3#, =q1=#m9#", "", "3.74%"}; - { 27, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"}; - Prev = "MCGehennas"; - Next = "MCShazzrah"; - }; - - AtlasLoot_Data["MCShazzrah"] = { - { 1, 19145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "1.97%"}; - { 2, 18872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "1.84%"}; - { 3, 19146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "1.85%"}; - { 4, 18875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "1.81%"}; - { 5, 18870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "0.78%"}; - { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.22%"}; - { 7, 18879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "1.72%"}; - { 8, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "1.99%"}; - { 9, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.27%"}; - { 10, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "3.32%"}; - { 16, 16801, "", "=q4=Arcanist Gloves", "=q1=#m1# =ds=#c3# (T1)", "", "19.59%"}; - { 17, 16803, "", "=q4=Felheart Slippers", "=q1=#m1# =ds=#c8# (T1)", "", "15.28%"}; - { 18, 16811, "", "=q4=Boots of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "14.90%"}; - { 19, 16831, "", "=q4=Cenarion Gloves", "=q1=#m1# =ds=#c1# (T1)", "", "19.53%"}; - { 20, 16852, "", "=q4=Giantstalker's Gloves", "=q1=#m1# =ds=#c2# (T1)", "", "18.58%"}; - { 21, 16824, "", "=q4=Nightslayer Boots", "=q1=#m1# =ds=#c6# (T1)", "", "15.58%"}; - { 23, 17332, "", "=q1=Hand of Shazzrah", "=ds=#m3#"}; - Prev = "MCGarr"; - Next = "MCGeddon"; - }; - - AtlasLoot_Data["MCGeddon"] = { - { 1, 19136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "2.44%"}; - { 2, 18823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "3.04%"}; - { 3, 18829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.04%"}; - { 4, 19144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.00%"}; - { 5, 19143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "2.61%"}; - { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "1.77%"}; - { 7, 18824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "1.48%"}; - { 8, 17110, "", "=q4=Seal of the Archmagus", "=ds=#s13#", "", "21.93%"}; - { 9, 18821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "2.61%"}; - { 10, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "2.68%"}; - { 11, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "2.59%"}; - { 12, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "2.70%"}; - { 16, 16797, "", "=q4=Arcanist Mantle", "=q1=#m1# =ds=#c3# (T1)", "", "19.92%"}; - { 17, 16807, "", "=q4=Felheart Shoulder Pads", "=q1=#m1# =ds=#c8# (T1)", "", "19.78%"}; - { 18, 16836, "", "=q4=Cenarion Spaulders", "=q1=#m1# =ds=#c1# (T1)", "", "19.52%"}; - { 19, 16856, "", "=q4=Lawbringer Spaulders", "=q1=#m1# =ds=#c4# (T1)", "", "12.62%"}; - { 20, 16844, "", "=q4=Earthfury Epaulets", "=q1=#m1# =ds=#c7# (T1)", "", "7.29%"}; - { 22, 18563, "", "=q5=Bindings of the Windseeker", " =ds=#m3#, =q1=#m10#", "", "3.78%"}; - { 23, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"}; - Prev = "MCShazzrah"; - Next = "MCGolemagg"; - }; - - AtlasLoot_Data["MCGolemagg"] = { - { 1, 19136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "2.18%"}; - { 2, 18823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "2.65%"}; - { 3, 18829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.20%"}; - { 4, 19144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.00%"}; - { 5, 19143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "2.17%"}; - { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "1.44%"}; - { 7, 18824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "1.69%"}; - { 8, 18821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "2.26%"}; - { 9, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "2.91%"}; - { 10, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "2.46%"}; - { 11, 17103, "", "=q4=Azuresong Mageblade", "=ds=#h3#, #w10#", "", "17.59%"}; - { 12, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "2.89%"}; - { 13, 18842, "", "=q4=Staff of Dominance", "=ds=#w9#", "", "18.95%"}; - { 14, 17072, "", "=q4=Blastershot Launcher", "=ds=#w5#", "", "17.83%"}; - { 16, 16798, "", "=q4=Arcanist Robes", "=q1=#m1# =ds=#c3# (T1)", "", "16.51%"}; - { 17, 16815, "", "=q4=Robes of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "15.65%"}; - { 18, 16809, "", "=q4=Felheart Robes", "=q1=#m1# =ds=#c8# (T1)", "", "15.66%"}; - { 19, 16820, "", "=q4=Nightslayer Chestpiece", "=q1=#m1# =ds=#c6# (T1)", "", "16.76%"}; - { 20, 16833, "", "=q4=Cenarion Vestments", "=q1=#m1# =ds=#c1# (T1)", "", "15.21%"}; - { 21, 16845, "", "=q4=Giantstalker's Breastplate", "=q1=#m1# =ds=#c2# (T1)", "", "15.83%"}; - { 22, 16841, "", "=q4=Earthfury Vestments", "=q1=#m1# =ds=#c7# (T1)", "", " 6.08%"}; - { 23, 16865, "", "=q4=Breastplate of Might", "=q1=#m1# =ds=#c9# (T1)", "", "15.28%"}; - { 24, 16853, "", "=q4=Lawbringer Chestguard", "=q1=#m1# =ds=#c4# (T1)", "", "9.53%"}; - { 26, 17203, "", "=q4=Sulfuron Ingot", "=ds=#m3#", "", "11.98%"}; - { 27, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=q1=#m4#: =ds=#h2#, #w6#"}; - Prev = "MCGeddon"; - Next = "MCSulfuron"; - }; - - AtlasLoot_Data["MCSulfuron"] = { - { 1, 19145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "2.80%"}; - { 2, 18872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "2.54%"}; - { 3, 19146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "2.70%"}; - { 4, 18875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "2.58%"}; - { 5, 18870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "1.26%"}; - { 6, 18861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.54%"}; - { 7, 18879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "2.32%"}; - { 8, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "2.39%"}; - { 9, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.53%"}; - { 10, 17074, "", "=q4=Shadowstrike", "=ds=#w7#", "", "23.50%"}; - { 11, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "2.26%"}; - { 16, 16816, "", "=q4=Mantle of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "21.06%"}; - { 17, 16823, "", "=q4=Nightslayer Shoulder Pads", "=q1=#m1# =ds=#c6# (T1)", "", "20.66%"}; - { 18, 16848, "", "=q4=Giantstalker's Epaulets", "=q1=#m1# =ds=#c2# (T1)", "", "19.64%"}; - { 19, 16868, "", "=q4=Pauldrons of Might", "=q1=#m1# =ds=#c9# (T1)", "", "21.14%"}; - { 21, 17330, "", "=q1=Hand of Sulfuron", "=ds=#m3#"}; - Prev = "MCGolemagg"; - Next = "MCMajordomo"; - }; - - AtlasLoot_Data["MCMajordomo"] = { - { 1, 18811, "", "=q4=Fireproof Cloak", "=ds=#s4#", "", "15.12%"}; - { 2, 18808, "", "=q4=Gloves of the Hypnotic Flame", "=ds=#s9#, #a1#", "", "15.36%"}; - { 3, 18809, "", "=q4=Sash of Whispered Secrets", "=ds=#s10#, #a1#", "", "15.93%"}; - { 4, 19139, "", "=q4=Fireguard Shoulders", "=ds=#s3#, #a2#", "", "15.87%"}; - { 5, 18810, "", "=q4=Wild Growth Spaulders", "=ds=#s3#, #a2#", "", "16.91%"}; - { 6, 18812, "", "=q4=Wristguards of True Flight", "=ds=#s8#, #a3#", "", "18.04%"}; - { 7, 18806, "", "=q4=Core Forged Greaves", "=ds=#s12#, #a4#", "", "16.53%"}; - { 8, 19140, "", "=q4=Cauterizing Band", "=ds=#s13#", "", "15.10%"}; - { 9, 18805, "", "=q4=Core Hound Tooth", "=ds=#h1#, #w4#", "", "16.06%"}; - { 10, 18803, "", "=q4=Finkle's Lava Dredger", "=ds=#h2#, #w6#", "", "12.43%"}; - { 16, 18703, "", "=q4=Ancient Petrified Leaf", "=ds=#m2# =q1=(#c2#)", "", "35.25%"}; - { 17, 18715, "", "=q4=Lok'delar, Stave of the Ancient Keepers", "=q1=#m4#: =ds=#w9#, =q1=#m1# =ds=#c2#"}; - { 18, 18713, "", "=q4=Rhok'delar, Longbow of the Ancient Keepers", "=q1=#m4#: =ds=#w2#, =q1=#m1# =ds=#c2#"}; - { 19, 18714, "", "=q4=Ancient Sinew Wrapped Lamina", "=q1=#m4#: =ds=#w19#, =q1=#m1# =ds=#c2#"}; - { 21, 18646, "", "=q4=The Eye of Divinity", "=ds=#m2# =q1=(#c5#)", "", "28.30%"}; - { 22, 18608, "", "=q4=Benediction", "=q1=#m4#: =ds=#w9#, =q1=#m1# =ds=#c5#"}; - { 23, 18609, "", "=q4=Anathema", "=q1=#m4#: =ds=#w9#, =q1=#m1# =ds=#c5#"}; - Prev = "MCSulfuron"; - Next = "MCRagnaros"; - }; - - AtlasLoot_Data["MCRagnaros"] = { - { 1, 16915, "", "=q4=Netherwind Pants", "=q1=#m1# =ds=#c3# (T2)", "", "17.37%"}; - { 2, 16922, "", "=q4=Leggings of Transcendence", "=q1=#m1# =ds=#c5# (T2)", "", "17.30%"}; - { 3, 16930, "", "=q4=Nemesis Leggings", "=q1=#m1# =ds=#c8# (T2)", "", "16.87%"}; - { 4, 16909, "", "=q4=Bloodfang Pants", "=q1=#m1# =ds=#c6# (T2)", "", "17.18%"}; - { 5, 16901, "", "=q4=Stormrage Legguards", "=q1=#m1# =ds=#c1# (T2)", "", "15.49%"}; - { 6, 16938, "", "=q4=Dragonstalker's Legguards", "=q1=#m1# =ds=#c2# (T2)", "", "16.02%"}; - { 7, 16946, "", "=q4=Legplates of Ten Storms", "=q1=#m1# =ds=#c7# (T2)", "", "5.97%"}; - { 8, 16962, "", "=q4=Legplates of Wrath", "=q1=#m1# =ds=#c9# (T2)", "", "17.23%"}; - { 9, 16954, "", "=q4=Judgement Legplates", "=q1=#m1# =ds=#c4# (T2)", "", "10.81%"}; - { 11, 17204, "", "=q5=Eye of Sulfuras", "=ds=#m3#", "", "3.42%"}; - { 12, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=q1=#m4#: =ds=#h2#, #w6#"}; - { 14, 19017, "", "=q1=Essence of the Firelord", "=ds=#m3#", "", "0.46%"}; - { 15, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"}; - { 16, 17102, "", "=q4=Cloak of the Shrouded Mists", "=ds=#s4#", "", "14.31%"}; - { 17, 17107, "", "=q4=Dragon's Blood Cape", "=ds=#s4#", "", "15.32%"}; - { 18, 18817, "", "=q4=Crown of Destruction", "=ds=#s1#, #a3#", "", "16.75%"}; - { 19, 19137, "", "=q4=Onslaught Girdle", "=ds=#s10#, #a4#", "", "13.18%"}; - { 20, 18814, "", "=q4=Choker of the Fire Lord", "=ds=#s2#", "", "16.08%"}; - { 21, 19138, "", "=q4=Band of Sulfuras", "=ds=#s13#", "", "15.64%"}; - { 22, 17063, "", "=q4=Band of Accuria", "=ds=#s13#", "", "14.81%"}; - { 23, 17082, "", "=q4=Shard of the Flame", "=ds=#s14#", "", " 4.65%"}; - { 24, 18815, "", "=q4=Essence of the Pure Flame", "=ds=#s14#", "", "17.80%"}; - { 25, 18816, "", "=q4=Perdition's Blade", "=ds=#h1#, #w4#", "", "15.90%"}; - { 26, 17076, "", "=q4=Bonereaver's Edge", "=ds=#h2#, #w10#", "", "5.12%"}; - { 27, 17104, "", "=q4=Spinal Reaper", "=ds=#h2#, #w1#", "", " 4.63%"}; - { 28, 17106, "", "=q4=Malistar's Defender", "=ds=#w8#", "", "13.88%"}; - { 30, 21110, "", "=q1=Draconic for Dummies", "=ds=#m3#", "", "100%"}; - Prev = "MCMajordomo"; - }; - - AtlasLoot_Data["MCTrashMobs"] = { - { 1, 16802, "", "=q4=Arcanist Belt", "=q1=#m1# =ds=#c3# (T1)", "", "0.16%"}; - { 2, 16817, "", "=q4=Girdle of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "0.18%"}; - { 3, 16806, "", "=q4=Felheart Belt", "=q1=#m1# =ds=#c8# (T1)", "", "0.19%"}; - { 4, 16827, "", "=q4=Nightslayer Belt", "=q1=#m1# =ds=#c6# (T1)", "", "0.15%"}; - { 5, 16828, "", "=q4=Cenarion Belt", "=q1=#m1# =ds=#c1# (T1)", "", "0.16%"}; - { 6, 16851, "", "=q4=Giantstalker's Belt", "=q1=#m1# =ds=#c2# (T1)", "", "0.17%"}; - { 7, 16838, "", "=q4=Earthfury Belt", "=q1=#m1# =ds=#c7# (T1)", "", "0.07%"}; - { 8, 16864, "", "=q4=Belt of Might", "=q1=#m1# =ds=#c9# (T1)", "", "0.16%"}; - { 9, 16858, "", "=q4=Lawbringer Belt", "=q1=#m1# =ds=#c4# (T1)", "", "0.10%"}; - { 11, 17010, "", "=q3=Fiery Core", "=ds=#e8#"}; - { 12, 17011, "", "=q3=Lava Core", "=ds=#e8#"}; - { 13, 11382, "", "=q2=Blood of the Mountain", "=ds=#e8#"}; - { 14, 17012, "", "=q1=Core Leather", "=ds=#e8#"}; - { 16, 16799, "", "=q4=Arcanist Bindings", "=q1=#m1# =ds=#c3# (T1)", "", "0.16%"}; - { 17, 16819, "", "=q4=Vambraces of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "0.16%"}; - { 18, 16804, "", "=q4=Felheart Bracers", "=q1=#m1# =ds=#c8# (T1)", "", "0.16%"}; - { 19, 16825, "", "=q4=Nightslayer Bracelets", "=q1=#m1# =ds=#c6# (T1)", "", "0.17%"}; - { 20, 16830, "", "=q4=Cenarion Bracers", "=q1=#m1# =ds=#c1# (T1)", "", "0.17%"}; - { 21, 16850, "", "=q4=Giantstalker's Bracers", "=q1=#m1# =ds=#c2# (T1)", "", "0.18%"}; - { 22, 16840, "", "=q4=Earthfury Bracers", "=q1=#m1# =ds=#c7# (T1)", "", "0.06%"}; - { 23, 16861, "", "=q4=Bracers of Might", "=q1=#m1# =ds=#c9# (T1)", "", "0.16%"}; - { 24, 16857, "", "=q4=Lawbringer Bracers", "=q1=#m1# =ds=#c4# (T1)", "", "0.11%"}; - }; - - AtlasLoot_Data["MCRANDOMBOSSDROPPS"] = { - { 1, 18264, "", "=q3=Plans: Elemental Sharpening Stone", "=ds=#p2# (300)", "", "1.02%"}; - { 2, 18262, "", "=q2=Elemental Sharpening Stone", "=ds=#e6#"}; - { 4, 18292, "", "=q3=Schematic: Core Marksman Rifle", "=ds=#p5# (300)", "", "0.96%"}; - { 5, 18282, "", "=q4=Core Marksman Rifle", "=ds=#w5#"}; - { 7, 18291, "", "=q3=Schematic: Force Reactive Disk", "=ds=#p5# (300)", "", "0.92%"}; - { 8, 18168, "", "=q4=Force Reactive Disk", "=ds=#w8#"}; - { 10, 18290, "", "=q3=Schematic: Biznicks 247x128 Accurascope", "=ds=#p5# (300)", "", "0.11%"}; - { 11, 18283, "", "=q3=Biznicks 247x128 Accurascope", "=ds=#e11#"}; - { 13, 18259, "", "=q3=Formula: Enchant Weapon - Spell Power", "=ds=#p4# (300)", "", "0.85%"}; - { 16, 18252, "", "=q3=Pattern: Core Armor Kit", "=ds=#p7# (300)", "", "0.85%"}; - { 17, 18251, "", "=q3=Core Armor Kit", "=ds=#e6#"}; - { 19, 18265, "", "=q3=Pattern: Flarecore Wraps", "=ds=#p8# (300)", "", "0.72%"}; - { 20, 18263, "", "=q4=Flarecore Wraps", "=ds=#s8#, #a1#"}; - { 22, 21371, "", "=q3=Pattern: Core Felcloth Bag", "=ds=#p8# (300)", "", "0.33%"}; - { 23, 21342, "", "=q4=Core Felcloth Bag", "=ds=#m11# #e1# =q1=#m1# #c8#"}; - { 25, 18257, "", "=q3=Recipe: Major Rejuvenation Potion", "=ds=#p1# (300)", "", "0.76%"}; - { 26, 18253, "", "=q1=Major Rejuvenation Potion", "=ds=#e2#"}; - { 28, 18260, "", "=q3=Formula: Enchant Weapon - Healing Power", "=ds=#p4# (300)", "", "0.75%"}; - }; - - ------------------------------------------ - --- Blackrock Mountain: Blackwing Lair --- - ------------------------------------------ - - AtlasLoot_Data["BWLRazorgore"] = { - { 1, 16918, "", "=q4=Netherwind Bindings", "=q1=#m1# =ds=#c3#", "", "20.41%"}; - { 2, 16926, "", "=q4=Bindings of Transcendence", "=q1=#m1# =ds=#c5#", "", "20.37%"}; - { 3, 16934, "", "=q4=Nemesis Bracers", "=q1=#m1# =ds=#c8#", "", "18.11%"}; - { 4, 16911, "", "=q4=Bloodfang Bracers", "=q1=#m1# =ds=#c6#", "", "20.69%"}; - { 5, 16904, "", "=q4=Stormrage Bracers", "=q1=#m1# =ds=#c1#", "", "17.38%"}; - { 6, 16935, "", "=q4=Dragonstalker's Bracers", "=q1=#m1# =ds=#c2#", "", "19.13%"}; - { 7, 16943, "", "=q4=Bracers of Ten Storms", "=q1=#m1# =ds=#c7#", "", "7.54%"}; - { 8, 16959, "", "=q4=Bracelets of Wrath", "=q1=#m1# =ds=#c9#", "", "20.29%"}; - { 9, 16951, "", "=q4=Judgement Bindings", "=q1=#m1# =ds=#c4#", "", "13.61%"}; - { 16, 19337, "", "=q4=The Black Book", "=ds=#s14#, =q1=#m1# =ds=#c8#", "", "18.37%"}; - { 17, 19336, "", "=q4=Arcane Infused Gem", "=ds=#s14#, =q1=#m1# =ds=#c2#", "", "17.33%"}; - { 19, 19370, "", "=q4=Mantle of the Blackwing Cabal", "=ds=#s3#, #a1#", "", "18.57%"}; - { 20, 19369, "", "=q4=Gloves of Rapid Evolution", "=ds=#s9#, #a1#", "", "17.52%"}; - { 21, 19334, "", "=q4=The Untamed Blade", "=ds=#h2#, #w10#", "", "9.76%"}; - { 22, 19335, "", "=q4=Spineshatter", "=ds=#h1#, #w6#", "", "10.44%"}; - Next = "BWLVaelastrasz"; - }; - - AtlasLoot_Data["BWLVaelastrasz"] = { - { 1, 16818, "", "=q4=Netherwind Belt", "=q1=#m1# =ds=#c3#", "", "19.94%"}; - { 2, 16925, "", "=q4=Belt of Transcendence", "=q1=#m1# =ds=#c5#", "", "18.76%"}; - { 3, 16933, "", "=q4=Nemesis Belt", "=q1=#m1# =ds=#c8#", "", "18.42%"}; - { 4, 16936, "", "=q4=Dragonstalker's Belt", "=q1=#m1# =ds=#c2#", "", "20.17%"}; - { 5, 16903, "", "=q4=Stormrage Belt", "=q1=#m1# =ds=#c1#", "", "16.90%"}; - { 6, 16910, "", "=q4=Bloodfang Belt", "=q1=#m1# =ds=#c6#", "", "19.69%"}; - { 7, 16944, "", "=q4=Belt of Ten Storms", "=q1=#m1# =ds=#c7#", "", "6.93%"}; - { 8, 16960, "", "=q4=Waistband of Wrath", "=q1=#m1# =ds=#c9#", "", "20.03%"}; - { 9, 16952, "", "=q4=Judgement Belt", "=q1=#m1# =ds=#c4#", "", "12.23%"}; - { 16, 19339, "", "=q4=Mind Quickening Gem", "=ds=#s14#, =q1=#m1# =ds=#c3#", "", "18.96%"}; - { 17, 19340, "", "=q4=Rune of Metamorphosis", "=ds=#s14#, =q1=#m1# =ds=#c1#", "", "17.66%"}; - { 19, 19372, "", "=q4=Helm of Endless Rage", "=ds=#s1#, #a4#", "", "16.76%"}; - { 20, 19371, "", "=q4=Pendant of the Fallen Dragon", "=ds=#s2#", "", "18.56%"}; - { 21, 19346, "", "=q4=Dragonfang Blade", "=ds=#h1#, #w4#", "", "9.40%"}; - { 22, 19348, "", "=q4=Red Dragonscale Protector", "=ds=#w8#", "", "8.57%"}; - Prev = "BWLRazorgore"; - Next = "BWLLashlayer"; - }; - - AtlasLoot_Data["BWLLashlayer"] = { - { 1, 16912, "", "=q4=Netherwind Boots", "=q1=#m1# =ds=#c3#", "", "17.17%"}; - { 2, 16919, "", "=q4=Boots of Transcendence", "=q1=#m1# =ds=#c5#", "", "14.61%"}; - { 3, 16927, "", "=q4=Nemesis Boots", "=q1=#m1# =ds=#c8#", "", "15.32%"}; - { 4, 16898, "", "=q4=Stormrage Boots", "=q1=#m1# =ds=#c1#", "", "13.79%"}; - { 5, 16906, "", "=q4=Bloodfang Boots", "=q1=#m1# =ds=#c6#", "", "15.66%"}; - { 6, 16941, "", "=q4=Dragonstalker's Greaves", "=q1=#m1# =ds=#c2#", "", "17.78%"}; - { 7, 16949, "", "=q4=Greaves of Ten Storms", "=q1=#m1# =ds=#c7#", "", "5.57%"}; - { 8, 16965, "", "=q4=Sabatons of Wrath", "=q1=#m1# =ds=#c9#", "", "16.84%"}; - { 9, 16957, "", "=q4=Judgement Sabatons", "=q1=#m1# =ds=#c4#", "", "11.28%"}; - { 12, 20383, "", "=q1=Head of the Broodlord Lashlayer", "=ds=#m3#", "", "100%"}; - { 16, 19342, "", "=q4=Venomous Totem", "=ds=#s14#, =q1=#m1# =ds=#c6#", "", "15.06%"}; - { 17, 19341, "", "=q4=Lifegiving Gem", "=ds=#s14#, =q1=#m1# =ds=#c9#", "", "14.27%"}; - { 19, 19374, "", "=q4=Bracers of Arcane Accuracy", "=ds=#s8#, #a1#", "", "15.03%"}; - { 20, 19373, "", "=q4=Black Brood Pauldrons", "=ds=#s3#, #a3#", "", "17.25%"}; - { 21, 19351, "", "=q4=Maladath, Runed Blade of the Black Flight", "=ds=#h1#, #w10#", "", "9.62%"}; - { 22, 19350, "", "=q4=Heartstriker", "=ds=#w2#", "", "8.45%"}; - Prev = "BWLVaelastrasz"; - Next = "BWLFiremaw"; - }; - - AtlasLoot_Data["BWLFiremaw"] = { - { 1, 16913, "", "=q4=Netherwind Gloves", "=q1=#m1# =ds=#c3#", "", "7.37%"}; - { 2, 16920, "", "=q4=Handguards of Transcendence", "=q1=#m1# =ds=#c5#", "", "6.01%"}; - { 3, 16928, "", "=q4=Nemesis Gloves", "=q1=#m1# =ds=#c8#", "", "5.28%"}; - { 4, 16907, "", "=q4=Bloodfang Gloves", "=q1=#m1# =ds=#c6#", "", "6.84%"}; - { 5, 16940, "", "=q4=Dragonstalker's Gauntlets", "=q1=#m1# =ds=#c2#", "", "6.13%"}; - { 6, 16899, "", "=q4=Stormrage Handguards", "=q1=#m1# =ds=#c1#", "", "5.34%"}; - { 7, 16948, "", "=q4=Gauntlets of Ten Storms", "=q1=#m1# =ds=#c7#", "", "2.13%"}; - { 8, 16964, "", "=q4=Gauntlets of Wrath", "=q1=#m1# =ds=#c9#", "", "5.93%"}; - { 9, 16956, "", "=q4=Judgement Gauntlets", "=q1=#m1# =ds=#c4#", "", "3.58%"}; - { 11, 19365, "", "=q4=Claw of the Black Drake", "=ds=#h3#, #w13#", "", "15.97%"}; - { 12, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "3.70%"}; - { 13, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "3.18%"}; - { 16, 19343, "", "=q4=Scrolls of Blinding Light", "=ds=#s14#, =q1=#m1# =ds=#c4#", "", "9.17%"}; - { 17, 19344, "", "=q4=Natural Alignment Crystal", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "4.03%"}; - { 19, 19398, "", "=q4=Cloak of Firemaw", "=ds=#s4#", "", "15.39%"}; - { 20, 19400, "", "=q4=Firemaw's Clutch", "=ds=#s10#, #a1#", "", "14.75%"}; - { 21, 19399, "", "=q4=Black Ash Robe", "=ds=#s5#, #a1#", "", "15.00%"}; - { 22, 19396, "", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "", "5.44%"}; - { 23, 19401, "", "=q4=Primalist's Linked Legguards", "=ds=#s11#, #a3#", "", "5.37%"}; - { 24, 19394, "", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "", "6.76%"}; - { 25, 19402, "", "=q4=Legguards of the Fallen Crusader", "=ds=#s11#, #a4#", "", "9.50%"}; - { 27, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "5.98%"}; - { 28, 19395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "5.30%"}; - Prev = "BWLLashlayer"; - Next = "BWLEbonroc"; - }; - - AtlasLoot_Data["BWLEbonroc"] = { - { 1, 16913, "", "=q4=Netherwind Gloves", "=q1=#m1# =ds=#c3#", "", "6.44%"}; - { 2, 16920, "", "=q4=Handguards of Transcendence", "=q1=#m1# =ds=#c5#", "", "6.59%"}; - { 3, 16928, "", "=q4=Nemesis Gloves", "=q1=#m1# =ds=#c8#", "", "7.15%"}; - { 4, 16907, "", "=q4=Bloodfang Gloves", "=q1=#m1# =ds=#c6#", "", "7.07%"}; - { 5, 16940, "", "=q4=Dragonstalker's Gauntlets", "=q1=#m1# =ds=#c2#", "", "6.91%"}; - { 6, 16899, "", "=q4=Stormrage Handguards", "=q1=#m1# =ds=#c1#", "", "6.32%"}; - { 7, 16948, "", "=q4=Gauntlets of Ten Storms", "=q1=#m1# =ds=#c7#", "", "1.93%"}; - { 8, 16964, "", "=q4=Gauntlets of Wrath", "=q1=#m1# =ds=#c9#", "", "6.19%"}; - { 9, 16956, "", "=q4=Judgement Gauntlets", "=q1=#m1# =ds=#c4#", "", "4.45%"}; - { 16, 19345, "", "=q4=Aegis of Preservation", "=ds=#s14#, =q1=#m1# =ds=#c5#", "", "16.47%"}; - { 18, 19407, "", "=q4=Ebony Flame Gloves", "=ds=#s9#, #a1#", "", "16.59%"}; - { 19, 19405, "", "=q4=Malfurion's Blessed Bulwark", "=ds=#s5#, #a2#", "", "17.03%"}; - { 20, 19396, "", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "", "5.99%"}; - { 21, 19394, "", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "", "5.68%"}; - { 23, 19403, "", "=q4=Band of Forced Concentration", "=ds=#s13#", "", "14.63%"}; - { 24, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "5.99%"}; - { 25, 19406, "", "=q4=Drake Fang Talisman", "=ds=#s14#", "", "17.41%"}; - { 26, 19395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "5.62%"}; - { 28, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "3.60%"}; - { 29, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "2.77%"}; - { 30, 19368, "", "=q4=Dragonbreath Hand Cannon", "=ds=#w5#", "", "8.58%"}; - Prev = "BWLFiremaw"; - Next = "BWLFlamegor"; - }; - - AtlasLoot_Data["BWLFlamegor"] = { - { 1, 16913, "", "=q4=Netherwind Gloves", "=q1=#m1# =ds=#c3#", "", "6.91%"}; - { 2, 16920, "", "=q4=Handguards of Transcendence", "=q1=#m1# =ds=#c5#", "", "6.47%"}; - { 3, 16928, "", "=q4=Nemesis Gloves", "=q1=#m1# =ds=#c8#", "", "6.65%"}; - { 4, 16907, "", "=q4=Bloodfang Gloves", "=q1=#m1# =ds=#c6#", "", "6.41%"}; - { 5, 16940, "", "=q4=Dragonstalker's Gauntlets", "=q1=#m1# =ds=#c2#", "", "6.73%"}; - { 6, 16899, "", "=q4=Stormrage Handguards", "=q1=#m1# =ds=#c1#", "", "5.66%"}; - { 7, 16948, "", "=q4=Gauntlets of Ten Storms", "=q1=#m1# =ds=#c7#", "", "2.72%"}; - { 8, 16964, "", "=q4=Gauntlets of Wrath", "=q1=#m1# =ds=#c9#", "", "6.63%"}; - { 9, 16956, "", "=q4=Judgement Gauntlets", "=q1=#m1# =ds=#c4#", "", "3.64%"}; - { 16, 19430, "", "=q4=Shroud of Pure Thought", "=ds=#s4#", "", "17.50%"}; - { 17, 19396, "", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "", "6.41%"}; - { 18, 19433, "", "=q4=Emberweave Leggings", "=ds=#s11#, #a3#", "", "18.73%"}; - { 19, 19394, "", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "", "5.95%"}; - { 21, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.25%"}; - { 22, 19432, "", "=q4=Circle of Applied Force", "=ds=#s13#", "", "18.69%"}; - { 23, 19395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "5.46%"}; - { 24, 19431, "", "=q4=Styleen's Impeding Scarab", "=ds=#s14#", "", "17.02%"}; - { 26, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "3.79%"}; - { 27, 19357, "", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "", "9.07%"}; - { 28, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "2.66%"}; - { 29, 19367, "", "=q4=Dragon's Touch", "=ds=#w12#", "", "9.06%"}; - Prev = "BWLEbonroc"; - Next = "BWLChromaggus"; - }; - - AtlasLoot_Data["BWLChromaggus"] = { - { 1, 16917, "", "=q4=Netherwind Mantle", "=q1=#m1# =ds=#c3#", "", "18.09%"}; - { 2, 16924, "", "=q4=Pauldrons of Transcendence", "=q1=#m1# =ds=#c5#", "", "17.83%"}; - { 3, 16932, "", "=q4=Nemesis Spaulders", "=q1=#m1# =ds=#c8#", "", "16.26%"}; - { 4, 16937, "", "=q4=Dragonstalker's Spaulders", "=q1=#m1# =ds=#c2#", "", "16.20%"}; - { 5, 16902, "", "=q4=Stormrage Pauldrons", "=q1=#m1# =ds=#c1#", "", "14.63%"}; - { 6, 16832, "", "=q4=Bloodfang Spaulders", "=q1=#m1# =ds=#c6#", "", "17.03%"}; - { 7, 16945, "", "=q4=Epaulets of Ten Storms", "=q1=#m1# =ds=#c7#", "", "6.73%"}; - { 8, 16953, "", "=q4=Judgement Spaulders", "=q1=#m1# =ds=#c4#", "", "10.97%"}; - { 9, 16961, "", "=q4=Pauldrons of Wrath", "=q1=#m1# =ds=#c9#", "", "16.83%"}; - { 16, 19386, "", "=q4=Elementium Threaded Cloak", "=ds=#s4#", "", "18.93%"}; - { 17, 19388, "", "=q4=Angelista's Grasp", "=ds=#s10#, #a1#", "", "16.86%"}; - { 18, 19385, "", "=q4=Empowered Leggings", "=ds=#s11#, #a1#", "", "16.27%"}; - { 19, 19391, "", "=q4=Shimmering Geta", "=ds=#s12#, #a1#", "", "17.46%"}; - { 20, 19389, "", "=q4=Taut Dragonhide Shoulderpads", "=ds=#s3#, #a2#", "", "16.89%"}; - { 21, 19390, "", "=q4=Taut Dragonhide Gloves", "=ds=#s9#, #a2#", "", "18.84%"}; - { 22, 19393, "", "=q4=Primalist's Linked Waistguard", "=ds=#s10#, #a3#", "", "6.17%"}; - { 23, 19392, "", "=q4=Girdle of the Fallen Crusader", "=ds=#s10#, #a4#", "", "10.97%"}; - { 24, 19387, "", "=q4=Chromatic Boots", "=ds=#s12#, #a4#", "", "16.46%"}; - { 26, 19347, "", "=q4=Claw of Chromaggus", "=ds=#h3#, #w4#", "", "8.39%"}; - { 27, 19352, "", "=q4=Chromatically Tempered Sword", "=ds=#h1#, #w10#", "", "9.05%"}; - { 28, 19349, "", "=q4=Elementium Reinforced Bulwark", "=ds=#w8#", "", "8.04%"}; - { 29, 19361, "", "=q4=Ashjre'thul, Crossbow of Smiting", "=ds=#w3#", "", "7.51%"}; - Prev = "BWLFlamegor"; - Next = "BWLNefarian1"; - }; - - AtlasLoot_Data["BWLNefarian1"] = { - { 1, 16914, "", "=q4=Netherwind Crown", "=q1=#m1# =ds=#c3#", "", "14.09%"}; - { 2, 16916, "", "=q4=Netherwind Robes", "=q1=#m1# =ds=#c3#", "", "14.03%"}; - { 3, 16929, "", "=q4=Nemesis Skullcap", "=q1=#m1# =ds=#c8#", "", "13.54%"}; - { 4, 16931, "", "=q4=Nemesis Robes", "=q1=#m1# =ds=#c8#", "", "12.46%"}; - { 5, 16921, "", "=q4=Halo of Transcendence", "=q1=#m1# =ds=#c5#", "", "13.39%"}; - { 6, 16923, "", "=q4=Robes of Transcendence", "=q1=#m1# =ds=#c5#", "", "14.83%"}; - { 7, 16908, "", "=q4=Bloodfang Hood", "=q1=#m1# =ds=#c6#", "", "13.21%"}; - { 8, 16905, "", "=q4=Bloodfang Chestpiece", "=q1=#m1# =ds=#c6#", "", "14.21%"}; - { 9, 16900, "", "=q4=Stormrage Cover", "=q1=#m1# =ds=#c1#", "", "13.08%"}; - { 10, 16897, "", "=q4=Stormrage Chestguard", "=q1=#m1# =ds=#c1#", "", "11.89%"}; - { 11, 16939, "", "=q4=Dragonstalker's Helm", "=q1=#m1# =ds=#c2#", "", "13.91%"}; - { 12, 16942, "", "=q4=Dragonstalker's Breastplate", "=q1=#m1# =ds=#c2#", "", "13.30%"}; - { 13, 16947, "", "=q4=Helmet of Ten Storms", "=q1=#m1# =ds=#c7#", "", "4.86%"}; - { 14, 16950, "", "=q4=Breastplate of Ten Storms", "=q1=#m1# =ds=#c7#", "", "5.65%"}; - { 15, 16963, "", "=q4=Helm of Wrath", "=q1=#m1# =ds=#c9#", "", "13.65%"}; - { 16, 16966, "", "=q4=Breastplate of Wrath", "=q1=#m1# =ds=#c9#", "", "15.06%"}; - { 17, 16955, "", "=q4=Judgement Crown", "=q1=#m1# =ds=#c4#", "", "8.64%"}; - { 18, 16958, "", "=q4=Judgement Breastplate", "=q1=#m1# =ds=#c4#", "", "9.24%"}; - { 19, 19378, "", "=q4=Cloak of the Brood Lord", "=ds=#s4#", "", "14.95%"}; - { 20, 19375, "", "=q4=Mish'undare, Circlet of the Mind Flayer", "=ds=#s1#, #a1#", "", "14.80%"}; - { 21, 19381, "", "=q4=Boots of the Shadow Flame", "=ds=#s12#, #a2#", "", "15.70%"}; - { 22, 19380, "", "=q4=Therazane's Link", "=ds=#s10#, #a3#", "", "16.82%"}; - { 23, 19377, "", "=q4=Prestor's Talisman of Connivery", "=ds=#s2#", "", "14.33%"}; - { 24, 19376, "", "=q4=Archimtiros' Ring of Reckoning", "=ds=#s13#", "", "13.93%"}; - { 25, 19382, "", "=q4=Pure Elementium Band", "=ds=#s13#", "", "15.15%"}; - { 26, 19379, "", "=q4=Neltharion's Tear", "=ds=#s14#", "", "14.26%"}; - { 27, 19364, "", "=q4=Ashkandi, Greatsword of the Brotherhood", "=ds=#h2#, #w10#", "", "7.21%"}; - { 28, 19363, "", "=q4=Crul'shorukh, Edge of Chaos", "=ds=#h1#, #w1#", "", "7.00%"}; - { 29, 19360, "", "=q4=Lok'amir il Romathis", "=ds=#h3#, #w6#", "", "6.98%"}; - { 30, 19356, "", "=q4=Staff of the Shadow Flame", "=ds=#w9#", "", "7.27%"}; - Prev = "BWLChromaggus"; - Next = "BWLNefarian2"; - }; - - AtlasLoot_Data["BWLNefarian2"] = { - { 1, 19003, "", "=q4=Head of Nefarian", "=ds=#m2#", "", "100%"}; - { 2, 19383, "", "=q4=Master Dragonslayer's Medallion", "=q1=#m4#: =ds=#s2#"}; - { 3, 19384, "", "=q4=Master Dragonslayer's Ring", "=q1=#m4#: =ds=#s13#"}; - { 4, 19366, "", "=q4=Master Dragonslayer's Orb", "=q1=#m4#: =ds=#s15#"}; - { 6, 21138, "", "=q1=Red Scepter Shard", "=ds=#m3#", "", "100%"}; - Prev = "BWLNefarian1"; - Next = "BWLTrashMobs"; - }; - - AtlasLoot_Data["BWLTrashMobs"] = { - { 1, 19436, "", "=q4=Cloak of Draconic Might", "=ds=#s4#", "", "2.53%"}; - { 2, 19437, "", "=q4=Boots of Pure Thought", "=ds=#s12#, #a1#", "", "2.33%"}; - { 3, 19438, "", "=q4=Ringo's Blizzard Boots", "=ds=#s12#, #a1#", "", "4.42%"}; - { 4, 19439, "", "=q4=Interlaced Shadow Jerkin", "=ds=#s5#, #a2#", "", "4.62%"}; - { 5, 19434, "", "=q4=Band of Dark Dominion", "=ds=#s13#", "", "1.57%"}; - { 6, 19362, "", "=q4=Doom's Edge", "=ds=#h1#, #w1#", "", "1.67%"}; - { 7, 19354, "", "=q4=Draconic Avenger", "=ds=#h2#, #w1#", "", "5.96%"}; - { 8, 19358, "", "=q4=Draconic Maul", "=ds=#h2#, #w6#", "", "2.30%"}; - { 9, 19435, "", "=q4=Essence Gatherer", "=ds=#w12#", "", "1.61%"}; - { 16, 18562, "", "=q4=Elementium Ore", "=ds=#e8#", "", "4.75%"}; - { 18, 21109, "", "=q1=Draconic for Dummies", "=ds=#m3#"}; - Prev = "BWLNefarian2"; - }; - - ----------------------- - --- Dire Maul Books --- - ----------------------- - - AtlasLoot_Data["DMBooks"] = { - { 1, 18364, "", "=q3=The Emerald Dream", "=ds=#e10#, =q1=#m1# =ds=#c1#"}; - { 2, 18361, "", "=q3=The Greatest Race of Hunters", "=ds=#e10#, =q1=#m1# =ds=#c2#"}; - { 3, 18358, "", "=q3=The Arcanist's Cookbook", "=ds=#e10#, =q1=#m1# =ds=#c3#"}; - { 4, 18359, "", "=q3=The Light and How to Swing It", "=ds=#e10#, =q1=#m1# =ds=#c4#"}; - { 5, 18362, "", "=q3=Holy Bologna: What the Light Won't Tell You", "=ds=#e10#, =q1=#m1# =ds=#c5#"}; - { 6, 18356, "", "=q3=Garona: A Study on Stealth and Treachery", "=ds=#e10#, =q1=#m1# =ds=#c6#"}; - { 7, 18363, "", "=q3=Frost Shock and You", "=ds=#e10#, =q1=#m1# =ds=#c7#"}; - { 8, 18360, "", "=q3=Harnessing Shadows", "=ds=#e10#, =q1=#m1# =ds=#c8#"}; - { 9, 18357, "", "=q3=Codex of Defense", "=ds=#e10#, =q1=#m1# =ds=#c9#"}; - { 11, 18333, "", "=q2=Libram of Focus", "=ds=#e10#"}; - { 12, 18334, "", "=q2=Libram of Protection", "=ds=#e10#"}; - { 13, 18332, "", "=q2=Libram of Rapidity", "=ds=#e10#"}; - { 16, 18470, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c1#"}; - { 17, 18473, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c2#"}; - { 18, 18468, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c3#"}; - { 19, 18472, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c4#"}; - { 20, 18469, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c5#"}; - { 21, 18465, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c6#"}; - { 22, 18471, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c7#"}; - { 23, 18467, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c8#"}; - { 24, 18466, "", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14#, =q1=#m1# =ds=#c9#"}; - { 26, 18401, "", "=q4=Foror's Compendium of Dragon Slaying", "=ds=#e10#, =q1=#m1# =ds=#c9#, #c4#"}; - { 27, 18348, "", "=q4=Quel'Serrar", "=ds=#h3#, #w10#, =q1=#m1# =ds=#c9#, #c4#"}; - }; - - ---------------------- - --- Dire Maul East --- - ---------------------- - - AtlasLoot_Data["DMEPusillin"] = { - { 1, 18267, "", "=q2=Recipe: Runn Tum Tuber Surprise", "=ds=#p3# (275)", "", "71.55%"}; - { 3, 18261, "", "=q1=Book of Incantations", "=ds=#m3#", "", "100%"}; - { 4, 18249, "", "=q1=Crescent Key", "=ds=#e9#", "", "100%"}; - }; - - AtlasLoot_Data["DMEZevrimThornhoof"] = { - { 1, 18319, "", "=q3=Fervent Helm", "=ds=#s1#, #a3#", "", "7.88%"}; - { 2, 18313, "", "=q3=Helm of Awareness", "=ds=#s1#, #a4#", "", "17.87%"}; - { 3, 18323, "", "=q3=Satyr's Bow", "=ds=#w2#", "", "17.24%"}; - { 5, 18306, "", "=q2=Gloves of Shadowy Mist", "=ds=#s9#, #a1#", "", "21.40%"}; - { 6, 18308, "", "=q2=Clever Hat", "=ds=#s1#, #a2#", "", "23.73%"}; - }; - - AtlasLoot_Data["DMELethtendris"] = { - { 1, 18325, "", "=q3=Felhide Cap", "=ds=#s1#, #a2#", "", "24.67%"}; - { 2, 18311, "", "=q3=Quel'dorai Channeling Rod", "=ds=#w9#", "", "7.30%"}; - { 4, 18302, "", "=q2=Band of Vigor", "=ds=#s13#", "", "29.30%"}; - { 5, 18301, "", "=q2=Lethtendris's Wand", "=ds=#w12#", "", "25.57%"}; - { 7, 18426, "", "=q1=Lethtendris's Web", "=ds=#m3#"}; - }; - - AtlasLoot_Data["DMEPimgib"] = { - { 1, 18354, "", "=q3=Pimgib's Collar", "=ds=#s14#, =q1=#m1# =ds=#c8#", "", "18.68%"}; - }; - - AtlasLoot_Data["DMEHydro"] = { - { 1, 18322, "", "=q3=Waterspout Boots", "=ds=#s12#, #a2#", "", "16.42%"}; - { 2, 18317, "", "=q3=Tempest Talisman", "=ds=#s2#", "", "16.44%"}; - { 3, 18324, "", "=q3=Waveslicer", "=ds=#h2#, #w1#", "", "8.46%"}; - { 5, 18307, "", "=q2=Riptide Shoes", "=ds=#s12#, #a1#", "", "21.33%"}; - { 6, 18305, "", "=q2=Breakwater Legguards", "=ds=#s11#, #a4#", "", "22.75%"}; - }; - - AtlasLoot_Data["DMEAlzzin"] = { - { 1, 18328, "", "=q3=Shadewood Cloak", "=ds=#s4#", "", "15.36%"}; - { 2, 18327, "", "=q3=Whipvine Cord", "=ds=#s10#, #a1#", "", "16.53%"}; - { 3, 18309, "", "=q3=Gloves of Restoration", "=ds=#s9#, #a2#", "", "14.05%"}; - { 4, 18318, "", "=q3=Merciful Greaves", "=ds=#s12#, #a3#", "", "14.88%"}; - { 5, 18312, "", "=q3=Energized Chestplate", "=ds=#s5#, #a4#", "", "16.08%"}; - { 6, 18326, "", "=q3=Razor Gauntlets", "=ds=#s9#, #a4#", "", "18.62%"}; - { 8, 0, "INV_Box_01", "=q6=#x9#", ""}; - { 9, 18501, "", "=q1=Felvine Shard", "=ds=#m3#"}; - { 16, 18315, "", "=q3=Ring of Demonic Potency", "=ds=#s13#", "", "15.40%"}; - { 17, 18314, "", "=q3=Ring of Demonic Guile", "=ds=#s13#", "", "13.71%"}; - { 18, 18310, "", "=q3=Fiendish Machete", "=ds=#h1#, #w10#", "", "15.39%"}; - { 19, 18321, "", "=q3=Energetic Rod", "=ds=#h3#, #w6#", "", "15.94%"}; - }; - - AtlasLoot_Data["DMEIsalien"] = { - { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n20#"}; - { 2, 22304, "", "=q3=Ironweave Gloves", "=ds=#s9#, #a1#", "", "16.24%"}; - { 3, 22472, "", "=q3=Boots of Ferocity", "=ds=#s12#, #a2#", "", "12.55%"}; - { 4, 22401, "", "=q3=Libram of Hope", "=ds=#s16#, #w16#", "", "14.76%"}; - { 5, 22345, "", "=q3=Totem of Rebirth", "=ds=#s16#, #w15#", "", "2.95%"}; - { 6, 22315, "", "=q3=Hammer of Revitalization", "=ds=#h3#, #w6#", "", "13.65%"}; - { 7, 22314, "", "=q3=Huntsman's Harpoon", "=ds=#w7#", "", "15.50%"}; - { 17, 21984, "", "=q1=Left Piece of Lord Valthalak's Amulet", "=ds=#m3#"}; - { 18, 22046, "", "=q1=Right Piece of Lord Valthalak's Amulet", "=ds=#m3#"}; - }; - - AtlasLoot_Data["DMETrash"] = { - { 1, 18295, "", "=q3=Phasing Boots", "=ds=#s12#, #a1# =q2=#m16#", "", "1.26%"}; - { 2, 18298, "", "=q3=Unbridled Leggings", "=ds=#s11#, #a2#", "", "0.62%"}; - { 3, 18296, "", "=q3=Marksman Bands", "=ds=#s8#, #a3#", "", "0.59%"}; - { 4, 18289, "", "=q3=Barbed Thorn Necklace", "=ds=#s2#", "", "0.87%"}; - }; - - ----------------------- - --- Dire Maul North --- - ----------------------- - - AtlasLoot_Data["DMNGuardMoldar"] = { - { 1, 18496, "", "=q3=Heliotrope Cloak", "=ds=#s4#", "", "4.68%"}; - { 2, 18497, "", "=q3=Sublime Wristguards", "=ds=#s8#, #a1#", "", "4.14%"}; - { 3, 18494, "", "=q3=Denwatcher's Shoulders", "=ds=#s3#, #a3#", "", "4.62%"}; - { 4, 18493, "", "=q3=Bulky Iron Spaulders", "=ds=#s3#, #a4#", "", "3.96%"}; - { 5, 18498, "", "=q3=Hedgecutter", "=ds=#h1#, #w1#", "", "4.94%"}; - { 7, 18268, "", "=q1=Gordok Inner Door Key", "=ds=#e9#", "", "100%"}; - { 16, 18450, "", "=q2=Robe of Combustion", "=ds=#s5#, #a1#", "", "6.57%"}; - { 17, 18451, "", "=q2=Hyena Hide Belt", "=ds=#s10#, #a2#", "", "6.61%"}; - { 18, 18458, "", "=q2=Modest Armguards", "=ds=#s8#, #a3#", "", "7.12%"}; - { 19, 18459, "", "=q2=Gallant's Wristguards", "=ds=#s8#, #a4#", "", "6.09%"}; - { 20, 18464, "", "=q2=Gordok Nose Ring", "=ds=#s13#", "", "6.52%"}; - { 21, 18462, "", "=q2=Jagged Bone Fist", "=ds=#h1#, #w13#", "", "7.54%"}; - { 22, 18463, "", "=q2=Ogre Pocket Knife", "=ds=#h1#, #w10#", "", "7.38%"}; - { 23, 18460, "", "=q2=Unsophisticated Hand Cannon", "=ds=#w5#", "", "5.86%"}; - }; - - AtlasLoot_Data["DMNStomperKreeg"] = { - { 1, 18425, "", "=q2=Kreeg's Mug", "=ds=#s15#", "", "40.24%"}; - { 2, 18269, "", "=q2=Gordok Green Grog", "=ds=#e4#", "", "100%"}; - { 3, 18284, "", "=q2=Kreeg's Stout Beatdown", "=ds=#e4#", "", "100%"}; - }; - - AtlasLoot_Data["DMNGuardFengus"] = { - { 1, 18450, "", "=q2=Robe of Combustion", "=ds=#s5#, #a1#", "", "9.76%"}; - { 2, 18451, "", "=q2=Hyena Hide Belt", "=ds=#s10#, #a2#", "", "10.64%"}; - { 3, 18458, "", "=q2=Modest Armguards", "=ds=#s8#, #a3#", "", "11.41%"}; - { 4, 18459, "", "=q2=Gallant's Wristguards", "=ds=#s8#, #a4#", "", "9.60%"}; - { 5, 18464, "", "=q2=Gordok Nose Ring", "=ds=#s13#", "", "11.41%"}; - { 6, 18462, "", "=q2=Jagged Bone Fist", "=ds=#h1#, #w13#", "", "11.79%"}; - { 7, 18463, "", "=q2=Ogre Pocket Knife", "=ds=#h1#, #w10#", "", "11.02%"}; - { 8, 18460, "", "=q2=Unsophisticated Hand Cannon", "=ds=#w5#", "", "9.07%"}; - { 16, 0, "INV_Box_01", "=q6=#x7#", ""}; - { 17, 18266, "", "=q1=Gordok Courtyard Key", "=ds=#e9#", "", "100%"}; - }; - - AtlasLoot_Data["DMNThimblejack"] = { - { 1, 18517, "", "=q4=Pattern: Chromatic Cloak", "=ds=#p7# (300)", "", "0.92%"}; - { 2, 18518, "", "=q4=Pattern: Hide of the Wild", "=ds=#p7# (300)", "", "1.29%"}; - { 3, 18519, "", "=q4=Pattern: Shifting Cloak", "=ds=#p7# (300)", "", "1.14%"}; - { 4, 18414, "", "=q4=Pattern: Belt of the Archmage", "=ds=#p8# (300)", "", "1.00%"}; - { 6, 18418, "", "=q3=Pattern: Cloak of Warding", "=ds=#p8# (300)", "", "9.75%"}; - { 7, 18415, "", "=q3=Pattern: Felcloth Gloves", "=ds=#p8# (300)", "", "9.62%"}; - { 8, 18416, "", "=q3=Pattern: Inferno Gloves", "=ds=#p8# (300)", "", "10.66%"}; - { 9, 18417, "", "=q3=Pattern: Mooncloth Gloves", "=ds=#p8# (300)", "", "10.28%"}; - { 10, 18514, "", "=q3=Pattern: Girdle of Insight", "=ds=#p7# (300)", "", "10.90%"}; - { 11, 18515, "", "=q3=Pattern: Mongoose Boots", "=ds=#p7# (300)", "", "11.18%"}; - { 12, 18516, "", "=q3=Pattern: Swift Flight Bracers", "=ds=#p7# (300)", "", "10.26%"}; - { 14, 0, "INV_Box_01", "=q6=#x6#", ""}; - { 15, 18240, "", "=q2=Ogre Tannin", "=ds=#m3#", "", "100%"}; - { 16, 18509, "", "=q4=Chromatic Cloak", "=ds=#s4#"}; - { 17, 18510, "", "=q4=Hide of the Wild", "=ds=#s4#"}; - { 18, 18511, "", "=q4=Shifting Cloak", "=ds=#s4#"}; - { 19, 18405, "", "=q4=Belt of the Archmage", "=ds=#s10#, #a1#"}; - { 21, 18413, "", "=q3=Cloak of Warding", "=ds=#s4#"}; - { 22, 18407, "", "=q3=Felcloth Gloves", "=ds=#s9#, #a1#"}; - { 23, 18408, "", "=q3=Inferno Gloves", "=ds=#s9#, #a1#"}; - { 24, 18409, "", "=q3=Mooncloth Gloves", "=ds=#s9#, #a1#"}; - { 25, 18504, "", "=q3=Girdle of Insight", "=ds=#s10#, #a2#"}; - { 26, 18506, "", "=q3=Mongoose Boots", "=ds=#s12#, #a2#"}; - { 27, 18508, "", "=q3=Swift Flight Bracers", "=ds=#s8#, #a3#"}; - }; - - AtlasLoot_Data["DMNGuardSlipkik"] = { - { 1, 18496, "", "=q3=Heliotrope Cloak", "=ds=#s4#", "", "5.82%"}; - { 2, 18497, "", "=q3=Sublime Wristguards", "=ds=#s8#, #a1#", "", "4.75%"}; - { 3, 18494, "", "=q3=Denwatcher's Shoulders", "=ds=#s3#, #a3#", "", "5.70%"}; - { 4, 18493, "", "=q3=Bulky Iron Spaulders", "=ds=#s3#, #a4#", "", "4.89%"}; - { 5, 18498, "", "=q3=Hedgecutter", "=ds=#h1#, #w1#", "", "6.01%"}; - { 16, 18450, "", "=q2=Robe of Combustion", "=ds=#s5#, #a1#", "", "6.78%"}; - { 17, 18451, "", "=q2=Hyena Hide Belt", "=ds=#s10#, #a2#", "", "7.83%"}; - { 18, 18458, "", "=q2=Modest Armguards", "=ds=#s8#, #a3#", "", "7.63%"}; - { 19, 18459, "", "=q2=Gallant's Wristguards", "=ds=#s8#, #a4#", "", "6.98%"}; - { 20, 18464, "", "=q2=Gordok Nose Ring", "=ds=#s13#", "", "7.36%"}; - { 21, 18462, "", "=q2=Jagged Bone Fist", "=ds=#h1#, #w13#", "", "8.52%"}; - { 22, 18463, "", "=q2=Ogre Pocket Knife", "=ds=#h1#, #w10#", "", "7.74%"}; - { 23, 18460, "", "=q2=Unsophisticated Hand Cannon", "=ds=#w5#", "", "6.66%"}; - }; - - AtlasLoot_Data["DMNCaptainKromcrush"] = { - { 1, 18507, "", "=q3=Boots of the Full Moon", "=ds=#s12#, #a1#", "", "18.75%"}; - { 2, 18505, "", "=q3=Mugger's Belt", "=ds=#s10#, #a2#", "", "18.06%"}; - { 3, 18503, "", "=q3=Kromcrush's Chestplate", "=ds=#s5#, #a4#", "", "17.48%"}; - { 4, 18502, "", "=q3=Monstrous Glaive", "=ds=#w7#", "", "21.47%"}; - }; - - AtlasLoot_Data["DMNChoRush"] = { - { 1, 18490, "", "=q3=Insightful Hood", "=ds=#s1#, #a2#", "", "21.46%"}; - { 2, 18484, "", "=q3=Cho'Rush's Blade", "=ds=#h1#, #w10#", "", "22.46%"}; - { 3, 18485, "", "=q3=Observer's Shield", "=ds=#w8#", "", "22.96%"}; - { 4, 18483, "", "=q3=Mana Channeling Wand", "=ds=#w12#", "", "19.01%"}; - }; - - AtlasLoot_Data["DMNKingGordok"] = { - { 1, 18526, "", "=q3=Crown of the Ogre King", "=ds=#s1#, #a1#", "", "17.17%"}; - { 2, 18525, "", "=q3=Bracers of Prosperity", "=ds=#s8#, #a2#", "", "19.15%"}; - { 3, 18527, "", "=q3=Harmonious Gauntlets", "=ds=#s9#, #a3#", "", "19.73%"}; - { 4, 18524, "", "=q3=Leggings of Destruction", "=ds=#s11#, #a3#", "", "18.55%"}; - { 5, 18521, "", "=q3=Grimy Metal Boots", "=ds=#s12#, #a4#", "", "17.80%"}; - { 6, 18522, "", "=q3=Band of the Ogre King", "=ds=#s13#", "", "14.96%"}; - { 7, 18523, "", "=q3=Brightly Glowing Stone", "=ds=#s15#", "", "20.21%"}; - { 8, 18520, "", "=q3=Barbarous Blade", "=ds=#h2#, #w10#", "", "16.44%"}; - { 16, 19258, "", "=q3=Ace of Warlords", "=ds=#e16#", "", "1.84%"}; - { 18, 18780, "", "=q3=Top Half of Advanced Armorsmithing: Volume I", "=ds=#m3#", "", "6.00%"}; - { 19, 12727, "", "=q3=Plans: Enchanted Thorium Breastplate", "=q1=#m4#: =ds=#p2# (300)"}; - }; - - AtlasLoot_Data["DMNTRIBUTERUN"] = { - { 1, 18538, "", "=q4=Treant's Bane", "=ds=#h2#, #w1#"}; - { 3, 18495, "", "=q3=Redoubt Cloak", "=ds=#s4#"}; - { 4, 18532, "", "=q3=Mindsurge Robe", "=ds=#s5#, #a1#"}; - { 5, 18528, "", "=q3=Cyclone Spaulders", "=ds=#s3#, #a2#"}; - { 6, 18530, "", "=q3=Ogre Forged Hauberk", "=ds=#s5#, #a3#"}; - { 7, 18533, "", "=q3=Gordok Bracers of Power", "=ds=#s8#, #a4#"}; - { 8, 18529, "", "=q3=Elemental Plate Girdle", "=ds=#s10#, #a4# =q2=#m16#"}; - { 9, 18500, "", "=q3=Tarnished Elven Ring", "=ds=#s13#"}; - { 10, 18537, "", "=q3=Counterattack Lodestone", "=ds=#s14#"}; - { 11, 18531, "", "=q3=Unyielding Maul", "=ds=#h2#, #w6#"}; - { 12, 18534, "", "=q3=Rod of the Ogre Magi", "=ds=#w9#"}; - { 13, 18499, "", "=q3=Barrier Shield", "=ds=#w8#"}; - { 16, 18475, "", "=q2=Oddly Magical Belt", "=ds=#s10#, #a1#"}; - { 17, 18478, "", "=q2=Hyena Hide Jerkin", "=ds=#s5#, #a2#"}; - { 18, 18477, "", "=q2=Shaggy Leggings", "=ds=#s11#, #a2#"}; - { 19, 18476, "", "=q2=Mud Stained Boots", "=ds=#s12#, #a2#"}; - { 20, 18479, "", "=q2=Carrion Scorpid Helm", "=ds=#s1#, #a3#"}; - { 21, 18480, "", "=q2=Scarab Plate Helm", "=ds=#s1#, #a4#"}; - { 22, 18481, "", "=q2=Skullcracking Mace", "=ds=#h2#, #w6#"}; - { 23, 18482, "", "=q2=Ogre Toothpick Shooter", "=ds=#w2#"}; - { 24, 18655, "", "=q2=Schematic: Major Recombobulator", "=ds=#p5# (275)"}; - }; - - ---------------------- - --- Dire Maul West --- - ---------------------- - - AtlasLoot_Data["DMWTendrisWarpwood"] = { - { 1, 18390, "", "=q3=Tanglemoss Leggings", "=ds=#s11#, #a2#", "", "22.55%"}; - { 2, 18393, "", "=q3=Warpwood Binding", "=ds=#s10#, #a3#", "", "19.81%"}; - { 4, 18353, "", "=q2=Stoneflower Staff", "=ds=#w9#", "", "23.46%"}; - { 5, 18352, "", "=q2=Petrified Bark Shield", "=ds=#w8#", "", "21.67%"}; - }; - - AtlasLoot_Data["DMWIllyannaRavenoak"] = { - { 1, 18386, "", "=q3=Padre's Trousers", "=ds=#s11#, #a1#", "", "18.79%"}; - { 2, 18383, "", "=q3=Force Imbued Gauntlets", "=ds=#s9#, #a4#", "", "20.11%"}; - { 4, 18349, "", "=q2=Gauntlets of Accuracy", "=ds=#s9#, #a3#", "", "23.94%"}; - { 5, 18347, "", "=q2=Well Balanced Axe", "=ds=#h1#, #w1#", "", "22.44%"}; - }; - - AtlasLoot_Data["DMWMagisterKalendris"] = { - { 1, 18374, "", "=q3=Flamescarred Shoulders", "=ds=#s3#, #a2#", "", "18.11%"}; - { 2, 18397, "", "=q3=Elder Magus Pendant", "=ds=#s2#", "", "17.46%"}; - { 3, 18371, "", "=q3=Mindtap Talisman", "=ds=#s14#", "", "7.45%"}; - { 5, 18350, "", "=q2=Amplifying Cloak", "=ds=#s4#", "", "21.44%"}; - { 6, 18351, "", "=q2=Magically Sealed Bracers", "=ds=#s8#, #a4#", "", "24.36%"}; - { 7, 22309, "", "=q2=Pattern: Big Bag of Enchantment", "=ds=#p8# (300)"}; - }; - AtlasLoot_Data["DMWTsuzee"] = { - { 1, 18387, "", "=q3=Brightspark Gloves", "=ds=#s9#, #a1#", "", "24.79%"}; - { 3, 18346, "", "=q2=Threadbare Trousers", "=ds=#s11#, #a1#", "", "33.94%"}; - { 4, 18345, "", "=q2=Murmuring Ring", "=ds=#s13#", "", "30.28%"}; - }; - - AtlasLoot_Data["DMWImmolthar"] = { - { 1, 18389, "", "=q3=Cloak of the Cosmos", "=ds=#s4#", "", "14.35%"}; - { 2, 18385, "", "=q3=Robe of Everlasting Night", "=ds=#s5#, #a1#", "", "15.33%"}; - { 3, 18377, "", "=q3=Quickdraw Gloves", "=ds=#s9#, #a2#", "", "21.01%"}; - { 4, 18391, "", "=q3=Eyestalk Cord", "=ds=#s10#, #a2#", "", "20.08%"}; - { 5, 18394, "", "=q3=Demon Howl Wristguards", "=ds=#s8#, #a3#", "", "17.51%"}; - { 6, 18379, "", "=q3=Odious Greaves", "=ds=#s12#, #a3#", "", " 19.81%"}; - { 7, 18384, "", "=q3=Bile-etched Spaulders", "=ds=#s3#, #a4#", "", "14.71%"}; - { 16, 18381, "", "=q3=Evil Eye Pendant", "=ds=#s2#", "", "17.78%"}; - { 17, 18370, "", "=q3=Vigilance Charm", "=ds=#s14#", "", "6.30%"}; - { 18, 18372, "", "=q3=Blade of the New Moon", "=ds=#h1#, #w4#", "", "6.99%"}; - }; - - AtlasLoot_Data["DMWHelnurath"] = { - { 1, 18757, "", "=q3=Diabolic Mantle", "=ds=#s3#, #a1#", "", "23.12%"}; - { 2, 18754, "", "=q3=Fel Hardened Bracers", "=ds=#s8#, #a4#", "", "19.24%"}; - { 3, 18756, "", "=q3=Dreadguard's Protector", "=ds=#w8#", "", "19.77%"}; - { 4, 18755, "", "=q3=Xorothian Firestick", "=ds=#w5#", "", "21.92%"}; - }; - - AtlasLoot_Data["DMWPrinceTortheldrin"] = { - { 1, 18382, "", "=q3=Fluctuating Cloak", "=ds=#s4# =q2=#m16#", "", "21.84%"}; - { 2, 18373, "", "=q3=Chestplate of Tranquility", "=ds=#s5#, #a2#", "", "6.32%"}; - { 3, 18375, "", "=q3=Bracers of the Eclipse", "=ds=#s8#, #a2#", "", "15.62%"}; - { 4, 18378, "", "=q3=Silvermoon Leggings", "=ds=#s11#, #a3#", "", "21.20%"}; - { 5, 18380, "", "=q3=Eldritch Reinforced Legplates", "=ds=#s11#, #a4#", "", "15.87%"}; - { 6, 18395, "", "=q3=Emerald Flame Ring", "=ds=#s13#", "", "14.55%"}; - { 8, 0, "INV_Box_01", "=q6=#x8#", ""}; - { 9, 18336, "", "=q1=Gauntlet of Gordok Might", "=ds=#m3#"}; - { 16, 18392, "", "=q3=Distracting Dagger", "=ds=#h4#, #w4#", "", "14.70%"}; - { 17, 18396, "", "=q3=Mind Carver", "=ds=#h3#, #w10#", "", "14.62%"}; - { 18, 18376, "", "=q3=Timeworn Mace", "=ds=#h1#, #w6#", "", "14.40%"}; - { 19, 18388, "", "=q3=Stoneshatter", "=ds=#w3#", "", "7.72%"}; - }; - - AtlasLoot_Data["DMWShendralarProvisioner"] = { - { 1, 18487, "", "=q1=Pattern: Mooncloth Robe", "=ds=#p8# (300)"}; - }; - - AtlasLoot_Data["DMWTrash"] = { - { 1, 18344, "", "=q3=Stonebark Gauntlets", "=ds=#s9#, #a2#", "", "0.47%"}; - { 2, 18340, "", "=q3=Eidolon Talisman", "=ds=#s2#", "", "0.58%"}; - { 3, 18338, "", "=q3=Wand of Arcane Potency", "=ds=#w12#", "", "0.78%"}; - }; - - ------------------ - --- Gnomeregan --- - ------------------ - - AtlasLoot_Data["Gnomeregan1"] = { - { 1, 0, "INV_Box_01", "=q6="..AL["Namdo Bizzfizzle"], "=ec1=#j28#"}; - { 2, 14639, "", "=q1=Schematic: Minor Recombobulator", "=ds=#p5# (140)"}; - { 4, 0, "INV_Box_01", "=q6="..BabbleBoss["Techbot"], "=ec1=#j28#"}; - { 5, 9444, "", "=q1=Techbot CPU Shell", "=ds=#w8#", "", "69.3%"}; - { 6, 9277, "", "=q1=Techbot's Memory Core", "=ds=#m3#", "", "100%"}; - { 8, 0, "INV_Box_01", "=q6="..BabbleBoss["Grubbis"], ""}; - { 9, 9445, "", "=q3=Grubbis Paws", "=ds=#s9#, #a3#", "", "9.22%"}; - { 11, 0, "INV_Box_01", "=q6="..BabbleBoss["Viscous Fallout"], ""}; - { 12, 9454, "", "=q3=Acidic Walkers", "=ds=#s12#, #a1#", "", "54.02%"}; - { 13, 9453, "", "=q3=Toxic Revenger", "=ds=#h1#, #w4#", "", "19.05%"}; - { 14, 9452, "", "=q3=Hydrocane", "=ds=#w9#", "", "18.25%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Electrocutioner 6000"], ""}; - { 17, 9448, "", "=q3=Spidertank Oilrag", "=ds=#s8#, #a1#", "", "28.37%"}; - { 18, 9447, "", "=q3=Electrocutioner Lagnut", "=ds=#s13#", "", "28.44%"}; - { 19, 9446, "", "=q3=Electrocutioner Leg", "=ds=#h1#, #w10#", "", "13.19%"}; - { 20, 6893, "", "=q1=Workshop Key", "=ds=#e9#"}; - { 22, 0, "INV_Box_01", "=q6="..BabbleBoss["Crowd Pummeler 9-60"], ""}; - { 23, 9450, "", "=q3=Gnomebot Operating Boots", "=ds=#s12#, #a2#", "", "60.45%"}; - { 24, 9449, "", "=q3=Manual Crowd Pummeler", "=ds=#h2#, #w6#", "", "33.14%"}; - { 26, 0, "INV_Box_01", "=q6="..BabbleBoss["Dark Iron Ambassador"], ""}; - { 27, 9455, "", "=q3=Emissary Cuffs", "=ds=#s8#, #a2# =q2=#m16#", "", "33.96%"}; - { 28, 9457, "", "=q3=Royal Diplomatic Scepter", "=ds=#h1#, #w6#", "", "17.79%"}; - { 29, 9456, "", "=q3=Glass Shooter", "=ds=#w5#", "", "38.01%"}; - Next = "Gnomeregan2"; - }; - - AtlasLoot_Data["Gnomeregan2"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Mekgineer Thermaplugg"], ""}; - { 2, 9492, "", "=q3=Electromagnetic Gigaflux Reactivator", "=ds=#s1#, #a1#", "", "7.65%"}; - { 3, 9461, "", "=q3=Charged Gear", "=ds=#s13# =q2=#m16#", "", "28.49%"}; - { 4, 9459, "", "=q3=Thermaplugg's Left Arm", "=ds=#h2#, #w1#", "", "18.05%"}; - { 5, 9458, "", "=q3=Thermaplugg's Central Core", "=ds=#w8#", "", "28.61%"}; - { 6, 4415, "", "=q3=Schematic: Craftsman's Monocle", "=ds=#p5# (185)", "", ""}; - { 7, 4413, "", "=q2=Schematic: Discombobulator Ray", "=ds=#p5# (160)", "", ""}; - { 8, 4411, "", "=q2=Schematic: Flame Deflector", "=ds=#p5# (125)", "", "0.7%"}; - { 9, 7742, "", "=q1=Schematic: Gnomish Cloaking Device", "=ds=#p5# (200)", "", ""}; - { 10, 9299, "", "=q1=Thermaplugg's Safe Combination", "=ds=#m3#", "", "100%"}; - { 16, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], ""}; - { 17, 9508, "", "=q3=Mechbuilder's Overalls", "=ds=#s5#, #a1#", "", "0.02%"}; - { 18, 9491, "", "=q3=Hotshot Pilot's Gloves", "=ds=#s9#, #a1#", "", "0.01%"}; - { 19, 9509, "", "=q3=Petrolspill Leggings", "=ds=#s11#, #a2#", "", "0.01%"}; - { 20, 9510, "", "=q3=Caverndeep Trudgers", "=ds=#s12#, #a3#", "", "0.01%"}; - { 21, 9490, "", "=q3=Gizmotron Megachopper", "=ds=#h2#, #w10#", "", "0.01%"}; - { 22, 9485, "", "=q3=Vibroblade", "=ds=#h1#, #w1#", "", "0.01%"}; - { 23, 9486, "", "=q3=Supercharger Battle Axe", "=ds=#h2#, #w1#", "", "0.02%"}; - { 24, 9488, "", "=q3=Oscillating Power Hammer", "=ds=#h1#, #w6#", "", "0.02%"}; - { 25, 9487, "", "=q3=Hi-tech Supergun", "=ds=#w5#", "", "0.01%"}; - { 26, 9327, "", "=q2=Security DELTA Data Access Card", "=ds=#m20#", "", "1.41%"}; - { 28, 9326, "", "=q1=Grime-Encrusted Ring", "=ds=#m2#", "", "9.38%"}; - { 29, 9362, "", "=q2=Brilliant Gold Ring", "=q1=#m4#: =ds=#s13#"}; - { 30, 9538, "", "=q3=Talvash's Gold Ring", "=q1=#m4#: =ds=#s13#"}; - Prev = "Gnomeregan1"; - }; - - ---------------- - --- Maraudon --- - ---------------- - - AtlasLoot_Data["Maraudon1"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Noxxion"], ""}; - { 2, 17746, "", "=q3=Noxxion's Shackles", "=ds=#s8#, #a4#", "", "32.50%"}; - { 3, 17744, "", "=q3=Heart of Noxxion", "=ds=#s14#", "", "30.35%"}; - { 4, 17745, "", "=q3=Noxious Shooter", "=ds=#w12#", "", "17.53%"}; - { 5, 17702, "", "=q1=Celebrian Rod", "=ds=#m3#", "", "100%"}; - { 7, 0, "INV_Box_01", "=q6="..BabbleBoss["Razorlash"], ""}; - { 8, 17750, "", "=q3=Chloromesh Girdle", "=ds=#s10#, #a1#", "", "22.93%"}; - { 9, 17748, "", "=q3=Vinerot Sandals", "=ds=#s12#, #a1#", "", "20.60%"}; - { 10, 17749, "", "=q3=Phytoskin Spaulders", "=ds=#s3#, #a2#", "", "22.09%"}; - { 11, 17751, "", "=q3=Brusslehide Leggings", "=ds=#s11#, #a2#", "", "21.65%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Lord Vyletongue"], ""}; - { 17, 17755, "", "=q3=Satyrmane Sash", "=ds=#s10#, #a1#", "", "25.71%"}; - { 18, 17754, "", "=q3=Infernal Trickster Leggings", "=ds=#s11#, #a3#", "", "28.09%"}; - { 19, 17752, "", "=q3=Satyr's Lash", "=ds=#h1#, #w4#", "", "23.14%"}; - { 20, 17703, "", "=q1=Celebrian Diamond", "=ds=#m3#", "", "100%"}; - { 22, 0, "INV_Box_01", "=q6="..BabbleBoss["Meshlok the Harvester"], ""}; - { 23, 17741, "", "=q3=Nature's Embrace", "=ds=#s5#, #a1#", "", "30.34%"}; - { 24, 17742, "", "=q3=Fungus Shroud Armor", "=ds=#s5#, #a2#", "", "31.37%"}; - { 25, 17767, "", "=q3=Bloomsprout Headpiece", "=ds=#s1#, #a3#", "", "28.32%"}; - { 27, 0, "INV_Box_01", "=q6="..BabbleBoss["Celebras the Cursed"], ""}; - { 28, 17739, "", "=q3=Grovekeeper's Drape", "=ds=#s4#", "", "30.32%"}; - { 29, 17740, "", "=q3=Soothsayer's Headdress", "=ds=#s1#, #a2#", "", "28.59%"}; - { 30, 17738, "", "=q3=Claw of Celebras", "=ds=#h4#, #w13#", "", "28.22%"}; - Next = "Maraudon2"; - }; - - AtlasLoot_Data["Maraudon2"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Landslide"], ""}; - { 2, 17736, "", "=q3=Rockgrip Gauntlets", "=ds=#s9#, #a3#", "", "23.09%"}; - { 3, 17734, "", "=q3=Helm of the Mountain", "=ds=#s1#, #a4#", "", "20.87%"}; - { 4, 17737, "", "=q3=Cloud Stone", "=ds=#s15#", "", "19.99%"}; - { 5, 17943, "", "=q3=Fist of Stone", "=ds=#h1#, #w6#", "", "16.58%"}; - { 7, 0, "INV_Box_01", "=q6="..BabbleBoss["Tinkerer Gizlock"], ""}; - { 8, 17719, "", "=q3=Inventor's Focal Sword", "=ds=#h1#, #w10#", "", "27.44%"}; - { 9, 17718, "", "=q3=Gizlock's Hypertech Buckler", "=ds=#w8#", "", "30.61%"}; - { 10, 17717, "", "=q3=Megashot Rifle", "=ds=#w5#", "", "27.23%"}; - { 12, 0, "INV_Box_01", "=q6="..BabbleBoss["Rotgrip"], ""}; - { 13, 17732, "", "=q3=Rotgrip Mantle", "=ds=#s3#, #a1#", "", "25.73%"}; - { 14, 17728, "", "=q3=Albino Crocscale Boots", "=ds=#s12#, #a2#", "", "26.20%"}; - { 15, 17730, "", "=q3=Gatorbite Axe", "=ds=#h2#, #w1#", "", "19.21%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Princess Theradras"], ""}; - { 17, 17780, "", "=q4=Blade of Eternal Darkness", "=ds=#h1#, #w4#", "", "0.20%"}; - { 18, 17715, "", "=q3=Eye of Theradras", "=ds=#s1#, #a1#", "", "13.47%"}; - { 19, 17714, "", "=q3=Bracers of the Stone Princess", "=ds=#s8#, #a3#", "", "20.06%"}; - { 20, 17711, "", "=q3=Elemental Rockridge Leggings", "=ds=#s11#, #a4#", "", "14.96%"}; - { 21, 17707, "", "=q3=Gemshard Heart", "=ds=#s2#", "", "15.30%"}; - { 22, 17713, "", "=q3=Blackstone Ring", "=ds=#s13#", "", "18.92%"}; - { 23, 17710, "", "=q3=Charstone Dirk", "=ds=#h1#, #w4#", "", "14.24%"}; - { 24, 17766, "", "=q3=Princess Theradras' Scepter", "=ds=#h2#, #w6#", "", "16.44%"}; - { 26, 0, "INV_Box_01", "=q6="..AL["Quest Item"], ""}; - { 27, 17764, "", "=q1=Gem of the Fourth Khan", "=ds=#m3#", "", "100%"}; - { 28, 17765, "", "=q1=Gem of the Fifth Khan", "=ds=#m3#", "", "100%"}; - Prev = "Maraudon1"; - }; - - ---------------------- - --- Ragefire Chasm --- - ---------------------- - - AtlasLoot_Data["RagefireChasm"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Taragaman the Hungerer"], ""}; - { 2, 14149, "", "=q3=Subterranean Cape", "=ds=#s4#", "", "31.59%"}; - { 3, 14148, "", "=q3=Crystalline Cuffs", "=ds=#s8#, #a1#", "", "33.91%"}; - { 4, 14145, "", "=q3=Cursed Felblade", "=ds=#h1#, #w10#", "", "15.98%"}; - { 5, 14540, "", "=q1=Taragaman the Hungerer's Heart", "=ds=#m3#", "", "100%"}; - { 7, 0, "INV_Box_01", "=q6="..AL["Zelemar the Wrathful"], ""}; - { 8, 24225, "", "=q1=Blood of the Wrathful", "=ds=#m3#", "", "100%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Jergosh the Invoker"], ""}; - { 17, 14150, "", "=q3=Robe of Evocation", "=ds=#s5#, #a1#", "", "36.40%"}; - { 18, 14147, "", "=q3=Cavedweller Bracers", "=ds=#s8#, #a3#", "", "34.35%"}; - { 19, 14151, "", "=q3=Chanting Blade", "=ds=#h1#, #w4#", "", "17.10%"}; - }; - - ---------------------- - --- Razorfen Downs --- - ---------------------- - - AtlasLoot_Data["RazorfenDowns1"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Tuten'kash"], ""}; - { 2, 10776, "", "=q3=Silky Spider Cape", "=ds=#s4#", "", "28.64%"}; - { 3, 10777, "", "=q3=Arachnid Gloves", "=ds=#s9#, #a2# =q2=#m16#", "", "28.95%"}; - { 4, 10775, "", "=q3=Carapace of Tuten'kash", "=ds=#s5#, #a4#", "", "24.87%"}; - { 6, 0, "INV_Box_01", "=q6="..AL["Henry Stern"], ""}; - { 7, 3831, "", "=q2=Recipe: Mighty Troll's Blood Potion", "=ds=#p1# (180)"}; - { 8, "s13028", "10841", "=q1=Goldthorn Tea", "=ds=#p3# (175)"}; - { 10, 0, "INV_Box_01", "=q6="..BabbleBoss["Mordresh Fire Eye"], ""}; - { 11, 10771, "", "=q3=Deathmage Sash", "=ds=#s10#, #a1#", "", "27.92%"}; - { 12, 10769, "", "=q3=Glowing Eye of Mordresh", "=ds=#s2#", "", "29.11%"}; - { 13, 10770, "", "=q3=Mordresh's Lifeless Skull", "=ds=#s15#", "", "29.59%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Glutton"], ""}; - { 17, 10774, "", "=q3=Fleshhide Shoulders", "=ds=#s3#, #a2#", "", "42.15%"}; - { 18, 10772, "", "=q3=Glutton's Cleaver", "=ds=#h1#, #w1#", "", "44.22%"}; - { 20, 0, "INV_Box_01", "=q6="..BabbleBoss["Ragglesnout"], ""}; - { 21, 10768, "", "=q3=Boar Champion's Belt", "=ds=#s10#, #a3#", "", "31.40%"}; - { 22, 10758, "", "=q3=X'caliboar", "=ds=#h2#, #w10#", "", "18.51%"}; - { 23, 10767, "", "=q3=Savage Boar's Guard", "=ds=#w8#", "", "35.14%"}; - Next = "RazorfenDowns2"; - }; - - AtlasLoot_Data["RazorfenDowns2"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Amnennar the Coldbringer"], ""}; - { 2, 10762, "", "=q3=Robes of the Lich", "=ds=#s5#, #a1#", "", "29.52%"}; - { 3, 10765, "", "=q3=Bonefingers", "=ds=#s9#, #a2#"}; - { 4, 10764, "", "=q3=Deathchill Armor", "=ds=#s5#, #a3#", "", "24.24%"}; - { 5, 10763, "", "=q3=Icemetal Barbute", "=ds=#s1#, #a4#", "", "28.66%"}; - { 6, 10761, "", "=q3=Coldrage Dagger", "=ds=#h1#, #w4#", "", "13.89%"}; - { 7, 10420, "", "=q1=Skull of the Coldbringer", "=ds=#m3#", "", "100%"}; - { 9, 0, "INV_Box_01", "=q6="..BabbleBoss["Plaguemaw the Rotting"], ""}; - { 10, 10760, "", "=q3=Swine Fists", "=ds=#s9#, #a2#", "", "58.15%"}; - { 11, 10766, "", "=q3=Plaguerot Sprig", "=ds=#w12#, =q1=#m1# =ds=#c3#", "", "29.98%"}; - { 16, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], ""}; - { 17, 10574, "", "=q3=Corpseshroud", "=ds=#s1#, #a1#", "", "0.01%"}; - { 18, 10581, "", "=q3=Death's Head Vestment", "=ds=#s5#, #a1#", "", "0.02%"}; - { 19, 10578, "", "=q3=Thoughtcast Boots", "=ds=#s12#, #a1#", "", "0.01%"}; - { 20, 10583, "", "=q3=Quillward Harness", "=ds=#s5#, #a2#", "", "0.01%"}; - { 21, 10582, "", "=q3=Briar Tredders", "=ds=#s12#, #a2#", "", "0.02%"}; - { 22, 10584, "", "=q3=Stormgale Fists", "=ds=#s9#, #a3#", "", "0.02%"}; - { 23, 10573, "", "=q3=Boneslasher", "=ds=#h2#, #w10#", "", "0.01%"}; - { 24, 10570, "", "=q3=Manslayer", "=ds=#h2#, #w1#", "", "0.01%"}; - { 25, 10571, "", "=q3=Ebony Boneclub", "=ds=#h1#, #w6#", "", "0.01%"}; - { 26, 10567, "", "=q3=Quillshooter", "=ds=#w2#", "", "0.02%"}; - { 27, 10572, "", "=q3=Freezing Shard", "=ds=#w12#, =q1=#m1# =q2=#c3#", "", "0.01%"}; - Prev = "RazorfenDowns1"; - }; - - ---------------------- - --- Razorfen Kraul --- - ---------------------- - - AtlasLoot_Data["RazorfenKraul1"] = { - { 1, 0, "INV_Box_01", "=q6="..AL["Roogug"], ""}; - { 2, 6841, "", "=q1=Vial of Phlogiston", "=ds=#m3#"}; - { 4, 0, "INV_Box_01", "=q6="..AL["Aggem Thorncurse"], ""}; - { 5, 6681, "", "=q3=Thornspike", "=ds=#h1#, #w4#", "", "57,12%"}; - { 7, 0, "INV_Box_01", "=q6="..BabbleBoss["Death Speaker Jargba"], ""}; - { 8, 6685, "", "=q3=Death Speaker Mantle", "=ds=#s3#, #a1#", "", "40.42%"}; - { 9, 6682, "", "=q3=Death Speaker Robes", "=ds=#s5#, #a1#", "", "40.52%"}; - { 10, 2816, "", "=q3=Death Speaker Scepter", "=ds=#h3#, #w6#", "", "7.72%"}; - { 12, 0, "INV_Box_01", "=q6="..AL["Razorfen Spearhide"], ""}; - { 13, 6679, "", "=q3=Armor Piercer", "=ds=#w7#", "", "43%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Overlord Ramtusk"], ""}; - { 17, 6686, "", "=q3=Tusken Helm", "=ds=#s1#, #a3#", "", "57.14%"}; - { 18, 6687, "", "=q3=Corpsemaker", "=ds=#h2#, #w1#", "", "27.79%"}; - { 20, 0, "INV_Box_01", "=q6="..BabbleBoss["Agathelos the Raging"], ""}; - { 21, 6690, "", "=q3=Ferine Leggings", "=ds=#s11#, #a2#", "", "49.21%"}; - { 22, 6691, "", "=q3=Swinetusk Shank", "=ds=#h1#, #w4#", "", "24.85%"}; - { 24, 0, "INV_Box_01", "=q6="..BabbleBoss["Blind Hunter"], ""}; - { 25, 6697, "", "=q3=Batwing Mantle", "=ds=#s3#, #a1#", "", "27.65%"}; - { 26, 6695, "", "=q3=Stygian Bone Amulet", "=ds=#s2#", "", "22.24%"}; - { 27, 6696, "", "=q3=Nightstalker Bow", "=ds=#w2#", "", "25.12%"}; - Next = "RazorfenKraul2"; - }; - - AtlasLoot_Data["RazorfenKraul2"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Charlga Razorflank"], ""}; - { 2, 6693, "", "=q3=Agamaggan's Clutch", "=ds=#s13#", "", "32.15%"}; - { 3, 6692, "", "=q3=Pronged Reaver", "=ds=#h1#, #w1#", "", "15.43%"}; - { 4, 6694, "", "=q3=Heart of Agamaggan", "=ds=#w8#", "", "30.24%"}; - { 5, 17008, "", "=q1=Small Scroll", "=ds=#m2# (#m6#)"}; - { 6, 5793, "", "=q1=Razorflank's Heart", "=ds=#m3#", "", "100%"}; - { 7, 5792, "", "=q1=Razorflank's Medallion", "=ds=#m3#", "", "100%"}; - { 9, 0, "INV_Box_01", "=q6="..BabbleBoss["Earthcaller Halmgar"], ""}; - { 10, 6688, "", "=q3=Whisperwind Headdress", "=ds=#s1#, #a2#", "", "43.75%"}; - { 11, 6689, "", "=q3=Wind Spirit Staff", "=ds=#w9#", "", "42.66%"}; - { 16, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], ""}; - { 17, 2264, "", "=q3=Mantle of Thieves", "=ds=#s3#, #a2#", "", "0.02%"}; - { 18, 1978, "", "=q3=Wolfclaw Gloves", "=ds=#s9#, #a2#", "", "0.02%"}; - { 19, 1488, "", "=q3=Avenger's Armor", "=ds=#s5#, #a3#", "", "0.01%"}; - { 20, 4438, "", "=q3=Pugilist Bracers", "=ds=#s8#, #a3#", "", "0.01%"}; - { 21, 2039, "", "=q3=Plains Ring", "=ds=#s13#", "", "0.02%"}; - { 22, 776, "", "=q3=Vendetta", "=ds=#h1#, #w4#", "", "0.01%"}; - { 23, 1727, "", "=q3=Sword of Decay", "=ds=#h1#, #w10#", "", "0.02%"}; - { 24, 1975, "", "=q3=Pysan's Old Greatsword", "=ds=#h2#, #w10#", "", "0.02%"}; - { 25, 1976, "", "=q3=Slaghammer", "=ds=#h2#, #w6#", "", "0.02%"}; - { 26, 2549, "", "=q3=Staff of the Shade", "=ds=#w9#", "", "0.02%"}; - Prev = "RazorfenKraul1"; - }; - - ------------------------- - --- Scarlet Monastery --- - ------------------------- - - AtlasLoot_Data["SMHerod"] = { - { 1, 7719, "", "=q3=Raging Berserker's Helm", "=ds=#s1#, #a3#", "", "30.62%"}; - { 2, 7718, "", "=q3=Herod's Shoulder", "=ds=#s3#, #a3#", "", "30.82%"}; - { 3, 10330, "", "=q3=Scarlet Leggings", "=ds=#s11#, #a3#", "", "12.75%"}; - { 4, 7717, "", "=q3=Ravager", "=ds=#h2#, #w1#", "", "12.86%"}; - { 6, 0, "INV_Box_01", "=q6=#n43#", ""}; - { 7, 23192, "", "=q2=Tabard of the Scarlet Crusade", "=ds=#s7#", "", "0.4%"}; - }; - - AtlasLoot_Data["SMCathedral"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["High Inquisitor Fairbanks"], ""}; - { 2, 19507, "", "=q3=Inquisitor's Shawl", "=ds=#s3#, #a1#", "", "15.94%"}; - { 3, 19508, "", "=q3=Branded Leather Bracers", "=ds=#s8#, #a2#", "", "16.17%"}; - { 4, 19509, "", "=q3=Dusty Mail Boots", "=ds=#s12#, #a3#", "", "17.24%"}; - { 6, 0, "INV_Box_01", "=q6="..BabbleBoss["Scarlet Commander Mograine"], ""}; - { 7, 7724, "", "=q3=Gauntlets of Divinity", "=ds=#s9#, #a3#", "", "17.49%"}; - { 8, 10330, "", "=q3=Scarlet Leggings", "=ds=#s11#, #a3#", "", "12.95%"}; - { 9, 7723, "", "=q3=Mograine's Might", "=ds=#h2#, #w6#", "", "17.13%"}; - { 10, 7726, "", "=q3=Aegis of the Scarlet Commander", "=ds=#w8#", "", "38.37%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["High Inquisitor Whitemane"], ""}; - { 17, 7720, "", "=q3=Whitemane's Chapeau", "=ds=#s1#, #a1#", "", "34.01%"}; - { 18, 7722, "", "=q3=Triune Amulet", "=ds=#s2#", "", "33.23%"}; - { 19, 7721, "", "=q3=Hand of Righteousness", "=ds=#h3#, #w6#", "", "18.32%"}; - { 20, 20976, "", "=q2=Design: Citrine Pendant of Golden Healing", "=ds=#p12# (190)", "", "100%"}; - }; - - AtlasLoot_Data["SMGraveyard"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Interrogator Vishas"], ""}; - { 2, 7683, "", "=q3=Bloody Brass Knuckles", "=ds=#h1#, #w13#", "", "66.1%"}; - { 3, 7682, "", "=q3=Torturing Poker", "=ds=#h1#, #w4#", "", "5.56%"}; - { 5, 0, "INV_Box_01", "=q6="..BabbleBoss["Bloodmage Thalnos"], ""}; - { 6, 7684, "", "=q3=Bloodmage Mantle", "=ds=#s3#, #a1#", "", "48.46%"}; - { 7, 7685, "", "=q3=Orb of the Forgotten Seer", "=ds=#s15#", "", "47.07%"}; - { 9, 0, "INV_Box_01", "=q6="..BabbleBoss["Ironspine"], ""}; - { 10, 7688, "", "=q3=Ironspine's Ribcage", "=ds=#s5#, #a3#", "", "32.91%"}; - { 11, 7686, "", "=q3=Ironspine's Eye", "=ds=#s13#", "", "40.08%"}; - { 12, 7687, "", "=q3=Ironspine's Fist", "=ds=#h1#, #w6#", "", "20.34%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Azshir the Sleepless"], ""}; - { 17, 7709, "", "=q3=Blighted Leggings", "=ds=#s11#, #a1#", "", "31.19%"}; - { 18, 7731, "", "=q3=Ghostshard Talisman", "=ds=#s2#", "", "32.71%"}; - { 19, 7708, "", "=q3=Necrotic Wand", "=ds=#w12#", "", "30.72%"}; - { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Fallen Champion"], ""}; - { 22, 7691, "", "=q3=Embalmed Shroud", "=ds=#s1#, #a1#", "", "38.58%"}; - { 23, 7690, "", "=q3=Ebon Vise", "=ds=#s9#, #a2#", "", "37.83%"}; - { 24, 7689, "", "=q3=Morbid Dawn", "=ds=#h2#, #w10#", "", "19.15%"}; - }; - - AtlasLoot_Data["SMLibrary"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Houndmaster Loksey"], ""}; - { 2, 7756, "", "=q3=Dog Training Gloves", "=ds=#s9#, #a2#", "", "53.66%"}; - { 3, 7710, "", "=q3=Loksey's Training Stick", "=ds=#w9#", "", "13.96%"}; - { 4, 3456, "", "=q3=Dog Whistle", "=ds=#e13#", "", "21.33%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Arcanist Doan"], ""}; - { 17, 34227, "", "=q4=Deadman's Hand", "=ds=#s13#", "", ""}; - { 18, 7712, "", "=q3=Mantle of Doan", "=ds=#s3#, #a1#", "", "41.96%"}; - { 19, 7711, "", "=q3=Robe of Doan", "=ds=#s5#, #a1#", "", "42.86%"}; - { 20, 7714, "", "=q3=Hypnotic Blade", "=ds=#h3#, #w4#", "", "39.91%"}; - { 21, 7713, "", "=q3=Illusionary Rod", "=ds=#w9#", "", "38.44%"}; - { 23, 0, "INV_Box_01", "=q6=#x1#", ""}; - { 24, 7146, "", "=q2=The Scarlet Key", "=ds=#e9#"}; - }; - - AtlasLoot_Data["SMTrash"] = { - { 1, 7728, "", "=q3=Beguiler Robes", "=ds=#s5#, #a1#", "", "0.01%"}; - { 2, 7755, "", "=q3=Flintrock Shoulders", "=ds=#s3#, #a2#", "", "0.00%"}; - { 3, 7727, "", "=q3=Watchman Pauldrons", "=ds=#s3#, #a2#", "", "0.01%"}; - { 4, 7760, "", "=q3=Warchief Kilt", "=ds=#s11#, #a2#", "", "0.00%"}; - { 5, 7754, "", "=q3=Harbinger Boots", "=ds=#s12#, #a2#", "", "0.01%"}; - { 6, 5819, "", "=q3=Sunblaze Coif", "=ds=#s1#, #a3#", "", "0.01%"}; - { 7, 7759, "", "=q3=Archon Chestpiece", "=ds=#s5#, #a3#", "", "0.00%"}; - { 8, 10328, "", "=q3=Scarlet Chestpiece", "=ds=#s5#, #a3#", "", "0.3%"}; - { 9, 10332, "", "=q3=Scarlet Boots", "=ds=#s12#, #a3#", "", "0.1%"}; - { 10, 2262, "", "=q3=Mark of Kern", "=ds=#s13#", "", "0.01%"}; - { 11, 1992, "", "=q3=Swampchill Fetish", "=ds=#s15#", "", "0.00%"}; - { 13, 10333, "", "=q2=Scarlet Wristguards", "=ds=#s8#, #a3#", "", "1.6%"}; - { 14, 10331, "", "=q2=Scarlet Gauntlets", "=ds=#s9#, #a3#", "", "1.7%"}; - { 15, 10329, "", "=q2=Scarlet Belt", "=ds=#s10#, #a3#", "", "1.6%"}; - { 16, 5756, "", "=q3=Sliverblade", "=ds=#h1#, #w4#", "", "0.01%"}; - { 17, 8225, "", "=q3=Tainted Pierce", "=ds=#h1#, #w10#", "", "0.01%"}; - { 18, 8226, "", "=q3=The Butcher", "=ds=#h1#, #w10#", "", "0.01%"}; - { 19, 7786, "", "=q3=Headsplitter", "=ds=#h1#, #w1#", "", "0.01%"}; - { 20, 7761, "", "=q3=Steelclaw Reaver", "=ds=#h1#, #w1#", "", "0.01%"}; - { 21, 7753, "", "=q3=Bloodspiller", "=ds=#h2#, #w1#", "", "0.01%"}; - { 22, 7752, "", "=q3=Dreamslayer", "=ds=#h1#, #w6#", "", "0.01%"}; - { 23, 7736, "", "=q3=Fight Club", "=ds=#h1#, #w6#", "", "0.00%"}; - { 24, 7730, "", "=q3=Cobalt Crusher", "=ds=#h2#, #w6#", "", "0.01%"}; - { 25, 7758, "", "=q3=Ruthless Shiv", "=ds=#w7#", "", "0.00%"}; - { 26, 7757, "", "=q3=Windweaver Staff", "=ds=#w9#", "", "0.01%"}; - { 27, 7787, "", "=q3=Resplendent Guardian", "=ds=#w8#", "", "0.01%"}; - { 28, 7729, "", "=q3=Chesterfall Musket", "=ds=#w5#", "", "0.01%"}; - }; - - ------------------- - --- Scholomance --- - ------------------- - - AtlasLoot_Data["SCHOLOQuestItems"] = { - { 1, 13873, "", "=q1=Viewing Room Key", "=ds=#e9#"}; - { 3, 13471, "", "=q1=The Deed to Brill", "=ds=#m3#"}; - { 4, 13448, "", "=q1=The Deed to Caer Darrow", "=ds=#m3#"}; - { 5, 13450, "", "=q1=The Deed to Southshore", "=ds=#m3#"}; - { 6, 13451, "", "=q1=The Deed to Tarren Mill", "=ds=#m3#"}; - }; - - AtlasLoot_Data["SCHOLOBloodStewardofKirtonos"] = { - { 1, 13523, "", "=q1=Blood of Innocents", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["SCHOLOKirtonostheHerald"] = { - { 1, 13956, "", "=q3=Clutch of Andros", "=ds=#s10#, #a1#", "", "15.31%"}; - { 2, 13957, "", "=q3=Gargoyle Slashers", "=ds=#s9#, #a2#", "", "14.40%"}; - { 3, 13969, "", "=q3=Loomguard Armbraces", "=ds=#s8#, #a3#", "", "16.25%"}; - { 4, 13967, "", "=q3=Windreaver Greaves", "=ds=#s12#, #a3#", "", "14.87%"}; - { 5, 13955, "", "=q3=Stoneform Shoulders", "=ds=#s3#, #a4#", "", "14.73%"}; - { 6, 13960, "", "=q3=Heart of the Fiend", "=ds=#s2#", "", "16.36%"}; - { 7, 14024, "", "=q3=Frightalon", "=ds=#h1#, #w4#", "", "15.55%"}; - { 8, 13983, "", "=q3=Gravestone War Axe", "=ds=#h2#, #w1#", "", "12.78%"}; - { 16, 16734, "", "=q3=Boots of Valor", "=ds=#s12#, #a4# (D1, #c9#)", "", "11.12%"}; - }; - - AtlasLoot_Data["SCHOLOJandiceBarov"] = { - { 1, 18689, "", "=q3=Phantasmal Cloak", "=ds=#s4#", "", "7.52%"}; - { 2, 14543, "", "=q3=Darkshade Gloves", "=ds=#s9#, #a1#", "", "0.26%"}; - { 3, 14545, "", "=q3=Ghostloom Leggings", "=ds=#s11#, #a2#", "", "8.81%"}; - { 4, 14548, "", "=q3=Royal Cap Spaulders", "=ds=#s3#, #a3#", "", "10.06%"}; - { 5, 18690, "", "=q3=Wraithplate Leggings", "=ds=#s11#, #a4#", "", "8.59%"}; - { 6, 14541, "", "=q3=Barovian Family Sword", "=ds=#h2#, #w10#", "", "8.27%"}; - { 7, 22394, "", "=q3=Staff of Metanoia", "=ds=#w9#", "", "8.67%"}; - { 9, 13725, "", "=q1=Krastinov's Bag of Horrors", "=ds=#m3#", "", "100%"}; - { 10, 13523, "", "=q1=Blood of Innocents", "=ds=#m3#", "", "17.8%"}; - { 16, 16701, "", "=q3=Dreadmist Mantle", "=ds=#s3#, #a1# (D1, #c8#)", "", "12.20%"}; - }; - - AtlasLoot_Data["SCHOLORattlegore"] = { - { 1, 14538, "", "=q3=Deadwalker Mantle", "=ds=#s3#, #a1#", "", "11.32%"}; - { 2, 14539, "", "=q3=Bone Ring Helm", "=ds=#s1#, #a2#", "", "10.89%"}; - { 3, 18686, "", "=q3=Bone Golem Shoulders", "=ds=#s3#, #a3#", "", "9.04%"}; - { 4, 14537, "", "=q3=Corpselight Greaves", "=ds=#s12#, #a4#", "", "10.22%"}; - { 5, 14531, "", "=q3=Frightskull Shaft", "=ds=#h2#, #w6#", "", "9.55%"}; - { 6, 14528, "", "=q3=Rattlecage Buckler", "=ds=#w8#", "", "9.16%"}; - { 8, 13873, "", "=q1=Viewing Room Key", "=ds=#e9#", "", "100%"}; - { 16, 16711, "", "=q3=Shadowcraft Boots", "=ds=#s12#, #a2# (D1, #c6#)", "", "14.32%"}; - { 18, 18782, "", "=q3=Top Half of Advanced Armorsmithing: Volume II", "=ds=#m3#", "", "5.71%"}; - { 19, 12726, "", "=q3=Plans: Enchanted Thorium Leggings", "=q1=#m4#: =ds=#p2# (300)"}; - }; - - AtlasLoot_Data["SCHOLODeathKnight"] = { - { 1, 18760, "", "=q3=Necromantic Band", "=ds=#s13#", "", "24.75%"}; - { 2, 18758, "", "=q3=Specter's Blade", "=ds=#h1#, #w4#", "", "15.72%"}; - { 3, 18759, "", "=q3=Malicious Axe", "=ds=#h2#, #w1#", "", "24.75%"}; - { 4, 18761, "", "=q3=Oblivion's Touch", "=ds=#w12#", "", "17.17%"}; - { 6, 18749, "", "=q1=Charger's Lost Soul", "=ds=#m3#", "", "10.93%"}; - }; - - AtlasLoot_Data["SCHOLOVectus"] = { - { 1, 14577, "", "=q3=Skullsmoke Pants", "=ds=#s11#, #a1#", "", "5.24%"}; - { 2, 18691, "", "=q3=Dark Advisor's Pendant", "=ds=#s2#", "", "6.16%"}; - }; - - AtlasLoot_Data["SCHOLOMarduk"] = { - { 1, 18692, "", "=q3=Death Knight Sabatons", "=ds=#s12#, #a4#", "", "6.29%"}; - { 2, 14576, "", "=q3=Ebon Hilt of Marduk", "=ds=#h1#, #w10#", "", "6.55%"}; - }; - - AtlasLoot_Data["SCHOLORasFrostwhisper"] = { - { 1, 13314, "", "=q4=Alanna's Embrace", "=ds=#s5#, #a1#", "", "1.07%"}; - { 3, 14340, "", "=q3=Freezing Lich Robes", "=ds=#s5#, #a1#", "", "12.55%"}; - { 4, 18693, "", "=q3=Shivery Handwraps", "=ds=#s9#, #a1#", "", "12.38%"}; - { 5, 14503, "", "=q3=Death's Clutch", "=ds=#s3#, #a2#", "", "11.73%"}; - { 6, 14502, "", "=q3=Frostbite Girdle", "=ds=#s10#, #a2#", "", "11.20%"}; - { 7, 18694, "", "=q3=Shadowy Mail Greaves", "=ds=#s12#, #a3#", "", "14.63%"}; - { 8, 14522, "", "=q3=Maelstrom Leggings", "=ds=#s11#, #a3#", "", "13.01%"}; - { 9, 14525, "", "=q3=Boneclenched Gauntlets", "=ds=#s9#, #a4#", "", "11.45%"}; - { 10, 18695, "", "=q3=Spellbound Tome", "=ds=#s15#", "", "10.86%"}; - { 11, 13952, "", "=q3=Iceblade Hacker", "=ds=#h1#, #w1#", "", "9.74%"}; - { 12, 14487, "", "=q3=Bonechill Hammer", "=ds=#h1#, #w6#", "", "11.92%"}; - { 13, 18696, "", "=q3=Intricately Runed Shield", "=ds=#w8#", "", "13.04%"}; - { 16, 16689, "", "=q3=Magister's Mantle", "=ds=#s3#, #a1# (D1, #c3#)", "", "11.93%"}; - { 18, 13521, "", "=q2=Recipe: Flask of Supreme Power", "=ds=#p1# (300)", "", "2.92%"}; - { 20, 13626, "", "=q1=Human Head of Ras Frostwhisper", "=ds=#m3#", "", "100%"}; - { 21, 13986, "", "=q3=Crown of Caer Darrow", "=q1=#m4#: =ds=#s1#, #a1#"}; - { 22, 13984, "", "=q3=Darrowspike", "=q1=#m4#: =ds=#h1#, #w4#"}; - { 23, 13982, "", "=q3=Warblade of Caer Darrow", "=q1=#m4#: =ds=#h2#, #w10#"}; - { 24, 14002, "", "=q3=Darrowshire Strongguard", "=q1=#m4#: =ds=#w8#"}; - { 26, 0, "INV_Box_01", "=q6=#x12#", ""}; - { 27, 12736, "", "=q1=Frostwhisper's Embalming Fluid", "=ds=#m3#"}; - }; - - AtlasLoot_Data["SCHOLOKormok"] = { - { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n22#"}; - { 2, 22303, "", "=q3=Ironweave Pants", "=ds=#s11#, #a1#", "", "23.33%"}; - { 3, 22326, "", "=q3=Amalgam's Band", "=ds=#s13#", "", "16.67%"}; - { 4, 22331, "", "=q3=Band of the Steadfast Hero", "=ds=#s13#", "", "15.42%"}; - { 5, 22332, "", "=q3=Blade of Necromancy", "=ds=#h1#, #w10#", "", "25.42%"}; - { 6, 22333, "", "=q3=Hammer of Divine Might", "=ds=#h2#, #w6#", "", "12.50%"}; - { 8, 21984, "", "=q1=Left Piece of Lord Valthalak's Amulet", "=ds=#m3#"}; - { 9, 22046, "", "=q1=Right Piece of Lord Valthalak's Amulet", "=ds=#m3#"}; - }; - - AtlasLoot_Data["SCHOLOInstructorMalicia"] = { - { 1, 16710, "", "=q3=Shadowcraft Bracers", "=ds=#s8#, #a2# (D1, #c6#)", "", "3.51%"}; - { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "1.81%"}; - { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "1.12%"}; - { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "1.27%"}; - { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "1.03%"}; - { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "0.88%"}; - { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "0.85%"}; - { 9, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "1.51%"}; - { 10, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "0.82%"}; - { 11, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "0.60%"}; - { 12, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "1.09%"}; - { 13, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "1.00%"}; - { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "0.67%"}; - { 15, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.54%"}; - { 16, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.09%"}; - { 17, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.60%"}; - { 18, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.42%"}; - { 19, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.36%"}; - { 20, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "0.45%"}; - { 21, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "0.45%"}; - { 22, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "0.67%"}; - { 23, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "1.12%"}; - { 24, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "0.57%"}; - { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%"}; - { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#"}; - { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%"}; - { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "1.39%"}; - { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "0.91%"}; - }; - - AtlasLoot_Data["SCHOLODoctorTheolenKrastinov"] = { - { 1, 16684, "", "=q3=Magister's Gloves", "=ds=#s9#, #a1# (D1, #c3#)", "", "9.75%"}; - { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "2.81%"}; - { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "1.91%"}; - { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "2.37%"}; - { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "1.82%"}; - { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "2.42%"}; - { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "2.16%"}; - { 9, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "3.14%"}; - { 10, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "2.08%"}; - { 11, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "1.93%"}; - { 12, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "1.43%"}; - { 13, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "1.82%"}; - { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "1.91%"}; - { 15, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.87%"}; - { 16, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.53%"}; - { 17, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.78%"}; - { 18, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.42%"}; - { 19, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.79%"}; - { 20, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "1.61%"}; - { 21, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "1.32%"}; - { 22, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "1.52%"}; - { 23, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "1.64%"}; - { 24, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "1.75%"}; - { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%"}; - { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#"}; - { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%"}; - { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "2.54%"}; - { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "3.21%"}; - { 30, 13523, "", "=q1=Blood of Innocents", "=ds=#m3#", "", "25.7%"}; - }; - - AtlasLoot_Data["SCHOLOLorekeeperPolkelt"] = { - { 1, 16705, "", "=q3=Dreadmist Wraps", "=ds=#s9#, #a1# (D1, #c8#)", "", "14.54%"}; - { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "0.53%"}; - { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "0.67%"}; - { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "0.55%"}; - { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "0.47%"}; - { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "0.57%"}; - { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "0.89%"}; - { 9, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "0.57%"}; - { 10, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "0.65%"}; - { 11, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "0.79%"}; - { 12, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "0.83%"}; - { 13, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "0.63%"}; - { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "0.47%"}; - { 15, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.26%"}; - { 16, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.14%"}; - { 17, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.45%"}; - { 18, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.18%"}; - { 19, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.30%"}; - { 20, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "0.49%"}; - { 21, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "0.32%"}; - { 22, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "0.30%"}; - { 23, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "0.30%"}; - { 24, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "0.41%"}; - { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%"}; - { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#"}; - { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%"}; - { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "0.67%"}; - { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "0.49%"}; - }; - - AtlasLoot_Data["SCHOLOTheRavenian"] = { - { 1, 16716, "", "=q3=Wildheart Belt", "=ds=#s10#, #a2# (D1, #c1#)", "", "2.60%"}; - { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "1.32%"}; - { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "0.76%"}; - { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "1.04%"}; - { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "0.89%"}; - { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "1.32%"}; - { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "1.41%"}; - { 9, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "0.95%"}; - { 10, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "1.52%"}; - { 11, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "0.82%"}; - { 12, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "1.02%"}; - { 13, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "0.95%"}; - { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "0.93%"}; - { 15, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.20%"}; - { 16, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.33%"}; - { 17, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.11%"}; - { 18, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.09%"}; - { 19, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.04%"}; - { 20, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "1.06%"}; - { 21, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "0.91%"}; - { 22, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "0.69%"}; - { 23, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "1.15%"}; - { 24, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "0.89%"}; - { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%"}; - { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#"}; - { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%"}; - { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "1.52%"}; - { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "1.74%"}; - }; - - AtlasLoot_Data["SCHOLOLordAlexeiBarov"] = { - { 1, 16722, "", "=q3=Lightforge Bracers", "=ds=#s8#, #a4# (D1, #c4#)", "", "3.37%"}; - { 3, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "4.94%"}; - { 4, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "3.39%"}; - { 5, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "5.30%"}; - { 6, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "4.05%"}; - { 7, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "2.86%"}; - { 8, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "2.38%"}; - { 9, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "4.79%"}; - { 10, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "4.55%"}; - { 11, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "2.08%"}; - { 12, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "2.35%"}; - { 13, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "2.83%"}; - { 14, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "2.38%"}; - { 15, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "1.01%"}; - { 16, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.83%"}; - { 17, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.62%"}; - { 18, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "1.13%"}; - { 19, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "1.43%"}; - { 20, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "1.49%"}; - { 21, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "1.73%"}; - { 22, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "1.61%"}; - { 23, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "2.65%"}; - { 24, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "2.20%"}; - { 25, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%"}; - { 26, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#"}; - { 27, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%"}; - { 28, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "4.67%"}; - { 29, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "4.70%"}; - }; - - AtlasLoot_Data["SCHOLOLadyIlluciaBarov"] = { - { 1, 18681, "", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "", "1.20%"}; - { 2, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "", "1.07%"}; - { 3, 14626, "", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "", "1.30%"}; - { 4, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "", "1.17%"}; - { 5, 14631, "", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "", "0.94%"}; - { 6, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "", "0.78%"}; - { 7, 18682, "", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "", "1.61%"}; - { 8, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "", "0.94%"}; - { 9, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "", "1.15%"}; - { 10, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "", "1.12%"}; - { 11, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "", "0.94%"}; - { 12, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "", "0.70%"}; - { 13, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "", "0.44%"}; - { 14, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "", "0.34%"}; - { 15, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "", "0.49%"}; - { 16, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "", "0.42%"}; - { 17, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "", "0.44%"}; - { 18, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "", "0.75%"}; - { 19, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "", "0.70%"}; - { 20, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "", "0.60%"}; - { 21, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "", "0.81%"}; - { 22, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "", "0.83%"}; - { 23, 18684, "", "=q3=Dimly Opalescent Ring", "=ds=#s13#", "", "0.85%"}; - { 24, 23201, "", "=q3=Libram of Divinity", "=ds=#s16#, #w16#"}; - { 25, 23200, "", "=q3=Totem of Sustaining", "=ds=#s16#, #w15#", "", "3.5%"}; - { 26, 18683, "", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "", "1.35%"}; - { 27, 18680, "", "=q3=Ancient Bone Bow", "=ds=#w2#", "", "1.17%"}; - }; - - AtlasLoot_Data["SCHOLODarkmasterGandling"] = { - { 1, 13937, "", "=q4=Headmaster's Charge", "=ds=#w9#", "", "1.11%"}; - { 2, 14514, "", "=q4=Pattern: Robe of the Void", "=ds=#p8# (300) =q1=#m1# =ds=#c8#", "", "6.71%"}; - { 3, 14153, "", "=q4=Robe of the Void", "=ds=#s5#, #a1# =q1=#m1# =ds=#c8#"}; - { 4, 13944, "", "=q3=Tombstone Breastplate", "=ds=#s5#, #a2#", "", "8.96%"}; - { 5, 13398, "", "=q3=Boots of the Shrieker", "=ds=#s12#, #a2#", "", "10.75%"}; - { 7, 13950, "", "=q3=Detention Strap", "=ds=#s10#, #a3#", "", "0.24%"}; - { 8, 13951, "", "=q3=Vigorsteel Vambraces", "=ds=#s8#, #a4#", "", "10.38%"}; - { 9, 22433, "", "=q3=Don Mauricio's Band of Domination", "=ds=#s13#", "", "7.72%"}; - { 10, 13964, "", "=q3=Witchblade", "=ds=#h3#, #w4#", "", "9.82%"}; - { 11, 13953, "", "=q3=Silent Fang", "=ds=#h1#, #w10#", "", "9.68%"}; - { 12, 13938, "", "=q3=Bonecreeper Stylus", "=ds=#w12#", "", "8.80% "}; - { 16, 16698, "", "=q3=Dreadmist Mask", "=ds=#s1#, #a1# (D1, #c8#)", "", "8.78%"}; - { 17, 16686, "", "=q3=Magister's Crown", "=ds=#s1#, #a1# (D1, #c3#)", "", "8.60%"}; - { 18, 16693, "", "=q3=Devout Crown", "=ds=#s1#, #a1# (D1, #c5#)", "", "7.89%"}; - { 19, 16707, "", "=q3=Shadowcraft Cap", "=ds=#s1#, #a2# (D1, #c6#)", "", "6.65%"}; - { 20, 16720, "", "=q3=Wildheart Cowl", "=ds=#s1#, #a2# (D1, #c1#)", "", "7.09%"}; - { 21, 16677, "", "=q3=Beaststalker's Cap", "=ds=#s1#, #a3# (D1, #c2#)", "", "7.00%"}; - { 22, 16667, "", "=q3=Coif of Elements", "=ds=#s1#, #a3# (D1, #c7#)", "", "2.86%"}; - { 23, 16731, "", "=q3=Helm of Valor", "=ds=#s1#, #a4# (D1, #c9#)", "", "6.54%"}; - { 24, 16727, "", "=q3=Lightforge Helm", "=ds=#s1#, #a4# (D1, #c4#)", "", "5.32%"}; - { 26, 19276, "", "=q3=Ace of Portals", "=ds=#e16#", "", "2.20%"}; - { 28, 13501, "", "=q2=Recipe: Major Mana Potion", "=ds=#p1# (295)", "", "8.64%"}; - }; - - AtlasLoot_Data["SCHOLOTrash"] = { - { 1, 18697, "", "=q3=Coldstone Slippers", "=ds=#s12#, #a1#", "", "0.01%"}; - { 2, 18698, "", "=q3=Tattered Leather Hood", "=ds=#s1#, #a2#", "", "0.01%"}; - { 3, 18699, "", "=q3=Icy Tomb Spaulders", "=ds=#s3#, #a2#", "", "0.01%"}; - { 4, 18700, "", "=q3=Malefic Bracers", "=ds=#s8#, #a2#", "", "0.01%"}; - { 5, 14536, "", "=q3=Bonebrace Hauberk", "=ds=#s5#, #a3#", "", "0.01%"}; - { 6, 18702, "", "=q3=Belt of the Ordained", "=ds=#s10#, #a4#", "", "0.01%"}; - { 7, 18701, "", "=q3=Innervating Band", "=ds=#s13#", "", "0.01%"}; - { 9, 16254, "", "=q3=Formula: Enchant Weapon - Lifestealing", "=ds=#p4# (300) =q1=#n66#", "", "0.93%"}; - { 10, 16255, "", "=q2=Formula: Enchant 2H Weapon - Major Spirit", "=ds=#p4# (300) =q1=#n67#", "", "0.88%"}; - { 11, 15773, "", "=q2=Pattern: Wicked Leather Armor", "=ds=#p7# (300) =q1=#n66#", "", "3.03%"}; - { 12, 15776, "", "=q2=Pattern: Runic Leather Armor", "=ds=#p7# (300) =q1=#n68#", "", "1.62%"}; - { 14, 12753, "", "=q2=Skin of Shadow", "=ds=#m3#"}; - { 15, 13920, "", "=q1=Healthy Dragon Scale", "=ds=#m2#"}; - { 16, 16705, "", "=q3=Dreadmist Wraps", "=ds=#s9#, #a1# (D1)", "", "0.03%"}; - { 17, 16684, "", "=q3=Magister's Gloves", "=ds=#s9#, #a1# (D1)", "", "1.27%"}; - { 18, 16685, "", "=q3=Magister's Belt", "=ds=#s8#, #a1# (D1)", "", "0.22%"}; - { 19, 16710, "", "=q3=Shadowcraft Bracers", "=ds=#s8#, #a2# (D1)", "", "1.53%"}; - { 20, 16716, "", "=q3=Wildheart Belt", "=ds=#s8#, #a2# (D1)", "", "1.84%"}; - { 21, 16722, "", "=q3=Lightforge Bracers", "=ds=#s8#, #a4# (D1)", "", "2.72%"}; - }; - - ----------------------- - --- Shadowfang Keep --- - ----------------------- - - AtlasLoot_Data["ShadowfangKeep1"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Deathsworn Captain"], ""}; - { 2, 6642, "", "=q3=Phantom Armor", "=ds=#s5#, #a3#", "", "30.49%"}; - { 3, 6641, "", "=q3=Haunting Blade", "=ds=#h2#, #w10#", "", "58.60%"}; - { 5, 0, "INV_Box_01", "=q6="..AL["Rethilgore"], ""}; - { 6, 5254, "", "=q3=Rugged Spaulders", "=ds=#s3#, #a2#", "", "84.73%"}; - { 8, 0, "INV_Box_01", "=q6="..AL["Felsteed"], ""}; - { 9, 6341, "", "=q3=Eerie Stable Lantern", "=ds=#s15#", "", "5.48%"}; - { 10, 932, "", "=q1=Fel Steed Saddlebags", "=ds=#m12# #e1#", "", "16.46%"}; - { 12, 0, "INV_Box_01", "=q6="..BabbleBoss["Razorclaw the Butcher"], ""}; - { 13, 6226, "", "=q3=Bloody Apron", "=ds=#s5#, #a1#", "", "39.47%"}; - { 14, 6633, "", "=q3=Butcher's Slicer", "=ds=#h1#, #w10#", "", "39.53%"}; - { 15, 1292, "", "=q3=Butcher's Cleaver", "=ds=#h1#, #w1#", "", "8.70%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Baron Silverlaine"], ""}; - { 17, 6321, "", "=q3=Silverlaine's Family Seal", "=ds=#s13#", "", "18.91%"}; - { 18, 6323, "", "=q3=Baron's Scepter", "=ds=#h1#, #w6#", "", "37.93%"}; - { 20, 0, "INV_Box_01", "=q6="..BabbleBoss["Commander Springvale"], ""}; - { 21, 3191, "", "=q3=Arced War Axe", "=ds=#h2#, #w1#", "", "31.73%"}; - { 22, 6320, "", "=q3=Commander's Crest", "=ds=#w8#", "", "27.71%"}; - { 24, 0, "INV_Box_01", "=q6="..BabbleBoss["Odo the Blindwatcher"], ""}; - { 25, 6319, "", "=q3=Girdle of the Blindwatcher", "=ds=#s10#, #a2#", "", "57.15%"}; - { 26, 6318, "", "=q3=Odo's Ley Staff", "=ds=#w9#", "", "29.97%"}; - { 28, 0, "INV_Box_01", "=q6="..BabbleBoss["Fenrus the Devourer"], ""}; - { 29, 6340, "", "=q3=Fenrus' Hide", "=ds=#s4#", "", "58.02%"}; - { 30, 3230, "", "=q3=Black Wolf Bracers", "=ds=#s8#, #a2#", "", "14.76%"}; - Next = "ShadowfangKeep2"; - }; - - AtlasLoot_Data["ShadowfangKeep2"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Arugal's Voidwalker"], ""}; - { 2, 5943, "", "=q3=Rift Bracers", "=ds=#s8#, #a3#", "", "3%"}; - { 4, 0, "INV_Box_01", "=q6="..BabbleBoss["Wolf Master Nandos"], ""}; - { 5, 6314, "", "=q3=Wolfmaster Cape", "=ds=#s4#", "", "33.25%"}; - { 6, 3748, "", "=q3=Feline Mantle", "=ds=#s3#, #a1#", "", "48.55%"}; - { 8, 0, "INV_Box_01", "=q6="..BabbleBoss["Archmage Arugal"], ""}; - { 9, 6324, "", "=q3=Robes of Arugal", "=ds=#s5#, #a1#", "", "30.50%"}; - { 10, 6392, "", "=q3=Belt of Arugal", "=ds=#s10#, #a1#", "", "30.51%"}; - { 11, 6220, "", "=q3=Meteor Shard", "=ds=#h1#, #w4#", "", "15.78%"}; - { 12, 24224, "", "=q1=Crate of Bloodforged Ingots", "=ds=#m3#"}; - { 13, 6895, "", "=q1=Jordan's Smithing Hammer", "=ds=#m3#"}; - { 14, 6283, "", "=q1=The Book of Ur", "=ds=#m3#"}; - { 16, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], ""}; - { 17, 2292, "", "=q3=Necrology Robes", "=ds=#s5#, #a1#", "", "0.01%"}; - { 18, 1974, "", "=q3=Mindthrust Bracers", "=ds=#s8#, #a1#", "", "0.02%"}; - { 19, 1489, "", "=q3=Gloomshroud Armor", "=ds=#s5#, #a2#", "", "0.01%"}; - { 20, 1935, "", "=q3=Assassin's Blade", "=ds=#h1#, #w4#", "", "0.01%"}; - { 21, 1482, "", "=q3=Shadowfang", "=ds=#h1#, #w10#", "", "0.01%"}; - { 22, 2205, "", "=q3=Duskbringer", "=ds=#h2#, #w10#", "", "0.01%"}; - { 23, 2807, "", "=q3=Guillotine Axe", "=ds=#h1#, #w1#", "", "0.01%"}; - { 24, 1318, "", "=q3=Night Reaver", "=ds=#h2#, #w1#", "", "0.01%"}; - { 25, 1483, "", "=q3=Face Smasher", "=ds=#h1#, #w6#", "", "0.02%"}; - { 26, 3194, "", "=q3=Black Malice", "=ds=#h2#, #w6#", "", "0.02%"}; - { 27, 1484, "", "=q3=Witching Stave", "=ds=#w9#", "", "0.01%"}; - Prev = "ShadowfangKeep1"; - }; - - ------------------ - --- Stratholme --- - ------------------ - - AtlasLoot_Data["STRATSkull"] = { - { 1, 13395, "", "=q3=Skul's Fingerbone Claws", "=ds=#s9#, #a2#", "", "36.52%"}; - { 2, 13394, "", "=q3=Skul's Cold Embrace", "=ds=#s5#, #a4#", "", "24.16%"}; - { 3, 13396, "", "=q3=Skul's Ghastly Touch", "=ds=#w12#", "", "16.85%"}; - }; - - AtlasLoot_Data["STRATStratholmeCourier"] = { - { 1, 13304, "", "=q1=Festival Lane Postbox Key", "=ds=#e9#", "", "45.19%"}; - { 2, 13303, "", "=q1=Crusaders' Square Postbox Key", "=ds=#e9#", "", "43.46%"}; - { 3, 13307, "", "=q1=Fras Siabi's Postbox Key", "=ds=#e9#", "", "42.88%"}; - { 4, 13305, "", "=q1=Elders' Square Postbox Key", "=ds=#e9#", "", "36.87%"}; - { 5, 13302, "", "=q1=Market Row Postbox Key", "=ds=#e9#", "", "35.58%"}; - { 6, 13306, "", "=q1=King's Square Postbox Key", "=ds=#e9#", "", "37.69%"}; - }; - - AtlasLoot_Data["STRATFrasSiabi"] = { - { 1, 13172, "", "=q1=Siabi's Premium Tobacco", "=ds=#m3#", "", "100%"}; - { 2, 13171, "", "=q2=Smokey's Lighter", "=q1=#m4#: =ds=#s14#"}; - }; - - AtlasLoot_Data["STRATAtiesh"] = { - { 1, 22736, "", "=q5=Andonisus, Reaper of Souls", "=q1=#m26#: =ds=#h3#, #w10#", "", "100%"}; - }; - - AtlasLoot_Data["STRATHearthsingerForresten"] = { - { 1, 13378, "", "=q3=Songbird Blouse", "=ds=#s5#, #a2#", "", "15.31%"}; - { 2, 13383, "", "=q3=Woollies of the Prancing Minstrel", "=ds=#s11#, #a3#", "", "18.42%"}; - { 3, 13384, "", "=q3=Rainbow Girdle", "=ds=#s10#, #a4#", "", "19.21%"}; - { 4, 13379, "", "=q3=Piccolo of the Flaming Fire", "=ds=#s14#", "", "15.13%"}; - { 16, 16682, "", "=q3=Magister's Boots", "=ds=#s12#, #a1# (D1, #c3#)", "", "10.86%"}; - }; - - AtlasLoot_Data["STRATTheUnforgiven"] = { - { 1, 13409, "", "=q3=Tearfall Bracers", "=ds=#s8#, #a1#", "", "14.62%"}; - { 2, 13404, "", "=q3=Mask of the Unforgiven", "=ds=#s1#, #a2#", "", "14.96%"}; - { 3, 13405, "", "=q3=Wailing Nightbane Pauldrons", "=ds=#s3#, #a4#", "", "12.10%"}; - { 4, 13408, "", "=q3=Soul Breaker", "=ds=#h1#, #w1#", "", "19.33%"}; - { 16, 16717, "", "=q3=Wildheart Gloves", "=ds=#s9#, #a2# (D1, #c1#)", "", "12.61%"}; - }; - - AtlasLoot_Data["STRATTimmytheCruel"] = { - { 1, 13403, "", "=q3=Grimgore Noose", "=ds=#s10#, #a1#", "", "16.48%"}; - { 2, 13402, "", "=q3=Timmy's Galoshes", "=ds=#s12#, #a3#", "", "16.74%"}; - { 3, 13400, "", "=q3=Vambraces of the Sadist", "=ds=#s8#, #a4#", "", "14.02%"}; - { 4, 13401, "", "=q3=The Cruel Hand of Timmy", "=ds=#h1#, #w6#", "", "16.87%"}; - { 16, 16724, "", "=q3=Lightforge Gauntlets", "=ds=#s9#, #a4# (D1, #c4#)", "", "10.42%"}; - }; - - AtlasLoot_Data["STRATMalorsStrongbox"] = { - { 1, 0, "INV_Box_01", "=q6=#x13#", ""}; - { 2, 12845, "", "=q1=Medallion of Faith", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["STRATCrimsonHammersmith"] = { - { 1, 18781, "", "=q3=Bottom Half of Advanced Armorsmithing: Volume II", "=ds=#m3#", "", "41.6%"}; - { 2, 12726, "", "=q3=Plans: Enchanted Thorium Leggings", "=q1=#m4#: =ds=#p2# (300)"}; - { 4, 13351, "", "=q1=Crimson Hammersmith's Apron", "=ds=#m3#", "", "100%"}; - { 5, 12824, "", "=q2=Plans: Enchanted Battlehammer", "=q1=#m4#: =ds=#p2# (280)"}; - }; - - AtlasLoot_Data["STRATBSPlansSerenity"] = { - { 1, 12827, "", "=q2=Plans: Serenity", "=ds=#p2# (285)", "", "100%"}; - }; - - AtlasLoot_Data["STRATCannonMasterWilley"] = { - { 1, 22405, "", "=q3=Mantle of the Scarlet Crusade", "=ds=#s3#, #a1#", "", "16.03%"}; - { 2, 22407, "", "=q3=Helm of the New Moon", "=ds=#s1#, #a2#", "", "13.61%"}; - { 3, 18721, "", "=q3=Barrage Girdle", "=ds=#s10#, #a3#", "", "12.39%"}; - { 4, 13381, "", "=q3=Master Cannoneer Boots", "=ds=#s12#, #a4#", "", "12.86%"}; - { 5, 22403, "", "=q3=Diana's Pearl Necklace", "=ds=#s2#", "", "14.27%"}; - { 6, 13382, "", "=q3=Cannonball Runner", "=ds=#s14#", "", "12.28%"}; - { 7, 22404, "", "=q3=Willey's Back Scratcher", "=ds=#h3#, #w13#", "", "6.26%"}; - { 8, 22406, "", "=q3=Redemption", "=ds=#w9#", "", "7.04%"}; - { 9, 13380, "", "=q3=Willey's Portable Howitzer", "=ds=#w5#", "", "10.71%"}; - { 10, 13377, "", "=q3=Miniature Cannon Balls", "=ds=#w18#", "", "66.61%"}; - { 16, 16708, "", "=q3=Shadowcraft Spaulders", "=ds=#s3#, #a2# (D1, #c6#)", "", "10.68%"}; - { 18, 12839, "", "=q3=Plans: Heartseeker", "=ds=#p2# (300)", "", "4.98%"}; - { 19, 12783, "", "=q3=Heartseeker", "=ds=#h1#, #w4#"}; - }; - - AtlasLoot_Data["STRATArchivistGalford"] = { - { 1, 13386, "", "=q3=Archivist Cape", "=ds=#s4#", "", "18.45%"}; - { 2, 18716, "", "=q3=Ash Covered Boots", "=ds=#s12#, #a2#", "", "16.30%"}; - { 3, 13387, "", "=q3=Foresight Girdle", "=ds=#s10#, #a3#", "", "18.24%"}; - { 4, 13385, "", "=q3=Tome of Knowledge", "=ds=#s15#", "", "9.87%"}; - { 5, 22897, "", "=q3=Tome of Conjure Food VII", "=ds=#e10# =q1=#m1# =ds=#c3#", "", "4.86%"}; - { 7, 12811, "", "=q2=Righteous Orb", "=ds=#e8#", "", "61.3%"}; - { 9, 0, "INV_Box_01", "=q6=#x11#", ""}; - { 10, 14679, "", "=q1=Of Love and Family", "=ds=#m3#"}; - { 16, 16692, "", "=q3=Devout Gloves", "=ds=#s9#, #a1# (D1, #c5#)", "", "12.46%"}; - }; - - AtlasLoot_Data["STRATBalnazzar"] = { - { 1, 13353, "", "=q4=Book of the Dead", "=ds=#s15#", "", "1.37%"}; - { 2, 14512, "", "=q4=Pattern: Truefaith Vestments", "=ds=#p8# (300)", "", "3.02%"}; - { 3, 14154, "", "=q4=Truefaith Vestments", "=ds=#s5#, #a1# =q1=#m1# =ds=#c5#"}; - { 5, 18720, "", "=q3=Shroud of the Nathrezim", "=ds=#s3#, #a1#", "", "10.54%"}; - { 6, 13369, "", "=q3=Fire Striders", "=ds=#s12#, #a1#", "", "14.84%"}; - { 7, 13358, "", "=q3=Wyrmtongue Shoulders", "=ds=#s3#, #a2#", "", "11.58%"}; - { 8, 13359, "", "=q3=Crown of Tyranny", "=ds=#s1#, #a3#", "", "13.94%"}; - { 9, 18718, "", "=q3=Grand Crusader's Helm", "=ds=#s1#, #a4#", "", "10.16%"}; - { 10, 12103, "", "=q3=Star of Mystaria", "=ds=#s2#", "", "12.48%"}; - { 11, 13360, "", "=q3=Gift of the Elven Magi", "=ds=#h1#, #w4#", "", "13.66%"}; - { 12, 13348, "", "=q3=Demonshear", "=ds=#h2#, #w10#", "", "13.94%"}; - { 13, 18717, "", "=q3=Hammer of the Grand Crusader", "=ds=#h2#, #w6#", "", "11.91%"}; - { 16, 16725, "", "=q3=Lightforge Boots", "=ds=#s12#, #a4# (D1, #c4#)", "", "11.11%"}; - { 18, 13520, "", "=q2=Recipe: Flask of Distilled Wisdom", "=ds=#p1# (300)", "", "1.94%"}; - { 20, 13250, "", "=q1=Head of Balnazzar", "=ds=#m2#"}; - }; - - AtlasLoot_Data["STRATSothosJarien"] = { - { 1, 0, "INV_Misc_Bag_09", "=q6=#j5#", "=q5=#n18#"}; - { 2, 22301, "", "=q3=Ironweave Robe", "=ds=#s5#, #a1#", "", "19.00%"}; - { 3, 22328, "", "=q3=Legplates of Vigilance", "=ds=#s11#, #a4#", "", "21.27%"}; - { 4, 22327, "", "=q3=Amulet of the Redeemed", "=ds=#s2#", "", "14.03%"}; - { 5, 22334, "", "=q3=Band of Mending", "=ds=#s13#", "", "17.19%"}; - { 6, 22329, "", "=q3=Scepter of Interminable Focus", "=ds=#s15#", "", "28.51%"}; - { 8, 21984, "", "=q1=Left Piece of Lord Valthalak's Amulet", "=ds=#m3#"}; - { 9, 22046, "", "=q1=Right Piece of Lord Valthalak's Amulet", "=ds=#m3#"}; - }; - - AtlasLoot_Data["STRATStonespine"] = { - { 1, 13397, "", "=q3=Stoneskin Gargoyle Cape", "=ds=#s4#", "", "23.44%"}; - { 2, 13954, "", "=q3=Verdant Footpads", "=ds=#s12#, #a2#", "", "25.36%"}; - { 3, 13399, "", "=q3=Gargoyle Shredder Talons", "=ds=#h4#, #w13#", "", "26.16%"}; - }; - - AtlasLoot_Data["STRATBaronessAnastari"] = { - { 1, 18730, "", "=q3=Shadowy Laced Handwraps", "=ds=#s9#, #a1#", "", "13.54%"}; - { 2, 18728, "", "=q3=Anastari Heirloom", "=ds=#s2#", "", "11.92%"}; - { 3, 13534, "", "=q3=Banshee Finger", "=ds=#w12#", "", "13.42%"}; - { 4, 18729, "", "=q3=Screeching Bow", "=ds=#w2#", "", "15.59%"}; - { 6, 13535, "", "=q2=Coldtouch Phantom Wraps", "=ds=#s5#, #a1#", "", "9.84%"}; - { 7, 13537, "", "=q2=Chillhide Bracers", "=ds=#s8#, #a2#", "", "9.71%"}; - { 8, 13538, "", "=q2=Windshrieker Pauldrons", "=ds=#s3#, #a3#", "", "9.75%"}; - { 9, 13539, "", "=q2=Banshee's Touch", "=ds=#s9#, #a4#", "", "8.27%"}; - { 10, 13514, "", "=q2=Wail of the Banshee", "=ds=#m8#", "", "7.73%"}; - { 16, 16704, "", "=q3=Dreadmist Sandals", "=ds=#s12#, #a1# (D1, #c8#)", "", "13.16%"}; - }; - - AtlasLoot_Data["STRATBlackGuardSwordsmith"] = { - { 1, 18783, "", "=q3=Bottom Half of Advanced Armorsmithing: Volume III", "=ds=#m3#", "", "23.5%"}; - { 2, 12725, "", "=q3=Plans: Enchanted Thorium Helm", "=q1=#m4#: =ds=#p2# (300)"}; - { 4, 13350, "", "=q1=Insignia of the Black Guard", "=ds=#m3#", "", "100%"}; - { 5, 12825, "", "=q2=Plans: Blazing Rapier", "=q1=#m4#: =ds=#p2# (280)"}; - }; - - AtlasLoot_Data["STRATBSPlansCorruption"] = { - { 1, 12830, "", "=q1=Plans: Corruption", "=ds=#p2# (290)", "", "100%"}; - }; - - AtlasLoot_Data["STRATNerubenkan"] = { - { 1, 18740, "", "=q3=Thuzadin Sash", "=ds=#s10#, #a1#", "", "14.72%"}; - { 2, 18739, "", "=q3=Chitinous Plate Legguards", "=ds=#s11#, #a4#", "", "12.19%"}; - { 3, 13529, "", "=q3=Husk of Nerub'enkan", "=ds=#w8#", "", "12.62%"}; - { 4, 18738, "", "=q3=Carapace Spine Crossbow", "=ds=#w3#", "", "14.17%"}; - { 6, 13530, "", "=q2=Fangdrip Runners", "=ds=#s12#, #a1#", "", "8.49%"}; - { 7, 13531, "", "=q2=Crypt Stalker Leggings", "=ds=#s11#, #a2#", "", "10.17%"}; - { 8, 13532, "", "=q2=Darkspinner Claws", "=ds=#s9#, #a3#", "", "9.69%"}; - { 9, 13533, "", "=q2=Acid-etched Pauldrons", "=ds=#s3#, #a4#", "", "8.11%"}; - { 10, 13508, "", "=q2=Eye of Arachnida", "=ds=#m8#", "", "7.39%"}; - { 16, 16675, "", "=q3=Beaststalker's Boots", "=ds=#s12#, #a3# (D1, #c2#)", "", "13.62%"}; - }; - - AtlasLoot_Data["STRATMalekithePallid"] = { - { 1, 18734, "", "=q3=Pale Moon Cloak", "=ds=#s4#", "", "13.42%"}; - { 2, 18735, "", "=q3=Maleki's Footwraps", "=ds=#s12#, #a1#", "", "15.03%"}; - { 3, 13524, "", "=q3=Skull of Burning Shadows", "=ds=#s15#", "", "13.42%"}; - { 4, 18737, "", "=q3=Bone Slicing Hatchet", "=ds=#h1#, #w1#", "", "14.23%"}; - { 6, 13525, "", "=q2=Darkbind Fingers", "=ds=#s9#, #a1#", "", "9.15%"}; - { 7, 13526, "", "=q2=Flamescarred Girdle", "=ds=#s10#, #a2#", "", "9.57%"}; - { 8, 13528, "", "=q2=Twilight Void Bracers", "=ds=#s8#, #a3#", "", "9.49%"}; - { 9, 13527, "", "=q2=Lavawalker Greaves", "=ds=#s12#, #a4#", "", "9.39%"}; - { 10, 13509, "", "=q2=Clutch of Foresight", "=ds=#m8#", "", "6.95%"}; - { 16, 16691, "", "=q3=Devout Sandals", "=ds=#s12#, #a1# (D1, #c5#)", "", "13.64%"}; - { 18, 12833, "", "=q3=Plans: Hammer of the Titans", "=ds=#p2# (300)", "", "5.86%"}; - { 19, 12796, "", "=q3=Hammer of the Titans", "=ds=#h2#, #w6#"}; - }; - - AtlasLoot_Data["STRATMagistrateBarthilas"] = { - { 1, 13376, "", "=q3=Royal Tribunal Cloak", "=ds=#s4#", "", "12.44%"}; - { 2, 18727, "", "=q3=Crimson Felt Hat", "=ds=#s1#, #a1#", "", "13.82%"}; - { 3, 18726, "", "=q3=Magistrate's Cuffs", "=ds=#s8#, #a2#", "", "12.87%"}; - { 4, 18722, "", "=q3=Death Grips", "=ds=#s9#, #a4#", "", "15.34%"}; - { 5, 23198, "", "=q3=Idol of Brutality", "=ds=#s16#, #w14#", "", "2.37%"}; - { 6, 18725, "", "=q3=Peacemaker", "=ds=#w7#", "", "14.22%"}; - { 8, 12382, "", "=q2=Key to the City", "=ds=#e9#", "", "100%"}; - }; - - AtlasLoot_Data["STRATRamsteintheGorger"] = { - { 1, 13374, "", "=q3=Soulstealer Mantle", "=ds=#s3#, #a1#", "", "9.87%"}; - { 2, 18723, "", "=q3=Animated Chain Necklace", "=ds=#s2#", "", "7.54%"}; - { 3, 13373, "", "=q3=Band of Flesh", "=ds=#s13#", "", "8.15%"}; - { 4, 13515, "", "=q3=Ramstein's Lightning Bolts", "=ds=#s14#", "", "8.09%"}; - { 5, 13372, "", "=q3=Slavedriver's Cane", "=ds=#w9#", "", "8.63%"}; - { 6, 13375, "", "=q3=Crest of Retribution", "=ds=#w8#", "", "9.17%"}; - { 16, 16737, "", "=q3=Gauntlets of Valor", "=ds=#s9#, #a4# (D1, #c9#)", "", "9.58%"}; - }; - - AtlasLoot_Data["STRATBaronRivendare"] = { - { 1, 13505, "", "=q4=Runeblade of Baron Rivendare", "=ds=#h2#, #w10#", "", "1%"}; ---drop rate according to blue - { 2, 13335, "", "=q4=Deathcharger's Reins", "=ds=#e12#", "", "0.10%"}; - { 4, 13340, "", "=q3=Cape of the Black Baron", "=ds=#s4#", "", "8.75%"}; - { 5, 22412, "", "=q3=Thuzadin Mantle", "=ds=#s3#, #a1#", "", "4.16%"}; - { 6, 13346, "", "=q3=Robes of the Exalted", "=ds=#s5#, #a1#", "", "11.51%"}; - { 7, 22409, "", "=q3=Tunic of the Crescent Moon", "=ds=#s5#, #a2#", "", "4.59%"}; - { 8, 13344, "", "=q3=Dracorian Gauntlets", "=ds=#s9#, #a3#", "", "10.85%"}; - { 9, 22410, "", "=q3=Gauntlets of Deftness", "=ds=#s9#, #a3#", "", "4.98%"}; - { 10, 22411, "", "=q3=Helm of the Executioner", "=ds=#s1#, #a4#", "", "3.80%"}; - { 11, 13345, "", "=q3=Seal of Rivendare", "=ds=#s13#", "", "9.50%"}; - { 12, 13368, "", "=q3=Bonescraper", "=ds=#h1#, #w4#", "", "4.32%"}; - { 13, 13361, "", "=q3=Skullforge Reaver", "=ds=#h1#, #w10#", "", "4.25%"}; - { 14, 13349, "", "=q3=Scepter of the Unholy", "=ds=#h1#, #w6#", "", "9.30%"}; - { 15, 22408, "", "=q3=Ritssyn's Wand of Bad Mojo", "=ds=#w12#", "", "3.39%"}; - { 16, 16687, "", "=q3=Magister's Leggings", "=ds=#s11#, #a1# (D1, #c3#)", "", "6.79%"}; - { 17, 16699, "", "=q3=Dreadmist Leggings", "=ds=#s11#, #a1# (D1, #c8#)", "", "7.31%"}; - { 18, 16694, "", "=q3=Devout Skirt", "=ds=#s11#, #a1# (D1, #c5#)", "", "7.42%"}; - { 19, 16709, "", "=q3=Shadowcraft Pants", "=ds=#s11#, #a2# (D1, #c6#)", "", "7.76%"}; - { 20, 16719, "", "=q3=Wildheart Kilt", "=ds=#s11#, #a2# (D1, #c1#)", "", "6.58%"}; - { 21, 16668, "", "=q3=Kilt of Elements", "=ds=#s11#, #a3# (D1, #c7#)", "", "3.02%"}; - { 22, 16678, "", "=q3=Beaststalker's Pants", "=ds=#s11#, #a3# (D1, #c2#)", "", "6.16%"}; - { 23, 16732, "", "=q3=Legplates of Valor", "=ds=#s11#, #a4# (D1, #c9#)", "", "5.74%"}; - { 24, 16728, "", "=q3=Lightforge Legplates", "=ds=#s11#, #a4# (D1, #c4#)", "", "4.20%"}; - { 26, 13251, "", "=q1=Head of Baron Rivendare", "=ds=#m3#", "", "100%"}; - { 27, 13246, "", "=q3=Argent Avenger", "=q1=#m4#: =ds=#h1#, #w10#"}; - { 28, 13249, "", "=q3=Argent Crusader", "=q1=#m4#: =ds=#w9#"}; - { 29, 13243, "", "=q3=Argent Defender", "=q1=#m4#: =ds=#w8#"}; - }; - - AtlasLoot_Data["STRATTrash"] = { - { 1, 18743, "", "=q3=Gracious Cape", "=ds=#s4#", "", "0.01%"}; - { 2, 17061, "", "=q3=Juno's Shadow", "=ds=#s4#", "", "0.01%"}; - { 3, 18745, "", "=q3=Sacred Cloth Leggings", "=ds=#s11#, #a1#", "", "0.01%"}; - { 4, 18744, "", "=q3=Plaguebat Fur Gloves", "=ds=#s9#, #a2#", "", "0.00%"}; - { 5, 18736, "", "=q3=Plaguehound Leggings", "=ds=#s11#, #a2#", "", "0.00%"}; - { 6, 18742, "", "=q3=Stratholme Militia Shoulderguard", "=ds=#s3#, #a3#", "", "0.00%"}; - { 7, 18741, "", "=q3=Morlune's Bracer", "=ds=#s8#, #a4#", "", "0.01%"}; - { 9, 16249, "", "=q2=Formula: Enchant 2H Weapon - Major Intellect", "=ds=#p4# (300) =q1=#n60#", "", "1.19%"}; - { 10, 16248, "", "=q2=Formula: Enchant Weapon - Unholy", "=ds=#p4# (295) =q1=#n61#", "", "0.36%"}; - { 11, 18658, "", "=q2=Schematic: Ultra-Flash Shadow Reflector", "=ds=#p5# (300) =q1=#n62#", "", "1.82%"}; - { 12, 16052, "", "=q2=Schematic: Voice Amplification Modulator", "=ds=#p5# (290) =q1=#n62#", "", "1.99%"}; - { 13, 15777, "", "=q2=Pattern: Runic Leather Shoulders", "=ds=#p7# (300) =q1=#n63#", "", "1.00%"}; - { 14, 15768, "", "=q2=Pattern: Wicked Leather Belt", "=ds=#p7# (300) =q1=#n64#", "", "0.85%"}; - { 15, 14495, "", "=q2=Pattern: Ghostweave Pants", "=ds=#p8# (290) =q1=#n65#", "", "2.13%"}; - { 16, 16697, "", "=q3=Devout Bracers", "=ds=#s8#, #a1# (D1)", "", "1.15%"}; - { 17, 16702, "", "=q3=Dreadmist Belt", "=ds=#s10#, #a1# (D1)", "", "0.90%"}; - { 18, 16685, "", "=q3=Magister's Belt", "=ds=#s10#, #a1# (D1)", "", "0.80%"}; - { 19, 16714, "", "=q3=Wildheart Bracers", "=ds=#s8#, #a2# (D1)", "", "1.49%"}; - { 20, 16681, "", "=q3=Beaststalker's Bindings", "=ds=#s8#, #a3# (D1)", "", "1.64%"}; - { 21, 16671, "", "=q3=Bindings of Elements", "=ds=#s8#, #a3# (D1)", "", "1.90%"}; - { 22, 16736, "", "=q3=Belt of Valor", "=ds=#s10#, #a4# (D1)", "", "2.02%"}; - { 23, 16723, "", "=q3=Lightforge Belt", "=ds=#s10#, #a4# (D1)", "", "1.83%"}; - { 25, 12811, "", "=q2=Righteous Orb", "=ds=#e8#", "", "5.09%"}; - { 26, 12735, "", "=q2=Frayed Abomination Stitching", "=ds=#m3#", "", "17.5%"}; - }; - - --------------------- - --- The Deadmines --- - --------------------- - - AtlasLoot_Data["TheDeadmines1"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Marisa du'Paige"], "=ec1=#j28#"}; - { 2, 3019, "", "=q2=Noble's Robe", "=ds=#s5#, #a1#", "", "22.4%"}; - { 3, 4660, "", "=q2=Walking Boots", "=ds=#s12#, #a1#", "", "71.4%"}; - { 5, 0, "INV_Box_01", "=q6="..BabbleBoss["Brainwashed Noble"], "=ec1=#j28#"}; - { 6, 5967, "", "=q2=Girdle of Nobility", "=ds=#s10#, #a1#", "", "70.4%"}; - { 7, 3902, "", "=q2=Staff of Nobles", "=ds=#w9#", "", "23.0%"}; - { 9, 0, "INV_Box_01", "=q6="..BabbleBoss["Foreman Thistlenettle"], "=ec1=#j28#"}; - { 10, 1875, "", "=q1=Thistlenettle's Badge", "=ds=#m3#", "", "100%"}; - { 12, 0, "INV_Box_01", "=q6="..BabbleBoss["Rhahk'Zor"], ""}; - { 13, 872, "", "=q3=Rockslicer", "=ds=#h2#, #w1#", "", "3.13%"}; - { 14, 5187, "", "=q3=Rhahk'Zor's Hammer", "=ds=#h2#, #w6#", "", "77.98%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Miner Johnson"], ""}; - { 17, 5444, "", "=q3=Miner's Cape", "=ds=#s4#", "", "54.88%"}; - { 18, 5443, "", "=q3=Gold-plated Buckler", "=ds=#w8#", "", "37.21%"}; - { 20, 0, "INV_Box_01", "=q6="..BabbleBoss["Sneed's Shredder"], ""}; - { 21, 2169, "", "=q3=Buzzer Blade", "=ds=#h1#, #w4#", "", "70.78%"}; - { 22, 1937, "", "=q3=Buzz Saw", "=ds=#h1#, #w10#", "", "8.75%"}; - { 23, 7365, "", "=q1=Gnoam Sprecklesprocket", "=ds=#m3#", "", "100%"}; - { 25, 0, "INV_Box_01", "=q6="..BabbleBoss["Sneed"], ""}; - { 26, 5195, "", "=q3=Gold-flecked Gloves", "=ds=#s9#, #a1#", "", "62.38%"}; - { 27, 5194, "", "=q3=Taskmaster Axe", "=ds=#h2#, #w1#", "", "26.23%"}; - { 30, 5397, "", "=q1=Defias Gunpowder", "=ds=#m3#", "", "100%"}; - Next = "TheDeadmines2"; - }; - - AtlasLoot_Data["TheDeadmines2"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Gilnid"], ""}; - { 2, 5199, "", "=q3=Smelting Pants", "=ds=#s11#, #a2#", "", "51.37%"}; - { 3, 1156, "", "=q3=Lavishly Jeweled Ring", "=ds=#s13#", "", "35.02%"}; - { 5, 0, "INV_Box_01", "=q6=#n7#", ""}; - { 6, 10403, "", "=q3=Blackened Defias Belt", "=ds=#s10#, #a2#", "", "23.26%"}; - { 7, 5200, "", "=q3=Impaling Harpoon", "=ds=#w7#", "", "25.39%"}; - { 8, 5201, "", "=q3=Emberstone Staff", "=ds=#w9#", "", "34.10%"}; - { 10, 0, "INV_Box_01", "=q6="..BabbleBoss["Mr. Smite"], ""}; - { 11, 5192, "", "=q3=Thief's Blade", "=ds=#h1#, #w10#", "", "34.96%"}; - { 12, 5196, "", "=q3=Smite's Reaver", "=ds=#h1#, #w1#", "", "33.95%"}; - { 13, 7230, "", "=q3=Smite's Mighty Hammer", "=ds=#h2#, #w6#", "", "17.27%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Cookie"], ""}; - { 17, 5197, "", "=q3=Cookie's Tenderizer", "=ds=#h1#, #w6#", "", "49.62%"}; - { 18, 5198, "", "=q3=Cookie's Stirring Rod", "=ds=#w12#", "", "30.90%"}; - { 19, 8490, "", "=q1=Cat Carrier (Siamese)", "=ds=#e13#", "", "12.38%"}; - { 21, 0, "INV_Box_01", "=q6=#n6#", ""}; - { 22, 5193, "", "=q3=Cape of the Brotherhood", "=ds=#s4#", "", "21.25%"}; - { 23, 5202, "", "=q3=Corsair's Overshirt", "=ds=#s5#, #a1#", "", "22.86%"}; - { 24, 10399, "", "=q3=Blackened Defias Armor", "=ds=#s5#, #a2#", "", "14.77%"}; - { 25, 5191, "", "=q3=Cruel Barb", "=ds=#h1#, #w10#", "", "14.17%"}; - { 26, 2874, "", "=q1=An Unsent Letter", "=ds=#m2#"}; - { 27, 3637, "", "=q1=Head of VanCleef", "=ds=#m3#"}; - Prev = "TheDeadmines1"; - Next = "VWOWSets1"; - }; - - -------------------- - --- The Stockade --- - -------------------- - - AtlasLoot_Data["TheStockade"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Targorr the Dread"], ""}; - { 2, 3630, "", "=q1=Head of Targorr", "=ds=#m3#", "", "100%"}; - { 4, 0, "INV_Box_01", "=q6="..BabbleBoss["Kam Deepfury"], ""}; - { 5, 2280, "", "=q3=Kam's Walking Stick", "=ds=#w9#", "", "0.62%"}; - { 6, 3640, "", "=q1=Head of Deepfury", "=ds=#m3#", "", "100%"}; - { 8, 0, "INV_Box_01", "=q6="..BabbleBoss["Bazil Thredd"], ""}; - { 9, 2926, "", "=q1=Head of Bazil Thredd", "=ds=#m3#", "", "100%"}; - { 11, 0, "INV_Box_01", "=q6="..BabbleBoss["Dextren Ward"], ""}; - { 12, 3628, "", "=q1=Hand of Dextren Ward", "=ds=#m3#", "", "100%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Bruegal Ironknuckle"], ""}; - { 17, 3228, "", "=q3=Jimmied Handcuffs", "=ds=#s8#, #a3#", "", "54.73%"}; - { 18, 2942, "", "=q3=Iron Knuckles", "=ds=#h1#, #w13#", "", "18.18%"}; - { 19, 2941, "", "=q3=Prison Shank", "=ds=#h1#, #w4#", "", "16.05%"}; - { 21, 0, "INV_Box_01", "=q6=#n11#", ""}; - { 22, 2909, "", "=q1=Red Wool Bandana", "=ds=#m3#"}; - }; - - ------------------------- - --- The Sunken Temple --- - ------------------------- - - AtlasLoot_Data["STSpawnOfHakkar"] = { - { 1, 10802, "", "=q3=Wingveil Cloak", "=ds=#s4#", "", "25.6%"}; - { 2, 10801, "", "=q3=Slitherscale Boots", "=ds=#s12#, #a2#", "", "42.33%"}; - }; - - AtlasLoot_Data["STTrollMinibosses"] = { - { 1, 10787, "", "=q3=Atal'ai Gloves", "=ds=#s9#, #a1# =q2=#m16#", "", "5.25%"}; - { 2, 10783, "", "=q3=Atal'ai Spaulders", "=ds=#s3#, #a2# =q2=#m16#", "", "3.12%"}; - { 3, 10785, "", "=q3=Atal'ai Leggings", "=ds=#s11#, #a2# =q2=#m16#", "", "4.42%"}; - { 4, 10784, "", "=q3=Atal'ai Breastplate", "=ds=#s5#, #a3# =q2=#m16#", "", "2.12%"}; - { 5, 10786, "", "=q3=Atal'ai Boots", "=ds=#s12#, #a3# =q2=#m16#", "", "6.15%"}; - { 6, 10788, "", "=q3=Atal'ai Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "7.17%"}; - { 8, 20606, "", "=q1=Amber Voodoo Feather", "=ds=#m3# =q2=#st1#, #st6#"}; - { 9, 20607, "", "=q1=Blue Voodoo Feather", "=ds=#m3# =q2=#st2#, #st4#"}; - { 10, 20608, "", "=q1=Green Voodoo Feather", "=ds=#m3# =q2=#st3#, #st5#"}; - }; - - AtlasLoot_Data["STAtalalarion"] = { - { 1, 10800, "", "=q3=Darkwater Bracers", "=ds=#s8#, #a2# =q2=#m16#", "", "31.73%"}; - { 2, 10798, "", "=q3=Atal'alarion's Tusk Ring", "=ds=#s10#, #a4#", "", "30.53%"}; - { 3, 10799, "", "=q3=Headspike", "=ds=#w7#", "", "17.98%"}; - }; - - AtlasLoot_Data["STDreamscythe"] = { - { 1, 12465, "", "=q3=Nightfall Drape", "=ds=#s4#", "", "4.42%"}; - { 2, 12466, "", "=q3=Dawnspire Cord", "=ds=#s10#, #a1#", "", "4.16%"}; - { 3, 12464, "", "=q3=Bloodfire Talons", "=ds=#s9#, #a2#", "", "4.99%"}; - { 4, 10795, "", "=q3=Drakeclaw Band", "=ds=#s13# =q2=#m16#", "", "3.68%"}; - { 5, 10796, "", "=q3=Drakestone", "=ds=#s15#", "", "4.26%"}; - { 6, 10797, "", "=q3=Firebreather", "=ds=#h1#, #w10#", "", "4.57%"}; - { 7, 12463, "", "=q3=Drakefang Butcher", "=ds=#h2#, #w10#", "", "4.40%"}; - { 8, 12243, "", "=q3=Smoldering Claw", "=ds=#w7#", "", "4.50%"}; - }; - - AtlasLoot_Data["STWeaver"] = { - { 1, 12465, "", "=q3=Nightfall Drape", "=ds=#s4#", "", "4.20%"}; - { 2, 12466, "", "=q3=Dawnspire Cord", "=ds=#s10#, #a1#", "", "3.89%"}; - { 3, 12464, "", "=q3=Bloodfire Talons", "=ds=#s9#, #a2#", "", "4.10%"}; - { 4, 10795, "", "=q3=Drakeclaw Band", "=ds=#s13# =q2=#m16#", "", "4.46%"}; - { 5, 10796, "", "=q3=Drakestone", "=ds=#s15#", "", "4.47%"}; - { 6, 10797, "", "=q3=Firebreather", "=ds=#h1#, #w10#", "", "4.08%"}; - { 7, 12463, "", "=q3=Drakefang Butcher", "=ds=#h2#, #w10#", "", "5.00%"}; - { 8, 12243, "", "=q3=Smoldering Claw", "=ds=#w7#", "", "4.42%"}; - }; - - AtlasLoot_Data["STAvatarofHakkar"] = { - { 1, 12462, "", "=q4=Embrace of the Wind Serpent", "=ds=#s5#, #a1#", "", "0.15%"}; - { 3, 10843, "", "=q3=Featherskin Cape", "=ds=#s4#", "", "31.12%"}; - { 4, 10842, "", "=q3=Windscale Sarong", "=ds=#s11#, #a2#", "", "33.22%"}; - { 5, 10846, "", "=q3=Bloodshot Greaves", "=ds=#s12#, #a3#", "", "32.44%"}; - { 6, 10845, "", "=q3=Warrior's Embrace", "=ds=#s5#, #a4#", "", "30.44%"}; - { 7, 10838, "", "=q3=Might of Hakkar", "=ds=#h1#, #w6#", "", "16.37%"}; - { 8, 10844, "", "=q3=Spire of Hakkar", "=ds=#w9#", "", "16.02%"}; - { 10, 10663, "", "=q1=Essence of Hakkar", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["STJammalan"] = { - { 1, 10806, "", "=q3=Vestments of the Atal'ai Prophet", "=ds=#s5#, #a1#", "", "24.13%"}; - { 2, 10808, "", "=q3=Gloves of the Atal'ai Prophet", "=ds=#s9#, #a1#", "", "26.74%"}; - { 3, 10807, "", "=q3=Kilt of the Atal'ai Prophet", "=ds=#s11#, #a1#", "", "23.00%"}; - { 5, 6212, "", "=q1=Head of Jammal'an", "=ds=#m3#"}; - }; - - AtlasLoot_Data["STOgom"] = { - { 1, 10805, "", "=q3=Eater of the Dead", "=ds=#h1#, #w1#", "", "28.27%"}; - { 2, 10804, "", "=q3=Fist of the Damned", "=ds=#h1#, #w6#", "", "30.03%"}; - { 3, 10803, "", "=q3=Blade of the Wretched", "=ds=#h1#, #w10#", "", "28.21%"}; - }; - - AtlasLoot_Data["STMorphaz"] = { - { 1, 12465, "", "=q3=Nightfall Drape", "=ds=#s4#", "", "4.29%"}; - { 2, 12466, "", "=q3=Dawnspire Cord", "=ds=#s10#, #a1#", "", "4.12%"}; - { 3, 12464, "", "=q3=Bloodfire Talons", "=ds=#s9#, #a2#", "", "4.21%"}; - { 4, 10795, "", "=q3=Drakeclaw Band", "=ds=#s13# =q2=#m16#", "", "4.07%"}; - { 5, 10796, "", "=q3=Drakestone", "=ds=#s15#", "", "4.18%"}; - { 6, 10797, "", "=q3=Firebreather", "=ds=#h1#, #w10#", "", "4.24%"}; - { 7, 12463, "", "=q3=Drakefang Butcher", "=ds=#h2#, #w10#", "", "4.35%"}; - { 8, 12243, "", "=q3=Smoldering Claw", "=ds=#w7#", "", "4.09%"}; - { 10, 20022, "", "=q1=Azure Key", "=ds=#m3#", "", "100%"}; - { 11, 20085, "", "=q1=Arcane Shard", "=ds=#m3#", "", "100%"}; - { 12, 20025, "", "=q1=Blood of Morphaz", "=ds=#m3#", "", "100%"}; - { 13, 20019, "", "=q1=Tooth of Morphaz", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["STHazzas"] = { - { 1, 12465, "", "=q3=Nightfall Drape", "=ds=#s4#", "", "4.48%"}; - { 2, 12466, "", "=q3=Dawnspire Cord", "=ds=#s10#, #a1#", "", "4.46%"}; - { 3, 12464, "", "=q3=Bloodfire Talons", "=ds=#s9#, #a2#", "", "5.00%"}; - { 4, 10795, "", "=q3=Drakeclaw Band", "=ds=#s13# =q2=#m16#", "", "4.18%"}; - { 5, 10796, "", "=q3=Drakestone", "=ds=#s15#", "", "4.92%"}; - { 6, 10797, "", "=q3=Firebreather", "=ds=#h1#, #w10#", "", "4.50%"}; - { 7, 12463, "", "=q3=Drakefang Butcher", "=ds=#h2#, #w10#", "", "4.58%"}; - { 8, 12243, "", "=q3=Smoldering Claw", "=ds=#w7#", "", "4.56%"}; - }; - - AtlasLoot_Data["STEranikus"] = { - { 1, 10847, "", "=q4=Dragon's Call", "=ds=#h1#, #w10#", "", "0.18%"}; - { 3, 10833, "", "=q3=Horns of Eranikus", "=ds=#s1#, #a3#", "", "25.66%"}; - { 4, 10829, "", "=q3=Dragon's Eye", "=ds=#s2#", "", "27.02%"}; - { 5, 10828, "", "=q3=Dire Nail", "=ds=#h1#, #w4#", "", "10.91%"}; - { 6, 10837, "", "=q3=Tooth of Eranikus", "=ds=#h1#, #w1#", "", "10.05%"}; - { 7, 10835, "", "=q3=Crest of Supremacy", "=ds=#w8#", "", "19.17%"}; - { 8, 10836, "", "=q3=Rod of Corrosion", "=ds=#w12#", "", "21.54%"}; - { 10, 10454, "", "=q2=Essence of Eranikus", "=ds=#m2#"}; - { 11, 10455, "", "=q2=Chained Essence of Eranikus", "=q1=#m4#: =ds=#s14#"}; - }; - - AtlasLoot_Data["STTrash"] = { - { 1, 10630, "", "=q3=Soulcatcher Halo", "=ds=#s1#, #a1#", "", "0.01%"}; - { 2, 10629, "", "=q3=Mistwalker Boots", "=ds=#s12#, #a1#", "", "0.01%"}; - { 3, 10632, "", "=q3=Slimescale Bracers", "=ds=#s8#, #a3#", "", "0.01%"}; - { 4, 10631, "", "=q3=Murkwater Gauntlets", "=ds=#s9#, #a3#", "", "0.01%"}; - { 5, 10633, "", "=q3=Silvershell Leggings", "=ds=#s11#, #a3#", "", "0.01%"}; - { 6, 10634, "", "=q3=Mindseye Circle", "=ds=#s13#", "", "0.02%"}; - { 8, 15733, "", "=q3=Pattern: Green Dragonscale Leggings", "=ds=#p7# (270) =q1=#n80#", "", "1.80%"}; - { 9, 16216, "", "=q2=Formula: Enchant Cloak - Greater Resistance", "=ds=#p4# (265) =q1=#n81#", "", "0.75%"}; - { 11, 11318, "", "=q1=Atal'ai Haze", "=ds=#m3#"}; - { 12, 6181, "", "=q1=Fetish of Hakkar", "=ds=#m3#"}; - { 16, 10623, "", "=q3=Winter's Bite", "=ds=#h1#, #w1#", "", "0.01%"}; - { 17, 10625, "", "=q3=Stealthblade", "=ds=#h1#, #w4#", "", "0.01%"}; - { 18, 10628, "", "=q3=Deathblow", "=ds=#h2#, #w10#", "", "0.01%"}; - { 19, 10626, "", "=q3=Ragehammer", "=ds=#h2#, #w6#", "", "0.01%"}; - { 20, 10627, "", "=q3=Bludgeon of the Grinning Dog", "=ds=#w9#", "", "0.02%"}; - { 21, 10624, "", "=q3=Stinging Bow", "=ds=#w2#", "", "0.02%"}; - }; - - --------------- - --- Uldaman --- - --------------- - - AtlasLoot_Data["UldMagreganDeepshadow"] = { - { 1, 4635, "", "=q1=Hammertoe's Amulet", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["UldTabletofRyuneh"] = { - { 1, 4631, "", "=q1=Tablet of Ryun'eh", "=ds=#m3#"}; - }; - - AtlasLoot_Data["UldKromStoutarmChest"] = { - { 1, 8027, "", "=q1=Krom Stoutarm's Treasure", "=ds=#m3#"}; - }; - - AtlasLoot_Data["UldGarrettFamilyChest"] = { - { 1, 8026, "", "=q1=Garrett Family Treasure", "=ds=#m3#"}; - }; - - AtlasLoot_Data["UldShovelphlange"] = { - { 1, 9375, "", "=q3=Expert Goldminer's Helmet", "=ds=#s1#, #a2#", "", "9.30%"}; - { 2, 9378, "", "=q3=Shovelphlange's Mining Axe", "=ds=#h1#, #w1#", "", "13.50%"}; - { 4, 9382, "", "=q2=Tromping Miner's Boots", "=ds=#s12#, #a2#", "", "70.70%"}; - }; - - AtlasLoot_Data["UldBaelog"] = { - { 1, 0, "INV_Box_01", "=q6=#n45#", ""}; - { 2, 9401, "", "=q3=Nordic Longshank", "=ds=#h1#, #w10#", "", "8.89%"}; - { 3, 9400, "", "=q3=Baelog's Shortbow", "=ds=#w2#", "", "46.52%"}; - { 4, 9399, "", "=q2=Precision Arrow", "=ds=#w17#", "", "78.62%"}; - { 6, 0, "INV_Box_01", "=q6=#n46#", ""}; - { 7, 9394, "", "=q3=Horned Viking Helmet", "=ds=#s1#, #a4#", "", "4.05%"}; - { 8, 9398, "", "=q3=Worn Running Boots", "=ds=#s12#, #a2#", "", "45.09%"}; - { 9, 2459, "", "=q1=Swiftness Potion", "=ds=#e2#"}; - { 11, 0, "INV_Box_01", "=q6=#n47#", ""}; - { 12, 9404, "", "=q3=Olaf's All Purpose Shield", "=ds=#w8#", "", "11.33%"}; - { 13, 9403, "", "=q3=Battered Viking Shield", "=ds=#w8#", "", "69.85%"}; - { 14, 1177, "", "=q1=Oil of Olaf", "=ds=#e2#", "", "76.54%"}; - { 16, 0, "INV_Box_01", "=q6=#x14#", ""}; - { 17, 7740, "", "=q1=Gni'kiv Medallion", "=ds=#m3#"}; - { 19, 0, "INV_Box_01", "=q6=#x15#", ""}; - { 20, 7671, "", "=q1=Shattered Necklace Topaz", "=ds=#m3#"}; - }; - - AtlasLoot_Data["UldRevelosh"] = { - { 1, 9390, "", "=q3=Revelosh's Gloves", "=ds=#s9#, #a1# =q2=#m16#", "", "20.08%"}; - { 2, 9389, "", "=q3=Revelosh's Spaulders", "=ds=#s3#, #a2# =q2=#m16#", "", "18.77%"}; - { 3, 9388, "", "=q3=Revelosh's Armguards", "=ds=#s8#, #a3# =q2=#m16#", "", "19.84%"}; - { 4, 9387, "", "=q3=Revelosh's Boots", "=ds=#s12#, #a4# =q2=#m16#", "", "20.53%"}; - { 6, 7741, "", "=q1=The Shaft of Tsol", "=ds=#m3#"}; - }; - - AtlasLoot_Data["UldIronaya"] = { - { 1, 9407, "", "=q3=Stoneweaver Leggings", "=ds=#s11#, #a1#", "", "31.02%"}; - { 2, 9409, "", "=q3=Ironaya's Bracers", "=ds=#s8#, #a3# =q2=#m16#", "", "32.71%"}; - { 3, 9408, "", "=q3=Ironshod Bludgeon", "=ds=#w9#", "", "17.37%"}; - }; - - AtlasLoot_Data["UldObsidianSentinel"] = { - { 1, 8053, "", "=q1=Obsidian Power Source", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["UldAncientStoneKeeper"] = { - { 1, 9411, "", "=q3=Rockshard Pauldrons", "=ds=#s3#, #a3#", "", "43.41%"}; - { 2, 9410, "", "=q3=Cragfists", "=ds=#s9#, #a4# =q2=#m16#", "", "41.61%"}; - }; - - AtlasLoot_Data["UldGalgannFirehammer"] = { - { 1, 11311, "", "=q3=Emberscale Cape", "=ds=#s4#", "", "36.52%"}; - { 2, 11310, "", "=q3=Flameseer Mantle", "=ds=#s3#, #a1#", "", "17.35%"}; - { 3, 9419, "", "=q3=Galgann's Firehammer", "=ds=#h1#, #w6#", "", "18.10%"}; - { 4, 9412, "", "=q3=Galgann's Fireblaster", "=ds=#w5#", "", "17.10%"}; - }; - - AtlasLoot_Data["UldTabletofWill"] = { - { 1, 5824, "", "=q1=Tablet of Will", "=ds=#m3#"}; - }; - - AtlasLoot_Data["UldShadowforgeCache"] = { - { 1, 7669, "", "=q1=Shattered Necklace Ruby", "=ds=#m3#"}; - }; - - AtlasLoot_Data["UldGrimlok"] = { - { 1, 9415, "", "=q3=Grimlok's Tribal Vestments", "=ds=#s5#, #a1#", "", "36.51%"}; - { 2, 9414, "", "=q3=Oilskin Leggings", "=ds=#s11#, #a2#", "", "29.78%"}; - { 3, 9416, "", "=q3=Grimlok's Charge", "=ds=#w7#", "", "15.05%"}; - { 5, 7670, "", "=q1=Shattered Necklace Sapphire", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["UldArchaedas"] = { - { 1, 11118, "", "=q3=Archaedic Stone", "=ds=#s13# =q2=#m16#", "", "51.99%"}; - { 2, 9418, "", "=q3=Stoneslayer", "=ds=#h2#, #w10#", "", "10.48%"}; - { 3, 9413, "", "=q3=The Rockpounder", "=ds=#h2#, #w6#", "", "10.94%"}; - { 5, 7672, "", "=q1=Shattered Necklace Power Source", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["UldTrash"] = { - { 1, 9397, "", "=q3=Energy Cloak", "=ds=#s4#", "", "0.01%"}; - { 2, 9431, "", "=q3=Papal Fez", "=ds=#s1#, #a1#", "", "0.01%"}; - { 3, 9429, "", "=q3=Miner's Hat of the Deep", "=ds=#s1#, #a1#", "", "0.01%"}; - { 4, 9420, "", "=q3=Adventurer's Pith Helmet", "=ds=#s1#, #a2#", "", "0.01%"}; - { 5, 9406, "", "=q3=Spirewind Fetter", "=ds=#s5#, #a2#", "", "0.01%"}; - { 6, 9428, "", "=q3=Unearthed Bands", "=ds=#s8#, #a2# =q2=#m16#", "", "0.01%"}; - { 7, 9430, "", "=q3=Spaulders of a Lost Age", "=ds=#s3#, #a3#", "", "0.00%"}; - { 8, 9396, "", "=q3=Legguards of the Vault", "=ds=#s11#, #a3#"}; - { 9, 9432, "", "=q3=Skullplate Bracers", "=ds=#s8#, #a4#", "", "0.01%"}; - { 10, 9393, "", "=q3=Beacon of Hope", "=ds=#s15#", "", "0.01%"}; - { 12, 7666, "", "=q2=Shattered Necklace", "=q1=#m2#"}; - { 13, 7673, "", "=q3=Talvash's Enhancing Necklace", "=q1=#m4#: =ds=#s2#"}; - { 16, 9384, "", "=q3=Stonevault Shiv", "=ds=#h1#, #w4#", "", "0.01%"}; - { 17, 9392, "", "=q3=Annealed Blade", "=ds=#h1#, #w10#", "", "0.01%"}; - { 18, 9424, "", "=q3=Ginn-su Sword", "=ds=#h1#, #w10#", "", "0.01%"}; - { 19, 9465, "", "=q3=Digmaster 5000", "=ds=#h1#, #w1#", "", "0.01%"}; - { 20, 9383, "", "=q3=Obsidian Cleaver", "=ds=#h2#, #w1#", "", "0.01%"}; - { 21, 9425, "", "=q3=Pendulum of Doom", "=ds=#h2#, #w1#", "", "0.01%"}; - { 22, 9386, "", "=q3=Excavator's Brand", "=ds=#h1#, #w6#", "", "0.01%"}; - { 23, 9427, "", "=q3=Stonevault Bonebreaker", "=ds=#h1#, #w6#", "", "0.01%"}; - { 24, 9423, "", "=q3=The Jackhammer", "=ds=#h2#, #w6#", "", "0.01%"}; - { 25, 9391, "", "=q3=The Shoveler", "=ds=#h2#, #w6#, =q2=#c9#", "", "0.01%"}; - { 26, 9381, "", "=q3=Earthen Rod", "=ds=#w12#", "", "0.01%"}; - { 27, 9426, "", "=q3=Monolithic Bow", "=ds=#w2#", "", "0.01%"}; - { 28, 9422, "", "=q3=Shadowforge Bushmaster", "=ds=#w5#", "", "0.01%"}; - }; - - ----------------------- - --- Wailing Caverns --- - ----------------------- - - AtlasLoot_Data["WailingCaverns1"] = { - { 1, 0, "INV_Box_01", "=q6="..AL["Kalldan Felmoon"], "=ec1=#j28#"}; - { 2, 6475, "", "=q1=Pattern: Deviate Scale Gloves", "=ds=#p7# (105)"}; - { 3, 6474, "", "=q1=Pattern: Deviate Scale Cloak", "=ds=#p7# (90)"}; - { 5, 0, "INV_Box_01", "=q6="..BabbleBoss["Mad Magglish"], "=ec1=#j28#"}; - { 6, 5334, "", "=q1=99-Year-Old Port", "=ds=#m3#", "", "100%"}; - { 8, 0, "INV_Box_01", "=q6="..BabbleBoss["Trigore the Lasher"], "=ec1=#j28#"}; - { 9, 5425, "", "=q3=Runescale Girdle", "=ds=#s8#, #a3#", "", "50%"}; - { 10, 5426, "", "=q3=Serpent's Kiss", "=ds=#h1#, #w1#", "", "35%"}; - { 12, 0, "INV_Box_01", "=q6="..BabbleBoss["Boahn"], "=ec1=#j28#"}; - { 13, 5423, "", "=q3=Boahn's Fang", "=ds=#h2#, #w1#", "", "28%"}; - { 14, 5422, "", "=q2=Brambleweed Leggings", "=ds=#s11#, #a2#", "", "64%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Lord Cobrahn"], ""}; - { 17, 6465, "", "=q3=Robe of the Moccasin", "=ds=#s5#, #a1#", "", "51.73%"}; - { 18, 10410, "", "=q3=Leggings of the Fang", "=ds=#s11#, #a2#", "", "16.03%"}; - { 19, 6460, "", "=q3=Cobrahn's Grasp", "=ds=#s10#, #a3#", "", "16.20%"}; - { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Lady Anacondra"], ""}; - { 22, 5404, "", "=q3=Serpent's Shoulders", "=ds=#s3#, #a2#", "", "58.61%"}; - { 23, 10412, "", "=q3=Belt of the Fang", "=ds=#s10#, #a2#", "", "8.63%"}; - { 24, 6446, "", "=q3=Snakeskin Bag", "=ds=#m12# #e1#", "", "6.61%"}; - { 26, 0, "INV_Box_01", "=q6="..BabbleBoss["Kresh"], ""}; - { 27, 13245, "", "=q3=Kresh's Back", "=ds=#w8#", "", "9.17%"}; - { 28, 6447, "", "=q3=Worn Turtle Shell Shield", "=ds=#w8#", "", "63.66%"}; - Next = "WailingCaverns2"; - }; - - AtlasLoot_Data["WailingCaverns2"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Lord Pythas"], ""}; - { 2, 6473, "", "=q3=Armor of the Fang", "=ds=#s5#, #a2#", "", "52.06%"}; - { 3, 6472, "", "=q3=Stinging Viper", "=ds=#h1#, #w6#", "", "28.24%"}; - { 5, 0, "INV_Box_01", "=q6="..BabbleBoss["Skum"], ""}; - { 6, 6449, "", "=q3=Glowing Lizardscale Cloak", "=ds=#s4#", "", "38.24%"}; - { 7, 6448, "", "=q3=Tail Spike", "=ds=#h1#, #w4#", "", "39.24%"}; - { 9, 0, "INV_Box_01", "=q6="..BabbleBoss["Lord Serpentis"], ""}; - { 10, 5970, "", "=q3=Serpent Gloves", "=ds=#s9#, #a1#", "", "20.96%"}; - { 11, 10411, "", "=q3=Footpads of the Fang", "=ds=#s12#, #a2#", "", "19.07%"}; - { 12, 6459, "", "=q3=Savage Trodders", "=ds=#s12#, #a3#", "", "24.39%"}; - { 13, 6469, "", "=q3=Venomstrike", "=ds=#w2#", "", "16.63%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Verdan the Everliving"], ""}; - { 17, 6629, "", "=q3=Sporid Cape", "=ds=#s4#", "", "16.65%"}; - { 18, 6631, "", "=q3=Living Root", "=ds=#w9#", "", "34.47%"}; - { 19, 6630, "", "=q3=Seedcloud Buckler", "=ds=#w8#", "", "35.38%"}; - { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Mutanus the Devourer"], ""}; - { 22, 6461, "", "=q3=Slime-encrusted Pads", "=ds=#s3#, #a1#", "", "22.96%"}; - { 23, 6627, "", "=q3=Mutant Scale Breastplate", "=ds=#s5#, #a3#", "", "18.33%"}; - { 24, 6463, "", "=q3=Deep Fathom Ring", "=ds=#s13#", "", "21.99%"}; - { 25, 10441, "", "=q1=Glowing Shard", "=ds=#m2#"}; - { 27, 0, "INV_Box_01", "=q6="..BabbleBoss["Deviate Faerie Dragon"], ""}; - { 28, 6632, "", "=q3=Feyscale Cloak", "=ds=#s4#", "", "37.84%"}; - { 29, 5243, "", "=q3=Firebelcher", "=ds=#w12#", "", "39.65%"}; - Prev = "WailingCaverns1"; - Next = "VWOWSets1"; - }; - - ------------------ - --- Zul'Farrak --- - ------------------ - - AtlasLoot_Data["ZFAntusul"] = { - { 1, 9640, "", "=q3=Vice Grips", "=ds=#s9#, #a4#", "", "31.30%"}; - { 2, 9641, "", "=q3=Lifeblood Amulet", "=ds=#s2#", "", "30.80%"}; - { 3, 9639, "", "=q3=The Hand of Antu'sul", "=ds=#h1#, #w6#", "", "15.47%"}; - { 5, 9379, "", "=q3=Sang'thraze the Deflector", "=ds=#h1#, #w10#", "", "2.10%"}; - { 6, 9372, "", "=q4=Sul'thraze the Lasher", "=ds=#h2#, #w10#"}; - }; - - AtlasLoot_Data["ZFThekatheMartyr"] = { - { 1, 10660, "", "=q1=First Mosh'aru Tablet", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["ZFWitchDoctorZumrah"] = { - { 1, 18083, "", "=q3=Jumanza Grips", "=ds=#s9#, #a1#", "", "24.97%"}; - { 2, 18082, "", "=q3=Zum'rah's Vexing Cane", "=ds=#w9#", "", "11.98%"}; - }; - - AtlasLoot_Data["ZFNekrumGutchewer"] = { - { 1, 9471, "", "=q1=Nekrum's Medallion", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["ZFSezzziz"] = { - { 1, 9470, "", "=q3=Bad Mojo Mask", "=ds=#s1#, #a1#", "", "18.69%"}; - { 2, 9473, "", "=q3=Jinxed Hoodoo Skin", "=ds=#s5#, #a2#", "", "21.12%"}; - { 3, 9474, "", "=q3=Jinxed Hoodoo Kilt", "=ds=#s11#, #a2#", "", "20.95%"}; - { 4, 9475, "", "=q3=Diabolic Skiver", "=ds=#w7#", "", "20.06%"}; - }; - - AtlasLoot_Data["ZFDustwraith"] = { - { 1, 12471, "", "=q3=Desertwalker Cane", "=ds=#s15#", "", "17.71%"}; - }; - - AtlasLoot_Data["ZFSandfury"] = { - { 1, 8444, "", "=q1=Executioner's Key", "=ds=#e9#"}; - }; - - AtlasLoot_Data["ZFSergeantBly"] = { - { 1, 8548, "", "=q1=Divino-matic Rod", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["ZFHydromancerVelratha"] = { - { 1, 9234, "", "=q1=Tiara of the Deep", "=ds=#m3#", "", "100%"}; - { 2, 10661, "", "=q1=Second Mosh'aru Tablet", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["ZFGahzrilla"] = { - { 1, 9469, "", "=q3=Gahz'rilla Scale Armor", "=ds=#s5#, #a3#", "", "36.76%"}; - { 2, 9467, "", "=q3=Gahz'rilla Fang", "=ds=#h1#, #w4#", "", "36.83%"}; - { 4, 8707, "", "=q1=Gahz'rilla's Electrified Scale", "=ds=#m3#"}; - }; - - AtlasLoot_Data["ZFChiefUkorzSandscalp"] = { - { 1, 9479, "", "=q3=Embrace of the Lycan", "=ds=#s1#, #a2#", "", "8.97%"}; - { 2, 9476, "", "=q3=Big Bad Pauldrons", "=ds=#s3#, #a4#", "", "28.17%"}; - { 3, 9478, "", "=q3=Ripsaw", "=ds=#h1#, #w1#", "", "19.78%"}; - { 4, 9477, "", "=q3=The Chief's Enforcer", "=ds=#w9#", "", "22.33%"}; - { 6, 11086, "", "=q3=Jang'thraze the Protector", "=ds=#h3#, #w10#", "", "1.72%"}; - { 7, 9372, "", "=q4=Sul'thraze the Lasher", "=ds=#h2# #w10#"}; - }; - - AtlasLoot_Data["ZFZerillis"] = { - { 1, 12470, "", "=q3=Sandstalker Ankleguards", "=ds=#s12#, #a2#", "", "15.55%"}; - }; - - AtlasLoot_Data["ZFTrash"] = { - { 1, 9512, "", "=q3=Blackmetal Cape", "=ds=#s4#", "", "0.02%"}; - { 2, 9484, "", "=q3=Spellshock Leggings", "=ds=#s11#, #a1#", "", "0.01%"}; - { 3, 862, "", "=q3=Runed Ring", "=ds=#s13# =q2=#m16#", "", "0.02%"}; - { 4, 6440, "", "=q3=Brainlash", "=ds=#s13#", "", "0.01%"}; - { 6, 9243, "", "=q2=Shriveled Heart", "=ds=#s2#"}; - { 8, 9523, "", "=q1=Troll Temper", "=ds=#m3#"}; - { 9, 9238, "", "=q1=Uncracked Scarab Shell", "=ds=#m3#"}; - { 16, 5616, "", "=q3=Gutwrencher", "=ds=#h1#, #w4#", "", "0.01%"}; - { 17, 9511, "", "=q3=Bloodletter Scalpel", "=ds=#h1#, #w10#", "", "0.01%"}; - { 18, 9481, "", "=q3=The Minotaur", "=ds=#h2#, #w1#", "", "0.01%"}; - { 19, 9480, "", "=q3=Eyegouger", "=ds=#w7#", "", "0.01%"}; - { 20, 9482, "", "=q3=Witch Doctor's Cane", "=ds=#w9#", "", "0.01%"}; - { 21, 9483, "", "=q3=Flaming Incinerator", "=ds=#w12#", "", "0.01%"}; - { 22, 2040, "", "=q3=Troll Protector", "=ds=#w8#", "", "0.02%"}; - }; - - ----------------- - --- Zul'Gurub --- - ----------------- - - AtlasLoot_Data["ZGJeklik"] = { - { 1, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "11.41%"}; - { 2, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "11.02%"}; - { 3, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "10.84%"}; - { 4, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "5.89%"}; - { 5, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "5.80%"}; - { 6, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "5.56%"}; - { 7, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.33%"}; - { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.32%"}; - { 9, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.17%"}; - { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.8%"}; - { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; - { 16, 19918, "", "=q4=Jeklik's Crusher", "=ds=#h2#, #w6#", "", "3.96%"}; - { 18, 19928, "", "=q3=Animist's Spaulders", "=ds=#s3#, #a2#", "", "3.39%"}; - { 19, 20262, "", "=q3=Seafury Boots", "=ds=#s12#, #a3#", "", "4.31%"}; - { 20, 20265, "", "=q3=Peacekeeper Boots", "=ds=#s12#, #a4#", "", "6.99%"}; - { 21, 19923, "", "=q3=Jeklik's Opaline Talisman", "=ds=#s2#", "", "12.22%"}; - { 22, 19920, "", "=q3=Primalist's Band", "=ds=#s13#", "", "11.89%"}; - { 23, 19915, "", "=q3=Zulian Defender", "=ds=#w8#", "", " 11.36%"}; - }; - - AtlasLoot_Data["ZGVenoxis"] = { - { 1, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "11.01%"}; - { 2, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "10.55%"}; - { 3, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "10.18%"}; - { 4, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "5.93%"}; - { 5, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "5.67%"}; - { 6, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "5.52%"}; - { 7, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.18%"}; - { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.02%"}; - { 9, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.00%"}; - { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "6.0%"}; - { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; - { 13, 22216, "", "=q1=Venoxis's Venom Sac", "=ds=#m3#", "", "100%"}; - { 16, 19904, "", "=q4=Runed Bloodstained Hauberk", "=ds=#s5#, #a3#", "", "3.70%"}; - { 17, 19903, "", "=q4=Fang of Venoxis", "=ds=#h3#, #w4#", "", "3.68%"}; - { 19, 19907, "", "=q3=Zulian Tigerhide Cloak", "=ds=#s4#", "", "12.09%"}; - { 20, 19906, "", "=q3=Blooddrenched Footpads", "=ds=#s12#, #a2#", "", "11.36%"}; - { 21, 19905, "", "=q3=Zanzil's Band", "=ds=#s13#", "", "6.99%"}; - { 22, 19900, "", "=q3=Zulian Stone Axe", "=ds=#h2#, #w1#", "", "11.89%"}; - }; - - AtlasLoot_Data["ZGMarli"] = { - { 1, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "13.69%"}; - { 2, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "13.69%"}; - { 3, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "13.64%"}; - { 4, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "6.55%"}; - { 5, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "6.49%"}; - { 6, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "6.31%"}; - { 7, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.56%"}; - { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.55%"}; - { 9, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.30%"}; - { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "7.4%"}; - { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; - { 16, 20032, "", "=q4=Flowing Ritual Robes", "=ds=#s5#, #a1#", "", "4.46%"}; - { 17, 19927, "", "=q4=Mar'li's Touch", "=ds=#w12#", "", "4.35%"}; - { 19, 19919, "", "=q3=Bloodstained Greaves", "=ds=#s12#, #a3#", "", "11.89%"}; - { 20, 19871, "", "=q3=Talisman of Protection", "=ds=#s2#", "", "11.36%"}; - { 21, 19925, "", "=q3=Band of Jin", "=ds=#s13#", "", " 6.99%"}; - { 22, 19930, "", "=q3=Mar'li's Eye", "=ds=#s14#", "", "12.09%"}; - }; - - AtlasLoot_Data["ZGMandokir"] = { - { 1, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "12.94%"}; - { 2, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "12.07%"}; - { 3, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "11.56%"}; - { 4, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "6.65%"}; - { 5, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "6.55%"}; - { 6, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "6.52%"}; - { 7, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "2.98%"}; - { 8, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "2.65%"}; - { 9, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "2.48%"}; - { 11, 22637, "", "=q3=Primal Hakkari Idol", "=ds=#m3#"}; - { 12, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "9.4%"}; - { 16, 19867, "", "=q4=Bloodlord's Defender", "=ds=#h1#, #w10#", "", "5.83%"}; - { 17, 19866, "", "=q4=Warblade of the Hakkari", "=ds=#h4#, #w10#", "", "3.96%"}; - { 18, 19874, "", "=q4=Halberd of Smiting", "=ds=#w7#", "", "6.35%"}; - { 19, 20038, "", "=q4=Mandokir's Sting", "=ds=#w2#", "", "5.96%"}; - { 20, 19872, "", "=q4=Swift Razzashi Raptor", "=ds=#e12#", "", "0.43%"}; - { 22, 19870, "", "=q3=Hakkari Loa Cloak", "=ds=#s4#", "", "12.54%"}; - { 23, 19895, "", "=q3=Bloodtinged Kilt", "=ds=#s11#, #a1#", "", "13.50%"}; - { 24, 19869, "", "=q3=Blooddrenched Grips", "=ds=#s9#, #a2#", "", "12.87%"}; - { 25, 19877, "", "=q3=Animist's Leggings", "=ds=#s11#, #a2#", "", "12.14%"}; - { 26, 19878, "", "=q3=Bloodsoaked Pauldrons", "=ds=#s9#, #a4#", "", "12.31%"}; - { 27, 19873, "", "=q3=Overlord's Crimson Band", "=ds=#s13#", "", "12.28%"}; - { 28, 19893, "", "=q3=Zanzil's Seal", "=ds=#s13#", "", "13.11%"}; - { 29, 19863, "", "=q3=Primalist's Seal", "=ds=#s13#", "", "12.32%"}; - }; - - AtlasLoot_Data["ZGEdgeofMadness"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Gri'lek"], ""}; - { 2, 19961, "", "=q3=Gri'lek's Grinder", "=ds=#h1#, #w6#", "", "43.90%"}; - { 3, 19962, "", "=q3=Gri'lek's Carver", "=ds=#h2#, #w1#", "", "41.99%"}; - { 4, 19939, "", "=q2=Gri'lek's Blood", "=ds=#m3#", "", "100%"}; - { 6, 0, "INV_Box_01", "=q6="..BabbleBoss["Hazza'rah"], ""}; - { 7, 19968, "", "=q3=Fiery Retributer", "=ds=#h1#, #w10#", "", "38.37%"}; - { 8, 19967, "", "=q3=Thoughtblighter", "=ds=#w12#", "", "45.49%"}; - { 9, 19942, "", "=q2=Hazza'rah's Dream Thread", "=ds=#m3#", "", "100%"}; - { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Renataki"], ""}; - { 17, 19964, "", "=q3=Renataki's Soul Conduit", "=ds=#h3#, #w10#", "", "40.06%"}; - { 18, 19963, "", "=q3=Pitchfork of Madness", "=ds=#w7#", "", "45.51%"}; - { 19, 19940, "", "=q2=Renataki's Tooth", "=ds=#m3#", "", "100%"}; - { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Wushoolay"], ""}; - { 22, 19965, "", "=q3=Wushoolay's Poker", "=ds=#h3#, #w4#", "", "45.21%"}; - { 23, 19993, "", "=q3=Hoodoo Hunting Bow", "=ds=#w2#", "", "40.96%"}; - { 24, 19941, "", "=q2=Wushoolay's Mane", "=ds=#m3#", "", "100%"}; - }; - - AtlasLoot_Data["ZGGahzranka"] = { - { 1, 19945, "", "=q4=Foror's Eyepatch", "=ds=#s1#, #a2#", "", "8,82%"}; - { 2, 19944, "", "=q4=Nat Pagle's Fish Terminator", "=ds=#w9#", "", "2.39%"}; - { 4, 19947, "", "=q3=Nat Pagle's Broken Reel", "=ds=#s14#", "", "28.20%"}; - { 5, 19946, "", "=q3=Tigule's Harpoon", "=ds=#w7#", "", "29.22%"}; - { 7, 22739, "", "=q3=Tome of Polymorph: Turtle", "=ds=#e10#, =q1=#m1# =ds=#c3#"}; - }; - - AtlasLoot_Data["ZGThekal"] = { - { 1, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", " 14.95%"}; - { 2, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", " 13.74%"}; - { 3, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", " 12.95%"}; - { 4, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", " 6.60%"}; - { 5, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", " 6.56%"}; - { 6, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", " 6.45%"}; - { 8, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.3%"}; - { 9, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; - { 16, 19897, "", "=q4=Betrayer's Boots", "=ds=#s12#, #a1#", "", "5.83%"}; - { 17, 19896, "", "=q4=Thekal's Grasp", "=ds=#h3#, #w13#", "", "4.23%"}; - { 18, 19902, "", "=q4=Swift Zulian Tiger", "=ds=#e12#", "", "0.70%"}; - { 20, 19898, "", "=q3=Seal of Jin", "=ds=#s13#", "", "13.65%"}; - { 21, 19899, "", "=q3=Ritualistic Legguards", "=ds=#s11#, #a1#", "", "13.41%"}; - { 22, 20260, "", "=q3=Seafury Leggings", "=ds=#s11#, #a3#", "", "4.30%"}; - { 23, 20266, "", "=q3=Peacekeeper Leggings", "=ds=#s11#, #a4#", "", "8.69%"}; - { 24, 19901, "", "=q3=Zulian Slicer", "=ds=#h1#, #w10#, =q1=#e18#", "", "13.36%"}; - }; - - AtlasLoot_Data["ZGArlokk"] = { - { 1, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "15.49%"}; - { 2, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "12.52%"}; - { 3, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "13.17%"}; - { 4, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "6.94%"}; - { 5, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "6.65%"}; - { 6, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "6.21%"}; - { 7, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.75%"}; - { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.60%"}; - { 9, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.41%"}; - { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "5.6%"}; - { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; - { 16, 19910, "", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#", "", "3.62%"}; - { 17, 19909, "", "=q4=Will of Arlokk", "=ds=#w9#", "", "5.14%"}; - { 19, 19913, "", "=q3=Bloodsoaked Greaves", "=ds=#s12#, #a4#", "", "13.29%"}; - { 20, 19912, "", "=q3=Overlord's Onyx Band", "=ds=#s13#", "", "13.95%"}; - { 21, 19922, "", "=q3=Arlokk's Hoodoo Stick", "=ds=#s15#", "", "13.66%"}; - { 22, 19914, "", "=q3=Panther Hide Sack", "=ds=#m14# #e1#", "", "14.03%"}; - }; - - AtlasLoot_Data["ZGJindo"] = { - { 1, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "13.56%"}; - { 2, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "13.48%"}; - { 3, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "12.09%"}; - { 4, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "7.30%"}; - { 5, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "6.37%"}; - { 6, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "6.10%"}; - { 7, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "2.85%"}; - { 8, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "2.70%"}; - { 9, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "2.36%"}; - { 11, 22637, "", "=q3=Primal Hakkari Idol", "=ds=#m3#"}; - { 12, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.4%"}; - { 16, 19885, "", "=q4=Jin'do's Evil Eye", "=ds=#s2#", "", "6.82%"}; - { 17, 19891, "", "=q4=Jin'do's Bag of Whammies", "=ds=#s15#", "", "7.70%"}; - { 18, 19890, "", "=q4=Jin'do's Hexxer", "=ds=#h3#, #w6#", "", "8.08%"}; - { 19, 19884, "", "=q4=Jin'do's Judgement", "=ds=#w9#", "", "8.36%"}; - { 21, 19888, "", "=q3=Overlord's Embrace", "=ds=#s4#", "", "12.72%"}; - { 22, 19886, "", "=q3=The Hexxer's Cover", "=ds=#s1#, #a1#", "", "12.11%"}; - { 23, 19929, "", "=q3=Bloodtinged Gloves", "=ds=#s9#, #a1#", "", "11.75%"}; - { 24, 19889, "", "=q3=Blooddrenched Leggings", "=ds=#s11#, #a2#", "", "11.97%"}; - { 25, 19892, "", "=q3=Animist's Boots", "=ds=#s12#, #a2#", "", "12.28%"}; - { 26, 19875, "", "=q3=Bloodstained Coif", "=ds=#s1#, #a3#", "", "13.73%"}; - { 27, 19887, "", "=q3=Bloodstained Legplates", "=ds=#s11#, #a3#", "", "11.11%"}; - { 28, 19894, "", "=q3=Bloodsoaked Gauntlets", "=ds=#s9#, #a4#", "", "12.93%"}; - }; - - AtlasLoot_Data["ZGHakkar"] = { - { 1, 19857, "", "=q4=Cloak of Consumption", "=ds=#s4#", "", "11.65%"}; - { 2, 20257, "", "=q4=Seafury Gauntlets", "=ds=#s9#, #a3#", "", "4.11%"}; - { 3, 20264, "", "=q4=Peacekeeper Gauntlets", "=ds=#s9#, #a4#", "", "7.37%"}; - { 4, 19855, "", "=q4=Bloodsoaked Legplates", "=ds=#s11#, #a4#", "", "10.52%"}; - { 5, 19876, "", "=q4=Soul Corrupter's Necklace", "=ds=#s2#", "", "10.11%"}; - { 6, 19856, "", "=q4=The Eye of Hakkar", "=ds=#s2#", "", "12.02%"}; - { 8, 19859, "", "=q4=Fang of the Faceless", "=ds=#h1#, #w4#", "", "7.33%"}; - { 9, 19864, "", "=q4=Bloodcaller", "=ds=#h3#, #w10#", "", "7.69%"}; - { 10, 19865, "", "=q4=Warblade of the Hakkari", "=ds=#h3#, #w10#", "", "3.67%"}; - { 11, 19854, "", "=q4=Zin'rokh, Destroyer of Worlds", "=ds=#h2#, #w10#", "", "6.78%"}; - { 12, 19852, "", "=q4=Ancient Hakkari Manslayer", "=ds=#h1#, #w1#", "", "6.62%"}; - { 13, 19862, "", "=q4=Aegis of the Blood God", "=ds=#w8#", "", "9.99%"}; - { 14, 19853, "", "=q4=Gurubashi Dwarf Destroyer", "=ds=#w5#", "", "6.12%"}; - { 15, 19861, "", "=q4=Touch of Chaos", "=ds=#w12#", "", "7.24%"}; - { 16, 19802, "", "=q4=Heart of Hakkar", "=ds=#m2#", "", "100%"}; - { 17, 19950, "", "=q4=Zandalarian Hero Charm", "=q1=#m4#: =ds=#s14#"}; - { 18, 19949, "", "=q4=Zandalarian Hero Medallion", "=q1=#m4#: =ds=#s14#"}; - { 19, 19948, "", "=q4=Zandalarian Hero Badge", "=q1=#m4#: =ds=#s14#"}; - { 21, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "34.3%"}; - }; - - AtlasLoot_Data["ZGMuddyChurningWaters"] = { - { 1, 19975, "", "=q1=Zulian Mudskunk", "=ds=#e21#"}; - }; - - AtlasLoot_Data["ZGShared"] = { - { 1, 22721, "", "=q4=Band of Servitude", "=ds=#s13#"}; - { 2, 22722, "", "=q4=Seal of the Gurubashi Berserker", "=ds=#s13#"}; - { 4, 22711, "", "=q3=Cloak of the Hakkari Worshipers", "=ds=#s4#"}; - { 5, 22712, "", "=q3=Might of the Tribe", "=ds=#s4#"}; - { 6, 22720, "", "=q3=Zulian Headdress", "=ds=#s1#, #a1#"}; - { 7, 22716, "", "=q3=Belt of Untapped Power", "=ds=#s10#, #a1#"}; - { 8, 22718, "", "=q3=Blooddrenched Mask", "=ds=#s1#, #a2#"}; - { 9, 22715, "", "=q3=Gloves of the Tormented", "=ds=#s9#, #a3#"}; - { 10, 22714, "", "=q3=Sacrificial Gauntlets", "=ds=#s9#, #a4#"}; - { 11, 22713, "", "=q3=Zulian Scepter of Rites", "=ds=#h3#, #w6#"}; - }; - - AtlasLoot_Data["ZGTrash1"] = { - { 1, 20259, "", "=q3=Shadow Panther Hide Gloves", "=ds=#s9#, #a2#"}; - { 2, 20261, "", "=q3=Shadow Panther Hide Belt", "=ds=#s10#, #a2#"}; - { 3, 20263, "", "=q3=Gurubashi Helm", "=ds=#s1#, #a4#"}; - { 4, 19908, "", "=q3=Sceptre of Smiting", "=ds=#h1#, #w6#"}; - { 5, 19921, "", "=q3=Zulian Hacker", "=ds=#h1#, #w1#"}; - { 6, 20258, "", "=q3=Zulian Ceremonial Staff", "=ds=#w9#"}; - { 7, 19727, "", "=q3=Blood Scythe", "=ds=#e19#", "", "0.02%"}; - { 8, 48126, "", "=q1=Razzashi Hatchling", "=ds=#e13#"}; - { 10, 19726, "", "=q2=Bloodvine", "=ds=#e8#", "", ""}; - { 11, 19774, "", "=q2=Souldarite", "=ds=#e8#", "", ""}; - { 12, 19767, "", "=q1=Primal Bat Leather", "=ds=#e8#", "", ""}; - { 13, 19768, "", "=q1=Primal Tiger Leather", "=ds=#e8#", "", ""}; - { 16, 19821, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c1#", "", "0.01%"}; - { 17, 19816, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c2#", "", "0.01%"}; - { 18, 19818, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c3#", "", "0.01%"}; - { 19, 19815, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c4#", "", "0.01%"}; - { 20, 19820, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c5#", "", "0.01%"}; - { 21, 19814, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c6#", "", "0.01%"}; - { 22, 19817, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c7#", "", "0.01%"}; - { 23, 19819, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c8#", "", "0.01%"}; - { 24, 19813, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c9#", "", "0.01%"}; - Next = "ZGTrash2"; - }; - - AtlasLoot_Data["ZGTrash2"] = { - { 1, 19708, "", "=q3=Blue Hakkari Bijou", "=ds=#e15#", "", "1.48%"}; - { 2, 19713, "", "=q3=Bronze Hakkari Bijou", "=ds=#e15#", "", "1.57%"}; - { 3, 19715, "", "=q3=Gold Hakkari Bijou", "=ds=#e15#", "", "1.63%"}; - { 4, 19711, "", "=q3=Green Hakkari Bijou", "=ds=#e15#", "", "1.67%"}; - { 5, 19710, "", "=q3=Orange Hakkari Bijou", "=ds=#e15#", "", "1.76%"}; - { 6, 19712, "", "=q3=Purple Hakkari Bijou", "=ds=#e15#", "", "1.67%"}; - { 7, 19707, "", "=q3=Red Hakkari Bijou", "=ds=#e15#", "", "1.63%"}; - { 8, 19714, "", "=q3=Silver Hakkari Bijou", "=ds=#e15#", "", "1.59%"}; - { 9, 19709, "", "=q3=Yellow Hakkari Bijou", "=ds=#e15#", "", "1.50%"}; - { 16, 19706, "", "=q2=Bloodscalp Coin", "=ds=#e15#", "", "3.01%"}; - { 17, 19701, "", "=q2=Gurubashi Coin", "=ds=#e15#", "", "3.12%"}; - { 18, 19700, "", "=q2=Hakkari Coin", "=ds=#e15#", "", "3.19%"}; - { 19, 19699, "", "=q2=Razzashi Coin", "=ds=#e15#", "", "3.36%"}; - { 20, 19704, "", "=q2=Sandfury Coin", "=ds=#e15#", "", "3.47%"}; - { 21, 19705, "", "=q2=Skullsplitter Coin", "=ds=#e15#", "", "3.32%"}; - { 22, 19702, "", "=q2=Vilebranch Coin", "=ds=#e15#", "", "3.27%"}; - { 23, 19703, "", "=q2=Witherbark Coin", "=ds=#e15#", "", "3.27%"}; - { 24, 19698, "", "=q2=Zulian Coin", "=ds=#e15#", "", "3.01%"}; - Prev = "ZGTrash1"; - }; - - AtlasLoot_Data["ZGEnchants"] = { - { 1, 19790, "", "=q3=Animist's Caress", "=q1=#m1# =ds=#c1#"}; - { 2, 19785, "", "=q3=Falcon's Call", "=q1=#m1# =ds=#c2#"}; - { 3, 19787, "", "=q3=Presence of Sight", "=q1=#m1# =ds=#c3#"}; - { 4, 19783, "", "=q3=Syncretist's Sigil", "=q1=#m1# =ds=#c4#"}; - { 5, 19789, "", "=q3=Prophetic Aura", "=q1=#m1# =ds=#c5#"}; - { 6, 19784, "", "=q3=Death's Embrace", "=q1=#m1# =ds=#c6#"}; - { 7, 19786, "", "=q3=Vodouisant's Vigilant Embrace", "=q1=#m1# =ds=#c7#"}; - { 8, 19788, "", "=q3=Hoodoo Hex", "=q1=#m1# =ds=#c8#"}; - { 9, 19782, "", "=q3=Presence of Might", "=q1=#m1# =ds=#c9#"}; - { 16, 20077, "", "=q3=Zandalar Signet of Might", "=ds=#s3# #e17#"}; - { 17, 20076, "", "=q3=Zandalar Signet of Mojo", "=ds=#s3# #e17#"}; - { 18, 20078, "", "=q3=Zandalar Signet of Serenity", "=ds=#s3# #e17#"}; - { 20, 22635, "", "=q3=Savage Guard", "=ds=#s1#/#s11# #e17#"}; - }; - ----------------- - --- Naxxramas --- - ----------------- - - AtlasLoot_Data["NAXPatchwerk"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "11.39%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22368, "", "=q4=Desecrated Shoulderpads", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "21.33%" }, - { 5, 22361, "", "=q4=Desecrated Spaulders", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "36.65%" }, - { 6, 22354, "", "=q4=Desecrated Pauldrons", "=q1=#m1# =ds=#c6#, #c9#","", "28.78%" }, - { 7, 0,"","","" }, - { 8, 22960, "", "=q4=Cloak of Suturing", "=ds=#s4#","", "12.84%" }, - { 9, 22815, "", "=q4=Severance", "=ds=#h2#, #w1#","", "16.15%" }, - { 10, 22820, "", "=q4=Wand of Fates", "=ds=#w12#","", "23.19%" }, - { 11, 22818, "", "=q4=The Plague Bearer", "=ds=#w8#","", "15.53%" }, - { 12, 22961, "", "=q4=Band of Reanimation", "=ds=#s13#","", "22.15%" }, - Next = "NAXGrobbulus"; - }; - - AtlasLoot_Data["NAXGrobbulus"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","","11.39%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22368, "", "=q4=Desecrated Shoulderpads", "=q1=#m1# =ds=#c8#, #c3#, #c5#","","33%" }, - { 5, 22361, "", "=q4=Desecrated Spaulders", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","","33%" }, - { 6, 22354, "", "=q4=Desecrated Pauldrons", "=q1=#m1# =ds=#c6#, #c9#","","33%" }, - { 7, 0,"","","" }, - { 8, 22968, "", "=q4=Glacial Mantle", "=ds=#s3#, #a1#", "", "20%" }, - { 9, 22967, "", "=q4=Icy Scale Spaulders", "=ds=#s3#, #a3#", "", "20%" }, - { 10, 22803, "", "=q4=Midnight Haze", "=ds=#h3#, #w4#", "", "20%" }, - { 11, 22988, "", "=q4=The End of Dreams", "=ds=#h3#, #w6#","","20%" }, - { 12, 22810, "", "=q4=Toxin Injector", "=ds=#w5#", "","20%" }, - Prev = "NAXPatchwerk"; - Next = "NAXGluth"; - }; - - AtlasLoot_Data["NAXGluth"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","","11.29%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22983, "", "=q4=Rime Covered Mantle", "=ds=#s3#, #a1#", "", "20%" }, - { 5, 22813, "", "=q4=Claymore of Unholy Might", "=ds=#h2#, #w10#", "","20%" }, - { 6, 23075, "", "=q4=Death's Bargain", "=ds=#w8#", "","20%" }, - { 7, 22994, "", "=q4=Digested Hand of Power", "=ds=#s15#","","20%"}, - { 8, 22981, "", "=q4=Gluth's Missing Collar", "=ds=#s2#","","20%" }, - { 9, 0,"","","" }, - { 10, 0,"","","" }, - { 11, 0,"","","" }, - { 12, 0,"","","" }, - { 13, 0,"","","" }, - { 14, 0,"","","" }, - { 15, 0,"","","" }, - { 16, 22368, "", "=q4=Desecrated Shoulderpads", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "8%" }, - { 17, 22361, "", "=q4=Desecrated Spaulders", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "8%" }, - { 18, 22354, "", "=q4=Desecrated Pauldrons", "=q1=#m1# =ds=#c6#, #c9#","", "8%" }, - { 19, 22369, "", "=q4=Desecrated Bindings", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "8%" }, - { 20, 22362, "", "=q4=Desecrated Wristguards", "=q1=#m1# =ds=#c4#, #c7#, #c2#, #c1#","", "8%" }, - { 21, 22355, "", "=q4=Desecrated Bracers", "=q1=#m1# =ds=#c9#, #c6#","", "8%" }, - { 22, 22370, "", "=q4=Desecrated Belt", "=q1=#m1# =ds=#c5#, #c3#, #c8#" }, - { 23, 22363, "", "=q4=Desecrated Girdle", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "8%" }, - { 24, 22356, "", "=q4=Desecrated Waistguard", "=q1=#m1# =ds=#c6#, #c9#","", "8%" }, - { 25, 22372, "", "=q4=Desecrated Sandals", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "8%" }, - { 26, 22365, "", "=q4=Desecrated Boots", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "8%" }, - { 27, 22358, "", "=q4=Desecrated Sabatons", "=q1=#m1# =ds=#c6#, #c9#","", "8%" }, - Prev = "NAXGrobbulus"; - Next = "NAXThaddius"; - }; - - AtlasLoot_Data["NAXThaddius"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","","11.39%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22367, "", "=q4=Desecrated Circlet", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "33%"}, - { 5, 22360, "", "=q4=Desecrated Headpiece", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#" ,"", "33%"}, - { 6, 22353, "", "=q4=Desecrated Helmet", "=q1=#m1# =ds=#c6#, #c9#","", "33%" }, - { 7, 0,"","","" }, - { 8, 23070, "", "=q4=Leggings of Polarity", "=ds=#s11#, #a1#" ,"", "20%"}, - { 9, 23000, "", "=q4=Plated Abomination Ribcage", "=ds=#s5#, #a4#","", "20%" }, - { 10, 22808, "", "=q4=The Castigator", "=ds=#h1#, #w6#" ,"", "20%"}, - { 11, 22801, "", "=q4=Spire of Twilight", "=ds=#w9#" ,"", "20%"}, - { 12, 23001, "", "=q4=Eye of Diminution", "=ds=#s14#" ,"", "20%"}, - Prev = "NAXGluth"; - Next = "NAXAnubRekhan"; - }; - - AtlasLoot_Data["NAXAnubRekhan"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "27.61%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22369, "", "=q4=Desecrated Bindings", "=q1=#m1# =ds=#c8#, #c3#, #c5#", "","28.57%" }, - { 5, 22362, "", "=q4=Desecrated Wristguards", "=q1=#m1# =ds=#c4#, #c7#, #c2#, #c1#","", "31.30%" }, - { 6, 22355, "", "=q4=Desecrated Bracers", "=q1=#m1# =ds=#c9#, #c6#", "", "29.53%" }, - { 7, 0,"","","" }, - { 8, 22938, "", "=q4=Cryptfiend Silk Cloak", "=ds=#s4#", "","20.39%" }, - { 9, 22936, "", "=q4=Wristguards of Vengeance", "=ds=#s8#, #a4#","", "16.85%" }, - { 10, 22937, "", "=q4=Gem of Nerubis", "=ds=#s15#","", "15.09%" }, - { 11, 22939, "", "=q4=Band of Unanswered Prayers", "=ds=#s13#","", "16.85%" }, - { 12, 22935, "", "=q4=Touch of Frost", "=ds=#s2#", "", "13.32%" }, - Prev = "NAXThaddius"; - Next = "NAXGrandWidowFaerlina"; - }; - - AtlasLoot_Data["NAXGrandWidowFearlina"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "19.01%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22369, "", "=q4=Desecrated Bindings", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "25.22%" }, - { 5, 22362, "", "=q4=Desecrated Wristguards", "=q1=#m1# =ds=#c4#, #c7#, #c2#, #c1#","", "24.59%" }, - { 6, 22355, "", "=q4=Desecrated Bracers", "=q1=#m1# =ds=#c9#, #c6#","", "35.74%" }, - { 7, 0,"","","" }, - { 8, 22941, "", "=q4=Polar Shoulder Pads", "=ds=#s3#, #a2#","", "14.96%" }, - { 9, 22940, "", "=q4=Icebane Pauldrons", "=ds=#s3#, #a4#","", "21.55%" }, - { 10, 22806, "", "=q4=Widow's Remorse", "=ds=#h1#, #w10#","", "14.45%" }, - { 11, 22942, "", "=q4=The Widow's Embrace", "=ds=#h3#, #w6#","", "21.67%" }, - { 12, 22943, "", "=q4=Malice Stone Pendant", "=ds=#s2#","", "17.49%" }, - Prev = "NAXAnubRekhan"; - Next = "NAXMaexxna"; - }; - - AtlasLoot_Data["NAXMaexxna"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "11.13%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22371, "", "=q4=Desecrated Gloves", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "33%" }, - { 5, 22364, "", "=q4=Desecrated Handguards", "=q1=#m1# =ds=#c4#, #c7#, #c2#, #c1#","", "33%" }, - { 6, 22357, "", "=q4=Desecrated Gauntlets", "=q1=#m1# =ds=#c9#, #c6#","", "33%" }, - { 7, 0,"","","" }, - { 8, 23220, "", "=q4=Crystal Webbed Robe", "=ds=#s5#, #a1#","", "11.34%" }, - { 9, 22804, "", "=q4=Maexxna's Fang", "=ds=#h1#, #w4#","", "18.05%" }, - { 10, 22807, "", "=q4=Wraith Blade", "=ds=#h3#, #w10#","", "14.25%" }, - { 11, 22947, "", "=q4=Pendant of Forgotten Names", "=ds=#s2#","", "31.88%" }, - { 12, 22954, "", "=q4=Kiss of the Spider", "=ds=#s14#","", "11.62%" }, - Prev = "NAXGrandWidowFearlina"; - Next = "NAXInstructorRAuvious"; - }; - - AtlasLoot_Data["NAXInstructorRAuvious"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "24.39%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22372, "", "=q4=Desecrated Sandals", "=q1=#m1# =ds=#c8#, #c3#, #c5#", "", "27.64%" }, - { 5, 22365, "", "=q4=Desecrated Boots", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "31.10%" }, - { 6, 22358, "", "=q4=Desecrated Sabatons", "=q1=#m1# =ds=#c6#, #c9#","", "26.02%" }, - { 7, 0,"","","" }, - { 8, 23017, "", "=q4=Veil of Eclipse", "=ds=#s4#","", "19.31%" }, - { 9, 23219, "", "=q4=Girdle of the Mentor", "=ds=#s10#, #a4#","", "8.74%" }, - { 10, 23014, "", "=q4=Iblis, Blade of the Fallen Seraph", "=ds=#h1#, #w10#","", "9.35%" }, - { 11, 23009, "", "=q4=Wand of the Whispering Dead", "=ds=#w12#","", "12.80%" }, - { 12, 23004, "", "=q4=Idol of Longevity", "=ds=#s16#, #w14#","", "17.68%" }, - { 13, 23018, "", "=q4=Signet of the Fallen Defender", "=ds=#s13#","", "19.31%" }, - Prev = "NAXMaexxna"; - Next = "NAXGothicderHarvester"; - }; - - AtlasLoot_Data["NAXGothicderHarvester"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "11.39%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22372, "", "=q4=Desecrated Sandals", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "33%" }, - { 5, 22365, "", "=q4=Desecrated Boots", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "33%" }, - { 6, 22358, "", "=q4=Desecrated Sabatons", "=q1=#m1# =ds=#c6#, #c9#","", "33%" }, - { 7, 0,"","","" }, - { 8, 23032, "", "=q4=Glacial Headdress", "=ds=#s1#, #a1#","", "20%" }, - { 9, 23021, "", "=q4=The Soul Harvester's Bindings", "=ds=#s8#, #a1#","", "20%" }, - { 10, 23020, "", "=q4=Polar Helmet", "=ds=#s1#, #a2#","", "20%" }, - { 11, 23073, "", "=q4=Boots of Displacement", "=ds=#s12#, #a2#","", "20%" }, - { 12, 23023, "", "=q4=Sadist's Collar", "=ds=#s2#","", "20%" }, - Prev = "NAXInstructorRAuvious"; - Next = "NAXTheFourHorsemen"; - }; - - AtlasLoot_Data["NAXTheFourHorsemen"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "11.39%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22351, "", "=q4=Desecrated Robe", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "33%" }, - { 5, 22350, "", "=q4=Desecrated Tunic", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "33%" }, - { 6, 22349, "", "=q4=Desecrated Breastplate", "=q1=#m1# =ds=#c6#, #c9#","", "33%" }, - { 7, 0,"","","" }, - { 8, 23071, "", "=q4=Leggings of Apocalypse", "=ds=#s11#, #a2#","", "20%" }, - { 9, 22809, "", "=q4=Maul of the Redeemed Crusader", "=ds=#h2#, #w6#","", "20%" }, - { 10, 22691, "", "=q4=Corrupted Ashbringer", "=ds=#h2#, #w10#","", "20%" }, - { 11, 22811, "", "=q4=Soulstring", "=ds=#w2#","", "20%" }, - { 12, 23025, "", "=q4=Seal of the Damned", "=ds=#s13#","", "20%" }, - { 13, 23027, "", "=q4=Warmth of Forgiveness", "=ds=#s14#","", "20%" }, - Prev = "NAXGothicderHarvester"; - Next = "NAXNothderPlaguebringer"; - }; - - AtlasLoot_Data["NAXNothderPlaguebringer"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "13.07%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22370, "", "=q4=Desecrated Belt", "=q1=#m1# =ds=#c5#, #c3#, #c8#","", "26.23%" }, - { 5, 22363, "", "=q4=Desecrated Girdle", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "32.67%" }, - { 6, 22356, "", "=q4=Desecrated Waistguard", "=q1=#m1# =ds=#c6#, #c9#","", "29.66%" }, - { 7, 0,"","","" }, - { 8, 23030, "", "=q4=Cloak of the Scourge", "=ds=#s4#","", "13.33%" }, - { 9, 22816, "", "=q4=Hatchet of Sundered Bone", "=ds=#h1#, #w1#","", "15.99%" }, - { 10, 23005, "", "=q4=Totem of Flowing Water", "=ds=#s16#, #w15#","", "3.01%" }, - { 11, 23006, "", "=q4=Libram of Light", "=ds=#s16#, #w16#","", "14.36%" }, - { 12, 23029, "", "=q4=Noth's Frigid Heart", "=ds=#s15#","", "11.09%" }, - { 13, 23031, "", "=q4=Band of the Inevitable", "=ds=#s13#","", "12.90%" }, - { 14, 23028, "", "=q4=Hailstone Band", "=ds=#s13#","", "13.59%" }, - Prev = "NAXTheFourHorsemen"; - Next = "NAXHeiganderUnclean"; - }; - - AtlasLoot_Data["NAXHeiganderUnclean"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "11.39%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22370, "", "=q4=Desecrated Belt", "=q1=#m1# =ds=#c5#, #c3#, #c8#","", "33%" }, - { 5, 22363, "", "=q4=Desecrated Girdle", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "33%" }, - { 6, 22356, "", "=q4=Desecrated Waistguard", "=q1=#m1# =ds=#c6#, #c9#","", "33%" }, - { 7, 0,"","","" }, - { 8, 23035, "", "=q4=Preceptor's Hat", "=ds=#s1#, #a1#","", "20%" }, - { 9, 23033, "", "=q4=Icy Scale Coif", "=ds=#s1#, #a3#","", "20%" }, - { 10, 23019, "", "=q4=Icebane Helmet", "=ds=#s1#, #a4#","", "20%" }, - { 11, 23068, "", "=q4=Legplates of Carnage", "=ds=#s11#, #a4#","", "20%" }, - { 12, 23036, "", "=q4=Necklace of Necropsy", "=ds=#s2#","", "20%" }, - Prev = "NAXNothderPlaguebringer"; - Next = "NAXLoatheb"; - }; - - AtlasLoot_Data["NAXLoatheb"] = { - { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "11.39%" }, - { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, - { 3, 0,"","","" }, - { 4, 22366, "", "=q4=Desecrated Leggings", "=q1=#m1# =ds=#c5#, #c3#, #c8#","", "33%" }, - { 5, 22359, "", "=q4=Desecrated Legguards", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#" ,"", "33%"}, - { 6, 22352, "", "=q4=Desecrated Legplates", "=q1=#m1# =ds=#c6#, #c9#","", "33%" }, - { 7, 0,"","","" }, - { 8, 23039, "", "=q4=The Eye of Nerub", "=ds=#w7#","", "20%" }, - { 9, 22800, "", "=q4=Brimstone Staff", "=ds=#w9#","", "20%" }, - { 10, 23037, "", "=q4=Ring of Spiritual Fervor", "=ds=#s13#","", "20%" }, - { 11, 23038, "", "=q4=Band of Unnatural Forces", "=ds=#s13#" ,"", "20%"}, - { 12, 23042, "", "=q4=Loatheb's Reflection", "=ds=#s14#","", "20%" }, - Prev = "NAXHeiganderUnclean"; - Next = "NAXSapphiron"; - }; - - AtlasLoot_Data["NAXSapphiron"] = { - { 1, 23050, "", "=q4=Cloak of the Necropolis", "=ds=#s4#" }, - { 2, 23045, "", "=q4=Shroud of Dominion", "=ds=#s4#" }, - { 3, 23072, "", "=q4=Fists of the Unrelenting", "=ds=#s9#, #a4#" }, - { 4, 23043, "", "=q4=The Face of Death", "=ds=#w8#" }, - { 5, 23242, "", "=q4=Claw of the Frost Wyrm", "=ds=#h4#, #w13#" }, - { 6, 23049, "", "=q4=Sapphiron's Left Eye", "=ds=#s15#" }, - { 7, 23048, "", "=q4=Sapphiron's Right Eye", "=ds=#s15#" }, - { 8, 23040, "", "=q4=Glyph of Deflection", "=ds=#s14#" }, - { 9, 23047, "", "=q4=Eye of the Dead", "=ds=#s14#" }, - { 10, 23046, "", "=q4=The Restrained Essence of Sapphiron", "=ds=#s14#" }, - { 11, 23041, "", "=q4=Slayer's Crest", "=ds=#s14#" }, - { 12, 0,"","","" }, - { 13, 0,"","","" }, - { 14, 0,"","","" }, - { 15, 0,"","","" }, - { 16, 23545, "", "=q4=Power of the Scourge", "=ds=#s3# #e17#" }, - { 17, 23547, "", "=q4=Resilience of the Scourge", "=ds=#s3# #e17#" }, - { 18, 23549, "", "=q4=Fortitude of the Scourge", "=ds=#s3# #e17#" }, - { 19, 23548, "", "=q4=Might of the Scourge", "=ds=#s3# #e17#" }, - Prev = "NAXLoatheb"; - Next = "NAXKelThuzad"; - }; - - AtlasLoot_Data["NAXKelThuzad"] = { - { 1, 22802, "", "=q4=Kingsfall", "=ds=#h1#, #w4#" }, - { 2, 23054, "", "=q4=Gressil, Dawn of Ruin", "=ds=#h1#, #w10#" }, - { 3, 23577, "", "=q4=The Hungering Cold", "=ds=#h1#, #w10#" }, - { 4, 23056, "", "=q4=Hammer of the Twisting Nether", "=ds=#h1#, #w6#" }, - { 5, 22798, "", "=q4=Might of Menethil", "=ds=#h2#, #w6#" }, - { 6, 22799, "", "=q4=Soulseeker", "=ds=#w9#" }, - { 7, 22821, "", "=q4=Doomfinger", "=ds=#w12#" }, - { 8, 22812, "", "=q4=Nerubian Slavemaker", "=ds=#w3#" }, - { 9, 22819, "", "=q4=Shield of Condemnation", "=ds=#w8#" }, - { 10, 23057, "", "=q4=Gem of Trapped Innocents", "=ds=#s2#" }, - { 11, 23053, "", "=q4=Stormrage's Talisman of Seething", "=ds=#s2#" }, - { 12, 0,"","","" }, - { 13, 22520, "", "=q4=The Phylactery of Kel'Thuzad", "=ds=#m2#", "100%" }, - { 14, 23207, "", "=q4=Mark of the Champion", "=q1=#m4# =ds=#s14#" }, - { 15, 23206, "", "=q4=Mark of the Champion", "=q1=#m4# =ds=#s14#" }, - { 16, 23064, "", "=q4=Ring of the Dreamwalker", "=ds=#s13# =q1=#m1# =ds=#c1#" }, - { 17, 23067, "", "=q4=Ring of the Cryptstalker", "=ds=#s13# =q1=#m1# =ds=#c2#" }, - { 18, 23062, "", "=q4=Frostfire Ring", "=ds=#s13# =q1=#m1# =ds=#c3#" }, - { 19, 23066, "", "=q4=Ring of Redemption", "=ds=#s13# =q1=#m1# =ds=#c4#" }, - { 20, 23061, "", "=q4=Ring of Faith", "=ds=#s13# =q1=#m1# =ds=#c5#" }, - { 21, 23060, "", "=q4=Bonescythe Ring", "=ds=#s13# =q1=#m1# =ds=#c6#" }, - { 22, 23065, "", "=q4=Ring of the Earthshatterer", "=ds=#s13# =q1=#m1# =ds=#c7#" }, - { 23, 23063, "", "=q4=Plagueheart Ring", "=ds=#s13# =q1=#m1# =ds=#c8#" }, - { 24, 23059, "", "=q4=Ring of the Dreadnaught", "=ds=#s13# =q1=#m1# =ds=#c9#" }, - { 25, 0,"","","" }, - { 26, 22733, "", "=q1=Staff Head of Atiesh", "=ds=#m3#" }, - { 27, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#"}, - { 28, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#"}, - { 29, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#"}, - { 30, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#"}, - Prev = "NAXSapphiron"; - }; - - AtlasLoot_Data["NAXTrash"] = { - { 1, 23069, "", "=q4=Necro-Knight's Garb", "=ds=#s5#, #a1# =q1=#m1# =ds=#c5#, #c3#, #c8#" }, - { 2, 23226, "", "=q4=Ghoul Skin Tunic", "=ds=#s5#, #a2#" }, - { 3, 23663, "", "=q4=Girdle of Elemental Fury", "=ds=#s10#, #a3#" }, - { 4, 23664, "", "=q4=Pauldrons of Elemental Fury", "=ds=#s3#, #a3# =q1=#m1# =ds=#c7#" }, - { 5, 23665, "", "=q4=Leggings of Elemental Fury", "=ds=#s11#, #a3# =q1=#m1# =ds=#c7#" }, - { 6, 23666, "", "=q4=Belt of the Grand Crusader", "=ds=#s10#, #a4# =q1=#m1# =ds=#c4#" }, - { 7, 23667, "", "=q4=Spaulders of the Grand Crusader", "=ds=#s3#, #a4# =q1=#m1# =ds=#c4#" }, - { 8, 23668, "", "=q4=Leggings of the Grand Crusader", "=ds=#s11#, #a4# =q1=#m1# =ds=#c4#" }, - { 9, 23044, "", "=q4=Harbinger of Doom", "=ds=#h1#, #w4#" }, - { 10, 23221, "", "=q4=Misplaced Servo Arm", "=ds=#h1# #w6#" }, - { 11, 23238, "", "=q4=Stygian Buckler", "=ds=#w8#" }, - { 12, 23237, "", "=q4=Ring of the Eternal Flame", "=ds=#s13#" }, - { 13, 0,"","","" }, - { 14, 0,"","","" }, - { 15, 0,"","","" }, - { 16, 22376, "", "=q3=Wartorn Cloth Scrap", "=ds=#m3#" }, - { 17, 22373, "", "=q3=Wartorn Leather Scrap", "=ds=#m3#" }, - { 18, 22374, "", "=q3=Wartorn Chain Scrap", "=ds=#m3#" }, - { 19, 22375, "", "=q3=Wartorn Plate Scrap", "=ds=#m3#" }, - { 20, 0,"","","" }, - { 21, 22708, "", "=q1=Fate of Ramaladni", "=ds=#m3#" }, - { 22, 23055, "", "=q1=Word of Thawing", "=ds=#m20#" }, - }; - - --------------------- - --- Onyxia's Lair 60 --- - --------------------- - - AtlasLoot_Data["Onyxia60"] = { - { 1, 16914, "", "=q4=Netherwind Crown", "=q1=#m1# =ds=#c3# (T2)", "","14.09%" }, - { 2, 16921, "", "=q4=Halo of Transcendence", "=q1=#m1# =ds=#c5# (T2)", "","13.39%" }, - { 3, 16929, "", "=q4=Nemesis Skullcap", "=q1=#m1# =ds=#c8# (T2)","", "13.54%" }, - { 4, 16900, "", "=q4=Stormrage Cover", "=q1=#m1# =ds=#c1# (T2)","", "13.08%" }, - { 5, 16908, "", "=q4=Bloodfang Hood", "=q1=#m1# =ds=#c6# (T2)", "","13.21%" }, - { 6, 16939, "", "=q4=Dragonstalker's Helm", "=q1=#m1# =ds=#c2# (T2)", "","13.91%" }, - { 7, 16947, "", "=q4=Helmet of Ten Storms", "=q1=#m1# =ds=#c7# (T2)", "","4.86%" }, - { 8, 16963, "", "=q4=Helm of Wrath", "=q1=#m1# =ds=#c9# (T2)","", "13.65%" }, - { 9, 16955, "", "=q4=Judgement Crown", "=q1=#m1# =ds=#c4# (T2)", "","8.64%" }, - { 10, 0,"","","" }, - { 11, 18705, "", "=q4=Mature Black Dragon Sinew", "=ds=#m3# =q1=#m1# =ds=#c2#", "","24.53%" }, - { 12, 18713, "", "=q4=Rhok'delar, Longbow of the Ancient Keepers", "=q1=#m4#: =ds=#w2#, =q1=#m1# =ds=#c2#" }, - { 13, 0,"","","" }, - { 14, 15410, "","=q3=Scale of Onyxia", "=ds=#e8#" }, - { 15, 0,"","","" }, - { 16, 17078, "", "=q4=Sapphiron Drape", "=ds=#s4#","", "15.28%" }, - { 17, 18205, "", "=q4=Eskhandar's Collar", "=ds=#s2#","", "14.88%" }, - { 18, 18813, "", "=q4=Ring of Binding", "=ds=#s13#", "","16.28%" }, - { 19, 17064, "", "=q4=Shard of the Scale", "=ds=#s14#","", "4.08%" }, - { 20, 17067, "", "=q4=Ancient Cornerstone Grimoire", "=ds=#s15#","", "16.07%" }, - { 21, 17075, "", "=q4=Vis'kag the Bloodletter", "=ds=#h1#, #w10#","", "4.00%" }, - { 22, 17068, "", "=q4=Deathbringer","=ds=#h1#, #w1#","", "4.31%" }, - { 23, 0,"","","" }, - { 24, 17966, "", "=q2=Onyxia Hide Backpack", "=ds=#m14# #e1#","", "100%"}, - { 25, 0,"","","" }, - { 26, 18423, "", "=q4=Head of Onyxia","=ds=#m2#","", "100%" }, - { 27, 18404, "", "=q4=Onyxia Tooth Pendant", "=q1=#m4#: =ds=#s2#" }, - { 28, 18403, "", "=q4=Dragonslayer's Signet", "=q1=#m4#: =ds=#s13#" }, - { 29, 18406, "", "=q4=Onyxia Blood Talisman", "=q1=#m4#: =ds=#s14#" }, - }; - - -------------------------- - --- Sets & Collections --- - -------------------------- - - ------------------------------------ - --- Dungeon 1 and 2 Sets (D1/D2) --- - ------------------------------------ - - AtlasLoot_Data["T0Druid"] = { - { 1, 0, "Spell_Nature_Regeneration", "=q6=#t0s1#", "=ec1=#j6#"}; - { 2, 16720, "", "=q3=Wildheart Cowl", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "7.09%"}; - { 3, 16718, "", "=q3=Wildheart Spaulders", "=ds="..BabbleBoss["Gizrul the Slavener"].." ("..AL["LBRS"]..")", "", "11.04%"}; - { 4, 16706, "", "=q3=Wildheart Vest", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "7.36%"}; - { 5, 16714, "", "=q3=Wildheart Bracers", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.85%"}; - { 6, 16717, "", "=q3=Wildheart Gloves", "=ds="..BabbleBoss["The Unforgiven"].." ("..AL["Strat"]..")", "", "12.61%"}; - { 7, 16716, "", "=q3=Wildheart Belt", "=ds="..AL["Trash Mobs"].." ("..AL["Scholo"]..")", "", "2.60%"}; - { 8, 16719, "", "=q3=Wildheart Kilt", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "6.58%"}; - { 9, 16715, "", "=q3=Wildheart Boots", "=ds="..BabbleBoss["Mother Smolderweb"].." ("..AL["LBRS"]..")", "", "13.03%"}; - { 16, 0, "Spell_Nature_Regeneration", "=q6=#t05s1#", "=ec1=#j7#"}; - { 17, 22109, "", "=q4=Feralheart Cowl", "=ds=#a2#, #s1#"}; - { 18, 22112, "", "=q3=Feralheart Spaulders", "=ds=#a2#, #s3#"}; - { 19, 22113, "", "=q4=Feralheart Vest", "=ds=#a2#, #s5#"}; - { 20, 22108, "", "=q3=Feralheart Bracers", "=ds=#a2#, #s8#"}; - { 21, 22110, "", "=q4=Feralheart Gloves", "=ds=#a2#, #s9#"}; - { 22, 22106, "", "=q3=Feralheart Belt", "=ds=#a2#, #s10#"}; - { 23, 22111, "", "=q3=Feralheart Kilt", "=ds=#a2#, #s11#"}; - { 24, 22107, "", "=q4=Feralheart Boots", "=ds=#a2#, #s12#"}; - Next = "T1T2Druid"; - Back = "T0SET"; - }; - - AtlasLoot_Data["T0Hunter"] = { - { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t0s2#", "=ec1=#j6#"}; - { 2, 16677, "", "=q3=Beaststalker's Cap", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "7.00%"}; - { 3, 16679, "", "=q3=Beaststalker's Mantle", "=ds="..BabbleBoss["Overlord Wyrmthalak"].." ("..AL["LBRS"]..")", "", "9.89%"}; - { 4, 16674, "", "=q3=Beaststalker's Tunic", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "6.81%"}; - { 5, 16681, "", "=q3=Beaststalker's Bindings", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.64%"}; - { 6, 16676, "", "=q3=Beaststalker's Gloves", "=ds="..BabbleBoss["War Master Voone"].." ("..AL["LBRS"]..")", "", "9.15%"}; - { 7, 16680, "", "=q3=Beaststalker's Belt", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.36%"}; - { 8, 16678, "", "=q3=Beaststalker's Pants", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "6.16%"}; - { 9, 16675, "", "=q3=Beaststalker's Boots", "=ds="..BabbleBoss["Nerub'enkan"].." ("..AL["Strat"]..")", "", "13.62%"}; - { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t05s2#", "=ec1=#j7#"}; - { 17, 22013, "", "=q4=Beastmaster's Cap", "=ds=#a3#, #s1#"}; - { 18, 22016, "", "=q3=Beastmaster's Mantle", "=ds=#a3#, #s3#"}; - { 19, 22060, "", "=q4=Beastmaster's Tunic", "=ds=#a3#, #s5#"}; - { 20, 22011, "", "=q3=Beastmaster's Bindings", "=ds=#a3#, #s8#"}; - { 21, 22015, "", "=q4=Beastmaster's Gloves", "=ds=#a3#, #s9#"}; - { 22, 22010, "", "=q3=Beastmaster's Belt", "=ds=#a3#, #s10#"}; - { 23, 22017, "", "=q3=Beastmaster's Pants", "=ds=#a3#, #s11#"}; - { 24, 22061, "", "=q4=Beastmaster's Boots", "=ds=#a3#, #s12#"}; - Next = "T1T2Hunter"; - Back = "T0SET"; - }; - - AtlasLoot_Data["T0Mage"] = { - { 1, 0, "Spell_Frost_IceStorm", "=q6=#t0s3#", "=ec1=#j6#"}; - { 2, 16686, "", "=q3=Magister's Crown", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "8.60%"}; - { 3, 16689, "", "=q3=Magister's Mantle", "=ds="..BabbleBoss["Ras Frostwhisper"].." ("..AL["Scholo"]..")", "", "11.93%"}; - { 4, 16688, "", "=q3=Magister's Robes", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "7.24%"}; - { 5, 16683, "", "=q3=Magister's Bindings", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.19%"}; - { 6, 16684, "", "=q3=Magister's Gloves", "=ds="..BabbleBoss["Doctor Theolen Krastinov"].." ("..AL["Scholo"]..")", "", "9.75%"}; - { 7, 16685, "", "=q3=Magister's Belt", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.32%"}; - { 8, 16687, "", "=q3=Magister's Leggings", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "6.79%"}; - { 9, 16682, "", "=q3=Magister's Boots", "=ds="..BabbleBoss["Hearthsinger Forresten"].." ("..AL["Strat"]..")", "", "10.86%"}; - { 16, 0, "Spell_Frost_IceStorm", "=q6=#t05s3#", "=ec1=#j7#"}; - { 17, 22065, "", "=q4=Sorcerer's Crown", "=ds=#a1#, #s1#"}; - { 18, 22068, "", "=q3=Sorcerer's Mantle", "=ds=#a1#, #s3#"}; - { 19, 22069, "", "=q4=Sorcerer's Robes", "=ds=#a1#, #s5#"}; - { 20, 22063, "", "=q3=Sorcerer's Bindings", "=ds=#a1#, #s8#"}; - { 21, 22066, "", "=q4=Sorcerer's Gloves", "=ds=#a1#, #s9#"}; - { 22, 22062, "", "=q3=Sorcerer's Belt", "=ds=#a1#, #s10#"}; - { 23, 22067, "", "=q3=Sorcerer's Leggings", "=ds=#a1#, #s11#"}; - { 24, 22064, "", "=q4=Sorcerer's Boots", "=ds=#a1#, #s12#"}; - Next = "T1T2Mage"; - Back = "T0SET"; - }; - - AtlasLoot_Data["T0Paladin"] = { - { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t0s4#", "=ec1=#j6#"}; - { 2, 16727, "", "=q3=Lightforge Helm", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "5.32%"}; - { 3, 16729, "", "=q3=Lightforge Spaulders", "=ds="..BabbleBoss["The Beast"].." ("..AL["UBRS"]..")", "", "13.62%"}; - { 4, 16726, "", "=q3=Lightforge Breastplate", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "3.76%"}; - { 5, 16722, "", "=q3=Lightforge Bracers", "=ds="..AL["Trash Mobs"].." ("..AL["Scholo"]..")", "", "3.37%"}; - { 6, 16724, "", "=q3=Lightforge Gauntlets", "=ds="..BabbleBoss["Timmy the Cruel"].." ("..AL["Strat"]..")", "", "10.42%"}; - { 7, 16723, "", "=q3=Lightforge Belt", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.93%"}; - { 8, 16728, "", "=q3=Lightforge Legplates", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "4.20%"}; - { 9, 16725, "", "=q3=Lightforge Boots", "=ds="..BabbleBoss["Balnazzar"].." ("..AL["Strat"]..")", "", "11.11%"}; - { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t05s4#", "=ec1=#j7#"}; - { 17, 22091, "", "=q4=Soulforge Helm", "=ds=#a4#, #s1#"}; - { 18, 22093, "", "=q3=Soulforge Spaulders", "=ds=#a4#, #s3#"}; - { 19, 22089, "", "=q4=Soulforge Breastplate", "=ds=#a4#, #s5#"}; - { 20, 22088, "", "=q3=Soulforge Bracers", "=ds=#a4#, #s8#"}; - { 21, 22090, "", "=q4=Soulforge Gauntlets", "=ds=#a4#, #s9#"}; - { 22, 22086, "", "=q3=Soulforge Belt", "=ds=#a4#, #s10#"}; - { 23, 22092, "", "=q3=Soulforge Legplates", "=ds=#a4#, #s11#"}; - { 24, 22087, "", "=q4=Soulforge Boots", "=ds=#a4#, #s12#"}; - Next = "T1T2Paladin"; - Back = "T0SET"; - }; - - AtlasLoot_Data["T0Priest"] = { - { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t0s5#", "=ec1=#j6#"}; - { 2, 16693, "", "=q3=Devout Crown", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "7.89%"}; - { 3, 16695, "", "=q3=Devout Mantle", "=ds="..BabbleBoss["Solakar Flamewreath"].." ("..AL["UBRS"]..")", "", "12.84%"}; - { 4, 16690, "", "=q3=Devout Robe", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "6.20%"}; - { 5, 16697, "", "=q3=Devout Bracers", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.13%"}; - { 6, 16692, "", "=q3=Devout Gloves", "=ds="..BabbleBoss["Archivist Galford"].." ("..AL["Strat"]..")", "", "12.46%"}; - { 7, 16696, "", "=q3=Devout Belt", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "2.07%"}; - { 8, 16694, "", "=q3=Devout Skirt", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "7.42%"}; - { 9, 16691, "", "=q3=Devout Sandals", "=ds="..BabbleBoss["Maleki the Pallid"].." ("..AL["Strat"]..")", "", "13.64%"}; - { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t05s5#", "=ec1=#j7#"}; - { 17, 22080, "", "=q4=Virtuous Crown", "=ds=#a1#, #s1#"}; - { 18, 22082, "", "=q3=Virtuous Mantle", "=ds=#a1#, #s3#"}; - { 19, 22083, "", "=q4=Virtuous Robe", "=ds=#a1#, #s5#"}; - { 20, 22079, "", "=q3=Virtuous Bracers", "=ds=#a1#, #s8#"}; - { 21, 22081, "", "=q4=Virtuous Gloves", "=ds=#a1#, #s9#"}; - { 22, 22078, "", "=q3=Virtuous Belt", "=ds=#a1#, #s10#"}; - { 23, 22085, "", "=q3=Virtuous Skirt", "=ds=#a1#, #s11#"}; - { 24, 22084, "", "=q4=Virtuous Sandals", "=ds=#a1#, #s12#"}; - Next = "T1T2Priest"; - Back = "T0SET"; - }; - - AtlasLoot_Data["T0Rogue"] = { - { 1, 0, "Ability_BackStab", "=q6=#t0s6#", "=ec1=#j6#"}; - { 2, 16707, "", "=q3=Shadowcraft Cap", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "6.65%"}; - { 3, 16708, "", "=q3=Shadowcraft Spaulders", "=ds="..BabbleBoss["Cannon Master Willey"].." ("..AL["Strat"]..")", "", "10.68%"}; - { 4, 16721, "", "=q3=Shadowcraft Tunic", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "6.09%"}; - { 5, 16710, "", "=q3=Shadowcraft Bracers", "=ds="..AL["Trash Mobs"].." ("..AL["Scholo"]..")", "", "3.51%"}; - { 6, 16712, "", "=q3=Shadowcraft Gloves", "=ds="..BabbleBoss["Shadow Hunter Vosh'gajin"].." ("..AL["LBRS"]..")", "", "11.89%"}; - { 7, 16713, "", "=q3=Shadowcraft Belt", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.05%"}; - { 8, 16709, "", "=q3=Shadowcraft Pants", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "7.76%"}; - { 9, 16711, "", "=q3=Shadowcraft Boots", "=ds="..BabbleBoss["Rattlegore"].." ("..AL["Scholo"]..")", "", "14.32%"}; - { 16, 0, "Ability_BackStab", "=q6=#t05s6#", "=ec1=#j7#"}; - { 17, 22005, "", "=q4=Darkmantle Cap", "=ds=#a2#, #s1#"}; - { 18, 22008, "", "=q3=Darkmantle Spaulders", "=ds=#a2#, #s3#"}; - { 19, 22009, "", "=q4=Darkmantle Tunic", "=ds=#a2#, #s5#"}; - { 20, 22004, "", "=q3=Darkmantle Bracers", "=ds=#a2#, #s8#"}; - { 21, 22006, "", "=q4=Darkmantle Gloves", "=ds=#a2#, #s9#"}; - { 22, 22002, "", "=q3=Darkmantle Belt", "=ds=#a2#, #s10#"}; - { 23, 22007, "", "=q3=Darkmantle Pants", "=ds=#a2#, #s11#"}; - { 24, 22003, "", "=q4=Darkmantle Boots", "=ds=#a2#, #s12#"}; - Next = "T1T2Rogue"; - Back = "T0SET"; - }; - - AtlasLoot_Data["T0Shaman"] = { - { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t0s7#", "=ec1=#j6#"}; - { 2, 16667, "", "=q3=Coif of Elements", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "2.86%"}; - { 3, 16669, "", "=q3=Pauldrons of Elements", "=ds="..BabbleBoss["Gyth"].." ("..AL["UBRS"]..")", "", "14.77%"}; - { 4, 16666, "", "=q3=Vest of Elements", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "3.03%"}; - { 5, 16671, "", "=q3=Bindings of Elements", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.59%"}; - { 6, 16672, "", "=q3=Gauntlets of Elements", "=ds="..BabbleBoss["Pyroguard Emberseer"].." ("..AL["UBRS"]..")", "", "14.23%"}; - { 7, 16673, "", "=q3=Cord of Elements", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.06%"}; - { 8, 16668, "", "=q3=Kilt of Elements", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "3.02%"}; - { 9, 16670, "", "=q3=Boots of Elements", "=ds="..BabbleBoss["Highlord Omokk"].." ("..AL["LBRS"]..")", "", "9.35%"}; - { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t05s7#", "=ec1=#j7#"}; - { 17, 22097, "", "=q4=Coif of The Five Thunders", "=ds=#a3#, #s1#"}; - { 18, 22101, "", "=q3=Pauldrons of The Five Thunders", "=ds=#a3#, #s3#"}; - { 19, 22102, "", "=q4=Vest of The Five Thunders", "=ds=#a3#, #s5#"}; - { 20, 22095, "", "=q3=Bindings of The Five Thunders", "=ds=#a3#, #s8#"}; - { 21, 22099, "", "=q4=Gauntlets of The Five Thunders", "=ds=#a3#, #s9#"}; - { 22, 22098, "", "=q3=Cord of The Five Thunders", "=ds=#a3#, #s10#"}; - { 23, 22100, "", "=q3=Kilt of The Five Thunders", "=ds=#a3#, #s11#"}; - { 24, 22096, "", "=q4=Boots of The Five Thunders", "=ds=#a3#, #s12#"}; - Next = "T1T2Shaman"; - Back = "T0SET"; - }; - - AtlasLoot_Data["T0Warlock"] = { - { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t0s8#", "=ec1=#j6#"}; - { 2, 16698, "", "=q3=Dreadmist Mask", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "8.78%"}; - { 3, 16701, "", "=q3=Dreadmist Mantle", "=ds="..BabbleBoss["Jandice Barov"].." ("..AL["Scholo"]..")", "", "12.20%"}; - { 4, 16700, "", "=q3=Dreadmist Robe", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "8.04%"}; - { 5, 16703, "", "=q3=Dreadmist Bracers", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.68%"}; - { 6, 16705, "", "=q3=Dreadmist Wraps", "=ds="..BabbleBoss["Lorekeeper Polkelt"].." ("..AL["Scholo"]..")", "", "14.54%"}; - { 7, 16702, "", "=q3=Dreadmist Belt", "=ds="..AL["Trash Mobs"].." ("..AL["Strat"]..")", "", "1.03%"}; - { 8, 16699, "", "=q3=Dreadmist Leggings", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "7.31%"}; - { 9, 16704, "", "=q3=Dreadmist Sandals", "=ds="..BabbleBoss["Baroness Anastari"].." ("..AL["Strat"]..")", "", "13.16%"}; - { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t05s8#", "=ec1=#j7#"}; - { 17, 22074, "", "=q4=Deathmist Mask", "=ds=#a1#, #s1#"}; - { 18, 22073, "", "=q3=Deathmist Mantle", "=ds=#a1#, #s5#"}; - { 19, 22075, "", "=q4=Deathmist Robe", "=ds=#a1#, #s3#"}; - { 20, 22071, "", "=q3=Deathmist Bracers", "=ds=#a1#, #s8#"}; - { 21, 22077, "", "=q4=Deathmist Wraps", "=ds=#a1#, #s9#"}; - { 22, 22070, "", "=q3=Deathmist Belt", "=ds=#a1#, #s10#"}; - { 23, 22072, "", "=q3=Deathmist Leggings", "=ds=#a1#, #s11#"}; - { 24, 22076, "", "=q4=Deathmist Sandals", "=ds=#a1#, #s12#"}; - Next = "T1T2Warlock"; - Back = "T0SET"; - }; - - AtlasLoot_Data["T0Warrior"] = { - { 1, 0, "INV_Shield_05", "=q6=#t0s9#", "=ec1=#j6#"}; - { 2, 16731, "", "=q3=Helm of Valor", "=ds="..BabbleBoss["Darkmaster Gandling"].." ("..AL["Scholo"]..")", "", "6.54%"}; - { 3, 16733, "", "=q3=Spaulders of Valor", "=ds="..BabbleBoss["Warchief Rend Blackhand"].." ("..AL["UBRS"]..")", "", "13.39%"}; - { 4, 16730, "", "=q3=Breastplate of Valor", "=ds="..BabbleBoss["General Drakkisath"].." ("..AL["UBRS"]..")", "", "5.83%"}; - { 5, 16735, "", "=q3=Bracers of Valor", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.49%"}; - { 6, 16737, "", "=q3=Gauntlets of Valor", "=ds="..BabbleBoss["Ramstein the Gorger"].." ("..AL["Strat"]..")", "", "9.58%"}; - { 7, 16736, "", "=q3=Belt of Valor", "=ds="..AL["Trash Mobs"].." ("..AL["LBRS"]..")", "", "1.96%"}; - { 8, 16732, "", "=q3=Legplates of Valor", "=ds="..BabbleBoss["Baron Rivendare"].." ("..AL["Strat"]..")", "", "5.74%"}; - { 9, 16734, "", "=q3=Boots of Valor", "=ds="..BabbleBoss["Kirtonos the Herald"].." ("..AL["Scholo"]..")", "", "11.12%"}; - { 16, 0, "INV_Shield_05", "=q6=#t05s9#", "=ec1=#j7#"}; - { 17, 21999, "", "=q4=Helm of Heroism", "=ds=#a4#, #s1#"}; - { 18, 22001, "", "=q3=Spaulders of Heroism", "=ds=#a4#, #s3#"}; - { 19, 21997, "", "=q4=Breastplate of Heroism", "=ds=#a4#, #s5#"}; - { 20, 21996, "", "=q3=Bracers of Heroism", "=ds=#a4#, #s8#"}; - { 21, 21998, "", "=q4=Gauntlets of Heroism", "=ds=#a4#, #s9#"}; - { 22, 21994, "", "=q3=Belt of Heroism", "=ds=#a4#, #s10#"}; - { 23, 22000, "", "=q3=Legplates of Heroism", "=ds=#a4#, #s11#"}; - { 24, 21995, "", "=q4=Boots of Heroism", "=ds=#a4#, #s12#"}; - Next = "T1T2Warrior"; - Back = "T0SET"; - }; - - ----------------------------- - --- Tier 1/2 Sets (T1/T2) --- - ----------------------------- - - AtlasLoot_Data["T1T2Druid"] = { - { 1, 0, "Spell_Nature_Regeneration", "=q6=#t1s1#", "=ec1=#m30#"}; - { 2, 16834, "", "=q4=Cenarion Helm", "=ds="..BabbleBoss["Garr"], "", "11.51%"}; - { 3, 16836, "", "=q4=Cenarion Spaulders", "=ds="..BabbleBoss["Baron Geddon"], "", "19.52%"}; - { 4, 16833, "", "=q4=Cenarion Vestments", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.21%"}; - { 5, 16830, "", "=q4=Cenarion Bracers", "=ds="..AL["Trash Mobs"], "", "0.17%"}; - { 6, 16831, "", "=q4=Cenarion Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "19.53%"}; - { 7, 16828, "", "=q4=Cenarion Belt", "=ds="..AL["Trash Mobs"], "", "0.16%"}; - { 8, 16835, "", "=q4=Cenarion Leggings", "=ds="..BabbleBoss["Magmadar"], "", "12.90%"}; - { 9, 16829, "", "=q4=Cenarion Boots", "=ds="..BabbleBoss["Lucifron"], "", "10.72%"}; - { 16, 0, "Spell_Nature_Regeneration", "=q6=#t2s1#", "=ec1=#m31#"}; - { 17, 16900, "", "=q4=Stormrage Cover", "=ds="..BabbleBoss["Nefarian"], "", "13.08%"}; - { 18, 16902, "", "=q4=Stormrage Pauldrons", "=ds="..BabbleBoss["Chromaggus"], "", "14.63%"}; - { 19, 16897, "", "=q4=Stormrage Chestguard", "=ds="..BabbleBoss["Nefarian"], "", "11.89%"}; - { 20, 16904, "", "=q4=Stormrage Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "17.38%"}; - { 21, 16899, "", "=q4=Stormrage Handguards", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.34%"}; - { 22, 16903, "", "=q4=Stormrage Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "16.90%"}; - { 23, 16901, "", "=q4=Stormrage Legguards", "=ds="..BabbleBoss["Ragnaros"], "", "15.49%"}; - { 24, 16898, "", "=q4=Stormrage Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "13.79%"}; - Prev = "T0Druid"; - Next = "T3Druid"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T1T2Hunter"] = { - { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t1s2#", "=ec1=#m30#"}; - { 2, 16846, "", "=q4=Giantstalker's Helmet", "=ds="..BabbleBoss["Garr"], "", "11.57%"}; - { 3, 16848, "", "=q4=Giantstalker's Epaulets", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "19.64%"}; - { 4, 16845, "", "=q4=Giantstalker's Breastplate", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.83%"}; - { 5, 16850, "", "=q4=Giantstalker's Bracers", "=ds="..AL["Trash Mobs"], "", "0.18%"}; - { 6, 16852, "", "=q4=Giantstalker's Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "18.58%"}; - { 7, 16851, "", "=q4=Giantstalker's Belt", "=ds="..AL["Trash Mobs"], "", "0.17%"}; - { 8, 16847, "", "=q4=Giantstalker's Leggings", "=ds="..BabbleBoss["Magmadar"], "", "13.28%"}; - { 9, 16849, "", "=q4=Giantstalker's Boots", "=ds="..BabbleBoss["Gehennas"], "", "14.54%"}; - { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t2s2#", "=ec1=#m31#"}; - { 17, 16939, "", "=q4=Dragonstalker's Helm", "=ds="..BabbleBoss["Nefarian"], "", "13.91%"}; - { 18, 16937, "", "=q4=Dragonstalker's Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "16.20%"}; - { 19, 16942, "", "=q4=Dragonstalker's Breastplate", "=ds="..BabbleBoss["Nefarian"], "", "13.30%"}; - { 20, 16935, "", "=q4=Dragonstalker's Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "19.13%"}; - { 21, 16940, "", "=q4=Dragonstalker's Gauntlets", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.13%"}; - { 22, 16936, "", "=q4=Dragonstalker's Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.17%"}; - { 23, 16938, "", "=q4=Dragonstalker's Legguards", "=ds="..BabbleBoss["Ragnaros"], "", "16.02%"}; - { 24, 16941, "", "=q4=Dragonstalker's Greaves", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "17.78%"}; - Prev = "T0Hunter"; - Next = "T3Hunter"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T1T2Mage"] = { - { 1, 0, "Spell_Frost_IceStorm", "=q6=#t1s3#", "=ec1=#m30#"}; - { 2, 16795, "", "=q4=Arcanist Crown", "=ds="..BabbleBoss["Garr"], "", "11.31%"}; - { 3, 16797, "", "=q4=Arcanist Mantle", "=ds="..BabbleBoss["Baron Geddon"], "", "19.92%"}; - { 4, 16798, "", "=q4=Arcanist Robes", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "16.51%"}; - { 5, 16799, "", "=q4=Arcanist Bindings", "=ds="..AL["Trash Mobs"], "", "0.16%"}; - { 6, 16801, "", "=q4=Arcanist Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "19.59%"}; - { 7, 16802, "", "=q4=Arcanist Belt", "=ds="..AL["Trash Mobs"], "", "0.16%"}; - { 8, 16796, "", "=q4=Arcanist Leggings", "=ds="..BabbleBoss["Magmadar"], "", "14.57%"}; - { 9, 16800, "", "=q4=Arcanist Boots", "=ds="..BabbleBoss["Lucifron"], "", "12.06%"}; - { 16, 0, "Spell_Frost_IceStorm", "=q6=#t2s3#", "=ec1=#m31#"}; - { 17, 16914, "", "=q4=Netherwind Crown", "=ds="..BabbleBoss["Nefarian"], "", "14.09%"}; - { 18, 16917, "", "=q4=Netherwind Mantle", "=ds="..BabbleBoss["Chromaggus"], "", "18.09%"}; - { 19, 16916, "", "=q4=Netherwind Robes", "=ds="..BabbleBoss["Nefarian"], "", "14.03%"}; - { 20, 16918, "", "=q4=Netherwind Bindings", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.41%"}; - { 21, 16913, "", "=q4=Netherwind Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "7.37%"}; - { 22, 16818, "", "=q4=Netherwind Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "19.94%"}; - { 23, 16915, "", "=q4=Netherwind Pants", "=ds="..BabbleBoss["Ragnaros"], "", "17.37%"}; - { 24, 16912, "", "=q4=Netherwind Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "17.17%"}; - Prev = "T0Mage"; - Next = "T3Mage"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T1T2Paladin"] = { - { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t1s4#", "=ec1=#m30#"}; - { 2, 16854, "", "=q4=Lawbringer Helm", "=ds="..BabbleBoss["Garr"], "", "7.23%"}; - { 3, 16856, "", "=q4=Lawbringer Spaulders", "=ds="..BabbleBoss["Baron Geddon"], "", "12.62%"}; - { 4, 16853, "", "=q4=Lawbringer Chestguard", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "9.53%"}; - { 5, 16857, "", "=q4=Lawbringer Bracers", "=ds="..AL["Trash Mobs"], "", "0.11%"}; - { 6, 16860, "", "=q4=Lawbringer Gauntlets", "=ds="..BabbleBoss["Gehennas"], "", "11.77%"}; - { 7, 16858, "", "=q4=Lawbringer Belt", "=ds="..AL["Trash Mobs"], "", "0.10%"}; - { 8, 16855, "", "=q4=Lawbringer Legplates", "=ds="..BabbleBoss["Magmadar"], "", "8.54%"}; - { 9, 16859, "", "=q4=Lawbringer Boots", "=ds="..BabbleBoss["Lucifron"], "", "7.20%"}; - { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t2s4#", "=ec1=#m31#"}; - { 17, 16955, "", "=q4=Judgement Crown", "=ds="..BabbleBoss["Nefarian"], "", "8.64%"}; - { 18, 16953, "", "=q4=Judgement Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "10.97%"}; - { 19, 16958, "", "=q4=Judgement Breastplate", "=ds="..BabbleBoss["Nefarian"], "", "9.24%"}; - { 20, 16951, "", "=q4=Judgement Bindings", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "13.61%"}; - { 21, 16956, "", "=q4=Judgement Gauntlets", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "3.58%"}; - { 22, 16952, "", "=q4=Judgement Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "12.23%"}; - { 23, 16954, "", "=q4=Judgement Legplates", "=ds="..BabbleBoss["Ragnaros"], "", "10.81%"}; - { 24, 16957, "", "=q4=Judgement Sabatons", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "11.28%"}; - Prev = "T0Paladin"; - Next = "T3Paladin"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T1T2Priest"] = { - { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t1s5#", "=ec1=#m30#"}; - { 2, 16813, "", "=q4=Circlet of Prophecy", "=ds="..BabbleBoss["Garr"], "", "11.36%"}; - { 3, 16816, "", "=q4=Mantle of Prophecy", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "21.06%"}; - { 4, 16815, "", "=q4=Robes of Prophecy", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.65%"}; - { 5, 16819, "", "=q4=Vambraces of Prophecy", "=ds="..AL["Trash Mobs"], "", "0.16%"}; - { 6, 16812, "", "=q4=Gloves of Prophecy", "=ds="..BabbleBoss["Gehennas"], "", "18.65%"}; - { 7, 16817, "", "=q4=Girdle of Prophecy", "=ds="..AL["Trash Mobs"], "", "0.18%"}; - { 8, 16814, "", "=q4=Pants of Prophecy", "=ds="..BabbleBoss["Magmadar"], "", "14.33%"}; - { 9, 16811, "", "=q4=Boots of Prophecy", "=ds="..BabbleBoss["Shazzrah"], "", "14.90%"}; - { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t2s5#", "=ec1=#m31#"}; - { 17, 16921, "", "=q4=Halo of Transcendence", "=ds="..BabbleBoss["Nefarian"], "", "13.39%"}; - { 18, 16924, "", "=q4=Pauldrons of Transcendence", "=ds="..BabbleBoss["Chromaggus"], "", "17.83%"}; - { 19, 16923, "", "=q4=Robes of Transcendence", "=ds="..BabbleBoss["Nefarian"], "", "14.83%"}; - { 20, 16926, "", "=q4=Bindings of Transcendence", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.37%"}; - { 21, 16920, "", "=q4=Handguards of Transcendence", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.01%"}; - { 22, 16925, "", "=q4=Belt of Transcendence", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "18.76%"}; - { 23, 16922, "", "=q4=Leggings of Transcendence", "=ds="..BabbleBoss["Ragnaros"], "", "17.30%"}; - { 24, 16919, "", "=q4=Boots of Transcendence", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "14.61%"}; - Prev = "T0Priest"; - Next = "T3Priest"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T1T2Rogue"] = { - { 1, 0, "Ability_BackStab", "=q6=#t1s6#", "=ec1=#m30#"}; - { 2, 16821, "", "=q4=Nightslayer Cover", "=ds="..BabbleBoss["Garr"], "", "10.38%"}; - { 3, 16823, "", "=q4=Nightslayer Shoulder Pads", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "20.66%"}; - { 4, 16820, "", "=q4=Nightslayer Chestpiece", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "16.76%"}; - { 5, 16825, "", "=q4=Nightslayer Bracelets", "=ds="..AL["Trash Mobs"], "", "0.17%"}; - { 6, 16826, "", "=q4=Nightslayer Gloves", "=ds="..BabbleBoss["Gehennas"], "", "19.47%"}; - { 7, 16827, "", "=q4=Nightslayer Belt", "=ds="..AL["Trash Mobs"], "", "0.15%"}; - { 8, 16822, "", "=q4=Nightslayer Pants", "=ds="..BabbleBoss["Magmadar"], "", "13.83%"}; - { 9, 16824, "", "=q4=Nightslayer Boots", "=ds="..BabbleBoss["Shazzrah"], "", "15.58%"}; - { 16, 0, "Ability_BackStab", "=q6=#t2s6#", "=ec1=#m31#"}; - { 17, 16908, "", "=q4=Bloodfang Hood", "=ds="..BabbleBoss["Nefarian"], "", "13.21%"}; - { 18, 16832, "", "=q4=Bloodfang Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "17.03%"}; - { 19, 16905, "", "=q4=Bloodfang Chestpiece", "=ds="..BabbleBoss["Nefarian"], "", "14.21%"}; - { 20, 16911, "", "=q4=Bloodfang Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.69%"}; - { 21, 16907, "", "=q4=Bloodfang Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.84%"}; - { 22, 16910, "", "=q4=Bloodfang Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "19.69%"}; - { 23, 16909, "", "=q4=Bloodfang Pants", "=ds="..BabbleBoss["Ragnaros"], "", "17.18%"}; - { 24, 16906, "", "=q4=Bloodfang Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "15.66%"}; - Prev = "T0Rogue"; - Next = "T3Rogue"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T1T2Shaman"] = { - { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t1s7#", "=ec1=#m30#"}; - { 2, 16842, "", "=q4=Earthfury Helmet", "=ds="..BabbleBoss["Garr"], "", "3.91%"}; - { 3, 16844, "", "=q4=Earthfury Epaulets", "=ds="..BabbleBoss["Baron Geddon"], "", "7.29%"}; - { 4, 16841, "", "=q4=Earthfury Vestments", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "6.08%"}; - { 5, 16840, "", "=q4=Earthfury Bracers", "=ds="..AL["Trash Mobs"], "", "0.06%"}; - { 6, 16839, "", "=q4=Earthfury Gauntlets", "=ds="..BabbleBoss["Gehennas"], "", "7.38%"}; - { 7, 16838, "", "=q4=Earthfury Belt", "=ds="..AL["Trash Mobs"], "", "0.07%"}; - { 8, 16843, "", "=q4=Earthfury Legguards", "=ds="..BabbleBoss["Magmadar"], "", "4.73%"}; - { 9, 16837, "", "=q4=Earthfury Boots", "=ds="..BabbleBoss["Lucifron"], "", "4.16%"}; - { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t2s7#", "=ec1=#m31#"}; - { 17, 16947, "", "=q4=Helmet of Ten Storms", "=ds="..BabbleBoss["Nefarian"], "", "4.86%"}; - { 18, 16945, "", "=q4=Epaulets of Ten Storms", "=ds="..BabbleBoss["Chromaggus"], "", "6.73%"}; - { 19, 16950, "", "=q4=Breastplate of Ten Storms", "=ds="..BabbleBoss["Nefarian"], "", "5.65%"}; - { 20, 16943, "", "=q4=Bracers of Ten Storms", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "7.54%"}; - { 21, 16948, "", "=q4=Gauntlets of Ten Storms", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "2.13%"}; - { 22, 16944, "", "=q4=Belt of Ten Storms", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "6.93%"}; - { 23, 16946, "", "=q4=Legplates of Ten Storms", "=ds="..BabbleBoss["Ragnaros"], "", "5.97%"}; - { 24, 16949, "", "=q4=Greaves of Ten Storms", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "5.57%"}; - Prev = "T0Shaman"; - Next = "T3Shaman"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T1T2Warlock"] = { - { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t1s8#", "=ec1=#m30#"}; - { 2, 16808, "", "=q4=Felheart Horns", "=ds="..BabbleBoss["Garr"], "", "10.62%"}; - { 3, 16807, "", "=q4=Felheart Shoulder Pads", "=ds="..BabbleBoss["Baron Geddon"], "", "19.78%"}; - { 4, 16809, "", "=q4=Felheart Robes", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.66%"}; - { 5, 16804, "", "=q4=Felheart Bracers", "=ds="..AL["Trash Mobs"], "", "0.16%"}; - { 6, 16805, "", "=q4=Felheart Gloves", "=ds="..BabbleBoss["Lucifron"], "", "14.89%"}; - { 7, 16806, "", "=q4=Felheart Belt", "=ds="..AL["Trash Mobs"], "", "0.19%"}; - { 8, 16810, "", "=q4=Felheart Pants", "=ds="..BabbleBoss["Magmadar"], "", "13.75%"}; - { 9, 16803, "", "=q4=Felheart Slippers", "=ds="..BabbleBoss["Shazzrah"], "", "15.28%"}; - { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t2s8#", "=ec1=#m31#"}; - { 17, 16929, "", "=q4=Nemesis Skullcap", "=ds="..BabbleBoss["Nefarian"], "", "13.54%"}; - { 18, 16932, "", "=q4=Nemesis Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "16.26%"}; - { 19, 16931, "", "=q4=Nemesis Robes", "=ds="..BabbleBoss["Nefarian"], "", "12.46%"}; - { 20, 16934, "", "=q4=Nemesis Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "18.11%"}; - { 21, 16928, "", "=q4=Nemesis Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.28%"}; - { 22, 16933, "", "=q4=Nemesis Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "18.42%"}; - { 23, 16930, "", "=q4=Nemesis Leggings", "=ds="..BabbleBoss["Ragnaros"], "", "16.87%"}; - { 24, 16927, "", "=q4=Nemesis Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "15.32%"}; - Prev = "T0Warlock"; - Next = "T3Warlock"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T1T2Warrior"] = { - { 1, 0, "INV_Shield_05", "=q6=#t1s9#", "=ec1=#m30#"}; - { 2, 16866, "", "=q4=Helm of Might", "=ds="..BabbleBoss["Garr"], "", "11.39%"}; - { 3, 16868, "", "=q4=Pauldrons of Might", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "21.14%"}; - { 4, 16865, "", "=q4=Breastplate of Might", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.28%"}; - { 5, 16861, "", "=q4=Bracers of Might", "=ds="..AL["Trash Mobs"], "", "0.16%"}; - { 6, 16863, "", "=q4=Gauntlets of Might", "=ds="..BabbleBoss["Lucifron"], "", "16.40%"}; - { 7, 16864, "", "=q4=Belt of Might", "=ds="..AL["Trash Mobs"], "", "0.16%"}; - { 8, 16867, "", "=q4=Legplates of Might", "=ds="..BabbleBoss["Magmadar"], "", "13.97%"}; - { 9, 16862, "", "=q4=Sabatons of Might", "=ds="..BabbleBoss["Gehennas"], "", "14.48%"}; - { 16, 0, "INV_Shield_05", "=q6=#t2s9#", "=ec1=#m31#"}; - { 17, 16963, "", "=q4=Helm of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "13.65%"}; - { 18, 16961, "", "=q4=Pauldrons of Wrath", "=ds="..BabbleBoss["Chromaggus"], "", "16.83%"}; - { 19, 16966, "", "=q4=Breastplate of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "15.06%"}; - { 20, 16959, "", "=q4=Bracelets of Wrath", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.29%"}; - { 21, 16964, "", "=q4=Gauntlets of Wrath", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.93%"}; - { 22, 16960, "", "=q4=Waistband of Wrath", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.03%"}; - { 23, 16962, "", "=q4=Legplates of Wrath", "=ds="..BabbleBoss["Ragnaros"], "", "17.23%"}; - { 24, 16965, "", "=q4=Sabatons of Wrath", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "16.84%"}; - Prev = "T0Warrior"; - Next = "T3Warrior"; - Back = "T1T2T3SET"; - }; - - ------------------------ - --- Tier 3 Sets (T3) --- - ------------------------ - - AtlasLoot_Data["T3Druid"] = { - { 1, 0, "Spell_Nature_Regeneration", "=q6=#t3s1#", "=ec1=#m35#"}; - { 2, 22490, "", "=q4=Dreamwalker Headpiece", "=ds="}; - { 3, 22491, "", "=q4=Dreamwalker Spaulders", "=ds="}; - { 4, 22488, "", "=q4=Dreamwalker Tunic", "=ds="}; - { 5, 22495, "", "=q4=Dreamwalker Wristguards", "=ds="}; - { 6, 22493, "", "=q4=Dreamwalker Handguards", "=ds="}; - { 7, 22494, "", "=q4=Dreamwalker Girdle", "=ds="}; - { 8, 22489, "", "=q4=Dreamwalker Legguards", "=ds="}; - { 9, 22492, "", "=q4=Dreamwalker Boots", "=ds="}; - { 10, 23064, "", "=q4=Ring of the Dreamwalker", "=ds="}; - Prev = "T1T2Druid"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T3Hunter"] = { - { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t3s2#", "=ec1=#m35#"}; - { 2, 22438, "", "=q4=Cryptstalker Headpiece", "=ds="}; - { 3, 22439, "", "=q4=Cryptstalker Spaulders", "=ds="}; - { 4, 22436, "", "=q4=Cryptstalker Tunic", "=ds="}; - { 5, 22443, "", "=q4=Cryptstalker Wristguards", "=ds="}; - { 6, 22441, "", "=q4=Cryptstalker Handguards", "=ds="}; - { 7, 22442, "", "=q4=Cryptstalker Girdle", "=ds="}; - { 8, 22437, "", "=q4=Cryptstalker Legguards", "=ds="}; - { 9, 22440, "", "=q4=Cryptstalker Boots", "=ds="}; - { 10, 23067, "", "=q4=Ring of the Cryptstalker", "=ds="}; - Prev = "T1T2Hunter"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T3Mage"] = { - { 1, 0, "Spell_Frost_IceStorm", "=q6=#t3s3#", "=ec1=#m35#"}; - { 2, 22498, "", "=q4=Frostfire Circlet", "=ds="}; - { 3, 22499, "", "=q4=Frostfire Shoulderpads", "=ds="}; - { 4, 22496, "", "=q4=Frostfire Robe", "=ds="}; - { 5, 22503, "", "=q4=Frostfire Bindings", "=ds="}; - { 6, 22501, "", "=q4=Frostfire Gloves", "=ds="}; - { 7, 22502, "", "=q4=Frostfire Belt", "=ds="}; - { 8, 22497, "", "=q4=Frostfire Leggings", "=ds="}; - { 9, 22500, "", "=q4=Frostfire Sandals", "=ds="}; - { 10, 23062, "", "=q4=Frostfire Ring", "=ds="}; - Prev = "T1T2Mage"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T3Paladin"] = { - { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t3s4#", "=ec1=#m35#"}; - { 2, 22428, "", "=q4=Redemption Headpiece", "=ds="}; - { 3, 22429, "", "=q4=Redemption Spaulders", "=ds="}; - { 4, 22425, "", "=q4=Redemption Tunic", "=ds="}; - { 5, 22424, "", "=q4=Redemption Wristguards", "=ds="}; - { 6, 22426, "", "=q4=Redemption Handguards", "=ds="}; - { 7, 22431, "", "=q4=Redemption Girdle", "=ds="}; - { 8, 22427, "", "=q4=Redemption Legguards", "=ds="}; - { 9, 22430, "", "=q4=Redemption Boots", "=ds="}; - { 10, 23066, "", "=q4=Ring of Redemption", "=ds="}; - Prev = "T1T2Paladin"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T3Priest"] = { - { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t3s5#", "=ec1=#m35#"}; - { 2, 22514, "", "=q4=Circlet of Faith", "=ds="}; - { 3, 22515, "", "=q4=Shoulderpads of Faith", "=ds="}; - { 4, 22512, "", "=q4=Robe of Faith", "=ds="}; - { 5, 22519, "", "=q4=Bindings of Faith", "=ds="}; - { 6, 22517, "", "=q4=Gloves of Faith", "=ds="}; - { 7, 22518, "", "=q4=Belt of Faith", "=ds="}; - { 8, 22513, "", "=q4=Leggings of Faith", "=ds="}; - { 9, 22516, "", "=q4=Sandals of Faith", "=ds="}; - { 10, 23061, "", "=q4=Ring of Faith", "=ds="}; - Prev = "T1T2Priest"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T3Rogue"] = { - { 1, 0, "Ability_BackStab", "=q6=#t3s6#", "=ec1=#m35#"}; - { 2, 22478, "", "=q4=Bonescythe Helmet", "=ds="}; - { 3, 22479, "", "=q4=Bonescythe Pauldrons", "=ds="}; - { 4, 22476, "", "=q4=Bonescythe Breastplate", "=ds="}; - { 5, 22483, "", "=q4=Bonescythe Bracers", "=ds="}; - { 6, 22481, "", "=q4=Bonescythe Gauntlets", "=ds="}; - { 7, 22482, "", "=q4=Bonescythe Waistguard", "=ds="}; - { 8, 22477, "", "=q4=Bonescythe Legplates", "=ds="}; - { 9, 22480, "", "=q4=Bonescythe Sabatons", "=ds="}; - { 10, 23060, "", "=q4=Bonescythe Ring", "=ds="}; - Prev = "T1T2Rogue"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T3Shaman"] = { - { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t3s7#", "=ec1=#m35#"}; - { 2, 22466, "", "=q4=Earthshatter Headpiece", "=ds="}; - { 3, 22467, "", "=q4=Earthshatter Spaulders", "=ds="}; - { 4, 22464, "", "=q4=Earthshatter Tunic", "=ds="}; - { 5, 22471, "", "=q4=Earthshatter Wristguards", "=ds="}; - { 6, 22469, "", "=q4=Earthshatter Handguards", "=ds="}; - { 7, 22470, "", "=q4=Earthshatter Girdle", "=ds="}; - { 8, 22465, "", "=q4=Earthshatter Legguards", "=ds="}; - { 9, 22468, "", "=q4=Earthshatter Boots", "=ds="}; - { 10, 23065, "", "=q4=Ring of the Earthshatterer", "=ds="}; - Prev = "T1T2Shaman"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T3Warlock"] = { - { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t3s8#", "=ec1=#m35#"}; - { 2, 22506, "", "=q4=Plagueheart Circlet", "=ds="}; - { 3, 22507, "", "=q4=Plagueheart Shoulderpads", "=ds="}; - { 4, 22504, "", "=q4=Plagueheart Robe", "=ds="}; - { 5, 22511, "", "=q4=Plagueheart Bindings", "=ds="}; - { 6, 22509, "", "=q4=Plagueheart Gloves", "=ds="}; - { 7, 22510, "", "=q4=Plagueheart Belt", "=ds="}; - { 8, 22505, "", "=q4=Plagueheart Leggings", "=ds="}; - { 9, 22508, "", "=q4=Plagueheart Sandals", "=ds="}; - { 10, 23063, "", "=q4=Plagueheart Ring", "=ds="}; - Prev = "T1T2Warlock"; - Back = "T1T2T3SET"; - }; - - AtlasLoot_Data["T3Warrior"] = { - { 1, 0, "INV_Shield_05", "=q6=#t3s9#", "=ec1=#m35#"}; - { 2, 22418, "", "=q4=Dreadnaught Helmet", "=ds="}; - { 3, 22419, "", "=q4=Dreadnaught Pauldrons", "=ds="}; - { 4, 22416, "", "=q4=Dreadnaught Breastplate", "=ds="}; - { 5, 22423, "", "=q4=Dreadnaught Bracers", "=ds="}; - { 6, 22421, "", "=q4=Dreadnaught Gauntlets", "=ds="}; - { 7, 22422, "", "=q4=Dreadnaught Waistguard", "=ds="}; - { 8, 22417, "", "=q4=Dreadnaught Legplates", "=ds="}; - { 9, 22420, "", "=q4=Dreadnaught Sabatons", "=ds="}; - { 10, 23059, "", "=q4=Ring of the Dreadnaught", "=ds="}; - Prev = "T1T2Warrior"; - Back = "T1T2T3SET"; - }; - - ------------------------ - --- Vanilla WoW Sets --- - ------------------------ - - AtlasLoot_Data["VWOWSets1"] = { - { 1, 0, "INV_Box_01", "=q6=#pre60s1#", "=ec1=#a2#. =q1=#z1#"}; - { 2, 10399, "", "=q3=Blackened Defias Armor", "=ds=#s5#, =q2=#n6#", "", "14.77%"}; - { 3, 10401, "", "=q2=Blackened Defias Gloves", "=ds=#s9#, =q2=#n9#", "", "1.76%"}; - { 4, 10403, "", "=q3=Blackened Defias Belt", "=ds=#s10#, =q2=#n7#", "", "23.26%"}; - { 5, 10400, "", "=q2=Blackened Defias Leggings", "=ds=#s11#, =q2=#n9#", "", "1.64%"}; - { 6, 10402, "", "=q2=Blackened Defias Boots", "=ds=#s12#, =q2=#n8#", "", "1.23%"}; - { 8, 0, "INV_Box_01", "=q6=#pre60s2#", "=ec1=#a2#. =q1=#z2#"}; - { 9, 6473, "", "=q3=Armor of the Fang", "=ds=#s5#, =q2=#n5#", "", "52.05%"}; - { 10, 10413, "", "=q3=Gloves of the Fang", "=ds=#s9#, =q2=#n4#", "", "1.20%"}; - { 11, 10412, "", "=q3=Belt of the Fang", "=ds=#s10#, =q2=#n2#", "", "8.64%"}; - { 12, 10410, "", "=q3=Leggings of the Fang", "=ds=#s11#, =q2=#n1#", "", "16.03%"}; - { 13, 10411, "", "=q3=Footpads of the Fang", "=ds=#s12#, =q2=#n3#", "", "19.08%"}; - { 16, 0, "INV_Box_01", "=q6=#pre60s3#", "=ec1=#a3#. =q1=#z3#"}; - { 17, 10328, "", "=q3=Scarlet Chestpiece", "=ds=#s5#, =q2=#n12#", "", "0.3%"}; - { 18, 10333, "", "=q2=Scarlet Wristguards", "=ds=#s8#, =q2=#n15#", "", "1.6%"}; - { 19, 10331, "", "=q2=Scarlet Gauntlets", "=ds=#s9#, =q2=#n13#", "", "1.7%"}; - { 20, 10329, "", "=q2=Scarlet Belt", "=ds=#s10#, =q2=#n10#", "", "1.6%"}; - { 21, 10330, "", "=q3=Scarlet Leggings", "=ds=#s11#, =q2=#n14#", "", "13.2%"}; - { 22, 10332, "", "=q3=Scarlet Boots", "=ds=#s12#, =q2=#n11#", "", "0.1%"}; - { 24, 0, "INV_Box_01", "=q6=#pre60s4#", "=ec1=#a3#. =q1=#z4#"}; - { 25, 11729, "", "=q3=Savage Gladiator Helm", "=ds=#s1#, =q2=#brd3#, #brd5#", "", "10.08%"}; - { 26, 11726, "", "=q4=Savage Gladiator Chain", "=ds=#s5#, =q2=#brd3#", "", "14.52%"}; - { 27, 11730, "", "=q3=Savage Gladiator Grips", "=ds=#s9#, =q2=#brd2#", "", "14.12%"}; - { 28, 11728, "", "=q3=Savage Gladiator Leggings", "=ds=#s11#, =q2=#brd6#", "", "14.95%"}; - { 29, 11731, "", "=q3=Savage Gladiator Greaves", "=ds=#s12#, =q2=#brd1#", "", "15.14%"}; - Back = "SETSCLASSIC"; - }; - - AtlasLoot_Data["VWOWSets2"] = { - { 1, 0, "INV_Box_01", "=q6=#pre60s5#", "=ec1=#a1#, =q1=#m1# #c5#, #c3#, #c8#"}; - { 2, 22302, "", "=q3=Ironweave Cowl", "=ds=#s1#, =q2=#n16# (#z9#)", "", "27.72%"}; - { 3, 22305, "", "=q3=Ironweave Mantle", "=ds=#s3#, =q2=#n17# (#z4#)", "", "30.39%"}; - { 4, 22301, "", "=q3=Ironweave Robe", "=ds=#s5#, =q2=#n18# (#z6#)", "", "19.00%"}; - { 5, 22313, "", "=q3=Ironweave Bracers", "=ds=#s8#, =q2=#n19# (#z10#)", "", "18.16%"}; - { 6, 22304, "", "=q3=Ironweave Gloves", "=ds=#s9#, =q2=#n20# (#z13#)", "", "16.24%"}; - { 7, 22306, "", "=q3=Ironweave Belt", "=ds=#s10#, =q2=#n21# (#z10#)", "", "20.28%"}; - { 8, 22303, "", "=q3=Ironweave Pants", "=ds=#s11#, =q2=#n22# (#z5#)", "", "23.33%"}; - { 9, 22311, "", "=q3=Ironweave Boots", "=ds=#s12#, =q2=#n23# (#z9#)", "", "12.31%"}; - { 16, 0, "INV_Box_01", "=q6=#pre60s10#", "=ec1=#a1#, =q2=#n24#. =q1=#z6#"}; - { 17, 13390, "", "=q3=The Postmaster's Band", "=ds=#s1#", "", ""}; - { 18, 13388, "", "=q3=The Postmaster's Tunic", "=ds=#s5#", "", ""}; - { 19, 13389, "", "=q3=The Postmaster's Trousers", "=ds=#s11#", "", ""}; - { 20, 13391, "", "=q3=The Postmaster's Treads", "=ds=#s12#", "", ""}; - { 21, 13392, "", "=q3=The Postmaster's Seal", "=ds=#s13#", "", ""}; - Back = "SETSCLASSIC"; - }; - - AtlasLoot_Data["VWOWSets3"] = { - { 1, 0, "INV_Box_01", "=q6=#pre60s15#", "=q1=#z7#"}; - { 2, 17082, "", "=q4=Shard of the Flame", "=ds=#s14#, =q2=#n35# (#z14#)", "", "4.46%"}; - { 3, 17064, "", "=q4=Shard of the Scale", "=ds=#s14#, =q2=#n36# (#z15#)", "", "3.71%"}; - { 5, 0, "INV_Box_01", "=q6=#pre60s20#", "=q1=#z7#"}; - { 6, 18204, "", "=q4=Eskhandar's Pelt", "=ds=#s4#, =q2=#n37#", "", "9.16%"}; - { 7, 18203, "", "=q4=Eskhandar's Right Claw", "=ds=#h3#, #w13#, =q2=#n38# (#z14#)", "", "16.97%"}; - { 8, 18202, "", "=q4=Eskhandar's Left Claw", "=ds=#h4#, #w13#, =q2=#n39#", "", "12.36%"}; - { 16, 0, "INV_Box_01", "=q6=#pre60s24#", "=q1=#z10#"}; - { 17, 13218, "", "=q3=Fang of the Crystal Spider", "=ds=#h1#, #w4#, =q2=#n41#", "", "15.46%"}; - { 18, 13183, "", "=q3=Venomspitter", "=ds=#h1#, #w6#, =q2=#n42#", "", "13.07%"}; - { 20, 0, "INV_Box_01", "=q6=#pre60s23#", "=q1=#z9#"}; - { 21, 12940, "", "=q3=Dal'Rend's Sacred Charge", "=ds=#h3#, #w10#, =q2=#n40#", "", "6.62%"}; - { 22, 12939, "", "=q3=Dal'Rend's Tribal Guardian", "=ds=#h4#, #w10#, =q2=#n40#", "", "7.44%"}; - Back = "SETSCLASSIC"; - }; - AtlasLoot_Data["VWOWScholo"] = { - { 1, 0, "INV_Box_01", "=q6=#pre60s6#", "=ec1=#a1#. =q1=#z5#"}; - { 2, 14633, "", "=q3=Necropile Mantle", "=ds=#s3#", "", "1.12%"}; - { 3, 14626, "", "=q3=Necropile Robe", "=ds=#s5#", "", "1.27%"}; - { 4, 14629, "", "=q3=Necropile Cuffs", "=ds=#s8#", "", "1.03%"}; - { 5, 14632, "", "=q3=Necropile Leggings", "=ds=#s11#", "", "0.85%"}; - { 6, 14631, "", "=q3=Necropile Boots", "=ds=#s12#", "", "0.88%"}; - { 8, 0, "INV_Box_01", "=q6=#pre60s7#", "=ec1=#a2#. =q1=#z5#"}; - { 9, 14637, "", "=q3=Cadaverous Armor", "=ds=#s5#", "", "1.51%"}; - { 10, 14640, "", "=q3=Cadaverous Gloves", "=ds=#s9#", "", "0.82%"}; - { 11, 14636, "", "=q3=Cadaverous Belt", "=ds=#s10#", "", "0.60%"}; - { 12, 14638, "", "=q3=Cadaverous Leggings", "=ds=#s11#", "", "1.09%"}; - { 13, 14641, "", "=q3=Cadaverous Walkers", "=ds=#s12#", "", "0.67%"}; - { 16, 0, "INV_Box_01", "=q6=#pre60s8#", "=ec1=#a3#. =q1=#z5#"}; - { 17, 14611, "", "=q3=Bloodmail Hauberk", "=ds=#s5#", "", "0.54%"}; - { 18, 14615, "", "=q3=Bloodmail Gauntlets", "=ds=#s9#", "", "0.09%"}; - { 19, 14614, "", "=q3=Bloodmail Belt", "=ds=#s10#", "", "0.60%"}; - { 20, 14612, "", "=q3=Bloodmail Legguards", "=ds=#s11#", "", "0.42%"}; - { 21, 14616, "", "=q3=Bloodmail Boots", "=ds=#s12#", "", "0.36%"}; - { 23, 0, "INV_Box_01", "=q6=#pre60s9#", "=ec1=#a4#. =q1=#z5#"}; - { 24, 14624, "", "=q3=Deathbone Chestplate", "=ds=#s5#", "", "0.45%"}; - { 25, 14622, "", "=q3=Deathbone Gauntlets", "=ds=#s9#", "", "0.45%"}; - { 26, 14620, "", "=q3=Deathbone Girdle", "=ds=#s10#", "", "0.67%"}; - { 27, 14623, "", "=q3=Deathbone Legguards", "=ds=#s11#", "", "1.12%"}; - { 28, 14621, "", "=q3=Deathbone Sabatons", "=ds=#s12#", "", "0.57%"}; - Back = "SETSCLASSIC"; - }; - - AtlasLoot_Data["VWOWZulGurub"] = { - { 1, 0, "INV_Box_01", "=q6=#pre60s16#", "=q1=#z8#"}; - { 2, 19898, "", "=q3=Seal of Jin", "=ds=#s13#, =q2=#n28#", "", "8.81%"}; - { 3, 19925, "", "=q3=Band of Jin", "=ds=#s13#, =q2=#n29#", "", "10.36%"}; - { 5, 0, "INV_Box_01", "=q6=#pre60s17#", "=q1=#z8#"}; - { 6, 19873, "", "=q3=Overlord's Crimson Band", "=ds=#s13#, =q2=#n33#", "", "10.12%"}; - { 7, 19912, "", "=q3=Overlord's Onyx Band", "=ds=#s13#, =q2=#n30#", "", "14.51%"}; - { 9, 0, "INV_Box_01", "=q6=#pre60s22#", "=q1=#z8#"}; - { 10, 19896, "", "=q4=Thekal's Grasp", "=ds=#h3#, #w13#, =q2=#n28#", "", "5.20%"}; - { 11, 19910, "", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#, =q2=#n30#", "", "4.54%"}; - { 16, 0, "INV_Box_01", "=q6=#pre60s18#", "=q1=#z8#"}; - { 17, 19863, "", "=q3=Primalist's Seal", "=ds=#s13#, =q2=#n33#", "", "9.72%"}; - { 18, 19920, "", "=q3=Primalist's Band", "=ds=#s13#, =q2=#n31#", "", "8.95%"}; - { 20, 0, "INV_Box_01", "=q6=#pre60s19#", "=q1=#z8#"}; - { 21, 19905, "", "=q3=Zanzil's Band", "=ds=#s13#, =q2=#n32#", "", "9.24%"}; - { 22, 19893, "", "=q3=Zanzil's Seal", "=ds=#s13#, =q2=#n33#", "", "10.12%"}; - { 24, 0, "INV_Box_01", "=q6=#pre60s21#", "=q1=#z8#"}; - { 25, 19865, "", "=q4=Warblade of the Hakkari", "=ds=#h3#, #w10#, =q2=#n34#", "", "5.18%"}; - { 26, 19866, "", "=q4=Warblade of the Hakkari", "=ds=#h4#, #w10#, =q2=#n33#", "", "4.55%"}; - Back = "SETSCLASSIC"; - }; - - --------------- - --- ZG Sets --- - --------------- - - AtlasLoot_Data["ZGSets1"] = { - { 1, 0, "Spell_Nature_Regeneration", "=q6=#zgs1#", "=ec1=#c1#"}; - { 2, 19955, "", "=q4=Wushoolay's Charm of Nature", ""}; - { 3, 19613, "", "=q4=Pristine Enchanted South Seas Kelp", "=ds=#r5#"}; - { 4, 19838, "", "=q4=Zandalar Haruspex's Tunic", "=q4=#zgt9#, =ds=#r4#"}; - { 5, 19839, "", "=q4=Zandalar Haruspex's Belt", "=q4=#zgt4#, =ds=#r3#"}; - { 6, 19840, "", "=q4=Zandalar Haruspex's Bracers", "=q4=#zgt5#, =ds=#r2#"}; - { 8, 0, "Ability_Hunter_RunningShot", "=q6=#zgs2#", "=ec1=#c2#"}; - { 9, 19953, "", "=q4=Renataki's Charm of Beasts", ""}; - { 10, 19621, "", "=q4=Maelstrom's Wrath", "=ds=#r5#"}; - { 11, 19831, "", "=q4=Zandalar Predator's Mantle", "=q4=#zgt6#, =ds=#r4#"}; - { 12, 19832, "", "=q4=Zandalar Predator's Belt", "=q4=#zgt2#, =ds=#r3#"}; - { 13, 19833, "", "=q4=Zandalar Predator's Bracers", "=q4=#zgt3#, =ds=#r2#"}; - { 16, 0, "Spell_Frost_IceStorm", "=q6=#zgs3#", "=ec1=#c3#"}; - { 17, 19959, "", "=q4=Hazza'rah's Charm of Magic", ""}; - { 18, 19601, "", "=q4=Jewel of Kajaro", "=ds=#r5#"}; - { 19, 20034, "", "=q4=Zandalar Illusionist's Robe", "=q4=#zgt1#, =ds=#r4#"}; - { 20, 19845, "", "=q4=Zandalar Illusionist's Mantle", "=q4=#zgt2#, =ds=#r3#"}; - { 21, 19846, "", "=q4=Zandalar Illusionist's Wraps", "=q4=#zgt3#, =ds=#r2#"}; - { 23, 0, "Spell_Holy_SealOfMight", "=q6=#zgs4#", "=ec1=#c4#"}; - { 24, 19952, "", "=q4=Gri'lek's Charm of Valor", ""}; - { 25, 19588, "", "=q4=Hero's Brand", "=ds=#r5#"}; - { 26, 19825, "", "=q4=Zandalar Freethinker's Breastplate", "=q4=#zgt9#, =ds=#r4#"}; - { 27, 19826, "", "=q4=Zandalar Freethinker's Belt", "=q4=#zgt2#, =ds=#r3#"}; - { 28, 19827, "", "=q4=Zandalar Freethinker's Armguards", "=q4=#zgt3#, =ds=#r2#"}; - Next = "ZGSets2"; - Back = "SETMENU"; - }; - - AtlasLoot_Data["ZGSets2"] = { - { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#zgs5#", "=ec1=#c5#"}; - { 2, 19958, "", "=q4=Hazza'rah's Charm of Healing", ""}; - { 3, 19594, "", "=q4=The All-Seeing Eye of Zuldazar", "=ds=#r5#"}; - { 4, 19841, "", "=q4=Zandalar Confessor's Mantle", "=q4=#zgt6#, =ds=#r4#"}; - { 5, 19842, "", "=q4=Zandalar Confessor's Bindings", "=q4=#zgt4#, =ds=#r3#"}; - { 6, 19843, "", "=q4=Zandalar Confessor's Wraps", "=q4=#zgt5#, =ds=#r2#"}; - { 8, 0, "Ability_BackStab", "=q6=#zgs6#", "=ec1=#c6#"}; - { 9, 19954, "", "=q4=Renataki's Charm of Trickery", ""}; - { 10, 19617, "", "=q4=Zandalarian Shadow Mastery Talisman", "=ds=#r5#"}; - { 11, 19834, "", "=q4=Zandalar Madcap's Tunic", "=q4=#zgt6#, =ds=#r4#"}; - { 12, 19835, "", "=q4=Zandalar Madcap's Mantle", "=q4=#zgt7#, =ds=#r3#"}; - { 13, 19836, "", "=q4=Zandalar Madcap's Bracers", "=q4=#zgt8#, =ds=#r2#"}; - { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#zgs7#", "=ec1=#c7#"}; - { 17, 19956, "", "=q4=Wushoolay's Charm of Spirits", ""}; - { 18, 19609, "", "=q4=Unmarred Vision of Voodress", "=ds=#r5#"}; - { 19, 19828, "", "=q4=Zandalar Augur's Hauberk", "=q4=#zgt9#, =ds=#r4#"}; - { 20, 19829, "", "=q4=Zandalar Augur's Belt", "=q4=#zgt7#, =ds=#r3#"}; - { 21, 19830, "", "=q4=Zandalar Augur's Bracers", "=q4=#zgt8#, =ds=#r2#"}; - { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#zgs8#", "=ec1=#c8#"}; - { 24, 19957, "", "=q4=Hazza'rah's Charm of Destruction", ""}; - { 25, 19605, "", "=q4=Kezan's Unstoppable Taint", "=ds=#r5#"}; - { 26, 20033, "", "=q4=Zandalar Demoniac's Robe", "=q4=#zgt1#, =ds=#r4#"}; - { 27, 19849, "", "=q4=Zandalar Demoniac's Mantle", "=q4=#zgt4#, =ds=#r3#"}; - { 28, 19848, "", "=q4=Zandalar Demoniac's Wraps", "=q4=#zgt5#, =ds=#r2#"}; - Next = "ZGSets3"; - Prev = "ZGSets1"; - Back = "SETMENU"; - }; - - AtlasLoot_Data["ZGSets3"] = { - { 1, 0, "INV_Shield_05", "=q6=#zgs9#", "=ec1=#c9#"}; - { 2, 19951, "", "=q4=Gri'lek's Charm of Might", ""}; - { 3, 19577, "", "=q4=Rage of Mugamba", "=ds=#r5#"}; - { 4, 19822, "", "=q4=Zandalar Vindicator's Breastplate", "=q4=#zgt1#, =ds=#r4#"}; - { 5, 19823, "", "=q4=Zandalar Vindicator's Belt", "=q4=#zgt7#, =ds=#r3#"}; - { 6, 19824, "", "=q4=Zandalar Vindicator's Armguards", "=q4=#zgt8#, =ds=#r2#"}; - Prev = "ZGSets2"; - Back = "SETMENU"; - }; - - ----------------- - --- AQ20 Sets --- - ----------------- - - AtlasLoot_Data["AQ20Sets1"] = { - { 1, 0, "Spell_Nature_Regeneration", "=q6=#aq20s1#", "=ec1=#c1#"}; - { 2, 21407, "", "=q4=Mace of Unending Life", "=q4=#aq20t1#, =ds=#r5#"}; - { 3, 21409, "", "=q4=Cloak of Unending Life", "=q3=#aq20t5#, =ds=#r4#"}; - { 4, 21408, "", "=q4=Band of Unending Life", "=q3=#aq20t3#, =ds=#r3#"}; - { 6, 0, "Ability_Hunter_RunningShot", "=q6=#aq20s2#", "=ec1=#c2#"}; - { 7, 21401, "", "=q4=Scythe of the Unseen Path", "=q4=#aq20t6#, =ds=#r5#"}; - { 8, 21403, "", "=q4=Cloak of the Unseen Path", "=q3=#aq20t5#, =ds=#r4#"}; - { 9, 21402, "", "=q4=Signet of the Unseen Path", "=q3=#aq20t4#, =ds=#r3#"}; - { 11, 0, "Spell_Frost_IceStorm", "=q6=#aq20s3#", "=ec1=#c3#"}; - { 12, 21413, "", "=q4=Blade of Vaulted Secrets", "=q4=#aq20t1#, =ds=#r5#"}; - { 13, 21415, "", "=q4=Drape of Vaulted Secrets", "=q3=#aq20t2#, =ds=#r4#"}; - { 14, 21414, "", "=q4=Band of Vaulted Secrets", "=q3=#aq20t3#, =ds=#r3#"}; - { 16, 0, "Spell_Holy_SealOfMight", "=q6=#aq20s4#", "=ec1=#c4#"}; - { 17, 21395, "", "=q4=Blade of Eternal Justice", "=q4=#aq20t6#, =ds=#r5#"}; - { 18, 21397, "", "=q4=Cape of Eternal Justice", "=q3=#aq20t5#, =ds=#r4#"}; - { 19, 21396, "", "=q4=Ring of Eternal Justice", "=q3=#aq20t3#, =ds=#r3#"}; - { 21, 0, "Spell_Holy_PowerWordShield", "=q6=#aq20s5#", "=ec1=#c5#"}; - { 22, 21410, "", "=q4=Gavel of Infinite Wisdom", "=q4=#aq20t1#, =ds=#r5#"}; - { 23, 21412, "", "=q4=Shroud of Infinite Wisdom", "=q3=#aq20t2#, =ds=#r4#"}; - { 24, 21411, "", "=q4=Ring of Infinite Wisdom", "=q3=#aq20t4#, =ds=#r3#"}; - { 26, 0, "Ability_BackStab", "=q6=#aq20s6#", "=ec1=#c6#"}; - { 27, 21404, "", "=q4=Dagger of Veiled Shadows", "=q4=#aq20t6#, =ds=#r5#"}; - { 28, 21406, "", "=q4=Cloak of Veiled Shadows", "=q3=#aq20t2#, =ds=#r4#"}; - { 29, 21405, "", "=q4=Band of Veiled Shadows", "=q3=#aq20t4#, =ds=#r3#"}; - Next = "AQ20Sets2"; - Back = "SETMENU"; - }; - - AtlasLoot_Data["AQ20Sets2"] = { - { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#aq20s7#", "=ec1=#c7#"}; - { 2, 21398, "", "=q4=Hammer of the Gathering Storm", "=q4=#aq20t6#, =ds=#r5#"}; - { 3, 21400, "", "=q4=Cloak of the Gathering Storm", "=q3=#aq20t5#, =ds=#r4#"}; - { 4, 21399, "", "=q4=Ring of the Gathering Storm", "=q3=#aq20t3#, =ds=#r3#"}; - { 6, 0, "Spell_Shadow_CurseOfTounges", "=q6=#aq20s8#", "=ec1=#c8#"}; - { 7, 21416, "", "=q4=Kris of Unspoken Names", "=q4=#aq20t1#, =ds=#r5#"}; - { 8, 21418, "", "=q4=Shroud of Unspoken Names", "=q3=#aq20t5#, =ds=#r4#"}; - { 9, 21417, "", "=q4=Ring of Unspoken Names", "=q3=#aq20t4#, =ds=#r3#"}; - { 11, 0, "INV_Shield_05", "=q6=#aq20s9#", "=ec1=#c9#"}; - { 12, 21392, "", "=q4=Sickle of Unyielding Strength", "=q4=#aq20t6#, =ds=#r5#"}; - { 13, 21394, "", "=q4=Drape of Unyielding Strength", "=q3=#aq20t2#, =ds=#r4#"}; - { 14, 21393, "", "=q4=Signet of Unyielding Strength", "=q3=#aq20t3#=ds=, #r3#"}; - Prev = "AQ20Sets1"; - Back = "SETMENU"; - }; - - ----------------- - --- AQ40 Sets --- - ----------------- - - AtlasLoot_Data["AQ40Sets1"] = { - { 1, 0, "Spell_Nature_Regeneration", "=q6=#aq40s1#", "=ec1=#c1#"}; - { 2, 21357, "", "=q4=Genesis Vest", "=q4=#aq40t4#, =ds=#r3#"}; - { 3, 21353, "", "=q4=Genesis Helm", "=q4=#aq40t6#, =ds=#r2#"}; - { 4, 21356, "", "=q4=Genesis Trousers", "=q4=#aq40t7#, =ds=#r2#"}; - { 5, 21354, "", "=q4=Genesis Shoulderpads", "=q4=#aq40t1#, =ds=#r1#"}; - { 6, 21355, "", "=q4=Genesis Boots", "=q4=#aq40t1#, =ds=#r1#"}; - { 8, 0, "Ability_Hunter_RunningShot", "=q6=#aq40s2#", "=ec1=#c2#"}; - { 9, 21370, "", "=q4=Striker's Hauberk", "=q4=#aq40t8#, =ds=#r3#"}; - { 10, 21366, "", "=q4=Striker's Diadem", "=q4=#aq40t6#, =ds=#r2#"}; - { 11, 21368, "", "=q4=Striker's Leggings", "=q4=#aq40t7#, =ds=#r2#"}; - { 12, 21367, "", "=q4=Striker's Pauldrons", "=q4=#aq40t5#, =ds=#r1#"}; - { 13, 21365, "", "=q4=Striker's Footguards", "=q4=#aq40t5#, =ds=#r1#"}; - { 16, 0, "Spell_Frost_IceStorm", "=q6=#aq40s3#", "=ec1=#c3#"}; - { 17, 21343, "", "=q4=Enigma Robes", "=q4=#aq40t4#, =ds=#r3#"}; - { 18, 21347, "", "=q4=Enigma Circlet", "=q4=#aq40t2#, =ds=#r2#"}; - { 19, 21346, "", "=q4=Enigma Leggings", "=q4=#aq40t3#, =ds=#r2#"}; - { 20, 21345, "", "=q4=Enigma Shoulderpads", "=q4=#aq40t1#, =ds=#r1#"}; - { 21, 21344, "", "=q4=Enigma Boots", "=q4=#aq40t1#, =ds=#r1#"}; - { 23, 0, "Spell_Holy_SealOfMight", "=q6=#aq40s4#", "=ec1=#c4#"}; - { 24, 21389, "", "=q4=Avenger's Breastplate", "=q4=#aq40t8#, =ds=#r3#"}; - { 25, 21387, "", "=q4=Avenger's Crown", "=q4=#aq40t6#, =ds=#r2#"}; - { 26, 21390, "", "=q4=Avenger's Legguards", "=q4=#aq40t7#, =ds=#r2#"}; - { 27, 21391, "", "=q4=Avenger's Pauldrons", "=q4=#aq40t1#, =ds=#r1#"}; - { 28, 21388, "", "=q4=Avenger's Greaves", "=q4=#aq40t1#, =ds=#r1#"}; - Next = "AQ40Sets2"; - Back = "SETMENU"; - }; - - AtlasLoot_Data["AQ40Sets2"] = { - { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#aq40s5#", "=ec1=#c5#"}; - { 2, 21351, "", "=q4=Vestments of the Oracle", "=q4=#aq40t4#, =ds=#r3#"}; - { 3, 21348, "", "=q4=Tiara of the Oracle", "=q4=#aq40t2#, =ds=#r2#"}; - { 4, 21352, "", "=q4=Trousers of the Oracle", "=q4=#aq40t3#, =ds=#r2#"}; - { 5, 21350, "", "=q4=Mantle of the Oracle", "=q4=#aq40t5#, =ds=#r1#"}; - { 6, 21349, "", "=q4=Footwraps of the Oracle", "=q4=#aq40t5#, =ds=#r1#"}; - { 8, 0, "Ability_BackStab", "=q6=#aq40s6#", "=ec1=#c6#"}; - { 9, 21364, "", "=q4=Deathdealer's Vest", "=q4=#aq40t8#, =ds=#r3#"}; - { 10, 21360, "", "=q4=Deathdealer's Helm", "=q4=#aq40t6#, =ds=#r2#"}; - { 11, 21362, "", "=q4=Deathdealer's Leggings", "=q4=#aq40t3#, =ds=#r2#"}; - { 12, 21361, "", "=q4=Deathdealer's Spaulders", "=q4=#aq40t5#, =ds=#r1#"}; - { 13, 21359, "", "=q4=Deathdealer's Boots", "=q4=#aq40t5#, =ds=#r1#"}; - { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#aq40s7#", "=ec1=#c7#"}; - { 17, 21374, "", "=q4=Stormcaller's Hauberk", "=q4=#aq40t8#, =ds=#r3#"}; - { 18, 21372, "", "=q4=Stormcaller's Diadem", "=q4=#aq40t6#, =ds=#r2#"}; - { 19, 21375, "", "=q4=Stormcaller's Leggings", "=q4=#aq40t7#, =ds=#r2#"}; - { 20, 21376, "", "=q4=Stormcaller's Pauldrons", "=q4=#aq40t1#, =ds=#r1#"}; - { 21, 21373, "", "=q4=Stormcaller's Footguards", "=q4=#aq40t1#, =ds=#r1#"}; - { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#aq40s8#", "=ec1=#c8#"}; - { 24, 21334, "", "=q4=Doomcaller's Robes", "=q4=#aq40t4#, =ds=#r3#"}; - { 25, 21337, "", "=q4=Doomcaller's Circlet", "=q4=#aq40t2#, =ds=#r2#"}; - { 26, 21336, "", "=q4=Doomcaller's Trousers", "=q4=#aq40t7#, =ds=#r2#"}; - { 27, 21335, "", "=q4=Doomcaller's Mantle", "=q4=#aq40t1#, =ds=#r1#"}; - { 28, 21338, "", "=q4=Doomcaller's Footwraps", "=q4=#aq40t1#, =ds=#r1#"}; - Next = "AQ40Sets3"; - Prev = "AQ40Sets1"; - Back = "SETMENU"; - }; - - AtlasLoot_Data["AQ40Sets3"] = { - { 1, 0, "INV_Shield_05", "=q6=#aq40s9#", "=ec1=#c9#"}; - { 2, 21331, "", "=q4=Conqueror's Breastplate", "=q4=#aq40t8#, =ds=#r3#"}; - { 3, 21329, "", "=q4=Conqueror's Crown", "=q4=#aq40t2#, =ds=#r2#"}; - { 4, 21332, "", "=q4=Conqueror's Legguards", "=q4=#aq40t3#, =ds=#r2#"}; - { 5, 21330, "", "=q4=Conqueror's Spaulders", "=q4=#aq40t5#, =ds=#r1#"}; - { 6, 21333, "", "=q4=Conqueror's Greaves", "=q4=#aq40t5#, =ds=#r1#"}; - Prev = "AQ40Sets2"; - Back = "SETMENU"; - }; - - ----------------------- - --- BoE World Epics --- - ----------------------- - - AtlasLoot_Data["WorldEpics1"] = { - { 1, 867, "", "=q4=Gloves of Holy Might", "=ds=#s9#, #a2#", "", ""}; - { 2, 1981, "", "=q4=Icemail Jerkin", "=ds=#s5#, #a3#", "", ""}; - { 3, 1980, "", "=q4=Underworld Band", "=ds=#s13#", "", ""}; - { 16, 869, "", "=q4=Dazzling Longsword", "=ds=#h1#, #w10#", "", ""}; - { 17, 1982, "", "=q4=Nightblade", "=ds=#h2#, #w10#", "", ""}; - { 18, 870, "", "=q4=Fiery War Axe", "=ds=#h2#, #w1#", "", ""}; - { 19, 868, "", "=q4=Ardent Custodian", "=ds=#h1#, #w6#", "", ""}; - { 20, 873, "", "=q4=Staff of Jordan", "=ds=#w9#", "", ""}; - { 21, 1204, "", "=q4=The Green Tower", "=ds=#w8#", "", ""}; - { 22, 2825, "", "=q4=Bow of Searing Arrows", "=ds=#w2#", "", ""}; - Next = "WorldEpics2"; - Back = "WORLDEPICS"; - }; - - AtlasLoot_Data["WorldEpics2"] = { - { 1, 3075, "", "=q4=Eye of Flame", "=ds=#s1#, #a1#", "", ""}; - { 2, 940, "", "=q4=Robes of Insight", "=ds=#s5#, #a1#", "", ""}; - { 3, 14551, "", "=q4=Edgemaster's Handguards", "=ds=#s9#, #a3#", "", ""}; - { 4, 17007, "", "=q4=Stonerender Gauntlets", "=ds=#s9#, #a3#", "", ""}; - { 5, 14549, "", "=q4=Boots of Avoidance", "=ds=#s12#, #a4#", "", ""}; - { 6, 1315, "", "=q4=Lei of Lilies", "=ds=#s2#", "", ""}; - { 7, 942, "", "=q4=Freezing Band", "=ds=#s13#", "", ""}; - { 8, 1447, "", "=q4=Ring of Saviors", "=ds=#s13#", "", ""}; - { 16, 2164, "", "=q4=Gut Ripper", "=ds=#h1#, #w4#", "", ""}; - { 17, 2163, "", "=q4=Shadowblade", "=ds=#h1#, #w4#", "", ""}; - { 18, 809, "", "=q4=Bloodrazor", "=ds=#h1#, #w10#", "", ""}; - { 19, 871, "", "=q4=Flurry Axe", "=ds=#h1#, #w1#", "", ""}; - { 20, 2291, "", "=q4=Kang the Decapitator", "=ds=#h2#, #w1#", "", ""}; - { 21, 810, "", "=q4=Hammer of the Northern Wind", "=ds=#h1#, #w6#", "", ""}; - { 22, 2915, "", "=q4=Taran Icebreaker", "=ds=#h2#, #w6#", "", ""}; - { 23, 812, "", "=q4=Glowing Brightwood Staff", "=ds=#w9#", "", ""}; - { 24, 943, "", "=q4=Warden Staff", "=ds=#w9#", "", ""}; - { 25, 1169, "", "=q4=Blackskull Shield", "=ds=#w8#", "", ""}; - { 26, 1979, "", "=q4=Wall of the Dead", "=ds=#w8#", "", ""}; - { 27, 2824, "", "=q4=Hurricane", "=ds=#w2#", "", ""}; - { 28, 2100, "", "=q4=Precisely Calibrated Boomstick", "=ds=#w5#", "", ""}; - Next = "WorldEpics3"; - Prev = "WorldEpics1"; - Back = "WORLDEPICS"; - }; - - AtlasLoot_Data["WorldEpics3"] = { - { 1, 3475, "", "=q4=Cloak of Flames", "=ds=#s4#", "", ""}; - { 2, 14553, "", "=q4=Sash of Mercy", "=ds=#s10#, #a2#", "", ""}; - { 3, 2245, "", "=q4=Helm of Narv", "=ds=#s1#, #a3#", "", ""}; - { 4, 14552, "", "=q4=Stockade Pauldrons", "=ds=#s3#, #a4#", "", ""}; - { 5, 14554, "", "=q4=Cloudkeeper Legplates", "=ds=#s11#, #a4#", "", ""}; - { 6, 1443, "", "=q4=Jeweled Amulet of Cainwyn", "=ds=#s2#", "", ""}; - { 7, 14558, "", "=q4=Lady Maye's Pendant", "=ds=#s2#", "", ""}; - { 8, 2246, "", "=q4=Myrmidon's Signet", "=ds=#s13#", "", ""}; - { 9, 833, "", "=q4=Lifestone", "=ds=#s14#", "", ""}; - { 10, 14557, "", "=q4=The Lion Horn of Stormwind", "=ds=#s14#", "", ""}; - { 16, 14555, "", "=q4=Alcor's Sunrazor", "=ds=#h1#, #w4#", "", ""}; - { 17, 2244, "", "=q4=Krol Blade", "=ds=#h1#, #w10#", "", ""}; - { 18, 1728, "", "=q4=Teebu's Blazing Longsword", "=ds=#h1#, #w10#", "", ""}; - { 19, 2801, "", "=q4=Blade of Hanna", "=ds=#h2#, #w10#", "", ""}; - { 20, 647, "", "=q4=Destiny", "=ds=#h2#, #w10#", "", ""}; - { 21, 811, "", "=q4=Axe of the Deep Woods", "=ds=#h1#, #w1#", "", ""}; - { 22, 1263, "", "=q4=Brain Hacker", "=ds=#h2#, #w1#", "", ""}; - { 23, 2243, "", "=q4=Hand of Edward the Odd", "=ds=#h1#, #w6#", "", ""}; - { 24, 944, "", "=q4=Elemental Mage Staff", "=ds=#w9#", "", ""}; - { 25, 1168, "", "=q4=Skullflame Shield", "=ds=#w8#", "", ""}; - { 26, 2099, "", "=q4=Dwarven Hand Cannon", "=ds=#w5#", "", ""}; - Next = "WorldEpics4"; - Prev = "WorldEpics2"; - Back = "WORLDEPICS"; - }; - - ----------- - --- PvP --- - ----------- - - ---------------------- - --- Alterac Valley --- - ---------------------- - - AtlasLoot_Data["AVMisc"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "=q5=#b1#"}; - { 2, 19030, "", "=q4=Stormpike Battle Charger", "=ds=#e12#", "50000 #alliance#"}; - { 3, 19045, "", "=q3=Stormpike Battle Standard", "=ds=#e14#", "15000 #alliance#"}; - { 4, 19032, "", "=q1=Stormpike Battle Tabard", "=ds=#s7#", "15000 #alliance#"}; - { 6, 19316, "", "=q2=Ice Threaded Arrow", "=ds=#w17#", "60 #silver# 1 #faction#"}; - { 7, 17348, "", "=q1=Major Healing Draught", "=ds=#e2#", "10 #silver# 8 #faction#"}; - { 8, 17349, "", "=q1=Superior Healing Draught", "=ds=#e2#", "5 #silver# 1 #faction#"}; - { 9, 19301, "", "=q1=Alterac Manna Biscuit", "=ds=#e3#", "70 #silver#"}; - { 10, 19307, "", "=q1=Alterac Heavy Runecloth Bandage", "=ds=#e5#", "80 #silver#"}; - { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", "=q5=#b2#"}; - { 17, 19029, "", "=q4=Horn of the Frostwolf Howler", "=ds=#e12#", "50000 #horde#"}; - { 18, 19046, "", "=q3=Frostwolf Battle Standard", "=ds=#e14#", "15000 #horde#"}; - { 19, 19031, "", "=q1=Frostwolf Battle Tabard", "=ds=#s7#", "15000 #horde#"}; - { 21, 19317, "", "=q2=Ice Threaded Bullet", "=ds=#w18#", "60 #silver# 1 #faction#"}; - { 22, 17351, "", "=q1=Major Mana Draught", "=ds=#e2#", "10 #silver# 8 #faction#"}; - { 23, 17352, "", "=q1=Superior Mana Draught", "=ds=#e2#", "5 #silver# 1 #faction#"}; - { 24, 19318, "", "=q1=Bottled Alterac Spring Water", "=ds=#e4#", "50 #silver#"}; - Next = "AVBlue_A"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["AVBlue_A"] = { - { 2, 19086, "", "=q3=Stormpike Sage's Cloak", "=ds=#s4#", "1600 #alliance#"}; - { 3, 19084, "", "=q3=Stormpike Soldier's Cloak", "=ds=#s4#", "1600 #alliance#"}; - { 4, 19094, "", "=q3=Stormpike Cloth Girdle", "=ds=#s10#, #a1#", "3000 #alliance#"}; - { 5, 19093, "", "=q3=Stormpike Leather Girdle", "=ds=#s10#, #a2#", "3000 #alliance#"}; - { 6, 19092, "", "=q3=Stormpike Mail Girdle", "=ds=#s10#, #a3#", "3000 #alliance#"}; - { 7, 19091, "", "=q3=Stormpike Plate Girdle", "=ds=#s10#, #a4#", "3000 #alliance#"}; - { 8, 19098, "", "=q3=Stormpike Sage's Pendant", "=ds=#s2#", "1600 #alliance#"}; - { 9, 19097, "", "=q3=Stormpike Soldier's Pendant", "=ds=#s2#", "1600 #alliance#"}; - { 10, 19100, "", "=q3=Electrified Dagger", "=ds=#h1#, #w4#", "2400 #alliance#"}; - { 11, 19104, "", "=q3=Stormstrike Hammer", "=ds=#h1#, #w6#", "2400 #alliance#"}; - { 12, 19102, "", "=q3=Crackling Staff", "=ds=#w9#", "3000 #alliance#"}; - { 13, 19320, "", "=q3=Gnoll Skin Bandolier", "=ds=#w20#", "1600 #alliance#"}; - { 14, 19319, "", "=q3=Harpy Hide Quiver", "=ds=#w19#", "1600 #alliance#"}; - { 17, 19325, "", "=q4=Don Julio's Band", "=ds=#s13#", "5000 #faction#"}; - { 18, 21563, "", "=q4=Don Rodrigo's Band", "=ds=#s13#", "5000 #faction#"}; - { 19, 19312, "", "=q4=Lei of the Lifegiver", "=ds=#s15#", "5000 #faction#"}; - { 20, 19315, "", "=q4=Therazane's Touch", "=ds=#s15#", "5000 #faction#"}; - { 21, 19308, "", "=q4=Tome of Arcane Domination", "=ds=#s15#", "5000 #faction#"}; - { 22, 19309, "", "=q4=Tome of Shadow Force", "=ds=#s15#", "5000 #faction#"}; - { 23, 19311, "", "=q4=Tome of Fiery Arcana", "=ds=#s15#", "5000 #faction#"}; - { 24, 19310, "", "=q4=Tome of the Ice Lord", "=ds=#s15#", "5000 #faction#"}; - { 25, 19324, "", "=q4=The Lobotomizer", "=ds=#h1#, #w4#", "5000 #faction#"}; - { 26, 19321, "", "=q4=The Immovable Object", "=ds=#w8#", "5000 #faction#"}; - { 27, 19323, "", "=q4=The Unstoppable Force", "=ds=#h2#, #w6#", "5000 #faction#"}; - Prev = "AVMisc"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["AVBlue_H"] = { - { 2, 19085, "", "=q3=Frostwolf Advisor's Cloak", "=ds=#s4#", "1600 #horde#"}; - { 3, 19083, "", "=q3=Frostwolf Legionnaire's Cloak", "=ds=#s4#", "1600 #horde#"}; - { 4, 19090, "", "=q3=Frostwolf Cloth Belt", "=ds=#s10#, #a1#", "3000 #horde#"}; - { 5, 19089, "", "=q3=Frostwolf Leather Belt", "=ds=#s10#, #a2#", "3000 #horde#"}; - { 6, 19088, "", "=q3=Frostwolf Mail Belt", "=ds=#s10#, #a3#", "3000 #horde#"}; - { 7, 19087, "", "=q3=Frostwolf Plate Belt", "=ds=#s10#, #a4#", "3000 #horde#"}; - { 8, 19096, "", "=q3=Frostwolf Advisor's Pendant", "=ds=#s2#", "1600 #horde#"}; - { 9, 19095, "", "=q3=Frostwolf Legionnaire's Pendant", "=ds=#s2#", "1600 #horde#"}; - { 10, 19099, "", "=q3=Glacial Blade", "=ds=#h1#, #w4#", "2400 #horde#"}; - { 11, 19103, "", "=q3=Frostbite", "=ds=#h1#, #w6#", "2400 #horde#"}; - { 12, 19101, "", "=q3=Whiteout Staff", "=ds=#w9#", "3000 #horde#"}; - { 13, 19320, "", "=q3=Gnoll Skin Bandolier", "=ds=#w20#", "1600 #horde#"}; - { 14, 19319, "", "=q3=Harpy Hide Quiver", "=ds=#w19#", "1600 #horde#"}; - { 17, 19325, "", "=q4=Don Julio's Band", "=ds=#s13#", "5000 #faction#"}; - { 18, 21563, "", "=q4=Don Rodrigo's Band", "=ds=#s13#", "5000 #faction#"}; - { 19, 19312, "", "=q4=Lei of the Lifegiver", "=ds=#s15#", "5000 #faction#"}; - { 20, 19315, "", "=q4=Therazane's Touch", "=ds=#s15#", "5000 #faction#"}; - { 21, 19308, "", "=q4=Tome of Arcane Domination", "=ds=#s15#", "5000 #faction#"}; - { 22, 19309, "", "=q4=Tome of Shadow Force", "=ds=#s15#", "5000 #faction#"}; - { 23, 19311, "", "=q4=Tome of Fiery Arcana", "=ds=#s15#", "5000 #faction#"}; - { 24, 19310, "", "=q4=Tome of the Ice Lord", "=ds=#s15#", "5000 #faction#"}; - { 25, 19324, "", "=q4=The Lobotomizer", "=ds=#h1#, #w4#", "5000 #faction#"}; - { 26, 19321, "", "=q4=The Immovable Object", "=ds=#w8#", "5000 #faction#"}; - { 27, 19323, "", "=q4=The Unstoppable Force", "=ds=#h2#, #w6#", "5000 #faction#"}; - Prev = "AVMisc"; - Back = "PVPMENU2"; - }; - - -------------------- - --- Arathi Basin --- - -------------------- - - AtlasLoot_Data["ABMisc_A"] = { - { 2, 17349, "", "=q1=Superior Healing Draught", "=ds=", "5 #silver# 1 #alliance#", ""}; - { 3, 17352, "", "=q1=Superior Mana Draught", "=ds=", "5 #silver# 1 #alliance#", ""}; - { 4, 20225, "", "=q1=Highlander's Enriched Ration", "=ds=", "18 #silver#", ""}; - { 5, 20227, "", "=q1=Highlander's Iron Ration", "=ds=", "13,5 #silver#", ""}; - { 6, 20226, "", "=q1=Highlander's Field Ration", "=ds=", "9 #silver#", ""}; - { 7, 20243, "", "=q1=Highlander's Runecloth Bandage", "=ds=", "18 #silver#", ""}; - { 8, 20237, "", "=q1=Highlander's Mageweave Bandage", "=ds=", "13,5 #silver#", ""}; - { 9, 20244, "", "=q1=Highlander's Silk Bandage", "=ds=", "9 #silver#", ""}; - { 11, 21119, "", "=q3=Talisman of Arathor", "=ds=", "300 #alliance#", ""}; - { 12, 21118, "", "=q3=Talisman of Arathor", "=ds=", "300 #alliance#", ""}; - { 13, 21117, "", "=q3=Talisman of Arathor", "=ds=", "400 #alliance#", ""}; - { 14, 20071, "", "=q3=Talisman of Arathor", "=ds=", "3000 #alliance#", ""}; - { 17, 0, "INV_BannerPVP_02", "=q6="..AL["Level 60 Rewards"], "=q5=#b5#" }; - { 18, 20073, "", "=q4=Cloak of the Honor Guard", "=ds=", "5000 #alliance#", ""}; - { 19, 20070, "", "=q4=Sageclaw", "=ds=", "9000 #alliance#", ""}; - { 20, 20069, "", "=q4=Ironbark Staff", "=ds=", "16000 #alliance#", ""}; - Next = "AB4049_A"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["AB4049_A"] = { - { 1, 0, "INV_BannerPVP_02", "=q6="..AL["Level 40-49 Rewards"], "=q5=#b5#"}; - { 2, 20097, "", "=q3=Highlander's Cloth Girdle", "=ds=", "400 #alliance#", ""}; - { 3, 20094, "", "=q3=Highlander's Cloth Boots", "=ds=", "400 #alliance#", ""}; - { 4, 20115, "", "=q3=Highlander's Leather Girdle", "=ds=", "400 #alliance#", ""}; - { 5, 20103, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "400 #alliance#", ""}; - { 6, 20112, "", "=q3=Highlander's Leather Boots", "=ds=", "400 #alliance#", ""}; - { 7, 20100, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "400 #alliance#", ""}; - { 8, 20089, "", "=q3=Highlander's Chain Girdle", "=ds=", "300 #alliance#", ""}; - { 9, 20088, "", "=q3=Highlander's Chain Girdle", "=ds=", "400 #alliance#", ""}; - { 10, 20119, "", "=q3=Highlander's Mail Girdle", "=ds=", "300 #alliance#", ""}; - { 11, 20118, "", "=q3=Highlander's Mail Girdle", "=ds=", "400 #alliance#", ""}; - { 12, 20092, "", "=q3=Highlander's Chain Greaves", "=ds=", "300 #alliance#", ""}; - { 13, 20091, "", "=q3=Highlander's Chain Greaves", "=ds=", "400 #alliance#", ""}; - { 14, 20122, "", "=q3=Highlander's Mail Greaves", "=ds=", "300 #alliance#", ""}; - { 15, 20121, "", "=q3=Highlander's Mail Greaves", "=ds=", "400 #alliance#", ""}; - { 17, 20107, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "300 #alliance#", ""}; - { 18, 20106, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "400 #alliance#", ""}; - { 19, 20125, "", "=q3=Highlander's Plate Girdle", "=ds=", "300 #alliance#", ""}; - { 20, 20124, "", "=q3=Highlander's Plate Girdle", "=ds=", "400 #alliance#", ""}; - { 21, 20110, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "300 #alliance#", ""}; - { 22, 20109, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "400 #alliance#", ""}; - { 23, 20128, "", "=q3=Highlander's Plate Greaves", "=ds=", "300 #alliance#", ""}; - { 24, 20127, "", "=q3=Highlander's Plate Greaves", "=ds=", "400 #alliance#", ""}; - Prev = "ABMisc_A"; - Next = "AB2039_A"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["AB2039_A"] = { - { 1, 0, "INV_BannerPVP_02", "=q6="..AL["Level 30-39 Rewards"], "=q5=#b5#"}; - { 2, 20098, "", "=q3=Highlander's Cloth Girdle", "=ds=", "300 #alliance#", ""}; - { 3, 20095, "", "=q3=Highlander's Cloth Boots", "=ds=", "300 #alliance#", ""}; - { 4, 20116, "", "=q3=Highlander's Leather Girdle", "=ds=", "300 #alliance#", ""}; - { 5, 20104, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "300 #alliance#", ""}; - { 6, 20113, "", "=q3=Highlander's Leather Boots", "=ds=", "300 #alliance#", ""}; - { 7, 20101, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "300 #alliance#", ""}; - { 16, 0, "INV_BannerPVP_02", "=q6="..AL["Level 20-29 Rewards"], "=q5=#b5#" }; - { 17, 20099, "", "=q3=Highlander's Cloth Girdle", "=ds=", "300 #alliance#", ""}; - { 18, 20096, "", "=q3=Highlander's Cloth Boots", "=ds=", "300 #alliance#", ""}; - { 19, 20117, "", "=q3=Highlander's Leather Girdle", "=ds=", "300 #alliance#", ""}; - { 20, 20105, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "300 #alliance#", ""}; - { 21, 20120, "", "=q3=Highlander's Mail Girdle", "=ds=", "300 #alliance#", ""}; - { 22, 20090, "", "=q3=Highlander's Padded Girdle", "=ds=", "300 #alliance#", ""}; - { 23, 20114, "", "=q3=Highlander's Leather Boots", "=ds=", "300 #alliance#", ""}; - { 24, 20102, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "300 #alliance#", ""}; - { 25, 20123, "", "=q3=Highlander's Mail Greaves", "=ds=", "300 #alliance#", ""}; - { 26, 20093, "", "=q3=Highlander's Padded Greaves", "=ds=", "300 #alliance#", ""}; - { 27, 20108, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "300 #alliance#", ""}; - { 28, 20126, "", "=q3=Highlander's Mail Girdle", "=ds=", "300 #alliance#", ""}; - { 29, 20111, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "300 #alliance#", ""}; - { 30, 20129, "", "=q3=Highlander's Mail Greaves", "=ds=", "300 #alliance#", ""}; - Prev = "AB4049_A"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["ABMisc_H"] = { - { 2, 17349, "", "=q1=Superior Healing Draught", "=ds=", "5 #silver# 5 #horde#", ""}; - { 3, 17352, "", "=q1=Superior Mana Draught", "=ds=", "5 #silver# 5 #horde#", ""}; - { 4, 20222, "", "=q1=Defiler's Enriched Ration", "=ds=", "18 #silver#", ""}; - { 5, 20224, "", "=q1=Defiler's Iron Ration", "=ds=", "15 #silver#", ""}; - { 6, 20223, "", "=q1=Defiler's Field Ration", "=ds=", "9 #silver#", ""}; - { 7, 20234, "", "=q1=Defiler's Runecloth Bandage", "=ds=", "18 #silver#", ""}; - { 8, 20232, "", "=q1=Defiler's Mageweave Bandage", "=ds=", "15 #silver#", ""}; - { 9, 20235, "", "=q1=Defiler's Silk Bandage", "=ds=", "9 #silver#", ""}; - { 11, 21116, "", "=q3=Defiler's Talisman", "=ds=", "300 #horde#", ""}; - { 12, 21120, "", "=q3=Defiler's Talisman", "=ds=", "300 #horde#", ""}; - { 13, 21115, "", "=q3=Defiler's Talisman", "=ds=", "400 #horde#", ""}; - { 14, 20072, "", "=q3=Defiler's Talisman", "=ds=", "3000 #horde#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6="..AL["Level 60 Rewards"], "=q5=#b6#"}; - { 17, 20068, "", "=q4=Deathguard's Cloak", "=ds=", "5000 #horde#", ""}; - { 25, 20214, "", "=q4=Mindfang", "=ds=", "9000 #horde#", ""}; - { 26, 20220, "", "=q4=Ironbark Staff", "=ds=", "16000 #horde#", ""}; - Next = "AB4049_H"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["AB4049_H"] = { - { 1, 0, "INV_BannerPVP_02", "=q6="..AL["Level 40-49 Rewards"], "=q5=#b6#"}; - { 2, 20165, "", "=q3=Defiler's Cloth Girdle", "=ds=", "400 #horde#", ""}; - { 3, 20160, "", "=q3=Defiler's Cloth Boots", "=ds=", "400 #horde#", ""}; - { 4, 20193, "", "=q3=Defiler's Leather Girdle", "=ds=", "400 #horde#", ""}; - { 5, 20174, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "400 #horde#", ""}; - { 6, 20189, "", "=q3=Defiler's Leather Boots", "=ds=", "400 #horde#", ""}; - { 7, 20170, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "400 #horde#", ""}; - { 8, 20153, "", "=q3=Defiler's Chain Girdle", "=ds=", "300 #horde#", ""}; - { 9, 20151, "", "=q3=Defiler's Chain Girdle", "=ds=", "400 #horde#", ""}; - { 10, 20198, "", "=q3=Defiler's Mail Girdle", "=ds=", "300 #horde#", ""}; - { 11, 20196, "", "=q3=Defiler's Mail Girdle", "=ds=", "400 #horde#", ""}; - { 12, 20156, "", "=q3=Defiler's Chain Greaves", "=ds=", "300 #horde#", ""}; - { 13, 20155, "", "=q3=Defiler's Chain Greaves", "=ds=", "400 #horde#", ""}; - { 14, 20200, "", "=q3=Defiler's Mail Greaves", "=ds=", "300 #horde#", ""}; - { 15, 20202, "", "=q3=Defiler's Mail Greaves", "=ds=", "400 #horde#", ""}; - { 16, 20180, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "300 #horde#", ""}; - { 17, 20179, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "400 #horde#", ""}; - { 18, 20206, "", "=q3=Defiler's Plate Girdle", "=ds=", "300 #horde#", ""}; - { 19, 20205, "", "=q3=Defiler's Plate Girdle", "=ds=", "400 #horde#", ""}; - { 20, 20183, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "300 #horde#", ""}; - { 21, 20185, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "400 #horde#", ""}; - { 22, 20209, "", "=q3=Defiler's Plate Greaves", "=ds=", "300 #horde#", ""}; - { 23, 20211, "", "=q3=Defiler's Plate Greaves", "=ds=", "400 #horde#", ""}; - Prev = "ABMisc_H"; - Next = "AB2039_H"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["AB2039_H"] = { - { 1, 0, "INV_BannerPVP_02", "=q6="..AL["Level 30-39 Rewards"], "=q5=#b6#"}; - { 2, 20166, "", "=q3=Defiler's Cloth Girdle", "=ds=", "300 #horde#", ""}; - { 3, 20161, "", "=q3=Defiler's Cloth Boots", "=ds=", "300 #horde#", ""}; - { 4, 20192, "", "=q3=Defiler's Leather Girdle", "=ds=", "300 #horde#", ""}; - { 5, 20173, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "300 #horde#", ""}; - { 6, 20187, "", "=q3=Defiler's Leather Boots", "=ds=", "300 #horde#", ""}; - { 7, 20168, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "300 #horde#", ""}; - { 16, 0, "INV_BannerPVP_02", "=q6="..AL["Level 20-29 Rewards"], "=q5=#b6#" }; - { 17, 20164, "", "=q3=Defiler's Cloth Girdle", "=ds=", "300 #horde#", ""}; - { 18, 20162, "", "=q3=Defiler's Cloth Boots", "=ds=", "300 #horde#", ""}; - { 19, 20191, "", "=q3=Defiler's Leather Girdle", "=ds=", "300 #horde#", ""}; - { 20, 20172, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "300 #horde#", ""}; - { 21, 20152, "", "=q3=Defiler's Chain Girdle", "=ds=", "300 #horde#", ""}; - { 22, 20197, "", "=q3=Defiler's Padded Girdle", "=ds=", "300 #horde#", ""}; - { 23, 20188, "", "=q3=Defiler's Leather Boots", "=ds=", "300 #horde#", ""}; - { 24, 20169, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "300 #horde#", ""}; - { 25, 20201, "", "=q3=Defiler's Mail Greaves", "=ds=", "300 #horde#", ""}; - { 26, 20157, "", "=q3=Defiler's Chain Greaves", "=ds=", "300 #horde#", ""}; - { 27, 20178, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "300 #horde#", ""}; - { 28, 20207, "", "=q3=Defiler's Mail Girdle", "=ds=", "300 #horde#", ""}; - { 29, 20182, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "300 #horde#", ""}; - { 30, 20210, "", "=q3=Defiler's Mail Greaves", "=ds=", "300 #horde#", ""}; - Prev = "AB4049_H"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["ABSets1_A"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#absa1#", "=ec1=#c5#, #c3#, #c8#"}; - { 2, 20061, "", "=q4=Highlander's Epaulets", "=ds=", "9000 #alliance#", ""}; - { 3, 20047, "", "=q3=Highlander's Cloth Girdle", "=ds=", "3000 #alliance#", ""}; - { 4, 20054, "", "=q3=Highlander's Cloth Boots", "=ds=", "3000 #alliance#", ""}; - { 6, 0, "INV_BannerPVP_02", "=q6=#absa2#", "=ec1=#c6#, #c1#"}; - { 7, 20059, "", "=q4=Highlander's Leather Shoulders", "=ds=", "9000 #alliance#", ""}; - { 8, 20045, "", "=q3=Highlander's Leather Girdle", "=ds=", "3000 #alliance#", ""}; - { 9, 20052, "", "=q3=Highlander's Leather Boots", "=ds=", "3000 #alliance#", ""}; - { 11, 0, "INV_BannerPVP_02", "=q6=#absa3#", "=ec1=#c6#, #c1#"}; - { 12, 20060, "", "=q4=Highlander's Lizardhide Shoulders", "=ds=", "9000 #alliance#", ""}; - { 13, 20046, "", "=q3=Highlander's Lizardhide Girdle", "=ds=", "3000 #alliance#", ""}; - { 14, 20053, "", "=q3=Highlander's Lizardhide Boots", "=ds=", "3000 #alliance#", ""}; - { 16, 0, "INV_BannerPVP_02", "=q6=#absa4#", "=ec1=#c2#, #c7#"}; - { 17, 20055, "", "=q4=Highlander's Chain Pauldrons", "=ds=", "9000 #alliance#", ""}; - { 18, 20043, "", "=q3=Highlander's Chain Girdle", "=ds=", "3000 #alliance#", ""}; - { 19, 20050, "", "=q3=Highlander's Chain Greaves", "=ds=", "3000 #alliance#", ""}; - { 21, 0, "INV_BannerPVP_02", "=q6=#absa5#", "=ec1=#c2#, #c7#"}; - { 22, 20056, "", "=q4=Highlander's Mail Pauldrons", "=ds=", "9000 #alliance#", ""}; - { 23, 20044, "", "=q3=Highlander's Mail Girdle", "=ds=", "3000 #alliance#", ""}; - { 24, 20051, "", "=q3=Highlander's Mail Greaves", "=ds=", "3000 #alliance#", ""}; - { 26, 0, "INV_BannerPVP_02", "=q6=#absa6#", "=ec1=#c9#, #c4#"}; - { 27, 20057, "", "=q4=Highlander's Plate Spaulders", "=ds=", "9000 #alliance#", ""}; - { 28, 20041, "", "=q3=Highlander's Plate Girdle", "=ds=", "3000 #alliance#", ""}; - { 29, 20048, "", "=q3=Highlander's Plate Greaves", "=ds=", "3000 #alliance#", ""}; - Next = "ABSets2_A"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["ABSets1_H"] = { - { 1, 0, "INV_BannerPVP_01", "=q6=#absh1#", "=ec1=#c5#, #c3#, #c8#"}; - { 2, 20176, "", "=q4=Defiler's Epaulets", "=ds=", "9000 #horde#", ""}; - { 3, 20163, "", "=q3=Defiler's Cloth Girdle", "=ds=", "3000 #horde#", ""}; - { 4, 20159, "", "=q3=Defiler's Cloth Boots", "=ds=", "3000 #horde#", ""}; - { 6, 0, "INV_BannerPVP_01", "=q6=#absh2#", "=ec1=#c6#, #c1#"}; - { 7, 20194, "", "=q4=Defiler's Leather Shoulders", "=ds=", "9000 #horde#", ""}; - { 8, 20190, "", "=q3=Defiler's Leather Girdle", "=ds=", "3000 #horde#", ""}; - { 9, 20186, "", "=q3=Defiler's Leather Boots", "=ds=", "3000 #horde#", ""}; - { 11, 0, "INV_BannerPVP_01", "=q6=#absh3#", "=ec1=#c6#, #c1#"}; - { 12, 20175, "", "=q4=Defiler's Lizardhide Shoulders", "=ds=", "9000 #horde#", ""}; - { 13, 20171, "", "=q3=Defiler's Lizardhide Girdle", "=ds=", "3000 #horde#", ""}; - { 14, 20167, "", "=q3=Defiler's Lizardhide Boots", "=ds=", "3000 #horde#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6=#absh4#", "=ec1=#c2#, #c7#"}; - { 17, 20158, "", "=q3=Defiler's Chain Pauldrons", "=ds=", "9000 #horde#", ""}; - { 18, 20150, "", "=q3=Defiler's Chain Girdle", "=ds=", "3000 #horde#", ""}; - { 19, 20154, "", "=q3=Defiler's Chain Greaves", "=ds=", "3000 #horde#", ""}; - { 21, 0, "INV_BannerPVP_01", "=q6=#absh5#", "=ec1=#c2#, #c7#"}; - { 22, 20203, "", "=q4=Defiler's Mail Pauldrons", "=ds=", "9000 #horde#", ""}; - { 23, 20195, "", "=q3=Defiler's Mail Girdle", "=ds=", "3000 #horde#", ""}; - { 24, 20199, "", "=q3=Defiler's Mail Greaves", "=ds=", "3000 #horde#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6=#absh6#", "=ec1=#c9#, #c4#"}; - { 17, 20212, "", "=q4=Defiler's Plate Spaulders", "=ds=", "9000 #horde#", ""}; - { 18, 20204, "", "=q3=Defiler's Plate Girdle", "=ds=", "3000 #horde#", ""}; - { 19, 20208, "", "=q3=Defiler's Plate Greaves", "=ds=", "3000 #horde#", ""}; - Next = "ABSets2_H"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["ABSets2_A"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#absa7#", "=ec1=#c4#"}; - { 2, 20058, "", "=q4=Highlander's Lamellar Spaulders", "=ds=", "9000 #alliance#", ""}; - { 3, 20042, "", "=q3=Highlander's Lamellar Girdle", "=ds=", "3000 #alliance#", ""}; - { 4, 20049, "", "=q3=Highlander's Lamellar Greaves", "=ds=", "3000 #alliance#", ""}; - Prev = "ABSets1_A"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["ABSets2_H"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#absa7#", "=ec1=#c4#"}; - { 2, 20184, "", "=q4=Defiler's Lamellar Spaulders", "=ds=", "9000 #horde#", ""}; - { 3, 20177, "", "=q3=Defiler's Lamellar Girdle", "=ds=", "3000 #horde#", ""}; - { 4, 20181, "", "=q3=Defiler's Lamellar Greaves", "=ds=", "3000 #horde#", ""}; - Prev = "ABSets1_H"; - Back = "PVPMENU2"; - }; - - --------------------- - --- Warsong Gulch --- - --------------------- - - AtlasLoot_Data["WSGMisc"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#m7#", "=q5=#b3#"}; - { 2, 19506, "", "=q1=Silverwing Battle Tabard", "=ds=", "12000 #faction#", ""}; - { 5, 17348, "", "=q1=Major Healing Draught", "=ds=", "10 #silver# 2 #faction#", ""}; - { 6, 17349, "", "=q1=Superior Healing Draught", "=ds=", "5 #silver# 5 #faction#", ""}; - { 7, 19060, "", "=q1=Warsong Gulch Enriched Ration", "=ds=", "20 #silver#", ""}; - { 8, 19062, "", "=q1=Warsong Gulch Field Ration", "=ds=", "10 #silver#", ""}; - { 9, 19067, "", "=q1=Warsong Gulch Mageweave Bandage", "=ds=", "15 #silver#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6=#m6#", "=q5=#b4#"}; - { 17, 19505, "", "=q1=Warsong Battle Tabard", "=ds=", "12000 #faction#", ""}; - { 20, 17351, "", "=q1=Major Mana Draught", "=ds=", "10 #silver# 2 #faction#", ""}; - { 21, 17352, "", "=q1=Superior Mana Draught", "=ds=", "5 #silver# 5 #faction#", ""}; - { 22, 19061, "", "=q1=Warsong Gulch Iron Ration", "=ds=", "15 #silver#", ""}; - { 23, 19066, "", "=q1=Warsong Gulch Runecloth Bandage", "=ds=", "20 #silver#", ""}; - { 24, 19068, "", "=q1=Warsong Gulch Silk Bandage", "=ds=", "10 #silver#", ""}; - Next = "WSGAccessories_A"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["WSGAccessories_A"] = { - { 1, 20428, "", "=q3=Caretaker's Cape", "=ds=", "100 #alliance#", ""}; - { 2, 19533, "", "=q3=Caretaker's Cape", "=ds=", "100 #alliance#", ""}; - { 3, 19532, "", "=q3=Caretaker's Cape", "=ds=", "300 #alliance#", ""}; - { 4, 19531, "", "=q3=Caretaker's Cape", "=ds=", "300 #alliance#", ""}; - { 5, 19530, "", "=q3=Caretaker's Cape", "=ds=", "1600 #alliance#", ""}; - { 7, 20444, "", "=q3=Sentinel's Medallion", "=ds=", "100 #alliance#", ""}; - { 8, 19541, "", "=q3=Sentinel's Medallion", "=ds=", "100 #alliance#", ""}; - { 9, 19540, "", "=q3=Sentinel's Medallion", "=ds=", "300 #alliance#", ""}; - { 10, 19539, "", "=q3=Sentinel's Medallion", "=ds=", "300 #alliance#", ""}; - { 11, 19538, "", "=q3=Sentinel's Medallion", "=ds=", "1600 #alliance#", ""}; - { 13, 21568, "", "=q3=Rune of Duty", "=ds=", "300 #alliance#", ""}; - { 14, 21567, "", "=q3=Rune of Duty", "=ds=", "300 #alliance#", ""}; - { 16, 20431, "", "=q3=Lorekeeper's Ring", "=ds=", "100 #alliance#", ""}; - { 17, 19525, "", "=q3=Lorekeeper's Ring", "=ds=", "100 #alliance#", ""}; - { 18, 19524, "", "=q3=Lorekeeper's Ring", "=ds=", "300 #alliance#", ""}; - { 19, 19523, "", "=q3=Lorekeeper's Ring", "=ds=", "300 #alliance#", ""}; - { 20, 19522, "", "=q3=Lorekeeper's Ring", "=ds=", "1600 #alliance#", ""}; - { 22, 20439, "", "=q3=Protector's Band", "=ds=", "100 #alliance#", ""}; - { 23, 19517, "", "=q3=Protector's Band", "=ds=", "100 #alliance#", ""}; - { 24, 19515, "", "=q3=Protector's Band", "=ds=", "300 #alliance#", ""}; - { 25, 19516, "", "=q3=Protector's Band", "=ds=", "300 #alliance#", ""}; - { 26, 19514, "", "=q3=Protector's Band", "=ds=", "1600 #alliance#", ""}; - { 28, 21566, "", "=q3=Rune of Perfection", "=ds=", "300 #alliance#", ""}; - { 29, 21565, "", "=q3=Rune of Perfection", "=ds=", "300 #alliance#", ""}; - Next = "WSGWeapons_A"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["WSGAccessories_H"] = { - { 1, 20427, "", "=q3=Battle Healer's Cloak", "=ds=", "100 #horde#", ""}; - { 2, 19529, "", "=q3=Battle Healer's Cloak", "=ds=", "100 #horde#", ""}; - { 3, 19528, "", "=q3=Battle Healer's Cloak", "=ds=", "300 #horde#", ""}; - { 4, 19527, "", "=q3=Battle Healer's Cloak", "=ds=", "300 #horde#", ""}; - { 5, 19526, "", "=q3=Battle Healer's Cloak", "=ds=", "1600 #horde#", ""}; - { 7, 20442, "", "=q3=Scout's Medallion", "=ds=", "100 #horde#", ""}; - { 8, 19537, "", "=q3=Scout's Medallion", "=ds=", "100 #horde#", ""}; - { 9, 19536, "", "=q3=Scout's Medallion", "=ds=", "300 #horde#", ""}; - { 10, 19535, "", "=q3=Scout's Medallion", "=ds=", "300 #horde#", ""}; - { 11, 19534, "", "=q3=Scout's Medallion", "=ds=", "1600 #horde#", ""}; - { 13, 21568, "", "=q3=Rune of Duty", "=ds=", "300 #horde#", ""}; - { 14, 21567, "", "=q3=Rune of Duty", "=ds=", "300 #horde#", ""}; - { 16, 20426, "", "=q3=Advisor's Ring", "=ds=", "100 #horde#", ""}; - { 17, 19521, "", "=q3=Advisor's Ring", "=ds=", "100 #horde#", ""}; - { 18, 19520, "", "=q3=Advisor's Ring", "=ds=", "300 #horde#", ""}; - { 19, 19519, "", "=q3=Advisor's Ring", "=ds=", "300 #horde#", ""}; - { 20, 19518, "", "=q3=Advisor's Ring", "=ds=", "1600 #horde#", ""}; - { 22, 20429, "", "=q3=Legionnaire's Band", "=ds=", "100 #horde#", ""}; - { 23, 19513, "", "=q3=Legionnaire's Band", "=ds=", "100 #horde#", ""}; - { 24, 19512, "", "=q3=Legionnaire's Band", "=ds=", "300 #horde#", ""}; - { 25, 19511, "", "=q3=Legionnaire's Band", "=ds=", "300 #horde#", ""}; - { 26, 19510, "", "=q3=Legionnaire's Band", "=ds=", "1600 #horde#", ""}; - { 28, 21566, "", "=q3=Rune of Perfection", "=ds=", "300 #horde#", ""}; - { 29, 21565, "", "=q3=Rune of Perfection", "=ds=", "300 #horde#", ""}; - Next = "WSGWeapons_H"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["WSGWeapons_A"] = { - { 1, 20443, "", "=q3=Sentinel's Blade", "=ds=", "300 #alliance#", ""}; - { 2, 19549, "", "=q3=Sentinel's Blade", "=ds=", "400 #alliance#", ""}; - { 3, 19548, "", "=q3=Sentinel's Blade", "=ds=", "500 #alliance#", ""}; - { 4, 19547, "", "=q3=Sentinel's Blade", "=ds=", "700 #alliance#", ""}; - { 5, 19546, "", "=q3=Sentinel's Blade", "=ds=", "6000 #alliance#", ""}; - { 7, 20440, "", "=q3=Protector's Sword", "=ds=", "300 #alliance#", ""}; - { 8, 19557, "", "=q3=Protector's Sword", "=ds=", "400 #alliance#", ""}; - { 9, 19556, "", "=q3=Protector's Sword", "=ds=", "500 #alliance#", ""}; - { 10, 19555, "", "=q3=Protector's Sword", "=ds=", "700 #alliance#", ""}; - { 11, 19554, "", "=q3=Protector's Sword", "=ds=", "6000 #alliance#", ""}; - { 16, 20434, "", "=q3=Lorekeeper's Staff", "=ds=", "500 #alliance#", ""}; - { 17, 19573, "", "=q3=Lorekeeper's Staff", "=ds=", "700 #alliance#", ""}; - { 18, 19572, "", "=q3=Lorekeeper's Staff", "=ds=", "1000 #alliance#", ""}; - { 19, 19571, "", "=q3=Lorekeeper's Staff", "=ds=", "5000 #alliance#", ""}; - { 20, 19570, "", "=q3=Lorekeeper's Staff", "=ds=", "15000 #alliance#", ""}; - { 22, 20438, "", "=q3=Outrunner's Bow", "=ds=", "300 #alliance#", ""}; - { 23, 19565, "", "=q3=Outrunner's Bow", "=ds=", "400 #alliance#", ""}; - { 24, 19564, "", "=q3=Outrunner's Bow", "=ds=", "500 #alliance#", ""}; - { 25, 19563, "", "=q3=Outrunner's Bow", "=ds=", "700 #alliance#", ""}; - { 26, 19562, "", "=q3=Outrunner's Bow", "=ds=", "6000 #alliance#", ""}; - Prev = "WSGAccessories_A"; - Next = "WSGArmor_A"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["WSGWeapons_H"] = { - { 1, 20441, "", "=q3=Scout's Blade", "=ds=", "300 #horde#", ""}; - { 2, 19545, "", "=q3=Scout's Blade", "=ds=", "400 #horde#", ""}; - { 3, 19544, "", "=q3=Scout's Blade", "=ds=", "500 #horde#", ""}; - { 4, 19543, "", "=q3=Scout's Blade", "=ds=", "700 #horde#", ""}; - { 5, 19542, "", "=q3=Scout's Blade", "=ds=", "6000 #horde#", ""}; - { 7, 20430, "", "=q3=Legionnaire's Sword", "=ds=", "300 #horde#", ""}; - { 8, 19553, "", "=q3=Legionnaire's Sword", "=ds=", "400 #horde#", ""}; - { 9, 19552, "", "=q3=Legionnaire's Sword", "=ds=", "500 #horde#", ""}; - { 10, 19551, "", "=q3=Legionnaire's Sword", "=ds=", "700 #horde#", ""}; - { 11, 19550, "", "=q3=Legionnaire's Sword", "=ds=", "6000 #horde#", ""}; - { 16, 20425, "", "=q3=Advisor's Gnarled Staff", "=ds=", "500 #horde#", ""}; - { 17, 19569, "", "=q3=Advisor's Gnarled Staff", "=ds=", "700 #horde#", ""}; - { 18, 19568, "", "=q3=Advisor's Gnarled Staff", "=ds=", "1000 #horde#", ""}; - { 19, 19567, "", "=q3=Advisor's Gnarled Staff", "=ds=", "5000 #horde#", ""}; - { 20, 19566, "", "=q3=Advisor's Gnarled Staff", "=ds=", "15000 #horde#", ""}; - { 22, 20437, "", "=q3=Outrider's Bow", "=ds=", "300 #horde#", ""}; - { 23, 19561, "", "=q3=Outrider's Bow", "=ds=", "400 #horde#", ""}; - { 24, 19560, "", "=q3=Outrider's Bow", "=ds=", "500 #horde#", ""}; - { 25, 19559, "", "=q3=Outrider's Bow", "=ds=", "700 #horde#", ""}; - { 26, 19558, "", "=q3=Outrider's Bow", "=ds=", "6000 #horde#", ""}; - Prev = "WSGAccessories_H"; - Next = "WSGArmor_H"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["WSGArmor_A"] = { - { 1, 19597, "", "=q4=Dryad's Wrist Bindings", "=ds=", "500 #alliance#", ""}; - { 2, 19596, "", "=q4=Dryad's Wrist Bindings", "=ds=", "700 #alliance#", ""}; - { 3, 19595, "", "=q4=Dryad's Wrist Bindings", "=ds=", "5000 #alliance#", ""}; - { 5, 19590, "", "=q4=Forest Stalker's Bracers", "=ds=", "500 #alliance#", ""}; - { 6, 19589, "", "=q4=Forest Stalker's Bracers", "=ds=", "700 #alliance#", ""}; - { 7, 19587, "", "=q4=Forest Stalker's Bracers", "=ds=", "5000 #alliance#", ""}; - { 9, 19584, "", "=q4=Windtalker's Wristguards", "=ds=", "500 #alliance#", ""}; - { 10, 19583, "", "=q4=Windtalker's Wristguards", "=ds=", "700 #alliance#", ""}; - { 11, 19582, "", "=q4=Windtalker's Wristguards", "=ds=", "5000 #alliance#", ""}; - { 13, 19581, "", "=q4=Berserker Bracers", "=ds=", "500 #alliance#", ""}; - { 14, 19580, "", "=q4=Berserker Bracers", "=ds=", "700 #alliance#", ""}; - { 15, 19578, "", "=q4=Berserker Bracers", "=ds=", "5000 #alliance#", ""}; - { 16, 22752, "", "=q4=Sentinel's Silk Leggings", "=ds=", "9000 #alliance#", ""}; - { 18, 22749, "", "=q4=Sentinel's Leather Pants", "=ds=", "9000 #alliance#", ""}; - { 19, 22750, "", "=q4=Sentinel's Lizardhide Pants", "=ds=", "9000 #alliance#", ""}; - { 21, 22748, "", "=q4=Sentinel's Chain Leggings", "=ds=", "9000 #alliance#", ""}; - { 22, 30497, "", "=q4=Sentinel's Mail Leggings", "=ds=", "9000 #alliance#", ""}; - { 24, 22753, "", "=q4=Sentinel's Lamellar Legguards", "=ds=", "9000 #alliance#", ""}; - { 25, 22672, "", "=q4=Sentinel's Plate Legguards", "=ds=", "9000 #alliance#", ""}; - Prev = "WSGWeapons_A"; - Back = "PVPMENU2"; - }; - - AtlasLoot_Data["WSGArmor_H"] = { - { 1, 19597, "", "=q4=Dryad's Wrist Bindings", "=ds=", "500 #horde#", ""}; - { 2, 19596, "", "=q4=Dryad's Wrist Bindings", "=ds=", "700 #horde#", ""}; - { 3, 19595, "", "=q4=Dryad's Wrist Bindings", "=ds=", "5000 #horde#", ""}; - { 5, 19590, "", "=q4=Forest Stalker's Bracers", "=ds=", "500 #horde#", ""}; - { 6, 19589, "", "=q4=Forest Stalker's Bracers", "=ds=", "700 #horde#", ""}; - { 7, 19587, "", "=q4=Forest Stalker's Bracers", "=ds=", "5000 #horde#", ""}; - { 9, 19584, "", "=q4=Windtalker's Wristguards", "=ds=", "500 #horde#", ""}; - { 10, 19583, "", "=q4=Windtalker's Wristguards", "=ds=", "700 #horde#", ""}; - { 11, 19582, "", "=q4=Windtalker's Wristguards", "=ds=", "5000 #horde#", ""}; - { 13, 19581, "", "=q4=Berserker Bracers", "=ds=", "500 #horde#", ""}; - { 14, 19580, "", "=q4=Berserker Bracers", "=ds=", "700 #horde#", ""}; - { 15, 19578, "", "=q4=Berserker Bracers", "=ds=", "5000 #horde#", ""}; - { 16, 22747, "", "=q4=Outrider's Silk Leggings", "=ds=", "9000 #horde#", ""}; - { 18, 22740, "", "=q4=Outrider's Leather Pants", "=ds=", "9000 #horde#", ""}; - { 19, 22741, "", "=q4=Outrider's Lizardhide Pants", "=ds=", "9000 #horde#", ""}; - { 21, 22673, "", "=q4=Outrider's Chain Leggings", "=ds=", "9000 #horde#", ""}; - { 22, 22676, "", "=q4=Outrider's Mail Leggings", "=ds=", "9000 #horde#", ""}; - { 24, 30498, "", "=q4=Outrider's Lamellar Legguards", "=ds=", "9000 #horde#", ""}; - { 25, 22651, "", "=q4=Outrider's Plate Legguards", "=ds=", "9000 #horde#", ""}; - Prev = "WSGWeapons_H"; - Back = "PVPMENU2"; - }; - - --------------------------------------- - --- PvP Level 60 Rare and Epic Sets --- - --------------------------------------- - - AtlasLoot_Data["PVPDruid"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#pvpea1#", "=q5=#pvps1#"}; - { 2, 16451, "", "=q4=Field Marshal's Dragonhide Helmet", "=ds=", "15000 #alliance#", ""}; - { 3, 16449, "", "=q4=Field Marshal's Dragonhide Spaulders", "=ds=", "9000 #alliance#", ""}; - { 4, 16452, "", "=q4=Field Marshal's Dragonhide Breastplate", "=ds=", "15000 #alliance#", ""}; - { 5, 16448, "", "=q4=Marshal's Dragonhide Gauntlets", "=ds=", "9000 #alliance#", ""}; - { 6, 16450, "", "=q4=Marshal's Dragonhide Legguards", "=ds=", "15000 #alliance#", ""}; - { 7, 16459, "", "=q4=Marshal's Dragonhide Boots", "=ds=", "9000 #alliance#", ""}; - { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra1#", "=q5=#pvps2#"}; - { 10, 23308, "", "=q3=Lieutenant Commander's Dragonhide Headguard", "=ds=", "5000 #alliance#", ""}; - { 11, 23309, "", "=q3=Lieutenant Commander's Dragonhide Shoulders", "=ds=", "3000 #alliance#", ""}; - { 12, 23294, "", "=q3=Knight-Captain's Dragonhide Chestpiece", "=ds=", "5000 #alliance#", ""}; - { 13, 23280, "", "=q3=Knight-Lieutenant's Dragonhide Grips", "=ds=", "3000 #alliance#", ""}; - { 14, 23295, "", "=q3=Knight-Captain's Dragonhide Leggings", "=ds=", "5000 #alliance#", ""}; - { 15, 23281, "", "=q3=Knight-Lieutenant's Dragonhide Treads", "=ds=", "3000 #alliance#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeh1#", "=q5=#pvps1#"}; - { 17, 16550, "", "=q4=Warlord's Dragonhide Helmet", "=ds=", "15000 #horde#", ""}; - { 18, 16551, "", "=q4=Warlord's Dragonhide Epaulets", "=ds=", "9000 #horde#", ""}; - { 19, 16549, "", "=q4=Warlord's Dragonhide Hauberk", "=ds=", "15000 #horde#", ""}; - { 20, 16555, "", "=q4=General's Dragonhide Gloves", "=ds=", "9000 #horde#", ""}; - { 21, 16552, "", "=q4=General's Dragonhide Leggings", "=ds=", "15000 #horde#", ""}; - { 22, 16554, "", "=q4=General's Dragonhide Boots", "=ds=", "9000 #horde#", ""}; - { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh1#", "=q5=#pvps2#"}; - { 25, 23253, "", "=q3=Champion's Dragonhide Headguard", "=ds=", "5000 #horde#", ""}; - { 26, 23254, "", "=q3=Champion's Dragonhide Shoulders", "=ds=", "3000 #horde#", ""}; - { 27, 22877, "", "=q3=Legionnaire's Dragonhide Chestpiece", "=ds=", "5000 #horde#", ""}; - { 28, 22863, "", "=q3=Blood Guard's Dragonhide Grips", "=ds=", "3000 #horde#", ""}; - { 29, 22878, "", "=q3=Legionnaire's Dragonhide Leggings", "=ds=", "5000 #horde#", ""}; - { 30, 22852, "", "=q3=Blood Guard's Dragonhide Treads", "=ds=", "3000 #horde#", ""}; - Back = "PVPSET"; - }; - - AtlasLoot_Data["PVPHunter"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#pvpea2#", "=q5=#pvps1#"}; - { 2, 16465, "", "=q4=Field Marshal's Chain Helm", "=ds=", "15000 #alliance#", ""}; - { 3, 16468, "", "=q4=Field Marshal's Chain Spaulders", "=ds=", "9000 #alliance#", ""}; - { 4, 16466, "", "=q4=Field Marshal's Chain Breastplate", "=ds=", "15000 #alliance#", ""}; - { 5, 16463, "", "=q4=Marshal's Chain Grips", "=ds=", "9000 #alliance#", ""}; - { 6, 16467, "", "=q4=Marshal's Chain Legguards", "=ds=", "15000 #alliance#", ""}; - { 7, 16462, "", "=q4=Marshal's Chain Boots", "=ds=", "9000 #alliance#", ""}; - { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra2#", "=q5=#pvps2#"}; - { 10, 23306, "", "=q3=Lieutenant Commander's Chain Helm", "=ds=", "5000 #alliance#", ""}; - { 11, 23307, "", "=q3=Lieutenant Commander's Chain Shoulders", "=ds=", "3000 #alliance#", ""}; - { 12, 23292, "", "=q3=Knight-Captain's Chain Hauberk", "=ds=", "5000 #alliance#", ""}; - { 13, 23279, "", "=q3=Knight-Lieutenant's Chain Vices", "=ds=", "3000 #alliance#", ""}; - { 14, 23293, "", "=q3=Knight-Captain's Chain Legguards", "=ds=", "5000 #alliance#", ""}; - { 15, 23278, "", "=q3=Knight-Lieutenant's Chain Greaves", "=ds=", "3000 #alliance#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeh2#", "=q5=#pvps1#"}; - { 17, 16566, "", "=q4=Warlord's Chain Helmet", "=ds=", "15000 #horde#", ""}; - { 18, 16568, "", "=q4=Warlord's Chain Shoulders", "=ds=", "9000 #horde#", ""}; - { 19, 16565, "", "=q4=Warlord's Chain Chestpiece", "=ds=", "15000 #horde#", ""}; - { 20, 16571, "", "=q4=General's Chain Gloves", "=ds=", "9000 #horde#", ""}; - { 21, 16567, "", "=q4=General's Chain Legguards", "=ds=", "15000 #horde#", ""}; - { 22, 16569, "", "=q4=General's Chain Boots", "=ds=", "9000 #horde#", ""}; - { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh2#", "=q5=#pvps2#"}; - { 25, 23251, "", "=q3=Champion's Chain Helm", "=ds=", "5000 #horde#", ""}; - { 26, 23252, "", "=q3=Champion's Chain Shoulders", "=ds=", "3000 #horde#", ""}; - { 27, 22874, "", "=q3=Legionnaire's Chain Hauberk", "=ds=", "5000 #horde#", ""}; - { 28, 22862, "", "=q3=Blood Guard's Chain Vices", "=ds=", "3000 #horde#", ""}; - { 29, 22875, "", "=q3=Legionnaire's Chain Legguards", "=ds=", "5000 #horde#", ""}; - { 30, 22843, "", "=q3=Blood Guard's Chain Greaves", "=ds=", "3000 #horde#", ""}; - Back = "PVPSET"; - }; - - AtlasLoot_Data["PVPMage"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#pvpea3#", "=q5=#pvps1#"}; - { 2, 16441, "", "=q4=Field Marshal's Coronet", "=ds=", "15000 #alliance#", ""}; - { 3, 16444, "", "=q4=Field Marshal's Silk Spaulders", "=ds=", "9000 #alliance#", ""}; - { 4, 16443, "", "=q4=Field Marshal's Silk Vestments", "=ds=", "15000 #alliance#", ""}; - { 5, 16440, "", "=q4=Marshal's Silk Gloves", "=ds=", "9000 #alliance#", ""}; - { 6, 16442, "", "=q4=Marshal's Silk Leggings", "=ds=", "15000 #alliance#", ""}; - { 7, 16437, "", "=q4=Marshal's Silk Footwraps", "=ds=", "9000 #alliance#", ""}; - { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra3#", "=q5=#pvps2#"}; - { 10, 23318, "", "=q3=Lieutenant Commander's Silk Cowl", "=ds=", "5000 #alliance#", ""}; - { 11, 23319, "", "=q3=Lieutenant Commander's Silk Mantle", "=ds=", "3000 #alliance#", ""}; - { 12, 23305, "", "=q3=Knight-Captain's Silk Tunic", "=ds=", "5000 #alliance#", ""}; - { 13, 23290, "", "=q3=Knight-Lieutenant's Silk Handwraps", "=ds=", "3000 #alliance#", ""}; - { 14, 23304, "", "=q3=Knight-Captain's Silk Legguards", "=ds=", "5000 #alliance#", ""}; - { 15, 23291, "", "=q3=Knight-Lieutenant's Silk Walkers", "=ds=", "3000 #alliance#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeh3#", "=q5=#pvps1#"}; - { 17, 16533, "", "=q4=Warlord's Silk Cowl", "=ds=", "15000 #horde#", ""}; - { 18, 16536, "", "=q4=Warlord's Silk Amice", "=ds=", "9000 #horde#", ""}; - { 19, 16535, "", "=q4=Warlord's Silk Raiment", "=ds=", "15000 #horde#", ""}; - { 20, 16540, "", "=q4=General's Silk Handguards", "=ds=", "9000 #horde#", ""}; - { 21, 16534, "", "=q4=General's Silk Trousers", "=ds=", "15000 #horde#", ""}; - { 22, 16539, "", "=q4=General's Silk Boots", "=ds=", "9000 #horde#", ""}; - { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh3#", "=q5=#pvps2#"}; - { 25, 23263, "", "=q3=Champion's Silk Cowl", "=ds=", "5000 #horde#", ""}; - { 26, 23264, "", "=q3=Champion's Silk Mantle", "=ds=", "3000 #horde#", ""}; - { 27, 22886, "", "=q3=Legionnaire's Silk Tunic", "=ds=", "5000 #horde#", ""}; - { 28, 22870, "", "=q3=Blood Guard's Silk Handwraps", "=ds=", "3000 #horde#", ""}; - { 29, 22883, "", "=q3=Legionnaire's Silk Legguards", "=ds=", "5000 #horde#", ""}; - { 30, 22860, "", "=q3=Blood Guard's Silk Walkers", "=ds=", "3000 #horde#", ""}; - Back = "PVPSET"; - }; - - AtlasLoot_Data["PVPPaladin"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#pvpea4#", "=q5=#pvps1#"}; - { 2, 16474, "", "=q4=Field Marshal's Lamellar Faceguard", "=ds=", "15000 #alliance#", ""}; - { 3, 16476, "", "=q4=Field Marshal's Lamellar Pauldrons", "=ds=", "9000 #alliance#", ""}; - { 4, 16473, "", "=q4=Field Marshal's Lamellar Chestplate", "=ds=", "15000 #alliance#", ""}; - { 5, 16471, "", "=q4=Marshal's Lamellar Gloves", "=ds=", "9000 #alliance#", ""}; - { 6, 16475, "", "=q4=Marshal's Lamellar Legplates", "=ds=", "15000 #alliance#", ""}; - { 7, 16472, "", "=q4=Marshal's Lamellar Boots", "=ds=", "9000 #alliance#", ""}; - { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra4#", "=q5=#pvps2#"}; - { 10, 23276, "", "=q3=Lieutenant Commander's Lamellar Headguard", "=ds=", "5000 #alliance#", ""}; - { 11, 23277, "", "=q3=Lieutenant Commander's Lamellar Shoulders", "=ds=", "3000 #alliance#", ""}; - { 12, 23272, "", "=q3=Knight-Captain's Lamellar Breastplate", "=ds=", "5000 #alliance#", ""}; - { 13, 23274, "", "=q3=Knight-Lieutenant's Lamellar Gauntlets", "=ds=", "3000 #alliance#", ""}; - { 14, 23273, "", "=q3=Knight-Captain's Lamellar Leggings", "=ds=", "5000 #alliance#", ""}; - { 15, 23275, "", "=q3=Knight-Lieutenant's Lamellar Sabatons", "=ds=", "3000 #alliance#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeh9#", "=q5=#pvps1#"}; - { 17, 29616, "", "=q4=Warlord's Lamellar Faceguard", "=ds=", "15000 #horde#", ""}; - { 18, 29617, "", "=q4=Warlord's Lamellar Pauldrons", "=ds=", "9000 #horde#", ""}; - { 19, 29615, "", "=q4=Warlord's Lamellar Chestplate", "=ds=", "15000 #horde#", ""}; - { 20, 29613, "", "=q4=General's Lamellar Gloves", "=ds=", "9000 #horde#", ""}; - { 21, 29614, "", "=q4=General's Lamellar Legplates", "=ds=", "15000 #horde#", ""}; - { 22, 29612, "", "=q4=General's Lamellar Boots", "=ds=", "9000 #horde#", ""}; - { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh9#", "=q5=#pvps2#"}; - { 25, 29604, "", "=q3=Champion's Lamellar Headguard", "=ds=", "5000 #horde#", ""}; - { 26, 29605, "", "=q3=Champion's Lamellar Shoulders", "=ds=", "3000 #horde#", ""}; - { 27, 29602, "", "=q3=Legionnaire's Lamellar Breastplate", "=ds=", "5000 #horde#", ""}; - { 28, 29600, "", "=q3=Blood Guard's Lamellar Gauntlets", "=ds=", "3000 #horde#", ""}; - { 29, 29603, "", "=q3=Legionnaire's Lamellar Leggings", "=ds=", "5000 #horde#", ""}; - { 30, 29601, "", "=q3=Blood Guard's Lamellar Sabatons", "=ds=", "3000 #horde#", ""}; - Back = "PVPSET"; - }; - - AtlasLoot_Data["PVPPriest"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#pvpea5#", "=q5=#pvps1#"}; - { 2, 17602, "", "=q4=Field Marshal's Headdress", "=ds=", "15000 #alliance#", ""}; - { 3, 17604, "", "=q4=Field Marshal's Satin Mantle", "=ds=", "9000 #alliance#", ""}; - { 4, 17605, "", "=q4=Field Marshal's Satin Vestments", "=ds=", "15000 #alliance#", ""}; - { 5, 17608, "", "=q4=Marshal's Satin Gloves", "=ds=", "9000 #alliance#", ""}; - { 6, 17603, "", "=q4=Marshal's Satin Pants", "=ds=", "15000 #alliance#", ""}; - { 7, 17607, "", "=q4=Marshal's Satin Sandals", "=ds=", "9000 #alliance#", ""}; - { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra5#", "=q5=#pvps2#"}; - { 10, 23316, "", "=q3=Lieutenant Commander's Satin Hood", "=ds=", "5000 #alliance#", ""}; - { 11, 23317, "", "=q3=Lieutenant Commander's Satin Mantle", "=ds=", "3000 #alliance#", ""}; - { 12, 23303, "", "=q3=Knight-Captain's Satin Tunic", "=ds=", "5000 #alliance#", ""}; - { 13, 23288, "", "=q3=Knight-Lieutenant's Satin Handwraps", "=ds=", "3000 #alliance#", ""}; - { 14, 23302, "", "=q3=Knight-Captain's Satin Legguards", "=ds=", "5000 #alliance#", ""}; - { 15, 23289, "", "=q3=Knight-Lieutenant's Satin Walkers", "=ds=", "3000 #alliance#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeh4#", "=q5=#pvps1#"}; - { 17, 17623, "", "=q4=Warlord's Satin Cowl", "=ds=", "15000 #horde#", ""}; - { 18, 17622, "", "=q4=Warlord's Satin Mantle", "=ds=", "9000 #horde#", ""}; - { 19, 17624, "", "=q4=Warlord's Satin Robes", "=ds=", "15000 #horde#", ""}; - { 20, 17620, "", "=q4=General's Satin Gloves", "=ds=", "9000 #horde#", ""}; - { 21, 17625, "", "=q4=General's Satin Leggings", "=ds=", "15000 #horde#", ""}; - { 22, 17618, "", "=q4=General's Satin Boots", "=ds=", "9000 #horde#", ""}; - { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh4#", "=q5=#pvps2#"}; - { 25, 23261, "", "=q3=Champion's Satin Hood", "=ds=", "5000 #horde#", ""}; - { 26, 23262, "", "=q3=Champion's Satin Mantle", "=ds=", "3000 #horde#", ""}; - { 27, 22885, "", "=q3=Legionnaire's Satin Tunic", "=ds=", "5000 #horde#", ""}; - { 28, 22869, "", "=q3=Blood Guard's Satin Handwraps", "=ds=", "3000 #horde#", ""}; - { 29, 22882, "", "=q3=Legionnaire's Satin Legguards", "=ds=", "5000 #horde#", ""}; - { 30, 22859, "", "=q3=Blood Guard's Satin Walkers", "=ds=", "3000 #horde#", ""}; - Back = "PVPSET"; - }; - - AtlasLoot_Data["PVPRogue"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#pvpea6#", "=q5=#pvps1#"}; - { 2, 16455, "", "=q4=Field Marshal's Leather Mask", "=ds=", "15000 #alliance#", ""}; - { 3, 16457, "", "=q4=Field Marshal's Leather Epaulets", "=ds=", "9000 #alliance#", ""}; - { 4, 16453, "", "=q4=Field Marshal's Leather Chestpiece", "=ds=", "15000 #alliance#", ""}; - { 5, 16454, "", "=q4=Marshal's Leather Handgrips", "=ds=", "9000 #alliance#", ""}; - { 6, 16456, "", "=q4=Marshal's Leather Leggings", "=ds=", "15000 #alliance#", ""}; - { 7, 16446, "", "=q4=Marshal's Leather Footguards", "=ds=", "9000 #alliance#", ""}; - { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra6#", "=q5=#pvps2#"}; - { 10, 23312, "", "=q3=Lieutenant Commander's Leather Helm", "=ds=", "5000 #alliance#", ""}; - { 11, 23313, "", "=q3=Lieutenant Commander's Leather Shoulders", "=ds=", "3000 #alliance#", ""}; - { 12, 23298, "", "=q3=Knight-Captain's Leather Chestpiece", "=ds=", "5000 #alliance#", ""}; - { 13, 23284, "", "=q3=Knight-Lieutenant's Leather Grips", "=ds=", "3000 #alliance#", ""}; - { 14, 23299, "", "=q3=Knight-Captain's Leather Legguards", "=ds=", "5000 #alliance#", ""}; - { 15, 23285, "", "=q3=Knight-Lieutenant's Leather Walkers", "=ds=", "3000 #alliance#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeh5#", "=q5=#pvps1#"}; - { 17, 16561, "", "=q4=Warlord's Leather Helm", "=ds=", "15000 #horde#", ""}; - { 18, 16562, "", "=q4=Warlord's Leather Spaulders", "=ds=", "9000 #horde#", ""}; - { 19, 16563, "", "=q4=Warlord's Leather Breastplate", "=ds=", "15000 #horde#", ""}; - { 20, 16560, "", "=q4=General's Leather Mitts", "=ds=", "9000 #horde#", ""}; - { 21, 16564, "", "=q4=General's Leather Legguards", "=ds=", "15000 #horde#", ""}; - { 22, 16558, "", "=q4=General's Leather Treads", "=ds=", "9000 #horde#", ""}; - { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh5#", "=q5=#pvps2#"}; - { 25, 23257, "", "=q3=Champion's Leather Helm", "=ds=", "5000 #horde#", ""}; - { 26, 23258, "", "=q3=Champion's Leather Shoulders", "=ds=", "3000 #horde#", ""}; - { 27, 22879, "", "=q3=Legionnaire's Leather Chestpiece", "=ds=", "5000 #horde#", ""}; - { 28, 22864, "", "=q3=Blood Guard's Leather Grips", "=ds=", "3000 #horde#", ""}; - { 29, 22880, "", "=q3=Legionnaire's Leather Legguards", "=ds=", "5000 #horde#", ""}; - { 30, 22856, "", "=q3=Blood Guard's Leather Walkers", "=ds=", "3000 #horde#", ""}; - Back = "PVPSET"; - }; - - AtlasLoot_Data["PVPShaman"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#pvpea9#", "=q5=#pvps1#"}; - { 2, 29610, "", "=q4=Field Marshal's Mail Helm", "=ds=", "15000 #alliance#", ""}; - { 3, 29611, "", "=q4=Field Marshal's Mail Spaulders", "=ds=", "9000 #alliance#", ""}; - { 4, 29609, "", "=q4=Field Marshal's Mail Armor", "=ds=", "15000 #alliance#", ""}; - { 5, 29607, "", "=q4=Marshal's Mail Gauntlets", "=ds=", "9000 #alliance#", ""}; - { 6, 29608, "", "=q4=Marshal's Mail Leggings", "=ds=", "15000 #alliance#", ""}; - { 7, 29606, "", "=q4=Marshal's Mail Boots", "=ds=", "9000 #alliance#", ""}; - { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra9#", "=q5=#pvps2#"}; - { 10, 29598, "", "=q3=Lieutenant Commander's Mail Headguard", "=ds=", "5000 #alliance#", ""}; - { 11, 29599, "", "=q3=Lieutenant Commander's Mail Pauldrons", "=ds=", "3000 #alliance#", ""}; - { 12, 29596, "", "=q3=Knight-Captain's Mail Hauberk", "=ds=", "5000 #alliance#", ""}; - { 13, 29595, "", "=q3=Knight-Lieutenant's Mail Vices", "=ds=", "3000 #alliance#", ""}; - { 14, 29597, "", "=q3=Knight-Captain's Mail Legguards", "=ds=", "5000 #alliance#", ""}; - { 15, 29594, "", "=q3=Knight-Lieutenant's Mail Greaves", "=ds=", "3000 #alliance#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeh6#", "=q5=#pvps1#"}; - { 17, 16578, "", "=q4=Warlord's Mail Helm", "=ds=", "15000 #horde#", ""}; - { 18, 16580, "", "=q4=Warlord's Mail Spaulders", "=ds=", "9000 #horde#", ""}; - { 19, 16577, "", "=q4=Warlord's Mail Armor", "=ds=", "15000 #horde#", ""}; - { 20, 16574, "", "=q4=General's Mail Gauntlets", "=ds=", "9000 #horde#", ""}; - { 21, 16579, "", "=q4=General's Mail Leggings", "=ds=", "15000 #horde#", ""}; - { 22, 16573, "", "=q4=General's Mail Boots", "=ds=", "9000 #horde#", ""}; - { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh6#", "=q5=#pvps2#"}; - { 25, 23259, "", "=q3=Champion's Mail Headguard", "=ds=", "5000 #horde#", ""}; - { 26, 23260, "", "=q3=Champion's Mail Pauldrons", "=ds=", "3000 #horde#", ""}; - { 27, 22876, "", "=q3=Legionnaire's Mail Hauberk", "=ds=", "5000 #horde#", ""}; - { 28, 22867, "", "=q3=Blood Guard's Mail Vices", "=ds=", "3000 #horde#", ""}; - { 29, 22887, "", "=q3=Legionnaire's Mail Legguards", "=ds=", "5000 #horde#", ""}; - { 30, 22857, "", "=q3=Blood Guard's Mail Greaves", "=ds=", "3000 #horde#", ""}; - Back = "PVPSET"; - }; - - AtlasLoot_Data["PVPWarlock"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#pvpea7#", "=q5=#pvps1#"}; - { 2, 17578, "", "=q4=Field Marshal's Coronal", "=ds=", "15000 #alliance#", ""}; - { 3, 17580, "", "=q4=Field Marshal's Dreadweave Shoulders", "=ds=", "9000 #alliance#", ""}; - { 4, 17581, "", "=q4=Field Marshal's Dreadweave Robe", "=ds=", "15000 #alliance#", ""}; - { 5, 17584, "", "=q4=Marshal's Dreadweave Gloves", "=ds=", "9000 #alliance#", ""}; - { 6, 17579, "", "=q4=Marshal's Dreadweave Leggings", "=ds=", "15000 #alliance#", ""}; - { 7, 17583, "", "=q4=Marshal's Dreadweave Boots", "=ds=", "9000 #alliance#", ""}; - { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra7#", "=q5=#pvps2#"}; - { 10, 23310, "", "=q3=Lieutenant Commander's Dreadweave Cowl", "=ds=", "5000 #alliance#", ""}; - { 11, 23311, "", "=q3=Lieutenant Commander's Dreadweave Spaulders", "=ds=", "3000 #alliance#", ""}; - { 12, 23297, "", "=q3=Knight-Captain's Dreadweave Tunic", "=ds=", "5000 #alliance#", ""}; - { 13, 23282, "", "=q3=Knight-Lieutenant's Dreadweave Handwraps", "=ds=", "3000 #alliance#", ""}; - { 14, 23296, "", "=q3=Knight-Captain's Dreadweave Legguards", "=ds=", "5000 #alliance#", ""}; - { 15, 23283, "", "=q3=Knight-Lieutenant's Dreadweave Walkers", "=ds=", "3000 #alliance#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeh7#", "=q5=#pvps1#"}; - { 17, 17591, "", "=q4=Warlord's Dreadweave Hood", "=ds=", "15000 #horde#", ""}; - { 18, 17590, "", "=q4=Warlord's Dreadweave Mantle", "=ds=", "9000 #horde#", ""}; - { 19, 17592, "", "=q4=Warlord's Dreadweave Robe", "=ds=", "15000 #horde#", ""}; - { 20, 17588, "", "=q4=General's Dreadweave Gloves", "=ds=", "9000 #horde#", ""}; - { 21, 17593, "", "=q4=General's Dreadweave Pants", "=ds=", "15000 #horde#", ""}; - { 22, 17586, "", "=q4=General's Dreadweave Boots", "=ds=", "9000 #horde#", ""}; - { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh7#", "=q5=#pvps2#"}; - { 25, 23255, "", "=q3=Champion's Dreadweave Cowl", "=ds=", "5000 #horde#", ""}; - { 26, 23256, "", "=q3=Champion's Dreadweave Spaulders", "=ds=", "3000 #horde#", ""}; - { 27, 22884, "", "=q3=Legionnaire's Dreadweave Tunic", "=ds=", "5000 #horde#", ""}; - { 28, 22865, "", "=q3=Blood Guard's Dreadweave Handwraps", "=ds=", "3000 #horde#", ""}; - { 29, 22881, "", "=q3=Legionnaire's Dreadweave Legguards", "=ds=", "5000 #horde#", ""}; - { 30, 22855, "", "=q3=Blood Guard's Dreadweave Walkers", "=ds=", "3000 #horde#", ""}; - Back = "PVPSET"; - }; - - AtlasLoot_Data["PVPWarrior"] = { - { 1, 0, "INV_BannerPVP_02", "=q6=#pvpea8#", "=q5=#pvps1#"}; - { 2, 16478, "", "=q4=Field Marshal's Plate Helm", "=ds=", "15000 #alliance#", ""}; - { 3, 16480, "", "=q4=Field Marshal's Plate Shoulderguards", "=ds=", "9000 #alliance#", ""}; - { 4, 16477, "", "=q4=Field Marshal's Plate Armor", "=ds=", "15000 #alliance#", ""}; - { 5, 16484, "", "=q4=Marshal's Plate Gauntlets", "=ds=", "9000 #alliance#", ""}; - { 6, 16479, "", "=q4=Marshal's Plate Legguards", "=ds=", "15000 #alliance#", ""}; - { 7, 16483, "", "=q4=Marshal's Plate Boots", "=ds=", "9000 #alliance#", ""}; - { 9, 0, "INV_BannerPVP_02", "=q6=#pvpra8#", "=q5=#pvps2#"}; - { 10, 23314, "", "=q3=Lieutenant Commander's Plate Helm", "=ds=", "5000 #alliance#", ""}; - { 11, 23315, "", "=q3=Lieutenant Commander's Plate Shoulders", "=ds=", "3000 #alliance#", ""}; - { 12, 23300, "", "=q3=Knight-Captain's Plate Hauberk", "=ds=", "5000 #alliance#", ""}; - { 13, 23286, "", "=q3=Knight-Lieutenant's Plate Gauntlets", "=ds=", "3000 #alliance#", ""}; - { 14, 23301, "", "=q3=Knight-Captain's Plate Leggings", "=ds=", "5000 #alliance#", ""}; - { 15, 23287, "", "=q3=Knight-Lieutenant's Plate Greaves", "=ds=", "3000 #alliance#", ""}; - { 16, 0, "INV_BannerPVP_01", "=q6=#pvpeh8#", "=q5=#pvps1#"}; - { 17, 16542, "", "=q4=Warlord's Plate Headpiece", "=ds=", "15000 #horde#", ""}; - { 18, 16544, "", "=q4=Warlord's Plate Shoulders", "=ds=", "9000 #horde#", ""}; - { 19, 16541, "", "=q4=Warlord's Plate Armor", "=ds=", "15000 #horde#", ""}; - { 20, 16548, "", "=q4=General's Plate Gauntlets", "=ds=", "9000 #horde#", ""}; - { 21, 16543, "", "=q4=General's Plate Leggings", "=ds=", "15000 #horde#", ""}; - { 22, 16545, "", "=q4=General's Plate Boots", "=ds=", "9000 #horde#", ""}; - { 24, 0, "INV_BannerPVP_01", "=q6=#pvprh8#", "=q5=#pvps2#"}; - { 25, 23244, "", "=q3=Champion's Plate Helm", "=ds=", "5000 #horde#", ""}; - { 26, 23243, "", "=q3=Champion's Plate Shoulders", "=ds=", "3000 #horde#", ""}; - { 27, 22872, "", "=q3=Legionnaire's Plate Hauberk", "=ds=", "5000 #horde#", ""}; - { 28, 22868, "", "=q3=Blood Guard's Plate Gauntlets", "=ds=", "3000 #horde#", ""}; - { 29, 22873, "", "=q3=Legionnaire's Plate Leggings", "=ds=", "5000 #horde#", ""}; - { 30, 22858, "", "=q3=Blood Guard's Plate Greaves", "=ds=", "3000 #horde#", ""}; - Back = "PVPSET"; - }; - - ---------------------------- - --- PvP Level 60 Weapons --- - ---------------------------- - - AtlasLoot_Data["PVPWeapons_A"] = { - { 1, 18843, "", "=q4=Grand Marshal's Right Hand Blade", "=ds=#h3#, #w13#", "13000 #alliance#", ""}; - { 2, 18847, "", "=q4=Grand Marshal's Left Hand Blade", "=ds=#h4#, #w13#", "13000 #alliance#", ""}; - { 3, 23451, "", "=q4=Grand Marshal's Mageblade", "=ds=#h4#, #w4#", "13000 #alliance#", ""}; - { 4, 18838, "", "=q4=Grand Marshal's Dirk", "=ds=#h1#, #w4#", "13000 #alliance#", ""}; - { 5, 12584, "", "=q4=Grand Marshal's Longsword", "=ds=#h1#, #w10#", "13000 #alliance#", ""}; - { 6, 23456, "", "=q4=Grand Marshal's Swiftblade", "=ds=#h1#, #w10#", "13000 #alliance#", ""}; - { 7, 18876, "", "=q4=Grand Marshal's Claymore", "=ds=#h2#, #w10#", "25000 #alliance#", ""}; - { 8, 18827, "", "=q4=Grand Marshal's Handaxe", "=ds=#h1#, #w1#", "13000 #alliance#", ""}; - { 9, 18830, "", "=q4=Grand Marshal's Sunderer", "=ds=#h2#, #w1#", "25000 #alliance#", ""}; - { 10, 23454, "", "=q4=Grand Marshal's Warhammer", "=ds=#h3#, #w6#", "13000 #alliance#", ""}; - { 11, 18865, "", "=q4=Grand Marshal's Punisher", "=ds=#h1#, #w6#", "13000 #alliance#", ""}; - { 12, 18867, "", "=q4=Grand Marshal's Battle Hammer", "=ds=#h2#, #w6#", "25000 #alliance#", ""}; - { 13, 23455, "", "=q4=Grand Marshal's Demolisher", "=ds=#h2#, #w6#", "25000 #alliance#", ""}; - { 14, 18869, "", "=q4=Grand Marshal's Glaive", "=ds=#w7#", "25000 #alliance#", ""}; - { 15, 18873, "", "=q4=Grand Marshal's Stave", "=ds=#w9#", "25000 #alliance#", ""}; - { 16, 18825, "", "=q4=Grand Marshal's Aegis", "=ds=#w8#", "13000 #alliance#", ""}; - { 17, 18833, "", "=q4=Grand Marshal's Bullseye", "=ds=#w2#", "13000 #alliance#", ""}; - { 18, 18836, "", "=q4=Grand Marshal's Repeater", "=ds=#w3#", "13000 #alliance#", ""}; - { 19, 18855, "", "=q4=Grand Marshal's Hand Cannon", "=ds=#w5#", "13000 #alliance#", ""}; - { 20, 23452, "", "=q4=Grand Marshal's Tome of Power", "=ds=#s15#", "13000 #alliance#", ""}; - { 21, 23453, "", "=q4=Grand Marshal's Tome of Restoration", "=ds=#s15#", "13000 #alliance#", ""}; - Back = "PVPMENU"; - }; - - AtlasLoot_Data["PVPWeapons_H"] = { - { 1, 18844, "", "=q4=High Warlord's Right Claw", "=ds=#h3#, #w13#", "13000 #horde#", ""}; - { 2, 18848, "", "=q4=High Warlord's Left Claw", "=ds=#h4#, #w13#", "13000 #horde#", ""}; - { 3, 23466, "", "=q4=High Warlord's Spellblade", "=ds=#h4#, #w4#", "13000 #horde#", ""}; - { 4, 18840, "", "=q4=High Warlord's Razor", "=ds=#h1#, #w4#", "13000 #horde#", ""}; - { 5, 16345, "", "=q4=High Warlord's Blade", "=ds=#h1#, #w10#", "13000 #horde#", ""}; - { 6, 23467, "", "=q4=High Warlord's Quickblade", "=ds=#h1#, #w10#", "13000 #horde#", ""}; - { 7, 18877, "", "=q4=High Warlord's Greatsword", "=ds=#h2#, #w10#", "25000 #horde#", ""}; - { 8, 18828, "", "=q4=High Warlord's Cleaver", "=ds=#h1#, #w1#", "13000 #horde#", ""}; - { 9, 18831, "", "=q4=High Warlord's Battle Axe", "=ds=#h2#, #w1#", "25000 #horde#", ""}; - { 10, 23464, "", "=q4=High Warlord's Battle Mace", "=ds=#h3#, #w6#", "13000 #horde#", ""}; - { 11, 18866, "", "=q4=High Warlord's Bludgeon", "=ds=#h1#, #w6#", "13000 #horde#", ""}; - { 12, 18868, "", "=q4=High Warlord's Pulverizer", "=ds=#h2#, #w6#", "25000 #horde#", ""}; - { 13, 23465, "", "=q4=High Warlord's Destroyer", "=ds=#h2#, #w6#", "25000 #horde#", ""}; - { 14, 18871, "", "=q4=High Warlord's Pig Sticker", "=ds=#w7#", "25000 #horde#", ""}; - { 15, 18874, "", "=q4=High Warlord's War Staff", "=ds=#w9#", "25000 #horde#", ""}; - { 16, 18826, "", "=q4=High Warlord's Shield Wall", "=ds=#w8#", "13000 #horde#", ""}; - { 17, 18835, "", "=q4=High Warlord's Recurve", "=ds=#w2#", "13000 #horde#", ""}; - { 18, 18837, "", "=q4=High Warlord's Crossbow", "=ds=#w3#", "13000 #horde#", ""}; - { 19, 18860, "", "=q4=High Warlord's Street Sweeper", "=ds=#w5#", "13000 #horde#", ""}; - { 20, 23468, "", "=q4=High Warlord's Tome of Destruction", "=ds=#s15#", "13000 #horde#", ""}; - { 21, 23469, "", "=q4=High Warlord's Tome of Mending", "=ds=#s15#", "13000 #horde#", ""}; - Back = "PVPMENU"; - }; - - -------------------------------- - --- PvP Level 60 Accessories --- - -------------------------------- - - AtlasLoot_Data["PvP60Accessories1_A"] = { - { 1, 29465, "", "=q4=Black Battlestrider", "=ds=#e12#", "50000 #alliance#", ""}; - { 2, 29467, "", "=q4=Black War Ram", "=ds=#e12#", "50000 #alliance#", ""}; - { 3, 29468, "", "=q4=Black War Steed Bridle", "=ds=#e12#", "50000 #alliance#", ""}; - { 4, 29471, "", "=q4=Reins of the Black War Tiger", "=ds=#e12#", "50000 #alliance#", ""}; - { 5, 35906, "", "=q4=Reins of the Black War Elekk", "=ds#e12#=", "50000 #alliance#", ""}; - { 7, 18863, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""}; - { 8, 18856, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""}; - { 9, 18859, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""}; - { 10, 18864, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""}; - { 11, 18862, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""}; - { 12, 18857, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""}; - { 13, 29593, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""}; - { 14, 18858, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""}; - { 15, 18854, "", "=q3=Insignia of the Alliance", "=ds=#s14#", "2805 #alliance#", ""}; - { 16, 15196, "", "=q1=Private's Tabard", "=ds=#s7#", "15000 #alliance#", ""}; - { 17, 15198, "", "=q1=Knight's Colors", "=ds=#s7#", "20000 #alliance#", ""}; - { 18, 18606, "", "=q1=Alliance Battle Standard", "=ds=", "15300 #alliance#", ""}; - { 20, 18839, "", "=q1=Combat Healing Potion", "=ds=#e2#", "10 #silver# 1 #alliance#", ""}; - { 21, 18841, "", "=q1=Combat Mana Potion", "=ds=#e2#", "10 #silver# 1 #alliance#", ""}; - { 22, 32455, "", "=q1=Star's Lament", "=ds=#e4#", "12 #silver# 1 #alliance#", ""}; - Next = "PvP60Accessories2_A"; - Back = "PVPMENU"; - }; - - AtlasLoot_Data["PvP60Accessories1_H"] = { - { 1, 29466, "", "=q4=Black War Kodo", "=ds=#e12#", "50000 #horde#", ""}; - { 2, 29469, "", "=q4=Horn of the Black War Wolf", "=ds=#e12#", "50000 #horde#", ""}; - { 3, 29470, "", "=q4=Red Skeletal Warhorse", "=ds=#e12#", "50000 #horde#", ""}; - { 4, 29472, "", "=q4=Whistle of the Black War Raptor", "=ds=#e12#", "50000 #horde#", ""}; - { 5, 34129, "", "=q4=Swift Warstrider", "=ds=#e12#", "50000 #horde#", ""}; - { 7, 18853, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""}; - { 8, 18846, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""}; - { 9, 18850, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""}; - { 10, 29592, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""}; - { 11, 18851, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""}; - { 12, 18849, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""}; - { 13, 18845, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""}; - { 14, 18852, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""}; - { 15, 18834, "", "=q3=Insignia of the Horde", "=ds=#s14#", "2805 #horde#", ""}; - { 16, 15197, "", "=q1=Scout's Tabard", "=ds=#s7#", "15000 #horde#", ""}; - { 17, 15199, "", "=q1=Stone Guard's Herald", "=ds=#s7#", "20000 #horde#", ""}; - { 18, 18607, "", "=q1=Horde Battle Standard", "=ds=", "15300 #horde#", ""}; - { 20, 18839, "", "=q1=Combat Healing Potion", "=ds=#e2#", "10 #silver# 1 #horde#", ""}; - { 21, 18841, "", "=q1=Combat Mana Potion", "=ds=#e2#", "10 #silver# 1 #horde#", ""}; - { 22, 32455, "", "=q1=Star's Lament", "=ds=#e4#", "12 #silver# 1 #horde#", ""}; - Next = "PvP60Accessories2_H"; - Back = "PVPMENU"; - }; - - AtlasLoot_Data["PvP60Accessories2_A"] = { - { 1, 18457, "", "=q3=Sergeant Major's Silk Cuffs", "=ds=#s8#, #a1#", "300 #alliance#", ""}; - { 2, 18456, "", "=q3=Sergeant Major's Silk Cuffs", "=ds=#s8#, #a1#", "1600 #alliance#", ""}; - { 4, 18455, "", "=q3=Sergeant Major's Dragonhide Armsplints", "=ds=#s8#, #a2#", "300 #alliance#", ""}; - { 5, 18454, "", "=q3=Sergeant Major's Dragonhide Armsplints", "=ds=#s8#, #a2#", "1600 #alliance#", ""}; - { 7, 18453, "", "=q3=Sergeant Major's Leather Armsplints", "=ds=#s8#, #a3#", "300 #alliance#", ""}; - { 8, 18452, "", "=q3=Sergeant Major's Leather Armsplints", "=ds=#s8#, #a3#", "1600 #alliance#", ""}; - { 10, 18449, "", "=q3=Sergeant Major's Chain Armguards", "=ds=#s8#, #a3#", "300 #alliance#", ""}; - { 11, 18448, "", "=q3=Sergeant Major's Chain Armguards", "=ds=#s8#, #a3#", "1600 #alliance#", ""}; - { 13, 18447, "", "=q3=Sergeant Major's Plate Wristguards", "=ds=#s8#, #a4#", "300 #alliance#", ""}; - { 14, 18445, "", "=q3=Sergeant Major's Plate Wristguards", "=ds=#s8#, #a4#", "1600 #alliance#", ""}; - { 16, 18440, "", "=q3=Sergeant's Cape", "=ds=#s4#", "100 #alliance#", ""}; - { 17, 18441, "", "=q3=Sergeant's Cape", "=ds=#s4#", "300 #alliance#", ""}; - { 18, 16342, "", "=q3=Sergeant's Cape", "=ds=#s4#", "1600 #alliance#", ""}; - { 20, 18442, "", "=q3=Master Sergeant's Insignia", "=ds=#s2#", "100 #alliance#", ""}; - { 21, 18444, "", "=q3=Master Sergeant's Insignia", "=ds=#s2#", "300 #alliance#", ""}; - { 22, 18443, "", "=q3=Master Sergeant's Insignia", "=ds=#s2#", "1600 #alliance#", ""}; - Prev = "PvP60Accessories1_A"; - Back = "PVPMENU"; - }; - - AtlasLoot_Data["PvP60Accessories2_H"] = { - { 1, 18437, "", "=q3=First Sergeant's Silk Cuffs", "=ds=#s8#, #a1#", "300 #horde#", ""}; - { 2, 16486, "", "=q3=First Sergeant's Silk Cuffs", "=ds=#s8#, #a1#", "1600 #horde#", ""}; - { 4, 18436, "", "=q3=First Sergeant's Dragonhide Armguards", "=ds=#s8#, #a1#", "300 #horde#", ""}; - { 5, 18434, "", "=q3=First Sergeant's Dragonhide Armguards", "=ds=#s8#, #a1#", "1600 #horde#", ""}; - { 7, 18435, "", "=q3=First Sergeant's Leather Armguards", "=ds=#s8#, #a2#", "300 #horde#", ""}; - { 8, 16497, "", "=q3=First Sergeant's Leather Armguards", "=ds=#s8#, #a2#", "1600 #horde#", ""}; - { 10, 18432, "", "=q3=First Sergeant's Mail Wristguards", "=ds=#s8#, #a3#", "300 #horde#", ""}; - { 11, 16532, "", "=q3=First Sergeant's Mail Wristguards", "=ds=#s8#, #a3#", "1600 #horde#", ""}; - { 13, 18430, "", "=q3=First Sergeant's Plate Bracers", "=ds=#s8#, #a4#", "300 #horde#", ""}; - { 14, 18429, "", "=q3=First Sergeant's Plate Bracers", "=ds=#s8#, #a4#", "1600 #horde#", ""}; - { 16, 18427, "", "=q3=Sergeant's Cloak", "=ds=#s4#", "100 #horde#", ""}; - { 17, 16341, "", "=q3=Sergeant's Cloak", "=ds=#s4#", "300 #horde#", ""}; - { 18, 18461, "", "=q3=Sergeant's Cloak", "=ds=#s4#", "1600 #horde#", ""}; - { 20, 15200, "", "=q3=Senior Sergeant's Insignia", "=ds=#s2#", "100 #horde#", ""}; - { 21, 18428, "", "=q3=Senior Sergeant's Insignia", "=ds=#s2#", "300 #horde#", ""}; - { 22, 16335, "", "=q3=Senior Sergeant's Insignia", "=ds=#s2#", "1600 #horde#", ""}; - Prev = "PvP60Accessories2"; - Back = "PVPMENU"; - }; - - ---------------- - --- Factions --- - ---------------- - - ------------ - --- Misc --- - ------------ - - AtlasLoot_Data["MiscFactions"] = { - { 1, 0, "INV_Misc_Head_Centaur_01", "=q6="..BabbleFaction["Magram Clan Centaur"], "=q5=#r2#"}; - { 2, 6789, "", "=q2=Ceremonial Centaur Blanket", "=q1=#m4#: =ds=#s4#"}; - { 3, 6788, "", "=q2=Magram Hunter's Belt", "=q1=#m4#: =ds=#s10#, #a2#"}; - { 5, 0, "INV_Jewelry_Amulet_07", "=q6=#b5#", "=q5=#r5#, =q1="..BabbleFaction["Alliance"]}; - { 6, 20132, "", "=q1=Arathor Battle Tabard", "=q1=#m4#: =ds=#s7#"}; - { 8, 0, "Ability_Mount_PinkTiger", "=q6="..BabbleFaction["Wintersaber Trainers"], "=q5=#r5#"}; - { 9, 13086, "", "=q4=Reins of the Winterspring Frostsaber", "=ds=#e12#"}; - { 16, 0, "INV_Misc_Head_Centaur_01", "=q6="..BabbleFaction["Gelkis Clan Centaur"], "=q5=#r2#"}; - { 17, 6773, "", "=q2=Gelkis Marauder Chain", "=q1=#m4#: =ds=#s5#, #a3#"}; - { 18, 6774, "", "=q2=Uthek's Finger", "=q1=#m4#: =ds=#s15#"}; - { 20, 0, "INV_Jewelry_Amulet_07", "=q6=#b6#", "=q5=#r5#, =q1="..BabbleFaction["Horde"]}; - { 21, 20131, "", "=q1=Battle Tabard of the Defilers", "=q1=#m4#: =ds=#s7#"}; - Back = "REPMENU_ORIGINALWOW"; - }; - - ------------------- - --- Argent Dawn --- - ------------------- - - AtlasLoot_Data["Argent1"] = { - { 1, 22689, "", "=q3=Sanctified Leather Helm", "=ds=#s1#, #a2#"}; - { 2, 22690, "", "=q3=Leggings of the Plague Hunter", "=ds=#s11#, #a3#"}; - { 3, 22681, "", "=q3=Band of Piety", "=ds=#s13#"}; - { 4, 22680, "", "=q3=Band of Resolution", "=ds=#s13#"}; - { 5, 22688, "", "=q3=Verimonde's Last Resort", "=ds=#h3#, #w4#"}; - { 6, 22679, "", "=q3=Supply Bag", "=ds=#m14# #e1#"}; - { 8, 22638, "", "=q3=Shadow Guard", "=ds=#s1# #e17#"}; - { 10, 22523, "", "=q2=Insignia of the Dawn", "=ds=#m17#"}; - { 16, 22667, "", "=q4=Bracers of Hope", "=ds=#s8#, #a1#"}; - { 17, 22668, "", "=q4=Bracers of Subterfuge", "=ds=#s8#, #a2#"}; - { 18, 22657, "", "=q4=Amulet of the Dawn", "=ds=#s2#"}; - { 19, 22659, "", "=q4=Medallion of the Dawn", "=ds=#s2#"}; - { 20, 22678, "", "=q4=Talisman of Ascendance", "=ds=#s14#"}; - { 21, 22656, "", "=q4=The Purifier", "=ds=#w5#"}; - { 23, 22636, "", "=q3=Ice Guard", "=ds=#s1# #e17#"}; - { 25, 22524, "", "=q2=Insignia of the Crusade", "=ds=#m17#"}; - Next = "Argent2"; - Back = "REPMENU_ORIGINALWOW"; - }; - - AtlasLoot_Data["Argent2"] = { - { 1, 12844, "", "=q2=Argent Dawn Valor Token", "=ds=#m17#"}; - { 3, 0, "INV_Jewelry_Talisman_08", "=q6=#r2#", ""}; - { 4, 13724, "", "=q1=Enriched Manna Biscuit", "=ds=#e3#"}; - { 6, 0, "INV_Jewelry_Talisman_08", "=q6=#r3#", ""}; - { 7, 13482, "", "=q2=Recipe: Transmute Air to Fire", "=ds=#p1# (275)"}; - { 8, 19203, "", "=q1=Plans: Girdle of the Dawn", "=ds=#p2# (290)"}; - { 9, 19446, "", "=q1=Formula: Enchant Bracer - Mana Regeneration", "=ds=#p4# (290)"}; - { 10, 19442, "", "=q1=Formula: Powerful Anti-Venom", "=ds=#p6# (300)"}; - { 11, 19328, "", "=q1=Pattern: Dawn Treaders", "=ds=#p7# (290)"}; - { 12, 19216, "", "=q1=Pattern: Argent Boots", "=ds=#p8# (290)"}; - { 16, 0, "INV_Jewelry_Talisman_08", "=q6=#r4#", ""}; - { 17, 18171, "", "=q2=Arcane Mantle of the Dawn", "=ds=#s3# #e17#"}; - { 18, 18169, "", "=q2=Flame Mantle of the Dawn", "=ds=#s3# #e17#"}; - { 19, 18170, "", "=q2=Frost Mantle of the Dawn", "=ds=#s3# #e17#"}; - { 20, 18172, "", "=q2=Nature Mantle of the Dawn", "=ds=#s3# #e17#"}; - { 21, 18173, "", "=q2=Shadow Mantle of the Dawn", "=ds=#s3# #e17#"}; - { 22, 19205, "", "=q1=Plans: Gloves of the Dawn", "=ds=#p2# (300)"}; - { 23, 19447, "", "=q1=Formula: Enchant Bracer - Healing", "=ds=#p4# (300)"}; - { 24, 19329, "", "=q1=Pattern: Golden Mantle of the Dawn", "=ds=#p7# (300)"}; - { 25, 19217, "", "=q1=Pattern: Argent Shoulders", "=ds=#p8# (300)"}; - { 26, 13810, "", "=q1=Blessed Sunfruit", "=ds=#e3#"}; - { 27, 13813, "", "=q1=Blessed Sunfruit Juice", "=ds=#e4#"}; - { 29, 0, "INV_Jewelry_Talisman_08", "=q6=#r5#", ""}; - { 30, 18182, "", "=q2=Chromatic Mantle of the Dawn", "=ds=#s3# #e17#"}; - Prev = "Argent1"; - Back = "REPMENU_ORIGINALWOW"; - }; - - --------------------------------------------------- - --- Bloodsail Buccaneers & Hydraxian Waterlords --- - --------------------------------------------------- - - AtlasLoot_Data["BloodsailHydraxian"] = { - { 1, 0, "INV_Helmet_66", "=q6="..BabbleFaction["Bloodsail Buccaneers"], "=q5=#r1#"}; - { 2, 22742, "", "=q1=Bloodsail Shirt", "=ds=#s5#"}; - { 3, 22743, "", "=q1=Bloodsail Sash", "=ds=#s10#"}; - { 4, 22745, "", "=q1=Bloodsail Pants", "=ds=#s11#"}; - { 5, 22744, "", "=q1=Bloodsail Boots", "=ds=#s12#"}; - { 7, 0, "INV_Helmet_66", "=q6="..BabbleFaction["Bloodsail Buccaneers"], "=q5=#r2#"}; - { 8, 12185, "", "=q2=Bloodsail Admiral's Hat", "=ds=#s1#, #a1#"}; - { 16, 0, "Spell_Frost_SummonWaterElemental_2", "=q6="..BabbleFaction["Hydraxian Waterlords"], "=q5=#r3#"}; - { 17, 18399, "", "=q3=Ocean's Breeze", "=q1=#m4#: =ds=#s13#"}; - { 18, 18398, "", "=q3=Tidal Loop", "=q1=#m4#: =ds=#s13#"}; - { 19, 17333, "", "=q1=Aqual Quintessence", "=ds=#m3#"}; - { 21, 0, "Spell_Frost_SummonWaterElemental_2", "=q6="..BabbleFaction["Hydraxian Waterlords"], "=q5=#r4#"}; - { 22, 22754, "", "=q1=Eternal Quintessence", "=ds=#m3#"}; - Back = "REPMENU_ORIGINALWOW"; - }; - ------------------------- - --- Brood of Nozdormu --- - ------------------------- - - AtlasLoot_Data["AQBroodRings"] = { - { 1, 0, "INV_Jewelry_Ring_40", "=q6="..AL["Path of the Conqueror"], ""}; - { 2, 21201, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r1#"}; - { 3, 21202, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r2#"}; - { 4, 21203, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r3#"}; - { 5, 21204, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r4#"}; - { 6, 21205, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r5#"}; - { 8, 0, "INV_Jewelry_Ring_40", "=q6="..AL["Path of the Invoker"], ""}; - { 9, 21206, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r1#"}; - { 10, 21207, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r2#"}; - { 11, 21208, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r3#"}; - { 12, 21209, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r4#"}; - { 13, 21210, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r5#"}; - { 16, 0, "INV_Jewelry_Ring_40", "=q6="..AL["Path of the Protector"], ""}; - { 17, 21196, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r1#"}; - { 18, 21197, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r2#"}; - { 19, 21198, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r3#"}; - { 20, 21199, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r4#"}; - { 21, 21200, "", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, =q1=#r5#"}; - Back = "REPMENU_ORIGINALWOW"; - }; - - ----------------------- - --- Cenarion Circle --- - ----------------------- - - AtlasLoot_Data["Cenarion1"] = { - { 1, 22209, "", "=q1=Plans: Heavy Obsidian Belt", "=ds=#p2# (300)"}; - { 2, 22768, "", "=q1=Plans: Ironvine Belt", "=ds=#p2# (300)"}; - { 3, 20732, "", "=q1=Formula: Enchant Cloak - Greater Fire Resistance", "=ds=#p4# (300)"}; - { 4, 22769, "", "=q1=Pattern: Bramblewood Belt", "=ds=#p7# (300)"}; - { 5, 20509, "", "=q1=Pattern: Sandstalker Bracers", "=ds=#p7# (300)"}; - { 6, 20506, "", "=q1=Pattern: Spitfire Bracers", "=ds=#p7# (300)"}; - { 7, 22772, "", "=q1=Pattern: Sylvan Shoulders", "=ds=#p8# (300)"}; - { 8, 22310, "", "=q1=Pattern: Cenarion Herb Bag", "=ds=#p8# (275)"}; - { 10, 20802, "", "=q2=Cenarion Combat Badge", "=ds=#m17#"}; - { 11, 20800, "", "=q2=Cenarion Logistics Badge", "=ds=#m17#"}; - { 12, 21515, "", "=q2=Mark of Remulos", "=ds=#m17#"}; - { 16, 0, "INV_QirajIdol_Amber", "=q6=#j8#", ""}; - { 17, 21187, "", "=q3=Earthweave Cloak", "=ds=#s4#", "5 #ccombat# 3 #clogistics# 7 #ctactical#"}; - { 18, 21178, "", "=q3=Gloves of Earthen Power", "=ds=#s9#, #a2#", "5 #ccombat# 3 #clogistics# 7 #ctactical#"}; - { 19, 21179, "", "=q3=Band of Earthen Wrath", "=ds=#s13#", "5 #ccombat# 3 #clogistics# 7 #ctactical#"}; - { 25, 20801, "", "=q2=Cenarion Tactical Badge", "=ds=#m17#"}; - { 26, 21508, "", "=q2=Mark of Cenarius", "=ds=#m17#"}; - Next = "Cenarion2"; - Back = "REPMENU_ORIGINALWOW"; - }; - - AtlasLoot_Data["Cenarion2"] = { - { 1, 22767, "", "=q1=Plans: Ironvine Gloves", "=ds=#p2# (300)"}; - { 2, 22214, "", "=q1=Plans: Light Obsidian Belt", "=ds=#p2# (300)"}; - { 3, 20733, "", "=q1=Formula: Enchant Cloak - Greater Nature Resistance", "=ds=#p4# (300)"}; - { 4, 22770, "", "=q1=Pattern: Bramblewood Boots", "=ds=#p7# (300)"}; - { 5, 20510, "", "=q1=Pattern: Sandstalker Gauntlets", "=ds=#p7# (300)"}; - { 6, 20507, "", "=q1=Pattern: Spitfire Gauntlets", "=ds=#p7# (300)"}; - { 7, 22773, "", "=q1=Pattern: Sylvan Crown", "=ds=#p8# (300)"}; - { 16, 0, "INV_QirajIdol_Amber", "=q6=#j8#", ""}; - { 17, 21183, "", "=q3=Earthpower Vest", "=ds=#s5#, #a1#", "7 #ccombat# 4 #clogistics# 4 #ctactical#"}; - { 18, 21182, "", "=q3=Band of Earthen Might", "=ds=#s13#", "7 #ccombat# 4 #clogistics# 4 #ctactical#"}; - { 19, 21181, "", "=q3=Grace of Earth", "=ds=#s14#", "7 #ccombat# 4 #clogistics# 4 #ctactical#"}; - Next = "Cenarion3"; - Prev = "Cenarion1"; - Back = "REPMENU_ORIGINALWOW"; - }; - - AtlasLoot_Data["Cenarion3"] = { - { 1, 22766, "", "=q1=Plans: Ironvine Breastplate", "=ds=#p2# (300)"}; - { 2, 22219, "", "=q1=Plans: Jagged Obsidian Shield", "=ds=#p2# (300)"}; - { 3, 22771, "", "=q1=Pattern: Bramblewood Helm", "=ds=#p7# (300)"}; - { 4, 20511, "", "=q1=Pattern: Sandstalker Breastplate", "=ds=#p7# (300)"}; - { 5, 20508, "", "=q1=Pattern: Spitfire Breastplate", "=ds=#p7# (300)"}; - { 6, 22683, "", "=q1=Pattern: Gaea's Embrace", "=ds=#p8# (300)"}; - { 7, 22312, "", "=q1=Pattern: Satchel of Cenarius", "=ds=#p8# (300)"}; - { 8, 22774, "", "=q1=Pattern: Sylvan Vest", "=ds=#p8# (300)"}; - { 16, 0, "INV_QirajIdol_Amber", "=q6=#j8#", ""}; - { 17, 21186, "", "=q4=Rockfury Bracers", "=ds=#s8#, #a1#", "15 #ccombat# 20 #clogistics# 17 #ctactical# 1 #cremulos#"}; - { 18, 21184, "", "=q4=Deeprock Bracers", "=ds=#s8#, #a4#", "15 #ccombat# 20 #clogistics# 17 #ctactical# 1 #cremulos#"}; - { 19, 21189, "", "=q4=Might of Cenarius", "=ds=#s13#", "15 #ccombat# 20 #clogistics# 17 #ctactical# 1 #cremulos#"}; - { 20, 21185, "", "=q4=Earthcalm Orb", "=ds=#s15#", "15 #ccombat# 20 #clogistics# 17 #ctactical# 1 #cremulos#"}; - Next = "Cenarion4"; - Prev = "Cenarion2"; - Back = "REPMENU_ORIGINALWOW"; - }; - - AtlasLoot_Data["Cenarion4"] = { - { 1, 22221, "", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# (300)"}; - { 2, 20382, "", "=q1=Pattern: Dreamscale Breastplate", "=ds=#p7# (300)"}; - { 16, 0, "INV_QirajIdol_Amber", "=q6=#j8#", ""}; - { 17, 21190, "", "=q4=Wrath of Cenarius", "=ds=#s13#", "15 #ccombat# 20 #clogistics# 20 #ctactical# 1 #ccenarius#"}; - { 18, 21180, "", "=q4=Earthstrike", "=ds=#s14#", "15 #ccombat# 20 #clogistics# 20 #ctactical# 1 #ccenarius#"}; - { 19, 21188, "", "=q4=Fist of Cenarius", "=ds=#h2#, #w6#", "15 #ccombat# 20 #clogistics# 20 #ctactical# 1 #ccenarius#", "", ""}; - Prev = "Cenarion3"; - Back = "REPMENU_ORIGINALWOW"; - }; - - ---------------------------------------- - --- Stormpike Guard & Frostwolf Clan --- - ---------------------------------------- - - AtlasLoot_Data["AlteracFactions"] = { - { 1, 0, "INV_Jewelry_StormPikeTrinket_01", "=q6="..BabbleFaction["Stormpike Guard"], "=q5="..BabbleFaction["Alliance"]}; - { 2, 17904, "", "=q4=Stormpike Insignia Rank 6", "=ds=#s14#, =q1=#r5#"}; - { 3, 17903, "", "=q3=Stormpike Insignia Rank 5", "=ds=#s14#, =q1=#r5#"}; - { 4, 17902, "", "=q3=Stormpike Insignia Rank 4", "=ds=#s14#, =q1=#r4#"}; - { 5, 17901, "", "=q2=Stormpike Insignia Rank 3", "=ds=#s14#, =q1=#r3#"}; - { 6, 17900, "", "=q2=Stormpike Insignia Rank 2", "=ds=#s14#, =q1=#r2#"}; - { 7, 17691, "", "=q2=Stormpike Insignia Rank 1", "=ds=#s14#, =q1=#r1#"}; - { 12, 20648, "", "=q3=Cold Forged Hammer", "=q1=#m4#: =ds=#h3#, #w6#"}; - { 13, 19106, "", "=q3=Ice Barbed Spear", "=q1=#m4#: =ds=#w7#"}; - { 14, 19108, "", "=q3=Wand of Biting Cold", "=q1=#m4#: =ds=#w12#"}; - { 15, 19107, "", "=q3=Bloodseeker", "=q1=#m4#: =ds=#w3#"}; - { 16, 0, "INV_Jewelry_FrostwolfTrinket_01", "=q6="..BabbleFaction["Frostwolf Clan"], "=q5="..BabbleFaction["Horde"]}; - { 17, 17909, "", "=q4=Frostwolf Insignia Rank 6", "=ds=#s14#, =q1=#r5#"}; - { 18, 17908, "", "=q3=Frostwolf Insignia Rank 5", "=ds=#s14#, =q1=#r5#"}; - { 19, 17907, "", "=q3=Frostwolf Insignia Rank 4", "=ds=#s14#, =q1=#r4#"}; - { 20, 17906, "", "=q2=Frostwolf Insignia Rank 3", "=ds=#s14#, =q1=#r3#"}; - { 21, 17905, "", "=q2=Frostwolf Insignia Rank 2", "=ds=#s14#, =q1=#r2#"}; - { 22, 17690, "", "=q2=Frostwolf Insignia Rank 1", "=ds=#s14#, =q1=#r1#"}; - Back = "REPMENU_ORIGINALWOW"; - }; - - --------------------------- - --- Thorium Brotherhood --- - --------------------------- - - AtlasLoot_Data["Thorium1"] = { - { 1, 0, "INV_Ingot_Mithril", "=q6=#r2#", ""}; - { 2, 17051, "", "=q3=Plans: Dark Iron Bracers", "=ds=#p2# (295)"}; - { 3, 20761, "", "=q1=Recipe: Transmute Elemental Fire", "=ds=#p1# (300)"}; - { 4, 19444, "", "=q1=Formula: Enchant Weapon - Strength", "=ds=#p4# (290)"}; - { 5, 17023, "", "=q1=Pattern: Molten Helm", "=ds=#p7# (300)"}; - { 6, 17022, "", "=q1=Pattern: Corehound Boots", "=ds=#p7# (295)"}; - { 7, 17018, "", "=q1=Pattern: Flarecore Gloves", "=ds=#p8# (300)"}; - { 16, 0, "INV_Ingot_Mithril", "=q6=#r3#", ""}; - { 17, 17060, "", "=q3=Plans: Dark Iron Destroyer", "=ds=#p2# (300)"}; - { 18, 17059, "", "=q3=Plans: Dark Iron Reaver", "=ds=#p2# (300)"}; - { 19, 17049, "", "=q3=Plans: Fiery Chain Girdle", "=ds=#p2# (295)"}; - { 20, 19206, "", "=q1=Plans: Dark Iron Helm", "=ds=#p2# (300)"}; - { 21, 19448, "", "=q1=Formula: Enchant Weapon - Mighty Spirit", "=ds=#p4# (300)"}; - { 22, 17025, "", "=q1=Pattern: Black Dragonscale Boots", "=ds=#p7# (300)"}; - { 23, 19330, "", "=q1=Pattern: Lava Belt", "=ds=#p7# (300)"}; - { 24, 17017, "", "=q1=Pattern: Flarecore Mantle", "=ds=#p8# (300)"}; - { 25, 19219, "", "=q1=Pattern: Flarecore Robe", "=ds=#p8# (300)"}; - Next = "Thorium2"; - Back = "REPMENU_ORIGINALWOW"; - }; - - AtlasLoot_Data["Thorium2"] = { - { 1, 0, "INV_Ingot_Mithril", "=q6=#r4#", ""}; - { 2, 18592, "", "=q4=Plans: Sulfuron Hammer", "=ds=#p2# (300), #m4#"}; - { 3, 17052, "", "=q3=Plans: Dark Iron Leggings", "=ds=#p2# (300)"}; - { 4, 17053, "", "=q3=Plans: Fiery Chain Shoulders", "=ds=#p2# (300)"}; - { 5, 19209, "", "=q1=Plans: Blackfury", "=ds=#p2# (300)"}; - { 6, 19208, "", "=q1=Plans: Black Amnesty", "=ds=#p2# (300)"}; - { 7, 19207, "", "=q1=Plans: Dark Iron Gauntlets", "=ds=#p2# (300)"}; - { 8, 19449, "", "=q1=Formula: Enchant Weapon - Mighty Intellect", "=ds=#p4# (300)"}; - { 9, 19331, "", "=q1=Pattern: Chromatic Gauntlets", "=ds=#p7# (300)"}; - { 10, 19332, "", "=q1=Pattern: Corehound Belt", "=ds=#p7# (300)"}; - { 11, 19333, "", "=q1=Pattern: Molten Belt", "=ds=#p7# (300)"}; - { 12, 19220, "", "=q1=Pattern: Flarecore Leggings", "=ds=#p8# (300)"}; - { 16, 0, "INV_Ingot_Mithril", "=q6=#r5#", ""}; - { 17, 19211, "", "=q1=Plans: Blackguard", "=ds=#p2# (300)"}; - { 18, 20040, "", "=q1=Plans: Dark Iron Boots", "=ds=#p2# (300)"}; - { 19, 19210, "", "=q1=Plans: Ebon Hand", "=ds=#p2# (300)"}; - { 20, 19212, "", "=q1=Plans: Nightfall", "=ds=#p2# (300)"}; - Prev = "Thorium1"; - Back = "REPMENU_ORIGINALWOW"; - }; - - ---------------------- - --- Timbermaw Hold --- - ---------------------- - - AtlasLoot_Data["Timbermaw"] = { - { 1, 0, "INV_Misc_Horn_01", "=q6=#r2#", ""}; - { 2, 13484, "", "=q2=Recipe: Transmute Earth to Water", "=ds=#p1# (275)"}; - { 3, 22392, "", "=q1=Formula: Enchant 2H Weapon - Agility", "=ds=#p4# (290)"}; - { 4, 20254, "", "=q1=Pattern: Warbear Woolies", "=ds=#p7# (285)"}; - { 5, 20253, "", "=q1=Pattern: Warbear Harness", "=ds=#p7# (275)"}; - { 7, 0, "INV_Misc_Horn_01", "=q6=#r3#", ""}; - { 8, 16768, "", "=q2=Furbolg Medicine Pouch", "=ds=#s15#"}; - { 9, 16769, "", "=q2=Furbolg Medicine Totem", "=ds=#h3#, #w6#"}; - { 10, 19202, "", "=q1=Plans: Heavy Timbermaw Belt", "=ds=#p2# (290)"}; - { 11, 19445, "", "=q1=Formula: Enchant Weapon - Agility", "=ds=#p4# (290)"}; - { 12, 19326, "", "=q1=Pattern: Might of the Timbermaw", "=ds=#p7# (290)"}; - { 13, 19215, "", "=q1=Pattern: Wisdom of the Timbermaw", "=ds=#p8# (290)"}; - { 16, 0, "INV_Misc_Horn_01", "=q6=#r4#", ""}; - { 17, 19204, "", "=q1=Plans: Heavy Timbermaw Boots", "=ds=#p2# (300)"}; - { 18, 19327, "", "=q1=Pattern: Timbermaw Brawlers", "=ds=#p7# (300)"}; - { 19, 19218, "", "=q1=Pattern: Mantle of the Timbermaw", "=ds=#p8# (300)"}; - { 22, 0, "INV_Misc_Horn_01", "=q6=#r5#", ""}; - { 23, 21326, "", "=q4=Defender of the Timbermaw", "=q1=#m4#: =ds=#s14#"}; - Back = "REPMENU_ORIGINALWOW"; - }; - - ---------------------- - --- Zandalar Tribe --- - ---------------------- - - AtlasLoot_Data["Zandalar1"] = { - { 1, 19858, "", "=q2=Zandalar Honor Token", "=ds=#m17#"}; - { 3, 0, "INV_Misc_Coin_08", "=q6=#r2#", ""}; - { 4, 20012, "", "=q1=Recipe: Greater Dreamless Sleep", "=ds=#p1# (275)"}; - { 5, 19778, "", "=q1=Plans: Bloodsoul Gauntlets", "=ds=#p2# (300)"}; - { 6, 19781, "", "=q1=Plans: Darksoul Shoulders", "=ds=#p2# (300)"}; - { 7, 20757, "", "=q1=Formula: Brilliant Mana Oil", "=ds=#p4# (300)"}; - { 8, 20001, "", "=q1=Schematic: Bloodvine Lens", "=ds=#p5# (300)"}; - { 9, 19771, "", "=q1=Pattern: Primal Batskin Bracers", "=ds=#p7# (300)"}; - { 10, 19766, "", "=q1=Pattern: Bloodvine Boots", "=ds=#p8# (300)"}; - { 16, 0, "INV_Misc_Coin_08", "=q6=#r3#", ""}; - { 17, 20014, "", "=q1=Recipe: Major Troll's Blood Potion", "=ds=#p1# (290)"}; - { 18, 19777, "", "=q1=Plans: Bloodsoul Shoulders", "=ds=#p2# (300)"}; - { 19, 19780, "", "=q1=Plans: Darksoul Leggings", "=ds=#p2# (300)"}; - { 20, 20756, "", "=q1=Formula: Brilliant Wizard Oil", "=ds=#p4# (300)"}; - { 21, 20000, "", "=q1=Schematic: Bloodvine Goggles", "=ds=#p5# (300)"}; - { 22, 19773, "", "=q1=Pattern: Blood Tiger Shoulders", "=ds=#p7# (300)"}; - { 23, 19770, "", "=q1=Pattern: Primal Batskin Gloves", "=ds=#p7# (300)"}; - { 24, 19765, "", "=q1=Pattern: Bloodvine Leggings", "=ds=#p8# (300)"}; - { 25, 20031, "", "=q1=Essence Mango", "=ds=#e3#", "1 #zandalar#", ""}; - Next = "Zandalar2"; - Back = "REPMENU_ORIGINALWOW"; - }; - - AtlasLoot_Data["Zandalar2"] = { - { 1, 0, "INV_Misc_Coin_08", "=q6=#r4#", ""}; - { 2, 20080, "", "=q2=Sheen of Zanza", "=ds=#e2#", "3 #zandalar#", ""}; - { 3, 20079, "", "=q2=Spirit of Zanza", "=ds=#e2#", "3 #zandalar#", ""}; - { 4, 20081, "", "=q2=Swiftness of Zanza", "=ds=#e2#", "3 #zandalar#", ""}; - { 5, 20011, "", "=q1=Recipe: Mageblood Potion", "=ds=#p1# (275)"}; - { 6, 19776, "", "=q1=Plans: Bloodsoul Breastplate", "=ds=#p2# (300)"}; - { 7, 19779, "", "=q1=Plans: Darksoul Breastplate", "=ds=#p2# (300)"}; - { 8, 19772, "", "=q1=Pattern: Blood Tiger Breastplate", "=ds=#p7# (300)"}; - { 9, 19769, "", "=q1=Pattern: Primal Batskin Jerkin", "=ds=#p7# (300)"}; - { 10, 19764, "", "=q1=Pattern: Bloodvine Vest", "=ds=#p8# (300)"}; - { 16, 0, "INV_Misc_Coin_08", "=q6=#r5#", ""}; - { 17, 20077, "", "=q3=Zandalar Signet of Might", "=ds=#s3# #e17#", "15 #zandalar#", ""}; - { 18, 20076, "", "=q3=Zandalar Signet of Mojo", "=ds=#s3# #e17#", "15 #zandalar#", ""}; - { 19, 20078, "", "=q3=Zandalar Signet of Serenity", "=ds=#s3# #e17#", "15 #zandalar#", ""}; - { 20, 20013, "", "=q1=Recipe: Living Action Potion", "=ds=#p1# (285)"}; - Prev = "Zandalar1"; - Back = "REPMENU_ORIGINALWOW"; - }; - - -------------------- - --- World Bosses --- - -------------------- - - ---------------------------- - --- Dragons of Nightmare --- - ---------------------------- - - AtlasLoot_Data["DEmeriss"] = { - { 1, 20579, "", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q1=#m5#", "", "9.14%"}; - { 2, 20618, "", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q1=#m5#", "", "9.71%"}; - { 3, 20615, "", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q1=#m5#", "", "8.83%"}; - { 4, 20617, "", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q1=#m5#", "", "9.80%"}; - { 5, 20616, "", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q1=#m5#", "", "10.20%"}; - { 6, 20619, "", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q1=#m5#", "", "8.85%"}; - { 7, 20582, "", "=q4=Trance Stone", "=ds=#s15# =q1=#m5#", "", "9.57%"}; - { 8, 20580, "", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q1=#m5#", "", "8.93%"}; - { 9, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#w9# =q1=#m5#", "", "9.70%"}; - { 11, 20644, "", "=q4=Nightmare Engulfed Object", "=ds=#m3# =q1=#m5#", "", "80.05%"}; - { 12, 20600, "", "=q4=Malfurion's Signet Ring", "=q1=#m4#: =ds=#s13#"}; - { 16, 20623, "", "=q4=Circlet of Restless Dreams", "=ds=#s1#, #a2#", "", "10.51%"}; - { 17, 20621, "", "=q4=Boots of the Endless Moor", "=ds=#s12#, #a3#", "", "10.24%"}; - { 18, 20622, "", "=q4=Dragonheart Necklace", "=ds=#s2#", "", "12.35%"}; - { 19, 20624, "", "=q4=Ring of the Unliving", "=ds=#s13#", "", "13.23%"}; - { 20, 20599, "", "=q4=Polished Ironwood Crossbow", "=ds=#w3#", "", "12.63%"}; - }; - - AtlasLoot_Data["DLethon"] = { - { 1, 20579, "", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q1=#m5#", "", "9.14%"}; - { 2, 20618, "", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q1=#m5#", "", "9.71%"}; - { 3, 20615, "", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q1=#m5#", "", "8.83%"}; - { 4, 20617, "", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q1=#m5#", "", "9.80%"}; - { 5, 20616, "", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q1=#m5#", "", "10.20%"}; - { 6, 20619, "", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q1=#m5#", "", "8.85%"}; - { 7, 20582, "", "=q4=Trance Stone", "=ds=#s15# =q1=#m5#", "", "9.57%"}; - { 8, 20580, "", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q1=#m5#", "", "8.93%"}; - { 9, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#w9# =q1=#m5#", "", "9.70%"}; - { 11, 20644, "", "=q4=Nightmare Engulfed Object", "=ds=#m3# =q1=#m5#", "", "80.05%"}; - { 12, 20600, "", "=q4=Malfurion's Signet Ring", "=q1=#m4#: =ds=#s13#"}; - { 16, 20626, "", "=q4=Black Bark Wristbands", "=ds=#s8#, #a1#", "", "9.44%"}; - { 17, 20625, "", "=q4=Belt of the Dark Bog", "=ds=#s10#, #a1#", "", "10.99%"}; - { 18, 20628, "", "=q4=Deviate Growth Cap", "=ds=#s1#, #a2#", "", "15.80%"}; - { 19, 20627, "", "=q4=Dark Heart Pants", "=ds=#s11#, #a2#", "", "11.68%"}; - { 20, 20629, "", "=q4=Malignant Footguards", "=ds=#s12#, #a3#", "", "4.46%"}; - { 21, 20630, "", "=q4=Gauntlets of the Shining Light", "=ds=#s9#, #a4#", "", "8.19%"}; - }; - - AtlasLoot_Data["DTaerar"] = { - { 1, 20579, "", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q1=#m5#", "", "9.14%"}; - { 2, 20618, "", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q1=#m5#", "", "9.71%"}; - { 3, 20615, "", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q1=#m5#", "", "8.83%"}; - { 4, 20617, "", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q1=#m5#", "", "9.80%"}; - { 5, 20616, "", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q1=#m5#", "", "10.20%"}; - { 6, 20619, "", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q1=#m5#", "", "8.85%"}; - { 7, 20582, "", "=q4=Trance Stone", "=ds=#s15# =q1=#m5#", "", "9.57%"}; - { 8, 20580, "", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q1=#m5#", "", "8.93%"}; - { 9, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#w9# =q1=#m5#", "", "9.70%"}; - { 11, 20644, "", "=q4=Nightmare Engulfed Object", "=ds=#m3# =q1=#m5#", "", "80.05%"}; - { 12, 20600, "", "=q4=Malfurion's Signet Ring", "=q1=#m4#: =ds=#s13#"}; - { 16, 20631, "", "=q4=Mendicant's Slippers", "=ds=#s12#, #a1#", "", "13.14%"}; - { 17, 20633, "", "=q4=Unnatural Leather Spaulders", "=ds=#s3#, #a2#", "", "11.30%"}; - { 18, 20634, "", "=q4=Boots of Fright", "=ds=#s12#, #a2#", "", "10.15%"}; - { 19, 20632, "", "=q4=Mindtear Band", "=ds=#s13#", "", "13.69%"}; - { 20, 20577, "", "=q4=Nightmare Blade", "=ds=#h1#, #w10#", "", "12.07%"}; - }; - - AtlasLoot_Data["DYsondre"] = { - { 1, 20579, "", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q1=#m5#", "", "9.14%"}; - { 2, 20618, "", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q1=#m5#", "", "9.71%"}; - { 3, 20615, "", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q1=#m5#", "", "8.83%"}; - { 4, 20617, "", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q1=#m5#", "", "9.80%"}; - { 5, 20616, "", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q1=#m5#", "", "10.20%"}; - { 6, 20619, "", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q1=#m5#", "", "8.85%"}; - { 7, 20582, "", "=q4=Trance Stone", "=ds=#s15# =q1=#m5#", "", "9.57%"}; - { 8, 20580, "", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q1=#m5#", "", "8.93%"}; - { 9, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#w9# =q1=#m5#", "", "9.70%"}; - { 11, 20644, "", "=q4=Nightmare Engulfed Object", "=ds=#m3# =q1=#m5#", "", "80.05%"}; - { 12, 20600, "", "=q4=Malfurion's Signet Ring", "=q1=#m4#: =ds=#s13#"}; - { 16, 20635, "", "=q4=Jade Inlaid Vestments", "=ds=#s5#, #a1#", "", "14.19%"}; - { 17, 20638, "", "=q4=Leggings of the Demented Mind", "=ds=#s11#, #a3#", "", "3.66%"}; - { 18, 20637, "", "=q4=Acid Inscribed Pauldrons", "=ds=#s3#, #a4#", "", "10.13%"}; - { 19, 20639, "", "=q4=Strangely Glyphed Legplates", "=ds=#s11#, #a4#", "", "8.87%"}; - { 20, 20636, "", "=q4=Hibernation Crystal", "=ds=#s14#", "", "12.75%"}; - { 21, 20578, "", "=q4=Emerald Dragonfang", "=ds=#h1#, #w4#", "", "9.95%"}; - }; - - ---------------- - --- Azuregos --- - ---------------- - - AtlasLoot_Data["WorldBossesClassic"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Azuregos"], ""}; - { 2, 18541, "", "=q4=Puissant Cape", "=ds=#s4#", "", "11.71%"}; - { 3, 18208, "", "=q4=Drape of Benediction", "=ds=#s4#", "", "11.22%"}; - { 4, 19132, "", "=q4=Crystal Adorned Crown", "=ds=#s1#, #a1#", "", "13.54%"}; - { 5, 18545, "", "=q4=Leggings of Arcane Supremacy", "=ds=#s11#, #a1#", "", "16.39% "}; - { 6, 19131, "", "=q4=Snowblind Shoes", "=ds=#s12#, #a1#", "", "12.23%"}; - { 7, 18547, "", "=q4=Unmelting Ice Girdle", "=ds=#s10#, #a4#", "", "12.93%"}; - { 8, 17070, "", "=q4=Fang of the Mystics", "=ds=#h3#, #w4#", "", "13.64%"}; - { 9, 18202, "", "=q4=Eskhandar's Left Claw", "=ds=#h4#, #w13#", "", "11.76%"}; - { 10, 18542, "", "=q4=Typhoon", "=ds=#h2#, #w10#", "", "16.89%"}; - { 11, 19130, "", "=q4=Cold Snap", "=ds=#w12#", "", "11.89%"}; - { 16, 18704, "", "=q4=Mature Blue Dragon Sinew", "=ds=#m3# =q1=(#c2#)", "", "51.56%"}; - { 17, 18714, "", "=q4=Ancient Sinew Wrapped Lamina", "=q1=#m4#: =ds=#m14# #w19#"}; - - }; - AtlasLoot_Data["WorldBossesClassic2"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Azuregos"], ""}; - { 2, 18541, "", "=q4=Puissant Cape", "=ds=#s4#", "", "11.71%"}; - { 3, 18208, "", "=q4=Drape of Benediction", "=ds=#s4#", "", "11.22%"}; - { 4, 19132, "", "=q4=Crystal Adorned Crown", "=ds=#s1#, #a1#", "", "13.54%"}; - { 5, 18545, "", "=q4=Leggings of Arcane Supremacy", "=ds=#s11#, #a1#", "", "16.39% "}; - { 6, 19131, "", "=q4=Snowblind Shoes", "=ds=#s12#, #a1#", "", "12.23%"}; - { 7, 18547, "", "=q4=Unmelting Ice Girdle", "=ds=#s10#, #a4#", "", "12.93%"}; - { 8, 17070, "", "=q4=Fang of the Mystics", "=ds=#h3#, #w4#", "", "13.64%"}; - { 9, 18202, "", "=q4=Eskhandar's Left Claw", "=ds=#h4#, #w13#", "", "11.76%"}; - { 10, 18542, "", "=q4=Typhoon", "=ds=#h2#, #w10#", "", "16.89%"}; - { 11, 19130, "", "=q4=Cold Snap", "=ds=#w12#", "", "11.89%"}; - { 16, 18704, "", "=q4=Mature Blue Dragon Sinew", "=ds=#m3# =q1=(#c2#)", "", "51.56%"}; - { 17, 18714, "", "=q4=Ancient Sinew Wrapped Lamina", "=q1=#m4#: =ds=#m14# #w19#"}; - - }; - - AtlasLoot_Data["Kazzak60"] = { - { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Kazzak"], ""}; - { 2, 18665, "", "=q4=The Eye of Shadow", "=ds=#s4#", "", "40.96%"}; - { 3, 18546, "", "=q4=Infernal Headcage", "=ds=#s4#", "", "22.89%"}; - { 4, 17112, "", "=q4=Empyrean Demolisher", "=ds=#s1#, #a1#", "", "13.54%"}; - { 5, 17113, "", "=q4=Amberseal Keeper", "=ds=#s11#, #a1#", "", "16.87% "}; - { 6, 18204, "", "=q4=Eskhandar's Pelt", "=ds=#s12#, #a1#", "", "12.23%"}; - { 7, 19133, "", "=q4=Fel Infused Leggings", "=ds=#s10#, #a4#", "", "12.05%"}; - { 8, 18543, "", "=q4=Ring of Entropy", "=ds=#h3#, #w4#", "", "14.46%"}; - { 9, 18544, "", "=q4=Doomhide Gauntlets", "=ds=#h4#, #w13#", "", "11.76%"}; - { 10, 19134, "", "=q4=Flayed Doomguard Belt", "=ds=#h2#, #w10#", "", "16.89%"}; - { 11, 19135, "", "=q4=Blacklight Bracer", "=ds=#w12#", "", "11.89%"}; - - }; \ No newline at end of file